gst/videotestsrc/: Add a test pattern called "circular", which has concentric rings...
[platform/upstream/gstreamer.git] / ChangeLog
1 2007-04-03  David Schleef  <ds@schleef.org>
2
3         * gst/videotestsrc/gstvideotestsrc.c:
4         * gst/videotestsrc/gstvideotestsrc.h:
5         * gst/videotestsrc/videotestsrc.c:
6         * gst/videotestsrc/videotestsrc.h:
7           Add a test pattern called "circular", which has concentric
8           rings with varying radial frequency.  The main purpose of this
9           pattern is to test fidelity loss in a filter or scaler element.
10           Notably, this pattern is scale invariant, and is optimally viewed
11           with a width (and height) of 400.
12
13 2007-04-03  Wim Taymans  <wim@fluendo.com>
14
15         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
16
17         * gst/playback/gstdecodebin2.c: (connect_pad), (expose_pad),
18         (deactivate_free_recursive):
19         Decodebin2 doesn't unref pads it obtains in some occasions:
20         - multiqueue src pads, when either connecting further or exposing
21         - sink pads of new autoplugged elements
22         - peer pads when recursively freeing elements
23         Fixes #425455.
24
25 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
26
27         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
28         Add audio/x-raw-float support, now that audioconvert support
29         non-native endianness floats.
30
31 2007-03-30  Tim-Philipp Müller  <tim at centricular dot net>
32
33         * docs/libs/gst-plugins-base-libs-docs.sgml:
34           gstreamer-plugins-base.pc doesn't exist, it's
35           gstreamer-plugins-base-0.10.pc.
36
37 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
38
39         Patch by: René Stadler <mail at renestadler dot de>
40         with some minor changes
41
42         * gst-libs/gst/floatcast/floatcast.h:
43         Use more efficient float endianness conversion functions that don't
44         involve 2 function calls per value.
45         * gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
46         (check_default), (audio_convert_prepare_context):
47         * gst/audioconvert/gstaudioconvert.c:
48         (gst_audio_convert_parse_caps), (make_lossless_changes):
49         Support non-native endianness floats as input and output.
50         Fixes #339838.
51         * tests/check/elements/audioconvert.c: (verify_convert),
52         (GST_START_TEST):
53         Add unit tests for the non-native endianness float conversions.
54
55 2007-03-29  Wim Taymans  <wim@fluendo.com>
56
57         * gst-libs/gst/rtp/gstbasertpdepayload.c:
58         (gst_base_rtp_depayload_base_init),
59         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
60         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
61         (gst_base_rtp_depayload_set_gst_timestamp),
62         (gst_base_rtp_depayload_change_state),
63         (gst_base_rtp_depayload_set_property),
64         (gst_base_rtp_depayload_get_property):
65         * gst-libs/gst/rtp/gstbasertpdepayload.h:
66         Add Private structure.
67         Bring element code to 2007.
68         Parse clock-base caps param and use it when generating the
69         newsegment.
70         Reset variables before going to PAUSED.
71         Fix some docs.
72
73 2007-03-29  Wim Taymans  <wim@fluendo.com>
74
75         * docs/libs/gst-plugins-base-libs-docs.sgml:
76         * docs/libs/gst-plugins-base-libs-sections.txt:
77         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
78         (gst_base_rtp_audio_payload_get_adapter):
79         Add RTCP docs.
80         Fix some more docs.
81
82         * gst-libs/gst/rtp/Makefile.am:
83         * gst-libs/gst/rtp/gstrtcpbuffer.c:
84         (gst_rtcp_buffer_new_take_data), (gst_rtcp_buffer_new_copy_data),
85         (gst_rtcp_buffer_validate_data), (gst_rtcp_buffer_validate),
86         (gst_rtcp_buffer_get_packet_count), (read_packet_header),
87         (gst_rtcp_buffer_get_first_packet), (gst_rtcp_packet_move_to_next),
88         (gst_rtcp_buffer_add_packet), (gst_rtcp_packet_remove),
89         (gst_rtcp_packet_get_padding), (gst_rtcp_packet_get_type),
90         (gst_rtcp_packet_get_count), (gst_rtcp_packet_get_length),
91         (gst_rtcp_packet_sr_get_sender_info),
92         (gst_rtcp_packet_sr_set_sender_info),
93         (gst_rtcp_packet_rr_get_ssrc), (gst_rtcp_packet_rr_set_ssrc),
94         (gst_rtcp_packet_get_rb_count), (gst_rtcp_packet_get_rb),
95         (gst_rtcp_packet_add_rb), (gst_rtcp_packet_set_rb),
96         (gst_rtcp_packet_sdes_get_chunk_count),
97         (gst_rtcp_packet_sdes_first_chunk),
98         (gst_rtcp_packet_sdes_next_chunk), (gst_rtcp_packet_sdes_get_ssrc),
99         (gst_rtcp_packet_sdes_first_item),
100         (gst_rtcp_packet_sdes_next_item), (gst_rtcp_packet_sdes_get_item),
101         (gst_rtcp_packet_bye_get_ssrc_count),
102         (gst_rtcp_packet_bye_get_nth_ssrc), (gst_rtcp_packet_bye_add_ssrc),
103         (gst_rtcp_packet_bye_add_ssrcs), (get_reason_offset),
104         (gst_rtcp_packet_bye_get_reason_len),
105         (gst_rtcp_packet_bye_get_reason), (gst_rtcp_packet_bye_set_reason):
106         * gst-libs/gst/rtp/gstrtcpbuffer.h:
107         Add new helper object for parsing and creating RTCP messages.
108
109 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
110
111         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
112         PCM samples with width=8 must be always unsigned, no matter what
113         depth they have.
114
115 2007-03-29  Andy Wingo  <wingo@pobox.com>
116
117         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev): Make
118         perfect offsets also, not just timestamps.
119
120         * tests/check/elements/videorate.c (test_more): Test that given
121         any incoming offsets, that videorate produces perfect offsets.
122
123 2007-03-29  Wim Taymans  <wim@fluendo.com>
124
125         * gst-libs/gst/riff/riff-ids.h:
126         Add some more RIFF formats.
127
128 2007-03-29  Wim Taymans  <wim@fluendo.com>
129
130         * gst-libs/gst/rtp/gstrtpbuffer.c:
131         (gst_rtp_buffer_default_clock_rate):
132         * gst-libs/gst/rtp/gstrtpbuffer.h:
133         Fix fixed payload names and docs.
134         Added method to get the default clock rates of fixed payload types.
135         API: GstRTPBuffer::gst_rtp_buffer_default_clock_rate()
136
137 2007-03-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
138
139         * tests/check/pipelines/.cvsignore:
140         Add new vorbisdec test to cvsignore.
141
142 2007-03-28  Wim Taymans  <wim@fluendo.com>
143
144         * gst-libs/gst/audio/gstbaseaudiosink.c: (slave_method_get_type),
145         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
146         (gst_base_audio_sink_query), (gst_base_audio_sink_get_time),
147         (gst_base_audio_sink_set_property),
148         (gst_base_audio_sink_get_property), (gst_base_audio_sink_event),
149         (clock_convert_external), (gst_base_audio_sink_resample_slaving),
150         (gst_base_audio_sink_skew_slaving),
151         (gst_base_audio_sink_handle_slaving), (gst_base_audio_sink_render),
152         (gst_base_audio_sink_async_play):
153         * gst-libs/gst/audio/gstbaseaudiosink.h:
154         Store private stuff in GstBaseAudioSinkPrivate.
155         Add configurable clock slaving modes property.
156         API:: GstBaseAudioSink::slave-method property
157         Some more latency reporting tweaks.
158         Added skew based clock slaving correction and make it the default until
159         the resampling method is more robust.
160
161 2007-03-27  Sebastian Dröge  <slomo@circular-chaos.org>
162
163         * gst/audioconvert/audioconvert.c:
164         Add docs to the integer pack functions and implement proper
165         rounding. Before we had rounding towards negative infinity, i.e.
166         always the smaller number was taken. Now we use natural rounding,
167         i.e. rounding to the nearest integer and to the one with the largest
168         absolute value for X.5. The old rounding introduced some minor
169         distortions. Fixes #420079
170         * tests/check/elements/audioconvert.c: (GST_START_TEST):
171         Fix one unit test that assumed the old rounding and added unit tests
172         for checking signed/unsigned int16 <-> signed/unsigned int16 with
173         depth 8, one for signed int16 <-> unsigned int16 and one for the new
174         rounding from signed int32 to signed/unsigned int16.
175
176 2007-03-27  Michael Smith  <msmith@fluendo.com>
177
178         * gst/audioconvert/gstaudioconvert.c: (strip_width_64),
179         (gst_audio_convert_transform_caps):
180           Fix typo in debug line introduced recently, as pointed out on irc.
181
182 2007-03-27  Tim-Philipp Müller  <tim at centricular dot net>
183
184         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
185         * tests/check/libs/tag.c: (GST_START_TEST):
186           Make sure we parse floating-point numbers in vorbis comments
187           correctly with either '.' or ',' as separator, no matter what
188           the current locale is. Add unit test for this too.
189
190 2007-03-26  Tim-Philipp Müller  <tim at centricular dot net>
191
192         Patch by: René Stadler  <mail at renestadler de>
193
194         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_to_vorbis_comments):
195           When writing out floating-point numbers to vorbis comment tags, always
196           use the same character as separator no matter what the current locale is
197           (fixes #423051).
198
199         * tests/check/libs/tag.c: (GST_START_TEST):
200           Add unit tests for replaygain tags in vorbis comments (closes #423055).
201
202 2007-03-26  Thomas Vander Stichele  <thomas at apestaart dot org>
203
204         * ext/vorbis/vorbisdec.c (vorbis_dec_push_forward,
205           vorbis_handle_data_packet):
206           Correctly set DURATION to generate a timestamp-continuous stream.
207           One bug left at the end; see
208           ihttp://bugzilla.gnome.org/show_bug.cgi?id=423086
209         * tests/check/Makefile.am:
210         * tests/check/pipelines/vorbisenc.c (GST_START_TEST):
211           Add a test to check this.  Without the above patch this test fails.
212
213 2007-03-26  Jan Schmidt  <thaytan@mad.scientist.com>
214
215         * gst-libs/gst/rtp/Makefile.am:
216         The base audio payloader uses GstAdapter - we need GST_BASE_LIBS.
217
218 2007-03-23  Michael Smith  <msmith@fluendo.com>
219
220         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps),
221         (gst_video_rate_reset), (gst_video_rate_chain):
222           If videorate changes caps, we can no longer use the old buffer
223           (which may have a different size, incompatible with our caps).
224           So don't do that; just duplicate the new frame more times.
225
226 2007-03-22  Jan Schmidt  <thaytan@mad.scientist.com>
227
228         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
229         Remove playbin's override of the set_clock vmethod. It's irrelevant
230         after Wim's commit on the 19th.
231
232 2007-03-22  Wim Taymans  <wim@fluendo.com>
233
234         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_size),
235         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
236         * ext/gnomevfs/gstgnomevfssrc.h:
237         Don't cache file sizes. Fixes #341078.
238
239 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
240
241         * gst/playback/gstplaybin.c: (add_sink):
242           Use GST_PTR_FORMAT to log caps. 
243
244 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
245
246         Patch by: Young-Ho Cha <ganadist at chollian net>
247
248         * gst/subparse/samiparse.c: (handle_start_font):
249           Special-case some more colour names that pango doesn't handle by
250           default. Fixes #420578.
251
252 2007-03-20  Michael Smith  <msmith@fluendo.com>
253
254         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
255           If we get a zero-sized input buffer, don't pass it to libvorbis, as
256           that marks EOS internally. After that, libvorbis will buffer all
257           input data, and encode none of it, eventually leading to memory
258           exhaustion.
259
260 2007-03-19  Wim Taymans  <wim@fluendo.com>
261
262         * gst/playback/gstdecodebin.c: (remove_fakesink):
263         Don't post STATE_DIRTY anymore.
264
265         * gst/playback/gstplaybin.c: (add_sink), (gst_play_bin_send_event),
266         (gst_play_bin_change_state):
267         Remove stream_time reset in seek handling, core does that now.
268         Disable clocking for live pipelines by forcing a NULL clock to the
269         complete pipeline, core is too smart now for our previous hack.
270         We can always autoplug in PAUSED now.
271
272 2007-03-17  David Schleef  <ds@schleef.org>
273
274         * REQUIREMENTS:  Update this file, change the formatting to make
275         it more consistent, plus more machine readable.
276
277 2007-03-16  Michael Smith  <msmith@fluendo.com>
278
279         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
280         (strip_width_64), (append_with_other_format):
281           Previous fix was too simplistic, and broke the tests. Use a better
282           approach; only strip 64 from widths for integer audio.
283
284 2007-03-16  Michael Smith  <msmith@fluendo.com>
285
286         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
287         (gst_audio_convert_transform_caps):
288           We don't support 64 bit integer audio, so don't try to claim we can.
289           Stops us producing caps don't match our template caps.
290           Update comments.
291
292 2007-03-15  Michael Smith  <msmith@fluendo.com>
293
294         * gst/audioresample/gstaudioresample.c:
295         (audioresample_check_discont), (audioresample_transform):
296           Don't trigger discontinuities for very small imperfections; a filter
297           flush will sound bad, and many plugins have rounding errors leading
298           to these.
299
300 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
301
302         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
303         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
304         Add min-ptime property to RTP base audio payloader. Patch by
305         olivier.crete@collabora.co.uk.
306         Fixes #415001
307
308         Indentation/whitespace/documentation fixes.
309
310 2007-03-14  Julien MOUTTE  <julien@moutte.net>
311
312         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
313         (audioresample_transform_size), (audioresample_do_output),
314         (audioresample_transform), (audioresample_pushthrough): Handle
315         discontinuous streams.
316         * gst/audioresample/gstaudioresample.h:
317         * tests/check/elements/audioresample.c:
318         (test_discont_stream_instance), (GST_START_TEST),
319         (audioresample_suite): Add a test for discontinuous streams.
320         * win32/common/config.h: Updated.
321
322 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
323
324         * po/af.po:
325         * po/az.po:
326         * po/cs.po:
327         * po/en_GB.po:
328         * po/it.po:
329         * po/nb.po:
330         * po/nl.po:
331         * po/or.po:
332         * po/sq.po:
333         * po/sr.po:
334         * po/sv.po:
335         * po/uk.po:
336         * po/vi.po:
337           Update translations from translation project.
338
339 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
340
341         * gst/audioresample/debug.h:
342         * gst/audioresample/resample.c: (resample_init):
343           Since I really am not interested in a debug line for each sample
344           being processed, move the library's debugging to its own category,
345           libaudioresample
346
347 2007-03-13  Michael Smith  <msmith@fluendo.com>
348
349         * ext/theora/theoradec.c: (theora_handle_type_packet):
350           Since the plugin doesn't support anything other than 4:2:0 right
351           now, post an error and fail if we get something else. Won't matter
352           until libtheora supports the other pixel formats, but hopefully
353           that'll be soon...
354
355 2007-03-10  Sebastien Moutte  <sebastien@moutte.net>
356
357         * gst-libs/gst/audio/gstbaseaudiosink.c:(gst_base_audio_sink_render):
358         Use gst_guint64_to_gdouble for conversion.
359         * win32/MANIFEST:
360         Add new files to the win32 MANIFEST.
361         * win32/common/libgstaudio.def:
362         * win32/common/libgstpbutils.def:
363         Add new exported functions.
364         * win32/vs6/gst_plugins_base.dsw:
365         * win32/vs6/libgstdecodebin.dsp:
366         * win32/vs6/libgstplaybin.dsp:
367         Change the link to libgstpbutils.lib.
368         * win32/vs6/libgstdecodebin2.dsp:
369         Add a new project for decodebin2.
370         * win32/vs6/libgstpbutils.dsp:
371         Add a new project for pbutils.
372
373 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
374
375         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
376           Also accept partial dates with only year and month,
377           like 1999-12-00 (fixes #410396 even more).
378
379         * tests/check/libs/tag.c: (GST_START_TEST):
380           Add unit test for the above.
381
382 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
383
384         * tests/check/elements/subparse.c: (GST_START_TEST),
385         (subparse_suite):
386           Add unit test for MPL2 subtitle format (#413799).
387
388 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
389
390         Patch by: Kamil Pawlowski  <kamilpe gmail com>
391
392         * gst/subparse/Makefile.am:
393         * gst/subparse/gstsubparse.c:
394         (gst_sub_parse_data_format_autodetect),
395         (gst_sub_parse_format_autodetect), (gst_sub_parse_sink_event),
396         (gst_subparse_type_find):
397         * gst/subparse/gstsubparse.h:
398         * gst/subparse/mpl2parse.c: (mpl2_parse_line), (parse_mpl2):
399         * gst/subparse/mpl2parse.h:
400           Add support for MPL2 subtitle format (#413799).
401
402 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
403
404         * configure.ac:
405           We require core CVS for the new buffer metadata copy functions.
406
407 2007-03-09  Wim Taymans  <wim@fluendo.com>
408
409         * gst-libs/gst/tag/gstid3tag.c:
410         Add read support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
411         Fixes #414496.
412
413         Patch by: Alex Lancaster <alexl at users sourceforge net>
414
415 2007-03-09  Wim Taymans  <wim@fluendo.com>
416
417         * ext/libvisual/visual.c: (gst_visual_sink_setcaps),
418         (gst_vis_src_negotiate), (get_buffer), (gst_visual_chain):
419         Improve adapter usage and comments.
420
421 2007-03-09  Wim Taymans  <wim@fluendo.com>
422
423         * ext/pango/gsttextrender.c: (gst_text_render_chain):
424         * ext/vorbis/vorbistag.c: (gst_vorbis_tag_parse_packet):
425         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_copy):
426         Use new metadata copy function.
427
428         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
429         (gst_ffmpegcsp_transform):
430         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform):
431         Basetransform copied the metadata for us.
432
433 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
434
435         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
436         (gst_text_overlay_video_event):
437           Some more logging. Only accept newsegment events in TIME format and
438           send a WARNING message if they are not in TIME format.
439
440         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
441         (gst_sub_parse_init), (gst_sub_parse_src_event), (handle_buffer),
442         (gst_sub_parse_chain), (gst_sub_parse_sink_event):
443         * gst/subparse/gstsubparse.h:
444           No need to allocate GstSegment structure dynamically, just put it
445           into the instance structure; ignore newsegment events in BYTE
446           format and in particular don't let it overwrite our saved TIME
447           segment from the last seek.
448
449 2007-03-09  Michael Smith  <msmith@fluendo.com>
450
451         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find):
452           Replace AC3 typefinder with one that isn't terrible, and actually
453           works usefully.
454
455 2007-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
456
457         * gst/audioconvert/gstaudioconvert.c:
458         (gst_audio_convert_transform):
459           fix error category and translatable string
460           
461
462 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
463
464         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
465         * pkgconfig/gstreamer-plugins-base.pc.in:
466           Fix up utils => pbutils here too.
467
468 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
469
470         * gst/subparse/gstsubparse.c: (handle_buffer):
471           Break out of loop in chain function as soon as possible if we get
472           a non-OK flow return.
473
474 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
475
476         * tests/check/elements/alsa.c: (GST_START_TEST):
477         Unref the mixer if the state change fails too (if the
478         alsa devices are inaccessible, for example)
479
480 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
481
482         * tests/check/Makefile.am:
483         Don't test libvisual elements in the states check, because libvisual
484         seems to leak internally.
485
486         Re-enable the alsa and states tests now that there's new suppressions
487         in gst.supp.
488
489         * tests/check/elements/alsa.c: (GST_START_TEST):
490         Don't leak the alsamixer we instantiated.
491
492 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
493
494         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
495         (gst_ximagesink_change_state), (gst_ximagesink_reset),
496         (gst_ximagesink_finalize):
497         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
498         (gst_xvimagesink_reset), (gst_xvimagesink_finalize):
499         Move some cleanup stuff from the state change handler into a _reset()
500         function that can be called from _finalize(). This ensures that things
501         get freed even if (for some reason) the NULL->READY state transition
502         fails in the parent class.
503         Even if a parent state change fails, process our downward state change
504         logic instead of bailing out early.
505         Free the correct xcontext pointer in ximagesink's xcontext_clear.
506
507 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
508
509         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
510         Extra log line.
511
512         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_init):
513         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_init):
514         Use pango_font_description_set_family_static instead of 
515         pango_font_description_set_family to save a string copy (it was
516         leaking due to the strdup anyway)
517
518         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_finalize):
519         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_finalize):
520         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_finalize):
521         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_finalize):
522         Chain up in finalize.
523
524 2007-03-07  Tim-Philipp Müller  <tim at centricular dot net>
525
526         * gst-libs/gst/interfaces/mixertrack.c:
527         (gst_mixer_track_class_init), (gst_mixer_track_get_property),
528         (gst_mixer_track_set_property):
529           API: add "untranslated-label" property which should be set by
530           implementations at construct time (#414645).
531
532         * ext/alsa/gstalsamixeroptions.c: (gst_alsa_mixer_options_new):
533         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
534           Set "untranslated-label" when constructing mixer track objects.
535
536         * tests/check/elements/alsa.c: (GST_START_TEST), (alsa_suite):
537           Unit test to check the above.
538
539 2007-03-07  Wim Taymans  <wim@fluendo.com>
540
541         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
542         Fix confusing debug message.
543
544 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
545
546         * gst-plugins-base.doap:
547         update doap file with new version
548
549 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
550
551         * configure.ac:
552         Back to CVS
553
554 === release 0.10.12 ===
555
556 2007-03-07  Jan Schmidt <thaytan@mad.scientist.com>
557
558         * configure.ac:
559           releasing 0.10.12, "Zombie Horde"
560
561 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
562
563         * configure.ac:
564         Bump version to 0.10.11.4 pre-release
565
566 2007-03-06  Wim Taymans  <wim@fluendo.com>
567
568         * gst-libs/gst/audio/gstbaseaudiosink.c:
569         (gst_base_audio_sink_async_play):
570         Fix regression that made GStreamer skip the first samples of audio.
571         Fixes #414684.
572
573 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
574
575         * configure.ac:
576         Bump version to 0.10.11.3 pre-release
577
578 2007-03-05  Sebastian Dröge  <slomo@circular-chaos.org>
579
580         * po/POTFILES.in:
581           Update paths for the rename from utils to pbutils to fix the build.
582
583 2007-03-05  Tim-Philipp Müller  <tim at centricular dot net>
584
585         * gst-libs/gst/pbutils/Makefile.am:
586           Change directory to install headers in from gst/utils to gst/pbutils
587           as well.
588
589 2007-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
590
591         * configure.ac:
592         * docs/libs/gst-plugins-base-libs-docs.sgml:
593         * docs/libs/gst-plugins-base-libs-sections.txt:
594         * gst-libs/gst/Makefile.am:
595         * gst-libs/gst/interfaces/mixer.c:
596         * gst-libs/gst/pbutils/Makefile.am:
597         * gst-libs/gst/pbutils/descriptions.c:
598         (gst_pb_utils_get_source_description),
599         (gst_pb_utils_get_sink_description),
600         (gst_pb_utils_get_decoder_description),
601         (gst_pb_utils_get_encoder_description),
602         (gst_pb_utils_get_element_description),
603         (gst_pb_utils_add_codec_description_to_tag_list),
604         (gst_pb_utils_get_codec_description), (gst_pb_utils_list_all):
605         * gst-libs/gst/pbutils/descriptions.h:
606         * gst-libs/gst/pbutils/install-plugins.c:
607         * gst-libs/gst/pbutils/install-plugins.h:
608         * gst-libs/gst/pbutils/missing-plugins.c:
609         (gst_missing_uri_source_message_new),
610         (gst_missing_uri_sink_message_new),
611         (gst_missing_element_message_new),
612         (gst_missing_decoder_message_new),
613         (gst_missing_encoder_message_new),
614         (gst_missing_plugin_message_get_description):
615         * gst-libs/gst/pbutils/missing-plugins.h:
616         * gst-libs/gst/pbutils/pbutils.c: (gst_pb_utils_init):
617         * gst-libs/gst/pbutils/pbutils.h:
618         * gst-libs/gst/utils/Makefile.am:
619         * gst-libs/gst/utils/base-utils.c:
620         * gst-libs/gst/utils/base-utils.h:
621         * gst-libs/gst/utils/descriptions.c:
622         * gst-libs/gst/utils/descriptions.h:
623         * gst-libs/gst/utils/install-plugins.c:
624         * gst-libs/gst/utils/install-plugins.h:
625         * gst-libs/gst/utils/missing-plugins.c:
626         * gst-libs/gst/utils/missing-plugins.h:
627         * gst-plugins-base.spec.in:
628         * gst/playback/Makefile.am:
629         * gst/playback/gstdecodebin.c:
630         * gst/playback/gstdecodebin2.c:
631         * gst/playback/gstplaybasebin.c: (setup_subtitle),
632         (gen_source_element):
633         * gst/playback/gstplaybin.c: (plugin_init):
634         * tests/check/Makefile.am:
635         * tests/check/libs/pbutils.c: (GST_START_TEST),
636         (test_pb_utils_install_plugins_do_callout), (libgstpbutils_suite):
637         * tests/check/libs/utils.c:
638           rename utils to pbutils
639
640 2007-03-02  Jan Schmidt  <thaytan@mad.scientist.com>
641
642         * docs/plugins/Makefile.am:
643         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
644         * docs/plugins/gst-plugins-base-plugins-sections.txt:
645         * docs/plugins/inspect/plugin-decodebin2.xml:
646         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
647         Add documentation for decodebin2 that indicates that the API
648         is still unstable.
649
650 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
651
652         * configure.ac:
653         Update to 0.10.11.2 (0.10.12 pre-release)
654
655 2007-03-01  Wim Taymans  <wim@fluendo.com>
656
657         * gst-libs/gst/audio/gstbaseaudiosink.c:
658         (gst_base_audio_sink_async_play):
659         base time is irrelevant here.
660
661 2007-03-01  Wim Taymans  <wim@fluendo.com>
662
663         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
664         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
665         Improve debugging.
666
667         * gst-libs/gst/audio/gstbaseaudiosink.c:
668         (gst_base_audio_sink_query), (gst_base_audio_sink_event),
669         (gst_base_audio_sink_render), (gst_base_audio_sink_async_play):
670         Improve latency and clock slaving calculations.
671         Improve slave clock calibration.
672
673         * gst-libs/gst/audio/gstringbuffer.c:
674         (gst_ring_buffer_commit_full):
675         When we are asked to render N sample to 0 bytes, return N.
676
677 2007-03-01  Wim Taymans  <wim@fluendo.com>
678
679         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
680         (gst_alsasink_write), (gst_alsasink_reset):
681         * ext/alsa/gstalsasink.h:
682         Remove unused dispose function.
683         Rename lock to not interfere with alsasrc lock.
684
685         * ext/alsa/gstalsasrc.c: (gst_alsasrc_finalize),
686         (gst_alsasrc_class_init), (gst_alsasrc_init), (set_swparams),
687         (gst_alsasrc_read), (gst_alsasrc_reset):
688         * ext/alsa/gstalsasrc.h:
689         Implement finalize function.
690         Use lock to protect alsa access.
691         Implement _reset.
692         Fine tune sw params.
693
694 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
695
696         * configure.ac:
697           Convert to new AG_GST style.
698
699 2007-02-28  Wim Taymans  <wim@fluendo.com>
700
701         Patch by: Ed Catmur <ed at catmur dot co dot uk>
702
703         * gst/playback/gstplaybin.c: (gst_play_bin_vis_unblocked),
704         (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
705         Fix race condition when rapidly switching visualisations in playbin.
706         Fixes #401029.
707
708 2007-02-28  Jan Schmidt  <thaytan@mad.scientist.com>
709
710         * tests/check/Makefile.am:
711         Include local stuff before system installed things in LDFLAGS and
712         CFLAGS.
713
714 2007-02-28  Wim Taymans  <wim@fluendo.com>
715
716         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_sink_activate):
717         Improve debugging.
718
719 2007-02-28  Wim Taymans  <wim@fluendo.com>
720
721         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
722         (gst_v4lsrc_fixate), (gst_v4lsrc_query):
723         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_new):
724         Fix duration and timestamping, taking latency into account.
725         Implement latency query.
726
727 2007-02-28  Wim Taymans  <wim@fluendo.com>
728
729         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
730         (gst_audio_clock_new):
731         Fix clock name.
732
733         * gst-libs/gst/audio/gstbaseaudiosink.c:
734         (gst_base_audio_sink_init), (gst_base_audio_sink_query):
735         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
736         (gst_base_audio_src_query), (gst_base_audio_src_get_offset),
737         (gst_base_audio_src_create):
738         Improve latency query code.
739         Use proper clock names.
740
741 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
742
743         * tests/check/generic/states.c: (GST_START_TEST):
744           Copy the states.c test from core again
745         * tests/check/Makefile.am:
746           ignore cdio and cdparanoiasrc
747
748 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
749
750         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
751         (double_hq), (audio_convert_get_func_index), (check_default),
752         (audio_convert_prepare_context), (audio_convert_convert):
753           Also make valgrind happy and avoid copying data in some cases.
754
755 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
756
757         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
758         (double_hq), (audio_convert_get_func_index),
759         (audio_convert_prepare_context), (audio_convert_convert):
760         * gst/audioconvert/gstaudioconvert.c:
761         (gst_audio_convert_class_init), (gst_audio_convert_get_unit_size),
762         (gst_audio_convert_transform_caps):
763         * tests/check/elements/audioconvert.c: (GST_START_TEST),
764         (audioconvert_suite):
765           Don't run inplace if that overwrites source data as we go. Add more
766           tests. Fixes #339837 even more.
767
768 2007-02-27  Julien MOUTTE  <julien@moutte.net>
769
770         * tests/examples/seek/seek.c: (do_seek), (set_update_scale),
771         (msg_segment_done): Fix various seeking bugs (Slider was not
772         updating when doing a non flushing seek, Reverse playback 
773         on segment seek was wrong).
774
775 2007-02-26  Wim Taymans  <wim@fluendo.com>
776
777         * tests/examples/seek/seek.c: (stop_seek):
778         When we stop scrubbing, don't leave the pipeline PLAYING when we
779         requested a PAUSED state.
780
781 2007-02-25  Tim-Philipp Müller  <tim at centricular dot net>
782
783         Patch by: René Stadler <mail at renestadler de>
784
785         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
786           Parse date strings in vorbis comments that have an invalid (zero)
787           month or day (#410396).
788
789         * tests/check/libs/tag.c: (GST_START_TEST):
790           Test case for the above.
791
792 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
793
794         Patch by: Loïc Minier <lool+gnome at via ecp fr>
795
796         * configure.ac:
797         * ext/alsa/Makefile.am:
798         * gst/audiotestsrc/Makefile.am:
799           Fix compilation with LDFLAGS='-Wl,-z,defs' (#410963).
800
801 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
802
803         * gst/playback/gstplaybin.c:
804           Improve docs: point out that the application needs to assist playbin
805           with buffering.
806
807 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
808
809         * gst-libs/gst/utils/install-plugins.c:
810         * gst-libs/gst/utils/missing-plugins.c:
811         * tests/check/libs/utils.c: (missing_msg_check_getters):
812           Change GStreamer marker prefix in detail string from 'gstreamer.net'
813           to just 'gstreamer'. Document the caps string component of the
814           decoder/encoder detail a bit better, since not everyone will be
815           familiar with the GStreamer media type/caps system (but they better
816           enjoy nested itemized lists).
817
818 2007-02-22  Tim-Philipp Müller  <tim at centricular dot net>
819
820         * gst-libs/gst/netbuffer/gstnetbuffer.c:
821         (notgst_buffer_copy_fields_in_place), (gst_netbuffer_copy):
822           Fix copying of GstNetBuffer (would crash before, or at least lead to
823           invalid memory access, #410772), for now by copying the GstBuffer copy
824           code from the core over here so we can copy the GstBuffer fields on a
825           provided buffer instance (of type GstNetBuffer in this case). Would be
826           better to fix this with some support by the core though (and in the long
827           run change the broken GstBuffer/GstMiniObject copy semantics, #393099).
828
829         * tests/check/Makefile.am:
830           Enable unit test for GstNetBuffer.
831
832 2007-02-22  Andy Wingo  <wingo@pobox.com>
833
834         * gst-libs/gst/audio/gstbaseaudiosink.c
835         (gst_base_audio_sink_init): Disable pull-mode activation until we
836         figure out how to make audio sinks go to PLAYING.
837
838 2007-02-22  Stefan Kost  <ensonic@users.sf.net>
839
840         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
841         (double_hq), (audio_convert_get_func_index),
842         (audio_convert_prepare_context), (audio_convert_convert):
843         * gst/audioconvert/audioconvert.h:
844         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_setup_matrix),
845         (gst_channel_mix_mix_int), (gst_channel_mix_mix_float):
846         * gst/audioconvert/gstchannelmix.h:
847         * tests/check/elements/audioconvert.c: (GST_START_TEST):
848           Add float as an intermediate format, as well as float mixing. Enable
849           test that was failing before. Fixes #339837
850
851 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
852
853         * tests/examples/seek/seek.c: (do_seek):
854         Undo the previous commit: -1 as a stop time implies that the stop
855         time is the end of file, clearing any previously configured segment.
856
857 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
858
859         * tests/examples/seek/seek.c: (do_seek):
860         Don't SEEK_SET with a stop time of -1, use SEEK_NONE instead.
861
862 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
863
864         * gst/volume/gstvolume.c: (volume_process_int16),
865         (volume_process_int16_clamp), (volume_set_caps):
866           Unbreak volume, value remains gint.
867
868 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
869
870         * gst/volume/gstvolume.c: (volume_choose_func),
871         (volume_update_real_volume), (gst_volume_set_volume),
872         (gst_volume_init), (volume_process_double), (volume_process_float),
873         (volume_process_int16), (volume_process_int16_clamp),
874         (volume_set_caps), (volume_transform_ip), (volume_update_volume):
875         * gst/volume/gstvolume.h:
876           Extend float audio support (double) and some int->uint cleanups.
877
878 2007-02-20  Edward Hervey  <edward@fluendo.com>
879
880         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
881         (multi_queue_underrun_cb), (gst_decode_group_check_if_drained),
882         (sort_end_pads), (gst_decode_group_expose),
883         (gst_decode_group_hide):
884         Don't free groups from the streaming threads. Just put them aside and
885         free them in dispose.
886
887 2007-02-20  Edward Hervey  <edward@fluendo.com>
888
889         * gst/playback/gstdecodebin2.c: (connect_element),
890         (pad_added_group_cb), (gst_decode_group_check_if_blocked),
891         (sort_end_pads), (gst_decode_group_expose):
892         Handle dynamic pads within groups.
893         Sort pads before exposing them in order to make playbin happy.
894         There still is a race with the multiqueue filling up. This should be
895         solved separately.
896         Fixes #398721
897
898 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
899
900         * gst-libs/gst/utils/base-utils.c:
901         * gst-libs/gst/utils/descriptions.c:
902         * gst-libs/gst/utils/install-plugins.c:
903         * gst-libs/gst/utils/missing-plugins.c:
904           Some more docs (and descriptions for two subtitle formats).
905
906 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
907
908         * gst-libs/gst/audio/audio.c:
909           Fix documentation.
910
911 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
912
913         Patch by: Yves Lefebvre  <ivanohe abacom com>
914
915         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps):
916           Don't leak caps. Fixes #408278.
917
918 2007-02-15  Stefan Kost  <ensonic@users.sf.net>
919
920         * ext/cdparanoia/gstcdparanoiasrc.h:
921         * ext/ogg/gstoggdemux.h:
922         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
923         (gst_audio_frame_length), (gst_audio_duration_from_pad_buffer),
924         (gst_audio_is_buffer_framed), (gst_audio_structure_set_int):
925         * gst-libs/gst/audio/audio.h:
926         * gst-libs/gst/audio/gstaudiofilter.h:
927         * gst-libs/gst/interfaces/videoorientation.h:
928         * gst/adder/gstadder.h:
929           More docs coverage and some ChangeLog surgery (add missing names)
930
931 2007-02-15  Wim Taymans  <wim@fluendo.com>
932
933         * sys/ximage/ximagesink.c:
934         (gst_ximagesink_calculate_pixel_aspect_ratio):
935         * sys/xvimage/xvimagesink.c:
936         (gst_xvimagesink_calculate_pixel_aspect_ratio):
937         Small constifications.
938
939 2007-02-15  Wim Taymans  <wim@fluendo.com>
940
941         * gst-libs/gst/audio/gstbaseaudiosink.c:
942         (gst_base_audio_sink_class_init), (gst_base_audio_sink_query),
943         (gst_base_audio_sink_render), (gst_base_audio_sink_callback),
944         (gst_base_audio_sink_async_play),
945         (gst_base_audio_sink_change_state):
946         Answer latency query.
947         Use configured latency when syncing.
948         Fix clock slaving.
949
950         * gst-libs/gst/audio/gstbaseaudiosrc.c:
951         (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
952         (gst_base_audio_src_query), (gst_base_audio_src_change_state):
953         Fix possible memleak.
954         Implement latency query.
955         Small cleanups.
956
957 2007-02-15  Wim Taymans  <wim@fluendo.com>
958
959         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
960         Ignore errors in reset, these are not fatal. They also grab the element
961         lock which is already taking when this function is called. Fixes
962         #405451.
963
964 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
965
966         * configure.ac:
967           Remove 'tests/examples/xerror/Makefile' from output files again.
968
969 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
970
971         * configure.ac:
972         * docs/plugins/Makefile.am:
973           Also crossref against gst-plugins-base-libs.
974
975 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
976
977         * configure.ac:
978         * docs/libs/Makefile.am:
979         * docs/plugins/Makefile.am:
980           Add crossreferences to glib/gobject/gstream docs.
981
982         * gst-libs/gst/audio/audio.h:
983           Source formatting.
984
985         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
986           Add own debug category.
987
988 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
989
990         Patch by: René Stadler <mail at renestadler de>
991
992         * gst-libs/gst/tag/gstvorbistag.c:
993           Add vorbis/FLAC-tag mapping for new GST_TAG_REFERENCE_LEVEL
994           (#403597).
995
996 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
997
998         * gst/playback/gstplaybasebin.c: (setup_source):
999           When we have external subtitles and wait for the subtitle decodebin
1000           to get up and running, we set up a (sync) bus handler for the
1001           subtitle decodebin, so we can stop waiting when it posts an error
1002           message. However, we should do that before we set the subtitle
1003           decodebin's state to playing, otherwise things are racy and we might
1004           miss error messages posted before we had a chance to set up the bus.
1005           This should finally fix totem hanging on .txt pseudo-subtitle files.
1006           
1007 2007-02-10  Sébastien Moutte  <sebastien at moutte dot net>
1008
1009         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:(gst_base_rtp_audio_payload_handle_frame_based_buffer):
1010           Use gst_gdouble_to_guint64 for conversions.
1011         * win32/common/config.h.in:
1012           Add a define for GST_INSTALL_PLUGINS_HELPER
1013         * win32/common/libgstaudio.def:
1014         * win32/common/libgstcdda.def:
1015         * win32/common/libgstnetbuffer.def:
1016         * win32/common/libgstrtp.def:
1017         * win32/common/libgutils.def:
1018           Add new exported functions.
1019         * win32/vs6/gst_plugins_base.dsw:
1020         * win32/vs6/libgstdecodebin.dsp:
1021         * win32/vs6/libgstnetbuffer.dsp:
1022         * win32/vs6/libgstplaybin.dsp:
1023         * win32/vs6/libgstrtp.dsp:
1024         * win32/vs6/libgstvorbis.dsp:
1025         * win32/vs6/libgstcdda.dsp:
1026         * win32/vs6/libgstgdp.dsp:
1027         * win32/vs6/libgstutils.dsp:
1028           Update and add new project files.
1029
1030 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
1031
1032         * gst/subparse/gstsubparse.c: (subrip_remove_unhandled_tag),
1033         (subrip_remove_unhandled_tags), (parse_subrip):
1034           For SubRip (.srt) subtitles, ignore all markup tags we don't
1035           handle (like font tags, for example).
1036
1037         * tests/check/elements/subparse.c:
1038           Add test for this.
1039
1040 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
1041
1042         * gst/playback/gstdecodebin.c: (add_fakesink),
1043         (gst_decode_bin_change_state):
1044         * gst/playback/gstdecodebin2.c: (add_fakesink),
1045         (gst_decode_bin_change_state):
1046           Don't error out if there is no fakesink in the NULL to READY state
1047           change, since when decodebin is re-used, we're only adding the
1048           fakesink element in READY to PAUSED.
1049
1050         * tests/check/elements/decodebin.c:
1051         (new_decoded_pad_plug_fakesink_cb), (GST_START_TEST),
1052         (decodebin_suite):
1053           Minimal unit test to make sure we can use the same decodebin
1054           instance twice (at least with audiotestsrc input).
1055
1056 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
1057
1058         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name):
1059           Try to get devic-name from device string first, and from handle only
1060           as fallback (seems to yield better results and is more robust
1061           against buggy probing code on the application side).
1062
1063 2007-02-08  Tim-Philipp Müller  <tim at centricular dot net>
1064
1065         Based on patch by: Julien Puydt <julien.puydt at laposte net>
1066
1067         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name_no_handle),
1068         (gst_alsa_find_device_name):
1069         * ext/alsa/gstalsa.h:
1070         * ext/alsa/gstalsasink.c: (gst_alsasink_get_property):
1071         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_property):
1072           Improve device-name detection a bit, especially in the case where
1073           the device is not actually open (#405020, #405024). Move common code
1074           into gstalsa.c instead of duplicating it.
1075
1076 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
1077
1078         * gst/audioconvert/gstaudioconvert.c:
1079           Fix up docs chunk so that gtk-doc doesn't complain, and fix typo.
1080
1081 2007-02-06  Julien MOUTTE  <julien@moutte.net>
1082
1083         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
1084         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_clear),
1085         (gst_xvimagesink_interface_supported),
1086         (gst_xvimagesink_probe_get_properties),
1087         (gst_xvimagesink_probe_probe_property),
1088         (gst_xvimagesink_probe_needs_probe),
1089         (gst_xvimagesink_probe_get_values),
1090         (gst_xvimagesink_property_probe_interface_init),
1091         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
1092         (gst_xvimagesink_init), (gst_xvimagesink_class_init),
1093         (gst_xvimagesink_get_type):
1094         * sys/xvimage/xvimagesink.h: Implement PropertyProbe Interface
1095         for XVAdaptors so that one can choose the adaptor to use with 
1096         gstreamer-properties.
1097
1098 2007-02-06  Stefan Kost  <ensonic@users.sf.net>
1099
1100         * gst/audioconvert/gstaudioconvert.c:
1101           Also mention that a conversion from double to float is suboptimal still.
1102
1103 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
1104
1105         * gst-libs/gst/audio/gstaudiofilter.c:
1106         (gst_audio_filter_class_init), (gst_audio_filter_change_state):
1107           Clear our formats structure and free the caps contained in it when
1108           shutting down.
1109
1110 2007-02-05  Andy Wingo  <wingo@pobox.com>
1111
1112         * gst-libs/gst/audio/gstbaseaudiosink.c
1113         (gst_base_audio_sink_callback): Update basesink->offset so that we
1114         pull monotonically increasing offsets instead of, um, seeking back
1115         to 0 each time. Fixes alsasrc ! alsasink!
1116
1117 2007-02-05  Tim-Philipp Müller  <tim at centricular dot net>
1118
1119         * gst/videoscale/gstvideoscale.c:
1120           A width and height of 1 makes us crash, so increase minimum size to
1121           2x2 pixels until someone feels like fixing this (#404512).
1122
1123 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
1124
1125         * tests/check/pipelines/oggmux.c: (GST_START_TEST), (oggmux_suite):
1126           Add small test to make sure request pads are cleaned up properly
1127           even if oggmux never changes state out of NULL.
1128
1129 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
1130
1131         * tests/check/libs/utils.c: (GST_START_TEST):
1132           Fix unit test. Turns out things work much better when you
1133           NULL-terminate string arrays. Should make p5 build bot happy again.
1134
1135 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
1136
1137         * gst-libs/gst/audio/Makefile.am:
1138         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
1139         (gst_audio_filter_template_base_init),
1140         (gst_audio_filter_template_class_init),
1141         (gst_audio_filter_template_init),
1142         (gst_audio_filter_template_set_property),
1143         (gst_audio_filter_template_get_property),
1144         (gst_audio_filter_template_setup),
1145         (gst_audio_filter_template_filter),
1146         (gst_audio_filter_template_filter_inplace), (plugin_init):
1147           Oops, forgot to commit fixed-up example.
1148
1149 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
1150
1151         * docs/libs/gst-plugins-base-libs-sections.txt:
1152         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
1153         (gst_audio_filter_class_init), (gst_audio_filter_init),
1154         (gst_audio_filter_set_caps),
1155         (gst_audio_filter_class_add_pad_templates):
1156         * gst-libs/gst/audio/gstaudiofilter.h:
1157           Port GstAudioFilter to 0.10. This change technically breaks
1158           API and ABI (and thus also every library developer's heart),
1159           but seems justifiable on the grounds that the base class was
1160           completely unusable before (ie. would crash immediately when
1161           actually used). Fixes #403963 (and eventually also #403572).
1162           Also document all of this a bit.
1163
1164 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
1165
1166         * gst-libs/gst/utils/install-plugins.c:
1167         (gst_install_plugins_spawn_child):
1168         * tests/check/libs/utils.c:
1169         (test_base_utils_install_plugins_do_callout):
1170           Lowering log level to see why things fail on the p5 build bot;
1171           fix some typos in unit test messages.
1172
1173 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
1174
1175         * tests/check/libs/utils.c:
1176         (test_base_utils_install_plugins_do_callout):
1177           Don't hard-code temp directory for test helper; use GLib functions
1178           to write out file and do error checking etc.
1179
1180 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
1181
1182         * gst-libs/gst/utils/Makefile.am:
1183         * gst-libs/gst/utils/base-utils.h:
1184         * gst-libs/gst/utils/install-plugins.c:
1185         (gst_install_plugins_context_set_xid),
1186         (gst_install_plugins_context_new),
1187         (gst_install_plugins_context_free),
1188         (gst_install_plugins_get_helper),
1189         (gst_install_plugins_spawn_child),
1190         (gst_install_plugins_return_from_status),
1191         (gst_install_plugins_installer_exited),
1192         (gst_install_plugins_async), (gst_install_plugins_sync),
1193         (gst_install_plugins_return_get_name),
1194         (gst_install_plugins_installation_in_progress):
1195         * gst-libs/gst/utils/install-plugins.h:
1196           API: add API for applications to initiate installation of missing
1197           plugins, ie. gst_install_plugins_async() primarily.
1198           Based on libgimme-codec by Ryan Lortie.
1199
1200         * configure.ac:
1201           Add --with-install-plugins-helper configure option so distros can specify
1202           the path of the helper script or program to call when plugin installation
1203           is requested (distros: please do any argument munging in this helper
1204           script instead of patching GStreamer to pass arguments differently
1205           to another program directly).
1206
1207         * docs/libs/gst-plugins-base-libs-docs.sgml:
1208         * docs/libs/gst-plugins-base-libs-sections.txt:
1209           Build and document new API.
1210
1211         * tests/check/libs/utils.c: (result_cb),
1212         (test_base_utils_install_plugins_do_callout), (GST_START_TEST),
1213         (libgstbaseutils_suite):
1214           Some simple checks for the new API.
1215
1216 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
1217
1218         * tests/check/elements/audioconvert.c: (test_float_conversion):
1219           Add small test for 32bit float <=> 64bit float conversion (works
1220           only one way so far, 32=>64 produces structured noise).
1221
1222 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
1223
1224         * gst/audioconvert/gstaudioconvert.c:
1225         (set_structure_widths_32_and_64), (make_lossless_changes):
1226           We don't support floats with a width of 40, 48 or 56 bits.
1227
1228 2007-02-02  Stefan Kost  <ensonic@users.sf.net>
1229
1230         * gst/audioconvert/audioconvert.c: (float), (double),
1231         (audio_convert_get_func_index):
1232         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
1233         (make_lossless_changes):
1234           Support for 64-bit float audio in audioconvert (#339837)
1235
1236 2007-02-01  Tim-Philipp Müller  <tim at centricular dot net>
1237
1238         Patch by: Holger Wansing  <linux wansing-online de>
1239
1240         * po/LINGUAS:
1241         * po/de.po:
1242           Add German translation (#352069).
1243
1244 2007-02-01  Sebastian Dröge  <slomo@circular-chaos.org>
1245
1246         reviewed by: Wim Taymans <wim@fluendo.com>
1247
1248         * ext/ogg/gstoggmux.c: (gst_ogg_mux_ogg_pad_destroy_notify),
1249         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad):
1250         Use newly added GstCollectPads API to free the allocated resources in
1251         the GstOggPad structures (#402393).
1252
1253 2007-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
1254
1255         * gst/playback/gstplaybin.c: (gen_vis_element):
1256           Add audioresample+audioconvert in front of the visualisation
1257           element, so that elements like libvisual 0.4 that don't support all
1258           samplerates can work.
1259
1260           Fixes: #402505
1261
1262 2007-01-30  Tim-Philipp Müller  <tim at centricular dot net>
1263
1264         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property),
1265         (gst_play_base_bin_get_streaminfo_value_array):
1266           Take some locks and make a copy of the streaminfo value array we
1267           maintain while holding the lock, so that the application can
1268           retrieve the stream-info as a value array in a thread-safe way.
1269
1270 2007-01-30  Wim Taymans  <wim@fluendo.com>
1271
1272         * gst/audioconvert/gstaudioconvert.c:
1273         Don't fail on 0 sized buffers. Fixes #396835.
1274
1275 2007-01-29  David Schleef  <ds@schleef.org>
1276
1277         * gst/typefind/gsttypefindfunctions.c:
1278           Detect BBCD as video/x-dirac, so we can play raw dirac
1279           streams.
1280
1281 2007-01-29  Tim-Philipp Müller  <tim at centricular dot net>
1282
1283         * ext/theora/theoraenc.c: (theora_enc_chain):
1284           Check return value of theora_encode_header(), or we might try to
1285           allocate a random number of bytes. theora_encode_header() can fail
1286           if libtheora has been compiled with encoding support disabled.
1287           Fixes #398110.
1288
1289 2007-01-29  Wim Taymans  <wim@fluendo.com>
1290
1291         * tests/check/gst/.cvsignore:
1292         Do as buildbot says.
1293
1294 2007-01-29  Wim Taymans  <wim@fluendo.com>
1295
1296         * ext/libvisual/visual.c: (gst_visual_src_setcaps):
1297         Fix strides in libvisual. Gst uses X strides.
1298         Inspired by: <ed at catmur dot co dot uk> and 
1299         <tim at centricular dot net>
1300         Fixes #401118.
1301
1302 2007-01-27  Wim Taymans  <wim@fluendo.com>
1303
1304         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
1305         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
1306         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_do_seek),
1307         (gst_ogg_demux_perform_seek),
1308         (gst_ogg_demux_bisect_forward_serialno),
1309         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
1310         (gst_ogg_demux_find_chains), (gst_ogg_demux_handle_page),
1311         (gst_ogg_demux_chain), (gst_ogg_demux_combine_flows),
1312         (gst_ogg_demux_loop_reverse), (gst_ogg_demux_loop):
1313         * ext/ogg/gstoggdemux.h:
1314         Properly propagate streaming errors when we are scanning the file for
1315         chains so that we don't crash when shut down. Might fix some crashers
1316         when quickly switching oggs in RB such as #332503 and #378436.
1317
1318 2007-01-26  Tim-Philipp Müller  <tim at centricular dot net>
1319
1320         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
1321           Map a gnome-vfs HOST_NOT_FOUND error into a GStreamer NOT_FOUND
1322           error code as well.
1323
1324 2007-01-25  Wim Taymans  <wim@fluendo.com>
1325
1326         * gst/playback/gstplaybasebin.c: (remove_source):
1327         Don't try to disconnect a signal from a finalized object.
1328
1329 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
1330
1331         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose):
1332           Cast lock macro parameters to make sure we're actually accessing the
1333           lock member at the right class level. Free list itself in _dispose()
1334           as well and NULL it in case dispose gets called multiple times.
1335
1336 2007-01-25  Edward Hervey  <edward@fluendo.com>
1337
1338         * gst/playback/gstdecodebin2.c:
1339         (gst_decode_bin_dispose),(gst_decode_bin_finalize):
1340         Free GstDecodeGroups no longer used.
1341         (gst_decode_group_expose):
1342         Don't unlock too many times !
1343         (deactivate_free_recursive):
1344         Free iterator once we're done with it.
1345         Fix for recursively deactivating elements (stop at ghostpads).
1346
1347 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
1348
1349         * gst/playback/gstplaybin.c: (handoff):
1350           Fix up caps on the frame buffer before we save it and potentially
1351           make it accessible to other threads via g_object_get; also use
1352           gst_buffer_replace() instead of gst_mini_object_replace().
1353
1354 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
1355
1356         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
1357           Make getting the current frame thread-safe.
1358
1359 2007-01-25  Edward Hervey  <edward@fluendo.com>
1360
1361         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize),
1362         (gst_decode_group_new), (gst_decode_group_free):
1363         Set queues to bigger sizes to cope with HD contents.
1364         Fix some mutex freeing and add comment about MT safe methods.
1365
1366 2007-01-24  Tim-Philipp Müller  <tim at centricular dot net>
1367
1368         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
1369         (gst_text_overlay_text_event):
1370           Don't unnecessarily ref (and then leak) upstream events if the text
1371           pad is not linked. Fixes #399948.
1372
1373         * tests/check/gst-plugins-base.supp:
1374           Add suppression for pango on edgy/x86 for textoverlay test.
1375
1376 2007-01-24  Wim Taymans  <wim@fluendo.com>
1377
1378         * gst-libs/gst/rtp/gstrtpbuffer.h:
1379         Add some more fixed payloads.
1380
1381 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
1382
1383         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
1384           Error out properly if we get an error from libogg while reading the
1385           BOS page(s). Fixes crash parsing 'fuzzed' ogg file (#399340).
1386
1387 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
1388
1389         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize):
1390           Don't leak mutex.
1391
1392         * tests/check/elements/playbin.c:
1393         (test_sink_usage_video_only_stream),
1394         (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
1395         (test_suburi_error_wrongproto), (test_missing_urisource_handler),
1396         (test_missing_suburisource_handler),
1397         (test_missing_primary_decoder), (playbin_suite):
1398           Run all tests once with decodebin and once with decodebin2.
1399           One test does not pass yet with decodebin2.
1400
1401 2007-01-23  Edward Hervey  <edward@fluendo.com>
1402
1403         * ext/ogg/gstoggmux.c: (all_pads_eos), (gst_ogg_mux_collected):
1404         Fix the cases where oggmux doesn't properly figure out that all
1405         sinkpads have gone EOS, and therefore doesn't push out the remaining
1406         buffers and the final EOS event.
1407         Fixes #363379
1408
1409 2007-01-23  Julien MOUTTE  <julien@moutte.net>
1410
1411         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1412         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1413         Don't lock on navigation event push, just on keysym to string.
1414         Fixes #397673 again.
1415
1416 2007-01-22  Edward Hervey  <edward@fluendo.com>
1417
1418         * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
1419         (get_current_group), (group_demuxer_event_probe),
1420         (gst_decode_group_expose), (deactivate_free_recursive),
1421         (gst_decode_group_free):
1422         Cleanups.
1423         Don't forget to emit 'no-more-pads' once a group is exposed.
1424         Cleanup elements from a DecodeGroup once we remove it.
1425         Protect call to gst_decode_group_expose() with the decodebin lock.
1426
1427 2007-01-22  Julien MOUTTE  <julien@moutte.net>
1428
1429         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1430         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1431         Looking at Xorg code i can't figure out if that XKeysymToString
1432         function is thread sensible or not. Lock it just in case as
1433         recommended by Radek Doulik <rodo at ximian dot com>.
1434
1435 2007-01-22  Julien MOUTTE  <julien@moutte.net>
1436
1437         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1438         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1439         Lock that X Call as well. Fixes #397673.
1440
1441 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
1442
1443         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
1444           Don't go into an endless loop if the file starts with 00 00 01 2X,
1445           like quicktime redirect files might. Fixes #396042.
1446
1447         * tests/check/Makefile.am:
1448         * tests/check/gst/.cvsignore:
1449         * tests/check/gst/typefindfunctions.c: (GST_START_TEST),
1450         (typefindfunctions_suite):
1451           Add unit test for the above.
1452
1453 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
1454
1455         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1456           On second thought, use "depth" field rather than "bpp" field.
1457
1458 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
1459
1460         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1461           Camtasia caps apparently need a bpp field (#398875).
1462
1463 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
1464
1465         * gst/playback/gstplaybasebin.c: (setup_subtitle),
1466         (gen_source_element), (gst_play_base_bin_change_state):
1467           Attempt at a better error message in case we don't have the required
1468           URI handler installed; post missing-plugin message also when we're
1469           missing an URI handler for the subtitle URI; clean up properly also
1470           when an error occurs and we never made it to PAUSED state.
1471
1472         * tests/check/elements/playbin.c: (GST_START_TEST),
1473         (playbin_suite):
1474           Check that we're also getting a missing-plugin messsage for a
1475           missing subtitle URI handler (and clean up properly).
1476
1477 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
1478
1479         * gst/playback/gstplaybasebin.c: (analyse_source), (setup_source):
1480           Plug a few reference leaks.
1481
1482 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
1483
1484         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
1485           Lower probability a bit if the marker isn't right at the start,
1486           to decrease the chance of false positives.
1487
1488 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
1489
1490         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
1491           Small mpeg2 system stream typefinding improvement: make typefinder
1492           probe a bit into the stream instead of just looking for a marker
1493           at the beginning. Fixes #397810.
1494
1495 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
1496
1497         * gst/audioconvert/gstchannelmix.c:
1498           Remove compatibility cruft for prehistoric GLib versions.
1499
1500 2007-01-17  Tim-Philipp Müller  <tim at centricular dot net>
1501
1502         * gst/playback/Makefile.am:
1503         * gst/playback/gstdecodebin.c: (close_pad_link):
1504         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
1505         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
1506         (gst_play_base_bin_handle_message_func), (unknown_type):
1507           Let decodebin be the element to post missing-plugin messages for
1508           missing decoders (rather than playbin); make playbin implement
1509           GstBin::handle_message so we can suppress missing-plugin messages
1510           for types we're not handling on purpose (don't want to bring up an
1511           installer in those cases).
1512
1513 2007-01-16  Tim-Philipp Müller  <tim at centricular dot net>
1514
1515         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1516         * gst-libs/gst/tag/gstvorbistag.c:
1517         (gst_tag_list_to_vorbiscomment_buffer):
1518         * gst/typefind/gsttypefindfunctions.c: (vorbis_type_find):
1519           Fix potentially unaligned access (#397207).
1520
1521 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
1522
1523         * tests/examples/seek/seek.c: (set_scale), (update_scale),
1524         (do_seek), (stop_seek), (pause_cb), (stop_cb), (loop_toggle_cb),
1525         (rate_spinbutton_changed_cb), (msg_eos), (msg_segment_done),
1526         (main):
1527           Allow to toggle looping while it plays. Fix callback prototype. Clean
1528           up code a bit more. Add copyright header.
1529
1530 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
1531
1532         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
1533           Red and blue mask was swapped (spotted by Dan Williams).
1534
1535 2007-01-15  Stefan Kost  <ensonic@users.sf.net>
1536
1537         * gst-libs/gst/tag/gstid3tag.c:
1538         * gst-libs/gst/tag/gstvorbistag.c:
1539           Use new beats-per-minute tag from core.
1540
1541 2007-01-15  Tim-Philipp Müller  <tim at centricular dot net>
1542
1543         * po/POTFILES.in:
1544           Add new files with translatable strings, so they actually make it
1545           into the template file one day.
1546
1547 2007-01-12  Andy Wingo  <wingo@pobox.com>
1548
1549         * gst-libs/gst/audio/gstbaseaudiosink.c
1550         (gst_base_audio_sink_fixate): Implement, stolen from baseaudiosrc.
1551         (gst_base_audio_sink_activate_pull): Remove the handwavey nego
1552         stuff, as the base class handles this now. Actually tell the ring
1553         buffer to start.
1554         (gst_base_audio_sink_callback): Cast the ring buffer correctly.
1555         How did this work before? Maybe I'm not as awesome a programmer as
1556         I think.
1557
1558         * gst-libs/gst/audio/gstbaseaudiosrc.c
1559         (gst_base_audio_src_fixate): Rework as a basesrc vmethod instead
1560         of a pad function.
1561
1562 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
1563
1564         * gst-libs/gst/utils/missing-plugins.c: (copy_and_clean_caps):
1565           Remove more fields so that the application can better blacklist
1566           formats that have been tried before.
1567
1568 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
1569
1570         * gst-libs/gst/audio/mixerutils.h:
1571           Add G_BEGIN_DECLS and G_END_DECLS guards so these helpers can be
1572           used when compiling with c++ compilers as well.
1573
1574 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
1575
1576         * gst/typefind/gsttypefindfunctions.c:
1577           Fix comment.
1578
1579 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
1580
1581         * gst/playback/gstplaybin.c: (post_missing_element_message),
1582         (gen_video_element), (gen_text_element), (gen_audio_element),
1583         (gen_vis_element):
1584           Post missing-plugin messages also when we error out because
1585           converters, textoverlay or auto*sinks are missing (#161922).
1586
1587 2007-01-10  Wim Taymans  <wim@fluendo.com>
1588
1589         * gst/playback/gstdecodebin.c: (dynamic_add), (close_pad_link),
1590         (is_demuxer_element), (new_caps):
1591         * gst/playback/gstplaybasebin.c: (source_new_pad):
1592         Fix the case where we try to ref a NULL element when we delay a link
1593         because of unfixed caps.
1594         Set the state of autoplugged decodebins to PAUSED.
1595         RTSP now works in playbin, we can remove it from the blacklist.
1596
1597 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
1598
1599         * gst/playback/Makefile.am:
1600         * gst/playback/gstplaybasebin.c: (string_arr_has_str),
1601         (unknown_type), (setup_subtitle), (gen_source_element):
1602         * gst/playback/gstplaybin.c: (plugin_init):
1603           Post missing-plugin messages on the bus for missing sources and
1604           missing decoders/demuxers/depayloaders; fix error code used when
1605           we're missing an URI handler source; for media types that we are not
1606           handling on purpose at the moment, don't print "don't know how to
1607           handle xyz" messages to the terminal or post missing-plugin
1608           messages on the bus.
1609
1610         * tests/check/elements/playbin.c: (create_playbin),
1611         (GST_START_TEST), (gst_codec_src_uri_get_type),
1612         (gst_codec_src_uri_get_protocols), (gst_codec_src_uri_get_uri),
1613         (gst_codec_src_uri_set_uri), (gst_codec_src_uri_handler_init),
1614         (gst_codec_src_init_type), (gst_codec_src_base_init),
1615         (gst_codec_src_create), (gst_codec_src_class_init),
1616         (gst_codec_src_init), (plugin_init), (playbin_suite):
1617           Add some tests for the missing-plugin stuff.
1618
1619 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
1620
1621         * configure.ac:
1622         * gst-libs/gst/Makefile.am:
1623         * gst-libs/gst/utils/Makefile.am:
1624         * gst-libs/gst/utils/base-utils.c: (gst_base_utils_init):
1625         * gst-libs/gst/utils/base-utils.h:
1626         * gst-libs/gst/utils/descriptions.c: (format_info_get_desc),
1627         (find_format_info), (caps_are_rtp_caps),
1628         (gst_base_utils_get_source_description),
1629         (gst_base_utils_get_sink_description),
1630         (gst_base_utils_get_decoder_description),
1631         (gst_base_utils_get_encoder_description),
1632         (gst_base_utils_get_element_description),
1633         (gst_base_utils_add_codec_description_to_tag_list),
1634         (gst_base_utils_get_codec_description), (gst_base_utils_list_all):
1635         * gst-libs/gst/utils/descriptions.h:
1636         * gst-libs/gst/utils/missing-plugins.c:
1637         (missing_structure_get_type), (copy_and_clean_caps),
1638         (gst_missing_uri_source_message_new),
1639         (gst_missing_uri_sink_message_new),
1640         (gst_missing_element_message_new),
1641         (gst_missing_decoder_message_new),
1642         (gst_missing_encoder_message_new),
1643         (missing_structure_get_string_detail),
1644         (missing_structure_get_caps_detail),
1645         (gst_missing_plugin_message_get_installer_detail),
1646         (gst_missing_plugin_message_get_description),
1647         (gst_is_missing_plugin_message):
1648         * gst-libs/gst/utils/missing-plugins.h:
1649           API: add new libgstbaseutils library with functions
1650           - to create and parse missing-plugins messages
1651           - that provide (translated) descriptions for caps/decoders/sources/etc.
1652           Closes #392393.
1653
1654         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
1655         * pkgconfig/gstreamer-plugins-base.pc.in:
1656           Add new lib.
1657
1658         * docs/libs/gst-plugins-base-libs-docs.sgml:
1659         * docs/libs/gst-plugins-base-libs-sections.txt:
1660           Generate docs for new lib and API.
1661
1662         * tests/check/Makefile.am:
1663         * tests/check/libs/.cvsignore:
1664         * tests/check/libs/utils.c: (missing_msg_check_getters),
1665         (GST_START_TEST), (libgstbaseutils_suite):
1666           Add some basic unit tests.
1667
1668 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
1669
1670         * ext/ogg/Makefile.am:
1671           Dist gstoggdemux.h to fix 'make distcheck'.
1672
1673         * sys/v4l/Makefile.am:
1674           Fix 'make distcheck' even more.
1675
1676 2007-01-09  Wim Taymans  <wim@fluendo.com>
1677
1678         * docs/plugins/Makefile.am:
1679         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1680         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1681         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
1682         (gst_ogg_pad_query_types), (gst_ogg_pad_submit_page),
1683         (gst_ogg_chain_reset), (gst_ogg_chain_new_stream),
1684         (gst_ogg_demux_perform_seek):
1685         * ext/ogg/gstoggdemux.h:
1686         Added docs.
1687         Add some more comments.
1688         Small cleanups.
1689
1690 2007-01-09  Wim Taymans  <wim@fluendo.com>
1691
1692         * ext/theora/theoradec.c:
1693         * ext/vorbis/vorbisdec.c:
1694         * gst-libs/gst/audio/gstringbuffer.c:
1695         (gst_ring_buffer_commit_full):
1696         * gst-libs/gst/audio/gstringbuffer.h:
1697         * gst-libs/gst/rtp/gstrtpbuffer.c:
1698         * gst-libs/gst/tag/gstvorbistag.c:
1699         Small documentation updates/fixes
1700
1701 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
1702
1703         * configure.ac:
1704           Require core CVS HEAD for Andy's basesrc/sink API additions.
1705
1706 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
1707
1708         Patch by: Günter Thelen  <daedalus dot inc at gmx net>
1709
1710         * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
1711         (plugin_init):
1712           Add typefinder for flac-in-ogg in conformance with the ogg-mapping
1713           on flac.sf.net (there appear to be other versions of the first
1714           ogg page in the wild) (#391365).
1715
1716 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
1717
1718         * configure.ac:
1719           Check if localtime_r() is available.
1720
1721         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
1722           If localtime_r() is not available, fall back to localtime(). Should
1723           fix build on MingW (#393310).
1724
1725 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
1726
1727         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
1728         * gst/subparse/gstsubparse.h:
1729           Remove spurious 1000 subtrahend when calculating the timestamp from
1730           the frame number and the frame rate . Also, use the frames/second
1731           value specified in the first line of the file, if one is specified
1732           there. Should fix #357503.
1733
1734         * tests/check/elements/subparse.c: (do_test),
1735         (test_tmplayer_do_test), (test_microdvd_do_test), (GST_START_TEST),
1736         (subparse_suite):
1737           Add some basic unit tests for the microdvd subtitle format.
1738
1739 2007-01-07  Julien MOUTTE  <julien@moutte.net>
1740
1741         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1742         (gst_xvimage_buffer_finalize), (gst_xvimagesink_xvimage_new),
1743         (gst_xvimagesink_xvimage_put), (gst_lookup_xv_port_from_adaptor),
1744         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps),
1745         (gst_xvimagesink_set_xwindow_id),
1746         (gst_xvimagesink_set_event_handling),
1747         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
1748         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
1749         Patch by : Young-Ho Cha <ganadist at chollian dot net>
1750         Fixes : #390076.
1751         Add an adaptor property to select a specific XV adaptor.
1752         * sys/xvimage/xvimagesink.h:
1753
1754 2007-01-07  Julien MOUTTE  <julien@moutte.net>
1755
1756         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
1757         (gst_ximagesink_handle_xerror), (gst_ximagesink_ximage_new),
1758         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
1759         (gst_ximagesink_handle_xevents), (gst_ximagesink_setcaps),
1760         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
1761         (gst_ximagesink_expose), (gst_ximagesink_set_event_handling):
1762         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1763         (gst_xvimage_buffer_finalize), (gst_xvimagesink_handle_xerror),
1764         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
1765         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_setcaps),
1766         (gst_xvimagesink_change_state), (gst_xvimagesink_set_xwindow_id),
1767         (gst_xvimagesink_expose), (gst_xvimagesink_set_event_handling):
1768         Use flow_lock much more to protect every access to xwindow.
1769         Try to catch erros while creating images in case some drivers are
1770         just generating an XError when the requested image is too big.
1771         Should fix : #354698, #384008, #384060.
1772         * tests/icles/stress-xoverlay.c: (cycle_window), (create_window):
1773         Implement some stress testing of setting window xid.
1774
1775 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
1776
1777         * win32/common/libgsaudio.def:
1778           Add new exported function.
1779         * win32/common/libgstogg.dsp:
1780           Add gstoggaviparse.c to the build.
1781         * win32/common/libgstvideoscale.dsp:
1782           Add vs_4tap.c to the build.
1783         * win32/common/libgstvorbis.dsp:
1784           Add vorbistag.c to the build.
1785         
1786 2007-01-06  Andy Wingo  <wingo@pobox.com>
1787
1788         * gst-libs/gst/audio/gstbaseaudiosink.c
1789         (gst_base_audio_sink_class_init)
1790         (gst_base_audio_sink_init): 
1791         (gst_base_audio_sink_activate_pull): Add an activate_pull function
1792         to baseaudiosink, and tell basesink that we can work in pull mode.
1793         This way the ring buffer thread drives the pipeline directly, if
1794         pull mode is possible. There is some lingering nastiness regarding
1795         capsnego, however.
1796         (gst_base_audio_sink_callback): Implement the callback to pull
1797         data. This interface is a bit light, though -- it should get a
1798         GstFlowReturn return value at least.
1799
1800 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
1801
1802         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_stream_out):
1803         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
1804         * gst/playback/gstdecodebin2.c:
1805         (gst_decode_group_check_if_blocked):
1806           Printf format and missing argument fixes.
1807
1808 2007-01-05  Jan Schmidt  <thaytan@mad.scientist.com>
1809
1810         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header),
1811         (gst_ogm_parse_change_state):
1812         Activate pads before adding them to the element.
1813
1814 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
1815
1816         * tests/examples/seek/scrubby.c: (main):
1817         * tests/examples/seek/seek.c: (main):
1818           Call g_thread_init() first thing in main() (see #391278).
1819
1820 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
1821
1822         * tests/check/Makefile.am:
1823         * tests/check/libs/.cvsignore:
1824         * tests/check/libs/netbuffer.c: (GST_START_TEST),
1825         (netbuffer_suite):
1826           Add test for GstNetBuffer + gst_buffer_copy(). Disabled
1827           for the time being, since it's broken, see #393099.
1828
1829 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
1830
1831         * tests/check/Makefile.am:
1832           Update to use GST_PLUGINS_BASE_CFLAGS as well.
1833
1834 2007-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
1835
1836         * configure.ac:
1837           split out GST_CFLAGS into GST_PLUGINS_BASE_CFLAGS and GST_CFLAGS
1838           so that GST_BASE_CFLAGS can go inbetween them, making sure
1839           we use uninstalled gst-libs headers
1840         * docs/libs/Makefile.am:
1841         * ext/alsa/Makefile.am:
1842         * ext/cdparanoia/Makefile.am:
1843         * ext/gnomevfs/Makefile.am:
1844         * ext/libvisual/Makefile.am:
1845         * ext/ogg/Makefile.am:
1846         * ext/theora/Makefile.am:
1847         * ext/vorbis/Makefile.am:
1848         * gst-libs/gst/audio/Makefile.am:
1849         * gst-libs/gst/cdda/Makefile.am:
1850         * gst-libs/gst/interfaces/Makefile.am:
1851         * gst-libs/gst/riff/Makefile.am:
1852         * gst-libs/gst/rtp/Makefile.am:
1853         * gst-libs/gst/tag/Makefile.am:
1854         * gst/adder/Makefile.am:
1855         * gst/audioconvert/Makefile.am:
1856         * gst/audiorate/Makefile.am:
1857         * gst/audioresample/Makefile.am:
1858         * gst/playback/Makefile.am:
1859         * gst/tcp/Makefile.am:
1860         * gst/videoscale/Makefile.am:
1861         * gst/volume/Makefile.am:
1862         * sys/ximage/Makefile.am:
1863         * sys/xvimage/Makefile.am:
1864         * tests/icles/Makefile.am:
1865           adapt
1866
1867 2007-01-04  Julien MOUTTE  <julien@moutte.net>
1868
1869         * gst-libs/gst/interfaces/xoverlay.c:
1870         (gst_x_overlay_handle_events):
1871         * gst-libs/gst/interfaces/xoverlay.h:
1872         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
1873         (gst_ximagesink_set_xwindow_id),
1874         (gst_ximagesink_set_event_handling),
1875         (gst_ximagesink_xoverlay_init), (gst_ximagesink_set_property),
1876         (gst_ximagesink_get_property), (gst_ximagesink_init),
1877         (gst_ximagesink_class_init):
1878         * sys/ximage/ximagesink.h:
1879         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new),
1880         (gst_xvimagesink_set_xwindow_id),
1881         (gst_xvimagesink_set_event_handling),
1882         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_set_property),
1883         (gst_xvimagesink_get_property), (gst_xvimagesink_init),
1884         (gst_xvimagesink_class_init):
1885         * sys/xvimage/xvimagesink.h:
1886         * tests/icles/stress-xoverlay.c: (toggle_events), (create_window):
1887         Add a method to the XOverlay interface to allow disabling of 
1888         event handling in x[v]imagesink elements. This will let X events
1889         propagate to parent windows which can be usefull in some cases.
1890         Be carefull that the application is then responsible of pushing
1891         navigation events and expose events to the video sink.
1892         Fixes: #387138.
1893
1894 2007-01-03  Tim-Philipp Müller  <tim at centricular dot net>
1895
1896         * gst-libs/gst/tag/gstvorbistag.c:
1897         * tests/check/libs/tag.c: (GST_START_TEST):
1898           Add vorbistag <=> GStreamer tag mapping for GST_TAG_LOCATION
1899           (fixes #392070).
1900
1901 2007-01-01  Tim-Philipp Müller  <tim at centricular dot net>
1902
1903         * configure.ac:
1904         * docs/Makefile.am:
1905         * docs/design/Makefile.am:
1906           Dist design docs.
1907
1908 2006-12-27  Julien MOUTTE  <julien@moutte.net>
1909
1910         * docs/libs/gst-plugins-base-libs-sections.txt: Fix a documentation
1911         typo. Fixes: #390063.
1912
1913 2006-12-27  Julien MOUTTE  <julien@moutte.net>
1914
1915         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
1916         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Plug a
1917         caps leak.
1918         * win32/common/config.h: Updated.
1919
1920 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
1921
1922         * tests/check/elements/gdpdepay.c: (cleanup_gdpdepay),
1923         (setup_gdpdepay_streamheader):
1924         * tests/check/elements/gdppay.c: (cleanup_gdppay),
1925         (setup_gdppay_streamheader):
1926           Fix the dp tests, but activating the pads for the streamheader tests
1927           too and cleaning up conditionaly
1928
1929 2006-12-22  Jan Schmidt  <thaytan@mad.scientist.com>
1930
1931         * gst/ffmpegcolorspace/avcodec.h:
1932         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1933         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
1934         (gst_ffmpegcsp_avpicture_fill):
1935         * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
1936         (img_get_alpha_info):
1937         Add 2 new caps arrangements, for 24-bit RGB and BGR in 32-bits, but at the
1938         other end of the word. Fixes: #387073.
1939
1940         Add some inconsequential branch hints in a couple of places.
1941
1942 2006-12-21  Tim-Philipp Müller  <tim at centricular dot net>
1943
1944         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1945         (gst_ffmpeg_caps_to_smpfmt):
1946           The "signed" field in raw audio caps is of boolean type, trying to
1947           extract the value with _get_int() will fail (fix to keep in sync with
1948           the copy in gst-ffmpeg)
1949
1950 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
1951
1952         * tests/check/elements/audioresample.c: (cleanup_audioresample):
1953         * tests/check/elements/audiotestsrc.c: (cleanup_audiotestsrc):
1954         * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
1955         (cleanup_gdpdepay):
1956         * tests/check/elements/gdppay.c: (setup_gdppay), (cleanup_gdppay):
1957         * tests/check/elements/subparse.c: (teardown_subparse):
1958         * tests/check/elements/textoverlay.c: (cleanup_textoverlay):
1959         * tests/check/elements/videorate.c: (cleanup_videorate):
1960         * tests/check/elements/videotestsrc.c: (cleanup_videotestsrc):
1961         * tests/check/elements/volume.c: (cleanup_volume):
1962         * tests/check/elements/vorbisdec.c: (setup_vorbisdec),
1963         (cleanup_vorbisdec):
1964         * tests/check/elements/vorbistag.c: (setup_vorbistag),
1965         (cleanup_vorbistag):
1966           consistent pad (de)activation
1967
1968 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
1969
1970         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1971           Forgot to register the extensions.
1972
1973 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
1974
1975         * gst/typefind/gsttypefindfunctions.c: (vivo_type_find),
1976         (plugin_init):
1977           Add typefinder for VIVO files (my christmas present to the 90s).
1978
1979 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
1980
1981         * gst/playback/gstdecodebin.c: (type_found):
1982           Special-case the text/plain media type: we only want to recognise it
1983           as a 'raw' decoded media type if it comes from a demuxer or subtitle
1984           parser, but not if the entire stream is of text/plain type. If the
1985           entire stream is text/plain, we should just error out.
1986
1987           This fixes playback of audio files with lyrics in totem. Totem can't
1988           distinguish between text files and subtitle files and passes any
1989           .txt file with the same basename as the main file to playbin as
1990           suburi, and playbin will then throw a 'subtitle found, but no video
1991           stream' error, which isn't entirely helpful. See #380342.
1992
1993           Also, with this change we'll show a slightly more correct error
1994           message in case totem passes a playlist file to us (although a
1995           custom error message wording instead of the default text would
1996           probably not be a bad idea either).
1997
1998           Same problem also needs to be fixed for playbin+decodebin2.
1999
2000         * tests/check/Makefile.am:
2001         * tests/check/elements/decodebin.c: (src_handoff_cb),
2002         (decodebin_new_decoded_pad_cb), (GST_START_TEST),
2003         (decodebin_suite):
2004           Add simple unit test for decodebin for the above.
2005
2006 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
2007
2008         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
2009         * gst/playback/gstdecodebin2.c: (gst_decode_bin_change_state):
2010           Refuse to change state to READY when we failed to create any of the
2011           required elements in our instance init function.
2012
2013 2006-12-15  Tim-Philipp Müller  <tim at centricular dot net>
2014
2015         * docs/libs/gst-plugins-base-libs-sections.txt:
2016           Small docs fixes/updates.
2017
2018         * gst-libs/gst/video/gstvideosink.h:
2019           Remove nonfunctional GST_VIDEO_SINK_CLOCK macro which is a leftover
2020           from the 0.9 days (GST_BASE_SINK_CLOCK, which it points to, was
2021           removed from the base sink API between 0.9.6 and 0.9.7).
2022           API: add GST_VIDEO_SINK_CAST and use it for the height/width
2023           accessor macros, so we don't do a runtime GObject type check every
2024           time we use them.
2025
2026 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
2027
2028         * Makefile.am:
2029         * gst-plugins-base.doap:
2030         * gst-plugins-base.spec.in:
2031           add doap file
2032
2033 2006-12-09  Tim-Philipp Müller  <tim at centricular dot net>
2034
2035         Patch by: Jens Granseuer <jensgr at gmx net>
2036
2037         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
2038         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2039         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
2040         (gst_base_rtp_audio_payload_handle_sample_based_buffer):
2041         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
2042           Declare variables at the beginning of a block. Fixes #383195.
2043
2044 2006-12-07  Jan Schmidt  <thaytan@mad.scientist.com>
2045
2046         * configure.ac:
2047         Bump version nano - back to CVS.
2048
2049
2050 === release 0.10.11 ===
2051
2052 2006-12-06  Jan Schmidt <thaytan@mad.scientist.com>
2053
2054         * configure.ac:
2055           releasing 0.10.11, "Dumb things"
2056
2057 2006-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
2058
2059         * gst/playback/gstdecodebin.c: (find_dynamic), (dynamic_add),
2060         (close_pad_link), (elem_is_dynamic), (unlinked), (close_link):
2061         Handle the case where an element has multiple pads with 
2062         unfixed caps as well as still possibly producing more dynamic 
2063         pads by storing each case as a distinct entry in the dynamic list.
2064         Fixes #38223 again.
2065
2066 2006-12-04  Wim Taymans  <wim@fluendo.com>
2067
2068         * gst/playback/gstdecodebin.c: (close_pad_link):
2069         Fix #382223, add more dynamic caps handling.
2070
2071 2006-12-04  Wim Taymans  <wim@fluendo.com>
2072
2073         reviewed by: <delete if not using a buddy>
2074
2075         * gst-libs/gst/audio/gstringbuffer.h:
2076         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_init),
2077         (gst_netaddress_set_ip4_interface),
2078         (gst_netaddress_set_ip6_interface), (gst_netaddress_set_loopback),
2079         (gst_netaddress_set_ttl), (gst_netaddress_get_ip4_interface),
2080         (gst_netaddress_get_ip6_interface), (gst_netaddress_get_loopback),
2081         (gst_netaddress_get_ttl):
2082         * gst-libs/gst/netbuffer/gstnetbuffer.h:
2083         * gst/playback/gstdecodebin.c: (close_pad_link):
2084         * tests/examples/seek/seek.c: (end_scrub), (end_seek), (do_seek),
2085         (seek_cb), (stop_seek), (rate_spinbutton_changed_cb):
2086         * win32/common/config.h:
2087
2088 2006-12-01  Michael Smith  <msmith@fluendo.com>
2089
2090         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
2091           Delete bad debug code.
2092           Fixes #381219
2093
2094 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
2095
2096         * gst/videoscale/vs_4tap.c:
2097         * win32/MANIFEST:
2098         * win32/common/config.h:
2099         * win32/vs8/libgstvideoscale.vcproj:
2100         Fix compilation on win32 under VS8
2101         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
2102         Partially fixes #381175
2103
2104 2006-11-30  Michael Smith  <msmith@fluendo.com>
2105
2106         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
2107         (GST_START_TEST):
2108           It would be very bad if, after a discont buffer, we thought every
2109           single following buffer was also discont. So, add to the test to
2110           ensure that this isn't the case.
2111           
2112         * ext/theora/theoraenc.c: (theora_enc_is_discontinuous):
2113           ... it was the case. So fix it.
2114
2115 2006-11-28  Wim Taymans  <wim@fluendo.com>
2116
2117         * gst/playback/gstplaybasebin.c: (check_queue_event):
2118         Improve debug.
2119
2120         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
2121         Fix width and height range from 16 - 4096 to 1 - MAXINT, just like the
2122         padtemplate caps. Refixes #357577.
2123
2124 2006-11-28  Wim Taymans  <wim@fluendo.com>
2125
2126         * gst/playback/gstplaybasebin.c: (check_queue_event),
2127         (queue_threshold_reached), (queue_out_of_data),
2128         (gen_preroll_element):
2129         Add event probe to see when EOS is in a queue and we can disable the
2130         underrun signals. Fixes #357577.
2131
2132 2006-11-28  Edward Hervey  <edward@fluendo.com>
2133
2134         * gst/playback/Makefile.am:
2135         * gst/playback/gstdecodebin2.c: (gst_decode_bin_get_type),
2136         (_gst_boolean_accumulator), (gst_decode_bin_class_init),
2137         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
2138         (gst_decode_bin_init), (gst_decode_bin_dispose),
2139         (gst_decode_bin_finalize), (gst_decode_bin_set_property),
2140         (gst_decode_bin_get_property), (gst_decode_bin_set_caps),
2141         (gst_decode_bin_get_caps), (gst_decode_bin_autoplug_continue),
2142         (gst_decode_bin_autoplug_sort), (analyze_new_pad), (connect_pad),
2143         (connect_element), (expose_pad), (type_found),
2144         (pad_added_group_cb), (pad_removed_group_cb),
2145         (no_more_pads_group_cb), (pad_added_cb), (pad_removed_cb),
2146         (no_more_pads_cb), (find_compatibles), (is_demuxer_element),
2147         (are_raw_caps), (multi_queue_overrun_cb),
2148         (multi_queue_underrun_cb), (gst_decode_group_new),
2149         (get_current_group), (group_demuxer_event_probe),
2150         (gst_decode_group_control_demuxer_pad),
2151         (gst_decode_group_control_source_pad),
2152         (gst_decode_group_check_if_blocked),
2153         (gst_decode_group_check_if_drained), (gst_decode_group_expose),
2154         (gst_decode_group_hide), (gst_decode_group_free),
2155         (gst_decode_group_set_complete), (source_pad_blocked_cb),
2156         (source_pad_event_probe), (gst_decode_pad_new), (add_fakesink),
2157         (remove_fakesink), (find_sink_pad), (gst_decode_bin_change_state),
2158         (plugin_init):
2159         New decodebin2 element.
2160         Closes #370092
2161         * gst/playback/gstplay-marshal.list:
2162         Added marshallers for new signals in decodebin2
2163         * gst/playback/gstplaybasebin.c: (setup_subtitle), (make_decoder):
2164         Use decodebin2 if *and only if* the USE_DECODEBIN2 environment variable
2165         is set.
2166
2167 2006-11-28  Wim Taymans  <wim@fluendo.com>
2168
2169         * gst/playback/gstplaybasebin.c: (setup_source),
2170         (gst_play_base_bin_change_state):
2171         Disable rtsp:// uris for the release, it's not good enough yet.
2172         Remove unused var.
2173
2174 2006-11-26  Wim Taymans  <wim@fluendo.com>
2175
2176         * ext/theora/theoradec.c: (gst_theora_dec_reset),
2177         (theora_dec_push_forward), (theora_dec_push_reverse),
2178         (theora_handle_data_packet), (theora_dec_decode_buffer),
2179         (theora_dec_flush_decode), (theora_dec_chain_reverse),
2180         (theora_dec_chain_forward), (theora_dec_chain):
2181         Implement reverse playback.
2182
2183         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
2184         (vorbis_dec_decode_buffer), (vorbis_dec_flush_decode),
2185         (vorbis_dec_chain_forward):
2186         Clear buffers used for reverse playback in _reset.
2187         No need to set the eos flag, we clip samples using the segment.
2188
2189 2006-11-24  Wim Taymans  <wim@fluendo.com>
2190
2191         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
2192         (gst_ogg_pad_init), (gst_ogg_pad_dispose), (gst_ogg_pad_reset),
2193         (gst_ogg_pad_stream_out), (gst_ogg_pad_submit_page),
2194         (gst_ogg_chain_reset), (gst_ogg_demux_perform_seek):
2195         Some cleanups.
2196         Handle continued pages in reverse mode.
2197
2198 2006-11-24  Wim Taymans  <wim@fluendo.com>
2199
2200         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
2201         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
2202         (vorbis_dec_flush_decode):
2203         Small cleanups.
2204         Don't try to add invalid timestamps.
2205         Clipping will unref the buffer.
2206
2207 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
2208
2209         * gst/adder/gstadder.h:
2210         * gst/audiotestsrc/gstaudiotestsrc.h:
2211           remove obsolete _factory_init protos
2212
2213 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
2214
2215         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
2216           Fix spacing in debug message.
2217
2218 2006-11-23  Wim Taymans  <wim@fluendo.com>
2219
2220         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
2221         (gst_ogg_demux_chain):
2222         Don't just ignore return values from _pad_push().
2223         Small debug improvements.
2224
2225 2006-11-23  Michael Smith  <msmith@fluendo.com>
2226
2227         * ext/ogg/gstoggmux.c: (gst_ogg_mux_process_best_pad):
2228           If our incoming buffer is marked as DISCONT, then increment the page
2229           number (so that the discontinuity is marked in the final ogg
2230           bitstream) and flush the previous page.
2231
2232 2006-11-22  Michael Smith  <msmith@fluendo.com>
2233
2234         * ext/theora/gsttheoraenc.h:
2235         * ext/theora/theoraenc.c: (gst_theora_enc_init),
2236         (theora_enc_reset), (theora_enc_clear), (theora_enc_sink_setcaps),
2237         (theora_buffer_from_packet), (theora_enc_is_discontinuous),
2238         (theora_enc_chain), (theora_enc_change_state):
2239           Mark discontinuities of > 3/4 of a frame, reinit encoder.
2240
2241         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
2242         (GST_START_TEST), (theoraenc_suite):
2243           Enable discontinuity test, fix it.
2244
2245 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
2246
2247         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
2248         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
2249         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
2250         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
2251         (gst_text_overlay_change_state):
2252         * ext/pango/gsttextoverlay.h:
2253           Some textoverlay fixes: for one, in the video chain function,
2254           actually wait for a text buffer to come in if there is none at the
2255           moment and there should be one; also, deal more gracefully with
2256           incoming buffers that do not have a timestamp or duration; discard
2257           text buffer when not needed any longer. Fixes #341681.
2258
2259         * tests/check/Makefile.am:
2260         * tests/check/elements/.cvsignore:
2261         * tests/check/elements/textoverlay.c:
2262         (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2),
2263         (setup_textoverlay), (buffer_is_all_black), (create_black_buffer),
2264         (create_text_buffer), (cleanup_textoverlay), (GST_START_TEST),
2265         (test_video_waits_for_text_send_text_newsegment_thread),
2266         (test_video_waits_for_text_shutdown_element),
2267         (test_render_continuity_push_video_buffers_thread),
2268         (textoverlay_suite):
2269           Add some unit tests for textoverlay.
2270
2271 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
2272
2273         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
2274           Avoid integer underflow when the found probability for mp3 is
2275           smaller than the 'penalty' we subtract if there's not a clean
2276           mp3 header sync at offset 0.
2277
2278 2006-11-21  Stefan Kost  <ensonic@users.sf.net>
2279
2280         * docs/libs/gst-plugins-base-libs-sections.txt:
2281           Add some new symbols to the docs
2282
2283 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
2284
2285         * tests/check/Makefile.am:
2286         * tests/check/elements/ffmpegcolorspace.c:
2287         (ffmpegcolorspace_suite):
2288           Enable ffmpegcolorspace test now that the RGBA32 issue is fixed
2289           (for now not for valgrinding though, since it takes too long).
2290
2291 2006-11-20  Wim Taymans  <wim@fluendo.com>
2292
2293         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
2294         (gst_ffmpeg_pixfmt_to_caps):
2295         Fix RGBA32 caps. Fixes #357038.
2296
2297 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
2298
2299         * gst-libs/gst/interfaces/mixertrack.h:
2300           Add FIXME so we can add some padding here in 0.11
2301
2302 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
2303
2304         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
2305           Fix GstBaseRTPAudioPayload structure so the whole GObject
2306           inheritance business actually works (parent class instance structure
2307           must always come first in the derived class instance structure).
2308
2309 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
2310
2311         * gst/videotestsrc/Makefile.am:
2312         * tests/check/Makefile.am:
2313           Make sure our checks and the videotestsrc plugin link against the
2314           local uninstalled gst libs and not any installed gst libs that
2315           might happen to exist as well.
2316
2317         * tests/check/elements/adder.c: (message_received),
2318         (test_event_message_received), (test_play_twice_message_received):
2319         * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
2320           Fix compiler warnings when compiling against core with disabled
2321           debugging system.
2322
2323 2006-11-16  Michael Smith  <msmith@fluendo.com>
2324
2325         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
2326         (gst_audio_rate_sink_event), (gst_audio_rate_chain):
2327           Fix audiorate, so that it accurately sets offsets and timestamps.
2328           Doesn't change the fundamental algorithmic decisions; so should be
2329           safe.
2330
2331         * tests/check/Makefile.am:
2332           Enable audiorate test now that it passes.
2333
2334 2006-11-09  Stefan Kost  <ensonic@users.sf.net>
2335
2336         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
2337           clear xv when going to NULL, remove // commented non-existant proto
2338
2339         * tests/examples/seek/seek.c: (main):
2340           add missing tooltip description for scrub and play_scrub
2341
2342 2006-11-14  David Schleef  <ds@schleef.org>
2343
2344         * configure.ac:
2345           Bump liboil requirement to 0.3.8.
2346         * gst-libs/gst/riff/riff-media.c:
2347           Add Dirac fourcc.
2348         * gst/videoscale/vs_image.h:
2349         * gst/videoscale/vs_scanline.h:
2350           Use liboil's stdint.h.
2351         * gst/videotestsrc/videotestsrc.c:
2352           Remove liboil related ifdef's, since they aren't needed now, and
2353           won't work with future versions.
2354
2355 2006-11-14  David Schleef  <ds@schleef.org>
2356
2357         * gst/videoscale/Makefile.am:
2358         * gst/videoscale/gstvideoscale.c:
2359         * gst/videoscale/gstvideoscale.h:
2360         * gst/videoscale/vs_4tap.c:
2361         * gst/videoscale/vs_4tap.h:
2362         * gst/videoscale/vs_image.c:
2363         * gst/videoscale/vs_image.h:
2364         * gst/videoscale/vs_scanline.c:
2365         * gst/videoscale/vs_scanline.h:
2366           Add a 4-tap image scaler.  Theoretically looks much prettier.
2367           The tap calculation could use some improvement.
2368
2369 2006-11-14  Wim Taymans  <wim@fluendo.com>
2370
2371         Patch by: Jan David Mol <j dot j dot d dot mol at tudelft dot nl>
2372
2373         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds),
2374         (gst_riff_parse_strf_iavs):
2375         * gst/subparse/gstsubparse.c: (convert_encoding):
2376         * gst/tcp/gstmultifdsink.c:
2377         (gst_multi_fd_sink_handle_client_write):
2378         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
2379         (gst_tcp_read_buffer), (gst_tcp_gdp_read_caps),
2380         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
2381         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_render):
2382         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
2383         (gst_ximagesink_ximage_new):
2384         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
2385         Various gsize and gssize printf fixes. Fixes #372507.
2386
2387 2006-11-13  Wim Taymans  <wim@fluendo.com>
2388
2389         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
2390         (vorbis_dec_push_forward), (vorbis_dec_push_reverse),
2391         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
2392         (vorbis_dec_flush_decode), (vorbis_dec_chain_reverse),
2393         (vorbis_dec_chain_forward), (vorbis_dec_chain):
2394         * ext/vorbis/vorbisdec.h:
2395         First stab at vorbis reverse playback.
2396
2397 2006-11-13  Wim Taymans  <wim@fluendo.com>
2398
2399         * gst-libs/gst/audio/gstbaseaudiosink.c:
2400         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
2401         * gst-libs/gst/audio/gstbaseaudiosink.h:
2402         Make the clock sync code more accurate wrt resampling and playback
2403         at different rates.
2404         
2405         * gst-libs/gst/audio/gstringbuffer.c:
2406         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit):
2407         * gst-libs/gst/audio/gstringbuffer.h:
2408         Use better algorithm to interpolate sample rates. 
2409
2410 2006-11-13  Michael Smith  <msmith@fluendo.com>
2411
2412         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page):
2413           Improve a debug line slightly.
2414
2415         * ext/ogg/gstogmparse.c: (gst_ogm_parse_plugin_init):
2416           Call gst_riff_init() in plugin_init, to avoid getting errors from
2417           the debug system (unrelated changes to another plugin made this turn
2418           up; not sure why).
2419
2420 2006-11-10  Tim-Philipp Müller  <tim at centricular dot net>
2421
2422         Patch by: Sergey Scobich  <sergery.scobich at gmail com>
2423
2424         * win32/common/libgsttag.def:
2425           Add missing symbol (#366492).
2426
2427 2006-11-09  Tim-Philipp Müller  <tim at centricular dot net>
2428
2429         * gst/playback/gststreamselector.c: (gst_stream_selector_dispose):
2430           Don't unref a NULL pad.
2431
2432 2006-11-09  Wim Taymans  <wim@fluendo.com>
2433
2434         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
2435         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_perform_seek),
2436         (gst_ogg_demux_handle_page), (gst_ogg_demux_chain),
2437         (gst_ogg_demux_loop_forward), (gst_ogg_demux_loop_reverse),
2438         (gst_ogg_demux_loop):
2439         Implement first stab at reverse playback.
2440
2441 2006-11-07  Stefan Kost  <ensonic@users.sf.net>
2442
2443         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
2444         (gst_riff_create_video_template_caps):
2445           add h263/h264 variants to the caps, Fixes #363118
2446
2447 2006-11-06  Tim-Philipp Müller  <tim at centricular dot net>
2448
2449         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
2450         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
2451           Use g_strerror instead of strerror so we get UTF-8.
2452
2453 2006-11-03  David Schleef  <ds@schleef.org>
2454
2455         * ext/ogg/gstoggdemux.c:
2456         * ext/ogg/gstoggmux.c:
2457           Add/remove KW-DIRAC header here, since it is ogg-specific.
2458
2459 2006-11-03  Michael Smith  <msmith@fluendo.com>
2460
2461         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
2462           Recognise more mpeg4 elementary video streams.
2463
2464 2006-11-02  Edward Hervey  <edward@fluendo.com>
2465
2466         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
2467         Lower the probability of mp3 typefinding functions if we don't find a
2468         valid mp3 header at the start of the file.
2469         Closes #369482
2470
2471 2006-11-02  Wim Taymans  <wim@fluendo.com>
2472
2473         * ext/theora/gsttheoradec.h:
2474         * ext/theora/theoradec.c: (gst_theora_dec_init),
2475         (theora_dec_sink_event), (theora_dec_chain_forward),
2476         (theora_dec_flush_decode), (theora_dec_chain_reverse),
2477         (theora_dec_chain):
2478         Document and partially implement an algorithm for doing reverse playback
2479         of theora video.
2480
2481 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
2482
2483         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
2484
2485         * win32/common/config.h:
2486         * win32/common/interfaces-enumtypes.c:
2487         * win32/common/libgsttag.def:
2488         * win32/vs8/gst-plugins-base.sln:
2489         * win32/vs8/libgstaudioresample.vcproj:
2490         * win32/vs8/libgstinterfaces.vcproj:
2491         * win32/vs8/libgstogg.vcproj:
2492         * win32/vs8/libgstriff.vcproj:
2493         * win32/vs8/libgsttag.vcproj:
2494         * win32/vs8/libgsttheora.vcproj:
2495         * win32/vs8/libgstvideoscale.vcproj:
2496         * win32/vs8/libgstvorbis.vcproj:
2497           Misc. VS8 build fixes: fix syntax in config.h, add missing entries
2498           to libgsttag.def; add missing dependencies for some vs8 projects;
2499           re-arrange placement of .def files in vs8 projects (#366334).
2500
2501 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
2502
2503         * ext/ogg/gstogg.c:
2504           Remove unused variable.
2505
2506         * ext/ogg/gstoggdemux.c:
2507           Fix Wim's surname in plugin description.
2508
2509 2006-10-31  Wim Taymans  <wim@fluendo.com>
2510
2511         * gst-plugins-base.spec.in:
2512         spec new .h file. Fixes #368310.
2513
2514 2006-10-31  Michael Smith  <msmith@fluendo.com>
2515
2516         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
2517         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
2518         (gst_multi_fd_sink_get_stats),
2519         (gst_multi_fd_sink_remove_client_link),
2520         (gst_multi_fd_sink_queue_buffer),
2521         (gst_multi_fd_sink_handle_clients):
2522         * gst/tcp/gstmultifdsink.h:
2523           Make using the remove or clear signals threadsafe.
2524           Make calling get-stats with an invalid fd not segfault.
2525           Fixes 368273.
2526
2527 2006-10-31  Wim Taymans  <wim@fluendo.com>
2528
2529         * gst-libs/gst/rtp/Makefile.am:
2530         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2531         (gst_base_rtp_audio_payload_init):
2532         Fix and activate base audio payloader.
2533
2534 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
2535
2536         * gst/typefind/gsttypefindfunctions.c: (qtif_type_find),
2537         (plugin_init):
2538           Add typefinder for QuickTime Image Files (see #366156).
2539
2540 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
2541
2542         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
2543           Another typo fix (#366212).
2544
2545 2006-10-27  Wim Taymans  <wim@fluendo.com>
2546
2547         * gst/volume/gstvolume.c: (volume_transform_ip):
2548         Use stream time to synchronize volume property instead of rather random
2549         timestamps. This is needed when gnonlin does its time shifting.
2550
2551 2006-10-27  Wim Taymans  <wim@fluendo.com>
2552
2553         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
2554
2555         * ext/ogg/gstoggmux.c: (gst_ogg_mux_release_pad):
2556         Remove the pad from the element in release_pad. Fixes #364812.
2557
2558 2006-10-27  Tim-Philipp Müller  <tim at centricular dot net>
2559
2560         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
2561         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
2562           Explicitly create our custom buffer classes at a thread-safe
2563           location as well, since g_type_class_ref() doesn't seem to be
2564           entirely thread-safe either (#365501; also see #349410).
2565
2566 2006-10-26  Tim-Philipp Müller  <tim at centricular dot net>
2567
2568         * gst-libs/gst/riff/riff-read.c: (freeform_string_to_utf8),
2569         (gst_riff_parse_info):
2570           If strings in INFO chunk are not UTF-8, do something similar to
2571           what we do for ID3v1 tags: check a number of environment variables
2572           (GST_AVI_TAG_ENCODING, GST_RIFF_TAG_ENCODING, GST_TAG_ENCODING) for
2573           character sets to try, otherwise try the current locale and/or fall
2574           back on ISO-8859-1. Fixes #360552.
2575
2576 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
2577
2578         * gst/videotestsrc/gstvideotestsrc.c:
2579         (gst_video_test_src_pattern_get_type),
2580         (gst_video_test_src_set_pattern):
2581         * gst/videotestsrc/gstvideotestsrc.h:
2582         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_checkers1),
2583         (gst_video_test_src_checkers2), (gst_video_test_src_checkers4),
2584         (gst_video_test_src_checkers8):
2585         * gst/videotestsrc/videotestsrc.h:
2586           Add a bunch of exciting new checkers patterns.
2587
2588 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
2589
2590         * gst/subparse/Makefile.am:
2591         * gst/subparse/gstsubparse.c:
2592         (gst_sub_parse_data_format_autodetect),
2593         (gst_sub_parse_format_autodetect), (handle_buffer),
2594         (gst_sub_parse_chain), (gst_subparse_type_find), (plugin_init):
2595         * gst/subparse/gstsubparse.h:
2596         * gst/subparse/tmplayerparse.c: (tmplayer_parse_line),
2597         (parse_tmplayer):
2598         * gst/subparse/tmplayerparse.h:
2599           Add support for TMPlayer-type subtitles (#362845).
2600
2601         * tests/check/elements/subparse.c: (test_tmplayer_do_test),
2602         (GST_START_TEST), (subparse_suite):
2603           Add some basic unit tests for the above.
2604
2605 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
2606
2607         * tests/check/elements/audiorate.c: (test_injector_base_init),
2608         (test_injector_class_init), (test_injector_chain),
2609         (test_injector_init), (probe_cb), (do_perfect_stream_test),
2610         (GST_START_TEST), (audiorate_suite):
2611           More tests for audiorate: inject buffers to check behaviour when
2612           buffers overlap.
2613
2614 2006-10-21  Tim-Philipp Müller  <tim at centricular dot net>
2615
2616         * tests/check/Makefile.am:
2617         * tests/check/elements/.cvsignore:
2618         * tests/check/elements/audiorate.c: (probe_cb), (got_buf),
2619         (do_perfect_stream_test), (GST_START_TEST), (audiorate_suite):
2620           Add some basic unit tests for audiorate. Disabled at the moment
2621           since it doesn't pass yet (see bug #363119).
2622
2623 2006-10-20  Tim-Philipp Müller  <tim at centricular dot net>
2624
2625         * gst/subparse/gstsubparse.c: (subrip_fix_up_markup),
2626         (parse_subrip), (handle_buffer):
2627           Add missing closing tags for markup and fix broken markup,
2628           otherwise pango won't render anything (fixes #357531). Also,
2629           make sure the text we send out is always NUL-terminated
2630           (better safe than sorry etc.).
2631
2632         * tests/check/elements/subparse.c: (test_srt_do_test),
2633         (test_srt):
2634           Some more tests for .srt incl. tests for the above stuff.
2635
2636 2006-10-20  Julien MOUTTE  <julien@moutte.net>
2637
2638         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
2639         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
2640         Patch by: Stefan Kost  <ensonic@users.sf.net>
2641         Try to redraw borders only when needed. Apparently this consumes
2642         resources on small devices... :-O (#363607)
2643
2644 2006-10-20  Michael Smith  <msmith@fluendo.com>
2645
2646         * gst/tcp/gstmultifdsink.c:
2647         (gst_multi_fd_sink_client_queue_buffer):
2648           If caps change, then update the client's idea of the caps so that we
2649           don't end up re-sending streamheaders for every single buffer after
2650           the caps change.
2651
2652 2006-10-20  Michael Smith  <msmith@fluendo.com>
2653
2654         * ext/ogg/gstoggparse.c: (gst_ogg_parse_dispose),
2655         (gst_ogg_parse_append_header), (gst_ogg_parse_chain):
2656           Set caps on pushed buffers; fix up refcounting of caps objects.
2657
2658 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
2659
2660         * gst/typefind/gsttypefindfunctions.c: (mmsh_type_find),
2661         (plugin_init):
2662           Typefind mmsh header data packet to application/x-mmsh (#362625).
2663
2664 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
2665
2666         * tests/check/Makefile.am:
2667         * tests/check/elements/.cvsignore:
2668         * tests/check/elements/subparse.c: (buffer_from_static_string),
2669         (setup_subparse), (teardown_subparse), (test_srt_do_test),
2670         (GST_START_TEST), (subparse_suite):
2671           Add very simple unit test for subparse.
2672
2673 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
2674
2675         * gst/subparse/gstsubparse.c: (strip_trailing_newlines),
2676         (parse_subrip):
2677           Strip trailing newlines from subtitle text output.
2678
2679 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
2680
2681         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
2682         (gst_sub_parse_change_state):
2683           Fix memleak; clear subparse->textbuf n state change function.
2684
2685 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
2686
2687         * gst/subparse/gstsubparse.c:
2688         (gst_sub_parse_data_format_autodetect):
2689           Don't require subrip (.srt) files to start with a chunk number of 1.
2690
2691 2006-10-18  Wim Taymans  <wim@fluendo.com>
2692
2693         * gst-libs/gst/audio/gstbaseaudiosink.c:
2694         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
2695         * gst-libs/gst/audio/gstbaseaudiosink.h:
2696         Extract rate from the NEWSEGMENT event.
2697         Use commit_full to also take rate adjustment into account when writing
2698         samples to the ringbuffer.
2699         
2700         * gst-libs/gst/audio/gstringbuffer.c:
2701         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit),
2702         (gst_ring_buffer_read):
2703         * gst-libs/gst/audio/gstringbuffer.h:
2704         Added _commit_full() to also take rate into account.
2705         Use simple interpolation algorithm to resample audio.
2706         API: gst_ring_buffer_commit_full()
2707
2708         * tests/examples/seek/scrubby.c: (speed_cb), (do_seek):
2709         * tests/examples/seek/seek.c: (segment_done):
2710         Don't try to seek with 0.0 rate, just pause instead.
2711         Remove bogus debug line.
2712
2713 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
2714
2715         * gst/playback/gstplaybasebin.c: (subbin_startup_sync_msg),
2716         (setup_source):
2717           Catch async errors when starting up the subtitle bin, so we can
2718           stop waiting and continue with the main film instead of hanging
2719           forever. Fixes #339366.
2720
2721         * tests/check/elements/playbin.c: (playbin_suite):
2722           Enable unit test for the above.
2723
2724 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
2725
2726         * tests/check/Makefile.am:
2727         * tests/check/elements/.cvsignore:
2728         * tests/check/elements/playbin.c: (GST_START_TEST),
2729         (gst_red_video_src_uri_get_type),
2730         (gst_red_video_src_uri_get_protocols),
2731         (gst_red_video_src_uri_get_uri), (gst_red_video_src_uri_set_uri),
2732         (gst_red_video_src_uri_handler_init),
2733         (gst_red_video_src_init_type), (gst_red_video_src_base_init),
2734         (gst_red_video_src_create), (gst_red_video_src_class_init),
2735         (gst_red_video_src_init), (plugin_init), (playbin_suite):
2736           Some small and basic unit tests for playbin; not very useful yet,
2737           but at least a start.
2738
2739 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
2740
2741         * gst/playback/gstplaybin.c: (setup_sinks):
2742           The old pad activation spiel.
2743
2744 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
2745
2746         * gst/playback/gstplaybasebin.c: (setup_source):
2747           Don't hang forever if the subbin already fails to start up in 
2748           the state change to PAUSED (#339366).
2749
2750 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
2751
2752         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_list_channels),
2753         (gst_tuner_set_channel), (gst_tuner_get_channel),
2754         (gst_tuner_list_norms), (gst_tuner_set_norm), (gst_tuner_get_norm),
2755         (gst_tuner_set_frequency), (gst_tuner_get_frequency),
2756         (gst_tuner_signal_strength), (gst_tuner_find_norm_by_name),
2757         (gst_tuner_find_channel_by_name):
2758           Fix some function guards, add some more function guards.
2759
2760 2006-10-17  Jan Schmidt  <thaytan@mad.scientist.com>
2761
2762         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
2763         (remove_element_chain):
2764         Don't return a pad from get_our_ghost_pad unless it is actually the
2765         one we want.
2766         Change a cast in remove_element_chain slightly.
2767
2768 2006-10-13  Julien MOUTTE  <julien@moutte.net>
2769
2770         * tests/examples/seek/seek.c: (do_seek), (start_seek),
2771         (rate_spinbutton_changed_cb), (segment_done), (msg_state_changed):
2772         Segment seeking needs to use the rate and set stop to -1.
2773
2774 2006-10-13  Wim Taymans  <wim@fluendo.com>
2775
2776         * gst-libs/gst/audio/gstbaseaudiosink.c:
2777         (gst_base_audio_sink_setcaps):
2778         Don't crash when ringbuffer is not yet created.
2779         Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
2780         Fixes #361634.
2781
2782         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
2783         * gst/playback/gststreamselector.c:
2784         (gst_stream_selector_request_new_pad):
2785         Activate pads befre adding them to running elements.
2786
2787 2006-10-13  Julien MOUTTE  <julien@moutte.net>
2788
2789         * tests/examples/seek/seek.c: (do_seek), (start_seek),
2790         (rate_spinbutton_changed_cb), (msg_state_changed): Stop the scale
2791         updater when we start grabing the slider. Don't wait for the
2792         pipeline to be PAUSED.
2793
2794 2006-10-13  Tim-Philipp Müller  <tim at centricular dot net>
2795
2796         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_list_tracks),
2797         (gst_mixer_set_volume), (gst_mixer_get_volume),
2798         (gst_mixer_set_mute), (gst_mixer_set_option),
2799         (gst_mixer_get_option), (gst_mixer_mute_toggled),
2800         (gst_mixer_record_toggled), (gst_mixer_volume_changed),
2801         (gst_mixer_option_changed):
2802           Guard mixer interface functions against bogus arguments.
2803
2804 2006-10-12  Julien MOUTTE  <julien@moutte.net>
2805
2806         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
2807         (play_cb), (pause_cb), (stop_cb), (rate_spinbutton_changed_cb),
2808         (msg_state_changed), (main): Use state-changed messages to trigger
2809         start/stop of scale update timer. Indeed the scale slider was
2810         jumping here and there because the update timer was activated 
2811         before seek completed. This fixes instant applying of rate changes
2812         by pressing the spinbutton like a crazy man !
2813
2814 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
2815
2816         Patch by: Sebastien Cote  <sebas642 at yahoo.ca>
2817
2818         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
2819         (gst_basertppayload_finalize):
2820           Fix two small memory leaks (#361456).
2821
2822 2006-10-10  Julien MOUTTE  <julien@moutte.net>
2823
2824         * tests/examples/seek/seek.c: (do_seek),
2825         (rate_spinbutton_changed_cb): When changing spinbutton we try
2826         to change the rate on the fly.
2827
2828 2006-10-10  Wim Taymans  <wim@fluendo.com>
2829
2830         * gst-libs/gst/riff/riff-ids.h:
2831         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
2832         (gst_riff_create_audio_template_caps):
2833         Add WMS caps.
2834
2835 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2836
2837         Patch by: Josep Torre Valles <josep@fluendo.com>
2838
2839         * ext/gnomevfs/gstgnomevfssink.c:
2840         * ext/gnomevfs/gstgnomevfssrc.c:
2841         Fix URI interface implementation return type.
2842         * ext/pango/gsttextoverlay.c: (gst_text_overlay_set_property):
2843         Fix what looks like a copy/paste issue when assigning values.
2844         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
2845         (gst_audio_filter_template_get_type):
2846         Cast to prevent Forte warnings.
2847         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
2848         Fix URI interface implementation return type.
2849         gst_pad_query_position requires a signed integer pointer as
2850         3rd parameter, GstClockTime is unsigned.
2851         * gst/audioconvert/audioconvert.c:
2852         Fix integer overflow when treated as signed.
2853         * gst/audioresample/resample.c: (resample_add_input_data):
2854         Cast to prevent warnings on Forte.
2855         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette):
2856         Fix integer overflow when treated as signed.
2857         * gst/ffmpegcolorspace/imgconvert_template.h:
2858         Fix integer overflow when treated as signed. RGBA_OUT shifts bits.
2859         * gst/playback/gstdecodebin.c: (queue_filled_cb),
2860         (cleanup_decodebin):
2861         Who initialises a guint to -1!
2862         Cast function pointers to prevent warnings on Forte.
2863         * gst/playback/gstplaybasebin.c: (queue_deadlock_check),
2864         (queue_threshold_reached):
2865         Cast function pointers correctly to prevent warnings on Forte.
2866         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
2867         Cast function pointers correctly to prevent warnings on Forte.
2868         * gst/subparse/gstssaparse.c: (gst_ssa_parse_setcaps):
2869         Obvious change to unsigned, 0xEF > max signed char.
2870         * gst/tcp/gstmultifdsink.c: (get_buffers_max), (count_burst_unit):
2871         GstClockTime is unsigned, initialise correctly.
2872         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
2873         Cast so pointer arithemetic doesn't cause warnings on Forte.
2874         * gst/videorate/gstvideorate.c:
2875         Use correct return value.
2876         * tests/examples/seek/scrubby.c:
2877         GstClockTime is unsigned, initialise correctly.
2878
2879 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
2880
2881         Patch by: Ferenc Gerlits  <fgerlits at gmail com>
2882
2883         * gst/typefind/gsttypefindfunctions.c:
2884           Recognise XML files and XML-like files shorter than 256 bytes as
2885           well (fixes #359237).
2886
2887 2006-10-09  Edgard Lima <edgard.lima@indt.org.br>
2888
2889         Patch by: Renato Filho <renato.filho@indt.org.br>
2890         
2891         * gst/typefind/gsttypefindfunctions.c:
2892         Added typefind functions to video/x-nuv media.
2893         
2894 2006-10-08  Tim-Philipp Müller  <tim at centricular dot net>
2895
2896         * gst-libs/gst/interfaces/xoverlay.c:
2897         (gst_x_overlay_set_xwindow_id), (gst_x_overlay_expose):
2898           Some more guards against invalid input.
2899
2900 2006-10-07  Julien MOUTTE  <julien@moutte.net>
2901
2902         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event): 
2903         Useless goto.
2904         * tests/examples/seek/seek.c: (do_seek),
2905         (rate_spinbutton_changed_cb), (main): Add a rate spinbutton in
2906         seek example to experiment with rates != 1.0 (reverse playback !)
2907
2908 2006-10-06  Stefan Kost  <ensonic@users.sf.net>
2909
2910         * gst-libs/gst/interfaces/xoverlay.c:
2911           Unref message in doc-example (spotted by Robert McQueen)
2912
2913 2006-10-06  Wim Taymans  <wim@fluendo.com>
2914
2915         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2916         (mpeg1_parse_header), (mpeg1_sys_type_find):
2917         printf fix.
2918
2919 2006-10-06  Wim Taymans  <wim@fluendo.com>
2920
2921         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
2922         (close_pad_link):
2923         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
2924         Activate dynamic pads before adding them to the element.
2925
2926 2006-10-06  Michael Smith  <msmith@fluendo.com>
2927
2928         * gst-libs/gst/floatcast/floatcast.h:
2929           Fix obviously-bogus macros; use the correct types.
2930
2931 2006-10-06  Wim Taymans  <wim@fluendo.com>
2932
2933         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2934         (gst_base_rtp_depayload_change_state):
2935         Also call parent state change function to activate pads.
2936
2937         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2938         (mpeg1_parse_header), (mpeg1_sys_type_find):
2939         Add some more debug info in mpeg typefinding.
2940
2941 2006-10-06  Michael Smith  <msmith@fluendo.com>
2942
2943         * ext/theora/theoradec.c: (theora_dec_chain):
2944           Zero byte theora packets are valid and well-defined; don't warn on
2945           them.
2946
2947 2006-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
2948
2949         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
2950         (gst_multi_fd_sink_get_stats), (find_limits),
2951         (gst_multi_fd_sink_queue_buffer):
2952           API: add dropped_buffers to the get-stats GValueArray
2953
2954 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
2955
2956         * ext/alsa/gstalsadeviceprobe.c:
2957         (gst_alsa_device_property_probe_get_values):
2958         * ext/alsa/gstalsasink.c: (set_hwparams):
2959         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_elem_pad),
2960         (gst_ogg_chain_new_stream), (gst_ogg_demux_read_chain):
2961         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers),
2962         (gst_ogg_mux_process_best_pad):
2963         * ext/ogg/gstoggparse.c: (gst_ogg_parse_new_stream),
2964         (gst_ogg_parse_chain):
2965         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
2966         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
2967         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_setup),
2968         (gst_vorbis_enc_buffer_check_discontinuous):
2969         * ext/vorbis/vorbisparse.c: (vorbis_parse_src_query):
2970         * gst-libs/gst/audio/gstbaseaudiosink.c:
2971         (gst_base_audio_sink_render):
2972         * gst-libs/gst/cdda/gstcddabasesrc.c:
2973         (gst_cdda_base_src_handle_track_seek):
2974         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2975         (gst_base_rtp_depayload_push_full):
2976         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
2977         * gst/audioresample/resample.c: (resample_input_pushthrough):
2978         * gst/playback/gstplaybasebin.c: (queue_out_of_data):
2979         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
2980         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2981         (wavpack_type_find):
2982         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
2983         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
2984         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
2985         * tests/check/elements/volume.c: (GST_START_TEST):
2986           Printf format fixes.
2987
2988 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
2989
2990         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_caps):
2991           Fix a simple mistake (see the docs)
2992           Fixes #359580
2993
2994 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
2995
2996         * docs/plugins/Makefile.am:
2997         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2998         * docs/plugins/gst-plugins-base-plugins-sections.txt:
2999         * docs/plugins/gst-plugins-base-plugins.args:
3000         * docs/plugins/gst-plugins-base-plugins.hierarchy:
3001         * docs/plugins/inspect/plugin-adder.xml:
3002         * docs/plugins/inspect/plugin-alsa.xml:
3003         * docs/plugins/inspect/plugin-audioconvert.xml:
3004         * docs/plugins/inspect/plugin-audiorate.xml:
3005         * docs/plugins/inspect/plugin-audioresample.xml:
3006         * docs/plugins/inspect/plugin-audiotestsrc.xml:
3007         * docs/plugins/inspect/plugin-cdparanoia.xml:
3008         * docs/plugins/inspect/plugin-decodebin.xml:
3009         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
3010         * docs/plugins/inspect/plugin-gdp.xml:
3011         * docs/plugins/inspect/plugin-gnomevfs.xml:
3012         * docs/plugins/inspect/plugin-libvisual.xml:
3013         * docs/plugins/inspect/plugin-ogg.xml:
3014         * docs/plugins/inspect/plugin-pango.xml:
3015         * docs/plugins/inspect/plugin-playbin.xml:
3016         * docs/plugins/inspect/plugin-subparse.xml:
3017         * docs/plugins/inspect/plugin-tcp.xml:
3018         * docs/plugins/inspect/plugin-theora.xml:
3019         * docs/plugins/inspect/plugin-typefindfunctions.xml:
3020         * docs/plugins/inspect/plugin-video4linux.xml:
3021         * docs/plugins/inspect/plugin-videorate.xml:
3022         * docs/plugins/inspect/plugin-videoscale.xml:
3023         * docs/plugins/inspect/plugin-videotestsrc.xml:
3024         * docs/plugins/inspect/plugin-volume.xml:
3025         * docs/plugins/inspect/plugin-vorbis.xml:
3026         * docs/plugins/inspect/plugin-ximagesink.xml:
3027         * docs/plugins/inspect/plugin-xvimagesink.xml:
3028           Add vorbistag element to docs; update version numbers to 0.10.10.1.
3029
3030 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
3031
3032         Patch by: James "Doc" Livingston <doclivingston at gmail com>
3033
3034         * ext/vorbis/Makefile.am:
3035         * ext/vorbis/vorbis.c: (plugin_init):
3036         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_class_init),
3037         (vorbis_parse_parse_packet), (vorbis_parse_chain):
3038         * ext/vorbis/vorbisparse.h:
3039         * ext/vorbis/vorbistag.c: (gst_vorbis_tag_base_init),
3040         (gst_vorbis_tag_class_init), (gst_vorbis_tag_init),
3041         (gst_vorbis_tag_parse_packet):
3042         * ext/vorbis/vorbistag.h:
3043           Add new vorbistag element which derives from vorbisparse
3044           and is essentially the same as well, only that it implements
3045           the GstTagSetter interface and can modify the stream's
3046           vorbiscomment on the fly (#335635).
3047
3048         * tests/check/Makefile.am:
3049         * tests/check/elements/.cvsignore:
3050         * tests/check/elements/vorbistag.c: (setup_vorbistag),
3051         (cleanup_vorbistag), (buffer_probe), (start_pipeline),
3052         (get_buffer), (stop_pipeline), (_create_codebook_header_buffer),
3053         (_create_audio_buffer), (GST_START_TEST), (vorbistag_suite):
3054           Add unit test for new vorbistag element.
3055
3056 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
3057
3058         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init),
3059         (vorbis_parse_push_headers), (vorbis_parse_chain):
3060           Set BOS flag in packet structure to fix 'jump depends
3061           on unitialized value' errors in valgrind; various minor
3062           clean-ups.
3063
3064 2006-09-30  Jan Schmidt  <thaytan@mad.scientist.com>
3065
3066         * gst/playback/gstdecodebin.c: (close_pad_link):
3067         Fix typo in a debug statement.
3068
3069         * gst/playback/gstplaybasebin.c: (probe_triggered),
3070         (new_decoded_pad_full), (new_decoded_pad), (subs_new_decoded_pad),
3071         (gen_source_element), (source_new_pad), (analyse_source),
3072         (setup_source):
3073         When handling no_more_pads in new_decoded_pad, make sure to treat
3074         subtitle pads correctly. Fixes playback with subtitle files.
3075
3076         Move a recurring message to LOG level.
3077
3078         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
3079         The maximum value for the Xv colorkey on this Radeon is 0xFFFFFFFF,
3080         which ends up as -1 when cast to an int. Make the logic handle the
3081         max value as an unsigned mask and only change the colorkey when it's
3082         a value we recognise.
3083
3084 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
3085
3086         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
3087         Removed empty * between paragraphs
3088
3089 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
3090
3091         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
3092         * gst-libs/gst/rtp/README:
3093         Moved some documentation into .c file
3094
3095 2006-09-29  Wim Taymans  <wim@fluendo.com>
3096
3097         * gst/playback/gstdecodebin.c: (no_more_pads):
3098         Fix compilation.
3099
3100 2006-09-29  Wim Taymans  <wim@fluendo.com>
3101
3102         * gst/playback/gstdecodebin.c: (new_caps):
3103         Remove g_print
3104
3105         * gst/playback/gstplaybin.c:
3106         Add some docs.
3107
3108 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
3109
3110         * tests/check/Makefile.am:
3111           Re-enable cddabasesrc test to see if it works again
3112           now.
3113
3114 2006-09-29  Wim Taymans  <wim@fluendo.com>
3115
3116         * gst/playback/gstplaybasebin.c: (setup_subtitle),
3117         (gen_source_element):
3118         Handle invalid URIs a bit more gracefully.
3119
3120 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
3121
3122         * tests/check/pipelines/oggmux.c:
3123           Remove obsolete comment.
3124
3125 2006-09-29  Michael Smith  <msmith@fluendo.com>
3126
3127         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
3128         (gst_ogg_mux_release_pad), (gst_ogg_mux_push_buffer),
3129         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
3130         (gst_ogg_mux_send_headers), (gst_ogg_mux_process_best_pad),
3131         (gst_ogg_mux_collected):
3132           Commit patch from James "Doc" Livingston, adds proper EOS handling
3133           in oggmux. GStreamer can, for the first time ever, create a valid
3134           Ogg file! Yay!
3135
3136         * tests/check/pipelines/oggmux.c: (check_chain_final_state),
3137         (oggmux_suite):
3138           Reenable tests now that they pass.
3139
3140 2006-09-29  Wim Taymans  <wim@fluendo.com>
3141
3142         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
3143         Stop reading commands when EOF (we read 0) as well.
3144
3145 2006-09-28  Wim Taymans  <wim@fluendo.com>
3146
3147         * gst/playback/gstdecodebin.c: (dynamic_create), (dynamic_free),
3148         (close_pad_link), (dynamic_remove), (no_more_pads), (new_caps),
3149         (find_dynamic), (unlinked), (close_link):
3150         Implement delayed caps linking needed for element with a lot of
3151         different caps on the src pads that get fixed at runtime.
3152         Improve management of dynamic elements.
3153
3154         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
3155         (group_destroy), (group_commit), (check_queue), (queue_overrun),
3156         (gen_preroll_element), (remove_groups), (unknown_type),
3157         (add_element_stream), (no_more_pads_full), (no_more_pads),
3158         (sub_no_more_pads), (source_no_more_pads), (preroll_unlinked),
3159         (new_decoded_pad), (setup_subtitle), (array_has_value),
3160         (gen_source_element), (source_new_pad), (has_all_raw_caps),
3161         (analyse_source), (remove_decoders), (make_decoder),
3162         (remove_source), (setup_source), (finish_source), (prepare_output),
3163         (gst_play_base_bin_change_state):
3164         * gst/playback/gstplaybasebin.h:
3165         Use more _CAST instead of full type checking casts.
3166         Small cleanups, plug some leaks.
3167         Handle dynamic sources.
3168         Add some helper functions to create lists of strings used for
3169         blacklisting and other stuff.
3170         Refactor some code dealing with analysing the source.
3171         Re-enable sources without pads (like cd:// or other selfcontained
3172         elements).
3173
3174 2006-09-28  Wim Taymans  <wim@fluendo.com>
3175
3176         * gst-libs/gst/audio/gstbaseaudiosink.c:
3177         (gst_base_audio_sink_render):
3178         When we have a timestamp, we can still perform clipping.
3179         When we have no clock, we must play the sample ASAP.
3180
3181 2006-09-28  Wim Taymans  <wim@fluendo.com>
3182
3183         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
3184         Set caps on outgoing buffers.
3185
3186         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
3187         (gst_video_rate_event), (gst_video_rate_chain):
3188         * gst/videorate/gstvideorate.h:
3189         Fix videorate some more. Fixes #357977
3190
3191 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
3192
3193         * tests/check/elements/adder.c: (adder_suite):
3194           Don't set timeout to 6 seconds when we're running
3195           in valgrind ... (and how is 6 seconds longer than
3196           the default anyway?)
3197
3198 2006-09-28  Wim Taymans  <wim@fluendo.com>
3199
3200         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
3201         (gst_audio_rate_sink_event), (gst_audio_rate_convert),
3202         (gst_audio_rate_convert_segments), (gst_audio_rate_chain):
3203         Keep sink and src segment to keep track of time and support more
3204         input formats.
3205         Fix bogus next_offset and run_time calculation, don't understand how
3206         this could have worked before. Fixes #357976.
3207         Remove some unneeded vars.
3208
3209 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
3210
3211         * gst/playback/gstplaybin.c: (remove_sinks):
3212           Only remove visualisation from visbin if there is a visbin (or:
3213           don't throw warnings when closing totem without playing a file).
3214
3215 2006-09-27  Wim Taymans  <wim@fluendo.com>
3216
3217         * gst-libs/gst/audio/gstbaseaudiosink.c:
3218         (gst_base_audio_sink_render):
3219         Add some more info in a WARNING.
3220
3221         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3222         (gst_base_audio_src_create):
3223         Handle PAUSE in create function, use new -core addition to
3224         wait for playing. Fixes pausing and resuming capture from an
3225         audiosrc.
3226
3227         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
3228         (gst_ring_buffer_read):
3229         Constify some more.
3230         Caller supports interrupted reads now.
3231
3232 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
3233
3234         * tests/check/Makefile.am:
3235           Another attempt to make the gen64 buildbot happy.
3236
3237 2006-09-27  Stefan Kost  <ensonic@users.sf.net>
3238
3239         Patch by: Jonathan Matthew <jonathan@kaolin.wh9.net>
3240
3241         * ext/libvisual/visual.c: (gst_visual_clear_actors),
3242         (gst_visual_chain), (gst_visual_change_state):
3243           Libvisual plugin was not passing audio data to libvisual 0.4.0 
3244           correctly. Fixes #357800
3245
3246 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
3247
3248         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline):
3249           Add timeout to _get_state() so we see which pipeline it is
3250           that causes trouble on the gen64 build bot.
3251
3252 2006-09-27  Wim Taymans  <wim@fluendo.com>
3253
3254         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3255         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_push_full),
3256         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_process),
3257         (gst_base_rtp_depayload_set_gst_timestamp):
3258         the source pad always uses fixed caps.
3259
3260 2006-09-27  Wim Taymans  <wim@fluendo.com>
3261
3262         * docs/libs/gst-plugins-base-libs-docs.sgml:
3263         * docs/libs/gst-plugins-base-libs-sections.txt:
3264         * gst-libs/gst/audio/gstaudioclock.c:
3265         * gst-libs/gst/audio/gstaudioclock.h:
3266         * gst-libs/gst/audio/gstaudiosink.c:
3267         * gst-libs/gst/audio/gstaudiosink.h:
3268         * gst-libs/gst/audio/gstaudiosrc.c:
3269         * gst-libs/gst/audio/gstbaseaudiosink.c:
3270         (gst_base_audio_sink_render):
3271         * gst-libs/gst/audio/gstbaseaudiosink.h:
3272         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init):
3273         * gst-libs/gst/audio/gstbaseaudiosrc.h:
3274         * gst-libs/gst/audio/gstringbuffer.h:
3275         Added docs for the audio libs.
3276
3277 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
3278
3279         * tests/check/Makefile.am:
3280           Temporarily disable test that fails on the bots for unknown reasons.
3281
3282 2006-09-26 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
3283
3284         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
3285         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
3286         Moved AudioCodecType into priv
3287         Renamed all gst_basertpaudiopayload to gst_base_rtp_audio_payload prefixes
3288
3289 2006-09-25  Wim Taymans  <wim@fluendo.com>
3290
3291         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
3292         (add_fakesink), (remove_fakesink), (pad_probe), (close_pad_link),
3293         (is_demuxer_element), (try_to_link_1), (get_our_ghost_pad),
3294         (new_pad):
3295         Cleanups and small leak fixes.
3296         Added Depayloaders to valid list of autopluggable elements.
3297
3298 2006-09-25  Wim Taymans  <wim@fluendo.com>
3299
3300         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
3301         (gst_play_bin_vis_blocked), (gst_play_bin_set_property),
3302         (gen_video_element), (gen_text_element), (gen_audio_element),
3303         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
3304         (gst_play_bin_set_clock_func), (gst_play_bin_change_state):
3305         Detect NO_PREROLL state change returns and disable clock distribution to
3306         the sinks so that sync is disabled.
3307         Avoid some type checking and do simple casts instead.
3308         Small cleanups, fix some FIXMEs.
3309         Be more robust when linking user specified elements, catch an report
3310         errors. Fixes #357404.
3311         Fix some leaks in the error paths.
3312
3313 2006-09-25  Stefan Kost  <ensonic@users.sf.net>
3314
3315         * ChangeLog:
3316           ChangeLog surgery for missing bug-number
3317
3318 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
3319
3320         Patch by: Peter Kjellerstedt  <pkj at axis com>
3321
3322         * gst/playback/test.c:
3323           Fix compilation with uClibc and -Werror (#357591).
3324
3325 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
3326
3327         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
3328           Parse dates that are followed by a time as well (#357532).
3329
3330         * tests/check/libs/tag.c: (test_vorbis_tags):
3331           Add unit test for this.
3332
3333 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
3334
3335         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
3336         (gst_audio_convert_transform_caps):
3337         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor):
3338         * gst/videotestsrc/videotestsrc.h:
3339           A few array const-ifications.
3340
3341 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
3342
3343         * tests/check/Makefile.am:
3344           See if this makes the build bots happy.
3345
3346         * tests/check/libs/cddabasesrc.c:
3347           UTF8-ise my name.
3348
3349 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
3350
3351         Patch by: Young-Ho Cha <ganadist at chollian dot net>
3352
3353         * gst/subparse/samiparse.c: (handle_start_font),
3354         (fix_invalid_entities):
3355           More case-insensitivity for certain tags; recognise entities with
3356           decimal codes as special entities as well (#357330).
3357
3358 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
3359
3360         * gst-libs/gst/Makefile.am:
3361           Need to build tag directory before cdda.
3362
3363 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
3364
3365         * docs/libs/gst-plugins-base-libs-sections.txt:
3366         * gst-libs/gst/cdda/Makefile.am:
3367         * gst-libs/gst/cdda/gstcddabasesrc.c:
3368         (gst_cdda_base_src_base_init):
3369         * gst-libs/gst/cdda/gstcddabasesrc.h:
3370         * gst-libs/gst/tag/tag.h:
3371         * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal),
3372         (gst_tag_register_musicbrainz_tags):
3373           Move GST_TAG_CDDA_* tags into libgsttag and make libgstcddabasesrc
3374           depend on libgsttag. This is required so we can extract/read tags like
3375           DISCID without depending on libgstcddabasesrc (which used to register
3376           them).
3377
3378         * gst-libs/gst/tag/gstvorbistag.c:
3379           Add vorbiscomment mapping for CDDB_DISCID and MUSICBRAINZ_DISCID
3380           tags (also see #347848).
3381
3382         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1):
3383           Log vorbis comments we are actually writing. Const-ify array.
3384
3385 2006-09-23  Wim Taymans  <wim@fluendo.com>
3386
3387         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
3388         Improve buffering a bit by avoiding a deadlock because we cannot assume
3389         the underrun is always called.
3390
3391 2006-09-23  Wim Taymans  <wim@fluendo.com>
3392
3393         Patch by: Young-Ho Cha <ganadist at chollian dot net>
3394
3395         * gst-libs/gst/riff/riff-ids.h:
3396         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3397         (gst_riff_create_audio_template_caps):
3398         Added MPEG-4 AAC and id and caps. Fixes #357289
3399         Added WMA9 Lossless id.
3400
3401 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
3402
3403         * ext/gnomevfs/gstgnomevfssrc.c:
3404           Fix misleading docs addition.
3405
3406         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3407           Get rid of compiler warning the right way.
3408
3409 2006-09-22  Wim Taymans  <wim@fluendo.com>
3410
3411         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3412         (gst_base_rtp_depayload_finalize),
3413         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
3414         (gst_base_rtp_depayload_push_full),
3415         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_push),
3416         (gst_base_rtp_depayload_process),
3417         (gst_base_rtp_depayload_set_gst_timestamp),
3418         (gst_base_rtp_depayload_queue_release):
3419         * gst-libs/gst/rtp/gstbasertpdepayload.h:
3420         Small cleanups.
3421         Fix some leaks.
3422         Refactored the process method and added methods to push from the process
3423         vmethod.
3424         Use _scale functions.
3425         API: gst_base_rtp_depayload_push_ts
3426         API: gst_base_rtp_depayload_push
3427
3428         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
3429         timestamps are uint.
3430
3431 2006-09-22  Stefan Kost  <ensonic@users.sf.net>
3432
3433         * gst-libs/gst/interfaces/xoverlay.c:
3434           Remove unused statement from doc example.
3435
3436 2006-09-21  Stefan Kost  <ensonic@users.sf.net>
3437
3438         * gst-libs/gst/interfaces/videoorientation.c:
3439         (gst_video_orientation_iface_init),
3440         (gst_video_orientation_get_hflip),
3441         (gst_video_orientation_get_vflip),
3442         (gst_video_orientation_get_hcenter),
3443         (gst_video_orientation_get_vcenter),
3444         (gst_video_orientation_set_hflip),
3445         (gst_video_orientation_set_vflip),
3446         (gst_video_orientation_set_hcenter),
3447         (gst_video_orientation_set_vcenter):
3448           Add since tags to new API docs, ChangeLog surgery (forgot API keyword
3449           in ChangeLog)
3450
3451 2006-09-21  Tim-Philipp Müller  <tim at centricular dot net>
3452
3453         * tests/check/Makefile.am:
3454         * tests/check/elements/.cvsignore:
3455         * tests/check/elements/ffmpegcolorspace.c: (rgb_format_to_caps),
3456         (create_rgb_conversions), (rgb_conversion_free),
3457         (right_shift_colour), (fix_expected_colour), (check_rgb_buf),
3458         (got_buf_cb), (GST_START_TEST), (ffmpegcolorspace_suite):
3459           Add unit test for ffmpegcolorspace (RGB <=> RGB only so far),
3460           but disable for now since it doesn't pass (something wrong with
3461           RGBA somewhere).
3462
3463 2006-09-21  Wim Taymans  <wim@fluendo.com>
3464
3465         * gst/playback/gstplaybasebin.c: (group_commit),
3466         (queue_deadlock_check), (queue_overrun), (queue_threshold_reached),
3467         (queue_out_of_data), (gen_preroll_element),
3468         (preroll_remove_overrun), (probe_triggered):
3469         Refactor handling of overrun detection.
3470         Separate handling of group completion and deadlock detection when doing
3471         network buffering. This should fix some deadlocks that were not detected
3472         because the group was completed.
3473         Add more comments, improve debugging.
3474
3475 2006-09-21  Wim Taymans  <wim@fluendo.com>
3476
3477         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
3478         * tests/check/libs/audio.c:
3479         Some more compilation fixes.
3480
3481 2006-09-21  Wim Taymans  <wim@fluendo.com>
3482
3483         * gst-libs/gst/audio/gstringbuffer.c:
3484         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
3485         (gst_ring_buffer_read):
3486         Early morning compilation fix.
3487
3488 2006-09-20  Wim Taymans  <wim@fluendo.com>
3489
3490         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
3491         * tests/check/elements/multifdsink.c: (GST_START_TEST):
3492         * tests/check/elements/videorate.c: (GST_START_TEST):
3493         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
3494         * tests/check/pipelines/oggmux.c: (eos_buffer_probe):
3495         Fix some warnings.
3496
3497 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
3498
3499         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
3500         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
3501         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
3502           Handcrafted merge to help CVS understanding what I changed and what
3503           not.
3504
3505 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
3506
3507         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
3508         (gst_xvimagesink_get_times):
3509           change colorkey behaviour back according to #354773 comment 6/7
3510
3511 2006-09-19  Michael Smith  <msmith@fluendo.com>
3512
3513         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
3514         (gst_multi_fd_sink_class_init), (get_buffers_max), (find_limits),
3515         (gst_multi_fd_sink_recover_client),
3516         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_set_property),
3517         (gst_multi_fd_sink_get_property):
3518         * gst/tcp/gstmultifdsink.h:
3519           Implement stubbed out properties unit-type, units-soft-max,
3520           units-max, to allow specifying maximum sizes in units other than
3521           buffers.
3522           Fixes #355935
3523
3524 2006-09-19  Wim Taymans  <wim@fluendo.com>
3525
3526         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3527         (gst_riff_create_audio_template_caps):
3528         Reorder the audio formats a bit for clarity.
3529         Detect and create caps for MSGSM and MSN (WAV49).
3530         Fixes #356596.
3531
3532         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
3533         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
3534         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
3535         Small cleanups, move error handling out of normal flow for clarity.
3536
3537 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
3538
3539         * docs/libs/gst-plugins-base-libs-docs.sgml:
3540         * docs/libs/gst-plugins-base-libs.types:
3541         * gst-libs/gst/interfaces/Makefile.am:
3542         * gst-libs/gst/interfaces/videoorientation.c:
3543         (gst_video_orientation_get_type),
3544         (gst_video_orientation_iface_init),
3545         (gst_video_orientation_get_hflip),
3546         (gst_video_orientation_get_vflip),
3547         (gst_video_orientation_get_hcenter),
3548         (gst_video_orientation_get_vcenter),
3549         (gst_video_orientation_set_hflip),
3550         (gst_video_orientation_set_vflip),
3551         (gst_video_orientation_set_hcenter),
3552         (gst_video_orientation_set_vcenter):
3553         * gst-libs/gst/interfaces/videoorientation.h:
3554           API: Add new interface to control video orientation (fixes #354908)
3555
3556 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
3557
3558         * gst/videotestsrc/gstvideotestsrc.c:
3559           Use G_UNLIKELY in _create and log one more detail.
3560           
3561         (gst_video_test_src_get_times), (gst_video_test_src_create):
3562         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
3563           Use gst_util_uint64_scale_int in _get_times().
3564
3565 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
3566
3567         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support)
3568           Give better warning message (add object and detail).
3569
3570 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
3571
3572         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
3573         (gst_xvimagesink_get_times):
3574           xvimage assumed that XV_COLORKEY can be set in RGB888 format (fixes
3575           #354773), use gst_util_uint64_scale_int in _get_times()
3576
3577 2006-09-18  Michael Smith  <msmith@fluendo.com>
3578
3579         * ext/ogg/gstoggmux.c: (gst_ogg_mux_push_buffer):
3580           Timestamps are unsigned; comparision against GST_CLOCK_TIME_NONE was
3581           always true, leading to dropping all timestamps.
3582
3583 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
3584
3585         * ext/libvisual/visual.c: (gst_vis_src_negotiate),
3586         (gst_visual_chain), (gst_visual_change_state):
3587           update to work also with libvisual 0.4 API, fix double unref (#355914)
3588           
3589         * tools/gst-launch-ext.1.in:
3590         * tools/gst-visualise.1.in:
3591           remove references to old man-pages
3592
3593         * tests/examples/seek/seek.c: (main):
3594           add real meadi-buttons, add tool-tips for the seek-options, arrange
3595           seek options in a table
3596
3597 2006-09-18  Michael Smith  <msmith@fluendo.com>
3598
3599         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear),
3600         (gst_ogg_mux_push_buffer):
3601           Don't generate out-of-order timestamps from oggmux, instead clamp
3602           output timestamps to be >= the previously output ts.
3603           Fixes #355595
3604
3605 2006-09-18  Michael Smith  <msmith@fluendo.com>
3606
3607         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
3608         (gst_multi_fd_sink_class_init):
3609           Updates, fixes, and typo corrections for multifdsink. No functional
3610           changes.
3611
3612 2006-09-17  Michael Smith  <msmith@fluendo.com>
3613
3614         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find):
3615           Don't crash on truncated files - check that we got an 8 byte buffer
3616           before trying to memcmp it.
3617
3618 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
3619
3620         * gst/playback/gstplaybasebin.c: (get_active_source):
3621           Make stream-switching appear instant to the application
3622           (ie. make sure that a g_object_get on 'current-foo' returns
3623           the stream previously set with g_object_set(). Totem needs
3624           this to update stream-related meta-info (like audio-codec)
3625           correctly when switching streams.
3626
3627 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
3628
3629         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer),
3630         (gst_alsa_mixer_ensure_track_list):
3631           Try harder to guess which mixer track is the master mixer
3632           track (instead of just taking the first one that has a pvolume).
3633           Fixes #342228.
3634
3635 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
3636
3637         reviewed by: <delete if not using a buddy>
3638
3639         * gst-libs/gst/audio/audio.h:
3640         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
3641
3642 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
3643
3644         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
3645         (gst_audio_convert_transform_caps):
3646           Get structure-name just once.
3647
3648 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
3649
3650         * tests/check/elements/audioresample.c: (GST_START_TEST):
3651         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3652         * tests/check/elements/volume.c: (GST_START_TEST):
3653         * tests/check/elements/vorbisdec.c: (GST_START_TEST):
3654         * tests/check/pipelines/oggmux.c: (validate_ogg_page), (eos_watch),
3655         (test_pipeline), (GST_START_TEST):
3656         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
3657         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
3658           Fix big batch of compiler warnings.
3659
3660 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
3661
3662         * ext/gnomevfs/gstgnomevfssrc.c:
3663           Add docs about icydemux usage in connection with gnomevfssrc
3664
3665         * ext/libvisual/visual.c:
3666         * ext/ogg/gstoggaviparse.c:
3667         * ext/ogg/gstoggdemux.c:
3668         * ext/ogg/gstoggmux.c:
3669         * ext/ogg/gstoggparse.c:
3670         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
3671         * gst-libs/gst/audio/gstaudiosink.c:
3672         * gst-libs/gst/audio/gstaudiosrc.c:
3673         * gst/audiorate/gstaudiorate.c:
3674           More G_OBJECT macro fixing.
3675
3676         * gst/audiotestsrc/gstaudiotestsrc.h:
3677           Fix wrong info in header due to copy & paste
3678
3679 2006-09-15  Wim Taymans  <wim@fluendo.com>
3680
3681         * gst-libs/gst/audio/gstbaseaudiosink.c:
3682         (gst_base_audio_sink_get_time), (gst_base_audio_sink_callback):
3683         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3684         (gst_base_audio_src_get_time), (gst_base_audio_src_fixate),
3685         (gst_base_audio_src_get_times), (gst_base_audio_src_get_offset),
3686         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
3687         Do the delay calculation in the source/sink base classes as this is
3688         specific for the capture/playback mode.
3689         Try to fixate a bit better, like round depth up to a multiple of 8
3690         bigger than width.
3691         Handle underruns correctly by marking DISCONT on buffers and adjusting
3692         timestamps to handle the gap.
3693         Set offset/offset_end correctly on buffers.
3694
3695         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_pause),
3696         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
3697         (gst_ring_buffer_read):
3698         Remove resync and underrun recovery from the ringbuffer.
3699         Fix ringbuffer read code on under/overrun.
3700
3701 2006-09-15  Wim Taymans  <wim@fluendo.com>
3702
3703         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
3704         (gst_play_base_bin_init), (fill_buffer), (check_queue),
3705         (queue_threshold_reached), (gst_play_base_bin_set_property),
3706         (gst_play_base_bin_get_property):
3707         * gst/playback/gstplaybasebin.h:
3708         Don't use a 0 low watermark when buffering, it is catching starvation
3709         way too late. Instead, use a 3 second queue with 30 and 95
3710         percent low/high watermarks. 
3711         Added queue-min-threshold property to configure low watermark.
3712         Use new _buffering message API.
3713         Make queue_threshold variable big enough to store a uint64 time value.
3714         API: playbin::queue-min-threshold property.
3715
3716 2006-09-15  Wim Taymans  <wim@fluendo.com>
3717
3718         * configure.ac:
3719         We require 0.10.10.1 now because of _wait_preroll().
3720
3721         * gst-libs/gst/audio/gstbaseaudiosink.c:
3722         (gst_base_audio_sink_render):
3723         Use gst_base_sink_wait_preroll().
3724
3725 2006-09-15  Wim Taymans  <wim@fluendo.com>
3726
3727         * ext/alsa/gstalsasink.c: (xrun_recovery), (gst_alsasink_write):
3728         * ext/alsa/gstalsasrc.c: (xrun_recovery), (gst_alsasrc_read):
3729         Use DEBUG_OBJECT more.
3730
3731 === release 0.10.10 ===
3732
3733 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
3734
3735         patch by: Michael Smith <msmith at fluendo dot com>
3736
3737         * gst/tcp/gstmultifdsink.c: (is_sync_frame),
3738         (gst_multi_fd_sink_client_queue_buffer),
3739         (gst_multi_fd_sink_new_client):
3740         * tests/check/elements/multifdsink.c: (GST_START_TEST),
3741         (multifdsink_suite):
3742           Fix implementation of sync-method 'next-keyframe'
3743           Closes #354594
3744
3745 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
3746
3747         patch by: Wim Taymans <wim at fluendo dot com>
3748
3749         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
3750         This patch removes the RANDOM flag that was incorrectly introduced with
3751         revision 1.91.  Fixes #354590
3752
3753 2006-09-05  Tim-Philipp Müller  <tim at centricular dot net>
3754
3755         * tests/check/Makefile.am:
3756           Random variation in Makefile line to see if it makes the
3757           gen64-base-full bot any happier.
3758
3759 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
3760
3761         * tests/check/pipelines/oggmux.c: (oggmux_suite):
3762           Disable test that fails at the moment (killed after timeout).
3763
3764 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
3765
3766         Patch by: James Livingston  <doclivingston at gmail.com>
3767
3768         * tests/check/Makefile.am:
3769         * tests/check/pipelines/.cvsignore:
3770         * tests/check/pipelines/oggmux.c: (get_page_codec),
3771         (check_chain_final_state), (fail_if_audio), (validate_ogg_page),
3772         (eos_buffer_probe), (start_pipeline), (stop_pipeline), (eos_watch),
3773         (test_pipeline), (test_vorbis), (test_theora), (test_vorbis_theora),
3774         (test_theora_vorbis), (oggmux_suite):
3775           Add simple unit test for oggmux from #337026 with checking for the
3776           EOS flags disabled for the time being.
3777
3778 2006-09-04  Wim Taymans  <wim@fluendo.com>
3779
3780         patch by: Alessandro Dessina <alessandro nnva org>
3781
3782         * ext/ogg/gstoggmux.c:
3783         Add cmml caps to oggmux. Fixes #353912
3784
3785 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
3786
3787         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3788           Returning a return value often helps. In this case, we
3789           don't need the return value anyway, so just get rid of it.
3790           Should make build bots much happier.
3791
3792 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
3793
3794         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure),
3795         (paint_get_structure), (gst_video_test_src_get_size),
3796         (gst_video_test_src_smpte), (gst_video_test_src_snow),
3797         (gst_video_test_src_unicolor), (paint_setup_AYUV),
3798         (paint_hline_AYUV), (paint_setup_ARGB8888), (paint_setup_ABGR8888),
3799         (paint_setup_RGBA8888), (paint_setup_BGRA8888), (paint_hline_str4):
3800         * gst/videotestsrc/videotestsrc.h:
3801           Add support for AYUV and the various RGBA formats. Initialise
3802           fields of paintinfo structs allocated on the stack.
3803
3804         * tests/check/elements/videotestsrc.c: (right_shift_colour),
3805         (fix_expected_colour), (check_rgb_buf), (got_buf_cb),
3806         (check_rgb_buf), (videotestsrc_suite):
3807           Add unit tests for videotestsrc's RGB output.
3808
3809 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
3810
3811         * gst/videotestsrc/gstvideotestsrc.c:
3812         (gst_video_test_src_pattern_get_type),
3813         (gst_video_test_src_set_pattern):
3814         * gst/videotestsrc/gstvideotestsrc.h:
3815         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor),
3816         (gst_video_test_src_black), (gst_video_test_src_white),
3817         (gst_video_test_src_red), (gst_video_test_src_green),
3818         (gst_video_test_src_blue):
3819         * gst/videotestsrc/videotestsrc.h:
3820           Add more uni-colour patterns ("white", "red", "green", and "blue").
3821
3822 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
3823
3824         * gst/videotestsrc/videotestsrc.c: (paint_setup_YVYU):
3825           Fix stride for YVYU, should be word-aligned (#353658).
3826
3827 2006-08-31  Tim-Philipp Müller  <tim at centricular dot net>
3828
3829         * gst/adder/gstadder.c: (gst_adder_src_event):
3830           Fix build.
3831
3832 2006-08-31  Edward Hervey  <edward@fluendo.com>
3833
3834         * gst/adder/gstadder.c: (forward_event_func),
3835         (gst_adder_src_event), (gst_adder_collected),
3836         (gst_adder_change_state):
3837         * gst/adder/gstadder.h:
3838         Remember the start position asked in the incoming seeks, so we can
3839         output GST_EVENT_NEW_SEGMENT with a correct position value (instead
3840         of assuming it will always be 0).
3841
3842 2006-08-31  Edward Hervey  <edward@fluendo.com>
3843
3844         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
3845         (gst_ogg_demux_finalize), (gst_ogg_demux_perform_seek),
3846         (gst_ogg_demux_loop):
3847         Send the GST_EVENT_NEW_SEGMENT from the streaming thread.
3848
3849 2006-08-30  Tim-Philipp Müller  <tim at centricular dot net>
3850
3851         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3852         (gst_ffmpegcsp_get_unit_size):
3853           Return FALSE instead of returning a random false unit
3854           size when the format isn't known/supported (even if
3855           this shouldn't happen under normal circumstances).
3856
3857 2006-08-29  Wim Taymans  <wim@fluendo.com>
3858
3859         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
3860
3861         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create),
3862         (gst_gnome_vfs_src_start):
3863         Try harder to get the size from a uri by using _info_uri() when
3864         _info_from_handle() does not give us enough info. 
3865         Also follow symlinks when getting the size.
3866         Partially Fixes #332864.
3867
3868 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
3869
3870         Patch by: Viktor Peters  <viktor dot peters at gmail dot com>
3871
3872         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
3873         (gst_alsa_mixer_update), (gst_alsa_mixer_get_volume),
3874         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
3875         (gst_alsa_mixer_set_record):
3876         * ext/alsa/gstalsamixertrack.c:
3877         (gst_alsa_mixer_track_update_alsa_capabilities),
3878         (alsa_track_has_cap), (gst_alsa_mixer_track_new),
3879         (gst_alsa_mixer_track_update):
3880         * ext/alsa/gstalsamixertrack.h:
3881           Improve and fix mixer track handling, in particular better handling
3882           of alsa's pvolume/pswitch/cvolume/cswitch capabilities; create
3883           separate track objects for tracks that have both capture and playback
3884           volume (and label them differently as well so they're not mistakenly
3885           assumed to be duplicates); classify mixer tracks that only affect
3886           the audible volume of something (rather than the capture volume)
3887           as playback tracks. Redefine/fix meaning of RECORD and MUTE flags
3888           for capture tracks to correspond to alsa-pswitch alsa-cswitch
3889           (following the meaning documented in the mixer interface header
3890           file); add support for alsa's exclusive cswitch groups; update/sync
3891           state/flags better if mixer settings are changed by another
3892           application. Fixes #336075.
3893
3894 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
3895
3896         * gst/playback/gstplaybin.c:
3897           Improve docs: add section about BUFFERING messages sent by playbin.
3898
3899 2006-08-29  Michael Smith  <msmith@fluendo.com>
3900
3901         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_push_buffer),
3902         (gst_vorbis_enc_buffer_check_discontinuous),
3903         (gst_vorbis_enc_chain):
3904           Ignore explicit DISCONT marked on buffers (which is often spurious,
3905           particularly when using multiple segments), in favour of solely
3906           using the timestamps/durations.
3907
3908 2006-08-29  Edward Hervey  <edward@fluendo.com>
3909
3910         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
3911         Don't rely on incoming buffers offset anymore, since it is completely
3912         broken when using multiple segments.
3913         Instead convert the incoming buffers timestamp to running time, and
3914         then convert that value to the offsets.
3915         Also inform GstSegment of the last outputted stop position, which is
3916         needed if we received several segments with an unknown stop value.
3917
3918 2006-08-29  Thomas Vander Stichele  <thomas at apestaart dot org>
3919
3920         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
3921           fix buffer unreffing on a header push failure
3922
3923 2006-08-28  Wim Taymans  <wim@fluendo.com>
3924
3925         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_sink_event),
3926         (gst_audio_rate_chain):
3927         Make the metadata of the buffer writable before changing its
3928         flags.
3929
3930 2006-08-28  Wim Taymans  <wim@fluendo.com>
3931
3932         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
3933         (gst_audio_rate_setcaps), (gst_audio_rate_init),
3934         (gst_audio_rate_sink_event), (gst_audio_rate_src_event),
3935         (gst_audio_rate_chain), (gst_audio_rate_change_state):
3936         Fix audiorate some more.
3937         Reset and resync counters on flush and READY.
3938         Handle the DISCONT flag correctly.
3939         Use GstSegment to track position.
3940         Fail when not negotiated.
3941         Fixes #353234.
3942
3943 2006-08-25  Michael Smith  <msmith@fluendo.com>
3944
3945         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
3946           Fix spelling.
3947           Remove accidently included debug line.
3948
3949 2006-08-25  Wim Taymans  <wim@fluendo.com>
3950
3951         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
3952         Small cleanups.
3953         If a buffer is received with no caps, make the buffer metadata
3954         writable and set the caps, making sure that we don't screw up the
3955         refcounts.
3956
3957 2006-08-25  Michael Smith  <msmith@fluendo.com>
3958
3959         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset),
3960         (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_chain):
3961           Fix memory leaks and misleading debug messages, add a couple of
3962           comments.
3963
3964         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats),
3965         (gst_multi_fd_sink_render):
3966           Do not use gst_buffer_make_writable() in a basesink render method,
3967           as it may incorrectly unref the buffer. Instead, use convoluted
3968           dance to avoid copying the buffer except when we need to.
3969
3970 2006-08-25  Michael Smith  <msmith@fluendo.com>
3971
3972         * ext/vorbis/vorbisenc.c:
3973         (gst_vorbis_enc_buffer_check_discontinuous):
3974           Allow very small discontinuities in the timestamps. These we can't
3975           do anything useful with anyway (because vorbis's timestamps have
3976           only sample granularity), and are commonly produced by elements with
3977           minor bugs. Allow up to 1/2 a sample out.
3978           Fixes #351742.
3979
3980 2006-08-24  Wim Taymans  <wim@fluendo.com>
3981
3982         * tests/examples/seek/seek.c: (seek_cb), (start_seek), (stop_seek),
3983         (play_scrub_toggle_cb), (main):
3984         Add a checkbox to enable play scrubbing. Makes it possible to disable
3985         normal scrubbing.
3986
3987 2006-08-23  Stefan Kost  <ensonic@users.sf.net>
3988
3989         * tests/check/elements/.cvsignore:
3990           make buildbot happy
3991
3992 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
3993
3994         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
3995         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init),
3996         (gst_ogm_parse_class_init), (gst_ogm_parse_dispose),
3997         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
3998         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
3999         (gst_ogm_parse_stream_header), (gst_ogm_parse_comment_packet),
4000         (gst_ogm_text_parse_strip_trailing_zeroes),
4001         (gst_ogm_parse_data_packet), (gst_ogm_parse_chain),
4002         (gst_ogm_parse_sink_event), (gst_ogm_parse_change_state):
4003           Refactor ogm parse, do better input checking, misc. clean-ups.
4004           Cache incoming events and push them once the source pad has
4005           been created. Don't pass unterminated strings to sscanf().
4006           Strip trailing zeroes from subtitle text output, since they
4007           are not valid UTF-8. Don't push vorbiscomment packets on
4008           the subtitle text pad. Output perfect streams if possible.
4009
4010 2006-08-23  Wim Taymans  <wim@fluendo.com>
4011
4012         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
4013         Waits for tasks to settle down so that we clean up correctly for 
4014         valgrind.
4015
4016 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
4017
4018         * tests/check/libs/tag.c: (GST_START_TEST), (taglists_are_equal):
4019           Unit test fixes: \377 is more likely to fit into 8 bits than \777;
4020           actually return return value in taglists_are_equal.
4021
4022 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
4023
4024         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
4025           Fix crash due to broken bitstream parsing on x86-64: can't make
4026           any assumptions about sizeof(struct) due to alignment/packing
4027           differences on different architectures. Fixes #351790.
4028
4029 2006-08-22  Wim Taymans  <wim@fluendo.com>
4030
4031         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
4032         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
4033         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
4034         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
4035         (gst_riff_parse_info):
4036         Protect public functions against bad input.
4037         Do some cleanups.
4038         Fix documentation.
4039
4040 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
4041
4042         * gst-libs/gst/riff/riff-ids.h:
4043         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
4044           Add voxware audio IDs (even if we can't play it) (#351795).
4045
4046 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
4047
4048         * gst-libs/gst/riff/riff-media.c:
4049         (gst_riff_create_video_template_caps),
4050         (gst_riff_create_audio_template_caps),
4051         (gst_riff_create_iavs_template_caps):
4052           Const-ify some arrays and use G_N_ELEMENTS instead
4053           of wasting oodles of RAM on terminator bits.
4054
4055 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
4056
4057         * gst-libs/gst/tag/gstvorbistag.c:
4058         (gst_tag_list_to_vorbiscomment_buffer):
4059         * tests/check/libs/tag.c: (GST_START_TEST):
4060           And the same for _to_vorbiscomment_buffer(): allow
4061           id_data_len == 0 for speex.
4062
4063 2006-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
4064
4065         * configure.ac:
4066         * docs/plugins/Makefile.am:
4067         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4068         * docs/plugins/gst-plugins-base-plugins-sections.txt:
4069         * docs/plugins/inspect/plugin-gdp.xml:
4070         * gst/gdp/Makefile.am:
4071         * tests/check/Makefile.am:
4072           Move GDP plugin to -base from -bad.  Closes #347783.
4073
4074 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
4075
4076         * gst-libs/gst/tag/gstvorbistag.c:
4077         (gst_tag_list_from_vorbiscomment_buffer):
4078           Allow id_data_len == 0 (needed for vorbis comments in Speex files).
4079           Also add some checks to make sure we don't memcmp() beyond the end of
4080           vorbiscomment buffer if the ID to check for is larger than the buffer.
4081
4082         * tests/check/libs/tag.c: (GST_START_TEST):
4083           Some more tests for gst_tag_list_from_vorbiscomment_buffer().
4084
4085 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
4086
4087         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1),
4088         (gst_vorbis_enc_set_metadata):
4089           Use vorbis comment utility functions from libgsttag
4090           instead of re-inventing the wheel (partially fixes #347091).
4091
4092 2006-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
4093
4094         * tests/check/elements/audioconvert.c: (GST_START_TEST):
4095         Fix leaks. Wait for state transitions that might happen ASYNC, as well
4096         as some that won't.
4097
4098 2006-08-21  Wim Taymans  <wim@fluendo.com>
4099
4100         * docs/libs/Makefile.am:
4101         * docs/libs/gst-plugins-base-libs-sections.txt:
4102         * docs/libs/gst-plugins-base-libs.types:
4103         Don't try to GObject scan the netbuffer as it's not a GObject.
4104         Fixes #351308.
4105
4106         * gst-libs/gst/netbuffer/gstnetbuffer.c:
4107         * gst-libs/gst/netbuffer/gstnetbuffer.h:
4108         Document GstNetBuffer.
4109
4110 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
4111
4112         * tests/check/elements/audioconvert.c: (GST_START_TEST),
4113         (audioconvert_suite):
4114           Add testcase for caps-size-explosion
4115
4116 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
4117
4118         * gst/audioconvert/gstaudioconvert.c:
4119         (gst_audio_convert_get_unit_size), (set_structure_widths):
4120           Lower debug, use g_assert in _get_unit_size
4121
4122         * gst/audioresample/gstaudioresample.c:
4123         (audioresample_get_unit_size):
4124         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4125         (gst_ffmpegcsp_get_unit_size):
4126         * gst/videoscale/gstvideoscale.c: (gst_video_scale_get_unit_size):
4127           use g_assert in _get_unit_size
4128
4129 2006-08-18  Wim Taymans  <wim@fluendo.com>
4130
4131         * docs/libs/gst-plugins-base-libs-sections.txt:
4132         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_set_packet_len),
4133         (gst_rtp_buffer_pad_to), (gst_rtp_buffer_get_payload_subbuffer),
4134         (gst_rtp_buffer_get_payload_buffer):
4135         * gst-libs/gst/rtp/gstrtpbuffer.h:
4136         Document GstRTPBuffer.
4137         Added function to efficiently strip payload headers.
4138         API: gst_rtp_buffer_get_payload_subbuffer()
4139
4140 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
4141
4142         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
4143         (gst_tag_to_vorbis_comments):
4144           Serialise unknown vorbis comments into GST_TAG_EXTENDED_COMMENT
4145           tags and deserialise them properly as well (#347091).
4146           Add some more gtk-doc blurbs and also some g_return_if_fail().
4147
4148         * tests/check/libs/tag.c: (GST_START_TEST),
4149         (back_to_vorbis_comments), (taglists_are_equal), (tag_suite):
4150           More tests.
4151
4152 2006-08-17  Wim Taymans  <wim@fluendo.com>
4153
4154         * ext/ogg/Makefile.am:
4155         * ext/ogg/gstogg.c: (plugin_init):
4156         * ext/ogg/gstoggaviparse.c: (gst_ogg_avi_parse_get_type),
4157         (gst_ogg_avi_parse_base_init), (gst_ogg_avi_parse_class_init),
4158         (gst_ogg_avi_parse_init), (gst_ogg_avi_parse_finalize),
4159         (gst_ogg_avi_parse_setcaps), (gst_ogg_avi_parse_event),
4160         (gst_ogg_avi_parse_push_packet), (gst_ogg_avi_parse_chain),
4161         (gst_ogg_avi_parse_change_state), (gst_ogg_avi_parse_plugin_init):
4162         Added ogg-in-avi parser element. Fixes #140139.
4163
4164         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
4165         Fixed a bug in oggdemux debug code.
4166
4167         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
4168         (gst_riff_create_audio_template_caps):
4169         Recognise Ogg in the AVI extensible wave format.
4170
4171 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
4172
4173         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
4174           Make buffer durations add up (duration should be next_ts-ts for
4175           perfect streams). Fixes CD ripping to Ogg/Vorbis with vorbisenc
4176           from CVS.
4177
4178         * tests/check/libs/cddabasesrc.c: (gst_cd_foo_src_close),
4179         (test_buffer_timestamps), (cddabasesrc_suite):
4180           Add unit test for the above.
4181
4182         * tests/check/Makefile.am:
4183           Don't know why cddabasesrc test was in VALGRIND_TO_FIX, remove
4184           to see what happens.
4185
4186 2006-08-16  Wim Taymans  <wim@fluendo.com>
4187
4188         * ext/alsa/gstalsasink.c: (gst_alsasink_set_property),
4189         (gst_alsasink_open):
4190         * ext/alsa/gstalsasrc.c: (gst_alsasrc_set_property),
4191         (gst_alsasrc_open):
4192         Avoid setting and using a NULL device name.
4193         Print more info when we fail to open a device.
4194
4195 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
4196
4197         * docs/libs/gst-plugins-base-libs-sections.txt:
4198         * gst-libs/gst/tag/tag.h:
4199         * gst-libs/gst/tag/tags.c: (gst_tag_parse_extended_comment):
4200           API: add gst_tag_parse_extended_comment() (#351426).
4201
4202         * tests/check/Makefile.am:
4203         * tests/check/libs/.cvsignore:
4204         * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite), (main):
4205           Add unit test for gst_tag_parse_extended_comment().
4206
4207 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
4208
4209         * sys/ximage/ximagesink.c: (gst_ximagesink_get_property):
4210         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_property):
4211           Fix leak (#351502).
4212
4213 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
4214
4215         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4216         * docs/plugins/gst-plugins-base-plugins-sections.txt:
4217         * docs/plugins/gst-plugins-base-plugins.args:
4218         * gst/playback/gstplaybin.c:
4219           Document playbin.
4220           
4221         * docs/plugins/inspect/plugin-adder.xml:
4222         * docs/plugins/inspect/plugin-alsa.xml:
4223         * docs/plugins/inspect/plugin-audioconvert.xml:
4224         * docs/plugins/inspect/plugin-audiorate.xml:
4225         * docs/plugins/inspect/plugin-audioresample.xml:
4226         * docs/plugins/inspect/plugin-audiotestsrc.xml:
4227         * docs/plugins/inspect/plugin-cdparanoia.xml:
4228         * docs/plugins/inspect/plugin-decodebin.xml:
4229         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
4230         * docs/plugins/inspect/plugin-gnomevfs.xml:
4231         * docs/plugins/inspect/plugin-ogg.xml:
4232         * docs/plugins/inspect/plugin-pango.xml:
4233         * docs/plugins/inspect/plugin-playbin.xml:
4234         * docs/plugins/inspect/plugin-subparse.xml:
4235         * docs/plugins/inspect/plugin-tcp.xml:
4236         * docs/plugins/inspect/plugin-theora.xml:
4237         * docs/plugins/inspect/plugin-typefindfunctions.xml:
4238         * docs/plugins/inspect/plugin-video4linux.xml:
4239         * docs/plugins/inspect/plugin-videorate.xml:
4240         * docs/plugins/inspect/plugin-videoscale.xml:
4241         * docs/plugins/inspect/plugin-videotestsrc.xml:
4242         * docs/plugins/inspect/plugin-volume.xml:
4243         * docs/plugins/inspect/plugin-vorbis.xml:
4244         * docs/plugins/inspect/plugin-ximagesink.xml:
4245         * docs/plugins/inspect/plugin-xvimagesink.xml:
4246           Update to CVS version.
4247
4248 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
4249
4250         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
4251         (gst_play_bin_set_property), (gst_play_bin_get_property),
4252         (value_list_append_structure_list),
4253         (gst_play_bin_handle_redirect_message),
4254         (gst_play_bin_handle_message):
4255           API: GstPlayBin::connection-speed
4256           Add "connection-speed" property; re-order redirect messages with
4257           multiple redirect locations depending on the minimum bitrate if
4258           that information is available and a connection speed is set
4259           (#350399).
4260
4261 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
4262
4263         * gst/playback/gstplaybin.c:
4264           Update max volume to the same value that the volume element uses.
4265
4266 2006-08-14  Wim Taymans  <wim@fluendo.com>
4267
4268         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
4269         Less uglyness..
4270
4271 2006-08-14  Wim Taymans  <wim@fluendo.com>
4272
4273         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
4274         (gst_ogg_demux_get_next_page), (gst_ogg_demux_perform_seek),
4275         (gst_ogg_demux_read_chain), (gst_ogg_demux_loop):
4276         Add some more debug info.
4277         Don't crash when a seek failed.
4278         Actually return the result of the seek instead of TRUE.
4279         Ignore multiple BOS pages with the same serial so that we don't create
4280         the same stream multiple times.
4281         Post an error when we fail to do the initial seek.
4282
4283 2006-08-13  Wim Taymans  <wim@fluendo.com>
4284
4285         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
4286         (gst_alsa_detect_channels), (gst_alsa_probe_supported_formats):
4287         Small code cleanup.
4288
4289         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
4290         (gst_alsa_mixer_new):
4291         Remove hack that always set the device to hw:0*.
4292         Properly find the card name for whatever device was configured.
4293         Do some better debugging.
4294         Fixes #350784.
4295
4296         * ext/alsa/gstalsamixerelement.c:
4297         (gst_alsa_mixer_element_set_property),
4298         (gst_alsa_mixer_element_change_state):
4299         Cleanups.
4300         Handle setting of a NULL device name better.
4301
4302 2006-08-11  Wim Taymans  <wim@fluendo.com>
4303
4304         * gst/adder/gstadder.c:
4305         Don't clip float values. Fixes #350900.
4306
4307 2006-08-11  Andy Wingo  <wingo@pobox.com>
4308
4309         * gst/tcp/gsttcp.c: Really fix the build?
4310
4311         * gst/tcp/gsttcp.h: For now, always disable deprecation here --
4312         fixes the build.
4313
4314 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
4315
4316         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes):
4317           Float caps shouldn't have a "signed" field.
4318
4319 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
4320
4321         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query):
4322           Implement SEEKING query in its most basic form, so that we can
4323           at least check if we're seekable or not (#350655).
4324
4325 2006-08-09  Tim-Philipp Müller  <tim at centricular dot net>
4326
4327         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
4328           The checks here are not even close to anything that would
4329           justify MAXIMUM probability, lowering to POSSIBLE until someone
4330           fixes the checks (case at hand: quicktime redirection files
4331           might start with 00 00 01 XX and pass the checks here just
4332           fine, see #350399).
4333
4334 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
4335
4336         Patch by: Sjoerd Simons  <sjoerd at luon net>
4337
4338         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find):
4339           Better detection for multipart/x-mixed-replace: accept leading
4340           whitespaces before the boundary marker as well (as our very own
4341           multipartmux used to produce) (#349068).
4342
4343 2006-08-07  Tim-Philipp Müller  <tim at centricular dot net>
4344
4345         Patch by: Young-Ho Cha  <ganadist at chollian net>
4346
4347         * gst-libs/gst/riff/riff-ids.h:
4348         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
4349         (gst_riff_create_audio_template_caps):
4350           Detect DTS audio streams (#350157).
4351
4352 2006-08-05  Andy Wingo  <wingo@pobox.com>
4353
4354         * ext/theora/gsttheoraparse.h:
4355         * ext/theora/theoraparse.c (gst_theora_parse_class_init)
4356         (theora_parse_dispose, theora_parse_set_property)
4357         (theora_parse_get_property, theora_parse_munge_granulepos)
4358         (theora_parse_push_buffer, theora_parse_change_state):
4359         API: GstTheoraParse::synchronization-points
4360         Add a property 'synchronization-points' to fix badly synchronized oggs.
4361
4362 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
4363
4364         * tests/check/Makefile.am:
4365         * tests/check/libs/.cvsignore:
4366         * tests/check/libs/audio.c: (structure_contains_channel_positions),
4367         (fixed_caps_have_channel_positions), (GST_START_TEST),
4368         (audio_suite), (main):
4369           Add a few tests for the channel position stuff in libgstaudio.
4370
4371 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
4372
4373         * ext/alsa/gstalsa.c: (caps_add_channel_configuration),
4374         (gst_alsa_detect_channels):
4375         * ext/alsa/gstalsasink.c:
4376           Add support for cards that (only) do more than 8 channels,
4377           like the Delta 44 (#345188).
4378
4379         * gst-libs/gst/audio/multichannel.c:
4380         (gst_audio_check_channel_positions):
4381         * gst-libs/gst/audio/multichannel.h:
4382           API: add GST_AUDIO_CHANNEL_POSITION_NONE, which stands for an
4383           unspecified channel position and cannot be combined with any
4384           of the other audio channel positions; adjust position layout
4385           checks accordingly (#345188).
4386
4387 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
4388
4389         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4390           Recognise ancient RealAudio files (see #349779).
4391
4392 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
4393
4394         Patch by: Jens Granseuer  <jensgr at gmx net>
4395
4396         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4397           Add typefinder for Interplay's MVE format (#348973).
4398
4399 2006-08-02  Wim Taymans  <wim@fluendo.com>
4400
4401         Patch by: Marcel Moreaux <marcelm at luon dot net>
4402
4403         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4404         (gst_base_rtp_depayload_add_to_queue):
4405         * gst-libs/gst/rtp/gstbasertpdepayload.h:
4406         Handle RTP sequence number rollover.
4407         Disable jitterbuffer by default.
4408
4409 2006-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
4410
4411         * gst/audioresample/gstaudioresample.c: (audioresample_stop),
4412         (audioresample_set_caps):
4413         Don't leak references to the incoming caps. Clean them up when
4414         stopping.
4415
4416         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
4417         (gst_video_scale_finalize):
4418         Don't leak our temporary pixel buffer.
4419
4420         * tests/check/Makefile.am:
4421         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline),
4422         (GST_START_TEST), (simple_launch_lines_suite):
4423
4424         Fix leaks and re-enable the test for valgrind checking.
4425
4426 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
4427
4428         Patch by: Sjoerd Simons  <sjoerd at luon net>
4429
4430         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find),
4431         (plugin_init):
4432           Add typefind function for multipart/x-mixed-replace (#348916).
4433
4434 2006-07-28  Wim Taymans  <wim@fluendo.com>
4435
4436         * gst/adder/gstadder.c: (gst_adder_setcaps),
4437         (gst_adder_query_duration):
4438         Fix leak in duration query.
4439         Reflow some docs and notes.
4440
4441 2006-07-28  Michael Smith  <msmith@fluendo.com>
4442
4443         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST),
4444         (vorbisenc_suite):
4445           Enable Andy's extra vorbisenc test, now that it passes. Also fix one
4446           aspect of it.
4447
4448 2006-07-28  Michael Smith  <msmith@fluendo.com>
4449
4450         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps),
4451         (gst_vorbis_enc_sink_getcaps), (gst_vorbis_enc_buffer_from_packet),
4452         (gst_vorbis_enc_push_buffer),
4453         (gst_vorbis_enc_buffer_check_discontinuous),
4454         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
4455         * ext/vorbis/vorbisenc.h:
4456           Handle discontinuities in the input vorbis stream correctly,
4457           so that the output is properly timestamped (and has good granulepos
4458           values). Needs some oggmux fixes too.
4459
4460 2006-07-27  Wim Taymans  <wim@fluendo.com>
4461
4462         patch by: Kai Vehmanen <kv2004 eca cx>
4463
4464         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4465         (gst_base_rtp_depayload_chain),
4466         (gst_base_rtp_depayload_handle_sink_event),
4467         (gst_base_rtp_depayload_change_state):
4468         Don't send multiple newsegments with different formats.
4469         Fixes #348677.
4470
4471 2006-07-26  Wim Taymans  <wim@fluendo.com>
4472
4473         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
4474         (gst_ogg_demux_do_seek), (gst_ogg_demux_read_chain):
4475         Make seeking in ogg more accurate again by doing the more correct
4476         granuletime to stream time conversion.
4477
4478 2006-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
4479
4480         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
4481         (gst_multi_fd_sink_new_client):
4482           debug a little more understandably
4483           do not use goto as a substitute for break, especially if
4484           break is also being used
4485
4486 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
4487
4488         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
4489         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
4490           Remove GLib-2.6 compatibility cruft.
4491
4492 2006-07-24  Wim Taymans  <wim@fluendo.com>
4493
4494         * gst-libs/gst/audio/gstbaseaudiosink.c:
4495         (gst_base_audio_sink_render):
4496         Don't try to align a sample to an unknown value.
4497
4498 2006-07-24  Wim Taymans  <wim@fluendo.com>
4499
4500         * gst-libs/gst/audio/gstbaseaudiosink.c:
4501         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
4502         When the audio clock is slaved to another clock, never try to align
4503         samples but trust the rate interpolation algorithm.
4504
4505 2006-07-24  Wim Taymans  <wim@fluendo.com>
4506
4507         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4508         Don't try to calculate silence samples, base class does this much
4509         better now.
4510
4511         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4512         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps),
4513         (gst_ring_buffer_acquire):
4514         Calculate silence samples correctly.
4515
4516         * gst-libs/gst/audio/gstringbuffer.h:
4517         Add _CAST macro.
4518
4519 2006-07-22  Tim-Philipp Müller  <tim at centricular dot net>
4520
4521         * gst/typefind/gsttypefindfunctions.c: (xml_check_first_element):
4522           Limit search for the first markup tag to the first few kB of
4523           the file. If we don't find one there, it's highly unlikely that
4524           this is an XML(-ish) file.
4525
4526 2006-07-21  Andy Wingo  <wingo@pobox.com>
4527
4528         * tests/check/pipelines/theoraenc.c (test_discontinuity): Similar
4529         test to the one in vorbisenc. Also commented out.
4530
4531         * tests/check/pipelines/vorbisenc.c: 
4532         (test_discontinuity): New test, commented out until Mike lands
4533         some elite vorbisenc patches.
4534
4535         * tests/check/pipelines/theoraenc.c: Port to bufferstraw.
4536         Bufferstraw was actually factored out of these tests. Now we share
4537         code yay.
4538
4539         * configure.ac (GST_MAJORMINOR): Rev core requirements to 0.10.9.1
4540         for bufferstraw addition to gstcheck.
4541
4542 2006-07-21  Wim Taymans  <wim@fluendo.com>
4543
4544         * ext/theora/theoradec.c: (clip_buffer):
4545         Better clipping.
4546
4547 2006-07-21  Wim Taymans  <wim@fluendo.com>
4548
4549         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
4550         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
4551         (gst_audioringbuffer_release), (gst_audioringbuffer_stop):
4552         Fix leak.
4553         Avoid type casting when we can.
4554
4555         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_dispose):
4556         Fix mem leak.
4557
4558 2006-07-20  Tim-Philipp Müller  <tim at centricular dot net>
4559
4560         * ext/alsa/gstalsamixerelement.c:
4561         (gst_alsa_mixer_element_change_state):
4562           Make state change fail if the specified device can't be opened
4563           for some reason.
4564
4565 2006-07-20  Wim Taymans  <wim@fluendo.com>
4566
4567         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
4568         (cb_newpad), (main):
4569         Example of a small audio/video player using decodebin.
4570
4571 2006-07-20  Stefan Kost  <ensonic@users.sf.net>
4572
4573         * gst-libs/gst/riff/riff-ids.h:
4574           Add 'fact' chunk id
4575
4576 2006-07-19  Wim Taymans  <wim@fluendo.com>
4577
4578         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4579         (gst_base_rtp_depayload_chain),
4580         (gst_base_rtp_depayload_change_state):
4581         Don't assert when not negotiated but post a meaningfull 
4582         error message. Fixes #347918.
4583
4584         * gst-libs/gst/rtp/gstbasertppayload.c:
4585         Add comment about better default MTU size.
4586
4587         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
4588         Small cleanups, start docs.
4589
4590 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
4591
4592         Patch by: Martin Szulecki
4593
4594         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_property):
4595           If "device-name" is requested and the device is not
4596           open, try to temporarily open it to obtain this
4597           information (#342494).
4598
4599 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
4600
4601         * gst-libs/gst/tag/gstid3tag.c:
4602           Add TSSE <=> GST_TAG_ENCODER mapping (see #347898).
4603
4604         * gst-libs/gst/tag/gsttageditingprivate.h:
4605         * gst-libs/gst/tag/gstvorbistag.c:
4606           Some more random const-ifications.
4607
4608 2006-07-18  Stefan Kost  <ensonic@users.sf.net>
4609
4610         * gst-libs/gst/riff/riff-ids.h:
4611         * gst-libs/gst/riff/riff-media.c:
4612         (gst_riff_create_video_template_caps):
4613           Add more FOURCCs (sort list to make stuff easier to find),
4614           add comment what those 16 bytes in struct _gst_riff_strh according to
4615           one avi-dumper are
4616
4617 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
4618
4619         * gst-libs/gst/audio/multichannel.c:
4620         (gst_audio_check_channel_positions),
4621         (gst_audio_fixate_channel_positions):
4622           Const-ify two arrays.
4623
4624 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
4625
4626         * ext/alsa/gstalsa.c: (caps_add_channel_configuration):
4627           Fix typo, so that alsasink also advertises 8 channels
4628           if that's supported (tags: can, worms, open, alsa, ph34r).
4629
4630 2006-07-17  Wim Taymans  <wim@fluendo.com>
4631
4632         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
4633         (gst_ogg_pad_submit_packet), (gst_ogg_demux_read_chain):
4634         *sigh*, when is the compiler going to warn when the comments
4635         are out-of-sync with the code.. Refix case of busted theora
4636         headers with 0 granule pos.
4637
4638 2006-07-14  Wim Taymans  <wim@fluendo.com>
4639
4640         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4641         (gst_base_rtp_depayload_wait),
4642         (gst_base_rtp_depayload_change_state),
4643         (gst_base_rtp_depayload_set_property),
4644         (gst_base_rtp_depayload_get_property):
4645         Fix 99% cpu load by waiting for absolute times on the
4646         clock. Fixes #347300.
4647
4648 2006-07-14  Andy Wingo  <wingo@pobox.com>
4649
4650         * ext/theora/gsttheoraparse.h: 
4651         * ext/theora/theoraparse.c (theora_parse_drain_event_queue)
4652         (theora_parse_push_headers, theora_parse_clear_queue)
4653         (theora_parse_drain_queue_prematurely, )
4654         (theora_parse_sink_event, theora_parse_change_state): Queue events
4655         until we initialized our state, like in vorbisparse.
4656
4657         * ext/vorbis/vorbisparse.h: 
4658         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_event_queue)
4659         (vorbis_parse_push_headers, vorbis_parse_clear_queue)
4660         (vorbis_parse_drain_queue_prematurely, )
4661         (vorbis_parse_sink_event, vorbis_parse_change_state): Queue events
4662         until we have initialized our state. Fixes seeking after an
4663         initial pad block.
4664
4665 2006-07-14  Andy Wingo  <wingo@pobox.com>
4666
4667         Patch by: Iain Holmes <iaingnome@gmail.com>
4668         
4669         * ext/ogg/gstoggdemux.c (gst_ogg_demux_finalize): Fix memleak.
4670
4671 2006-07-14  Jan Schmidt  <thaytan@mad.scientist.com>
4672
4673         * configure.ac:
4674         Bump nano back to CVS
4675
4676 === release 0.10.9 ===
4677
4678 2006-07-13  Jan Schmidt <thaytan@mad.scientist.com>
4679
4680         * configure.ac:
4681           releasing 0.10.9, "I walk the line"
4682
4683 2006-07-14  Michael Smith  <msmith@fluendo.com>
4684
4685         * tests/check/pipelines/vorbisenc.c: (stop_pipeline):
4686           Move a g_cond_signal to earlier to avoid sometimes deadlocking
4687           (commonly happens when running this test under valgrind) when trying
4688           to remove the buffer probe.
4689
4690 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
4691
4692         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
4693         Fix missing g_unlock from the previous commit
4694
4695 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
4696
4697         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
4698         (gst_ximagesink_change_state):
4699         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
4700         (gst_xvimagesink_change_state):
4701         Implement a locking order to ensure we always take the object lock
4702         before the x_lock and never vice-versa.
4703
4704 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
4705
4706         * gst/playback/gstdecodebin.c: (find_compatibles):
4707         Fix a caps leak when linking (#347304)
4708
4709         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
4710         (gst_ximagesink_ximage_destroy), (gst_ximagesink_xcontext_clear),
4711         (gst_ximagesink_change_state):
4712         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
4713         (gst_xvimage_buffer_finalize), (gst_xvimagesink_check_xshm_calls),
4714         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
4715         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_change_state):
4716         Don't leak shared memory resources. Use the object lock to protect
4717         against the xcontext disappearing while returning a buffer from the
4718         pipeline. (#347304)
4719
4720 2006-07-12  Edward Hervey  <edward@fluendo.com>
4721
4722         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize),
4723         (vorbis_handle_comment_packet):
4724         gst_tag_list_merge() returns a new object. Take that into account when
4725         using it. This avoids memleak.
4726         Revert previous commit which is not needed.
4727
4728 2006-07-12  Edward Hervey  <edward@fluendo.com>
4729
4730         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize):
4731         Reset the decoder in finalize so that all fields get cleared.
4732
4733 2006-07-12  Wim Taymans  <wim@fluendo.com>
4734
4735         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4736         (gst_base_audio_src_set_clock),
4737         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create):
4738         Don't try to post an error message when setting the clock fails
4739         as this can happen when adding an element to a bin which will then
4740         deadlock. Fixes #347296.
4741
4742 2006-07-12  Edward Hervey  <edward@fluendo.com>
4743
4744         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
4745         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
4746         (vorbis_handle_type_packet):
4747         Post tag messages on the bus even if we're not initialized.
4748         If we're not initialized, we still postpone the event pushing of tags.
4749
4750 2006-07-12  Wim Taymans  <wim@fluendo.com>
4751
4752         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4753         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4754         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
4755         Revert last two changes that broke the freeze.
4756
4757 2006-07-12  Wim Taymans  <wim@fluendo.com>
4758
4759         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4760         basesink calculates silence sample correctly for us.
4761
4762 2006-07-12  Wim Taymans  <wim@fluendo.com>
4763
4764         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4765         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
4766         Calculate correct silence samples so we don't fill our ringbuffer
4767         with noise.
4768
4769 2006-07-12  Edward Hervey  <edward@fluendo.com>
4770
4771         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
4772         (gst_vorbis_dec_reset), (vorbis_dec_sink_event),
4773         (vorbis_handle_comment_packet), (vorbis_handle_type_packet):
4774         * ext/vorbis/vorbisdec.h:
4775         Delay sending events (newsegment, tags) until the decoder is properly
4776         initialized.
4777         Fixes #347295
4778
4779 2006-07-11  Jan Schmidt  <thaytan@mad.scientist.com>
4780
4781         * tests/check/elements/audioconvert.c: (get_float_mc_caps),
4782         (get_int_mc_caps), (GST_START_TEST), (audioconvert_suite):
4783           Patch from #347221 adding a test for audioconvert
4784           channel remappings.
4785
4786 2006-07-11  Tim-Philipp Müller  <tim at centricular dot net>
4787
4788         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
4789         (gst_ssa_parse_parse_line):
4790           Don't include the terminating NUL in the buffer size,
4791           it's only there for extra paranoia (would add random
4792           '*' characters at the end of each subtitle since the
4793           terminator itself is not valid UTF-8 technically).
4794           Also fix indenting after boilerplate macro.
4795
4796 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
4797
4798         * gst/playback/gstdecodebin.c: (close_pad_link):
4799           Also emit 'unknown-type' signal (which should really be
4800           called unhandled-type) if we found potential decoders/demuxers
4801           in the registry but none of them worked in the end (as in the
4802           case where the plugins don't exist any longer but are still
4803           listed in the registry). Fixes #329798.
4804
4805 2006-07-08  Andy Wingo  <wingo@pobox.com>
4806
4807         * theoraparse.c (theora_parse_push_buffer)
4808         (theora_parse_drain_queue_prematurely, theora_parse_drain_queue):
4809         Add some more debugging. Fix granulepos reconstruction in the face
4810         of discontinuities.
4811
4812 2006-07-06  Wim Taymans  <wim@fluendo.com>
4813
4814         * gst-libs/gst/audio/gstbaseaudiosink.c:
4815         (gst_base_audio_sink_class_init),
4816         (gst_base_audio_sink_provide_clock):
4817         Use gobject_class instead of G_OBJECT_CLASS (klass)
4818
4819         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4820         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
4821         (gst_base_audio_src_set_clock), (gst_base_audio_src_provide_clock),
4822         (gst_base_audio_src_get_time),
4823         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create),
4824         (gst_base_audio_src_create_ringbuffer):
4825         Fix latency and buffer-time constants and properties ala basesink.
4826         Implement pull based scheduling. Fixes #346527.
4827         Set default blocksize in GstBaseSrc to 0, we default to pushing out
4828         one segment.
4829         Refuse slaving to another clock instead of silently not working.
4830         Only provide a clock when we are actually able to do so.
4831         Various small cleanups and compiler hints.
4832
4833 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
4834
4835         Patch by: Lutz Mueller <lutz at topfrose de>
4836
4837         * gst/typefind/gsttypefindfunctions.c: (html_type_find),
4838         (plugin_init):
4839           Add typefinding for text/html (#346581).
4840
4841 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
4842
4843         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
4844         (xml_check_first_element), (xml_type_find), (smil_type_find):
4845           Fix SMIL typefinding, make xml_check_first_element() more
4846           useful.
4847
4848 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
4849
4850         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
4851         (gst_play_base_bin_finalize), (decodebin_element_added_cb),
4852         (decodebin_element_removed_cb), (gst_play_base_bin_set_property):
4853         * gst/playback/gstplaybasebin.h:
4854           Protect list of elements with a subtitle-encoding property and
4855           the subtitle encoding member itself with a lock of their own
4856           instead of using the object lock. This prevents a dead-lock in
4857           the element-remove callback in some circumstances when shutting
4858           down playbin.
4859
4860 2006-07-05  Sebastien Moutte  <sebastien@moutte.net>
4861
4862         * win32/common/libgsttag.def:
4863         Export some new functions.
4864         * win32/vs6/libgstogg.dsp:
4865         Add a link to libgsttag-0.10.lib.
4866
4867 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
4868
4869         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
4870           Some const-ification.
4871
4872 2006-07-04  Wim Taymans  <wim@fluendo.com>
4873
4874         * gst/playback/gstplaybasebin.c: (is_stream), (gen_source_element):
4875         Improve checking if we are dealing with a stream. Added some
4876         more uris that need buffering.
4877
4878 2006-07-03  Edward Hervey  <edward@fluendo.com>
4879
4880         * ext/vorbis/vorbisdec.c: (vorbis_do_clip):
4881         Remove unused variable.
4882
4883 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
4884
4885         * Makefile.am:
4886           include lcov.mak
4887         * configure.ac:
4888           add GCOV_LIBS to GST_LIBS
4889
4890 2006-07-02  Tim-Philipp Müller  <tim at centricular dot net>
4891
4892         Patch by: Michael Sheldon  <webmaster at mikeasoft com>
4893
4894         * ext/alsa/gstalsasrc.c:
4895           Add 32 bps to template caps and increase channels range
4896           from [1,2] to [1,MAX]. See #346326.
4897
4898 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
4899
4900         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
4901           Recognise 'WMVA' video codec fourcc (#345879).
4902           
4903 2006-06-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
4904          
4905         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
4906           Fixed nasty memory leak
4907
4908 2006-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
4909
4910         * gst/tcp/gsttcp.c: (gst_tcp_read_buffer),
4911         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps):
4912           fix logging
4913
4914 2006-06-23  Jan Schmidt  <thaytan@mad.scientist.com>
4915
4916         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
4917         (gst_decode_bin_init), (gst_decode_bin_finalize), (add_fakesink),
4918         (remove_fakesink), (pad_probe), (gst_decode_bin_change_state):
4919         Protect remove_fakesink using a mutex, so that we don't try and
4920         remove the fakesink simultaneously from multiple threads.
4921
4922         When going from READY to PAUSED, restore the fakesink, so that
4923         it is there when decodebin gets reused.
4924
4925 2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>
4926
4927         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4928         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4929         * gst-libs/gst/rtp/gstbasertppayload.c:
4930         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4931         * gst/tcp/gstmultifdsink.c:
4932         * gst/tcp/gsttcpclientsink.c:
4933         * gst/tcp/gsttcpclientsrc.c:
4934         * gst/tcp/gsttcpserversink.c:
4935         * gst/tcp/gsttcpserversrc.c:
4936         * gst/videorate/gstvideorate.c:
4937         * gst/videotestsrc/gstvideotestsrc.c:
4938         * sys/v4l/gstv4ljpegsrc.c:
4939         * sys/v4l/gstv4lmjpegsink.c:
4940         * sys/v4l/gstv4lsrc.c:
4941         * tests/examples/seek/scrubby.c:
4942         * tests/examples/seek/seek.c:
4943           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503).
4944
4945 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
4946
4947         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
4948           Second field in GEnumValue shouldn't be a description,
4949           but a stringified version of the enum value.
4950
4951 2006-06-22  Wim Taymans  <wim@fluendo.com>
4952
4953         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
4954         (gst_ximage_buffer_free), (gst_ximagesink_ximage_put),
4955         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
4956         Avoid type checking in buffer casts.
4957         Avoid caps copy in buffer_alloc when we can.
4958         Use pad_peer_accept.
4959
4960 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
4961
4962         * gst-libs/gst/tag/tag.h:
4963           Oops, make that 'Since: 0.10.9'.
4964
4965 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
4966
4967         * docs/libs/gst-plugins-base-libs-sections.txt:
4968         * gst-libs/gst/tag/tag.h:
4969         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
4970         (gst_tag_image_type_get_type):
4971           API: add GstTagImageType enum to describe images contained
4972           in image tags (#345641).
4973
4974 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
4975
4976         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4977           Fix warnings with gst-inspect: "buffers-min" property
4978           should be of G_TYPE_INT and not G_TYPE_INT64. Also fix
4979           typo in property description.
4980
4981 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
4982
4983         Patch by: Cody Russell <bratsche at gnome org>
4984
4985         * gst/audioresample/gstaudioresample.c:
4986         (gst_audioresample_class_init):
4987         * gst/playback/gststreamselector.c:
4988         (gst_stream_selector_class_init):
4989         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
4990         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4991         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
4992         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
4993         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
4994         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
4995         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
4996         * gst/videotestsrc/gstvideotestsrc.c:
4997         (gst_video_test_src_class_init):
4998         * gst/volume/gstvolume.c: (gst_volume_class_init):
4999           Avoid unnecessary class cast check in class_init
5000           functions (#337747).
5001
5002 2006-06-21  Tim-Philipp Müller  <tim at centricular dot net>
5003
5004         * ext/pango/gsttextoverlay.c: (gst_text_overlay_make_utf8),
5005         (gst_text_overlay_video_chain):
5006           g_markup_escape_text() REALLY doesn't like non-UTF8 input
5007           and doesn't validate its input either (and neither did
5008           textoverlay it seems). Let's do that then and fix #345206.
5009
5010 2006-06-19  Wim Taymans  <wim@fluendo.com>
5011
5012         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
5013         (gst_unit_type_get_type), (gst_multi_fd_sink_class_init),
5014         (gst_multi_fd_sink_init), (gst_multi_fd_sink_add_full),
5015         (gst_multi_fd_sink_add), (gst_multi_fd_sink_handle_client_read),
5016         (find_syncframe), (find_limits), (assign_value),
5017         (count_burst_unit), (gst_multi_fd_sink_new_client),
5018         (gst_multi_fd_sink_handle_client_write),
5019         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_render),
5020         (gst_multi_fd_sink_set_property), (gst_multi_fd_sink_get_property),
5021         (gst_multi_fd_sink_change_state):
5022         * gst/tcp/gstmultifdsink.h:
5023         Added shiny new burst-on-connect methods.
5024         Add properties to control the minimal amount of data queued.
5025         Small cleanups.
5026         API: bytes-min property
5027         API: time-min property
5028         API: buffers-min property
5029         API: burst-unit property
5030         API: burst-value property
5031         API: add-full signal
5032
5033         * gst/tcp/gsttcp-marshal.list:
5034         Added new marshaller code for the new signal.
5035
5036         * tests/check/elements/multifdsink.c: (GST_START_TEST),
5037         (multifdsink_suite):
5038         Added testcases for new burst methods.
5039
5040 2006-06-19  Edward Hervey  <edward@fluendo.com>
5041
5042         * ext/theora/theoradec.c: (clip_buffer), (theora_dec_push):
5043         Implement clipping for accurate seeking.
5044         Closes #345225
5045
5046 2006-06-19  Wim Taymans  <wim@fluendo.com>
5047
5048         Patch by: Philip Jaegenstedt <philip at lysator dot liu dot se>
5049
5050         * gst/videoscale/gstvideoscale.c: (gst_video_scale_prepare_size),
5051         (gst_video_scale_transform):
5052         Make videoscale support RGBA, ARGB, BGRA and ABGR. Fixes #345131
5053
5054 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
5055
5056         * configure.ac:
5057           Fix --disable-external (can't set conditionals conditionally,
5058           #343602).
5059
5060 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
5061
5062         * tests/check/elements/audioresample.c: (test_reuse),
5063         (audioresample_suite):
5064           Add test case for bug #342789 fixed below.
5065
5066 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
5067
5068         * gst/audioresample/gstaudioresample.c:
5069         (gst_audioresample_class_init), (gst_audioresample_init),
5070         (audioresample_start), (audioresample_stop),
5071         (gst_audioresample_set_property), (gst_audioresample_get_property):
5072           Implement GstBaseTransform::start and ::stop so that audioresample
5073           can clear its internal state properly and be reused instead of
5074           causing non-negotiated errors with playbin under some circumstances
5075           (#342789).
5076
5077         * tests/check/elements/audioresample.c: (setup_audioresample),
5078         (cleanup_audioresample):
5079           Need to set element state here so that ::start and ::stop are
5080           called.
5081
5082 2006-06-16  Wim Taymans  <wim@fluendo.com>
5083
5084         Patch by: Young-Ho Cha <ganadist at chollian dot net>
5085
5086         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_vids):
5087         Parse extra data better, apparently it's right behind
5088         the normal strf header size. Fixes #343500.
5089
5090 2006-06-16  Wim Taymans  <wim@fluendo.com>
5091
5092         * ext/alsa/gstalsasink.c: (set_hwparams):
5093         If we fail to set the buffer_time and period_time alsa
5094         parameters, post a warning and leave alsa select a 
5095         default instead of failing. Fixes #342085
5096
5097 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
5098
5099         * docs/libs/gst-plugins-base-libs-sections.txt:
5100         * gst-libs/gst/cdda/gstcddabasesrc.h:
5101           Remove GST_CDDA_TAG_TRACK_TAGS again, it is #ifdef 0'ed
5102           out in the header file and shouldn't be listed in the docs.
5103
5104         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5105           Must dereference pointer to fourcc in the debug statement.
5106
5107 2006-06-16  Stefan Kost  <ensonic@users.sf.net>
5108
5109         * docs/libs/Makefile.am:
5110         * docs/libs/gst-plugins-base-libs-docs.sgml:
5111         * docs/libs/gst-plugins-base-libs-sections.txt:
5112         * docs/libs/gst-plugins-base-libs.types:
5113         add remaining symbols into correct setions
5114         
5115         * gst-libs/gst/audio/gstringbuffer.c:
5116         fix incomplete docs
5117         
5118         * gst-libs/gst/audio/gstringbuffer.h:
5119         comment out not yet implemented function
5120         
5121         
5122         * gst-libs/gst/floatcast/floatcast.h:
5123         * gst-libs/gst/netbuffer/gstnetbuffer.c:
5124         add short descriptions
5125         
5126         
5127         * gst-libs/gst/interfaces/propertyprobe.c:
5128         fix return value docs   
5129         
5130         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5131         simplify debug logging
5132         
5133         * gst-libs/gst/riff/riff-read.h:
5134         sync function prototype and docs
5135         
5136         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
5137         remove left over symbol
5138
5139 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
5140
5141         * autogen.sh:
5142         * configure.ac:
5143         * docs/Makefile.am:
5144           Use GST_PLUGIN_DOCS macro in configure.ac, add
5145           --enable-plugin-docs default to autogen.sh and use
5146           ENABLE_PLUGIN_DOCS conditional in Makefile.am (#344039).
5147
5148 2006-06-15  Wim Taymans  <wim@fluendo.com>
5149
5150         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
5151         (gst_ogg_demux_activate_chain), (gst_ogg_demux_combine_flows),
5152         (gst_ogg_demux_loop):
5153         Combine GstFlowReturn from the source pads to give a
5154         meaningfull result to the upstream peer or to stop the
5155         processing task in case of errors.
5156
5157 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
5158
5159         * gst/playback/gststreaminfo.c: (cb_probe):
5160           Try GST_TAG_CODEC as fallback when extracting the
5161           codec name; more debug info.
5162
5163 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
5164
5165         * ext/ogg/Makefile.am:
5166         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
5167           Extract language tags from ogm subtitle streams, so that
5168           the subtitle menu choices are labelled correctly in
5169           Totem (fixes #344708).
5170
5171 2006-06-14  Wim Taymans  <wim@fluendo.com>
5172
5173         Patch by: Alessandro Decina <alessandro at nnva dot org>
5174
5175         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_clear),
5176         (gst_ogg_mux_release_pad), (gst_ogg_mux_get_headers),
5177         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_init_collectpads),
5178         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
5179         Fix various leaks. Fixes #343699.
5180         Add x-smoke mime type.
5181
5182 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
5183
5184         * gst-libs/gst/riff/riff-ids.h:
5185           Add IDs for 'bext' chunks (see #343837).
5186
5187 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
5188
5189         Patch by: Young-Ho Cha  <ganadist at chollian net>
5190
5191         * gst/subparse/samiparse.c: (sami_context_pop_state),
5192         (handle_start_font), (end_sami_element):
5193           Honour font face tags in SAMI subtitles (#344503).
5194
5195 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
5196
5197         * po/POTFILES.in:
5198           add missing files containing translatable strings
5199
5200 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
5201
5202         * docs/libs/tmpl/.cvsignore:
5203           we don't want those *.sgml files in CVS either
5204
5205 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
5206
5207         * docs/libs/.cvsignore:
5208         * tests/check/elements/.cvsignore:
5209         * tests/check/libs/.cvsignore:
5210           ignore more
5211
5212 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
5213
5214         * docs/libs/Makefile.am:
5215           also commiting the changed Makefile.am (added more libs to the
5216           doc-build)
5217
5218 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
5219
5220         * docs/libs/gst-plugins-base-libs-docs.sgml:
5221         * docs/libs/gst-plugins-base-libs-sections.txt:
5222         * docs/libs/gst-plugins-base-libs.types:
5223           first batch of reordering things, add index & hierarchy
5224
5225 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
5226
5227         * configure.ac:
5228           use GST_PKG_CHECK_MODULES, cleans up output
5229
5230 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
5231
5232         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
5233           Add support for burn:// URIs (#343385); const-ify things a bit,
5234           use G_N_ELEMENTS instead of hard-coded array size.
5235
5236 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
5237
5238         Patch by: Young-Ho Cha  <ganadist at chollian net>
5239
5240         * gst/subparse/samiparse.c: (fix_invalid_entities), (parse_sami):
5241           Fix up broken entities before passing them to libxml *sigh*.
5242           (#343303).
5243           
5244 2006-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
5245
5246         * configure.ac:
5247           back to TRUNK
5248
5249 === release 0.10.8 ===
5250
5251 2006-06-09  Thomas Vander Stichele <thomas at apestaart dot org>
5252
5253         * configure.ac:
5254           releasing 0.10.8, "Moar gij ziet mij nie"
5255
5256 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
5257
5258         * configure.ac:
5259         * po/af.po:
5260         * po/az.po:
5261         * po/cs.po:
5262         * po/en_GB.po:
5263         * po/hu.po:
5264         * po/it.po:
5265         * po/nb.po:
5266         * po/nl.po:
5267         * po/or.po:
5268         * po/sq.po:
5269         * po/sr.po:
5270         * po/sv.po:
5271         * po/uk.po:
5272         * po/vi.po:
5273         * win32/common/config.h:
5274           0.10.7.2 prerelease
5275
5276 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
5277
5278         * docs/libs/tmpl/gstaudio.sgml:
5279         * docs/libs/tmpl/gstcolorbalance.sgml:
5280         * docs/libs/tmpl/gstmixer.sgml:
5281         * docs/libs/tmpl/gstringbuffer.sgml:
5282         * docs/libs/tmpl/gsttuner.sgml:
5283         * docs/libs/tmpl/gstxoverlay.sgml:
5284         * gst-libs/gst/audio/audio.c:
5285         * gst-libs/gst/audio/gstringbuffer.c:
5286         * gst-libs/gst/interfaces/colorbalance.c:
5287         * gst-libs/gst/interfaces/mixer.c:
5288         * gst-libs/gst/interfaces/tuner.c:
5289         * gst-libs/gst/interfaces/xoverlay.c:
5290           move last template doc snippets to source code and delete them
5291
5292 2006-06-06  Michael Smith  <msmith@fluendo.com>
5293
5294         * ext/theora/theoraparse.c: (theora_parse_drain_queue_prematurely),
5295         (theora_parse_drain_queue):
5296           Mark DELTA_UNIT on non-keyframes.
5297
5298 2006-06-03  Jan Schmidt  <thaytan@mad.scientist.com>
5299
5300         * gst-libs/gst/audio/gstbaseaudiosink.c:
5301         (gst_base_audio_sink_class_init), (gst_base_audio_sink_setcaps):
5302         * gst-libs/gst/audio/gstbaseaudiosink.h:
5303         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps),
5304         (gst_ring_buffer_samples_done):
5305         * gst-libs/gst/audio/gstringbuffer.h:
5306         Document better the fact that latency_time and buffer_time are values
5307         stored in microseconds, and not the usual GStreamer nanoseconds.
5308         Change the variables (compatibly) that store them from GstClockTime 
5309         to guint64 to make it more clear that they're not storing clock times.
5310         Also, remove the bogus property description that says the user can
5311         specify -1 to get the default value, since that's never been the case.
5312
5313         When computing the default segment size for the ring buffer, make it
5314         an integer number of samples.
5315
5316         When the sub-class indicates a delay greater than the number of
5317         samples we've written return 0 from the audio sink get_time method.
5318
5319 2006-06-02  Michael Smith  <msmith@fluendo.com>
5320
5321         * tests/check/elements/audioconvert.c: (set_channel_positions),
5322         (get_float_mc_caps), (get_int_mc_caps):
5323         * tests/check/elements/audioresample.c:
5324         * tests/check/elements/audiotestsrc.c: (GST_START_TEST):
5325         * tests/check/elements/videorate.c:
5326         * tests/check/elements/videotestsrc.c: (GST_START_TEST):
5327         * tests/check/elements/volume.c:
5328         * tests/check/elements/vorbisdec.c:
5329         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
5330           Don't busy-wait in tests; this was causing test timeouts very
5331           frequently when running under valgrind.
5332
5333 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
5334
5335         * gst/tcp/README:
5336         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_init),
5337         (gst_multi_fd_sink_remove_client_link),
5338         (gst_multi_fd_sink_client_queue_caps),
5339         (gst_multi_fd_sink_client_queue_buffer),
5340         (gst_multi_fd_sink_handle_client_write),
5341         (gst_multi_fd_sink_render):
5342         * gst/tcp/gstmultifdsink.h:
5343           make multifdsink properly deal with streamheader:
5344           - streamheader is taken from caps
5345           - buffers marked with IN_CAPS are not sent
5346           - streamheaders are sent, on connection, from the caps of the
5347             buffer where the client gets positioned to
5348           - further streamheader changes are done every time the client
5349             will receive a buffer with different caps
5350         * tests/check/elements/multifdsink.c: (GST_START_TEST),
5351         (gst_multifdsink_create_streamheader):
5352           add tests for this
5353
5354 2006-06-02  Michael Smith  <msmith@fluendo.com>
5355
5356         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
5357           Reinstate limit on channel count. Vorbis does not define the meaning
5358           of > 6 channels, so they're just independent channels. Gstreamer
5359           currently has no mechanism to represent N independent channels.
5360
5361 2006-06-02  Michael Smith  <msmith@fluendo.com>
5362
5363         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
5364           Don't arbitrarily restrict channel counts and rate in vorbis.
5365           In terms of effects likely on real-world files, this fixes 96kHz
5366           playback of vorbis.
5367
5368 2006-06-02  Michael Smith  <msmith@fluendo.com>
5369
5370         * gst/audioconvert/audioconvert.c: (float):
5371           More correct float->int conversion.
5372
5373 2006-06-02  Michael Smith  <msmith@fluendo.com>
5374
5375         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_perform_seek):
5376           Don't accidently send GST_CLOCK_TIME_NONE as a new segment start
5377           value. Fixes g-critical on trying to play back ogg containing
5378           unknown codec.
5379
5380 2006-06-02  Wim Taymans  <wim@fluendo.com>
5381
5382         * gst/playback/gstplaybasebin.c: (group_create), (group_commit),
5383         (setup_source):
5384         * gst/playback/gstplaybasebin.h:
5385         Make the subtitle detection work from any thread so we don't
5386         deadlock. Fixes #343397.
5387
5388 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
5389
5390         * gst/volume/Makefile.am:
5391           Seriously, it's not *that* hard to get compilation right.  Even
5392           a drunk can do it ! Add LIBOIL CFLAGS and LIBS
5393
5394 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
5395
5396         * gst/volume/gstvolume.c: (volume_choose_func),
5397         (volume_update_real_volume), (gst_volume_class_init),
5398         (gst_volume_init), (volume_process_float), (volume_process_int16),
5399         (volume_process_int16_clamp), (volume_set_caps),
5400         (volume_transform_ip), (plugin_init):
5401         * gst/volume/gstvolume.h:
5402         rewrite the passthrough check, split _int16 and _int16_clamp, fix
5403         another property desc., remove unused param from process function
5404         
5405         * tests/check/elements/volume.c: (volume_suite):
5406         reactivate the passthrough test
5407
5408 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
5409
5410         * ext/alsa/gstalsamixerelement.h:
5411         * ext/alsa/gstalsamixeroptions.h:
5412         * ext/alsa/gstalsamixertrack.h:
5413         * ext/gnomevfs/gstgnomevfssink.h:
5414         * ext/gnomevfs/gstgnomevfssrc.h:
5415         * ext/theora/gsttheoradec.h:
5416         * ext/theora/gsttheoraenc.h:
5417         * ext/theora/gsttheoraparse.h:
5418         * ext/vorbis/vorbisparse.h:
5419         * gst-libs/gst/audio/gstaudioclock.h:
5420         * gst-libs/gst/audio/gstaudiofilter.h:
5421         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
5422         * gst/audioconvert/gstaudioconvert.h:
5423         * gst/audioresample/gstaudioresample.h:
5424         * gst/audiotestsrc/gstaudiotestsrc.h:
5425         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
5426         * gst/playback/gststreamselector.h:
5427         * gst/tcp/gstmultifdsink.h:
5428         * gst/tcp/gsttcpclientsink.h:
5429         * gst/tcp/gsttcpclientsrc.h:
5430         * gst/tcp/gsttcpserversink.h:
5431         * gst/tcp/gsttcpserversrc.h:
5432         * gst/videorate/gstvideorate.h:
5433         * gst/videoscale/gstvideoscale.h:
5434         * gst/videotestsrc/gstvideotestsrc.h:
5435         * gst/volume/gstvolume.h:
5436         * sys/v4l/gstv4ljpegsrc.h:
5437         * sys/v4l/gstv4lmjpegsink.h:
5438         * sys/v4l/gstv4lmjpegsrc.h:
5439         * sys/v4l/gstv4lsrc.h:
5440         * sys/ximage/ximagesink.h:
5441         * sys/xvimage/xvimagesink.h:
5442         * tests/old/testsuite/alsa/sinesrc.h:
5443         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
5444
5445 2006-05-31  Wim Taymans  <wim@fluendo.com>
5446
5447         * ext/libvisual/visual.c: (gst_visual_reset),
5448         (gst_visual_sink_setcaps), (gst_visual_sink_event),
5449         (gst_visual_src_event), (get_buffer), (gst_visual_chain):
5450         Handle DISCONT.
5451         Use running time before doing QoS.
5452         Handle mono too.
5453
5454 2006-05-31  Thomas Vander Stichele  <thomas at apestaart dot org>
5455
5456         * docs/libs/Makefile.am:
5457           set a magic variable to indicate we know the docs are incomplete
5458
5459 2006-05-30  Sebastien Moutte  <sebastien@moutte.net>
5460
5461         * win32/common/libgstvideo.def:
5462           export gst_video_calculate_display_ratio
5463         * win32/vs6/libgstvideoscale.dsp:
5464           add link to libgstvideo-0.10.lib
5465
5466 2006-05-30  Tim-Philipp Müller  <tim at centricular dot net>
5467
5468         * gst/playback/gstplaybasebin.c: (gen_source_element):
5469           Throw a more comprehensible error for rtsp:// URIs (rather
5470           than erroring out with a negotiation error later on) until
5471           we fix playbin to handle rtspsrc etc.
5472
5473 2006-05-30  Wim Taymans  <wim@fluendo.com>
5474
5475         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
5476         (gst_text_overlay_text_event):
5477         Added some FIXMEs.
5478
5479 2006-05-30  Wim Taymans  <wim@fluendo.com>
5480
5481         * gst/adder/gstadder.c: (gst_adder_class_init), (gst_adder_init),
5482         (gst_adder_request_new_pad), (gst_adder_release_pad):
5483         * gst/adder/gstadder.h:
5484         Implement release_request_pad.
5485         Make padcounter atomic.
5486
5487         * tests/check/elements/adder.c: (GST_START_TEST), (adder_suite):
5488         Added check for release_pad in adder.
5489
5490 2006-05-30  Wim Taymans  <wim@fluendo.com>
5491
5492         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream):
5493         Fix build again.
5494
5495 2006-05-30  Thomas Vander Stichele  <thomas at apestaart dot org>
5496
5497         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
5498         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
5499         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
5500         (gst_ogg_pad_submit_page), (gst_ogg_chain_new_stream),
5501         (gst_ogg_demux_seek), (gst_ogg_demux_get_data),
5502         (gst_ogg_demux_get_next_page), (gst_ogg_demux_do_seek),
5503         (gst_ogg_demux_bisect_forward_serialno),
5504         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_chains),
5505         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
5506           add more debugging
5507           clean up printf formats for granulepos and serialno
5508
5509 2006-05-30  Michael Smith  <msmith@fluendo.com>
5510
5511         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
5512         (gst_vorbis_enc_class_init), (gst_vorbis_enc_dispose),
5513         (gst_vorbis_enc_generate_sink_caps), (gst_vorbis_enc_sink_getcaps),
5514         (gst_vorbis_enc_init), (gst_vorbis_enc_buffer_from_header_packet),
5515         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
5516         * ext/vorbis/vorbisenc.h:
5517           Multi-channel caps negotiation, so we can do proper multichannel
5518           vorbis encoding, negotiated through audioconvert.
5519
5520 2006-05-30  Wim Taymans  <wim@fluendo.com>
5521
5522         * tests/check/elements/adder.c: (test_event_message_received),
5523         (test_play_twice_message_received), (GST_START_TEST),
5524         (adder_suite):
5525         Added check to show that #339935 is fixed with ongoing
5526         adder and collectpads fixes.
5527
5528 2006-05-29  Wim Taymans  <wim@fluendo.com>
5529
5530         * gst/adder/gstadder.c: (gst_adder_request_new_pad):
5531         Don't leak pad name.
5532
5533 2006-05-29  Wim Taymans  <wim@fluendo.com>
5534
5535         * gst/adder/gstadder.c: (gst_adder_query_duration),
5536         (forward_event_func), (forward_event), (gst_adder_src_event):
5537         Fix adder seeking.
5538         Make query/seeking code threadsafe.
5539
5540         * tests/check/Makefile.am:
5541         * tests/check/elements/adder.c: (test_event_message_received),
5542         (GST_START_TEST), (test_play_twice_message_received):
5543         Fix adder test case.
5544
5545 2006-05-29  Tim-Philipp Müller  <tim at centricular dot net>
5546
5547         Patch by: Young-Ho Cha  <ganadist at chollian net>
5548
5549         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
5550         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
5551         (set_encoding_element), (decodebin_element_added_cb),
5552         (decodebin_element_removed_cb), (setup_subtitle), (setup_source),
5553         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
5554         * gst/playback/gstplaybasebin.h:
5555           Add 'subtitle-encoding' property to playbin, so applications can
5556           force a subtitle encoding for non-UTF8 subtitles (#342268).
5557
5558         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init),
5559         (gst_sub_parse_set_property):
5560           Rename recently-added 'encoding' property to 'subtitle-encoding'
5561           (so it can be proxied by playbin/decodebin in a generic way
5562           with less danger of false positives).
5563
5564 2006-05-29  Michael Smith  <msmith@fluendo.com>
5565
5566         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
5567         (append_with_other_format), (set_structure_widths),
5568         (gst_audio_convert_transform_caps):
5569           Patch from #341562: give more specific audio caps in get_caps, so
5570           that basetransform  can make better decisions on what caps to
5571           negotiate.
5572
5573 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
5574
5575         * tests/check/elements/volume.c:
5576         make it compile again
5577
5578 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
5579
5580         * tests/check/elements/volume.c: (volume_suite):
5581         disable test until #343196 gets resolved
5582
5583 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
5584
5585         * gst/adder/gstadder.c: (gst_adder_get_type):
5586         Make it easier to copy&paste
5587         
5588         * gst/volume/Makefile.am:
5589         * gst/volume/gstvolume.c: (volume_update_real_volume),
5590         (gst_volume_set_volume), (gst_volume_set_mute),
5591         (gst_volume_class_init), (volume_process_int16), (volume_set_caps),
5592         (volume_transform_ip), (volume_update_mute),
5593         (volume_update_volume):
5594         * gst/volume/gstvolume.h:
5595         Add own debug category, move duplicate code to helper function, fix
5596         property texts, add more comments and prepare ffor liboil-goodness
5597         
5598         * tests/check/Makefile.am:
5599         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
5600         add test for mute and passtrough case, be a bit more verbose to track
5601         failure
5602         
5603         * tests/check/generic/states.c: (GST_START_TEST):
5604         catch elements that fail to instantiate
5605
5606 2006-05-28  Edward Hervey  <edward@fluendo.com>
5607
5608         * tests/check/pipelines/simple-launch-lines.c:
5609         * tests/check/pipelines/theoraenc.c:
5610         * tests/check/pipelines/vorbisenc.c:
5611         Comment out tests using parse_launch() if core was built without
5612         parsing capabilities.
5613
5614 2006-05-27  Edward Hervey  <edward@fluendo.com>
5615
5616         * tests/check/Makefile.am:
5617         Extra bonus points for whoever explains to ensonic that you are meant
5618         to test unit tests thoroughly before commiting them, especially if
5619         you know it's going to break.
5620         De-activated element/adder tests.
5621
5622 2006-05-27  Edward Hervey  <edward@fluendo.com>
5623
5624         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
5625         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps):
5626         Marking caps conversion issues as GST_WARNING is way too verbose,
5627         Moving them to GST_LOG.
5628
5629 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
5630
5631         * README:
5632           Replace current README (containing the release notes from
5633           some 0.9.x version) with a proper README taken from the core.
5634
5635 2006-05-26  Wim Taymans  <wim@fluendo.com>
5636
5637         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
5638         (vorbis_dec_src_event), (vorbis_dec_sink_event), (vorbis_do_clip),
5639         (vorbis_dec_push), (vorbis_handle_data_packet), (vorbis_dec_chain),
5640         (vorbis_dec_change_state):
5641         Small cleanups.
5642         Add some FIXMEs
5643         Clip output samples to segment boundaries.
5644
5645 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
5646
5647         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
5648         (gst_ximagesink_xcontext_get), (gst_ximagesink_show_frame):
5649         Improve the errors produced on bad output, including some human
5650         readable description strings.
5651         Handle the (theoretical for ximagesink) case where the XServer 
5652         has a different idea about the size required for a particular 
5653         frame and gives us too small a memory allocation.
5654
5655 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
5656
5657         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
5658         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
5659         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
5660         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
5661         Improve the errors produced on bad output, including some human 
5662         readable description strings.
5663         Handle RGB Xv formats properly by transforming them into our 
5664         big-endian caps description.
5665         Use gst_caps_truncate to ensure that we never try and choose a
5666         non-fixed caps in buffer_alloc.
5667         Handle the case where the XServer has a different idea about the size
5668         required for a particular frame and gives us too small a memory
5669         allocation.
5670         Use -1 to indicate 'no image format', because 0 is a valid XServer
5671         image format number.
5672         Put RGB Xv formats at the end of the caps, so that we always prefer
5673         YUV format frames.
5674         Iterate the available Xv Encodings to determine the maximum width and
5675         height, and then return that in our caps.
5676         (Closes #315312, #337544)
5677
5678 2006-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
5679
5680         * gst/playback/gstdecodebin.c: (remove_fakesink), (pad_probe):
5681         When there is only one unfinished pad and it receives an event that
5682         doesn't match our requirements, we need to set alldone=FALSE so that
5683         the fakesink is not removed yet.
5684
5685 2006-05-25  Tim-Philipp Müller  <tim at centricular dot net>
5686
5687         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
5688           Use gst_type_find_helper_for_buffer() to find the type
5689           of stream from the first packet.
5690
5691         * configure.ac:
5692           Bump requirements to core CVS (needed for vorbis
5693           typefinding to work).
5694
5695 2006-05-24  Edward Hervey  <edward@fluendo.com>
5696
5697         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): 
5698         Added the 'prfl' atom type which MQV (no, it's not a typo) files
5699         contain.  Else they play perfectly fine with qtdemux.
5700
5701 2006-05-23  Stefan Kost  <ensonic@users.sf.net>
5702
5703         * ext/theora/theoradec.c:
5704         * ext/theora/theoraenc.c:
5705         * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
5706         * gst/audiorate/gstaudiorate.c:
5707           make more debug catagories static
5708         
5709         * tests/check/Makefile.am:
5710         * tests/check/elements/adder.c: (message_received),
5711         (test_event_message_received), (GST_START_TEST),
5712         (test_play_twice_message_received), (adder_suite):
5713           added test case for using element twice, extra bonus points for anyone
5714           who can make these test run reliably
5715
5716 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
5717
5718         * ext/theora/theoradec.c: (theora_dec_chain):
5719           Make work with time-stamped input buffers that do not
5720           have a granulepos in BUFFER_OFFSET_END (like theora
5721           buffers coming from matroskademux). Fixes #342448.
5722
5723 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
5724
5725         Patch by: Peter Kjellerstedt  <pkj at axis com>
5726
5727         * gst/tcp/Makefile.am:
5728           fdstresstest doesn't need Gtk+, fix compilation if 
5729           gtk is not available (#342566).
5730
5731 2006-05-19 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
5732          
5733         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
5734           80 line columns
5735           Removed redundant floor()
5736
5737 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
5738
5739         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5740           On second thought, just skip JUNK chunks automatically, so
5741           the caller doesn't have to handle this. Fixes #342345.
5742           Also, return GST_FLOW_UNEXPECTED if we get a short read,
5743           not GST_FLOW_ERROR.
5744
5745 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
5746
5747         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5748           Don't bail out on JUNK chunks with a size of 0 (would try to
5749           pull_range 0 bytes before, which sources don't like too much).
5750           See #342345.
5751
5752 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
5753
5754         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5755         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5756         Use the gstutil scaling function to preserve 64 bits while calculating
5757         output width and height from the display-aspect-ratio. (A continuation
5758         of #341542)
5759
5760 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
5761
5762         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
5763         (gst_xvimagesink_buffer_alloc):
5764         * sys/xvimage/xvimagesink.h:
5765         When performing buffer allocations, remember the caps and image format
5766         we return so that if the same caps are asked for next time we can
5767         return them immediately without doing any caps intersections.
5768
5769 2006-05-18 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
5770          
5771         * gst-libs/gst/rtp/README:
5772           Some new documentation
5773         * gst-libs/gst/rtp/gstrtpbuffer.h:       
5774           Added GST_RTP_PAYLOAD_DYNAMIC_STRING for use by children       
5775         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
5776         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:     
5777           New RTP audio base payloader class. Supports frame or sample based
5778           codecs.  Not enabled in Makefile.am until approved.
5779
5780 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
5781
5782         * tests/check/elements/alsa.c: (test_device_property_probe):
5783           Fix test case: don't try to free NULL GValueArray when there
5784           are no devices.
5785
5786 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
5787
5788         * tests/check/Makefile.am:
5789         * tests/check/elements/alsa.c: (test_device_property_probe),
5790         (alsa_suite), (main):
5791           Add simple test that runs a device property probe on alsasrc,
5792           alsasink and alsamixer. Disable valgrind check for now (too
5793           many leaks in libasound, and valgrind ignored my suppressions
5794           additions).
5795
5796 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
5797
5798         * ext/alsa/gstalsadeviceprobe.c: (gst_alsa_get_device_list),
5799         (gst_alsa_device_property_probe_probe_property),
5800         (gst_alsa_device_property_probe_needs_probe),
5801         (gst_alsa_device_property_probe_get_values),
5802         (gst_alsa_type_add_device_property_probe_interface):
5803         * ext/alsa/gstalsadeviceprobe.h:
5804         * ext/alsa/gstalsamixerelement.c:
5805         (gst_alsa_mixer_element_init_interfaces):
5806         * ext/alsa/gstalsamixerelement.h:
5807           Clean up and simplify alsa device probing. Make it actually work
5808           for multiple classes. Don't cache results any longer.
5809
5810         * ext/alsa/gstalsasink.c: (gst_alsasink_init_interfaces),
5811         (gst_alsasink_init):
5812         * ext/alsa/gstalsasrc.c: (gst_alsasrc_dispose),
5813         (gst_alsasrc_interface_supported), (gst_implements_interface_init),
5814         (gst_alsasrc_init_interfaces), (gst_alsasrc_set_property):
5815           Make alsasink and alsasrc implement the GstPropertyProbe interface
5816           for device probing (#342181).
5817           Patch by: Martin Szulecki  <gnomebugzilla at sukimashita com>
5818
5819 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
5820
5821         * gst/subparse/samiparse.c: (handle_start_font):
5822           Don't ignore return value of strtol (++compiler_happiness).
5823
5824 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
5825
5826         Patch by: Young-Ho Cha  <ganadist chollian net>
5827
5828         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
5829         (gst_sub_parse_class_init), (gst_sub_parse_init),
5830         (gst_sub_parse_set_property), (gst_sub_parse_get_property),
5831         (convert_encoding):
5832         * gst/subparse/gstsubparse.h:
5833           Add 'encoding' property (#341681).
5834
5835         * gst/subparse/samiparse.c: (characters_sami):
5836           Output is pango markup, so we need to escape text
5837           between tags (#342143).
5838
5839 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
5840
5841         * gst-libs/gst/audio/multichannel.c:
5842         (gst_audio_check_channel_positions):
5843           It's okay to have caps with channels=1 and a channel position
5844           different from GST_AUDIO_CHANNEL_POSITION_FRONT_MONO
5845           (deinterleavers might want to keep the position in the caps,
5846           so that they can be re-interleaved again properly later).
5847           Leave check for unexpected 2-channel layouts intact for now.
5848
5849 2006-05-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5850
5851         * gst/tcp/gsttcp.c: (gst_tcp_socket_read):
5852         Return GST_FLOW_UNEXPECTED when we have an eos on the socket so
5853         basesrc can do its job correctly.
5854
5855 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
5856
5857         * ext/alsa/Makefile.am:
5858         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
5859         (gst_alsa_detect_formats), (get_channel_free_structure),
5860         (caps_add_channel_configuration), (gst_alsa_detect_channels),
5861         (gst_alsa_probe_supported_formats):
5862         * ext/alsa/gstalsa.h:
5863         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
5864           Refactor and improve caps probing code: probe signedness
5865           when we probe the supported formats/widths; set endianness
5866           to the one we actually probed for (ie. cpu endianness).
5867           
5868         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (gst_alsasrc_getcaps),
5869         (gst_alsasrc_close):
5870         * ext/alsa/gstalsasrc.h:
5871           Implement caps probing for alsasrc.
5872
5873 2006-05-15  Wim Taymans  <wim@fluendo.com>
5874
5875         * ext/theora/theoradec.c: (gst_theora_dec_reset),
5876         (theora_dec_src_query), (theora_dec_src_event),
5877         (theora_dec_sink_event), (theora_handle_comment_packet),
5878         (theora_handle_data_packet), (theora_dec_change_state):
5879         Cleanups, add some G_LIKELY.
5880         Use segment helpers instead of our own wrong code.
5881         Clear queued buffers on seek and READY.
5882
5883         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
5884         (vorbis_dec_convert), (vorbis_dec_src_query),
5885         (vorbis_dec_src_event), (vorbis_dec_sink_event),
5886         (vorbis_handle_comment_packet), (vorbis_dec_push),
5887         (vorbis_handle_data_packet), (vorbis_dec_chain),
5888         (vorbis_dec_change_state):
5889         * ext/vorbis/vorbisdec.h:
5890         Remove old useless packetno variable.
5891         Do position query properly.
5892         Add some G_LIKELY.
5893         Do cleanup of queued buffers in new helper function
5894         and use it.
5895
5896 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5897
5898         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
5899           Query supported sample rates. Fixes #341732.
5900
5901 2006-05-15  Julien MOUTTE  <julien@moutte.net>
5902
5903         * gst/playback/gstdecodebin.c: (cleanup_decodebin),
5904         (gst_decode_bin_change_state): Make decodebin reusable
5905         when going from PAUSE_TO_READY and then back to PAUSED.
5906         Fixes #331678.
5907
5908 2006-05-15  Wim Taymans  <wim@fluendo.com>
5909
5910         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types),
5911         (vorbis_dec_convert), (vorbis_dec_src_query),
5912         (vorbis_dec_sink_query), (vorbis_dec_src_event),
5913         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
5914         (vorbis_dec_clean_queued), (vorbis_dec_push),
5915         (vorbis_handle_data_packet), (vorbis_dec_change_state):
5916         Cleanups. Use refcounting and DEBUG_OBJECT.
5917         Reset segment on flush, use code methods instead of our
5918         own wrong version.
5919         Fix potential memleak.
5920
5921 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5922
5923         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
5924         (gst_alsasink_init):
5925         * ext/alsa/gstalsasink.h:
5926           Don't leak allocated snd_output_t structure if there's
5927           more than one alsasink instance at a time (#341873).
5928           Also fix GObject macros in header file.
5929           
5930 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5931
5932         * gst/subparse/gstsubparse.c:
5933         (gst_sub_parse_data_format_autodetect):
5934           Don't use libxml functions in the typefinding code.
5935
5936 2006-05-15  Wim Taymans  <wim@fluendo.com>
5937
5938         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
5939         Fix seeking performance in the case where a non-header 
5940         packet has a 0 granulepos (busted theora case). 
5941         Fixes #341719
5942         (nvdr: thanks Wim for not mentioning who spotted and fixed it in
5943          the first place, you limelight stealer you)
5944
5945 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5946
5947         * gst/subparse/gstsubparse.c:
5948         (gst_sub_parse_data_format_autodetect):
5949           Improve SAMI typefinding: handle case where there are
5950           whitespaces or newlines in front of the first <SAMI>
5951           tag (#169936).
5952
5953 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5954
5955         * configure.ac:
5956           Build video4linux plugin even if there's no XVIDEO, just
5957           without implementing the GstXOverlay interface (#334002).
5958          
5959 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5960
5961         * configure.ac:
5962         * ext/libvisual/visual.c: (gst_visual_actor_plugin_is_gl),
5963         (plugin_init):
5964           Add tentative support for libvisual-0.4 (#336881).
5965
5966 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5967
5968         Patch by: Young-Ho Cha <ganadist at chollian net>
5969
5970         * gst/subparse/samiparse.c: (handle_start_font):
5971           Need to map "silver" colour explicitly (#169936).
5972
5973 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5974
5975         Patch by: Young-Ho Cha  <ganadist at chollian net>
5976
5977         * gst/subparse/Makefile.am:
5978         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
5979         (parser_state_dispose), (gst_sub_parse_data_format_autodetect),
5980         (gst_sub_parse_format_autodetect), (feed_textbuf),
5981         (gst_subparse_type_find), (plugin_init):
5982         * gst/subparse/gstsubparse.h:
5983         * gst/subparse/samiparse.c:
5984         * gst/subparse/samiparse.h:
5985           Add support for SAMI subtitles (#169936).
5986
5987 2006-05-14  Michael Smith  <msmith@fluendo.com>
5988
5989         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
5990           Fix #341696: crash when mixing L+R+C to mono or stereo.
5991         * tests/check/Makefile.am:
5992         * tests/check/elements/audioconvert.c: (set_channel_positions),
5993         (get_float_mc_caps), (get_int_mc_caps), (GST_START_TEST),
5994         (audioconvert_suite):
5995           Add test for the above, including some generic framework bits for
5996           testing multichannel things.
5997
5998 === release 0.10.7 ===
5999
6000 2006-05-14  Jan Schmidt <thaytan@mad.scientist.com>
6001
6002         * configure.ac:
6003           releasing 0.10.7, "Leave the gun"
6004
6005 2006-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
6006
6007         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
6008         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
6009         Fix the build.
6010
6011 2006-05-12  Jan Schmidt  <thaytan@mad.scientist.com>
6012
6013         * docs/libs/gst-plugins-base-libs-docs.sgml:
6014         * docs/libs/gst-plugins-base-libs-sections.txt:
6015         * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio):
6016         * gst-libs/gst/video/video.h:
6017         * gst/videoscale/Makefile.am:
6018         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
6019         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
6020         * tests/check/Makefile.am:
6021         * tests/check/libs/video.c: (GST_START_TEST), (video_suite),
6022         (main):
6023           Fix integer overflow problem with pixel-aspect-ratio calculations
6024           in videoscale and xvimagesink (#341542)
6025
6026 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
6027
6028         * gst-libs/gst/tag/gstid3tag.c:
6029           Map GST_IMAGE_TAG to and from ID2v2 APIC frames (#341557).
6030
6031 2006-05-12  Sebastien Moutte  <sebastien@moutte.net>
6032
6033         * win32/MANIFEST:
6034           update win32 files listing
6035
6036 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
6037
6038         patch by: Sjoerd Simons (sjoerd@luon.net)
6039
6040         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
6041         (group_create), (group_destroy), (add_stream),
6042         (gst_play_base_bin_get_property),
6043         (gst_play_base_bin_get_streaminfo_value_array):
6044         * gst/playback/gstplaybasebin.h:
6045           API: GstPlayBaseBin::stream-info-value-array property
6046           use a more bindings-friendly way of exposing streaminfo
6047           using a GValueArray.  Tested in ipython.
6048           Closes #341114
6049
6050 2006-05-11  Wim Taymans  <wim@fluendo.com>
6051
6052         * gst/playback/gstdecodebin.c: (try_to_link_1), (queue_enlarge),
6053         (queue_underrun_cb), (queue_filled_cb):
6054         Also catch queue underruns but don't do anything yet.
6055         Refactor and comment queue enlarging code a bit.
6056
6057         * gst/playback/gstplaybasebin.c: (queue_overrun),
6058         (queue_threshold_reached), (queue_out_of_data),
6059         (gen_preroll_element):
6060         If a queue over/underruns check that we don't create nasty
6061         deadlocks when the min-threshold is not reached but the
6062         max-bytes is. In those cases disable max-bytes when we
6063         know that the queue is fed timed data.
6064         Add more comments.
6065
6066 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
6067
6068         * gst/playback/gstplaybin.c: (gen_audio_element):
6069           Make playbin automatically plug an 'audioresample'
6070           element before the audio sink as well. This solves
6071           problems with sinks that only accept a very specific
6072           sample rate, like esdsink (e.g. #340379).
6073
6074 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
6075
6076         * gst/playback/gstplaybasebin.c: (gen_source_element):
6077           Make http sources send special headers so that we receive
6078           icecast metadata if the http stream is an icecast stream
6079           (otherwise the server will just ignore them). This also
6080           means that from now on users will need the 'icydemux'
6081           element from gst-plugins-good installed if they want to
6082           listen to icecast radio streams. (#341432, #333657).
6083
6084 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
6085
6086         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_remove_client_link),
6087         (gst_multi_fd_sink_new_client), (gst_multi_fd_sink_stop):
6088           remove stupid example from docs - it should come with a simple
6089           C program instead.
6090           Clean up/fix docs
6091         * tests/check/elements/multifdsink.c: (wait_bytes_served),
6092         (fail_if_can_read), (GST_START_TEST),
6093         (gst_multifdsink_create_streamheader), (multifdsink_suite):
6094           add a test for changing streamheader which exposes a bug in
6095           multifdsink
6096
6097 2006-05-11  Michael Smith  <msmith@fluendo.com>
6098
6099         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
6100         (gst_gnome_vfs_src_received_headers_callback):
6101         * ext/gnomevfs/gstgnomevfssrc.h:
6102           Don't set icy-caps unless we have a sane interval value. Move
6103           interval to a local variable; we never use it outside this function.
6104
6105 2006-05-11  Wim Taymans  <wim@fluendo.com>
6106
6107         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
6108         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
6109         Register special buffer types along with the objects so
6110         that they are not registered at runtime from N different
6111         streaming threads since they are not threadsafe.
6112
6113 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
6114
6115         * tests/check/elements/multifdsink.c: (wait_bytes_served),
6116         (GST_START_TEST), (fail_unless_read), (multifdsink_suite):
6117           add two more tests, one doing streamheader
6118
6119 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
6120
6121         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_stop):
6122           clean up the bufqueue when shutting down
6123         * tests/check/Makefile.am:
6124         * tests/check/elements/multifdsink.c: (setup_multifdsink),
6125         (cleanup_multifdsink), (GST_START_TEST), (multifdsink_suite),
6126         (main):
6127           add a test for the leak that was just fixed
6128
6129 2006-05-10  Wim Taymans  <wim@fluendo.com>
6130
6131         * gst/adder/gstadder.c: (gst_adder_setcaps),
6132         (gst_adder_query_duration), (gst_adder_query), (forward_event),
6133         (gst_adder_src_event), (gst_adder_sink_event),
6134         (gst_adder_class_init), (gst_adder_finalize),
6135         (gst_adder_request_new_pad), (gst_adder_collected):
6136         * gst/adder/gstadder.h:
6137         Updated some docs. Added comments and FIXMEs all over the place.
6138         Improve debugging info.
6139         Fix leak on finalize by not calling the parent.
6140         Implement duration query.
6141         Make event forwarding threadsafe.
6142         Correctly send NEWSEGMENT at start and after flush.
6143         Handle EOS correctly.
6144         Post error when not negotiated.
6145
6146         * tests/check/elements/adder.c: (GST_START_TEST):
6147         Added FIXME in the test.
6148
6149 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
6150
6151         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
6152         (gst_text_overlay_halign_get_type),
6153         (gst_text_overlay_wrap_mode_get_type):
6154         * ext/theora/theoradec.c: (theora_handle_type_packet),
6155         (theora_handle_data_packet):
6156         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
6157         (theora_enc_sink_setcaps), (theora_enc_chain):
6158         * gst-libs/gst/cdda/gstcddabasesrc.c:
6159         (gst_cdda_base_src_mode_get_type):
6160         * gst/audiotestsrc/gstaudiotestsrc.c:
6161         (gst_audiostestsrc_wave_get_type):
6162         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
6163         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
6164         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
6165         (gst_sync_method_get_type), (gst_unit_type_get_type),
6166         (gst_client_status_get_type):
6167         * gst/videoscale/gstvideoscale.c:
6168         (gst_video_scale_method_get_type):
6169         * gst/videotestsrc/gstvideotestsrc.c:
6170         (gst_video_test_src_pattern_get_type):
6171         * gst/videotestsrc/videotestsrc.c: (paint_setup_I420),
6172         (paint_setup_YV12), (paint_setup_YUY2), (paint_setup_UYVY),
6173         (paint_setup_YVYU), (paint_setup_IYU2), (paint_setup_Y41B),
6174         (paint_setup_Y42B), (paint_setup_Y800), (paint_setup_YVU9),
6175         (paint_setup_YUV9), (paint_setup_RGB888), (paint_setup_BGR888),
6176         (paint_setup_RGB565), (paint_setup_xRGB1555):
6177           Const-ify GEnumValue and GFlagsValue arrays. Use
6178           GST_ROUND_UP_* macros instead of home-made ones.
6179
6180 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
6181
6182         * configure.ac:
6183           Require core CVS for the new newsegment stuff.
6184
6185 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
6186
6187         Patch by: Sjoerd Simons  <sjoerd at luon net>
6188
6189         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type):
6190           Register nick for enum value (#341160).
6191
6192 2006-05-09  Stefan Kost  <ensonic@users.sf.net>
6193
6194         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find),
6195         (plugin_init):
6196          backout typefind patch #340375
6197          
6198         * tests/check/elements/adder.c: (message_received),
6199         (GST_START_TEST), (adder_suite):
6200           redo, signal-handling of test
6201
6202 2006-05-09  Wim Taymans  <wim@fluendo.com>
6203
6204         * gst/adder/gstadder.c: (gst_adder_request_new_pad),
6205         (gst_adder_collected):
6206         * gst/adder/gstadder.h:
6207         Remove bogus segment merging and forwarding, we don't
6208         care about timestamps anyway and we just produce a
6209         continuous stream. 
6210         Also create a nice NEWSEGMENT event when we start.
6211         Use _scale_int some more.
6212
6213 2006-05-09  Edward Hervey  <edward@fluendo.com>
6214
6215         * tests/icles/stress-xoverlay.c:
6216         Fix if core was built without parsing support.
6217
6218 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
6219
6220         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6221           Add SEDG (Samsung MPEG-4) fourcc.
6222
6223 2006-05-09  Edward Hervey  <edward@fluendo.com>
6224
6225         * tests/icles/stress-xoverlay.c:
6226         * tests/examples/volume/volume.c:
6227         Fix if core was built without parsing support.
6228
6229         * tests/examples/seek/seek.c:
6230         Disable the parse_launch example if core was built without parsing
6231         support.
6232
6233 2006-05-08  Edward Hervey  <edward@fluendo.com>
6234
6235         * autogen.sh: (CONFIGURE_DEF_OPT): 
6236         libtoolize on Darwin/MacOSX is called glibtoolize
6237
6238 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
6239
6240         * tests/check/Makefile.am:
6241         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST):
6242           Disable the adder test, until the build-slaves posses the kindness to 
6243           either like it or to give valid reason for not doing so 
6244
6245 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
6246
6247         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
6248         (adder_suite):
6249           Shuffle NULL state change around and raise timeout more
6250
6251 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
6252
6253         * gst/typefind/gsttypefindfunctions.c: (mp4_find_box),
6254         (mp4_type_find), (plugin_init):
6255           Add typefind to distinguish between "audio/x-m4a" and new type
6256           "video/mp4". Fixes #340375
6257
6258         * tests/check/elements/adder.c: (adder_suite):
6259           Raise timeout to make buildbot happy
6260
6261 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
6262
6263         * gst/adder/gstadder.c: (gst_adder_sink_event),
6264         (gst_adder_request_new_pad), (gst_adder_change_state):
6265         * gst/adder/gstadder.h:
6266         * tests/check/Makefile.am:
6267         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
6268         (adder_suite), (main):
6269           Add sink-event handling to adder. It tries to merge incomming
6270           newsegment-events. Added test to check if segment_done is comming
6271           through. Fixes #340060
6272
6273 2006-05-05  Andy Wingo  <wingo@pobox.com>
6274
6275         * ext/theora/theoraparse.c (gst_theora_parse_init)
6276         (theora_parse_src_convert, theora_parse_src_query):
6277         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
6278         (vorbis_parse_convert, vorbis_parse_src_query): Add convert and
6279         query functions on the source pads of the theora and vorbis parse
6280         elements. Fixes position querying when doing a remux.
6281
6282 2006-05-05  Michael Smith  <msmith@fluendo.com>
6283
6284         * ext/theora/theoraparse.c: (parse_granulepos),
6285         (theora_parse_drain_queue_prematurely),
6286         (theora_parse_queue_buffer), (theora_parse_sink_event):
6287           Fix flushing.
6288           Fix invalid granulepos outputs when starting with a non-keyframe.
6289
6290 2006-05-05  Jan Schmidt  <thaytan@mad.scientist.com>
6291
6292         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find),
6293         (mpeg1_sys_type_find), (ogganx_type_find), (sw_data_destroy):
6294         Rearrange MPEG system stream detection, fixing some memleaks in the
6295         process.
6296         Constify the data for STARTS_WITH and RIFF helper handlers. Make sure
6297         they clean up their data correctly.
6298         Remove unused ogganx caps and move the 'is_annodex' check to inside
6299         the 'is_ogg' if statement.
6300
6301 2006-05-05  Wim Taymans  <wim@fluendo.com>
6302
6303         * gst/playback/gstdecodebin.c: (cleanup_decodebin):
6304         Properly remove ghostpads. Fixes #340392
6305
6306 2006-05-04  David Schleef  <ds@schleef.org>
6307
6308         * gst/typefind/gsttypefindfunctions.c:
6309
6310 2006-05-03  Jan Schmidt  <thaytan@mad.scientist.com>
6311
6312         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
6313         (mpeg_ts_probe_headers), (mpeg_ts_type_find):
6314
6315         When typefinding an MP3 in push-based mode, don't penalise the
6316         probability down to 74% when we found 5 valid frames just because we
6317         can't peek the end of the file.
6318
6319         Make the probability for detecting MPEG Transport Streams based on the
6320         number of sequential headers we successfully detected.
6321
6322 2006-05-03  Wim Taymans  <wim@fluendo.com>
6323
6324         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
6325         (vorbis_dec_push), (vorbis_dec_chain):
6326         Still produce an error when we receive an empty packet.
6327
6328 2006-05-03  Wim Taymans  <wim@fluendo.com>
6329
6330         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
6331         (gst_ogg_chain_mark_discont), (gst_ogg_chain_new_stream),
6332         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek):
6333         Mark buffers with DISCONT after seek and after activating new
6334         chains.
6335
6336         * ext/theora/gsttheoradec.h:
6337         * ext/theora/theoradec.c: (gst_theora_dec_reset),
6338         (theora_get_query_types), (theora_dec_sink_event),
6339         (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
6340         (theora_dec_change_state):
6341         Fix frame counter.
6342         Detect and mark DISCONT buffers.
6343
6344         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
6345         (vorbis_dec_sink_event), (vorbis_dec_push), (vorbis_dec_chain),
6346         (vorbis_dec_change_state):
6347         * ext/vorbis/vorbisdec.h:
6348         Use GstSegment.
6349         Detect and mark DISCONT buffers.
6350         Don't crash on 0 sized buffers.
6351
6352 2006-05-03  Wim Taymans  <wim@fluendo.com>
6353
6354         * gst/volume/gstvolume.c: (volume_funcfind), (volume_set_caps),
6355         (volume_transform_ip):
6356         Increase "volume" property to 10.0. Fixes #340369.
6357         Set the process function to NULL when capsnego fails so that
6358         we properly error out.
6359
6360 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
6361
6362         * gst/playback/gstplaybin.c: (add_sink):
6363         * gst/playback/test.c: (main):
6364         * gst/playback/test5.c: (dump_element_stats):
6365         * gst/playback/test6.c: (main):
6366           free caps using gst_caps_unref, don't leak caps-strings
6367
6368 2006-05-01  Tim-Philipp Müller  <tim at centricular dot net>
6369
6370         * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
6371         (plugin_init):
6372           Refine musepack typefinding a bit. Return MAXIMUM
6373           probability when we detect stream version 7 to make
6374           sure the mpeg audio typefinder doesn't trump us.
6375
6376 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
6377
6378         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
6379           Protect against unexpected NULL strf_data buffer.
6380
6381 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
6382
6383         * tests/check/elements/audioconvert.c: (verify_convert),
6384         (GST_START_TEST):
6385           interpret the out[] buffer in the order the bytes are actually
6386           put in, which is LITTLE_ENDIAN, not BYTE_ORDER.
6387           Other tests should use BYTE_ORDER since the array is filled in
6388           with actual values
6389
6390 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
6391
6392         * tests/check/elements/audioconvert.c: (verify_convert),
6393         (GST_START_TEST):
6394           when a test fails, give an indication of which it is
6395
6396 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
6397
6398         * gst-libs/gst/cdda/gstcddabasesrc.c:
6399           compile fix; strtol() needs <stdlib.h>
6400
6401 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
6402
6403         * ext/alsa/gstalsamixerelement.c:
6404         * ext/alsa/gstalsasrc.c:
6405         * ext/cdparanoia/gstcdparanoiasrc.c:
6406         * ext/gnomevfs/gstgnomevfssink.c:
6407         * ext/gnomevfs/gstgnomevfssrc.c:
6408         * ext/ogg/gstoggdemux.c:
6409         * ext/ogg/gstoggmux.c:
6410         * ext/ogg/gstoggparse.c:
6411         * ext/ogg/gstogmparse.c:
6412         * ext/pango/gstclockoverlay.c:
6413         * ext/pango/gsttextoverlay.c:
6414         * ext/pango/gsttextrender.c:
6415         * ext/pango/gsttimeoverlay.c:
6416         * ext/theora/theoradec.c:
6417         * ext/theora/theoraenc.c:
6418         * ext/vorbis/vorbisdec.c:
6419         * ext/vorbis/vorbisenc.c:
6420         * gst-libs/gst/audio/gstaudiofilter.c:
6421         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
6422         * gst/audioconvert/gstaudioconvert.c:
6423         * gst/audiorate/gstaudiorate.c:
6424         * gst/audioresample/gstaudioresample.c:
6425         * gst/audiotestsrc/gstaudiotestsrc.c:
6426         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6427         * gst/playback/gstdecodebin.c:
6428         * gst/playback/gstplaybin.c:
6429         * gst/playback/gststreamselector.c:
6430         * gst/subparse/gstsubparse.c:
6431         * gst/tcp/gstmultifdsink.c:
6432         * gst/tcp/gsttcpclientsink.c:
6433         * gst/tcp/gsttcpclientsrc.c:
6434         * gst/tcp/gsttcpserversink.c:
6435         * gst/tcp/gsttcpserversrc.c:
6436         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
6437         * gst/videorate/gstvideorate.c:
6438         * gst/videoscale/gstvideoscale.c:
6439         * gst/videotestsrc/gstvideotestsrc.c:
6440         * gst/volume/gstvolume.c:
6441         * sys/v4l/gstv4ljpegsrc.c:
6442         * sys/v4l/gstv4lmjpegsink.c:
6443         * sys/v4l/gstv4lmjpegsrc.c:
6444         * sys/v4l/gstv4lsrc.c:
6445         * sys/ximage/ximagesink.c:
6446         * sys/xvimage/xvimagesink.c:
6447         * tests/check/libs/cddabasesrc.c:
6448           make GstElementDetails const
6449
6450 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
6451
6452         * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
6453         (gst_adder_init):
6454           send events from src-pad to all sink-pads fixes #338657
6455
6456 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
6457
6458         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps),
6459         (alsasink_parse_spec):
6460           query width capabilities from alsa, fixes #338919
6461
6462 2006-04-28  Wim Taymans  <wim@fluendo.com>
6463
6464         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
6465         (gst_multi_fd_sink_remove_client_link):
6466         * gst/tcp/gstmultifdsink.h:
6467         Fix race condition in multifdsink that can lead to spurious 
6468         duplicate clients. this patch adds a new signal that is fired when
6469         multifdsink has removed all references to the fd.
6470         Fixes #339574.
6471         Updated documentation.
6472         API: client-fd-removed signal added
6473
6474 2006-04-28  Michael Smith  <msmith@fluendo.com>
6475
6476         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats):
6477           When asking g_value_array_new to prealloc elements, we may as well
6478           ask for the right number of elements.
6479
6480 2006-04-28  Wim Taymans  <wim@fluendo.com>
6481
6482         * gst-libs/gst/audio/gstbaseaudiosink.c:
6483         (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
6484         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
6485         patch to make timestamp checking more tollerant to rounding 
6486         errors given that real discontinuities are to be marked on
6487         buffers. Fixes some asf files and #338778.
6488         Also avoid some crashers when we receive an event in the 
6489         NULL state.
6490
6491 2006-04-28  Michael Smith  <msmith@fluendo.com>
6492
6493         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
6494         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
6495         (gst_gnome_vfs_src_get_property),
6496         (gst_gnome_vfs_src_send_additional_headers_callback),
6497         (gst_gnome_vfs_src_received_headers_callback),
6498         (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_start),
6499         (gst_gnome_vfs_src_stop):
6500         * ext/gnomevfs/gstgnomevfssrc.h:
6501           Remove ICY handling (mostly) from gnomevfssrc, in favour of
6502           proper shared support within icydemux.
6503
6504 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
6505
6506         * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
6507         (gst_video_rate_swap_prev), (gst_video_rate_chain):
6508           fix up docs
6509           fix a leak when no caps negotiated
6510           fix counting of input frames
6511         * tests/check/elements/.cvsignore:
6512         * tests/check/elements/videorate.c: (assert_videorate_stats),
6513         (GST_START_TEST), (videorate_suite):
6514           add tests for these
6515
6516 2006-04-28  Wim Taymans  <wim@fluendo.com>
6517
6518         * gst-libs/gst/audio/gstringbuffer.c:
6519         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
6520         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
6521         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
6522         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
6523         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
6524         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
6525         (gst_ring_buffer_commit), (gst_ring_buffer_read),
6526         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
6527         (gst_ring_buffer_clear), (gst_ring_buffer_may_start):
6528         Check arguments passed to public functions instead of
6529         crashing.
6530
6531 2006-04-28  Wim Taymans  <wim@fluendo.com>
6532
6533         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
6534         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
6535         GstBaseAudioSrc must be live or it does not work.
6536
6537         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audio_src_init):
6538         Don't set live to TRUE as this is the default in the parentclass.
6539
6540 2006-04-28  Wim Taymans  <wim@fluendo.com>
6541
6542         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps),
6543         (gst_video_scale_fixate_caps), (gst_video_scale_src_event):
6544         Videoscale doesn't pass on pixel-aspect ratio. Handle all
6545         fixation cases better. Fixes #338991
6546
6547 2006-04-28  Wim Taymans  <wim@fluendo.com>
6548
6549         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
6550         Handle 0/1 framerate correctly Fixes #331901.
6551
6552 2006-04-28  Wim Taymans  <wim@fluendo.com>
6553
6554         * tests/check/elements/audioconvert.c: (get_float_caps),
6555         (GST_START_TEST), (audioconvert_suite):
6556         Added check for correct clipping when doing float samples
6557         in audioconvert.
6558
6559 2006-04-28  Wim Taymans  <wim@fluendo.com>
6560
6561         * gst/videorate/gstvideorate.c: (gst_video_rate_event),
6562         (gst_video_rate_chain):
6563         Print more debugging info.
6564
6565 2006-04-28  Wim Taymans  <wim@fluendo.com>
6566
6567         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
6568         (resample_set_state_from_caps):
6569         Add support for other formats audioresample can handle such as
6570         32 bits in and float and 64 bits float. Fixes #301759
6571
6572 2006-04-28  Wim Taymans  <wim@fluendo.com>
6573
6574         * gst/audioconvert/audioconvert.c: (float):
6575         correctly clip float samples > 1.0. Fixes #338718
6576
6577 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
6578
6579         Patch by: Young-Ho Cha  <ganadist at chollian net>
6580
6581         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
6582         (gst_text_overlay_render_text):
6583           Don't strip newlines from the text. Also, center lines
6584           within multi-line paragraphs (#339405).
6585
6586 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
6587
6588         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find):
6589           Fix wavpack typefinding to work in more cases (don't peek
6590           for chunks of multiple hundred kBs at once, but process
6591           things step-by-step in smaller units). Fixes #339786.
6592
6593 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
6594
6595         * configure.ac:
6596           back to HEAD
6597
6598 === release 0.10.6 ===
6599
6600 2006-04-28  Thomas Vander Stichele <thomas at apestaart dot org>
6601
6602         * configure.ac:
6603           releasing 0.10.6, "Chao"
6604
6605 2006-04-26  David Schleef  <ds@schleef.org>
6606
6607         * gst/videoscale/gstvideoscale.c: Add call to oil_init().
6608           Fixes #338897.
6609
6610 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
6611
6612         * configure.ac:
6613         * win32/common/config.h:
6614           new prerelease
6615
6616 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
6617
6618         patch by: Wim Taymans
6619
6620         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
6621         (gst_ogg_demux_perform_seek):
6622           make sure correct newsegments are sent, so that the decoder
6623           and the demuxer agree on timestamps.  Fixes playback of a lot
6624           of Ogg files that do not start from 0.  Fixes #339833.
6625
6626 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
6627
6628         Patch by: Edward Hervey  <edward@fluendo.com>
6629
6630         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
6631         * tests/check/Makefile.am:
6632         * tests/check/elements/videorate.c: (assert_videorate_stats),
6633         (setup_videorate), (cleanup_videorate), (GST_START_TEST),
6634         (videorate_suite), (main):
6635           Fix an infinite loop if frames are passed in with wrongly ordered
6636           timestamps.  Fixes #339013.
6637
6638 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6639
6640         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
6641
6642         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
6643           fix typefinding on some ISO files.  Fixes #339212.
6644
6645 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6646
6647         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
6648
6649         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6650           add another H264 fourcc.  Fixes #339047.
6651
6652 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6653
6654         Patch by: Jan Schmidt
6655
6656         * gst/playback/gststreamselector.c:
6657         (gst_stream_selector_bufferalloc):
6658           Restore old StreamSelector behaviour.
6659           Fixes #338419.
6660
6661 2006-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
6662
6663         * configure.ac:
6664         * win32/common/config.h:
6665           prerelease
6666
6667 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
6668
6669         Patch by: Antoine Tremblay  <hexa00 at gmail dot com>
6670
6671         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6672         (gst_base_rtp_depayload_finalize), (gst_base_rtp_depayload_push):
6673           Fix some memory leaks: on finalize, free buffers left in the queue
6674           before destroying the queue; in _push(), unref rtp_buf even if
6675           the process vfunc returned a NULL buffer as output buffer (#337548);
6676           demote some recuring debug messages to LOG level.
6677
6678 2006-04-11  Wim Taymans  <wim@fluendo.com>
6679
6680         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6681         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
6682         (gst_ogg_chain_free), (gst_ogg_demux_sink_event),
6683         (gst_ogg_demux_loop):
6684         More cleanups.
6685         Respect segment stop when emiting EOS or SEGMENT_DONE.
6686         Fixes (#337945).
6687
6688 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
6689
6690         * gst/playback/gststreamselector.c:
6691         (gst_stream_selector_get_property):
6692           Don't leak pad name.
6693
6694 2006-04-10  Michael Smith  <msmith@fluendo.com>
6695
6696         * tests/check/Makefile.am:
6697         * tests/check/gst-plugins-base.supp:
6698           Suppress an old libtheora bug (fixed in more recent versions), so 
6699           that FC4 buildslaves can pass.
6700
6701 2006-04-10  Wim Taymans  <wim@fluendo.com>
6702
6703         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6704         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
6705         (gst_ogg_demux_init), (gst_ogg_demux_finalize),
6706         (gst_ogg_demux_sink_event), (gst_ogg_demux_get_data),
6707         (gst_ogg_demux_loop):
6708         Don't leak events.
6709         Remember what error we got when finding chains, if we
6710         were shutdown, that would not be an error.
6711
6712 2006-04-10  Wim Taymans  <wim@fluendo.com>
6713
6714         * gst-libs/gst/audio/gstbaseaudiosink.c:
6715         (gst_base_audio_sink_event):
6716         Starting the ringbuffer when we did not acquire it can cause
6717         a deadlock, is pointless and causes nasty things for
6718         subclasses. 
6719         Fixes gst-launch audiotestsrc num-buffers=0 ! alsasink.
6720
6721 2006-04-10  Wim Taymans  <wim@fluendo.com>
6722
6723         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6724         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
6725         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
6726         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
6727         (gst_ogg_demux_deactivate_current_chain),
6728         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
6729         (gst_ogg_demux_bisect_forward_serialno),
6730         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain):
6731         Add some more debugging.
6732
6733 2006-04-10  Wim Taymans  <wim@fluendo.com>
6734
6735         * ext/theora/theoradec.c: (theora_dec_src_event),
6736         (theora_handle_data_packet):
6737         Some more debug info.
6738
6739         * tests/examples/seek/seek.c: (start_seek), (main):
6740         Print element messages too.
6741
6742 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
6743
6744         * gst/audioresample/debug.h:
6745           replace debug macros with variable number of parameters
6746           by a simple alias to gstreamer standard debug macros 
6747          (#define RESAMPLE_ERROR GST_ERROR, __VA_ARGS__ is not
6748           supported by MSVC 6.0 and 7.1)
6749         * gst/audioresample/resample.h:
6750           define M_PI and rint for WIN32
6751         * win32/common/libgstaudio.def:
6752         * win32/common/libgstriff.def:
6753         * win32/common/libgsttag.def:
6754         * win32/common/libgstvideo.def:
6755           add new exported functions
6756         * win32/vs6:
6757           update project files
6758
6759 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
6760
6761         * ext/alsa/gstalsamixeroptions.c:
6762         (gst_alsa_mixer_options_class_init):
6763         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init):
6764         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init):
6765         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
6766         * ext/ogg/gstoggparse.c: (gst_ogg_parse_class_init):
6767         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_class_init):
6768         * gst-libs/gst/audio/gstaudiofilter.c:
6769         (gst_audio_filter_class_init):
6770         * gst-libs/gst/audio/gstaudiosink.c:
6771         (gst_audioringbuffer_class_init):
6772         * gst-libs/gst/audio/gstaudiosrc.c:
6773         (gst_audioringbuffer_class_init):
6774         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_class_init):
6775         * gst-libs/gst/interfaces/colorbalancechannel.c:
6776         (gst_color_balance_channel_class_init):
6777         * gst-libs/gst/interfaces/mixeroptions.c:
6778         (gst_mixer_options_class_init):
6779         * gst-libs/gst/interfaces/mixertrack.c:
6780         (gst_mixer_track_class_init):
6781         * gst-libs/gst/interfaces/tunerchannel.c:
6782         (gst_tuner_channel_class_init):
6783         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_class_init):
6784         * gst-libs/gst/netbuffer/gstnetbuffer.c:
6785         (gst_netbuffer_class_init):
6786         * gst-libs/gst/rtp/gstbasertppayload.c:
6787         (gst_basertppayload_class_init):
6788         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
6789         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
6790         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
6791         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
6792         * gst/playback/gststreamselector.c:
6793         (gst_stream_selector_class_init):
6794         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
6795         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
6796         * sys/v4l/gstv4lcolorbalance.c:
6797         (gst_v4l_color_balance_channel_class_init):
6798         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_class_init):
6799         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
6800         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
6801         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_channel_class_init),
6802         (gst_v4l_tuner_norm_class_init):
6803         * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
6804         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
6805         * tests/old/testsuite/alsa/sinesrc.c: (sinesrc_class_init):
6806         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
6807
6808 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
6809
6810         * ext/pango/gsttextrender.h:
6811         * gst-libs/gst/audio/gstaudiosink.h:
6812         * gst-libs/gst/audio/gstaudiosrc.h:
6813         * gst-libs/gst/audio/gstbaseaudiosink.h:
6814         * gst-libs/gst/audio/gstbaseaudiosrc.h:
6815         * gst-libs/gst/audio/gstringbuffer.h:
6816         * gst-libs/gst/rtp/gstbasertpdepayload.h:
6817         * gst-libs/gst/rtp/gstbasertppayload.h:
6818         * gst-libs/gst/video/gstvideofilter.h:
6819         * gst-libs/gst/video/gstvideosink.h:
6820         * gst/playback/gstplaybasebin.h:
6821         * gst/tcp/gstmultifdsink.h:
6822         * sys/v4l/gstv4lelement.h:
6823         Fix broken GObject macros
6824
6825 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
6826
6827         * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec):
6828         More debug to trace why my USB headset is not working with gst
6829
6830 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
6831
6832         * gst/playback/gstplaybasebin.c: (group_destroy):
6833         Clean up our group elements properly in the case where it never 
6834         got committed - it still got added unconditionally to the bin.
6835
6836 2006-04-07  Wim Taymans  <wim@fluendo.com>
6837
6838         * ext/theora/theoradec.c: (theora_dec_sink_event),
6839         (theora_handle_data_packet), (theora_dec_chain):
6840         Unref unhandled events.
6841         Protect against empty buffers.
6842         Perform QoS on running time.
6843
6844 2006-04-07  Michael Smith  <msmith@fluendo.com>
6845
6846         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_set_header_on_caps),
6847         (gst_vorbis_enc_chain):
6848           Remove leaks from vorbisenc.
6849           Mostly minor changes, the only significant one is that now the
6850           buffers we set as 'streamheader' on the caps are copies of the
6851           original buffers, to avoid circular refcounting problems.
6852
6853 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
6854
6855         * gst/playback/gstplaybasebin.c: (mute_stream), (setup_substreams):
6856           Don't remove our mute-probe if someone else already did so.
6857           Don't set a 2nd one if there is already one pending on the pad.
6858
6859         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
6860         (do_playbin_seek):
6861           When a seek fails, ensure that playbin is still set back to playing.
6862           
6863         * gst/typefind/gsttypefindfunctions.c: (mpeg_ts_probe_headers),
6864         (mpeg_ts_type_find), (plugin_init):
6865           Add a typefind function for mpeg-ts streams. (Closes: #336617)
6866
6867 2006-04-06  Andy Wingo  <wingo@pobox.com>
6868
6869         * gst/videorate/gstvideorate.c (gst_video_rate_reset) 
6870         (gst_video_rate_init): Caps-related parameters should not be reset
6871         by a flush -- move their inits to the instance init function.
6872         (gst_video_rate_flush_prev): Don't complain if gst_pad_push
6873         is not OK, just return the result.
6874
6875         * gst/audiotestsrc/gstaudiotestsrc.c
6876         (gst_audio_test_src_class_init)
6877         (gst_audio_test_src_get_times): Re-enable is-live=true, as was
6878         broken by Stefan's commit on 24 March.
6879
6880         * ext/ogg/gstoggmux.c (gst_ogg_mux_push_buffer): Set caps on
6881         buffers being pushed out. Fixes oggmux ! multifdsink.
6882
6883 2006-04-05  Tim-Philipp Müller  <tim at centricular dot net>
6884
6885         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
6886         (gst_vorbis_dec_init), (vorbis_dec_finalize):
6887         * ext/vorbis/vorbisdec.h:
6888         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_add_interfaces),
6889         (gst_vorbis_enc_base_init), (gst_vorbis_enc_class_init),
6890         (gst_vorbis_enc_sink_setcaps), (gst_vorbis_enc_convert_src),
6891         (gst_vorbis_enc_convert_sink), (gst_vorbis_enc_get_query_types),
6892         (gst_vorbis_enc_src_query), (gst_vorbis_enc_sink_query),
6893         (gst_vorbis_enc_init), (gst_vorbis_enc_get_tag_value),
6894         (gst_vorbis_enc_metadata_set1), (gst_vorbis_enc_set_metadata),
6895         (gst_vorbis_enc_setup), (gst_vorbis_enc_clear),
6896         (gst_vorbis_enc_buffer_from_packet),
6897         (gst_vorbis_enc_buffer_from_header_packet),
6898         (gst_vorbis_enc_push_buffer), (gst_vorbis_enc_push_packet),
6899         (gst_vorbis_enc_set_header_on_caps), (gst_vorbis_enc_sink_event),
6900         (gst_vorbis_enc_chain), (gst_vorbis_enc_output_buffers),
6901         (gst_vorbis_enc_get_property), (gst_vorbis_enc_set_property),
6902         (gst_vorbis_enc_change_state):
6903         * ext/vorbis/vorbisenc.h:
6904           Remove left-over 0.8 cruft; use GST_DEBUG_FUNCPTR; make
6905           vorbisenc adhere to the official nomenclature; use boilerplate
6906           macro.
6907
6908 2006-04-04  Andy Wingo  <wingo@pobox.com>
6909
6910         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
6911         Whoops, fix bug introduced. Bad hacker!
6912         
6913         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
6914         Properly handle the case where you get EOS before any buffers are
6915         received. Use gst_buffer_make_metadata_writable where appropriate.
6916
6917         * ext/theora/theoradec.c (theora_handle_data_packet): This value
6918         is often negative -- make it signed so as not to wrap around.
6919         Fixes segfaults introduced on 9 March.
6920
6921 2006-04-03  Wim Taymans  <wim@fluendo.com>
6922
6923         * ext/theora/gsttheoradec.h:
6924         * ext/theora/theoradec.c: (theora_dec_src_event):
6925         Don't try to store a gdouble in a gboolean.
6926         Small cleanups.
6927
6928 2006-04-03  Michael Smith  <msmith@fluendo.com>
6929
6930         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads):
6931           Oggmux sucks.
6932           Make it suck slightly less by writing out the final page.
6933           Still can't encode a vorbis-in-ogg file correctly, though.
6934
6935 2006-04-03  Andy Wingo  <wingo@pobox.com>
6936
6937         * ext/theora/theoraparse.c (theora_parse_drain_queue): Um, remove
6938         a g_print.
6939
6940         * ext/theora/theora.c (plugin_init): Register theoraparse.
6941
6942         * ext/theora/gsttheoraparse.h: 
6943         * ext/theora/theoraparse.c: New files implementing a theora
6944         parser. Now we can properly remux ogg/theora+vorbis, yay.
6945
6946         * ext/vorbis/vorbisparse.c: Add some docs and a copyright.
6947
6948 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
6949
6950         * gst/audiotestsrc/gstaudiotestsrc.c:
6951           Fixed the sample pipeline (see #323798)
6952
6953 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
6954
6955         * configure.ac:
6956         * win32/common/config.h:
6957         * win32/common/config.h.in:
6958           use AS_VERSION and AS_NANO
6959           more cleanups
6960
6961 2006-03-31  Andy Wingo  <wingo@pobox.com>
6962
6963         * ext/vorbis/vorbisparse.c (vorbis_parse_sink_event): Fix
6964         uninitialized variable return that would happen.
6965         
6966         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_queue): Fix
6967         uninitialized variable return that would never happen.
6968
6969         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init) 
6970         (vorbis_parse_sink_event): Add an event function to flush our
6971         state on a seek, and to drain buffers on a premature EOS.
6972         (vorbis_parse_push_headers, vorbis_parse_clear_queue) 
6973         (vorbis_parse_push_buffer, vorbis_parse_drain_queue_prematurely) 
6974         (vorbis_parse_chain, vorbis_parse_queue_buffer) 
6975         (vorbis_parse_drain_queue): Queue up buffers until we can set
6976         their timestamps and granulepos values.
6977
6978         * ext/vorbis/vorbisparse.h: Include the vorbis decoder headers,
6979         and keep track of data needed for deriving granulepos and
6980         timestamps for buffers.
6981
6982 2006-03-29  Wim Taymans  <wim@fluendo.com>
6983
6984         Patch by: j^ <j at bootlab dot org>
6985
6986         * ext/alsa/gstalsamixerelement.c:
6987         (gst_alsa_mixer_element_class_init):
6988         * ext/alsa/gstalsasink.c:
6989         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
6990         * ext/ogg/gstoggdemux.c:
6991         * ext/ogg/gstoggmux.c:
6992         * ext/ogg/gstoggparse.c:
6993         * ext/pango/gstclockoverlay.c:
6994         * ext/pango/gsttextoverlay.c:
6995         * ext/pango/gsttextrender.c:
6996         * ext/pango/gsttimeoverlay.c:
6997         * ext/theora/theoradec.c:
6998         * ext/theora/theoraenc.c:
6999         * ext/vorbis/vorbisdec.c:
7000         * ext/vorbis/vorbisenc.c:
7001         * gst/audioconvert/gstaudioconvert.c:
7002         * gst/subparse/gstsubparse.c:
7003         * gst/tcp/gstmultifdsink.c:
7004         * gst/tcp/gsttcpclientsink.c:
7005         * gst/tcp/gsttcpclientsrc.c:
7006         * gst/tcp/gsttcpserversink.c:
7007         * gst/tcp/gsttcpserversrc.c:
7008           better/unified long descriptions
7009           Fixes #336477
7010
7011 2006-03-29  Wim Taymans  <wim@fluendo.com>
7012
7013         * tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
7014         (stop_seek):
7015         Don't let double and triple clicks mess up our state.
7016
7017 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
7018
7019         * gst/playback/gstplaybin.c: (gen_video_element),
7020         (gen_text_element), (gen_audio_element), (gen_vis_element):
7021           Error out gracefully when we can't create any of the usual
7022           conversion elements for some reason. Also, don't try to
7023           create an audioscale (sic) element that's not used anyway.
7024
7025 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
7026
7027         * gst/playback/gstplaybasebin.c: (setup_source):
7028           Don't post RESOURCE_NOT_FOUND error when we can't find a source
7029           element for a particular protocol, that's confusing for users.
7030           Instead, post a RESOURCE_FAILED error, so that our own error
7031           message is actually shown in totem etc. (#336303).
7032
7033 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
7034
7035         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7036
7037         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_finalize),
7038         (gst_gnome_vfs_src_get_icy_metadata):
7039           Fix some minor memory leaks (#336194).
7040
7041 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
7042
7043         * ext/gnomevfs/gstgnomevfs.c:
7044         (gst_gnome_vfs_location_to_uri_string):
7045         * ext/gnomevfs/gstgnomevfs.h:
7046         * ext/gnomevfs/gstgnomevfssink.c:
7047         (gst_gnome_vfs_sink_set_property):
7048         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_set_property):
7049           Make gnomevfssink accept filenames as well as URIs for the
7050           "location" property, just like gnomevfssrc does (and
7051           filesrc/filesink do) (#336190).
7052
7053 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
7054
7055         * tests/check/generic/clock-selection.c: (GST_START_TEST):
7056           set to NULL before unreffing, fixes a valgrind leak.
7057           Why was this not triggering the error that an object needs to
7058           be NULL before unreffing ?
7059         * win32/common/config.h:
7060           update
7061
7062 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
7063
7064         * gst/subparse/gstsubparse.c: (convert_encoding),
7065         (gst_sub_parse_change_state):
7066         * gst/subparse/gstsubparse.h:
7067           Text subtitle files may or may not be UTF-8. If it's not, we
7068           don't really want to see '?' characters in place of non-ASCII
7069           characters like accented characters. So let's assume the input
7070           is UTF-8 until we come across text that is clearly not. If it's
7071           not UTF-8, we don't really know what it is, so try the following:
7072           (a) see whether the GST_SUBTITLE_ENCODING environment variable
7073           is set; if not, check (b) if the current locale encoding is
7074           non-UTF-8 and use that if it is, or (c) assume ISO-8859-15 if
7075           the current locale encoding is UTF-8 and the environment variable
7076           was not set to any particular encoding. Not perfect, but better
7077           than nothing (and better than before, I think) (fixes #172848).
7078
7079 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
7080
7081         * configure.ac:
7082           update core requirement to 0.10.4.1 because of async_playback
7083           vmethod on GstBaseSink
7084
7085 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
7086
7087         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
7088         * gst/adder/gstadder.c: (gst_adder_init):
7089         use DEBUG_FUNCPTR for collectpads
7090
7091 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
7092
7093         * docs/plugins/Makefile.am:
7094         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7095         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7096         * ext/cdparanoia/gstcdparanoiasrc.c:
7097         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_base_init),
7098         (gst_gnome_vfs_sink_class_init):
7099         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_base_init):
7100         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_base_init):
7101         * ext/ogg/gstoggmux.c:
7102         * ext/ogg/gstoggparse.c: (gst_ogg_parse_base_init):
7103         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
7104         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init):
7105         * ext/pango/gsttextoverlay.c:
7106         * ext/pango/gsttextrender.c:
7107         * ext/theora/theoradec.c:
7108         * ext/theora/theoraenc.c:
7109         * ext/vorbis/vorbisdec.c:
7110         * ext/vorbis/vorbisenc.c:
7111         * gst-libs/gst/audio/gstaudiofilter.c:
7112         (gst_audio_filter_base_init):
7113         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
7114         (gst_audio_filter_template_base_init):
7115         * gst/adder/gstadder.c: (gst_adder_get_type):
7116         * gst/adder/gstadder.h:
7117         * gst/audioconvert/gstaudioconvert.c:
7118         * gst/audiotestsrc/gstaudiotestsrc.c:
7119         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
7120         (gst_audio_test_src_create):
7121         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7122         * gst/playback/gstdecodebin.c:
7123         * gst/playback/gstplaybin.c:
7124         * gst/playback/gststreamselector.c:
7125         (gst_stream_selector_base_init):
7126         * gst/subparse/gstsubparse.c: (gst_sub_parse_base_init):
7127         * gst/volume/gstvolume.c:
7128         * sys/v4l/gstv4lmjpegsink.c:
7129         * sys/v4l/gstv4lmjpegsrc.c:
7130         * tests/check/libs/cddabasesrc.c:
7131         * tests/old/examples/gob/gst-identity2.gob:
7132           Add docs for adder, use GST_ELEMENT_DETAILS macro,
7133           define GstElementDetails at the top
7134
7135 2006-03-23  Sebastien Moutte  <sebastien@moutte.net>
7136
7137         * win32/common/libgstinterfaces.def:
7138         Add a lot of export functions for gst-python
7139         * win32/vs6/libgstinterfaces.dsp:
7140         Add a missing include folder in the project configuration
7141         
7142 2006-03-23  Wim Taymans  <wim@fluendo.com>
7143
7144         * gst-libs/gst/audio/gstbaseaudiosrc.c:
7145         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
7146         (gst_base_audio_src_change_state):
7147         Fix audio sources, forgot to make the ringbuffer
7148         startable...
7149
7150 2006-03-23  Wim Taymans  <wim@fluendo.com>
7151
7152         * gst-libs/gst/audio/gstbaseaudiosrc.c:
7153         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
7154         (gst_base_audio_src_change_state):
7155         unparent instead of unref the ringbuffer.
7156
7157 2006-03-23  Wim Taymans  <wim@fluendo.com>
7158
7159         * gst-libs/gst/audio/gstbaseaudiosink.c:
7160         (gst_base_audio_sink_class_init), (gst_base_audio_sink_async_play),
7161         (gst_base_audio_sink_do_play), (gst_base_audio_sink_change_state):
7162         Implement new async_play vmethod to start slaving and allow
7163         playback start in case of async PLAY state changes. 
7164
7165         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7166         Enable QoS with new method in base class.
7167
7168 2006-03-23  Wim Taymans  <wim@fluendo.com>
7169
7170         Patch by: Julien MOUTTE <julien at moutte dot net>
7171
7172         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_query),
7173         (gst_video_test_src_do_seek), (gst_video_test_src_create):
7174         Partially handle 0 framerate, only EOS after the first frame
7175         is missing.
7176
7177 2006-03-23  Wim Taymans  <wim@fluendo.com>
7178
7179         Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
7180
7181         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
7182         (gst_riff_create_video_template_caps):
7183         * gst/ffmpegcolorspace/avcodec.h:
7184         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
7185         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
7186         (gst_ffmpegcsp_avpicture_fill):
7187         * gst/ffmpegcolorspace/imgconvert.c:
7188         Patch for support of YVU9 AVI files (#334822)
7189
7190 2006-03-22  Edward Hervey  <edward@fluendo.com>
7191
7192         * docs/design/design-decodebin.txt:
7193         Added design document for new decodebin
7194         (Target Caps): text/x-pango-markup is also a default target caps.
7195
7196 2006-03-22  Wim Taymans  <wim@fluendo.com>
7197
7198         * gst-libs/gst/audio/gstbaseaudiosink.c:
7199         (gst_base_audio_sink_dispose):
7200         Since we _parent the ringbuffer, we also need to
7201         _unparent instead of a plain _unref.
7202
7203 2006-03-22  Wim Taymans  <wim@fluendo.com>
7204
7205         * tests/examples/seek/seek.c: (end_scrub), (do_seek), (seek_cb),
7206         (stop_seek), (scrub_toggle_cb), (main):
7207         Add scrub checkbox.
7208
7209 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
7210
7211         * ext/ogg/gstoggparse.c: (gst_ogg_parse_find_stream),
7212         (gst_ogg_parse_chain):
7213           Fix very inefficient usage of linked lists (#335365).
7214
7215 2006-03-21  Edward Hervey  <edward@fluendo.com>
7216
7217         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
7218         * gst/playback/gstplaybin.c: (handoff):
7219         * gst/playback/gststreamselector.c:
7220         (gst_stream_selector_set_property):
7221         gcc 4.1 unreferenced pointer fixes.
7222         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
7223         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
7224         gst_buffer_ref() now takes a GstBuffer*.
7225
7226 2006-03-20  Julien MOUTTE  <julien@moutte.net>
7227
7228         * sys/xvimage/xvimagesink.c:
7229         (gst_xvimagesink_get_format_from_caps): Fix a memleak reported
7230         by Jan Schmidt.
7231
7232 2006-03-19  Tim-Philipp Müller  <tim at centricular dot net>
7233
7234         * gst/typefind/gsttypefindfunctions.c: (id3v2_type_find),
7235         (id3v1_type_find), (apetag_type_find), (plugin_init):
7236           Can't do tag preferences via probability, as tags would then
7237           lose against types that are recognised with MAXIMUM probability
7238           (like .wav); so let all tag typefinders return MAXIMUM themselves
7239           and order them via the rank. Split ID3v1 and ID3v2 typefinders so
7240           that we can prefer APE to ID3v1 (fixes #335028).
7241           
7242 2006-03-17  Wim Taymans  <wim@fluendo.com>
7243
7244         * gst-libs/gst/audio/gstbaseaudiosink.c:
7245         (gst_base_audio_sink_change_state):
7246         * gst-libs/gst/audio/gstringbuffer.c: (wait_segment),
7247         (gst_ring_buffer_may_start):
7248         * gst-libs/gst/audio/gstringbuffer.h:
7249         Only start playback if we are playing.
7250         should fix #330748.
7251
7252 2006-03-17  Jan Schmidt  <thaytan@mad.scientist.com>
7253
7254         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
7255         * win32/common/config.h:
7256           Revert accidental commits to these files.
7257
7258 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
7259
7260         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
7261
7262         * tests/Makefile.am:
7263           Don't try to build tests in tests/icles if we
7264           don't have X (#323852)
7265
7266 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
7267
7268         * gst-libs/gst/tag/gstid3tag.c:
7269           Add TXXX frame identifiers for replaygain stuff as used
7270           by some taggers (see #323721).
7271
7272 2006-03-16  Jan Schmidt  <thaytan@mad.scientist.com>
7273
7274         * gst/playback/gststreamselector.c:
7275         (gst_stream_selector_set_property),
7276         (gst_stream_selector_bufferalloc):
7277           Preserve the existing buggy streamselector behaviour by performing
7278           a fallback buffer allocation when downstream isn't linked yet.
7279           This should really be fixed in playbin by blocking pads until it's
7280           linked them.
7281           Also, use gst_pad_alloc_buffer instead of
7282           gst_pad_alloc_buffer_and_set.
7283
7284 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
7285
7286         * gst-libs/gst/tag/gstid3tag.c:
7287           Don't crash on unknown ID3v2 TXXX frames.
7288           
7289 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
7290
7291         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise):
7292           Chain up to the parent finalize method.
7293           Add 32-bit sample size to the template caps.
7294
7295         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
7296         (gst_riff_create_video_template_caps):
7297           Add the fourcc that the VMWare codec uses.
7298           
7299         * gst/playback/gststreamselector.c:
7300         (gst_stream_selector_set_property),
7301         (gst_stream_selector_bufferalloc),
7302         (gst_stream_selector_request_new_pad):
7303           For the active pad, forward buffer-alloc requests, otherwise
7304           return GST_FLOW_NOT_LINKED. This also prevents xvimagesink
7305           having to memcpy every frame when used by playbin.
7306
7307         * gst/tcp/gstmultifdsink.c:
7308         (gst_multi_fd_sink_handle_client_write):
7309           Get negotiated caps from the sink pad, rather than the sink
7310           pad's peer.
7311
7312 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
7313
7314         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7315         
7316         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_pop_callbacks):
7317           Don't forget to set src->callbacks_pushed to FALSE again when
7318           popping them, otherwise re-activation in a different mode won't
7319           work (#334620).
7320
7321 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
7322
7323         Patch by: Sebastien Moutte  <sebastien moutte net>
7324
7325         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ff_vid_caps_new),
7326         (gst_ff_aud_caps_new), (gst_ffmpeg_pixfmt_to_caps),
7327         (gst_ffmpeg_smpfmt_to_caps):
7328           Replace __VA_ARGS__ caps creation macros with varargs functions.
7329           Makes things compile on MSVC (#320765), looks nicer, and we can
7330           tell the compiler to check for the NULL terminator.
7331
7332 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
7333
7334         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
7335
7336         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7337           Make sure the buffer we copy into is really always big
7338           enough, this time for real (#333488).
7339           
7340 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
7341
7342         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7343           Add support for 24bpp DIB (#305279).
7344
7345 2006-03-14  Wim Taymans  <wim@fluendo.com>
7346
7347         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_init):
7348         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7349         * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcsp_init):
7350         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
7351         (gst_video_scale_init), (gst_video_scale_src_event):
7352         Re-enable QoS after the release.
7353         Rework videoscale to use the base class src_event handler.
7354
7355 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
7356
7357         * configure.ac:
7358           back to CVS.
7359
7360 === release 0.10.5 ===
7361
7362 2006-03-13  Thomas Vander Stichele <thomas at apestaart dot org>
7363
7364         * configure.ac:
7365           releasing 0.10.5, "Net"
7366
7367 2006-03-13  Tim-Philipp Müller  <tim at centricular dot net>
7368
7369         * docs/plugins/Makefile.am:
7370           Part of previous cdparanoiasrc docs fixes, forgot to commit.
7371           
7372 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
7373
7374         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7375         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7376         * docs/plugins/gst-plugins-base-plugins.hierarchy:
7377           Add cdparanoiasrc to docs.
7378
7379         * gst-libs/gst/cdda/gstcddabasesrc.c:
7380           More GstCddaBaseSrc docs.
7381
7382 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
7383
7384         * docs/libs/gst-plugins-base-libs-sections.txt:
7385         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_user_tag):
7386         * gst-libs/gst/tag/tag.h:
7387           API: libgsttag: new method gst_tag_from_id3_user_tag().
7388
7389 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
7390
7391         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7392           NULL-terminate array of mpeg4 video file extensions.
7393           Fixes crash on PPC (#334226).
7394
7395 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
7396
7397         * ext/gnomevfs/gstgnomevfssrc.c:
7398         (gst_gnome_vfs_src_check_get_range):
7399           gnome_vfs_uri_is_local() alone is not a good indicator
7400           whether we can operate in pull-mode with a specific URI,
7401           as it returns FALSE for file:// URIs that point to an
7402           NFS-mounted path. Be more conservative here: whitelist
7403           local files, blacklist http URIs and use the old
7404           mechanism for anything else (fixes #334216).
7405
7406 2006-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
7407
7408         * configure.ac:
7409           back to trunk
7410
7411 === release 0.10.4 ===
7412
7413 2006-03-10  Thomas Vander Stichele <thomas at apestaart dot org>
7414
7415         * configure.ac:
7416           releasing 0.10.4, "Power"
7417
7418 2006-03-10  Jan Schmidt  <thaytan@mad.scientist.com>
7419
7420         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7421         Disable max-lateness by setting it to -1 for now, so that 
7422         we can bed QoS stuff in thoroughly between now and the next
7423         release.
7424
7425 2006-03-10  Tim-Philipp Müller  <tim at centricular dot net>
7426
7427         Patch by: Fabrizio Gennari
7428
7429         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7430           Make sure we don't read beyond the palette buffer in case of
7431           broken or manipulated files (#333488)
7432
7433 2006-03-10  Edward Hervey  <edward@fluendo.com>
7434
7435         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
7436         Fix for variable not initialized.
7437
7438 2006-03-09  Wim Taymans  <wim@fluendo.com>
7439
7440         * ext/libvisual/visual.c: (gst_visual_get_type),
7441         (gst_visual_src_setcaps), (gst_vis_src_negotiate),
7442         (gst_visual_chain):
7443         Small cleanups.
7444
7445         * ext/theora/gsttheoradec.h:
7446         * ext/theora/theoradec.c: (gst_theora_dec_init),
7447         (gst_theora_dec_reset), (_theora_granule_time),
7448         (theora_dec_src_convert), (theora_dec_sink_convert),
7449         (theora_dec_src_query), (theora_dec_src_event),
7450         (theora_dec_sink_event), (theora_handle_comment_packet),
7451         (theora_handle_header_packet), (theora_dec_push),
7452         (theora_handle_data_packet), (theora_dec_chain),
7453         (theora_dec_change_state):
7454         Add simple QoS.
7455
7456 2006-03-09  Wim Taymans  <wim@fluendo.com>
7457
7458         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
7459         (audiocast_register_listener), (gst_gnome_vfs_src_start):
7460         Some cleanups.
7461
7462 2006-03-09  Wim Taymans  <wim@fluendo.com>
7463
7464         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
7465         Don't try to activate NULL chains.
7466
7467 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
7468
7469         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
7470           Fix invalid memory access to region before peek'd data (#332964).
7471
7472 2006-03-09  Wim Taymans  <wim@fluendo.com>
7473
7474         Patch by: Christophe Fergeau
7475
7476         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
7477         * ext/pango/gsttextrender.c: (gst_text_render_init):
7478         * gst/adder/gstadder.c: (gst_adder_init):
7479         Don't leak padtemplates, closes #333510.
7480
7481 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
7482
7483         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
7484           Fix invalid memory access: make sure string passed to
7485           regexec() is NUL-termianted.
7486
7487 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
7488
7489         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
7490         (mp3_type_find):
7491           Refactor mpeg/audio typefinding to make it more maintainable
7492           and easier to fine-tune. Make probing into middle of the file
7493           work properly (fixes #333900, also see #152688).
7494
7495 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
7496
7497         * gst/typefind/gsttypefindfunctions.c:
7498         (utf8_type_find_have_valid_utf8_at_offset):
7499           Remove part from previous commit that was bogus:
7500           g_utf8_validate() does in fact not accept embedded
7501           zeroes, so we don't need to check for those (thanks
7502           to Mike for the hint).
7503
7504 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
7505
7506         * gst/typefind/gsttypefindfunctions.c:
7507         (utf8_type_find_count_embedded_zeroes),
7508         (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
7509           Make plain/text typefinder more conservative: firstly, check
7510           for embedded zeroes, which are perfectly valid UTF-8 characters,
7511           but also a fairly good sign that something is not a plain text
7512           file; secondly, probe into the middle of the file if possible.
7513           If we can't probe into the middle, limit the probability value
7514           to be returned to TYPE_FIND_POSSIBLE (see #333900).
7515
7516 2006-03-08  Michael Smith  <msmith@fluendo.com>
7517
7518         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7519           Make typefind function name for mpeg4 video unique.
7520
7521 2006-03-08  Wim Taymans  <wim@fluendo.com>
7522
7523         * ext/libvisual/visual.c: (gst_visual_init),
7524         (gst_visual_clear_actors), (gst_visual_dispose),
7525         (gst_visual_reset), (gst_visual_src_setcaps),
7526         (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
7527         (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
7528         (gst_visual_chain), (gst_visual_change_state):
7529         Cleanups, post nice errors.
7530         Handle sink and src events.
7531         Implement simple QoS.
7532
7533         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7534         Use new basesink methods to configure max-lateness.
7535         Small doc update.
7536
7537         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7538         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
7539         Debug statement cleanups.
7540
7541         * gst/volume/gstvolume.c: (gst_volume_class_init):
7542         Simple cleanup.
7543
7544 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
7545
7546         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
7547         (gst_text_overlay_init), (gst_text_overlay_set_property),
7548         (gst_text_overlay_get_property):
7549           Revert API/ABI break from March 1. Keep 'halign' and 'valign'
7550           as string type properties, but mark them deprecated. Add
7551           'halignment' and 'valignment' properties that use enums
7552           instead of strings.
7553
7554 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
7555
7556         Patch by: Fabrizio Gennari
7557
7558         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7559           Allow palettes with less than 256 colours in AVI files
7560           (#333488)
7561
7562 2006-03-07  Julien MOUTTE  <julien@moutte.net>
7563
7564         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
7565         (gst_text_overlay_video_event): Fix wrong EOS handling on text
7566         pad. We were releasing the queued text buffer when we should keep
7567         it until video pad gets EOS or discard the text buffer because it's
7568         too old. That was eating the last subtitle buffer. Add some more
7569         debug.
7570
7571 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
7572
7573         * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
7574         (gst_text_overlay_video_chain):
7575           Fix invalid memory access (we can't access a buffer after it's been
7576           pushed downstream without taking a reference); fix memory leak (if
7577           there's no text to render, bail out before allocating stuff).
7578
7579 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
7580
7581         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
7582         (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
7583         * ext/pango/gsttextoverlay.h:
7584           If input is plain text, escape it before passing it to
7585           pango_layout_set_markup().
7586
7587 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
7588
7589         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
7590           Don't ignore flow return from gst_pad_push().
7591
7592 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
7593
7594         Patch by: Fabrizio Gennari
7595
7596         * ext/libvisual/visual.c: (gst_visual_getcaps),
7597         (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
7598         * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
7599         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
7600         (gst_vorbisenc_convert_sink):
7601         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
7602         (gst_audio_duration_from_pad_buffer):
7603         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
7604         (gst_audio_filter_chain):
7605         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7606         (gst_base_rtp_depayload_setcaps):
7607         * gst-libs/gst/video/video.c: (gst_video_frame_rate),
7608         (gst_video_get_size):
7609         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
7610           Don't leak references returned by gst_pad_get_parent()
7611           (#333663)
7612
7613 2006-03-06  Stefan Kost  <ensonic@users.sf.net>
7614
7615         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
7616           change location param details
7617         * gst/volume/gstvolume.c: (plugin_init):
7618           correct plugin description
7619
7620 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
7621
7622         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
7623         (gst_gnome_vfs_src_check_get_range):
7624           Override GstBaseSrc::check_get_range() in order to avoid opening
7625           the resource just to check whether we can operate in pull-mode or
7626           not - we can predict that pretty well from the URI alone. Should
7627           fix problems with last.fm (#331690). (Requires latest core CVS).
7628
7629 2006-03-06  Wim Taymans  <wim@fluendo.com>
7630
7631         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
7632         (gst_video_sink_class_init):
7633         Throw away frames that are later than 20 ms.
7634
7635 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
7636
7637         Patch by: Fabrizio Gennari
7638
7639         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
7640           Set depth on WMA caps (#333545)
7641
7642 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
7643
7644         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
7645         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
7646           put Theora BOS pages before others.  This hardcodes
7647           the Ogg/Theora I profile, but hey.
7648
7649 2006-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
7650
7651         * ext/ogg/README:
7652           updated with some examples
7653         * ext/theora/theoraenc.c: (granulepos_to_timestamp),
7654         (granulepos_add), (theora_buffer_from_packet):
7655         * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
7656         (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
7657         (gst_vorbisenc_chain):
7658           implement strategy from ext/ogg/README
7659         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
7660         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
7661         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
7662         (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
7663           Fix muxer so that oggz-validate is happy with all streams;
7664           except for no eos mark, and the BOS page ordering
7665         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
7666         (check_buffer_granulepos):
7667         * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
7668           update tests to check for OFFSET being set as requested
7669           fixed type of granulepos, it's not a ClockTime
7670
7671 2006-03-05  Julien MOUTTE  <julien@moutte.net>
7672
7673         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
7674         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
7675         Check that the xvimage we are creating has a correct size
7676         before returning it. (#314897)
7677
7678 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
7679
7680         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7681           Give id3 and ape tag typefinders a rank slightly higher
7682           than PRIMARY to ensure they're always run before any of
7683           the other typefinders (in particular wav and mp3) (#324186).
7684
7685 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
7686
7687         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7688           Add support for '3IVD' fourcc (#333403).
7689
7690 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
7691
7692         * configure.ac:
7693           Bump requirements to GStreamer CVS for the new error enum.
7694
7695         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
7696           Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
7697           space left on the device (fixes #333352).
7698
7699 2006-03-04  Sebastien Moutte  <sebastien@moutte.net>
7700
7701         * win32/vs6:
7702           add a project file for libgstvolume
7703           update the workspace
7704
7705 2006-03-03  Thomas Vander Stichele  <thomas at apestaart dot org>
7706
7707         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
7708         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
7709         (GST_START_TEST):
7710           Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
7711           Set IN_CAPS on header buffers
7712
7713 2006-03-02  Wim Taymans  <wim@fluendo.com>
7714
7715         * docs/plugins/Makefile.am:
7716         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7717         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7718         Add audioresample to docs.
7719
7720         * gst/audioconvert/gstaudioconvert.c:
7721         Add revision date.
7722
7723         * gst/audioresample/gstaudioresample.c:
7724         (gst_audioresample_base_init), (gst_audioresample_class_init),
7725         (gst_audioresample_init), (gst_audioresample_dispose),
7726         (audioresample_get_unit_size), (audioresample_transform_caps),
7727         (resample_set_state_from_caps), (audioresample_transform_size),
7728         (audioresample_set_caps), (audioresample_event),
7729         (audioresample_do_output), (audioresample_transform),
7730         (audioresample_pushthrough), (gst_audioresample_set_property),
7731         (gst_audioresample_get_property), (plugin_init):
7732         * gst/audioresample/gstaudioresample.h:
7733         Added docs.
7734         Small code cleanups.
7735
7736 2006-03-02  Wim Taymans  <wim@fluendo.com>
7737
7738         * docs/plugins/Makefile.am:
7739         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7740         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7741         Added videoscale to docs.
7742
7743         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
7744         (gst_video_rate_swap_prev), (gst_video_rate_event),
7745         (gst_video_rate_chain):
7746         Fix typo in docs.
7747
7748         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
7749         (gst_video_scale_init), (gst_video_scale_prepare_size),
7750         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
7751         (gst_video_scale_fixate_caps), (gst_video_scale_transform):
7752         * gst/videoscale/gstvideoscale.h:
7753         Added docs, examples.
7754         Some code cleanups.
7755         Post errors instead of g_warning.
7756
7757 2006-03-02  Wim Taymans  <wim@fluendo.com>
7758
7759         * docs/libs/gst-plugins-base-libs-docs.sgml:
7760         * docs/libs/gst-plugins-base-libs-sections.txt:
7761         * docs/libs/gst-plugins-base-libs.types:
7762         * docs/plugins/Makefile.am:
7763         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7764         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7765         Added some more docs to libs and plugins.
7766
7767         * gst-libs/gst/audio/gstringbuffer.c:
7768         (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
7769         * gst-libs/gst/audio/gstringbuffer.h:
7770         Document ringbuffer some more.
7771
7772         * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
7773         (gst_video_rate_setcaps), (gst_video_rate_reset),
7774         (gst_video_rate_init), (gst_video_rate_flush_prev),
7775         (gst_video_rate_swap_prev), (gst_video_rate_event),
7776         (gst_video_rate_chain), (gst_video_rate_change_state):
7777         * gst/videorate/gstvideorate.h:
7778         Fix videorate to use segments.
7779         Make it work with 0/1 framerates (closes #331903)
7780         Handle EOS correctly.
7781         Added docs.
7782
7783 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
7784
7785         * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
7786         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
7787         (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
7788           In state change function, first chain up to parent class,
7789           then handle downwards state change stuff. Remove some
7790           commented out cruft from 0.8 code.
7791
7792 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
7793
7794         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
7795         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
7796         (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
7797         (gst_ogm_parse_chain):
7798           Don't remove/re-add source pad if the new caps are the same as
7799           the old caps anyway (#333042). When removing source pad, don't
7800           unref it afterwards - we didn't ref it when adding. Sprinkle some
7801           GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
7802           after using gst_pad_get_parent(). Return downstream flow return
7803           value in chain function.
7804
7805 2006-03-02  Wim Taymans  <wim@fluendo.com>
7806
7807         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7808         * docs/plugins/gst-plugins-base-plugins.args:
7809         * docs/plugins/gst-plugins-base-plugins.hierarchy:
7810         * docs/plugins/gst-plugins-base-plugins.interfaces:
7811         * docs/plugins/gst-plugins-base-plugins.signals:
7812         Fix hierarchy, added some more elements to the docs.
7813
7814         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7815         (gst_ffmpegcsp_get_type):
7816         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
7817         Fix docs for ffmpegcolorspace.
7818
7819 2006-03-01  Tim-Philipp Müller  <tim at centricular dot net>
7820
7821         * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
7822         (apetag_type_find), (ape_type_find), (plugin_init):
7823           Some typefinding fine-tuning:
7824           - rank ID3/APE tags in order of preference via probabilities, so that
7825             ID3v2 > APEv2 > APEv1 > ID3v1.
7826           - three or four bytes don't really justify MAXIMUM probability,
7827             change those to 'very likely' (musepack and monkeysaudio).
7828
7829 2006-03-01  Wim Taymans  <wim@fluendo.com>
7830
7831         * docs/plugins/Makefile.am:
7832         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7833         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7834         * ext/alsa/gstalsamixer.c:
7835         * ext/alsa/gstalsamixer.h:
7836         * ext/alsa/gstalsamixerelement.c:
7837         (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
7838         * ext/alsa/gstalsamixerelement.h:
7839         * ext/alsa/gstalsasink.c:
7840         * ext/alsa/gstalsasink.h:
7841         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
7842         (gst_alsasrc_init):
7843         * ext/alsa/gstalsasrc.h:
7844         Added alsa docs.
7845         Small code cleanups.
7846
7847 2006-03-01  Wim Taymans  <wim@fluendo.com>
7848
7849         * ext/theora/Makefile.am:
7850         Dist new header too,
7851
7852 2006-03-01  Wim Taymans  <wim@fluendo.com>
7853
7854         * docs/plugins/Makefile.am:
7855         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7856         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7857         * ext/gnomevfs/gstgnomevfssink.h:
7858         * ext/gnomevfs/gstgnomevfssrc.h:
7859         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
7860         * ext/vorbis/vorbisdec.h:
7861         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
7862         * ext/vorbis/vorbisenc.h:
7863         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
7864         (vorbis_parse_chain), (vorbis_parse_change_state):
7865         * ext/vorbis/vorbisparse.h:
7866         * gst/audioconvert/gstaudioconvert.h:
7867         * gst/tcp/gsttcpserversink.h:
7868         * gst/videotestsrc/gstvideotestsrc.c:
7869         * gst/videotestsrc/gstvideotestsrc.h:
7870         * gst/volume/gstvolume.c:
7871         * gst/volume/gstvolume.h:
7872         Fix some more docs.
7873         Added docs for vorbisdec and vorbisparse.
7874         Fix vorbisparse.
7875
7876 2006-03-01  Wim Taymans  <wim@fluendo.com>
7877
7878         * docs/plugins/Makefile.am:
7879         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7880         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7881         * ext/pango/gstclockoverlay.h:
7882         * ext/pango/gsttextoverlay.h:
7883         * ext/pango/gsttextrender.h:
7884         * ext/pango/gsttimeoverlay.h:
7885         * ext/theora/gsttheoradec.h:
7886         * ext/theora/gsttheoraenc.h:
7887         * ext/theora/theoradec.c:
7888         * ext/theora/theoraenc.c:
7889         * gst/audioconvert/gstaudioconvert.h:
7890         * gst/audiotestsrc/gstaudiotestsrc.h:
7891         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
7892         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
7893         * gst/tcp/gstmultifdsink.h:
7894         Updated/added documentation.
7895
7896         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
7897         (gst_text_overlay_halign_get_type),
7898         (gst_text_overlay_wrap_mode_get_type),
7899         (gst_text_overlay_base_init), (gst_text_overlay_class_init),
7900         (gst_text_overlay_init), (gst_text_overlay_set_property),
7901         (gst_text_overlay_get_property):
7902         Fix up properties to be enums instead of string to make bindings,
7903         introspection and automatic GUI creation possible.
7904         Add getters for the properties.
7905
7906 2006-02-28  Sebastien Moutte  <sebastien@moutte.net>
7907
7908         * gst/audiotestsrc/gstaudiotestsrc.c:
7909           added defines of M_PI and M_PI_2
7910         * gst/ffmpegcolorspace/avcodec.h:
7911           removed #include "stdint.h" for win32 as _stdint.h is 
7912           autogenerated to win32/common
7913         * win32/common/libgstaudio.def:
7914         * win32/common/libgsttag.def:
7915           added some exports
7916         * win32/vs6:
7917           some project files bugs corrected
7918         * win32/vs7:
7919           project files are reset to the default vs7 configuration 
7920           (they link to msvcr71.dll using default optimizations)
7921           
7922 2006-02-28  Wim Taymans  <wim@fluendo.com>
7923
7924         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
7925         Fix some docs.
7926
7927 2006-02-28  Edward Hervey  <edward@fluendo.com>
7928
7929         * ext/alsa/gstalsasrc.c:
7930         Set proper class on the ElementDetails:
7931         Source/Audio instead of Src/Audio/
7932
7933 2006-02-28  Edward Hervey  <edward@fluendo.com>
7934
7935         * gst/videoscale/vs_scanline.c:
7936         (vs_scanline_resample_nearest_RGBA):
7937         Revert optimization in videoscale. It should go in liboil and have
7938         an appropriate liboil function.
7939
7940 2006-02-28  Wim Taymans  <wim@fluendo.com>
7941
7942         * gst-libs/gst/audio/gstbaseaudiosink.c:
7943         (gst_base_audio_sink_provide_clock):
7944         Don't try to provide a clock in the NULL state.
7945
7946 2006-02-28  Wim Taymans  <wim@fluendo.com>
7947
7948         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
7949         (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
7950         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
7951         (gst_ogg_demux_deactivate_current_chain),
7952         (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
7953         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
7954         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
7955         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
7956         Use GstSegment infrastructure to remove duplicated code
7957         and handle more seek cases correctly.
7958
7959 2006-02-28  Wim Taymans  <wim@fluendo.com>
7960
7961         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7962         (gst_ffmpegcsp_transform):
7963         Don't ignore return code from ffmpeg convert function.
7964
7965         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
7966         Split out some long statements to ease debugging.
7967
7968 2006-02-27  Jan Schmidt  <thaytan@mad.scientist.com>
7969
7970         * ext/libvisual/visual.c: (gst_visual_init),
7971         (gst_vis_src_negotiate), (get_buffer), (plugin_init):
7972         Don't use gst_pad_use_fixed_caps, because it prevents downstream from
7973         being able to renegotiate the size. Instead, use the negotiation
7974         algorithm from the goom plugin to pick an initial output caps. 
7975
7976         Also, allow theoretical libvisual plugins that might support non-GL 
7977         output even if they also do GL.
7978
7979 2006-02-26  Julien MOUTTE  <julien@moutte.net>
7980
7981         * ext/libvisual/visual.c: (gst_visual_init),
7982         (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
7983         (plugin_init): Load only non GL plugins. Fix some memleaks and 
7984         possible negotiation issues.
7985
7986 2006-02-25  Julien MOUTTE  <julien@moutte.net>
7987
7988         * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
7989
7990 2006-02-24  Michael Smith  <msmith@fluendo.com>
7991
7992         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
7993         (cmml_type_find), (plugin_init):
7994           Fix CMML type find function to not require a specific minor version
7995           of the CMML header.
7996
7997           Add an MPEG4 video elementary stream typefind function.
7998
7999 2006-02-04  Michael Smith  <msmith@fluendo.com>
8000
8001         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
8002         (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
8003         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
8004         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
8005         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
8006         (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
8007           Annodex support in ogg demuxer. Doesn't do very much without the
8008           other annodex patches (to come).
8009
8010 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
8011
8012         Patch by: Fabrizio Gennari <fabrizio dot get at tiscali dot it>
8013
8014         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
8015           Pick up palette for MS video v1 (#327028)
8016
8017 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
8018
8019         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8020         (gst_ffmpegcsp_caps_remove_format_info),
8021         (gst_ffmpegcsp_get_unit_size):
8022           The 'palette_data' field from incoming RGB caps shouldn't be
8023           proxied on outgoing YUV caps; also, restrict unit size
8024           adjustment in case of paletted data only to the unit that
8025           actually has a palette. Fixes #330711.
8026
8027 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
8028
8029         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8030         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
8031         (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
8032         (gst_ffmpegcsp_get_unit_size):
8033           Plug some memory leaks.
8034
8035 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
8036
8037         * sys/ximage/Makefile.am:
8038         * sys/xvimage/Makefile.am:
8039           Add some _CFLAGS and _LIBS that seem to be missing
8040           and/or required for Cygwin (see #317048).
8041
8042 2006-02-22  Wim Taymans  <wim@fluendo.com>
8043
8044         * ext/alsa/gstalsasrc.c:
8045         Fix description as pointed out by caugier.
8046
8047 2006-02-22  Tommi Myöhänen  <ext-tommi do myohanen at nokia dot com>
8048
8049         Reviewed by : Edward Hervey  <edward@fluendo.com>
8050
8051         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
8052         (qt_type_find):
8053         Better 3gp typefinding (#331526).
8054
8055 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
8056
8057         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
8058           Don't send EOS event here, the base class will send one for us.
8059
8060         * gst/playback/gstplaybasebin.c: (prepare_output):
8061           Subpictures without video stream aren't allowed either.
8062         
8063         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
8064           Fix debug statement copy'n'paste-o.
8065
8066 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
8067
8068         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
8069           Fix issues with mixer keeping state when muting/unmuting
8070           and when changing the volume whilst muted (see #331763
8071           and #331765).
8072
8073 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
8074
8075         * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
8076         (parse_subrip), (gst_sub_parse_format_autodetect):
8077           Set right caps given that we send escaped text. Also,
8078           honour <i></i>, <b></b> and <u></u> markers that can be found
8079           in .srt files (fixes #310202).
8080
8081 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
8082
8083         * gst-libs/gst/audio/mixerutils.c:
8084         (element_factory_rank_compare_func):
8085           Make order in which elements are tried more determinable.
8086
8087 2006-02-20  Julien MOUTTE  <julien@moutte.net>
8088
8089         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
8090         (remove_element_chain), (cleanup_decodebin),
8091         (gst_decode_bin_change_state): Make decodebin reusable by
8092         fixing remove_element_chain first and then introduce a
8093         cleaner in state change to ->NULL. (Closes #331678)
8094
8095 2006-02-19  Wim Taymans  <wim@fluendo.com>
8096
8097         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
8098         use 0666 mask when creating files so umask gets applied
8099         correctly. Fixes #331295.
8100
8101 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
8102
8103         * gst/subparse/Makefile.am:
8104         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
8105         (gst_ssa_parse_dispose), (gst_ssa_parse_init),
8106         (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
8107         (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
8108         (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
8109         (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
8110         * gst/subparse/gstssaparse.h:
8111         * gst/subparse/gstsubparse.c: (plugin_init):
8112           Add very basic parser for SSA subtitle streams (as often
8113           found in matroska files).
8114
8115 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
8116
8117         * gst/playback/gstdecodebin.c: (mimetype_is_raw):
8118           That should be text/x-pango-markup, not text/x-pango-layout.
8119
8120 2006-02-19  Julien MOUTTE  <julien@moutte.net>
8121
8122         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
8123         Polishing.
8124
8125 2006-02-19  Julien MOUTTE  <julien@moutte.net>
8126
8127         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
8128         (gst_text_overlay_finalize), (gst_text_overlay_init),
8129         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
8130         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
8131         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
8132         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
8133         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
8134         Fix state change deadlock.
8135
8136 2006-02-19  Julien MOUTTE  <julien@moutte.net>
8137
8138         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
8139         (gst_text_overlay_finalize), (gst_text_overlay_init),
8140         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
8141         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
8142         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
8143         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
8144         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
8145         * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
8146         and subtitles files.
8147
8148 2006-02-19  Julien MOUTTE  <julien@moutte.net>
8149
8150         * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
8151         should be considered as raw.
8152
8153 2006-02-19  Julien MOUTTE  <julien@moutte.net>
8154
8155         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
8156         (cb_probe):
8157         * gst/playback/gststreaminfo.h: Introduce language informations.
8158
8159 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
8160
8161         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
8162         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
8163         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
8164         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
8165         Set shared memory segments to be deleted as soon as we have attached,
8166         that way they get cleaned up automatically if we crash.
8167
8168 2006-02-18  Julien MOUTTE  <julien@moutte.net>
8169
8170         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text): 
8171         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
8172         functions are called with lock held.
8173
8174 2006-02-18  Julien MOUTTE  <julien@moutte.net>
8175
8176         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
8177         (gst_text_overlay_finalize), (gst_text_overlay_init),
8178         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
8179         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
8180         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
8181         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
8182         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
8183         (gst_text_overlay_change_state): Refactoring of textoverlay
8184         without collectpads. This now supports sparse subtitles coming
8185         from a demuxer instead of a sub file. Seeking is still broken 
8186         though. Need to discuss with wtay some more on how to handle
8187         seeking correctly.
8188         * ext/pango/gsttextoverlay.h:
8189         * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
8190         subtitles coming from the demuxer.
8191
8192 2006-02-17  Wim Taymans  <wim@fluendo.com>
8193
8194         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
8195         (gst_vorbisenc_convert_sink):
8196         Use some more scaling functions.
8197
8198 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
8199
8200         * ext/cdparanoia/gstcdparanoiasrc.c:
8201         (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
8202         (gst_cd_paranoia_paranoia_callback),
8203         (gst_cd_paranoia_src_signal_is_being_watched),
8204         (gst_cd_paranoia_src_read_sector):
8205         * ext/cdparanoia/gstcdparanoiasrc.h:
8206           Add back 'transport-error' and 'uncorrected-error' signals and
8207           make them actually be fired when bad stuff happens (#319340).
8208
8209 2006-02-17  Wim Taymans  <wim@fluendo.com>
8210
8211         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
8212         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
8213         (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
8214         (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
8215         (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
8216         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
8217         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
8218         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
8219         (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
8220         (gst_ring_buffer_clear):
8221         Small cleanups.
8222         Added some G_LIKELY.
8223
8224 2006-02-17  Wim Taymans  <wim@fluendo.com>
8225
8226         * gst-libs/gst/audio/TODO:
8227         Update TODO
8228
8229         * gst-libs/gst/audio/gstbaseaudiosink.c:
8230         (gst_base_audio_sink_get_offset):
8231         When trying to play samples ASAP and we don't have a
8232         previous sample, try to play at position 0 instead of
8233         an invalid position.
8234
8235 2006-02-17  Wim Taymans  <wim@fluendo.com>
8236
8237         * ext/alsa/gstalsasink.c: (gst_alsasink_open),
8238         (gst_alsasink_reset):
8239         Also release lock when we get an error in _reset();
8240         fix an error message.
8241
8242 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
8243
8244         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
8245         (gst_alsasink_init), (get_channel_free_structure),
8246         (caps_add_channel_configuration), (gst_alsasink_getcaps),
8247         (gst_alsasink_close):
8248         * ext/alsa/gstalsasink.h:
8249           Add support for more than 2 channels (#326720).
8250
8251 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
8252
8253         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8254           Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
8255           with 4 or 6 channels, assume a default channel layout to make things
8256           work (not sure there's anything else we can do in those cases).
8257
8258 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
8259
8260         * gst-libs/gst/audio/multichannel.c:
8261           Minor docs fix.
8262
8263         * gst-libs/gst/riff/Makefile.am:
8264         * gst-libs/gst/riff/riff-ids.h:
8265         * gst-libs/gst/riff/riff-media.c:
8266         (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
8267           Add support for WAVEFORMATEX, eg. PCM audio with more than two
8268           channels and a channel layout map.
8269           
8270 2006-02-16  Mathieu Garcia <b0nk at free dot fr>
8271
8272         Reviewed by Edward Hervey  <edward@fluendo.com>
8273
8274         * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA): 
8275         C-level optimization of the RGBA nearest neighbour function.
8276         Eventually this might end up in liboil with vectorized versions.
8277
8278 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
8279
8280         * gst-libs/gst/audio/multichannel.c:
8281         (gst_audio_get_channel_positions):
8282           When we have more than 2 channels, but no channel layout is
8283           specified in the caps, return some default channel layout
8284           to the caller and warn about about a possibly buggy element
8285           (could be buggy filtercaps as well of course) (#317038).
8286
8287 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
8288
8289         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
8290           Add gst-libs/gst/cdda to list of lib search paths.
8291
8292 2006-02-15  Andy Wingo  <wingo@pobox.com>
8293
8294         * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
8295         timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
8296         to the Lord Jesus that I do not have to touch the ogg muxer ever
8297         again.
8298
8299 2006-02-15  Edward Hervey  <edward@fluendo.com>
8300
8301         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
8302         quicktime movie files can also contain 'uuid' atoms.
8303
8304 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
8305
8306         * gst/audioconvert/plugin.c: (plugin_init):
8307           Register the GstAudioChannelPosition enum type with the type
8308           system in the plugin_init function, so that it is known before
8309           any element actually makes use of multi-channel stuff. This is
8310           required for example if one wants to be able to deserialise/use
8311           a caps string with channel positions before any pipeline has
8312           been setup and started, like with gst-launch.
8313
8314 2006-02-14  Wim Taymans  <wim@fluendo.com>
8315
8316         * gst-libs/gst/audio/gstringbuffer.c:
8317         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
8318         (gst_ring_buffer_samples_done), (wait_segment),
8319         (gst_ring_buffer_commit), (gst_ring_buffer_clear):
8320         Add some compiler G_(UN_)LIKELY help.
8321         SIGNAL the ringbuffer waiters when going to PAUSED as well to
8322         make sure they can exit their functions. Should fix #330748
8323
8324 2006-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
8325
8326         * Makefile.am:
8327         * configure.ac:
8328         * win32/MANIFEST:
8329         * win32/common/_stdint.h:
8330           Windows does not have long long; copy the generated _stdint.h
8331         * win32/common/interfaces-enumtypes.c:
8332         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
8333         (gst_mixer_track_flags_get_type),
8334         (gst_tuner_channel_flags_get_type):
8335         * win32/common/multichannel-enumtypes.c:
8336         (gst_audio_channel_position_get_type):
8337           update
8338
8339 2006-02-13  Wim Taymans  <wim@fluendo.com>
8340
8341         * gst-libs/gst/audio/gstbaseaudiosink.c:
8342         (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
8343         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8344         Always sync on first sample we receive when starting.
8345
8346 2006-02-13  Wim Taymans  <wim@fluendo.com>
8347
8348         * gst/playback/gstplaybin.c: (gen_vis_element):
8349         Update vis bin docs.
8350         Move queue after tee so we don't queue video buffers but
8351         audio samples instead. Fixes problems where the video queue
8352         is filled and the audio queue empty.
8353
8354 2006-02-13  Tim-Philipp Müller  <tim at centricular dot net>
8355
8356         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
8357           No need to push an EOS event here, GstBaseSrc will do that for us
8358           when we return FLOW_UNEXPECTED.
8359           
8360 2006-02-12  Wim Taymans  <wim@fluendo.com>
8361
8362         * gst-libs/gst/audio/gstbaseaudiosink.c:
8363         (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
8364         (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
8365         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8366         Use scale functions when possible.
8367         Fix error messages.
8368         Free clockid when after waiting for EOS.
8369         Use G_(UN_)LIKLY when it makes sense.
8370         Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
8371
8372 2006-02-12  Edward Hervey  <edward@fluendo.com>
8373
8374         * gst/playback/gstplaybasebin.c: (prepare_output): 
8375         Remove stray semi-colon (fixes #330888).
8376
8377 2006-02-12  Jan Schmidt  <thaytan@mad.scientist.com>
8378
8379         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
8380         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
8381         Fix up the XShm call testing so that we catch errors, and don't
8382         cause new ones by attempting to detach from a segment we failed
8383         to attach to. Fixes #312439.
8384
8385 2006-02-10  Edward Hervey  <edward@fluendo.com>
8386
8387         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
8388         Added flv file typefind (video/x-flv).
8389
8390 2006-02-10  Edward Hervey  <edward@fluendo.com>
8391
8392         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
8393         (gst_riff_create_video_template_caps):
8394         Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
8395         Also added the caps to the default set of riff video caps.
8396
8397 2006-02-09  Andy Wingo  <wingo@pobox.com>
8398
8399         * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
8400         time and the end time of the last packet in the page.
8401         (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
8402         on the pages in our queue, set the duration as well. Reflow a
8403         debug statement.
8404         (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
8405         Fixes bad muxing order.
8406
8407 2006-02-09  Thomas Vander Stichele  <thomas at apestaart dot org>
8408
8409         * gst-libs/gst/rtp/gstbasertppayload.c:
8410         (gst_basertppayload_setcaps), (gst_basertppayload_push):
8411           update seqnum before setting it on the packet; this makes sure
8412           that the timestamp and seqnum properties match after pushing
8413           a buffer
8414
8415 2006-02-09  Andy Wingo  <wingo@pobox.com>
8416
8417         * gst-libs/gst/audio/gstringbuffer.c
8418         (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
8419         overflow after 13.5 hours of recording. Kapow!
8420
8421         * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
8422         the buffer size -- we don't care about underrun/overrun reporting
8423         right now, just need to return a useful value.
8424
8425 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
8426
8427         * configure.ac:
8428           Back to CVS
8429
8430 === release 0.10.3 ===
8431
8432 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
8433
8434         * configure.ac:
8435           releasing 0.10.3, "Under Pressure"
8436
8437 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
8438
8439         * configure.ac:
8440         Drat. Bump libtool version number for new API.
8441         Prelease 0.10.2.3 (of 0.10.3)
8442
8443 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
8444
8445         * configure.ac:
8446         * win32/common/config.h:
8447         0.10.2.2 prerelease (of 0.10.3).
8448
8449 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
8450
8451         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
8452           Revert Andy's newsegment change pending a more correct
8453           fix.
8454
8455 2006-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
8456
8457         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
8458         (qt_type_find), (plugin_init):
8459           detect more files as 3gp
8460           group and reorder the iso file formats
8461
8462 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
8463
8464         * ext/vorbis/vorbis.c: (plugin_init):
8465           Register musicbrainz tags, so apps don't have to.
8466
8467 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
8468
8469         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
8470         (gst_tag_to_vorbis_tag):
8471           Make sure we called gst_tag_register_musicbrainz_tags()
8472           before possibly mapping a vorbiscomment string from/to a
8473           musicbrainz tag.
8474
8475 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
8476
8477         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
8478           In case we can't find the required number of consecutive
8479           mpeg audio frames to positively identify an MPEG audio
8480           stream, check if there's at least a valid mpeg audio
8481           frame right at offset 0 and if so suggest mpeg/audio
8482           caps with a very low probability (#153004).
8483
8484 2006-02-07  Andy Wingo  <wingo@pobox.com>
8485
8486         * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
8487         a TIME segment if we get timestamped buffers. Requires recent
8488         fixes in core to work properly.
8489
8490 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
8491
8492         * gst/playback/gstplaybasebin.c: (prepare_output):
8493           Don't print the URI as part of the error message, it
8494           makes error dialogs look rather ugly, especially if
8495           the URI is very long or has characters in it that
8496           need escaping.
8497
8498 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
8499
8500         * gst/playback/gstplaybasebin.c: (prepare_output):
8501           Error out if we have only text or subtitles, but nothing
8502           else. Also error out if we have subtitles but no video
8503           stream.
8504
8505 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
8506
8507         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
8508           Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
8509           Post an error message on the bus when we encounter an
8510           error, which will hopefully be more meaningful than the
8511           'Internal Flow Error' message users get to see if we
8512           just return GST_FLOW_ERROR.
8513
8514 2006-02-07  Andy Wingo  <wingo@pobox.com>
8515
8516         * configure.ac (GST_MAJORMINOR): Update core version req to
8517         0.10.2.2, for the collectpads API addition (#330244).
8518
8519 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
8520
8521         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
8522           Return FALSE from plugin_init() when GnomeVFS can't
8523           be initialised for some reason (#328423).
8524
8525 2006-02-06  Julien MOUTTE  <julien@moutte.net>
8526
8527         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event): 
8528         Stick to seeking theory until i find the bug.
8529         * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
8530
8531 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
8532
8533         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
8534         (theora_enc_finalize), (theora_enc_sink_setcaps),
8535         (theora_set_header_on_caps), (theora_enc_chain),
8536         (theora_enc_change_state):
8537         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
8538           Make theoraenc and the tests leak free. Like, really.
8539
8540 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
8541
8542         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
8543         (theora_enc_finalize), (theora_enc_sink_setcaps):
8544           Add a finalize method to ensure we clean up state even if
8545           someone omitted the state change back to NULL.
8546
8547         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
8548         (gst_vorbisenc_chain):
8549           Free some more leaked bits.
8550
8551         * tests/check/pipelines/theoraenc.c: (start_pipeline),
8552         (stop_pipeline):
8553           Wait for state changes to happen if they're ASYNC.
8554
8555           This ought to teach those fancy pants buildbots a lesson.
8556
8557 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
8558
8559         * gst-libs/gst/tag/gstid3tag.c:
8560           Add mapping for ID3 International Standard Recording Code
8561           tag "TSRC"
8562
8563 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
8564
8565         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
8566           Don't leak tag names.
8567
8568 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
8569
8570         * docs/libs/gst-plugins-base-libs-docs.sgml:
8571         * docs/libs/gst-plugins-base-libs-sections.txt:
8572         * gst-libs/gst/tag/gstid3tag.c:
8573         * gst-libs/gst/tag/gstvorbistag.c:
8574         * gst-libs/gst/tag/tags.c:
8575           Split libgsttag docs into multiple sections.
8576
8577 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
8578
8579         * docs/libs/Makefile.am:
8580         * docs/libs/gst-plugins-base-libs-docs.sgml:
8581         * docs/libs/gst-plugins-base-libs-sections.txt:
8582         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
8583         * gst-libs/gst/tag/gstvorbistag.c:
8584         * gst-libs/gst/tag/tag.h:
8585         * gst-libs/gst/tag/tags.c:
8586           Add libgsttag to the docs.
8587
8588 2006-02-05  Julien MOUTTE  <julien@moutte.net>
8589
8590         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
8591         (gst_text_overlay_init), (gst_text_overlay_src_event),
8592         (gst_text_overlay_collected): Fix clockoverlay.
8593
8594 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
8595
8596         * docs/libs/compiling.sgml:
8597           Fix typo: it's pkg-config, not pkg-gconfig
8598
8599         * docs/libs/gst-plugins-base-libs-docs.sgml:
8600         * docs/libs/gst-plugins-base-libs-sections.txt:
8601         * docs/libs/tmpl/gstgconf.sgml:
8602           There is no libgstgconf in 0.10, remove it
8603           from the docs.
8604
8605 2006-02-05  Julien MOUTTE  <julien@moutte.net>
8606
8607         * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
8608         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
8609         (gst_text_overlay_src_event), (gst_text_overlay_collected):
8610         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
8611         (gst_sub_parse_class_init), (gst_sub_parse_init),
8612         (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
8613         (parse_mpsub), (parser_state_init), (handle_buffer),
8614         (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
8615         * gst/subparse/gstsubparse.h: Introduce seeking code.
8616
8617 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
8618
8619         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
8620           Add comment about LANGUAGE tag inconsistency (we want
8621           ISO-639-1, but extract three-letter identifiers?)
8622
8623         * po/POTFILES.in:
8624           Add two translatable files.
8625
8626 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
8627
8628         * gst-libs/gst/tag/Makefile.am:
8629         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
8630         * gst-libs/gst/tag/tag.h:
8631         * gst-libs/gst/tag/tags.c:
8632         (gst_tag_register_musicbrainz_tags_internal),
8633         (gst_tag_register_musicbrainz_tags):
8634           Forward-port some tags stuff from the 0.8 branch. This is
8635           mostly the addition of musicbrainz tags and their mapping
8636           to vorbistags, and a vorbistag mapping of the language tag.
8637
8638 2006-02-05  Julien MOUTTE  <julien@moutte.net>
8639
8640         * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
8641         refactoring.
8642
8643 2006-02-04  David Schleef  <ds@schleef.org>
8644
8645         * ext/ogg/gstoggmux.c:
8646         * gst/typefind/gsttypefindfunctions.c:
8647           Add Dirac typefinding and add dirac format to oggmux.
8648
8649 2006-02-03  Tim-Philipp Müller  <tim at centricular dot net>
8650
8651         * gst/playback/gstdecodebin.c: (try_to_link_1):
8652           Don't put essential function call into
8653           g_return_*() macro, otherwise it'll all be
8654           replaced by NOOPs when compiling with
8655           G_DISABLE_CHECKS defined.
8656
8657 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
8658
8659         * ext/ogg/gstoggdemux.c:
8660         * ext/ogg/gstoggparse.c:
8661         * gst/tcp/gsttcpserversink.c:
8662         * sys/v4l/v4lsrc_calls.c:
8663         * sys/v4l/v4lsrc_calls.h:
8664         Just make it compile with --disable-gst-debug.
8665
8666 2006-02-03  Wim Taymans  <wim@fluendo.com>
8667
8668         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
8669         (gst_alsasink_class_init), (gst_alsasink_init),
8670         (gst_alsasink_write), (gst_alsasink_reset):
8671         * ext/alsa/gstalsasink.h:
8672         Add lock to protect alsa calls.
8673         Implement reset to flush samples ASAP, does not work
8674         with dmix though.
8675
8676 2006-02-02  Wim Taymans  <wim@fluendo.com>
8677
8678         * gst-libs/gst/audio/gstbaseaudiosink.c:
8679         (gst_base_audio_sink_provide_clock):
8680         Ugh.. getting late I guess...
8681
8682 2006-02-02  Wim Taymans  <wim@fluendo.com>
8683
8684         * gst-libs/gst/audio/gstbaseaudiosink.c:
8685         (gst_base_audio_sink_provide_clock),
8686         (gst_base_audio_sink_set_property),
8687         (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
8688         Don't try to provide a clock when we are not negotiated since
8689         we might not be able to make it run.
8690
8691 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
8692
8693         * gst/playback/gstdecodebin.c: (try_to_link_1):
8694           Unlinking two source pads is ... hard.
8695
8696 2006-02-02  Wim Taymans  <wim@fluendo.com>
8697
8698         * gst-libs/gst/audio/TODO:
8699         Updated.
8700
8701         * gst-libs/gst/audio/gstbaseaudiosink.c:
8702         (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
8703         On EOS, wait till the last sample is played before posting EOS.
8704
8705 2006-02-01  Philippe Kalaf <burger at speedy dot org>
8706
8707         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8708           Patch by Kai Vehmanen : Adds ability to enable newsegment bypass by
8709           setting queue_delay to zero. Also avoid thread being started if
8710           queue_delay is zero.
8711
8712 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
8713
8714         * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
8715           Make test work again by connecting fakesinks to each decoded pad,
8716           which makes the pipeline wait until each fakesink has a buffer
8717           queued before going to PAUSED state. At that point we know the
8718           decodebin pads are negotiated.
8719
8720 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
8721
8722         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
8723         (gst_cdda_base_src_handle_event):
8724         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
8725           Pass unhandled queries to the parent class's query function.
8726
8727 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
8728
8729         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
8730         (gst_ogg_pad_src_query):
8731         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
8732         * ext/theora/theoradec.c: (theora_dec_src_query),
8733         (theora_dec_sink_query):
8734         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
8735         (vorbis_dec_sink_query):
8736         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
8737         (gst_vorbisenc_sink_query):
8738         * gst/adder/gstadder.c: (gst_adder_query):
8739           Pass unhandled queries upstream instead of just
8740           dropping them (#326447). Also, fix supported
8741           query types list for some elements.
8742
8743 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
8744
8745         * gst/typefind/gsttypefindfunctions.c: (au_type_find),
8746         (paris_type_find), (ilbc_type_find), (plugin_init):
8747           Fix typefinding for audio/x-au, audio/x-paris and
8748           audio/iLBC-sh. We cannot use the START_WITH macros
8749           here, because there can only be one typefind factory
8750           with the same name (caps), so the second one would
8751           replace the first one and the first one would never
8752           be called when doing typefinding (see #161712).
8753           
8754
8755 2006-01-31  Wim Taymans  <wim@fluendo.com>
8756
8757         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
8758         (vorbis_handle_header_packet), (vorbis_dec_push),
8759         (vorbis_handle_data_packet):
8760         Use scale_int when we can, add some more scaling.
8761         Check packettype before parsing it.
8762
8763 2006-01-31  Wim Taymans  <wim@fluendo.com>
8764
8765         * ext/theora/theoradec.c: (_theora_granule_time),
8766         (theora_dec_src_convert), (theora_dec_sink_convert):
8767         Call right _scale functions.
8768         Use parameter instead of some other random value.
8769
8770 2006-01-31  Wim Taymans  <wim@fluendo.com>
8771
8772         * ext/theora/theoradec.c: (_theora_granule_frame),
8773         (_theora_granule_time), (_inc_granulepos),
8774         (theora_dec_src_convert), (theora_dec_sink_convert),
8775         (theora_handle_type_packet), (theora_handle_data_packet),
8776         (theora_dec_chain):
8777         Use higher precision timestamps calculation.
8778         Convert some other conversions to _scale.
8779
8780 2006-01-31  Stefan Kost  <ensonic@users.sf.net>
8781
8782         * gst/audiotestsrc/gstaudiotestsrc.c:
8783         (gst_audio_test_src_create_sine_table), (plugin_init):
8784         * gst/volume/gstvolume.c: (plugin_init):
8785           initialize gst_controller before using
8786
8787 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
8788
8789         * tests/check/pipelines/theoraenc.c:
8790         * tests/check/pipelines/vorbisenc.c:
8791         Define constant using G_GINT64_CONSTANT to avoid errors when
8792         passing it around - otherwise it gets truncated to 32 bits.
8793
8794         Fixes failing tests.
8795
8796 2006-01-31  Andy Wingo  <wingo@pobox.com>
8797
8798         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
8799         caps being set doesn't have a framerate value. Basically a stopgap
8800         measure.
8801
8802         * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
8803         technically correct enough to put into core though.
8804         (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
8805         DURATION. Fixes theoraenc ! oggmux.
8806
8807         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
8808         fraction, not double.
8809
8810 2006-01-31  Sebastien Moutte  <sebastien@moutte.net>
8811
8812         * win32/vs7:
8813         add vs7 project files created by Sergey Scobich
8814
8815 2006-01-30  Sebastien Moutte  <sebastien@moutte.net>
8816
8817         * win32/vs8:
8818         add vs8 project files created by Sergey Scobich
8819         
8820 2006-01-30  Andy Wingo  <wingo@pobox.com>
8821
8822         * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
8823         timestamp + duration, not just timestamp -- ogg pages should be
8824         ordered by stop time. Necessary fix given the change in vorbis
8825         timestamps.
8826
8827         * ext/theora/theoraenc.c (theora_enc_sink_setcaps) 
8828         (gst_theora_enc_init): Pull the granule shift out of the encoder.
8829         (granulepos_add): New function, handles the messiness of adjusting
8830         granulepos values.
8831         (theora_buffer_from_packet):
8832         (theora_enc_chain):
8833         (theora_enc_sink_event): Use granulepos_add, not +.
8834
8835         * tests/check/pipelines/theoraenc.c
8836         (check_buffer_granulepos_from_starttime): Just check the frame
8837         count, not the actual granulepos -- we can't dictate to the
8838         encoder when it should be placing keyframes.
8839
8840 2006-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
8841
8842         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
8843           SERVICE_NOT_AVAILABLE happens for example when you're trying to
8844           play an http:// stream from a server that's not serving
8845
8846 2006-01-30  Andy Wingo  <wingo@pobox.com>
8847
8848         * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET): 
8849         * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
8850         remove the UINT64_CONSTANT macro, doesn't appear to be needed or
8851         available.
8852
8853         * ext/theora/gsttheoraenc.h:
8854         * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
8855         although theoraenc was timestamping correctly. Added handling of
8856         streams that start with nonzero timestamps.
8857
8858         * tests/check/Makefile.am:
8859         * tests/check/pipelines/theoraenc.c: New file, basically does same
8860         tests as vorbisenc.
8861
8862         * tests/check/pipelines/vorbisenc.c: I claim these bugs.
8863
8864 2006-01-30  Wim Taymans  <wim@fluendo.com>
8865
8866         * gst-libs/gst/audio/gstaudiosink.c:
8867         (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
8868         (gst_audioringbuffer_pause):
8869         Implement pause that does not wait for completion.
8870
8871         * gst-libs/gst/audio/gstbaseaudiosink.c:
8872         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8873         Don't drop buffers when going to PAUSED but perform preroll on
8874         remaining samples now that core base class supports this.
8875
8876         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
8877         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
8878         (gst_ring_buffer_commit):
8879         Pause should not signal waiters.
8880         Implement return value of _commit correctly.
8881
8882 2006-01-30  Andy Wingo  <wingo@pobox.com>
8883
8884         * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
8885
8886         * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
8887         updated to timestamp from the first sample, not the last.
8888         (gst_vorbisenc_buffer_from_header_packet): New function, takes
8889         special care of granulepos and timestamp for header packets.
8890         (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
8891         when the first buffer has a nonzero timestamp.
8892
8893         * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
8894         (GstVorbisEnc.subgranule_offset): New members. Take care of the
8895         case when the first audio buffer we get has a nonzero timestamp.
8896         (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
8897         properly timestamp vorbis buffers with the time of the first
8898         sample, not the last.
8899         
8900         * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
8901         vorbis_granule_time_copy -- now it takes the granule/subgranule
8902         offset into account.
8903
8904         * tests/check/pipelines/vorbisenc.c: New test for correctness of
8905         timestamps, durations, and granulepos on buffers produced by
8906         vorbisenc.
8907
8908 2006-01-30  Jan Schmidt  <thaytan@mad.scientist.com>
8909
8910         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8911         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
8912           Patch from Eric Jonas to support conversions to/from UYVY 
8913           (Fixes: #324626)
8914
8915 2006-01-30  Julien MOUTTE  <julien@moutte.net>
8916
8917         * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
8918         (setup_subtitle), (setup_source), (set_active_source):
8919         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
8920         (gen_text_element), (gen_audio_element), (gen_vis_element),
8921         (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
8922
8923 2006-01-29  Sebastien Moutte  <sebastien@moutte.net>
8924
8925         * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
8926         * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
8927                 use gst_guint64_to_gdouble to be compliant with vs6
8928         * gst/playback/gstdecodebin.c: (try_to_link_1)
8929         * gst/videorate/videorate.c: (gst_video_rate_blank_data)
8930                 use G_GINT64_CONSTANT for int64 constants
8931         * win32/common/libgstinterfaces.def:
8932                 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
8933         * win32/vs6:
8934                 update and add new project files
8935                 
8936 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
8937
8938         * Makefile.am:
8939         * win32/MANIFEST:
8940         * win32/common/interfaces-enumtypes.c:
8941         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
8942         (gst_mixer_track_flags_get_type),
8943         (gst_tuner_channel_flags_get_type):
8944         * win32/common/interfaces-enumtypes.h:
8945         * win32/common/multichannel-enumtypes.c:
8946         (gst_audio_channel_position_get_type):
8947         * win32/common/multichannel-enumtypes.h:
8948           add a win32-update rule like in core, and copy over enumtypes files
8949
8950 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
8951
8952         * win32/MANIFEST:
8953         * win32/common/config.h:
8954         * win32/common/config.h.in:
8955           add config files just like in core
8956
8957 2006-01-28  Tim-Philipp Müller  <tim at centricular dot net>
8958
8959         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
8960           Make gcc-4.1 happy (part of #327357).
8961
8962 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
8963
8964         * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
8965         (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
8966         (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
8967         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
8968         (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
8969         (gst_alsasrc_unprepare), (gst_alsasrc_read):
8970           Update all error messages.  All of them should either use
8971           the default translated message, or actually provide a
8972           translatable string.
8973           Make the string for channel count problems meaningful.
8974
8975 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
8976
8977         * sys/v4l/v4l_calls.c: (gst_v4l_open):
8978           check for and throw RESOURCE_BUSY
8979
8980 2006-01-27  David Schleef  <ds@schleef.org>
8981
8982         * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
8983           checked in this change -- it requires liboil features not
8984           in 0.3.6.  Revert parts.
8985
8986 2006-01-27  David Schleef  <ds@schleef.org>
8987
8988         * REQUIREMENTS:
8989         * configure.ac: update liboil requirement to 0.3.6
8990         * gst/videoscale/Makefile.am:
8991         * gst/videoscale/vs_scanline.c: liboilify
8992
8993 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
8994
8995         * ext/libvisual/visual.c: (get_buffer):
8996           When pad_alloc returns a GstFlowReturn other
8997           than GST_FLOW_OK, make sure it is passed upstream.
8998
8999 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
9000
9001         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
9002         (gst_alsasink_class_init):
9003           Free the device name string.
9004
9005         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
9006         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
9007         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
9008           Don't remove a pad from the collectpads structure until it
9009           is released - it's a request pad, and may receive data again
9010           if the element gets moved back to PLAYING state.
9011
9012         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
9013           Ensure we turn on double buffering on the Xv port, and
9014           set the colour key to something dark and mysterious that
9015           isn't black.
9016
9017 2006-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
9018
9019         * ext/alsa/gstalsaplugin.c: (plugin_init):
9020         * ext/cdparanoia/gstcdparanoiasrc.c:
9021         (gst_cd_paranoia_src_base_init), (plugin_init):
9022         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
9023         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
9024           - a library should not call setlocale. see "Libraries" node in
9025             gettext manual
9026           - make sure all plugins that use translation do bindtextdomain
9027             to point to the localedir
9028         * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
9029         (setup_sinks), (plugin_init):
9030           all this, and check for NULL when creating sinks
9031
9032 2006-01-27  Julien MOUTTE  <julien@moutte.net>
9033
9034         * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
9035         (plugin_init): Make typefinding of subtitles work again.
9036
9037 2006-01-26  Tim-Philipp Müller  <tim at centricular dot net>
9038
9039         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
9040         (mp3_type_frame_length_from_header), (mp3_type_find),
9041         (wavpack_type_find), (m4a_type_find), (ircam_type_find),
9042         (plugin_init):
9043           Backport a bunch of typefinding fixes from the 0.8 branch.
9044           Also, improve wavpack typefinding: if we can't peek the
9045           entire wavpack block, try to parse the bits we can get and
9046           see if we find what we're looking for in those.
9047
9048 2006-01-26  Julien MOUTTE  <julien@moutte.net>
9049
9050         * sys/ximage/ximagesink.c:
9051         (gst_ximagesink_calculate_pixel_aspect_ratio):
9052         * sys/xvimage/xvimagesink.c:
9053         (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
9054         more cases of pixel aspect ratio.
9055
9056 2006-01-26  Edward Hervey  <edward@fluendo.com>
9057
9058         * gst/playback/gstdecodebin.c: (pad_probe):
9059         Also consider the flush-start and tag events as unblockers
9060         for the pad probes.
9061
9062 2006-01-26  Julien MOUTTE  <julien@moutte.net>
9063
9064         * gst/playback/gstplaybin.c: (gst_play_bin_init),
9065         (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
9066         (gst_play_bin_vis_blocked), (gst_play_bin_set_property): 
9067         On the fly visualisation switch, works disabling, enabling as
9068         well but it won't be able to enable vis in a playbin that was
9069         created with no visualisation.
9070
9071 2006-01-25  Wim Taymans  <wim@fluendo.com>
9072
9073         * gst-libs/gst/audio/gstbaseaudiosink.c:
9074         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
9075         Undo previous commit that returned WRONG_STATE sooner, it breaks 
9076         resume after pause.
9077
9078 2006-01-25  Wim Taymans  <wim@fluendo.com>
9079
9080         * gst-libs/gst/audio/gstbaseaudiosink.c:
9081         (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
9082         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
9083         Improve debugging.
9084         Post error when caps cannot be parsed.
9085         Resync on discontinuity in the stream.
9086         Clip samples to segment boundaries.
9087         return WRONG_STATE sooner when we are flushing.
9088
9089         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
9090         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
9091         Make audiosrc operate in TIME.
9092         Set TIMESTAMP and DURATION on buffers.
9093
9094 2006-01-24  Tim-Philipp Müller  <tim at centricular dot net>
9095
9096         * tests/examples/seek/seek.c: (main):
9097           Output tag messages as well.
9098
9099 2006-01-23  Edward Hervey  <edward@fluendo.com>
9100
9101         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
9102         (free_pad_probes), (remove_fakesink), (pad_probe),
9103         (close_pad_link), (gst_decode_bin_change_state):
9104         Replace GstPadBlockCallback with pad probes that detect
9105         first buffer AND eos before removing fakesink.
9106         Fixes hang with demuxers doing EOS while pre-rolling.
9107         Solves #328279
9108
9109 2006-01-23  Andy Wingo  <wingo@pobox.com>
9110
9111         * ext/alsa/gstalsasink.c:
9112         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9113         (gst_base_rtp_depayload_setcaps),
9114         (gst_base_rtp_depayload_add_to_queue),
9115         (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
9116         
9117         Patch by: Jens Granseuer <jensgr at gmx dot net>
9118
9119 2006-01-22  Julien MOUTTE  <julien@moutte.net>
9120
9121         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
9122         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
9123         (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some 
9124         frames. We might get a frame destroyed after changing state to
9125         NULL, adding a safety check on xcontext.
9126
9127 2006-01-22  Tim-Philipp Müller  <tim at centricular dot net>
9128
9129         * gst-libs/gst/interfaces/xoverlay.c:
9130           Fix prepare-xwindow-id code example in the docs - we need to
9131           ignore all messages that aren't element messages as well.
9132           
9133 2006-01-21  Julien MOUTTE  <julien@moutte.net>
9134
9135         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
9136           I think one day i'll completely undestand how caps negotiation
9137           is supposed to work. This refactoring handles buffer_alloc
9138           called with caps we can't handle. We definitely don't want a
9139           set_caps with those caps, so we define and allocate a buffer
9140           we would like to receive.
9141
9142 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
9143
9144         * gst/playback/gstplaybasebin.c: (setup_source):
9145           Free iterator when done.
9146
9147 2006-01-17  Jan Schmidt  <thaytan@mad.scientist.com>
9148
9149         * gst-libs/gst/audio/gstbaseaudiosink.c:
9150         (gst_base_audio_sink_render):
9151           Fix playback of non-synchronised streams by assuming a rate
9152           of 1.0 instead of a random one.
9153
9154           Makes this work again:
9155
9156           gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
9157           endianness=(int)4321, signed=(boolean)true, width=(int)16,
9158           depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
9159           audioresample ! alsasink
9160
9161 === release 0.10.2 ===
9162
9163 2006-01-16  Thomas Vander Stichele <thomas at apestaart dot org>
9164
9165         * configure.ac:
9166           releasing 0.10.2, "Then the devil is six"
9167
9168 2006-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
9169
9170         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
9171         * gst/playback/gststreamselector.c:
9172         (gst_stream_selector_set_property):
9173           Comment out broken code that connects to the state-changed signal.
9174           At this point, changing current stream selection is broken, but 
9175           stuff like gst-launch playbin current-audio=1 works and filters
9176           to the chosen stream.
9177
9178 2006-01-16  Thomas Vander Stichele  <thomas at apestaart dot org>
9179
9180         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
9181           Fix #327216 (null dereference in vorbisdec)
9182
9183 2006-01-16  Tim-Philipp Müller  <tim at centricular dot net>
9184
9185         * ext/theora/theoradec.c: (theora_handle_comment_packet):
9186           Post taglist actually on bus instead of just freeing it
9187           (fixes #327114 and totem bug #327080).
9188
9189         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
9190           Use gst_element_found_tags_for_pad(), so that the tags
9191           are sent downstream as an event as well.
9192
9193 2006-01-15  Thomas Vander Stichele  <thomas at apestaart dot org>
9194
9195         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
9196         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
9197         (gst_ximagesink_buffer_alloc):
9198         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
9199         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
9200         (gst_xvimagesink_buffer_alloc):
9201           move all regularly occurring messages to GST_LOG level
9202           add some more object logs
9203
9204 2006-01-14  Thomas Vander Stichele  <thomas at apestaart dot org>
9205
9206         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
9207           fix a silly segfault
9208
9209 2006-01-14  Tim-Philipp Müller  <tim at centricular dot net>
9210
9211         * docs/libs/gst-plugins-base-libs-docs.sgml:
9212         * docs/libs/gst-plugins-base-libs-sections.txt:
9213         * gst-libs/gst/audio/mixerutils.c:
9214         * gst-libs/gst/audio/mixerutils.h:
9215           Add docs for mixerutils stuff.
9216
9217 2006-01-13  Tim-Philipp Müller  <tim at centricular dot net>
9218
9219         * gst/playback/gstplaybasebin.c: (setup_source):
9220           Fix playback for sources that emit raw audio or
9221           raw video streams (e.g.: cd audio sources) (#325984).
9222
9223 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
9224
9225         * gst-libs/gst/audio/mixerutils.c:
9226         (gst_audio_mixer_filter_do_filter):
9227           actually save the element we create
9228
9229 2006-01-12  Tim-Philipp Müller  <tim at centricular dot net>
9230
9231         * gst-libs/gst/cdda/gstcddabasesrc.c:
9232         (gst_cdda_base_src_handle_track_seek):
9233           No need to post a tag message on the bus when seeking
9234           within the same track, only post it when the current
9235           track changes.
9236
9237 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
9238
9239         * gst/playback/gstplaybasebin.c: (group_destroy),
9240         (probe_triggered), (new_decoded_pad), (mute_group_type),
9241         (set_active_source):
9242         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
9243         * gst/playback/gststreamselector.c:
9244         (gst_stream_selector_base_init),
9245         (gst_stream_selector_set_property),
9246         (gst_stream_selector_request_new_pad):
9247           Reenable stream selection. These mechanisms need a complete overhaul
9248           in the face of 0.8->0.10 changes though.
9249
9250 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
9251
9252         * ext/ogg/gstoggdemux.c:
9253           Change the pad template to src_%d to match the pads that 
9254           are created from it. decodebin needs this information in order
9255           to decide that oggdemux is capable of producing multiple pads
9256           (and hence needs queues inserted).
9257
9258         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
9259         (gst_ogg_mux_collected):
9260           Make debug output more useful by using GST_PTR_FORMAT.
9261
9262 2006-01-11  Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
9263
9264         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
9265
9266         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
9267           Set depth and width for alaw/mulaw (fixes #326601).
9268
9269 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
9270
9271         * tests/icles/Makefile.am:
9272           don't build the tests if we don't have the libs
9273
9274 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
9275
9276         * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
9277         (gst_cd_paranoia_paranoia_callback):
9278           Don't try to free NULL pointers.
9279
9280 2006-01-10  Edward Hervey  <edward@fluendo.com>
9281
9282         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
9283         (gst_audio_rate_change_state), (plugin_init):
9284         Add debugging category.
9285         Fix type issues.
9286         Add case for incoming buffers without valid offset/offset_end.
9287
9288 2006-01-10  Michael Smith  <msmith@fluendo.com>
9289
9290         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
9291           Don't leak GCond in audio sources.
9292
9293 2006-01-10  Jan Schmidt  <thaytan@mad.scientist.com>
9294
9295         * gst/playback/gstplaybin.c: (gen_audio_element):
9296           Don't leak an autoaudiosink/alsasink when we generate
9297           a new audio element. (old code, I guess)
9298
9299 2006-01-10  Michael Smith  <msmith@fluendo.com>
9300
9301         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
9302           Support float audio in audiorate.
9303           Use width rather than depth for selecting sample width.
9304
9305 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
9306
9307         * gst/videotestsrc/videotestsrc.h:
9308           Use GLib types here (that way we don't have to include the
9309           generated _stdint.h header, which makes life easier for win32
9310           folks that don't use autotools for the build) (#325990, patch
9311           by: Sergey Scobich).
9312
9313 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
9314
9315         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
9316         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
9317         (gst_ring_buffer_pause), (wait_segment):
9318         * gst-libs/gst/audio/gstringbuffer.h:
9319           Name (private) union, makes Forte compiler happy (this time
9320           for real) (#324900).
9321
9322 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
9323
9324         * gst-libs/gst/audio/Makefile.am:
9325           Link against libgstinterfaces, needed for mixer
9326           and property probe stuff.
9327
9328 2006-01-09  Edward Hervey  <edward@fluendo.com>
9329
9330         * gst-libs/gst/Makefile.am:
9331
9332 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
9333
9334         * gst-libs/gst/audio/Makefile.am:
9335         * gst-libs/gst/audio/mixerutils.c:
9336         (gst_audio_mixer_filter_do_filter),
9337         (gst_audio_mixer_filter_check_element),
9338         (gst_audio_mixer_filter_probe_feature),
9339         (element_factory_rank_compare_func),
9340         (gst_audio_default_registry_mixer_filter):
9341         * gst-libs/gst/audio/mixerutils.h:
9342           Add gst_audio_default_registry_mixer_filter() utility
9343           function.
9344
9345 2006-01-03  Michael Smith  <msmith@fluendo.com>
9346
9347         * gst/audioresample/resample.h:
9348           As before, but for o_buf
9349
9350 2006-01-03  Michael Smith  <msmith@fluendo.com>
9351
9352         * gst/audioresample/resample.h:
9353           Declare struct _ResampleState.buffer as unsigned char *, not void *,
9354           since we do arithmetic on it.
9355
9356 2006-01-02  Tim-Philipp Müller  <tim at centricular dot net>
9357
9358         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
9359         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
9360         (gst_ring_buffer_pause), (wait_segment):
9361         * gst-libs/gst/audio/gstringbuffer.h:
9362           Sun's Forte compiler doesn't seem to like anonymous structs,
9363           so use same setup as in GstBaseSrc (fixes #324900).
9364
9365 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
9366
9367         * configure.ac:
9368         * gst/volume/Makefile.am:
9369         * gst/volume/demo.c:
9370           move old example to tests/examples/volume/volune.c
9371         * tests/examples/Makefile.am:
9372         * tests/examples/seek/seek.c: (main):
9373           change window-close event from "delete-event" to "destroy"
9374         * tests/examples/volume/Makefile.am:
9375         * tests/examples/volume/volume.c: (value_changed_callback),
9376         (setup_gui), (message_received), (eos_message_received), (main):
9377           fix event handling and bus usage
9378
9379 2005-12-29  Stefan Kost  <ensonic@users.sf.net>
9380
9381         * gst/audiotestsrc/gstaudiotestsrc.c:
9382         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
9383         (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
9384         (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
9385         (gst_audio_test_src_create_square),
9386         (gst_audio_test_src_create_saw),
9387         (gst_audio_test_src_create_triangle),
9388         (gst_audio_test_src_create_silence),
9389         (gst_audio_test_src_create_white_noise),
9390         (gst_audio_test_src_create_pink_noise),
9391         (gst_audio_test_src_init_sine_table),
9392         (gst_audio_test_src_create_sine_table),
9393         (gst_audio_test_src_change_wave),
9394         (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
9395         (gst_audio_test_src_create), (gst_audio_test_src_set_property):
9396         * gst/audiotestsrc/gstaudiotestsrc.h:
9397           update to basesrc changes, implement segmented seeking and eos
9398           handling, add a 'sine-tab' waveform for performance critical playback
9399
9400 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
9401
9402         * po/POTFILES.in:
9403           ... and this time the other modified file that I missed last time.
9404
9405 2005-12-29  Michael Smith  <msmith@fluendo.com>
9406
9407         * gst/playback/gstdecodebin.c: (new_pad):
9408           Fix non-C89 variable declaration not at the start of a block. Should
9409           help some compilers.
9410
9411 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
9412
9413         * tests/check/Makefile.am:
9414           And now fix 'make distcheck' (builddir != srcdir)
9415
9416 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
9417
9418         * configure.ac:
9419         * ext/cdparanoia/Makefile.am:
9420         * ext/cdparanoia/gstcdparanoia.c:
9421         * ext/cdparanoia/gstcdparanoia.h:
9422         * ext/cdparanoia/gstcdparanoiasrc.c:
9423         (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
9424         (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
9425         (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
9426         (gst_cd_paranoia_paranoia_callback),
9427         (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
9428         (gst_cd_paranoia_src_set_property),
9429         (gst_cd_paranoia_src_get_property), (plugin_init):
9430         * ext/cdparanoia/gstcdparanoiasrc.h:
9431           New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
9432           plugin again (there are still fixes required to playbin to make
9433           cdda:// uris work there).
9434
9435 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
9436
9437         * tests/check/Makefile.am:
9438           Fix test case compilation.
9439
9440 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
9441
9442         * gst-libs/gst/cdda/gstcddabasesrc.c:
9443         (gst_cdda_base_src_update_duration),
9444         (gst_cdda_base_src_calculate_cddb_id):
9445           An integer is not a string. Fix access to uninitialised variable.
9446
9447         * tests/check/Makefile.am:
9448           Add cddabasesrc unit test; also actually enable the vorbis test.
9449
9450         * tests/check/generic/states.c:
9451           Blacklist new cd audio elements as well.
9452
9453         * tests/check/libs/cddabasesrc.c:
9454           Unit test for GstCddaBaseSrc (discid calculation mostly).
9455
9456 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
9457
9458         * docs/libs/Makefile.am:
9459         * docs/libs/gst-plugins-base-libs-docs.sgml:
9460         * docs/libs/gst-plugins-base-libs-sections.txt:
9461         * docs/libs/gst-plugins-base-libs.types:
9462           Add docs for libgstcdda/GstCddaBaseSrc.
9463
9464         * gst-libs/gst/interfaces/mixertrack.h:
9465           Do one struct member per line with a semicolon at the end, that way
9466           even gtk-doc might parse it without complaining.
9467
9468 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
9469
9470         * configure.ac:
9471         * gst-libs/gst/Makefile.am:
9472         * gst-libs/gst/cdda/Makefile.am:
9473         * gst-libs/gst/cdda/base64.c:
9474         * gst-libs/gst/cdda/base64.h:
9475         * gst-libs/gst/cdda/gstcddabasesrc.c:
9476         (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
9477         (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
9478         (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
9479         (gst_cdda_base_src_get_property),
9480         (gst_cdda_base_src_get_track_from_sector),
9481         (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
9482         (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
9483         (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
9484         (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
9485         (gst_cdda_base_src_uri_get_protocols),
9486         (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
9487         (gst_cdda_base_src_uri_handler_init),
9488         (gst_cdda_base_src_setup_interfaces),
9489         (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
9490         (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
9491         (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
9492         (gst_cdda_base_src_add_tags),
9493         (gst_cdda_base_src_add_index_associations),
9494         (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
9495         (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
9496         (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
9497         (gst_cdda_base_src_create):
9498         * gst-libs/gst/cdda/gstcddabasesrc.h:
9499         * gst-libs/gst/cdda/sha1.c:
9500         * gst-libs/gst/cdda/sha1.h:
9501           Add new libgstcdda with GstCddaBaseSrc class.
9502
9503 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
9504
9505         * ext/gnomevfs/gstgnomevfssink.h:
9506           Use GstBaseSinkClass as parent_class member for class struct, not
9507           GstBaseSink.
9508
9509 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
9510
9511         Patch by: Michael Benes
9512
9513         * gst/videotestsrc/gstvideotestsrc.c:
9514         (gst_video_test_src_class_init), (gst_video_test_src_start):
9515           Add start method to reset running time and number of frames sent
9516           when starting up (fixes #324696)
9517
9518 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
9519
9520         * docs/plugins/Makefile.am:
9521         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9522         * docs/plugins/gst-plugins-base-plugins-sections.txt:
9523         * docs/plugins/gst-plugins-base-plugins.args:
9524         * docs/plugins/gst-plugins-base-plugins.hierarchy:
9525         * docs/plugins/gst-plugins-base-plugins.signals:
9526           Add docs stuff for gnomevfssrc and gnomevfssink.
9527
9528         * ext/gnomevfs/gstgnomevfssrc.c:
9529           Fix example pipeline in gtk-doc blurb.
9530
9531 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
9532
9533         * ext/gnomevfs/Makefile.am:
9534         * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
9535         (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
9536         (gst_gnome_vfs_handle_get_type), (plugin_init):
9537         * ext/gnomevfs/gstgnomevfs.h:
9538         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
9539         (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
9540         (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
9541         (gst_gnome_vfs_sink_set_property),
9542         (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
9543         (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
9544         (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
9545         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
9546         (gst_gnome_vfs_sink_uri_get_type),
9547         (gst_gnome_vfs_sink_uri_get_protocols),
9548         (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
9549         (gst_gnome_vfs_sink_uri_handler_init):
9550         * ext/gnomevfs/gstgnomevfssink.h:
9551           Port gnomevfssink; add gtk-doc blurb.
9552
9553         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
9554         (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
9555         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
9556         (gst_gnome_vfs_src_uri_get_type),
9557         (gst_gnome_vfs_src_uri_get_protocols),
9558         (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
9559         (gst_gnome_vfs_src_uri_handler_init),
9560         (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
9561         (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
9562         (gst_gnome_vfs_src_send_additional_headers_callback),
9563         (gst_gnome_vfs_src_received_headers_callback),
9564         (gst_gnome_vfs_src_push_callbacks),
9565         (gst_gnome_vfs_src_pop_callbacks),
9566         (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
9567         (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
9568         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
9569         * ext/gnomevfs/gstgnomevfssrc.h:
9570           s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
9571           file; add gtk-doc blurb with example pipelines.
9572
9573 === release 0.10.1 ===
9574
9575 2005-12-23  Thomas Vander Stichele <thomas at apestaart dot org>
9576
9577         * configure.ac:
9578           releasing 0.10.1, "Dobro Dedek"
9579
9580 2005-12-21  Edgard Lima <edgard.lima@indt.org.br>
9581
9582         * gst/typefind/gsttypefindfunctions.c:
9583         iLBC30 and iLBC20 added to typefind.
9584
9585 2005-12-20  Thomas Vander Stichele  <thomas at apestaart dot org>
9586
9587         * gst-libs/gst/audio/gstbaseaudiosink.c:
9588         (gst_base_audio_sink_class_init):
9589         * gst-libs/gst/audio/gstbaseaudiosrc.c:
9590         (gst_base_audio_src_class_init):
9591           update strings, values are in microseconds
9592           change the default sink buffer time to something that is smaller
9593           (to help software volume mixing have a slightly lower delay) but
9594           still be acceptable on Wim's laptop
9595
9596 2005-12-20  Edward Hervey  <edward@fluendo.com>
9597
9598         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
9599         Made a quack, forgot to add DUCK to the riff video template.
9600
9601 2005-12-19  Edward Hervey  <edward@fluendo.com>
9602
9603         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
9604         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
9605         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
9606         (gst_ogm_parse_chain):
9607         Make sure pads are initialized correctly.
9608         * gst-libs/gst/riff/riff-ids.h:
9609         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
9610         (gst_riff_create_video_template_caps):
9611         Add a whole bunch of FOURCC <=> MimeType.
9612         Extend the riff video pad template to support the newly added fourcc.
9613
9614 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
9615
9616         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
9617         (gst_ogg_demux_activate_chain):
9618           Extra debug output when activating/deactivating chains.
9619
9620         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
9621         (is_demuxer_element), (try_to_link_1), (remove_element_chain),
9622         (unlinked):
9623           Remove a queue from our list when it becomes unlinked.
9624           Don't add queues to elements in class 'Demux' if they
9625           can only produce one pad 
9626
9627 2005-12-18  Julien MOUTTE  <julien@moutte.net>
9628
9629         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
9630         (gst_video_sink_get_type): Add a debug category.
9631
9632 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
9633
9634         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9635         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
9636           Handle downstream newsegment by sending our own newsegment before the
9637           next buffer to be released. (#323900)
9638
9639 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
9640
9641         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9642         (gst_base_rtp_depayload_set_gst_timestamp):
9643           add queue delay to new segment as well (as opposed to just the first
9644           buffer). (bug #322347)
9645
9646 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
9647
9648         * ext/libvisual/visual.c: (make_valid_name):
9649           change some char* into char[]
9650         * gst/audiotestsrc/gstaudiotestsrc.c:
9651         (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
9652         (gst_audio_test_src_create):
9653         * gst/audiotestsrc/gstaudiotestsrc.h:
9654           prepare to handle EOS and SEGMENT_DONE
9655
9656 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
9657
9658         * tests/check/generic/states.c: (GST_START_TEST):
9659           Blacklist cdparanoia element in state test.
9660
9661 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
9662
9663           Patch by: Benjamin Pineau
9664
9665         * gst/tcp/gsttcp.c:
9666         * gst/tcp/gsttcpclientsink.c:
9667         * gst/tcp/gsttcpserversink.c:
9668         * gst/tcp/gsttcpserversrc.c:
9669           Add <string.h> includes for memset and FD_ZERO (fixes #323878)
9670
9671 2005-12-15  Michael Smith  <msmith@fluendo.com>
9672
9673         * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
9674         (gst_video_rate_chain):
9675           Fix timestamping for videorate when the first buffer it sees has a
9676           non-zero timestamp. Fix some misleading debug output.
9677
9678 2005-12-15  Michael Smith  <msmith@fluendo.com>
9679
9680         * gst/audioresample/gstaudioresample.c:
9681           Don't leak all input buffers to audioresample.
9682
9683 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
9684
9685         * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
9686           Don't operate on empty text buffers. Strip newlines and
9687           tabs only from the end of the text, but leave them intact
9688           in the middle. Fix typo in gtk-doc description.
9689
9690 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
9691
9692         * gst/playback/gstplaybasebin.c:
9693         * gst/playback/gstplaybin.c: (handoff):
9694           Make sure the video frame buffer we return to apps via the
9695           "frame" property always has caps set on it. Modify
9696           _gst_gvalue_set_object() macro to handle NULL objects
9697           gracefully too.
9698
9699 2005-12-14  Stefan Kost  <ensonic@users.sf.net>
9700
9701         * gst/audiotestsrc/gstaudiotestsrc.c:
9702         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
9703         (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
9704         (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
9705         (gst_audio_test_src_create):
9706         * gst/audiotestsrc/gstaudiotestsrc.h:
9707         Adjust to some recent api changes and add wtays new cool seeking
9708         capabillities
9709
9710 2005-12-14  Tim-Philipp Müller  <tim at centricular dot net>
9711
9712         * ext/alsa/Makefile.am:
9713         * ext/alsa/gstalsadeviceprobe.c:
9714         * ext/alsa/gstalsadeviceprobe.h:
9715           Helper functions to add device probing via the GstPropertyProbe
9716           interface to a class.
9717
9718         * ext/alsa/gstalsamixer.h:
9719           Comment out GST_ALSA_MIXER, it returns a struct that's not
9720           used.
9721
9722         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
9723           Add some debug info. 
9724
9725         * ext/alsa/gstalsamixerelement.c:
9726         (gst_alsa_mixer_element_interface_supported),
9727         (gst_implements_interface_init),
9728         (gst_alsa_mixer_element_init_interfaces),
9729         (gst_alsa_mixer_element_class_init),
9730         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
9731         (gst_alsa_mixer_element_set_property),
9732         (gst_alsa_mixer_element_get_property),
9733         (gst_alsa_mixer_element_change_state):
9734         * ext/alsa/gstalsamixerelement.h:
9735           Add 'device' and 'device-name' properties. Add GstPropertyProbe
9736           for device handling (gnome-volume-control will need that).
9737
9738 2005-12-12  Christian Schaller  <uraeus@gnome.org>
9739
9740         * ext/Makefile.am: fix cdparanoia entry
9741         * gst-plugins-base.spec.in: add cdparanoia
9742
9743 2005-12-12  Michael Smith  <msmith@fluendo.com>
9744
9745         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
9746           Use the correct function to free list of typefind factories.
9747
9748 2005-12-12  Wim Taymans  <wim@fluendo.com>
9749
9750         * gst/videotestsrc/gstvideotestsrc.c:
9751         (gst_video_test_src_class_init), (gst_video_test_src_init),
9752         (gst_video_test_src_parse_caps), (gst_video_test_src_query),
9753         (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
9754         (gst_video_test_src_create):
9755         * gst/videotestsrc/gstvideotestsrc.h:
9756         Implement seeking in videotestsrc.
9757         Small cleanups.
9758
9759 2005-12-12  Wim Taymans  <wim@fluendo.com>
9760
9761         * ext/cdparanoia/Makefile.am:
9762         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
9763         (gst_paranoia_endian_get_type), (_do_init),
9764         (cdparanoia_class_init), (cdparanoia_init),
9765         (cdparanoia_set_property), (cdparanoia_get_property),
9766         (cdparanoia_do_seek), (cdparanoia_is_seekable),
9767         (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
9768         (cdparanoia_convert), (cdparanoia_get_query_types),
9769         (cdparanoia_query), (cdparanoia_set_index),
9770         (cdparanoia_uri_set_uri):
9771         * ext/cdparanoia/gstcdparanoia.h:
9772         Partially ported cdparanoia now that basesrc can support a
9773         plugin like this..
9774
9775 2005-12-12  Wim Taymans  <wim@fluendo.com>
9776
9777         * tests/examples/seek/scrubby.c: (main):
9778         Set higher priority for bus events so they don't get reordered with
9779         gtk gui events.
9780
9781         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
9782         (flush_toggle_cb), (main):
9783         Added checkbox to disable flushing seeks. 
9784         Disable scrubbing when doing non flushing seeks.
9785
9786 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
9787
9788         * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
9789         (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
9790         (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
9791         (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
9792           Implement some sort of event handling that doesn't rely on
9793           g_return_if_fail; make sure we always push the last chunk of an 
9794           .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
9795           state change function; remove some old cruft. Seeking is still
9796           rather unlikely to work though.
9797
9798         * tools/.cvsignore:
9799           Ignore more.
9800
9801 2005-12-11  Julien MOUTTE  <julien@moutte.net>
9802
9803         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): 
9804         Fixed a leak of the current image reference when cleaning up.
9805         Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
9806
9807 2005-12-09  Michael Smith  <msmith@fluendo.com>
9808
9809         * tools/Makefile.am:
9810         * tools/gst-launch-ext-m.m:
9811           Remove gst-launch-ext. It doesn't work, and is no longer
9812           particularly useful.
9813
9814 2005-12-08  Luca Ognibene  <luogni@tin.it>
9815
9816         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
9817           don't pass random values to ogmparse convert function.
9818           Make seeking possible in the exile1.ogm file.
9819
9820 2005-12-07  Tim-Philipp Müller  <tim at centricular dot net>
9821
9822         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
9823         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
9824           Work around refcount problem with g_value_set_object() that occur
9825           if the core has been compiled against GLib-2.6 (g_value_set_object()
9826           will only g_object_ref() the element, but the caller will
9827           gst_object_unref() it and bad things will happen due to the way
9828           GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
9829           totem for people on FC4 using Thomas's 0.10 RPMs.
9830           
9831 2005-12-07  Edward Hervey  <edward@fluendo.com>
9832
9833         Time to welcome ogm to 0.10 :)
9834         
9835         * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
9836         (gst_ogg_pad_typefind):
9837         Oggdemux can now properly typefind elements with dynamic pads.
9838         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
9839         Properly set caps on src pad, and set caps on outgoing buffers.
9840
9841 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
9842
9843         * ext/alsa/gstalsamixer.h:
9844         * ext/alsa/gstalsamixerelement.h:
9845         * ext/alsa/gstalsamixeroptions.h:
9846         * ext/alsa/gstalsamixertrack.h:
9847         * ext/alsa/gstalsasink.c:
9848         * ext/alsa/gstalsasink.h:
9849         * ext/alsa/gstalsasrc.c:
9850         * ext/alsa/gstalsasrc.h:
9851         * ext/cdparanoia/gstcdparanoia.h:
9852         * ext/gnomevfs/gstgnomevfsuri.h:
9853         * ext/ogg/gstoggdemux.c:
9854         * ext/ogg/gstoggmux.c:
9855         * ext/pango/gsttextoverlay.h:
9856         * ext/theora/theoradec.c:
9857         * ext/theora/theoraenc.c:
9858         * ext/vorbis/vorbisdec.h:
9859         * ext/vorbis/vorbisenc.c:
9860         * ext/vorbis/vorbisenc.h:
9861         * ext/vorbis/vorbisparse.h:
9862         * gst-libs/gst/audio/gstaudioclock.h:
9863         * gst-libs/gst/audio/gstaudiosink.c:
9864         * gst-libs/gst/audio/gstaudiosink.h:
9865         * gst-libs/gst/audio/gstaudiosrc.c:
9866         * gst-libs/gst/audio/gstaudiosrc.h:
9867         * gst-libs/gst/audio/gstbaseaudiosink.c:
9868         * gst-libs/gst/audio/gstbaseaudiosink.h:
9869         * gst-libs/gst/audio/gstbaseaudiosrc.c:
9870         * gst-libs/gst/audio/gstbaseaudiosrc.h:
9871         * gst-libs/gst/audio/gstringbuffer.h:
9872         * gst-libs/gst/audio/multichannel.h:
9873         * gst-libs/gst/floatcast/floatcast.h:
9874         * gst-libs/gst/interfaces/colorbalance.c:
9875         * gst-libs/gst/interfaces/colorbalance.h:
9876         * gst-libs/gst/interfaces/colorbalancechannel.h:
9877         * gst-libs/gst/interfaces/mixer.h:
9878         * gst-libs/gst/interfaces/mixeroptions.h:
9879         * gst-libs/gst/interfaces/mixertrack.h:
9880         * gst-libs/gst/interfaces/navigation.h:
9881         * gst-libs/gst/interfaces/propertyprobe.h:
9882         * gst-libs/gst/interfaces/tuner.h:
9883         * gst-libs/gst/interfaces/tunerchannel.h:
9884         * gst-libs/gst/interfaces/tunernorm.h:
9885         * gst-libs/gst/interfaces/xoverlay.h:
9886         * gst-libs/gst/netbuffer/gstnetbuffer.h:
9887         * gst-libs/gst/riff/riff-ids.h:
9888         * gst-libs/gst/riff/riff-media.h:
9889         * gst-libs/gst/riff/riff-read.h:
9890         * gst-libs/gst/rtp/gstbasertpdepayload.h:
9891         * gst-libs/gst/rtp/gstbasertppayload.c:
9892         * gst-libs/gst/rtp/gstbasertppayload.h:
9893         * gst-libs/gst/rtp/gstrtpbuffer.c:
9894         * gst-libs/gst/rtp/gstrtpbuffer.h:
9895         * gst-libs/gst/tag/gsttageditingprivate.h:
9896         * gst-libs/gst/tag/gstvorbistag.c:
9897         (gst_tag_list_from_vorbiscomment_buffer):
9898         * gst-libs/gst/tag/tag.h:
9899         * gst-libs/gst/video/video.h:
9900         * gst/adder/gstadder.c:
9901         * gst/adder/gstadder.h:
9902         * gst/audioconvert/audioconvert.c:
9903         * gst/audioconvert/audioconvert.h:
9904         * gst/audioconvert/gstaudioconvert.c:
9905         * gst/audioconvert/gstchannelmix.c:
9906         * gst/audioconvert/gstchannelmix.h:
9907         * gst/audiorate/gstaudiorate.c:
9908         * gst/audioresample/buffer.h:
9909         * gst/audioresample/functable.h:
9910         * gst/audioresample/gstaudioresample.c:
9911         * gst/audioresample/resample.h:
9912         * gst/ffmpegcolorspace/avcodec.h:
9913         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
9914         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
9915         * gst/ffmpegcolorspace/imgconvert.c:
9916         * gst/ffmpegcolorspace/imgconvert_template.h:
9917         * gst/playback/gstdecodebin.c:
9918         * gst/playback/gstplaybasebin.h:
9919         * gst/playback/gstplaybin.c:
9920         * gst/playback/gststreaminfo.h:
9921         * gst/tcp/gstfdset.c:
9922         * gst/tcp/gstfdset.h:
9923         * gst/tcp/gstmultifdsink.c:
9924         * gst/tcp/gstmultifdsink.h:
9925         * gst/tcp/gsttcp.h:
9926         * gst/tcp/gsttcpclientsrc.c:
9927         * gst/tcp/gsttcpclientsrc.h:
9928         * gst/tcp/gsttcpplugin.h:
9929         * gst/tcp/gsttcpserversink.c:
9930         * gst/tcp/gsttcpserversrc.c:
9931         * gst/typefind/gsttypefindfunctions.c:
9932         * gst/videorate/gstvideorate.c:
9933         * gst/videotestsrc/gstvideotestsrc.h:
9934         * gst/videotestsrc/videotestsrc.h:
9935         * sys/v4l/gstv4lcolorbalance.h:
9936         * sys/v4l/gstv4ltuner.h:
9937         * sys/v4l/gstv4lxoverlay.h:
9938         * sys/v4l/v4l_calls.h:
9939         * sys/v4l/videodev_mjpeg.h:
9940         * tests/check/elements/audioconvert.c:
9941         * tests/check/elements/audioresample.c:
9942         * tests/check/elements/audiotestsrc.c:
9943         * tests/check/elements/videotestsrc.c:
9944         * tests/check/elements/volume.c:
9945         * tests/examples/seek/scrubby.c:
9946         * tests/examples/seek/seek.c:
9947           expand tabs
9948
9949 === release 0.10.0 ===
9950
9951 2005-12-05 Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9952
9953         * configure.ac:
9954           releasing 0.10.0, "Mont-d'or"
9955
9956 2005-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
9957
9958         * tests/examples/seek/Makefile.am:
9959         Build fix for when gtk is not available.
9960
9961 2005-12-05  Andy Wingo  <wingo@pobox.com>
9962
9963         * ext/libvisual/visual.c: (get_buffer):
9964         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
9965         * ext/pango/gsttextrender.c: (gst_text_render_chain):
9966         * ext/theora/theoradec.c: (theora_handle_data_packet):
9967         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
9968         (theora_enc_chain):
9969         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9970         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
9971         Update for alloc_buffer changes.
9972
9973 2005-12-05  Andy Wingo  <wingo@pobox.com>
9974
9975         patch by: Kai Vehmanen <kv2004 eca cx>
9976         
9977         * gst-libs/gst/rtp/gstbasertpdepayload.c
9978         (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
9979
9980 2005-12-04  Andy Wingo  <wingo@pobox.com>
9981
9982         patch by: Sebastien Cote <sebas642 yahoo ca>
9983         
9984         * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
9985         Fixes #319172.
9986
9987 2005-12-02  Tim-Philipp Müller  <tim at centricular dot net>
9988
9989         * docs/plugins/Makefile.am:
9990         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9991         * docs/plugins/gst-plugins-base-plugins-sections.txt:
9992         * docs/plugins/gst-plugins-base-plugins.hierarchy:
9993         * ext/pango/gstclockoverlay.c:
9994         * ext/pango/gsttextoverlay.c: 
9995         * ext/pango/gsttextrender.c:
9996         * ext/pango/gsttimeoverlay.c:
9997           Add gtk-doc blurbs to pango elements.
9998
9999 2005-12-02  Wim Taymans  <wim@fluendo.com>
10000
10001         * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
10002         * gst/audioresample/buffer.h:
10003         * gst/audioresample/gstaudioresample.c:
10004         * gst/audioresample/gstaudioresample.h:
10005         * gst/audioresample/resample.c: (resample_input_flush),
10006         (resample_input_pushthrough), (resample_input_eos),
10007         (resample_get_output_size_for_input),
10008         (resample_get_input_size_for_output), (resample_get_output_size),
10009         (resample_get_output_data):
10010         * gst/audioresample/resample.h:
10011         * gst/audioresample/resample_ref.c: (resample_scale_ref):
10012         Fix audioresample, seek torture, new segments, reverse negotiation
10013         etc.. work fine.
10014
10015 2005-12-02  Wim Taymans  <wim@fluendo.com>
10016
10017         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
10018         Small cleanups.
10019
10020 2005-12-02  Wim Taymans  <wim@fluendo.com>
10021
10022         * gst/audioconvert/gstaudioconvert.c:
10023         (gst_audio_convert_transform):
10024         Post errors.
10025
10026 === release 0.9.7 ===
10027
10028 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
10029
10030         * configure.ac:
10031           releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
10032
10033 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
10034
10035         * Makefile.am:
10036         * po/hu.po:
10037         * win32/MANIFEST:
10038         * win32/gst.sln:
10039           add win32 MANIFEST file
10040           do something to the hungarian translation
10041
10042 2005-12-01  Tim-Philipp Müller  <tim at centricular dot net>
10043
10044         * ext/Makefile.am:
10045           Add $(PANGO_DIR) to SUBDIRS
10046
10047         * ext/pango/gstclockoverlay.c:
10048         * ext/pango/gsttimeoverlay.c:
10049           Fix and improve element descriptions.
10050
10051 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
10052
10053         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10054         * docs/plugins/inspect/plugin-libvisual.xml:
10055         * docs/plugins/inspect/plugin-pango.xml:
10056           add pango plugin to docs
10057
10058 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
10059
10060         * configure.ac:
10061         * ext/Makefile.am:
10062           moved pango to base
10063
10064 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
10065
10066         * configure.ac:
10067         * tests/Makefile.am:
10068         * tests/icles/.cvsignore:
10069         * tests/icles/Makefile.am:
10070         * tests/icles/stress-xoverlay.c: (myclock), (open_display),
10071         (close_display), (resize_window), (move_window), (create_window),
10072         (terminate_playback), (pause_playback), (start_playback), (main):
10073           add stress test for xoverlay from Julien
10074
10075 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
10076
10077         * docs/libs/tmpl/gstcolorbalance.sgml:
10078         * gst-libs/gst/rtp/gstbasertpdepayload.c:
10079         * gst-libs/gst/rtp/gstbasertppayload.c:
10080         * gst-libs/gst/rtp/gstrtpbuffer.c:
10081         * gst-libs/gst/rtp/gstrtpbuffer.h:
10082           Do burger's rename for rtp payloaders and depayloaders
10083
10084 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
10085
10086         * win32/:
10087           add Visual Studio 6 build files
10088
10089 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
10090
10091         * docs/libs/gst-plugins-base-libs-docs.sgml:
10092         * docs/libs/gst-plugins-base-libs-sections.txt:
10093         * docs/libs/tmpl/gstaudio.sgml:
10094         * docs/libs/tmpl/gstringbuffer.sgml:
10095         * gst-libs/gst/interfaces/xoverlay.c:
10096         * gst-libs/gst/video/gstvideofilter.c:
10097         * gst-libs/gst/video/gstvideosink.c:
10098           update documentation
10099
10100 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
10101
10102         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
10103         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
10104         (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
10105         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
10106         (gst_multi_fd_sink_get_stats),
10107         (gst_multi_fd_sink_remove_client_link),
10108         (gst_multi_fd_sink_handle_client_read),
10109         (gst_multi_fd_sink_client_queue_data),
10110         (gst_multi_fd_sink_client_queue_caps),
10111         (gst_multi_fd_sink_client_queue_buffer),
10112         (gst_multi_fd_sink_new_client),
10113         (gst_multi_fd_sink_handle_client_write),
10114         (gst_multi_fd_sink_recover_client),
10115         (gst_multi_fd_sink_queue_buffer),
10116         (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
10117         (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
10118         (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
10119         (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
10120         * gst/tcp/gstmultifdsink.h:
10121         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
10122         (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
10123         (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
10124         (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
10125         (gst_tcp_client_sink_set_property),
10126         (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
10127         (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
10128         * gst/tcp/gsttcpclientsink.h:
10129         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
10130         (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
10131         (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
10132         (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
10133         (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
10134         (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
10135         * gst/tcp/gsttcpclientsrc.h:
10136         * gst/tcp/gsttcpplugin.c: (plugin_init):
10137         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
10138         (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
10139         (gst_tcp_server_sink_finalize),
10140         (gst_tcp_server_sink_handle_server_read),
10141         (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
10142         (gst_tcp_server_sink_set_property),
10143         (gst_tcp_server_sink_get_property),
10144         (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
10145         * gst/tcp/gsttcpserversink.h:
10146         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
10147         (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
10148         (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
10149         (gst_tcp_server_src_set_property),
10150         (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
10151         (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
10152         * gst/tcp/gsttcpserversrc.h:
10153           more borgifying
10154
10155 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
10156
10157         * docs/plugins/Makefile.am:
10158         * docs/plugins/gst-plugins-base-plugins.args:
10159         * docs/plugins/inspect/plugin-libvisual.xml:
10160         * gst/audioconvert/plugin.h:
10161         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
10162         (gst_audio_rate_base_init), (gst_audio_rate_class_init),
10163         (gst_audio_rate_setcaps), (gst_audio_rate_init),
10164         (gst_audio_rate_chain), (gst_audio_rate_set_property),
10165         (gst_audio_rate_get_property), (gst_audio_rate_change_state),
10166         (plugin_init):
10167         * gst/audiotestsrc/gstaudiotestsrc.c:
10168         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
10169         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
10170         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
10171         (gst_audio_test_src_get_query_types),
10172         (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
10173         (gst_audio_test_src_create_square),
10174         (gst_audio_test_src_create_saw),
10175         (gst_audio_test_src_create_triangle),
10176         (gst_audio_test_src_create_silence),
10177         (gst_audio_test_src_create_white_noise),
10178         (gst_audio_test_src_init_pink_noise),
10179         (gst_audio_test_src_generate_pink_noise_value),
10180         (gst_audio_test_src_create_pink_noise),
10181         (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
10182         (gst_audio_test_src_create), (gst_audio_test_src_set_property),
10183         (gst_audio_test_src_get_property), (gst_audio_test_src_start),
10184         (plugin_init):
10185         * gst/audiotestsrc/gstaudiotestsrc.h:
10186         * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
10187         (gst_sub_parse_base_init), (gst_sub_parse_class_init),
10188         (gst_sub_parse_init), (gst_sub_parse_formats),
10189         (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
10190         (convert_encoding), (get_next_line),
10191         (gst_sub_parse_data_format_autodetect),
10192         (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
10193         (gst_sub_parse_loop), (gst_sub_parse_chain),
10194         (gst_sub_parse_change_state), (gst_sub_parse_type_find),
10195         (plugin_init):
10196         * gst/subparse/gstsubparse.h:
10197         * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
10198         (gst_video_rate_base_init), (gst_video_rate_class_init),
10199         (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
10200         (gst_video_rate_setcaps), (gst_video_rate_blank_data),
10201         (gst_video_rate_init), (gst_video_rate_event),
10202         (gst_video_rate_chain), (gst_video_rate_set_property),
10203         (gst_video_rate_get_property), (gst_video_rate_change_state),
10204         (plugin_init):
10205         * gst/videoscale/gstvideoscale.c:
10206         (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
10207         (gst_video_scale_src_template_factory),
10208         (gst_video_scale_sink_template_factory),
10209         (gst_video_scale_get_type), (gst_video_scale_base_init),
10210         (gst_video_scale_class_init), (gst_video_scale_init),
10211         (gst_video_scale_set_property), (gst_video_scale_get_property),
10212         (gst_video_scale_transform_caps), (gst_video_scale_get_format),
10213         (gst_video_scale_prepare_size), (parse_caps),
10214         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
10215         (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
10216         (gst_video_scale_transform), (gst_video_scale_handle_src_event),
10217         (plugin_init):
10218         * gst/videoscale/gstvideoscale.h:
10219         * gst/videotestsrc/gstvideotestsrc.c:
10220         (gst_video_test_src_pattern_get_type),
10221         (gst_video_test_src_base_init), (gst_video_test_src_class_init),
10222         (gst_video_test_src_init), (gst_video_test_src_src_fixate),
10223         (gst_video_test_src_set_pattern),
10224         (gst_video_test_src_set_property),
10225         (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
10226         (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
10227         (gst_video_test_src_event), (gst_video_test_src_get_times),
10228         (gst_video_test_src_create), (plugin_init):
10229         * gst/videotestsrc/gstvideotestsrc.h:
10230         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
10231         (gst_video_test_src_smpte), (gst_video_test_src_snow),
10232         (gst_video_test_src_black):
10233         * gst/videotestsrc/videotestsrc.h:
10234           borgify further
10235           clean up docs a little
10236
10237 2005-11-30  Wim Taymans  <wim@fluendo.com>
10238
10239         * gst-libs/gst/rtp/gstbasertpdepayload.h:
10240         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
10241         (gst_basertppayload_event), (gst_basertppayload_push),
10242         (gst_basertppayload_change_state):
10243         * gst-libs/gst/rtp/gstbasertppayload.h:
10244         closed #320644.
10245
10246 2005-11-30  Julien MOUTTE  <julien@moutte.net>
10247
10248         * docs/libs/gst-plugins-base-libs-docs.sgml:
10249         * docs/libs/gst-plugins-base-libs-sections.txt:
10250         * gst-libs/gst/video/gstvideofilter.c:
10251         * gst-libs/gst/video/gstvideosink.c:
10252         * gst-libs/gst/video/gstvideosink.h: Adding docs.
10253
10254 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
10255
10256         * LICENSE:
10257           move
10258         * po/af.po:
10259         * po/az.po:
10260         * po/cs.po:
10261         * po/en_GB.po:
10262         * po/hu.po:
10263         * po/it.po:
10264         * po/nb.po:
10265         * po/nl.po:
10266         * po/or.po:
10267         * po/sq.po:
10268         * po/sr.po:
10269         * po/sv.po:
10270         * po/uk.po:
10271         * po/vi.po:
10272         * Makefile.am:
10273           update
10274         * scripts/autoplugins.sh:
10275           remove
10276
10277 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
10278
10279         * Makefile.am:
10280         * configure.ac:
10281         * examples/Makefile.am:
10282         * examples/capsfilter/Makefile.am:
10283         * examples/capsfilter/capsfilter1.c:
10284         * examples/gob/Makefile.am:
10285         * examples/gob/gst-identity2.gob:
10286         * examples/indexing/.cvsignore:
10287         * examples/indexing/Makefile.am:
10288         * examples/indexing/indexmpeg.c:
10289         * examples/seeking/.cvsignore:
10290         * examples/seeking/Makefile.am:
10291         * examples/seeking/cdparanoia.c:
10292         * examples/seeking/cdplayer.c:
10293         * examples/seeking/chained.c:
10294         * examples/seeking/scrubby.c:
10295         * examples/seeking/seek.c:
10296         * examples/stats/Makefile.am:
10297         * examples/stats/mp2ogg.c:
10298         * examples/switch/.cvsignore:
10299         * examples/switch/Makefile.am:
10300         * examples/switch/switcher.c:
10301         * tests/Makefile.am:
10302         * tests/check/generic/.cvsignore:
10303         * tests/check/pipelines/.cvsignore:
10304         * tests/examples/Makefile.am:
10305         * tests/examples/seek/Makefile.am:
10306           reorganize stuff under tests/
10307
10308 2005-11-30  Edward Hervey  <edward@fluendo.com>
10309
10310         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
10311         Go away you stupid GstStaticPadTemplate memleak.
10312
10313 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
10314
10315         * gst-libs/gst/net/Makefile.am:
10316         * gst-libs/gst/net/README:
10317         * gst-libs/gst/net/gstnetbuffer.c:
10318         * gst-libs/gst/net/gstnetbuffer.h:
10319           this was moved to "netbuffer"
10320
10321 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
10322
10323         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
10324         (gst_video_filter_class_init), (gst_video_filter_init):
10325         * gst-libs/gst/video/gstvideofilter.h:
10326           borgify name to bring in line with other classes
10327
10328 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
10329
10330         * gst/audioscale/.cvsignore:
10331         * gst/audioscale/Makefile.am:
10332         * gst/audioscale/README:
10333         * gst/audioscale/audioscale.vcproj:
10334         * gst/audioscale/dtof.c:
10335         * gst/audioscale/dtos.c:
10336         * gst/audioscale/functable.c:
10337         * gst/audioscale/gstaudioscale.c:
10338         * gst/audioscale/gstaudioscale.h:
10339         * gst/audioscale/private.h:
10340         * gst/audioscale/resample.c:
10341         * gst/audioscale/resample.h:
10342         * gst/audioscale/test.c:
10343           remove
10344
10345 2005-11-30  Edward Hervey  <edward@fluendo.com>
10346
10347         * gst-libs/gst/netbuffer/Makefile.am:
10348         really, really tired
10349
10350 2005-11-30  Edward Hervey  <edward@fluendo.com>
10351
10352         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
10353         Update for new GstTypeFindFactory _register()
10354
10355 2005-11-30  Edward Hervey  <edward@fluendo.com>
10356
10357         * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir): 
10358         Let's not override libgstnet from core for no reason...
10359         (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
10360         Ok, maybe not so quick next time.
10361
10362 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10363
10364         * configure.ac:
10365         * gst-libs/gst/Makefile.am:
10366           moved gst-libs/gst/net to netbuffer through CVS surgery
10367           remove old directory
10368           updating build to accomodate
10369           (#322257)
10370
10371 2005-11-29  Andy Wingo  <wingo@pobox.com>
10372
10373         * pkgconfig/gstreamer-plugins-base.pc.in:
10374         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
10375         * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
10376         (#322257).
10377
10378 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
10379
10380         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
10381         3rd time's the charm. Correct ref-counting for discarded buffers.
10382
10383 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
10384
10385         * gst/playback/gststreamselector.c:
10386         (gst_stream_selector_class_init),
10387         (gst_stream_selector_set_property),
10388         (gst_stream_selector_get_property),
10389         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
10390         Fix ref-counting
10391
10392 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
10393
10394         * gst/subparse/gstsubparse.c: (feed_textbuf):
10395           Don't access already unref'ed buffer.
10396
10397 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
10398
10399         * gst/playback/gststreamselector.c:
10400         (gst_stream_selector_class_init), (gst_stream_selector_init),
10401         (gst_stream_selector_dispose), (gst_stream_selector_set_property),
10402         (gst_stream_selector_get_property),
10403         (gst_stream_selector_get_linked_pad),
10404         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
10405         * gst/playback/gststreamselector.h:
10406         Add the active-pad property for playbin to use shortly. Ignore buffers
10407         from any other pad, returning GST_FLOW_NOT_LINKED
10408
10409 2005-11-29  Julien MOUTTE  <julien@moutte.net>
10410
10411         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
10412         patch from bug #322704 (Alessandro Decina).
10413
10414 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10415
10416         * gst-libs/gst/audio/Makefile.am:
10417           folded audiofilter into the audio library
10418
10419 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10420
10421         * gst/videoscale/gstvideoscale.h:
10422         * gst/videoscale/gstvideoscale.c:
10423           remove unimplemented scale methods
10424
10425 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
10426
10427         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
10428           Don't leak caps.
10429
10430 2005-11-28  Julien MOUTTE  <julien@moutte.net>
10431
10432         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
10433         (gst_ximagesink_setcaps):
10434         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
10435         (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
10436         happens (only visible on ximagesink but bug is in xv too) set_caps was
10437         destroying the internal x[v]image used to memcpy non locally alloced
10438         buffers so that it got renewed on next _chain. The issue is that 
10439         _expose will try to put that image as it reffed it in _put.
10440         Using gst_buffer_unref instead of destroy fixes it !
10441
10442 2005-11-28  Edward Hervey  <edward@fluendo.com>
10443
10444         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
10445         (try_to_link_1), (queue_filled_cb):
10446         Better use of the queues. Start with a small size queue and only increase
10447         the size of the queues when the other queues are empty.
10448
10449 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10450
10451         * gst-libs/gst/video/Makefile.am:
10452           compile in copied-over videofilter into the video library
10453         * gst-libs/gst/video/videosink.h:
10454           rename the header to gstvideosink.h since it's a base GstObject class
10455         * sys/ximage/ximagesink.h:
10456         * sys/xvimage/xvimagesink.h:
10457           use the new header
10458
10459 2005-11-28  Wim Taymans  <wim@fluendo.com>
10460
10461         * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
10462         * gst/playback/gstplaybasebin.h:
10463         Prepare to handle errors betters.
10464
10465         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
10466         Set sinks to PAUSED first before adding and linking them so that
10467         we don't interrupt dataflow.
10468
10469 2005-11-28  Wim Taymans  <wim@fluendo.com>
10470
10471         * gst-libs/gst/audio/TODO:
10472         Updated TODO
10473
10474         * gst-libs/gst/audio/gstaudiosink.c:
10475         (gst_audioringbuffer_open_device),
10476         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
10477         (gst_audioringbuffer_release):
10478         Small cleanups.
10479
10480         * gst-libs/gst/audio/gstbaseaudiosink.c:
10481         (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
10482         (gst_base_audio_sink_change_state):
10483         Slave to the master clock when going to PLAYING and unslave when
10484         going to PAUSED.
10485
10486         * gst-libs/gst/audio/gstringbuffer.c:
10487         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
10488         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
10489         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
10490         (gst_ring_buffer_clear_all), (wait_segment),
10491         (gst_ring_buffer_commit), (gst_ring_buffer_read),
10492         (gst_ring_buffer_advance):
10493         * gst-libs/gst/audio/gstringbuffer.h:
10494         Add some docs and cleanups.
10495
10496 2005-11-28  Julien MOUTTE  <julien@moutte.net>
10497
10498         * sys/xvimage/xvimagesink.c:
10499         (gst_xvimagesink_navigation_send_event): Fix navigation events
10500         coordinates translation with pixel aspect ratios.
10501
10502 2005-11-28  Julien MOUTTE  <julien@moutte.net>
10503
10504         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
10505         Use calculated video geometry from _setcaps instead of buffer
10506         caps to respect pixel aspect ratio. (fixes #322388)
10507
10508 2005-11-28  Julien MOUTTE  <julien@moutte.net>
10509
10510         * docs/libs/tmpl/gstcolorbalance.sgml:
10511         * docs/libs/tmpl/gstmixer.sgml:
10512         * docs/libs/tmpl/gstxoverlay.sgml:
10513         * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
10514         interface.
10515
10516 2005-11-28  Julien MOUTTE  <julien@moutte.net>
10517
10518         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
10519         Refuse to create an XvImage if we can't find the format.
10520
10521 2005-11-28  Edward Hervey  <edward@fluendo.com>
10522
10523         * gst-libs/gst/riff/riff-media.c:
10524         (gst_riff_create_audio_template_caps):
10525         Add ATRAC3 to the list of riff-possible audio caps.
10526         I know we still don't have a plugin for atrac3, but it's saner to output
10527         that than a cryptic mimetype.
10528
10529 2005-11-27  Edward Hervey  <edward@fluendo.com>
10530
10531         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
10532         Don't try to create a zero-sized subbuffer.
10533
10534 2005-11-27  Julien MOUTTE  <julien@moutte.net>
10535
10536         * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
10537         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
10538         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
10539         (gst_ximagesink_expose): Fixed a tricky race.
10540         * sys/ximage/ximagesink.h:
10541         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
10542         (gst_xvimagesink_expose): Fixed a tricky race.
10543         * sys/xvimage/xvimagesink.h:
10544
10545 2005-11-27  Edward Hervey  <edward@fluendo.com>
10546
10547         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
10548         (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
10549         Remove unused properties, and add queues between demuxers and decoders
10550         so that a lot more files can preroll properly.
10551
10552 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
10553
10554         * gst-libs/gst/net/Makefile.am:
10555         * gst-libs/gst/rtp/Makefile.am:
10556         * gst-libs/gst/tag/Makefile.am:
10557           remove silly include
10558         * gst/tags/Makefile.am:
10559         * gst/tags/gsttagediting.c:
10560         * gst/tags/gsttageditingprivate.h:
10561         * gst/tags/tagedit.vcproj:
10562           remove directory, is as good as empty
10563
10564 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
10565
10566         * configure.ac:
10567           added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
10568         * gst-libs/Makefile.am:
10569         * gst-libs/gst/audio/Makefile.am:
10570         * gst-libs/gst/interfaces/Makefile.am:
10571         * gst-libs/gst/net/Makefile.am:
10572         * gst-libs/gst/riff/Makefile.am:
10573         * gst-libs/gst/rtp/Makefile.am:
10574         * gst-libs/gst/tag/Makefile.am:
10575         * gst-libs/gst/video/Makefile.am:
10576           and use them
10577
10578 2005-11-27  Julien MOUTTE  <julien@moutte.net>
10579
10580         * docs/libs/tmpl/gstcolorbalance.sgml:
10581         * docs/libs/tmpl/gstmixer.sgml:
10582         * docs/libs/tmpl/gstxoverlay.sgml:
10583         * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
10584         * sys/ximage/ximagesink.h:
10585         * sys/xvimage/xvimagesink.h: More and more documentation.
10586
10587 2005-11-26  Julien MOUTTE  <julien@moutte.net>
10588
10589         * docs/libs/gst-plugins-base-libs-docs.sgml:
10590         * docs/libs/gst-plugins-base-libs-sections.txt:
10591         * docs/libs/tmpl/gstcolorbalance.sgml:
10592         * docs/libs/tmpl/gstmixer.sgml:
10593         * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
10594         to documentation.
10595
10596 2005-11-26  Julien MOUTTE  <julien@moutte.net>
10597
10598         * docs/plugins/Makefile.am:
10599         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10600         * docs/plugins/gst-plugins-base-plugins-sections.txt:
10601         * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
10602
10603 2005-11-26  Julien MOUTTE  <julien@moutte.net>
10604
10605         * docs/plugins/Makefile.am:
10606         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10607         * docs/plugins/gst-plugins-base-plugins-sections.txt:
10608         * docs/plugins/inspect/plugin-adder.xml:
10609         * docs/plugins/inspect/plugin-alsa.xml:
10610         * docs/plugins/inspect/plugin-audioconvert.xml:
10611         * docs/plugins/inspect/plugin-audiorate.xml:
10612         * docs/plugins/inspect/plugin-audioresample.xml:
10613         * docs/plugins/inspect/plugin-audiotestsrc.xml:
10614         * docs/plugins/inspect/plugin-decodebin.xml:
10615         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
10616         * docs/plugins/inspect/plugin-gnomevfs.xml:
10617         * docs/plugins/inspect/plugin-ogg.xml:
10618         * docs/plugins/inspect/plugin-playbin.xml:
10619         * docs/plugins/inspect/plugin-subparse.xml:
10620         * docs/plugins/inspect/plugin-tcp.xml:
10621         * docs/plugins/inspect/plugin-theora.xml:
10622         * docs/plugins/inspect/plugin-typefindfunctions.xml:
10623         * docs/plugins/inspect/plugin-video4linux.xml:
10624         * docs/plugins/inspect/plugin-videorate.xml:
10625         * docs/plugins/inspect/plugin-videoscale.xml:
10626         * docs/plugins/inspect/plugin-videotestsrc.xml:
10627         * docs/plugins/inspect/plugin-volume.xml:
10628         * docs/plugins/inspect/plugin-vorbis.xml:
10629         * docs/plugins/inspect/plugin-ximagesink.xml:
10630         * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
10631         * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
10632
10633 2005-11-26  Edward Hervey  <edward@fluendo.com>
10634
10635         * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
10636         Properly return GstFlowReturn from gst_pad_push in chain functions.
10637
10638 2005-11-25  Michael Smith  <msmith@fluendo.com>
10639
10640         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
10641         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
10642         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
10643         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
10644           Handle various conditions better when we don't understand a stream.
10645           Removes a heap of CRITICALs on ogg streams containing unknown data.
10646
10647 2005-11-24  Andy Wingo  <wingo@pobox.com>
10648
10649         * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
10650         Be threadsafe.
10651
10652 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10653
10654         * configure.ac: back to HEAD
10655
10656 === release 0.9.6 ===
10657
10658 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
10659
10660         * configure.ac:
10661           releasing 0.9.6, "White Eight"
10662
10663 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10664
10665         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
10666         * docs/plugins/inspect/plugin-sine.xml:
10667           remove sinesrc some more
10668
10669 2005-11-23  Wim Taymans  <wim@fluendo.com>
10670
10671         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
10672         If we are reading too slowly, jump forward in the ringbuffer
10673         instead of blocking.
10674
10675 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
10676
10677         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
10678         (gst_visual_chain):
10679         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
10680         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
10681         (gst_videorate_chain):
10682         * gst/videotestsrc/gstvideotestsrc.c:
10683         (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
10684         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
10685         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
10686         (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
10687         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10688         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10689           Updates for API changes
10690
10691 2005-11-23  Wim Taymans  <wim@fluendo.com>
10692
10693         * gst-libs/gst/audio/gstbaseaudiosink.c:
10694         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
10695         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10696         Fix for calibration API change.
10697
10698 2005-11-23  Michael Smith <msmith@fluendo.com>
10699
10700         * gst-libs/gst/audio/multichannel.c:
10701         (gst_audio_get_channel_positions),
10702         (gst_audio_set_channel_positions),
10703         (gst_audio_set_structure_channel_positions_list),
10704         (gst_audio_fixate_channel_positions):
10705           Use gst_value_array_*() functions on value arrays, not
10706           gst_value_list_*().
10707
10708 2005-11-23  Edward Hervey  <edward@fluendo.com>
10709
10710         * autogen.sh:
10711         eheh, sinesrc is gone. Replacing sample srcfile by existing one.
10712         Fixes autogen
10713
10714 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10715
10716         * check/Makefile.am:
10717         * check/elements/videotestsrc.c: (setup_videotestsrc),
10718         (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
10719         (main):
10720           add a test for videotestsrc
10721
10722 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10723
10724         * gst/sine/.cvsignore:
10725         * gst/sine/Makefile.am:
10726         * gst/sine/gstsinesrc.c:
10727         * gst/sine/gstsinesrc.h:
10728         * gst/sine/sinesrc.vcproj:
10729           and remove sinesrc from the repository.  Closes #321446
10730
10731 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10732
10733         * configure.ac:
10734         * gst-plugins-base.spec.in:
10735           remove sinesrc from the build
10736
10737 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10738
10739         * check/Makefile.am:
10740         * check/elements/audiotestsrc.c: (setup_audiotestsrc),
10741         (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
10742         (main):
10743           add a test for audiotestsrc, testing all waves.  Even seems
10744           leak-free at first glance, nice job Stefan
10745
10746 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
10747
10748         * po/af.po:
10749         * po/az.po:
10750         * po/cs.po:
10751         * po/en_GB.po:
10752         * po/hu.po:
10753         * po/it.po:
10754         * po/nb.po:
10755         * po/nl.po:
10756         * po/or.po:
10757         * po/sq.po:
10758         * po/sr.po:
10759         * po/sv.po:
10760         * po/uk.po:
10761         * po/vi.po:
10762           Translation string updates
10763
10764         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
10765         (gst_v4lsrc_set_caps):
10766         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10767         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10768         * sys/v4l/v4lsrc_calls.h:
10769           Improve v4lsrc, by making it work again.
10770
10771 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
10772
10773         * ext/libvisual/visual.c: (gst_visual_chain):
10774           Fix the fps calculations.
10775
10776         * gst/ffmpegcolorspace/avcodec.h:
10777           Move structure element for clarity
10778
10779         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
10780         * gst-libs/gst/interfaces/tunernorm.h:
10781         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
10782         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
10783         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
10784         (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
10785         (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
10786         (gst_v4lmjpegsrc_getcaps):
10787         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
10788         (gst_v4lsrc_set_caps):
10789         * sys/v4l/gstv4lsrc.h:
10790         * sys/v4l/v4l_calls.c: (gst_v4l_open):
10791         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10792         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10793         * sys/v4l/v4lsrc_calls.h:
10794           Fractional framerates...
10795
10796 2005-11-22  Wim Taymans  <wim@fluendo.com>
10797
10798         * gst-libs/gst/audio/gstbaseaudiosink.c:
10799         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
10800         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10801         And we provide a clock by default, of course...
10802
10803 2005-11-22  Wim Taymans  <wim@fluendo.com>
10804
10805         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
10806         This clock can be slaved to a master clock now.
10807
10808         * gst-libs/gst/audio/gstbaseaudiosink.c:
10809         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
10810         (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
10811         (gst_base_audio_sink_set_clock),
10812         (gst_base_audio_sink_set_property),
10813         (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
10814         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10815         * gst-libs/gst/audio/gstbaseaudiosink.h:
10816         Handle slaving the internal clock to the clock selected in the
10817         pipeline.
10818         Add property to make the basesink not provide a clock.
10819
10820         * gst-libs/gst/rtp/gstbasertpdepayload.c:
10821         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
10822         (gst_base_rtp_depayload_wait):
10823         * gst-libs/gst/rtp/gstbasertpdepayload.h:
10824         We can use the clock in GstElement, no need to store it ourselves.
10825
10826 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
10827
10828         * docs/libs/tmpl/gstaudio.sgml:
10829           update
10830         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
10831         (gst_paranoia_endian_get_type):
10832         * ext/theora/theoraenc.c: (gst_border_mode_get_type):
10833         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
10834         * gst/audiotestsrc/gstaudiotestsrc.c:
10835         (gst_audiostestsrc_wave_get_type):
10836         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
10837         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
10838         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
10839         (gst_sync_method_get_type), (gst_unit_type_get_type),
10840         (gst_client_status_get_type), (gst_multifdsink_class_init),
10841         (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
10842         (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
10843         (gst_multifdsink_get_property):
10844         * gst/tcp/gstmultifdsink.h:
10845         * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
10846         * gst/videotestsrc/gstvideotestsrc.c:
10847         (gst_videotestsrc_pattern_get_type):
10848           remove deprecated properties
10849           fix up enums to correctly have short lowercase dashed nicks
10850
10851 2005-11-22  Michael Smith <msmith@fluendo.com>
10852
10853         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
10854         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
10855           Add underscore.
10856
10857 2005-11-22  Michael Smith <msmith@fluendo.com>
10858
10859         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
10860         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
10861           Use utility method for scaling clocktime for fractional framerates.
10862
10863 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
10864
10865         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
10866         (gst_visual_chain):
10867         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
10868         * ext/theora/theoradec.c: (theora_handle_type_packet):
10869         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
10870         (theora_enc_chain):
10871         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
10872         * gst-libs/gst/video/video.c: (gst_video_frame_rate):
10873         * gst-libs/gst/video/video.h:
10874         * gst/ffmpegcolorspace/avcodec.h:
10875         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10876         (gst_ffmpeg_caps_to_pixfmt):
10877         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10878         (gst_ffmpegcsp_set_caps):
10879         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
10880         (gst_videorate_setcaps), (gst_videorate_blank_data),
10881         (gst_videorate_chain):
10882         * gst/videotestsrc/gstvideotestsrc.c:
10883         (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
10884         (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
10885         (gst_videotestsrc_event), (gst_videotestsrc_create):
10886         * gst/videotestsrc/gstvideotestsrc.h:
10887         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
10888         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
10889         (gst_ximagesink_get_times), (gst_ximagesink_init):
10890         * sys/ximage/ximagesink.h:
10891         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
10892         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
10893         (gst_xvimagesink_get_times), (gst_xvimagesink_init):
10894         * sys/xvimage/xvimagesink.h:
10895           Convert elements to use fractions for their framerate.
10896           V4L elements to come later tonight.
10897
10898 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
10899
10900         * gst-libs/gst/audio/audio.c:
10901         * gst-libs/gst/audio/audio.h:
10902           remove some deprecated functions
10903
10904 2005-11-22  Andy Wingo  <wingo@pobox.com>
10905
10906         * Update for gst_tag_setter API changes.
10907
10908 2005-11-22  Andy Wingo  <wingo@pobox.com>
10909
10910         * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
10911         (gst_ogg_demux_perform_seek):
10912         * ext/theora/theoradec.c (theora_dec_sink_event):
10913         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
10914         update-funcnames.
10915
10916 2005-11-22  Wim Taymans  <wim@fluendo.com>
10917
10918         * examples/seeking/seek.c: (main):
10919         Give higher priority to bus signals than the gtk events
10920         to fix a race condition in the segment looping.
10921
10922 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
10923
10924         * ext/theora/Makefile.am:
10925         * ext/vorbis/Makefile.am:
10926         * gst-libs/gst/tag/Makefile.am:
10927         * gst-plugins-base.spec.in:
10928           Rename libgsttagedit to libgsttag (#322117).
10929
10930 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
10931
10932         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
10933         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
10934           Call gst_x_overlay_prepare_xwindow_id() to give applications
10935           a final chance to set their own xwindow id before the video
10936           sink creates its own window.
10937
10938 2005-11-22  Julien MOUTTE  <julien@moutte.net>
10939
10940         * sys/xvimage/xvimagesink.c:
10941         (gst_xvimagesink_navigation_send_event): Handle navigation
10942         events correcly with borders if applicable.
10943
10944 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
10945
10946         Patch by: Luca Ognibene
10947
10948         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10949         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
10950         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10951         (gst_ffmpegcsp_caps_remove_format_info):
10952         * gst/ffmpegcolorspace/imgconvert.c:
10953         * gst/ffmpegcolorspace/imgconvert_template.h:
10954           Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
10955           #318353); use gst_structure_has_name().
10956
10957 2005-11-22  Julien MOUTTE  <julien@moutte.net>
10958
10959         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
10960         (gst_ximagesink_class_init): Add debug macros on functions.
10961         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
10962         (gst_xvimagesink_xwindow_draw_borders),
10963         (gst_xvimagesink_xvimage_put),
10964         (gst_xvimagesink_xwindow_update_geometry),
10965         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
10966         (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
10967         (gst_xvimagesink_xcontext_clear),
10968         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
10969         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
10970         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
10971         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
10972         (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
10973         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
10974         * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
10975         expose while being PAUSED, out of data flow navigation events, etc..
10976
10977 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
10978
10979         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
10980         * gst-libs/gst/audio/audio.h:
10981           fix prototype - wondering why the test worked regardless
10982
10983 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
10984
10985         * check/Makefile.am:
10986         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
10987         * gst-libs/gst/audio/audio.h:
10988           add a method that returns a proper GstClockTime
10989
10990 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
10991
10992         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
10993         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
10994         * gst-libs/gst/interfaces/xoverlay.h:
10995           Remove everything having to do with the desired size; add 
10996           gst_x_overlay_prepare_xwindow_id() function; remove the
10997           'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
10998           post a message on the bus instead (#321816).
10999
11000         * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
11001         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
11002         (gst_xvimagesink_xoverlay_init):
11003           Remove desired size stuff (#321816).
11004
11005 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
11006
11007         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
11008         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
11009         (mpeg_video_type_find), (mpeg_video_stream_type_find):
11010           Terminate vararg functions with NULL instead of 0 to 
11011           make gcc4 happy.
11012
11013 2005-11-21  Andy Wingo  <wingo@pobox.com>
11014
11015         patch by: Sebastien Cote <sebas642@yahoo.ca>
11016         
11017         * gst-libs/gst/rtp/gstrtpbuffer.h: 
11018         * gst-libs/gst/rtp/gstrtpbuffer.c
11019         (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
11020
11021 2005-11-21  Andy Wingo  <wingo@pobox.com>
11022
11023         * gst/playback/gstplaybin.c (gen_audio_element) 
11024         (gen_video_element): Use the new MISSING_PLUGIN core error
11025         category. Closes #320060.
11026
11027         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): 
11028         * gst/videorate/gstvideorate.c (gst_videorate_event):
11029         * ext/theora/theoradec.c (theora_dec_sink_event): 
11030         * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
11031         stream lock.
11032
11033         * gst/subparse/gstsubparse.c (gst_subparse_src_event):
11034         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
11035         stream lock changes.
11036
11037 2005-11-21  Wim Taymans  <wim@fluendo.com>
11038
11039         * gst-libs/gst/audio/gstbaseaudiosink.c:
11040         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
11041         (gst_base_audio_sink_provide_clock),
11042         (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
11043         (gst_base_audio_sink_change_state):
11044         * gst/audioresample/gstaudioresample.c:
11045         Segment update fix.
11046
11047 2005-11-21  Andy Wingo  <wingo@pobox.com>
11048
11049         * *.h:
11050         * *.c: Ran scripts/update-macros. Oh yes.
11051
11052 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
11053
11054         * sys/ximage/Makefile.am:
11055         * sys/ximage/ximage.c:
11056           Rename ximage plugin to ximagesink (#321426) (Don't forget to
11057           remove your old libgstximage.* manually if necessary).
11058
11059 2005-11-21  Michael Smith <msmith@fluendo.com>
11060
11061         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
11062           Minimal fix for bug #320200: set the min/max bitrate in the correct
11063           units. A better fix would be to upgrade to the RATEMANAGE2
11064           interface, rather than using the deprecated interface used here, but
11065           that would require an update in our libvorbis dependency (to 1.1),
11066           which is probably undesirable.
11067
11068 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
11069
11070         * ext/libvisual/visual.c: (get_buffer):
11071         * gst-libs/gst/audio/gstbaseaudiosrc.c:
11072         (gst_base_audio_src_fixate):
11073         * gst/audioconvert/gstaudioconvert.c:
11074         (gst_audio_convert_fixate_caps):
11075         * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
11076         * gst/audiotestsrc/gstaudiotestsrc.c:
11077         (gst_audiotestsrc_src_fixate):
11078         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
11079         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
11080         * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
11081         * gst/videotestsrc/gstvideotestsrc.c:
11082         (gst_videotestsrc_src_fixate):
11083         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
11084         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
11085           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
11086           (#322027)
11087
11088
11089 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
11090
11091         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
11092         (gst_riff_create_iavs_caps):
11093         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
11094         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
11095         (gst_riff_parse_info):
11096         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
11097         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
11098         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
11099           Fixes for GST_FOURCC_FORMAT API change.
11100
11101 2005-11-21  Andy Wingo  <wingo@pobox.com>
11102
11103         patch by: Alessandro Dessina <alessandro nnva org>
11104
11105         * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
11106         * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
11107         (gst_ogg_parse_chain):
11108         * ext/theora/theoraenc.c (theora_set_header_on_caps):
11109         * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
11110         * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
11111         gst_value_list calls on arrays. Fixes #321962.
11112
11113 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
11114
11115         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
11116         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
11117         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
11118         * gst/adder/gstadder.c: (gst_adder_init),
11119         (gst_adder_request_new_pad), (gst_adder_collected),
11120         (gst_adder_change_state):
11121           Update for gst_collectpads_foo() to gst_collect_pads_foo()
11122           API change.
11123
11124 2005-11-21  Michael Smith <msmith@fluendo.com>
11125
11126         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
11127         (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
11128           Properly handle pad_push return values.
11129
11130 2005-11-20  Jan Schmidt  <thaytan@mad.scientist.com>
11131
11132         * gst-libs/gst/tag/Makefile.am:
11133         * gst-libs/gst/tag/gstvorbistag.c:
11134         (gst_tag_list_to_vorbiscomment_buffer):
11135           Remove obsolete vorbistag element and debug category.
11136
11137         * gst/playback/gstplaybasebin.c: (check_queue):
11138           Don't divide by 0 when queue-threshold is 0.
11139
11140         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
11141           Don't modify an existing pixel-aspect-ratio if we fail to read
11142           a new one.
11143
11144 2005-11-20  Wim Taymans  <wim@fluendo.com>
11145
11146         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
11147         (gst_vorbisenc_push_packet):
11148         GST_PAD_IS_USABLE is gone, use the return value of
11149         the push or pad_alloc_buffer instead.
11150
11151 2005-11-18  Julien MOUTTE  <julien@moutte.net>
11152
11153         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
11154         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
11155         (gst_ximagesink_ximage_destroy),
11156         (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
11157         (gst_ximagesink_xwindow_new),
11158         (gst_ximagesink_xwindow_update_geometry),
11159         (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
11160         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
11161         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
11162         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
11163         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
11164         (gst_ximagesink_navigation_send_event),
11165         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
11166         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
11167         (gst_ximagesink_finalize), (gst_ximagesink_init),
11168         (gst_ximagesink_class_init):
11169         * sys/ximage/ximagesink.h: Refactoring of ximagesink.
11170         This new version brings correct software scaling, non flickering
11171         window while resizing, pixel aspect ratio handling, usage of
11172         hardware buffer pools, out of data flow event thread for 
11173         navigation and handling of expose events even when being PAUSED,
11174         a new property to keep video aspect ratio when resizing, etc...
11175
11176 2005-11-18  Julien MOUTTE  <julien@moutte.net>
11177
11178         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
11179         (gst_videoscale_fixate_caps): Introduce back caps fixate with
11180         handling of PAR.
11181
11182 2005-11-18  Edward Hervey  <bilboed@dvdsrc.fluendo.com>
11183
11184         * gst/playback/gstdecodebin.c: (gst_decode_bin_init): 
11185         Unsetting IS_SINK flag from the fakesink, so decodebin
11186         never behaves as a sink.
11187
11188 2005-11-17  Wim Taymans  <wim@fluendo.com>
11189
11190         * gst-libs/gst/audio/gstbaseaudiosrc.c:
11191         (gst_base_audio_src_change_state):
11192         Fix the audiosrc base class again, we did not unflush.
11193
11194 2005-11-17  Julien MOUTTE  <julien@moutte.net>
11195
11196         * examples/seeking/seek.c: (make_dv_pipeline),
11197         (make_vorbis_theora_pipeline), (make_avi_pipeline),
11198         (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
11199         to ogg/vorbis/theora pipeline.
11200
11201 2005-11-17  Wim Taymans  <wim@fluendo.com>
11202
11203         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
11204         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
11205         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
11206         Fix EOS on multiple streams.
11207         More debugging.
11208
11209 2005-11-16  Wim Taymans  <wim@fluendo.com>
11210
11211         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
11212         (gst_ogg_demux_perform_seek):
11213         Segment done must include stream time.
11214
11215         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
11216         (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
11217         (gst_ogg_mux_change_state):
11218         Fix ogg muxer again.
11219
11220 2005-11-16  Wim Taymans  <wim@fluendo.com>
11221
11222         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
11223         Fix compile again.
11224
11225 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
11226
11227         * ext/libvisual/visual.c: (gst_visual_init):
11228         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
11229         * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
11230         (gst_ogg_parse_chain):
11231         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
11232         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
11233         * ext/theora/theoradec.c: (gst_theora_dec_init):
11234         * ext/theora/theoraenc.c: (gst_theora_enc_init):
11235         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
11236         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
11237         * gst/adder/gstadder.c: (gst_adder_class_init),
11238         (gst_adder_dispose):
11239         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
11240         * gst/subparse/gstsubparse.c: (gst_subparse_init):
11241         * gst/videorate/gstvideorate.c: (gst_videorate_init):
11242           Fix a whole set of pad template leaks
11243
11244 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
11245
11246         * check/generic/states.c: (GST_START_TEST):
11247           fix the test so that it only checks for elements that are part of
11248           this source module
11249
11250 2005-11-16  Michael Smith <msmith@fluendo.com>
11251
11252         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
11253         (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
11254         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11255         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11256         (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
11257         (gst_ogg_mux_change_state):
11258           Fix leaking collectpads.
11259
11260 2005-11-16  Edward Hervey  <edward@fluendo.com>
11261
11262         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
11263         (gst_videorate_event), (gst_videorate_chain):
11264         Handle segment seeks
11265
11266 2005-11-16  Wim Taymans  <wim@fluendo.com>
11267
11268         * gst-libs/gst/audio/gstbaseaudiosink.c:
11269         (gst_base_audio_sink_provide_clock),
11270         (gst_base_audio_sink_change_state):
11271         Set ringbuffer to non-flushing when going to PAUSED, set to
11272         flushing again when going to READY.
11273
11274         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
11275         (gst_ring_buffer_stop):
11276         Start in flushing mode by default.
11277         Don't set flushing in the _stop method, let the app call
11278         this explicitly.
11279
11280 2005-11-16  Julien MOUTTE  <julien@moutte.net>
11281
11282         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
11283         * gst-libs/gst/video/videosink.h: Add helper function needed
11284         for video sinks.
11285
11286 2005-11-16  Tim-Philipp Müller  <tim at centricular dot net>
11287
11288         * gst/videoscale/gstvideoscale.c:
11289         (gst_videoscale_handle_src_event):
11290           Don't leak reference to pad parent.
11291
11292 2005-11-16  Wim Taymans  <wim@fluendo.com>
11293
11294         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
11295         Set ringbuffer to flushing when stopping so that we don't
11296         block on wait_segment anymore and livelock.
11297
11298 2005-11-16  Wim Taymans  <wim@fluendo.com>
11299
11300         * examples/seeking/seek.c: (send_event), (do_seek),
11301         (loop_toggle_cb), (segment_done), (main):
11302         Added looping checkbox.
11303
11304 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
11305
11306         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
11307         (gst_ogg_demux_init):
11308         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
11309         (gst_vorbis_dec_init):
11310           revert unrefs, they don't pass make check
11311
11312 2005-11-15  Johan Dahlin  <johan@gnome.org>
11313
11314         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
11315         (gst_ogg_demux_init), (gst_ogg_demux_finalize):
11316         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
11317         (gst_vorbis_dec_init):
11318         Fix pad template leaks. 
11319
11320 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
11321
11322         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
11323           Make state change function thread safe.
11324
11325 2005-11-15  Edward Hervey  <edward@fluendo.com>
11326
11327         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
11328         (gst_ogg_demux_class_init):
11329         Implement GstElement::send_event, so we can send seek events
11330         in GST_STATE_READY
11331
11332 2005-11-14  Julien MOUTTE  <julien@moutte.net>
11333
11334         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
11335         Discovered how to take away flickering while resizing the
11336         window. Please don't put that in ximagesink, refactoring in
11337         progress.
11338
11339 2005-11-14  Michael Smith <msmith@fluendo.com>
11340
11341         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
11342         (gst_multifdsink_render):
11343           Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
11344
11345 2005-11-14  Tim-Philipp Müller  <tim at centricular dot net>
11346
11347         * gst/playback/gstplaybin.c: (gen_audio_element):
11348           Use autoaudiosink, it tends to be more widely available than
11349           autoaudiiosink.
11350           
11351 2005-11-14  Andy Wingo  <wingo@pobox.com>
11352
11353         * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
11354         as well if it is available. Fixes #316442.
11355
11356 2005-11-14  Michael Smith <msmith@fluendo.com>
11357
11358         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
11359         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
11360         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11361         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11362         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
11363         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
11364         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
11365         (gst_vorbisenc_change_state):
11366           Fix a small memory leak in vorbisenc.
11367           Fix large memory leaks in oggmux, also fix lots of state change
11368           bugs in oggmux.
11369
11370 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
11371
11372         * gst/videotestsrc/gstvideotestsrc.c:
11373         (gst_videotestsrc_class_init), (gst_videotestsrc_init),
11374         (gst_videotestsrc_src_fixate):
11375           move fixation to a fixate function
11376           remove negotiate function, basesrc's is good enough
11377           fixes a bug for check when using the element alone
11378
11379 2005-11-13  Edward Hervey  <edward@fluendo.com>
11380
11381         * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
11382         (key_toggle_cb), (main):
11383         Added checkboxes for adding/removing the accurate and key_unit seek
11384         flags.
11385
11386 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
11387
11388         * configure.ac: back to HEAD
11389
11390 === release 0.9.5 ===
11391
11392 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
11393
11394         * configure.ac:
11395           releasing 0.9.5, "No No Kia"
11396
11397 2005-11-11  Edward Hervey  <edward@fluendo.com>
11398
11399         * examples/seeking/seek.c: (make_parselaunch_pipeline):
11400         Added parse-launch syntax seeking mode for the seeking example.
11401         This should help stress-test even more cases.
11402         Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
11403
11404 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
11405
11406         * sys/xvimage/xvimagesink.c:
11407         (gst_xvimagesink_navigation_send_event):
11408           Check whether peer pad exists before sending navigation events
11409           to it.
11410
11411 2005-11-11  Michael Smith <msmith@fluendo.com>
11412
11413         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
11414         (gst_vorbisenc_buffer_from_packet):
11415         * ext/vorbis/vorbisenc.h:
11416           Set duration on encoded buffers. This allows oggmux's
11417           max_page_delay parameter to actually work.
11418
11419 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
11420
11421         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11422         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
11423         (gst_ffmpegcsp_avpicture_fill):
11424         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11425         (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
11426           Make palettes work again (see #132341). Use our own macros
11427           for rounding up.
11428
11429 2005-11-10  Andy Wingo  <wingo@pobox.com>
11430
11431         * gst/playback/gstplaybasebin.c (prepare_output): Fix format
11432         string doober.
11433
11434 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
11435
11436         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11437         (gst_ffmpegcsp_transform_caps):
11438           Prefer passthrough in transform_caps
11439
11440 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
11441
11442         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
11443           check for ALSA errors properly, instead of relying on ALSA's
11444           error strings to serve to the user.
11445
11446 2005-11-10  Wim Taymans  <wim@fluendo.com>
11447
11448         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
11449         (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
11450         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
11451         Modernise the seek code.
11452
11453 2005-11-10  Michael Smith <msmith@fluendo.com>
11454         
11455         * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
11456         (setup_substreams), (set_active_source):
11457           Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
11458           trying to go to NULL if we failed to read a file.
11459
11460 2005-11-10  Wim Taymans  <wim@fluendo.com>
11461
11462         * gst/audiotestsrc/gstaudiotestsrc.c:
11463         (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
11464         (gst_audiotestsrc_create):
11465         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
11466         (gst_sinesrc_get_times), (gst_sinesrc_create):
11467         * gst/videotestsrc/gstvideotestsrc.c:
11468         (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
11469         (gst_videotestsrc_create):
11470         The base class can now sync for us.
11471
11472 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
11473
11474         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
11475           a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
11476           name=source autoprobe=false autoprobe-fps=false copy-mode=1
11477           device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
11478           format=(fourcc)I420" ! xvimagesink
11479
11480 2005-11-10  Tim-Philipp Müller  <tim at centricular dot net>
11481
11482         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
11483         (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
11484         (gst_sinesrc_newsegment):
11485           Send newsegment event in TIME format, set duration if
11486           num-buffers is set, fix duration querying.
11487
11488 2005-11-10  Michael Smith <msmith@fluendo.com>
11489
11490         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
11491         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11492         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11493         (gst_ogg_mux_collected):
11494          Fix EOS handling, partially. Now forwarding an EOS event once we have
11495          EOS on all pads works correctly. However, we still don't properly set
11496          EOS on the actual ogg stream pages.
11497
11498 2005-11-09  Tim-Philipp Müller  <tim at centricular dot net>
11499
11500         * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
11501           Set elements to NULL state before disposing of them.
11502
11503 2005-11-08  Sebastien Cote  <sebas642 at yahoo dot ca>
11504
11505         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
11506
11507         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11508         (gst_base_rtp_depayload_init),
11509         (gst_base_rtp_depayload_set_gst_timestamp):
11510         * gst-libs/gst/rtp/gstbasertpdepayload.h:
11511           We need to send a newsegment event for each instance, not
11512           just for the first instance of this class (get rid of
11513           static variable in function). (#321011).
11514           
11515 2005-11-08  Michael Smith <msmith@fluendo.com>
11516
11517         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
11518         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
11519         (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
11520         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
11521           Forward port rewrite of muxing strategy to 0.9 version of oggmux.
11522           This makes us mux things correctly according to the ogg muxing
11523           rules. Still not handling EOS correctly right now, though.
11524
11525 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
11526
11527         * gst/audioconvert/gstaudioconvert.c:
11528           Fix typo in docs. 
11529
11530 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
11531
11532         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
11533         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
11534           Initialise segment_stop to GST_CLOCK_TIME_NONE when
11535           creating a new chain; should fix live streaming. Also
11536           add more debug output and fix a typo.
11537
11538 2005-11-08  Brian Cameron  <brian dot cameron at sun dot com>
11539
11540         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
11541
11542         * gst/volume/gstvolume.c: (volume_set_caps):
11543           Fix compilation on Solaris with Forte. (#320923)
11544
11545 2005-11-08  Wim Taymans  <wim@fluendo.com>
11546
11547         * gst-libs/gst/audio/gstbaseaudiosink.c:
11548         (gst_base_audio_sink_render):
11549         No need to do a typecheck.
11550
11551 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
11552
11553         * ext/alsa/gstalsa.h:
11554           We register a debug category, so let's use it.
11555
11556 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
11557
11558         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11559         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
11560         Fixed a small problem.
11561
11562 2005-11-04  Wim Taymans  <wim@fluendo.com>
11563
11564         * examples/seeking/Makefile.am:
11565         * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
11566         (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
11567         (make_playerbin_pipeline), (format_value), (update_scale),
11568         (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
11569         (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
11570         (print_usage), (main):
11571         Added app for playback speed testing.
11572
11573         * examples/seeking/seek.c: (dynamic_link),
11574         (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
11575         (make_mpeg_pipeline), (do_seek), (set_update_scale),
11576         (message_received), (main):
11577         Updated seek example.
11578
11579 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
11580
11581         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11582         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
11583         (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
11584         (gst_base_rtp_depayload_set_clock):
11585         * gst-libs/gst/rtp/gstbasertpdepayload.h:
11586         Don't sleep on the bench (system clock) when you have a nice 
11587         comfortable bed (Gstreamer clock) to sleep on.
11588
11589 2005-11-03  Wim Taymans  <wim@fluendo.com>
11590
11591         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11592         (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
11593         (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
11594         Handle the case where a pad_block failed.
11595
11596 2005-11-02  Sebastien Cote  <sebas642@yahoo.ca> 
11597
11598         reviewed by: Zeeshan Ali  <zeenix@gmail.com>
11599
11600         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11601         (gst_base_rtp_depayload_add_to_queue),
11602         (gst_base_rtp_depayload_push),
11603         (gst_base_rtp_depayload_set_gst_timestamp),
11604         (gst_base_rtp_depayload_queue_release):
11605           Fixes some bugs in the depayloader's queuing/de-queueing code.
11606
11607 2005-10-31  Michael Smith <msmith@fluendo.com>
11608
11609         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
11610         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
11611         (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
11612           Patch from Alessandro Decina <alessandro@nnva.org>.
11613           Make oggdemux only find the final time in a chain, not per-pad,
11614           since the per-pad information can be very expensive to locate, and
11615           it isn't used anywhere. This makes reading a file containing
11616           OggSkeleton reasonably fast.
11617           Also, make chain finding work when there are logical bitstreams that
11618           can't be decoded. Fixes #319110.
11619
11620 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
11621
11622         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11623         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
11624         (gst_base_rtp_depayload_chain),
11625         (gst_base_rtp_depayload_add_to_queue),
11626         (gst_base_rtp_depayload_push),
11627         (gst_base_rtp_depayload_set_gst_timestamp),
11628         (gst_base_rtp_depayload_queue_release),
11629         (gst_base_rtp_depayload_start_thread),
11630         (gst_base_rtp_depayload_set_property),
11631         (gst_base_rtp_depayload_get_property):
11632         * gst-libs/gst/rtp/gstbasertpdepayload.h:
11633         Some random fixes, to fullfill the desires of thomas.
11634
11635 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
11636
11637         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11638         (gst_base_rtp_depayload_add_to_queue),
11639         (gst_base_rtp_depayload_push):
11640         Fixed the queueing algorithm.
11641
11642 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
11643
11644         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11645         (gst_base_rtp_depayload_push):
11646         A small fix
11647
11648 2005-10-31  Wim Taymans  <wim@fluendo.com>
11649
11650         * gst-libs/gst/audio/gstringbuffer.h:
11651         Don't break ABI.
11652
11653         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11654         (gst_ffmpeg_caps_to_pixfmt):
11655         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11656         (gst_ffmpegcsp_set_caps):
11657         Some more comments.
11658         Handle missing required caps fields better.
11659
11660 2005-10-31  Wim Taymans  <wim@fluendo.com>
11661
11662         * gst-libs/gst/audio/gstbaseaudiosink.c:
11663         (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
11664         (gst_base_audio_sink_render):
11665         * gst-libs/gst/audio/gstringbuffer.c:
11666         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
11667         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
11668         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
11669         (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
11670         (gst_ring_buffer_read):
11671         * gst-libs/gst/audio/gstringbuffer.h:
11672         Add flushing mode to the ringbuffer so that it in all cases does
11673         not try to handle more audio. This makes sure it does not try to
11674         block anymore when flushing and fixes a livelock.
11675
11676 2005-10-29  Tim-Philipp Müller  <tim at centricular dot net>
11677
11678         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
11679         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
11680         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
11681           Explicitly check for -1 values before doing a conversion
11682           and always map them to -1. (#315545)
11683
11684 2005-10-28  Thomas Vander Stichele  <thomas at apestaart dot org>
11685
11686         * gst/playback/gstplaybin.c: (gen_video_element):
11687           first try autovideosink, then xvimagesink, then error out
11688         * po/POTFILES.in:
11689           add translatable file
11690         * po/af.po:
11691         * po/az.po:
11692         * po/cs.po:
11693         * po/en_GB.po:
11694         * po/hu.po:
11695         * po/it.po:
11696         * po/nb.po:
11697         * po/nl.po:
11698         * po/or.po:
11699         * po/sq.po:
11700         * po/sr.po:
11701         * po/sv.po:
11702         * po/uk.po:
11703         * po/vi.po:
11704           update translations
11705
11706 2005-10-27  Philippe Khalaf <burger at speedy dot org> 
11707
11708         * gst-libs/gst/rtp/gstbasedepayload.c:
11709         * gst-libs/gst/rtp/gstbasedepayload.h:
11710           Minor cleanups
11711
11712 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
11713
11714         * gst/playback/.cvsignore:
11715         * gst/playback/decodetest.c:
11716         * gst/playback/test3.c:
11717           Port these two tests as well.
11718
11719 2005-10-27  Wim Taymans  <wim@fluendo.com>
11720
11721         * ext/theora/theoradec.c: (theora_dec_src_query),
11722         (theora_dec_sink_event):
11723         * ext/theora/theoraenc.c: (theora_enc_sink_event),
11724         (theora_enc_change_state):
11725         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
11726         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
11727         Take proper locks when handling events.
11728
11729 2005-10-27  Wim Taymans  <wim@fluendo.com>
11730
11731         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
11732         (gst_adder_change_state):
11733         Fix timestamps and fix deadlock when stopping the collectpads.
11734
11735 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
11736
11737         * gst-libs/gst/rtp/gstrtpbuffer.h:
11738         Declaring the payload types as strings too so that they can be used
11739         in the padtemplate inialization.
11740
11741 2005-10-26  Andre Magalhaes  <andrunko@gmail.com>
11742
11743         reviewed by: Zeeshan Ali   <zeenix@gmail.com>
11744
11745         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11746         (gst_base_rtp_depayload_class_init):
11747         Fixes a small but nasty bug. The derived elements no longer segfaults
11748         on finalization.
11749
11750 2005-10-26  Michael Smith <msmith@fluendo.com>
11751
11752         * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
11753           When clearing an audioconvert context, set tmpbufsize to zero, so
11754           we'll allocate it again later if required.
11755           This fixes audioconvert re-negotiating formats, which previously
11756           segfaulted with a NULL destination buffer.
11757
11758 2005-10-26  Zeeshan Ali <zeenix@gmail.com>
11759
11760         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11761         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
11762         (gst_base_rtp_depayload_set_gst_timestamp),
11763         (gst_base_rtp_depayload_queue_release):
11764         Fixed a smalll memleak.
11765
11766 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
11767         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11768         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
11769         (gst_base_rtp_depayload_finalize),
11770         (gst_base_rtp_depayload_setcaps),
11771         (gst_base_rtp_depayload_add_to_queue),
11772         (gst_base_rtp_depayload_push),
11773         (gst_base_rtp_depayload_set_gst_timestamp),
11774         (gst_base_rtp_depayload_queue_release),
11775         (gst_base_rtp_depayload_thread),
11776         (gst_base_rtp_depayload_change_state):
11777         * gst-libs/gst/rtp/gstbasertpdepayload.h:
11778         Changed the C++ comments to C comments
11779
11780 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
11781
11782         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
11783         * gst/tcp/gsttcpclientsrc.h:
11784         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
11785         * gst/tcp/gsttcpserversrc.h:
11786           Remove unused 'curoffset' structure member.
11787
11788 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
11789
11790         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11791         (gst_base_rtp_depayload_base_init),
11792         (gst_base_rtp_depayload_finalize):
11793         * gst-libs/gst/rtp/gstbasertpdepayload.h:
11794         * gst-libs/gst/rtp/gstbasertppayload.h:
11795           The pad-template on the sinkpad should be set by the derived classes.
11796           Also added some useful macros.
11797
11798 2005-10-24  Wim Taymans  <wim@fluendo.com>
11799
11800         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
11801         Correctly flush decoder samples even if we could not
11802         copy them to an output buffer. Fixes #319618.
11803
11804 2005-10-24  Julien MOUTTE  <julien@moutte.net>
11805
11806         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
11807         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
11808         the caps against our xcontext caps.
11809
11810 2005-10-24  Wim Taymans  <wim@fluendo.com>
11811
11812         * gst-libs/gst/audio/gstbaseaudiosink.c:
11813         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
11814         Remove g_print
11815         Use sync property from baseclass to disable sync.
11816
11817 2005-10-24  Wim Taymans  <wim@fluendo.com>
11818
11819         * gst-libs/gst/audio/gstbaseaudiosink.c:
11820         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
11821         Buffers with no timestamps get aligned with previous buffers or
11822         on underrun, played ASAP.
11823
11824 2005-10-24  Julien MOUTTE  <julien@moutte.net>
11825
11826         * gst-libs/gst/video/video.h:
11827         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11828         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
11829         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
11830         here comes my change on caps for framerate and geometry range.
11831         We are now accepting 1 to MAXINT for width and height, and from
11832         0.0 to MAXDOUBLE for framerate. That allows duration less png frames
11833         to be blended correctly in videomixer.
11834
11835 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
11836
11837         * configure.ac:
11838           back to HEAD
11839
11840 === release 0.9.4 ===
11841
11842 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11843
11844         * NEWS:
11845         * RELEASE:
11846         * configure.ac:
11847           releasing 0.9.4, "Velociraptor"
11848
11849 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11850
11851         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
11852         * po/POTFILES.in:
11853           STOPPED -> FAILED
11854
11855 2005-10-21  Wim Taymans  <wim@fluendo.com>
11856
11857         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11858         (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
11859         (pad_blocked), (close_pad_link), (new_pad):
11860         Don't try to remove elements twice.
11861
11862 2005-10-21  Wim Taymans  <wim@fluendo.com>
11863
11864         * ext/theora/theoradec.c: (theora_dec_src_query),
11865         (theora_dec_sink_event):
11866         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11867         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
11868         (vorbis_handle_data_packet):
11869         * ext/vorbis/vorbisdec.h:
11870         Fix old naming.
11871
11872         * gst-libs/gst/audio/gstbaseaudiosink.c:
11873         (gst_base_audio_sink_render):
11874         Don't try to sync on buffers without a timestamp.
11875
11876 2005-10-21  Wim Taymans  <wim@fluendo.com>
11877
11878         * ext/theora/theoradec.c: (theora_dec_src_query),
11879         (theora_dec_sink_event):
11880         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11881         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
11882         (vorbis_handle_data_packet):
11883         * ext/vorbis/vorbisdec.h:
11884         Fix old naming.
11885
11886 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
11887
11888         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
11889         (gst_vorbisenc_src_query):
11890           Implement position and duration queries.
11891
11892         * gst/playback/test3.c: (update_scale), (main):
11893           Fix for async state changes and print nicer output.
11894
11895 2005-10-20  Wim Taymans  <wim@fluendo.com>
11896
11897         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11898         (dump_element_stats), (main):
11899         * gst/playback/test6.c: (main):
11900         Fix tests again
11901
11902 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
11903
11904         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
11905         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
11906           Don't use functions for position queries when handling
11907           duration queries.
11908
11909 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
11910
11911         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11912         (vorbis_handle_data_packet), (vorbis_dec_chain),
11913         (vorbis_dec_change_state):
11914         * ext/vorbis/vorbisdec.h:
11915           Vorbis streams can be embedded in other container formats
11916           than ogg, container formats where the demuxer might set 
11917           timestamps on encoded vorbis buffers instead of those silly 
11918           granulepos thingies. In short: make vorbisdec handle 
11919           timestamps on incoming buffers as well.
11920
11921 2005-10-20  Wim Taymans  <wim@fluendo.com>
11922
11923         * gst/playback/gstplaybasebin.c: (group_destroy),
11924         (gst_play_base_bin_change_state):
11925         Fix leak.
11926         Handle case where playbasebin is now ASYNC because
11927         decodebin is.
11928
11929 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
11930
11931         * gst/audioconvert/Makefile.am:
11932         * gst/audioconvert/bufferframesconvert.c:
11933         * gst/audioconvert/plugin.c: (plugin_init):
11934         * gst/audioconvert/plugin.h:
11935           And bye bye buffer-frames-convert
11936
11937 2005-10-19  Wim Taymans  <wim@fluendo.com>
11938
11939         * check/elements/audioconvert.c:
11940         * docs/libs/tmpl/gstaudio.sgml:
11941         * docs/libs/tmpl/gstcolorbalance.sgml:
11942         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11943         (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
11944         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
11945         * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
11946         * gst-libs/gst/audio/audio.h:
11947         * gst/audioconvert/audioconvert.h:
11948         * gst/audioconvert/gstaudioconvert.c:
11949         (gst_audio_convert_parse_caps):
11950         * gst/volume/gstvolume.c:
11951         Bye bye buffer-frames.
11952
11953 2005-10-19  Wim Taymans  <wim@fluendo.com>
11954
11955         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
11956         (query_positions_elems), (query_positions_pads), (update_scale),
11957         (do_seek), (set_update_scale), (message_received), (main):
11958         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
11959         (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
11960         (gst_ogg_demux_loop):
11961         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
11962         * ext/theora/theoradec.c: (theora_dec_src_query),
11963         (theora_dec_sink_event):
11964         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11965         (vorbis_dec_sink_event), (vorbis_handle_data_packet):
11966         * gst/adder/gstadder.c: (gst_adder_query):
11967         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
11968         * gst/playback/test3.c: (update_scale):
11969         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11970         (dump_element_stats), (main):
11971         * gst/playback/test6.c: (main):
11972         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
11973         Query API update.
11974
11975 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
11976
11977         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
11978         (xml_check_first_element), (xml_type_find), (smil_type_find),
11979         (plugin_init):
11980           Add typefinding for SMIL and for generic XML. Based on patch by
11981           Akos Maroy (#308663).
11982
11983 2005-10-18  Wim Taymans  <wim@fluendo.com>
11984
11985         * gst/playback/Makefile.am:
11986         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11987         (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
11988         (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
11989         (try_to_link_1), (new_pad), (no_more_pads), (type_found),
11990         (gst_decode_bin_change_state):
11991         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
11992         (gst_play_bin_send_event_to_sink):
11993         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11994         (dump_element_stats), (main):
11995         * gst/playback/test6.c: (main):
11996         Make playbin async, it'll commit state to paused when all streams
11997         are detected.
11998         Remove ugly hack.
11999         Added test6.c to show async behaviour.
12000
12001 2005-10-18  Wim Taymans  <wim@fluendo.com>
12002
12003         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
12004         (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
12005         Fix for segment-start/stop API change.
12006
12007 2005-10-18  Wim Taymans  <wim@fluendo.com>
12008
12009         * check/Makefile.am:
12010         * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
12011         (main):
12012         Add future test for clock selection.
12013
12014 2005-10-18  Wim Taymans  <wim@fluendo.com>
12015
12016         * ext/alsa/gstalsasink.c: (gst_alsasink_init),
12017         (gst_alsasink_close):
12018         Set handle to NULL.
12019
12020         * gst-libs/gst/audio/gstringbuffer.c:
12021         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
12022         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
12023         (gst_ring_buffer_start), (gst_ring_buffer_pause),
12024         (gst_ring_buffer_stop), (gst_ring_buffer_commit),
12025         (gst_ring_buffer_read):
12026         More debug info.
12027
12028 2005-10-17  Stefan Kost  <ensonic@users.sf.net>
12029
12030         * gst/audiotestsrc/Makefile.am:
12031         * gst/sine/Makefile.am:
12032         * gst/volume/Makefile.am:
12033           fix broken build of controllerized plugins
12034
12035 2005-10-17  Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
12036
12037         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
12038
12039         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
12040         (gst_riff_create_video_template_caps):
12041           Add support for Indeo-3 (IV32).
12042
12043 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
12044
12045         * configure.ac:
12046           rewrite
12047
12048 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
12049
12050         * gst-libs/gst/video/video.c: (gst_video_get_size):
12051         * gst/audiotestsrc/gstaudiotestsrc.c:
12052           doc updates
12053
12054 2005-10-17  Andy Wingo  <wingo@pobox.com>
12055
12056         * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
12057         with the collectpads change.
12058         (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
12059
12060         * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
12061
12062         * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
12063
12064         * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
12065         alloc_buffer flow return to callers.
12066         (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
12067         change. Fix some memleaks in theoraenc.
12068
12069         * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
12070         in strange circumstance.
12071
12072 2005-10-17  Julien MOUTTE  <julien@moutte.net>
12073
12074         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12075         (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
12076         from caps, let's use the caps...
12077
12078 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
12079
12080         * configure.ac:
12081           put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
12082
12083 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
12084
12085         * gst-libs/gst/interfaces/Makefile.am:
12086           fix silly typo
12087
12088 2005-10-16  Andy Wingo  <wingo@pobox.com>
12089
12090         * gst/playback/gstdecodebin.c
12091         (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
12092         function!
12093         (try_to_link_1): Increase kraziness level.
12094
12095 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
12096
12097         * configure.ac:
12098           restructure like the core one
12099         * gst-libs/gst/audio/Makefile.am:
12100         * gst-libs/gst/interfaces/Makefile.am:
12101         * gst-libs/gst/net/Makefile.am:
12102         * gst-libs/gst/riff/Makefile.am:
12103         * gst-libs/gst/rtp/Makefile.am:
12104         * gst-libs/gst/tag/Makefile.am:
12105         * gst-libs/gst/video/Makefile.am:
12106           use correct linker flags, now the libs are properly versioned
12107         * check/elements/audioconvert.c: (verify_convert):
12108         * ext/alsa/gstalsaplugin.c:
12109         * ext/cdparanoia/gstcdparanoia.c:
12110         * ext/gnomevfs/gstgnomevfs.c:
12111         * ext/libvisual/visual.c:
12112         * ext/ogg/gstogg.c:
12113         * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
12114         * ext/theora/theora.c:
12115         * ext/vorbis/vorbis.c:
12116         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
12117         * gst-libs/gst/tag/gsttagediting.c:
12118         * gst-libs/gst/video/video.c:
12119         * gst/adder/gstadder.c:
12120         * gst/audioconvert/plugin.c:
12121         * gst/audiorate/gstaudiorate.c:
12122         * gst/audioresample/gstaudioresample.c:
12123         * gst/audioresample/resample_ref.c: (resample_scale_ref):
12124         * gst/audioscale/gstaudioscale.c:
12125         * gst/audioscale/resample.c:
12126         * gst/audiotestsrc/gstaudiotestsrc.c:
12127         * gst/ffmpegcolorspace/gstffmpeg.c:
12128         * gst/playback/gstdecodebin.c: (close_pad_link):
12129         * gst/playback/gstplaybin.c: (gen_video_element),
12130         (gen_audio_element):
12131         * gst/sine/gstsinesrc.c:
12132         * gst/subparse/gstsubparse.c:
12133         * gst/tags/gsttagediting.c:
12134         * gst/tcp/gsttcpplugin.c:
12135         * gst/typefind/gsttypefindfunctions.c:
12136         * gst/videorate/gstvideorate.c:
12137         * gst/videoscale/gstvideoscale.c:
12138         * gst/videotestsrc/gstvideotestsrc.c:
12139         * gst/volume/gstvolume.c:
12140         * sys/v4l/gstv4l.c:
12141         * sys/ximage/ximage.c:
12142         * sys/xvimage/xvimagesink.c:
12143           fix up defines
12144
12145 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
12146
12147         * ext/vorbis/vorbisenc.c:
12148         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
12149         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
12150         (gst_tag_to_vorbis_comments):
12151           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
12152
12153 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
12154
12155         * examples/stats/mp2ogg.c:
12156         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12157           typo fixes
12158
12159 2005-10-13  Michael Smith <msmith@fluendo.com>
12160
12161         * ext/ogg/gstoggmux.c:
12162           Use magic glib macros to define constants as 64 bit, to ensure
12163           appropriate vararg passing.
12164
12165 2005-10-13  Michael Smith <msmith@fluendo.com>
12166
12167         * ext/ogg/gstoggmux.c:
12168         * gst/audioconvert/audioconvert.c: (float):
12169           Don't use LL suffix, as it's not portable, and neither of these
12170           uses required it anyway.
12171
12172 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
12173
12174         * examples/indexing/indexmpeg.c: (main):
12175         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
12176         (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
12177         (cdparanoia_convert), (cdparanoia_query):
12178         * ext/cdparanoia/gstcdparanoia.h:
12179         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
12180         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
12181         (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
12182         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
12183         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
12184         * gst/playback/gststreamselector.c: (gst_stream_selector_init):
12185         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
12186         (gst_multifdsink_render), (gst_multifdsink_start),
12187         (gst_multifdsink_stop):
12188         * gst/tcp/gstmultifdsink.h:
12189         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
12190         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
12191         (gst_tcpclientsink_stop):
12192         * gst/tcp/gsttcpclientsink.h:
12193         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
12194         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
12195         (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
12196         * gst/tcp/gsttcpclientsrc.h:
12197         * gst/tcp/gsttcpserversink.h:
12198         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
12199         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
12200         (gst_tcpserversrc_stop):
12201         * gst/tcp/gsttcpserversrc.h:
12202         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
12203         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
12204         * sys/ximage/ximagesink.c: (gst_ximagesink_init):
12205           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
12206           moved bitshift from macro to enum definition
12207
12208 2005-10-12  Wim Taymans  <wim@fluendo.com>
12209
12210         * examples/seeking/Makefile.am:
12211         Oops.
12212
12213 2005-10-12  Wim Taymans  <wim@fluendo.com>
12214
12215         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12216         (gst_ring_buffer_read), (gst_ring_buffer_clear):
12217         Don't assert on normal stuff.
12218
12219         * gst/playback/gstplaybin.c: (do_playbin_seek):
12220         API fix.
12221
12222 2005-10-12  Wim Taymans  <wim@fluendo.com>
12223
12224         * check/pipelines/simple_launch_lines.c: (run_pipeline):
12225         * examples/seeking/Makefile.am:
12226         * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
12227         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
12228         (do_seek), (set_update_scale), (message_received), (main):
12229         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12230         (gst_ring_buffer_read), (gst_ring_buffer_clear):
12231         Update for _get_state() API change.
12232
12233 2005-10-11  Wim Taymans  <wim@fluendo.com>
12234
12235         * gst-libs/gst/audio/gstbaseaudiosink.c:
12236         (gst_base_audio_sink_render):
12237         * gst-libs/gst/audio/gstbaseaudiosrc.c:
12238         (gst_base_audio_src_create):
12239         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12240         (gst_ring_buffer_read):
12241         Cleanups.
12242         Commit and read from ringbuffer in samples rather than bytes.
12243
12244 2005-10-11  Wim Taymans  <wim@fluendo.com>
12245
12246         * gst-libs/gst/audio/gstbaseaudiosink.c:
12247         (gst_base_audio_sink_render):
12248         Respect segment rate and accum when scheduling samples.
12249
12250 2005-10-11  Julien MOUTTE  <julien@moutte.net>
12251
12252         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
12253         (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
12254         EOS correctly, that needs more work.
12255
12256 2005-10-11  Wim Taymans  <wim@fluendo.com>
12257
12258         * check/generic/states.c: (GST_START_TEST):
12259         remove old property.
12260
12261         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
12262         (gst_ogg_demux_perform_seek):
12263         * ext/theora/theoradec.c: (theora_dec_sink_event):
12264         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
12265         (vorbis_handle_data_packet):
12266         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12267         (gst_base_rtp_depayload_set_gst_timestamp):
12268         * gst/videorate/gstvideorate.c: (gst_videorate_event):
12269         Update for newsegment API change.
12270
12271 2005-10-11  Michael Smith <msmith@fluendo.com>
12272
12273         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
12274         (do_playbin_seek), (gst_play_bin_send_event):
12275           Override send_event differently, so that we can takes bits of
12276           functionality from GstPipeline (special handling for seeks,
12277           including pausing/resuming, and resetting stream time) and still get
12278           the appropriate behaviour of only forwarding event to a single sink,
12279           rather than all of them.
12280           Unfortunately requires a lot of code duplication, but the
12281           alternatives are equally ugly in the end.
12282
12283 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
12284
12285         * check/elements/audioconvert.c: (setup_audioconvert),
12286         (cleanup_audioconvert), (get_int_caps), (verify_convert),
12287         (GST_START_TEST), (audioconvert_suite):
12288           clean up tests a little, fix some leaks.
12289
12290 2005-10-10  Wim Taymans  <wim@fluendo.com>
12291
12292         * ext/alsa/gstalsasink.c:
12293         Also allow unsigned int.
12294
12295         * gst-libs/gst/audio/gstbaseaudiosrc.c:
12296         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
12297         Small cleanup
12298
12299 2005-10-10  Wim Taymans  <wim@fluendo.com>
12300
12301         * check/pipelines/simple_launch_lines.c: (run_pipeline):
12302         Small update, use API as stated in design docs.
12303
12304         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
12305         (update_scale), (do_seek), (seek_cb), (set_update_scale),
12306         (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
12307         (message_received), (main):
12308         Updated seek example for GOption. Some usability improvements.
12309
12310 2005-10-10  Wim Taymans  <wim@fluendo.com>
12311
12312         * gst/audioconvert/audioconvert.h:
12313         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
12314         (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
12315         Alloc temp storage somewhere else where we can do it more
12316         portable.
12317
12318 2005-10-10  Wim Taymans  <wim@fluendo.com>
12319
12320         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
12321         (gst_tcpserversrc_start):
12322         Don't block in accept while doing the state change, move
12323         to poll and make cancellable.
12324
12325 2005-10-09  Philippe Khalaf <burger@speedy.org>
12326
12327         * gst-libs/gst/rtp/rtpbasedepayload.c:
12328         Set timestamp and add queue delay to timestamp
12329         * gst-libs/gst/rtp/rtpbuffer.h:
12330         Set correct payload type for h263
12331
12332 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
12333
12334         * gst/audiotestsrc/gstaudiotestsrc.c:
12335         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
12336         (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
12337         (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
12338         (gst_audiotestsrc_create_triangle),
12339         (gst_audiotestsrc_create_silence),
12340         (gst_audiotestsrc_create_white_noise),
12341         (gst_audiotestsrc_init_pink_noise),
12342         (gst_audiotestsrc_generate_pink_noise_value),
12343         (gst_audiotestsrc_create_pink_noise),
12344         (gst_audiotestsrc_change_wave):
12345         * gst/audiotestsrc/gstaudiotestsrc.h:
12346           fixed typo, added pink noise
12347
12348 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
12349
12350         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
12351         (plugin_init):
12352           Add wavpack and spc typefind functions from 0.8 branch.
12353
12354 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
12355
12356         * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
12357         (ar_type_find), (msdos_type_find), (plugin_init):
12358           Add typefind functions for tar archives, ar archives,
12359           RAR archives, and msdos-executables (dlls, exe, etc.).
12360           Some of those would be wrongly identified as mpeg
12361           streams of some sort before (#315550).
12362
12363 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
12364
12365         * configure.ac:
12366         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12367         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12368         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
12369         * gst/audiotestsrc/Makefile.am:
12370         * gst/audiotestsrc/gstaudiotestsrc.c:
12371         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
12372         (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
12373         (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
12374         (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
12375         (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
12376         (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
12377         (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
12378         (gst_audiotestsrc_create_silence),
12379         (gst_audiotestsrc_create_white_noise),
12380         (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
12381         (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
12382         (gst_audiotestsrc_start), (plugin_init):
12383         * gst/audiotestsrc/gstaudiotestsrc.h:
12384           add new plugin and element
12385         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
12386           use gobject_class
12387
12388 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
12389
12390         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
12391         (gst_adder_init), (gst_adder_request_new_pad),
12392         (gst_adder_change_state):
12393           Add query function to source pad, so adder reports the correct
12394           time/sample position when queried (#315457); fix state change
12395           function; use GST_DEBUG_FUNCPTR() for pad functions.
12396
12397 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
12398
12399         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
12400           Fix leaks in typefind registration
12401           Clean up the gratuitous commenting and whitespacing a little
12402
12403 2005-10-08  Wim Taymans  <wim@fluendo.com>
12404
12405         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
12406         Only actually wait for the thread to be stopped if it's 
12407         running.
12408
12409 2005-10-08  Wim Taymans  <wim@fluendo.com>
12410
12411         * gst-libs/gst/audio/gstbaseaudiosink.c:
12412         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
12413         If we receive EOS we can start playback of what we had.
12414
12415 2005-10-08  Wim Taymans  <wim@fluendo.com>
12416
12417         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
12418         (gst_multifdsink_finalize), (multifdsink_hash_remove),
12419         (gst_multifdsink_stop):
12420         Fix crasher when going to NULL multiple times.
12421
12422 2005-10-06  Wim Taymans  <wim@fluendo.com>
12423
12424         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
12425         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
12426         * gst-libs/gst/audio/gstbaseaudiosrc.h:
12427         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
12428         patch from Edgard Lima <edgard.lima@indt.org.br>
12429         Fixed gstbaseaudiosrc adding ring buffer sync to it.
12430
12431 2005-10-06  Wim Taymans  <wim@fluendo.com>
12432
12433         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
12434         Report the FLOW_RETURN as string in the error message.
12435
12436         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
12437         Don't assert when clearing an unnegotiated buffer.
12438
12439 2005-10-04  Michael Smith <msmith@fluendo.com>
12440
12441         * gst/playback/gstplaybasebin.c: (group_destroy),
12442         (gen_preroll_element), (remove_groups), (setup_source):
12443         * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
12444         (setup_sinks), (gst_play_bin_send_event),
12445         (gst_play_bin_change_state):
12446           Set state to NULL before removing from bin. Fix refcounting.
12447
12448 2005-10-04  Michael Smith <msmith@fluendo.com>
12449
12450         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
12451           Correct refcounting in send_event() function. Previously was wrong
12452           if the first sink was unable to handle the event.
12453
12454 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
12455
12456         * configure.ac:
12457           back to development
12458
12459 === release 0.9.3 ===
12460
12461 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
12462
12463         * configure.ac:
12464           Releasing 0.9.3, "De Facto"
12465
12466 2005-10-03  Andy Wingo  <wingo@pobox.com>
12467
12468         * gst/playback/gstdecodebin.c (try_to_link_1)
12469         (remove_element_chain): set element to NULL before removing it.
12470
12471 2005-10-02  Johan Dahlin  <johan@gnome.org>
12472
12473         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols): 
12474         protect gst_gnomevfs_get_supported_uris by a mutex, to make it
12475         MT safe.
12476
12477 2005-10-02  Andy Wingo  <wingo@pobox.com>
12478
12479         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear) 
12480         (gst_ring_buffer_prepare_read): 
12481         * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
12482         Demote to LOG.
12483
12484 2005-09-29  Wim Taymans  <wim@fluendo.com>
12485
12486         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
12487         * ext/theora/theoradec.c: (theora_handle_data_packet):
12488         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
12489         Propagate error codes from alloc_buffer too.
12490
12491 2005-09-29  Wim Taymans  <wim@fluendo.com>
12492
12493         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
12494         We use fixed caps.
12495
12496         * gst/playback/Makefile.am:
12497         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
12498         (dump_element_stats), (main):
12499         Added example stream introspection code.
12500
12501 2005-09-28  Stefan Kost  <ensonic@users.sf.net>
12502
12503         * gst/adder/gstadder.c: (gst_adder_collected):
12504           fix adder for float elements
12505
12506 2005-09-28  Wim Taymans  <wim@fluendo.com>
12507
12508         * gst-libs/gst/audio/gstbaseaudiosink.c:
12509         (gst_base_audio_sink_class_init),
12510         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
12511         * gst-libs/gst/audio/gstbaseaudiosrc.c:
12512         (gst_base_audio_src_class_init),
12513         (gst_base_audio_src_provide_clock):
12514         get_clock -> provide_clock
12515
12516 2005-09-28  Andy Wingo  <wingo@pobox.com>
12517
12518         * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
12519         and unlocking.
12520
12521         * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
12522         unlocking.
12523
12524         * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
12525         Actually add the pad template.
12526         (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
12527
12528         * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
12529         I'm at it...
12530
12531         * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
12532         from fdsrc. Get caps in create() instead of start() so it can be
12533         interrupted. Interruption somewhat untested.
12534
12535         * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
12536         Proper EOS handling.
12537
12538 2005-09-27  Andy Wingo  <wingo@pobox.com>
12539
12540         * gst/tcp/gsttcpclientsrc.c: Cleaned up.
12541
12542         * gst/tcp/gsttcpserversrc.c: Cleaned up.
12543
12544         * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
12545
12546         * gst/tcp/gsttcp.h: 
12547         * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
12548         out of tcpclientsrc.c. Cancellable.
12549         (gst_tcp_socket_read): Made private, cancellable, with better
12550         diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
12551         (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
12552         whole buffer, and better diagnostics.
12553         (gst_tcp_gdp_read_caps): Same.
12554
12555         * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
12556
12557 2005-09-26  Andy Wingo  <wingo@pobox.com>
12558
12559         * gst/sine/gstsinesrc.h:
12560         * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
12561         change the 'sync' property to 'is-live' and implement it halfway,
12562         update for controller api change.
12563
12564         * gst/volume/gstvolume.c (volume_transform_ip): Update for
12565         controller api change.
12566
12567 2005-09-24  Wim Taymans  <wim@fluendo.com>
12568
12569         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
12570         * gst-libs/gst/audio/gstaudiosink.c:
12571         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
12572         (gst_audioringbuffer_stop):
12573         * gst-libs/gst/audio/gstbaseaudiosink.c:
12574         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
12575         (gst_base_audio_sink_change_state):
12576         * gst-libs/gst/audio/gstbaseaudiosink.h:
12577         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
12578         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
12579         (gst_ring_buffer_commit), (gst_ring_buffer_read):
12580         * gst-libs/gst/audio/gstringbuffer.h:
12581         Fix sync again. Moved sample alignment to basesink.
12582
12583 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
12584
12585         * docs/plugins/Makefile.am:
12586         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12587         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12588         * gst/volume/gstvolume.c:
12589           add/fix docs
12590         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
12591         * gst-libs/gst/audio/audio.h:
12592           add conversion macros for frames <-> clocktime
12593
12594 2005-09-23  David Schleef  <ds@schleef.org>
12595
12596         * gst/audioresample/Makefile.am:
12597         * gst/audioresample/debug.h:
12598         * gst/audioresample/gstaudioresample.c:
12599         * gst/audioresample/resample.c: Convert to using gst debugging
12600
12601 2005-09-22  Wim Taymans  <wim@fluendo.com>
12602
12603         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
12604         (gst_play_bin_send_event):
12605         Only seek on one sink, the first one that succeeds.
12606
12607 2005-09-22  Michael Smith <msmith@fluendo.com>
12608
12609         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
12610         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
12611         Don't flush encoder state unless we have an initialised encoder.
12612         Clear out encoder state on PAUSED_TO_READY.
12613
12614 2005-09-22  Wim Taymans  <wim@fluendo.com>
12615
12616         * gst-libs/gst/rtp/gstbasertppayload.c:
12617         (gst_basertppayload_class_init), (gst_basertppayload_init),
12618         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12619         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12620         (gst_basertppayload_is_filled), (gst_basertppayload_push),
12621         (gst_basertppayload_set_property),
12622         (gst_basertppayload_get_property),
12623         (gst_basertppayload_change_state):
12624         * gst-libs/gst/rtp/gstbasertppayload.h:
12625         Added max-ptime to control amount of data in the rtp packets.
12626
12627 2005-09-21  Andy Wingo  <wingo@pobox.com>
12628
12629         * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
12630         thingies.
12631
12632         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
12633         can be called multiple times, dogs.
12634
12635 2005-09-21  Wim Taymans  <wim@fluendo.com>
12636
12637         * gst-libs/gst/rtp/gstbasertppayload.c:
12638         (gst_basertppayload_class_init), (gst_basertppayload_init),
12639         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12640         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12641         (gst_basertppayload_push), (gst_basertppayload_get_property),
12642         (gst_basertppayload_change_state):
12643         Allow 0 ssrc too.
12644
12645 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
12646
12647         * docs/libs/compiling.sgml:
12648           fixing typos
12649
12650 2005-09-20  Wim Taymans  <wim@fluendo.com>
12651
12652         * gst-libs/gst/rtp/gstbasertppayload.c:
12653         (gst_basertppayload_class_init), (gst_basertppayload_init),
12654         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12655         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12656         (gst_basertppayload_push), (gst_basertppayload_set_property),
12657         (gst_basertppayload_get_property),
12658         (gst_basertppayload_change_state):
12659         * gst-libs/gst/rtp/gstbasertppayload.h:
12660         Added property to configure sequence number offsets.
12661
12662 2005-09-20  Wim Taymans  <wim@fluendo.com>
12663
12664         * gst-libs/gst/rtp/gstbasertppayload.c:
12665         (gst_basertppayload_class_init), (gst_basertppayload_init),
12666         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12667         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12668         (gst_basertppayload_push), (gst_basertppayload_set_property),
12669         (gst_basertppayload_get_property),
12670         (gst_basertppayload_change_state):
12671         * gst-libs/gst/rtp/gstbasertppayload.h:
12672         Make timestamp offset configurable.
12673
12674 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
12675
12676         * check/pipelines/simple_launch_lines.c: (run_pipeline):
12677           fix wrong pop/unref
12678
12679 2005-09-19  Torsten Schoenfeld  <kaffeetisch at gmx dot net>
12680
12681         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
12682
12683         * gst-libs/gst/interfaces/propertyprobe.c:
12684         (gst_property_probe_probe_property_name),
12685         (gst_property_probe_needs_probe_name),
12686         (gst_property_probe_get_values_name),
12687         (gst_property_probe_probe_and_get_values_name):
12688           Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
12689           G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
12690
12691 2005-09-19  Thomas Vander Stichele  <thomas at apestaart dot org>
12692
12693         * check/Makefile.am:
12694           have some tests be disabled for valgrinding
12695         * check/elements/vorbisdec.c: (cleanup_vorbisdec),
12696         (GST_START_TEST):
12697         * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
12698           Fix A Leak.  Chain To Parent Finalize.
12699
12700 2005-09-19  Wim Taymans  <wim@fluendo.com>
12701
12702         * examples/seeking/seek.c: (make_wav_pipeline), (main):
12703         Fixed wav pipeline.
12704
12705 2005-09-19  Wim Taymans  <wim@fluendo.com>
12706
12707         * gst-libs/gst/rtp/gstbasertppayload.c:
12708         (gst_basertppayload_class_init), (gst_basertppayload_init),
12709         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12710         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12711         (gst_basertppayload_push), (gst_basertppayload_get_property),
12712         (gst_basertppayload_change_state):
12713         Posting ERROR and WARNING messages is good.
12714
12715 2005-09-19  Wim Taymans  <wim@fluendo.com>
12716
12717         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12718         (gst_base_rtp_depayload_add_to_queue),
12719         (gst_base_rtp_depayload_push),
12720         (gst_base_rtp_depayload_set_gst_timestamp),
12721         (gst_base_rtp_depayload_queue_release):
12722         This one was not supposed to go in.
12723
12724 2005-09-19  Wim Taymans  <wim@fluendo.com>
12725
12726         * check/pipelines/simple_launch_lines.c: (run_pipeline):
12727         Fix for bus API.
12728
12729         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12730         (gst_base_rtp_depayload_chain),
12731         (gst_base_rtp_depayload_add_to_queue),
12732         (gst_base_rtp_depayload_push),
12733         (gst_base_rtp_depayload_set_gst_timestamp),
12734         (gst_base_rtp_depayload_queue_release):
12735         Some cleanups.
12736
12737         * gst-libs/gst/rtp/gstbasertppayload.c:
12738         (gst_basertppayload_class_init), (gst_basertppayload_init),
12739         (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
12740         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
12741         (gst_basertppayload_get_property),
12742         (gst_basertppayload_change_state):
12743         Added debugging category.
12744
12745 2005-09-18  David Schleef  <ds@schleef.org>
12746
12747         * gst/playback/gstdecodebin.c: free plugin list correctly
12748         * gst/playback/gstplaybin.c: emit warning if autovideosink
12749           and autoaudiosink can't be found (instead of segfaulting)
12750
12751 2005-09-17  Thomas Vander Stichele  <thomas at apestaart dot org>
12752
12753         * check/elements/audioconvert.c: (GST_START_TEST):
12754           try out 24 bit conversion
12755
12756 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
12757
12758         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
12759         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
12760         (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
12761         * ext/vorbis/vorbisenc.h:
12762           Fix EOS handling.  Still needs a fix in the ogg muxer to
12763           mark the last page as eos.
12764
12765 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
12766
12767         * common/gtk-doc-plugins.mak:
12768         * docs/plugins/Makefile.am:
12769         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12770         * gst/ffmpegcolorspace/Makefile.am:
12771         * gst/ffmpegcolorspace/avcodec.h:
12772         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12773         * gst/tcp/gstmultifdsink.c:
12774           fix up ffmpegcolorspace docs; extract header
12775
12776 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
12777
12778         * common/gtk-doc-plugins.mak:
12779         * docs/plugins/Makefile.am:
12780         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12781         * ext/theora/Makefile.am:
12782         * ext/theora/gsttheoraenc.h:
12783         * ext/theora/theoraenc.c:
12784         * ext/vorbis/vorbisenc.c:
12785           pick up signals and args for vorbis; add some docs for vorbis
12786
12787 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
12788
12789         * common/gstdoc-scangobj:
12790         * common/gtk-doc-plugins.mak:
12791         * docs/libs/Makefile.am:
12792         * docs/plugins/gst-plugins-base-plugins.args:
12793         * docs/plugins/gst-plugins-base-plugins.hierarchy:
12794         * docs/plugins/gst-plugins-base-plugins.interfaces:
12795         * docs/plugins/gst-plugins-base-plugins.prerequisites:
12796         * docs/plugins/gst-plugins-base-plugins.signals:
12797           only scanobj stuff from our source module.  Not sure yet
12798           if that's correct, given the hierarchy stuff :)
12799
12800 2005-09-15  Wim Taymans  <wim@fluendo.com>
12801
12802         * gst/audioconvert/gstaudioconvert.c:
12803         And enable 24 bits mode as well..
12804
12805 2005-09-15  Wim Taymans  <wim@fluendo.com>
12806
12807         * gst-libs/gst/rtp/Makefile.am:
12808         * gst-libs/gst/rtp/gstbasertppayload.c:
12809         (gst_basertppayload_get_type), (gst_basertppayload_base_init),
12810         (gst_basertppayload_class_init), (gst_basertppayload_init),
12811         (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
12812         (gst_basertppayload_chain), (gst_basertppayload_set_options),
12813         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
12814         (gst_basertppayload_set_property),
12815         (gst_basertppayload_get_property),
12816         (gst_basertppayload_change_state):
12817         * gst-libs/gst/rtp/gstbasertppayload.h:
12818         Added rtp payloader base class.
12819
12820 2005-09-15  Andy Wingo  <wingo@pobox.com>
12821
12822         * configure.ac (plugindir): Remove the EOL matcher from the
12823         regexp, as it causes me problems. Libtool? Make? Who knows?
12824
12825 2005-09-14  David Schleef  <ds@schleef.org>
12826
12827         * check/generic/states.c: 
12828         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
12829         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
12830           Fixes for changes in registry API.
12831
12832         * configure.ac: Only export gst_plugins_desc.  Add -no-undefined
12833           to GST_PLUGIN_LDFLAGS.
12834         * ext/libvisual/visual.c: Make the library shut up.
12835         * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
12836         * gst-libs/gst/audio/gstaudiofilter.c: same
12837
12838 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
12839
12840         * docs/plugins/Makefile.am:
12841         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12842         * docs/plugins/inspect/plugin-libvisual.xml:
12843         * docs/plugins/tmpl/element-tcpserversink.sgml:
12844         * ext/theora/theoraenc.c:
12845           add libvisual plugin and theoraenc element to docs
12846
12847 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
12848
12849         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12850         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12851         * ext/theora/theoraenc.c:
12852           add theoraenc
12853
12854 2005-09-13  Tim-Philipp Müller  <tim at centricular dot net>
12855
12856         * gst/audioconvert/Makefile.am:
12857           Audioconvert derives from GstBaseTransform and should
12858           link to the library with our base elements to avoid
12859           unresolved symbols. Makes things work with MinGW (#316160)
12860
12861         * gst/playback/test4.c: (main):
12862           Fix MinGW build problem and use g_usleep() instead of 
12863           sleep() (#316162)
12864
12865 2005-09-12  Wim Taymans  <wim@fluendo.com>
12866
12867         * gst/audioconvert/audioconvert.c: (float),
12868         (audio_convert_prepare_context), (audio_convert_convert):
12869         * gst/audioconvert/audioconvert.h:
12870         Cleanups, speedups, simplifications, added back support
12871         for 24 bits.
12872
12873 2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>
12874
12875         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12876         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12877         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12878         * docs/plugins/tmpl/element-tcpserversink.sgml:
12879         * gst/ffmpegcolorspace/gstffmpeg.c:
12880         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12881         * gst/videotestsrc/gstvideotestsrc.c:
12882         * gst/volume/gstvolume.c:
12883           add more elements to the docs
12884
12885 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
12886
12887         * check/Makefile.am:
12888         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
12889         (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
12890           Add extra tests for basetransform based components. 
12891           Comment out the test_element_negotiation test until we decide
12892           if it's testing correct behaviour.
12893         * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
12894         (gst_visual_chain), (gst_visual_change_state):
12895           Slightly more correct but still bogus timestamping.
12896           Fix state change function.
12897         * gst/audioconvert/gstaudioconvert.c:
12898         (gst_audio_convert_class_init):
12899         * gst/audioresample/gstaudioresample.c:
12900         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12901         (gst_ffmpegcsp_class_init):
12902         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
12903         (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
12904         (gst_videoscale_prepare_image):
12905         * gst/volume/gstvolume.c: (gst_volume_class_init),
12906         (volume_transform_ip):
12907           Basetransform updates. Enable passthrough modes.
12908         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12909         (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
12910         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
12911           Negotiation fix that allows the window to return to the original
12912           size and renegotiate passthrough upstream. Extra debug output.
12913
12914 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
12915
12916         * gst/sine/gstsinesrc.c:
12917         * gst/volume/gstvolume.c:
12918           fix up header include
12919
12920 2005-09-09  Stefan Kost  <ensonic@users.sf.net>
12921
12922         * gst-libs/gst/audio/gstbaseaudiosink.c:
12923         (gst_base_audio_sink_render):
12924         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
12925         * gst/volume/gstvolume.c: (gst_volume_class_init),
12926         (volume_transform):
12927           fixing lost sync, some more debugging
12928
12929 2005-09-08  Jan Schmidt  <thaytan@mad.scientist.com>
12930
12931         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12932         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
12933         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
12934         (gst_xvimagesink_check_xshm_calls):
12935           Fix compilation when XShm is not available.
12936
12937 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
12938
12939         * ext/libvisual/visual.c: (gst_visual_dispose),
12940         (gst_visual_getcaps), (gst_visual_src_setcaps),
12941         (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
12942         (gst_visual_change_state):
12943           Finish fixing up libvisual plugin so that it runs. 
12944
12945 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
12946
12947         * ext/vorbis/vorbisenc.c:
12948         * gst-libs/gst/tag/gstvorbistag.c:
12949           gsttaginterface.h -> gsttagsetter.h
12950
12951 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
12952
12953         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
12954           added another test that failes for me (test is not active by default)
12955
12956 2005-09-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12957
12958         * configure.ac:
12959           v4l2 is no longer in gst-plugins-base
12960
12961 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
12962
12963         * configure.ac:
12964           In the output at the end, don't show the first plugin on the same
12965           line as "Core plug-ins, always built:".
12966           Indent the output as for other plugin categories
12967         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
12968           #define that can be used to not use peer buffer_alloc functions for
12969           test purposes.
12970         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12971         (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
12972         (gst_ximagesink_show_frame):
12973         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
12974         (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
12975         (gst_xvimagesink_show_frame):
12976           Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
12977           fails gracefully instead of XError aborting or deadlocking.
12978
12979 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
12980
12981         * ext/libvisual/Makefile.am:
12982           link against gst-base-libs
12983
12984 2005-09-06  David Schleef  <ds@schleef.org>
12985
12986         * configure.ac: Enable libvisual plugin.
12987         * ext/libvisual/Makefile.am:
12988         * ext/libvisual/visual.c: Fixes to make it compile.
12989
12990 === release 0.9.2 ===
12991
12992 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
12993
12994         * NEWS:
12995         * RELEASE:
12996         * configure.ac:
12997         * docs/random/ChangeLog-0.8:
12998           releasing 0.9.2, "Spoon"
12999
13000 2005-09-05  Michael Smith <msmith@fluendo.com>
13001
13002         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
13003           libvorbis accepts quality as low as -0.1, not just 0.0. So accept
13004           that in the vorbisenc element.
13005
13006 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
13007
13008         * common/gtk-doc-plugins.mak:
13009         * docs/plugins/Makefile.am:
13010           fix distcheck
13011         * gst/audioresample/resample.c:
13012           fix wrong docstring
13013
13014 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
13015
13016         * common/gst-xmlinspect.py:
13017         * common/gtk-doc-plugins.mak:
13018           only inspect plugins for this given package
13019           require gst-python 0.9
13020
13021 2005-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
13022
13023         * Makefile.am:
13024         * autogen.sh:
13025         * common/gst-xmlinspect.py:
13026         * configure.ac:
13027         * docs/Makefile.am:
13028         * docs/plugins/inspect/plugin-alsa.xml:
13029         * docs/plugins/inspect/plugin-audioresample.xml:
13030         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
13031         * docs/plugins/inspect/plugin-ogg.xml:
13032         * docs/plugins/tmpl/element-gnomevfssink.sgml:
13033         * docs/plugins/tmpl/element-multifdsink.sgml:
13034         * docs/plugins/tmpl/element-tcpserversink.sgml:
13035         * docs/plugins/tmpl/element-vorbisenc.sgml:
13036         * gst-plugins-base.spec.in:
13037           various doc-related updates
13038
13039 2005-08-31  Wim Taymans  <wim@fluendo.com>
13040
13041         * gst-libs/gst/audio/gstbaseaudiosink.c:
13042         (gst_base_audio_sink_render):
13043         Resync if the buffer timestamps drift more than a 10th 
13044         of a second.
13045
13046 2005-08-31  Tim-Philipp Müller  <tim at centricular dot net>
13047
13048         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
13049         (gst_v4lsrc_get_property):
13050           The 'timestamp-offset' property is registered as an int64, so
13051           let's use g_value_{set|get}_int64() in our setter and getter
13052           functions (makes it work and fixes warnings with gst-inspect).
13053
13054 2005-08-30  Wim Taymans  <wim@fluendo.com>
13055
13056         * check/elements/audioconvert.c: (setup_audioconvert):
13057         * check/elements/audioresample.c: (setup_audioresample):
13058         * check/elements/volume.c: (setup_volume):
13059         Fix checks.
13060
13061 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
13062
13063         * common/gtk-doc-plugins.mak:
13064         * common/plugins.xsl:
13065         * docs/plugins/Makefile.am:
13066           make module a param
13067
13068 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
13069
13070         * examples/seeking/seek.c: (make_mp3_pipeline),
13071         (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
13072         (play_cb), (pause_cb), (stop_cb):
13073           update the example
13074
13075 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
13076
13077         * gst/volume/gstvolume.c: (gst_volume_class_init),
13078         (volume_transform):
13079           do not update controlled params, if buffer has no timestamp
13080
13081 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
13082
13083         * configure.ac:
13084         * gst/sine/Makefile.am:
13085         * gst/volume/Makefile.am:
13086           controllerized elements also need to link against controller-libs ;)
13087
13088 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
13089
13090         * docs/libs/tmpl/gstcolorbalance.sgml:
13091         * docs/libs/tmpl/gstgconf.sgml:
13092         * docs/libs/tmpl/gstmixer.sgml:
13093         * docs/libs/tmpl/gstringbuffer.sgml:
13094         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
13095         (gst_sinesrc_create):
13096         * gst/volume/gstvolume.c: (gst_volume_class_init),
13097         (volume_transform):
13098           controllerized two audio plugins
13099
13100 2005-08-29  Andy Wingo  <wingo@pobox.com>
13101
13102         * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push) 
13103         (vorbis_handle_data_packet): Fix some int overflow errors.
13104
13105         * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
13106         -1.
13107         (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
13108         valid.
13109         (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
13110         if it's valid. Fixed streaming-mode playback.
13111
13112         * check/elements/volume.c (cleanup_volume): Fix for running
13113         CK_FORK=no.
13114
13115         * check/elements/audioconvert.c: Convert from native endian, not
13116         little endian.
13117
13118 2005-08-29  Michael Smith <msmith@fluendo.com>
13119
13120         * ext/ogg/Makefile.am:
13121         * ext/ogg/gstogg.c: (plugin_init):
13122         * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
13123         (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
13124         (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
13125         (gst_ogg_parse_class_init), (gst_ogg_parse_init),
13126         (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
13127         (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
13128         (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
13129         (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
13130         Add an ogg parser element.
13131
13132 2005-08-28  Andy Wingo  <wingo@pobox.com>
13133
13134         * Updates for two-arg init from GST_BOILERPLATE_FULL.
13135
13136 2005-08-26  Wim Taymans  <wim@fluendo.com>
13137
13138         * gst/audioconvert/audioconvert.c: (if), (float),
13139         (audio_convert_get_func_index), (check_default),
13140         (audio_convert_clean_fmt), (audio_convert_prepare_context),
13141         (audio_convert_clean_context), (audio_convert_get_sizes),
13142         (audio_convert_convert):
13143         Cleanups.
13144
13145 2005-08-26  Wim Taymans  <wim@fluendo.com>
13146
13147         * gst/audioconvert/audioconvert.c: (if), (float),
13148         (audio_convert_get_func_index), (check_default),
13149         (audio_convert_clean_fmt), (audio_convert_prepare_context),
13150         (audio_convert_clean_context), (audio_convert_get_sizes),
13151         (audio_convert_convert):
13152         More elegant and working temp buffer selection algo.
13153
13154 2005-08-26  Wim Taymans  <wim@fluendo.com>
13155
13156         * gst/audioconvert/audioconvert.c: (if), (float),
13157         (audio_convert_get_func_index), (check_default),
13158         (audio_convert_clean_fmt), (audio_convert_prepare_context),
13159         (audio_convert_clean_context), (audio_convert_get_sizes),
13160         (get_temp_buffer), (audio_convert_convert):
13161         Use realloc else we lose our original data.
13162
13163 2005-08-26  Thomas Vander Stichele  <thomas at apestaart dot org>
13164
13165         * gst/audioresample/gstaudioresample.c:
13166           use base class' newsegment to properly timestamp
13167
13168 2005-08-26  Wim Taymans  <wim@fluendo.com>
13169
13170         * gst/audioconvert/audioconvert.c: (if), (float),
13171         (audio_convert_get_func_index), (check_default),
13172         (audio_convert_clean_fmt), (audio_convert_prepare_context),
13173         (audio_convert_clean_context), (audio_convert_get_sizes),
13174         (get_temp_buffer), (audio_convert_convert):
13175         * gst/audioconvert/gstaudioconvert.c:
13176         (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
13177         (gst_audio_convert_transform_caps),
13178         (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
13179         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
13180         Oops, allocate enough space to perform the channel mix.
13181
13182 2005-08-26  Wim Taymans  <wim@fluendo.com>
13183
13184         * gst/audioconvert/Makefile.am:
13185         * gst/audioconvert/audioconvert.c: (if), (float),
13186         (audio_convert_get_func_index), (check_default),
13187         (audio_convert_clean_fmt), (audio_convert_prepare_context),
13188         (audio_convert_clean_context), (audio_convert_get_sizes),
13189         (get_temp_buffer), (audio_convert_convert):
13190         * gst/audioconvert/audioconvert.h:
13191         * gst/audioconvert/gstaudioconvert.c:
13192         (gst_audio_convert_class_init), (gst_audio_convert_init),
13193         (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
13194         (gst_audio_convert_get_unit_size),
13195         (gst_audio_convert_transform_caps),
13196         (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
13197         (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
13198         * gst/audioconvert/gstaudioconvert.h:
13199         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
13200         (gst_channel_mix_fill_identical),
13201         (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
13202         (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
13203         (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
13204         (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
13205         (gst_channel_mix_mix):
13206         * gst/audioconvert/gstchannelmix.h:
13207         Cleanups, librarify a bit, optimize, better negotiation and more.
13208
13209 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
13210
13211         * ext/ogg/gstoggdemux.c: (ogg_find_peek):
13212         Another from MikeS:
13213         During typefinding, don't support negative offsets
13214         (offsets from the end of the stream) in our typefind->peek() function
13215         - nothing embedded in ogg ever needs them. However, we need to recognise
13216         those requests and reject them, otherwise we return invalid pointers.
13217
13218 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
13219
13220         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
13221         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
13222         (vorbisdec_finalize), (vorbis_handle_type_packet):
13223           Big shout-out to MikeS for fixing this giant memory leak.
13224           Huzzah!
13225
13226 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
13227
13228         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
13229         (audio_convert_get_unit_size):
13230           plug some leaks
13231
13232 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
13233
13234         * check/Makefile.am:
13235         * check/elements/audioconvert.c: (setup_audioconvert),
13236         (cleanup_audioconvert), (get_int_caps), (verify_convert),
13237         (GST_START_TEST), (audioconvert_suite), (main):
13238           add a test for audioconvert
13239         * gst/audioresample/gstaudioresample.c:
13240         * gst/audioresample/gstaudioresample.h:
13241           set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
13242           note that for buffers of 1/3 sec this means DURATION(c) is 
13243           one nanosecond more than for a and b
13244
13245 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
13246
13247         * check/Makefile.am:
13248         * check/elements/audioresample.c: (setup_audioresample),
13249         (cleanup_audioresample), (fail_unless_perfect_stream),
13250         (test_perfect_stream_instance), (GST_START_TEST),
13251           add a check for audioresample
13252         (audioresample_suite), (main):
13253         * check/elements/volume.c: (GST_START_TEST):
13254           remove unused method
13255         * gst/audioresample/gstaudioresample.c:
13256           set correct buffer parameters since we're changing them
13257         * gst/audioresample/resample_ref.c: (resample_scale_ref):
13258           add some debug
13259
13260 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
13261
13262         * gst/audioresample/debug.c:
13263         * gst/audioresample/gstaudioresample.c:
13264           add room for extra overlap samples when asked to transform size
13265           protect against possible mem corruption and check for discrepancies
13266           between written size and outbuffer's size so we can warn for
13267           potential problems
13268         * gst/audioresample/resample.c: (resample_init),
13269         (resample_get_output_size_for_input), (resample_get_output_size),
13270         (resample_set_n_channels), (resample_set_format):
13271           set debug level based on RESAMPLE_DEBUG env var
13272           make sure that get_output_size* returns a whole number of
13273           sample_size
13274           set sample_size each time either channel or format is set
13275         * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
13276         * gst/audioresample/resample_functable.c:
13277         (resample_scale_functable):
13278         * gst/audioresample/resample_ref.c: (resample_scale_ref):
13279           remove r->sample_size, it's done in resample.c now
13280           add some debugging to the ref implementation
13281           make sure we only give back bytes that are wholes of the sample
13282           size
13283
13284 2005-08-25  Jan Schmidt  <thaytan@mad.scientist.com>
13285         * gst/playback/gstplaybasebin.c: (fill_buffer):
13286         Revert unpopular change for GST_MESSAGE_SRC to GObject.
13287
13288 2005-08-25  Stefan Kost  <ensonic@users.sf.net>
13289
13290         * gst/volume/gstvolume.c:
13291           made set_caps function static
13292
13293 2005-08-24  Wim Taymans  <wim@fluendo.com>
13294
13295         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
13296         (gst_vorbisenc_change_state):
13297         Stop leaking taglists.
13298
13299 2005-08-24  Wim Taymans  <wim@fluendo.com>
13300
13301         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
13302         (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
13303         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
13304         (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
13305         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13306         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
13307         Parse seeking events better.
13308         Unref static caps.
13309         Generate correct newsegment events, fixes seeking in live oggs.
13310
13311         * ext/theora/theoradec.c: (theora_dec_src_query),
13312         (theora_dec_src_event), (theora_dec_src_getcaps),
13313         (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
13314         Use newsegment values to report correct play time.
13315
13316         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
13317         (vorbis_dec_src_event), (vorbis_dec_sink_event):
13318         * ext/vorbis/vorbisdec.h:
13319         Parse and use newsegment values to report correct play time.
13320
13321         * gst-libs/gst/audio/gstbaseaudiosink.c:
13322         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
13323         Clear ringbuffer on flush.
13324         Use newsegment values to calculate playback time.
13325
13326         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
13327         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
13328         Basesink does newsegment calculations for us now.
13329
13330 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
13331
13332         * check/Makefile.am:
13333         * configure.ac:
13334           add core's plugins to the mix so that playbin works
13335         * check/generic/states.c: (GST_START_TEST):
13336           set a 0 timeout on pipelines, so they don't force the next
13337           state change
13338         * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
13339         (gst_play_base_bin_change_state):
13340           remove the crappy error handling and do GST error handling
13341
13342 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
13343
13344         * check/Makefile.am:
13345         * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
13346           add same test as to core, it bitches out on playbin atm.
13347
13348 2005-08-24  Wim Taymans  <wim@fluendo.com>
13349
13350         * configure.ac:
13351         Remove audioscale.
13352
13353 2005-08-24  Wim Taymans  <wim@fluendo.com>
13354
13355         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
13356         (gst_videoscale_prepare_size), (parse_caps),
13357         (gst_videoscale_set_caps), (gst_videoscale_get_size),
13358         (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
13359         (gst_videoscale_transform):
13360         * gst/videoscale/gstvideoscale.h:
13361         Refactor, make use of BaseTranform really well.
13362
13363 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
13364
13365         * configure.ac:
13366           compile audioresample
13367         * gst/audioresample/Makefile.am:
13368         * gst/audioresample/buffer.c:
13369         * gst/audioresample/functable.c:
13370         * gst/audioresample/gstaudioresample.c:
13371         * gst/audioresample/gstaudioresample.h:
13372         * gst/audioresample/resample.c:
13373         (resample_get_output_size_for_input):
13374         * gst/audioresample/resample.h:
13375         * gst/audioresample/resample_chunk.c:
13376         * gst/audioresample/resample_functable.c:
13377         * gst/audioresample/resample_ref.c:
13378           port to use basetransform; doesn't work in all cases yet
13379
13380 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
13381
13382         * gst/audioconvert/gstaudioconvert.c:
13383         (gst_audio_convert_class_init), (gst_audio_convert_init),
13384         (audio_convert_get_unit_size), (audio_convert_transform_caps),
13385         (audio_convert_fixate_caps), (audio_convert_set_caps),
13386         (audio_convert_transform),
13387         (gst_audio_convert_buffer_to_default_format),
13388         (gst_audio_convert_buffer_from_default_format),
13389         (gst_audio_convert_channels):
13390         * gst/audioconvert/gstchannelmix.c:
13391         * gst/audioconvert/gstchannelmix.h:
13392           port to basetransform
13393         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13394         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
13395         (gst_ffmpegcsp_get_unit_size):
13396         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
13397         (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
13398           fix for basetransform changes
13399
13400 2005-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
13401
13402         * check/Makefile.am:
13403           Add CHECK_CFLAGS and LDFLAGS
13404
13405         * gst/playback/gstplaybasebin.c: (fill_buffer):
13406           GST_MESSAGE_SRC became a GObject
13407
13408 2005-08-24  Wim Taymans  <wim@fluendo.com>
13409
13410         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
13411         (gst_ring_buffer_clear_all):
13412         * gst-libs/gst/audio/gstringbuffer.h:
13413         Added function to clear the ringbuffer.
13414
13415 2005-08-24  Andy Wingo  <wingo@pobox.com>
13416
13417         * sys/v4l/gstv4lelement.c (gst_v4lelement_start) 
13418         (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
13419         of _open and _close.
13420
13421         * sys/v4l/gstv4lxoverlay.h:
13422         * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
13423         an Xv connection here, instead of all the time. Make Xv only be
13424         loaded if you axe for it. Kindof a workaround for buggy behaviour
13425         of Xv when using remote xservers (XvQueryExtension would block).
13426         (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
13427         replace the _open and _close public API. Only start the xv
13428         connection if necessary.
13429         (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
13430
13431 2005-08-23  David Schleef  <ds@schleef.org>
13432
13433         * gst/audioresample/Makefile.am: Leet audioresampling code
13434         * gst/audioresample/buffer.c:
13435         * gst/audioresample/buffer.h:
13436         * gst/audioresample/debug.c:
13437         * gst/audioresample/debug.h:
13438         * gst/audioresample/functable.c:
13439         * gst/audioresample/functable.h:
13440         * gst/audioresample/gstaudioresample.c:
13441         * gst/audioresample/gstaudioresample.h:
13442         * gst/audioresample/resample.c:
13443         * gst/audioresample/resample.h:
13444         * gst/audioresample/resample_chunk.c:
13445         * gst/audioresample/resample_functable.c:
13446         * gst/audioresample/resample_ref.c:
13447
13448 2005-08-23  Wim Taymans  <wim@fluendo.com>
13449
13450         * examples/seeking/seek.c: (make_vorbis_pipeline),
13451         (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
13452         Small seek updates.
13453
13454 2005-08-23  Andy Wingo  <wingo@pobox.com>
13455
13456         * gst-libs/gst/audio/gstbaseaudiosrc.c
13457         (gst_base_audio_src_fixate): Only fixate endianness if it is
13458         present in the caps.
13459
13460 2005-08-22  Andy Wingo  <wingo@pobox.com>
13461
13462         * ext/alsa/gstalsasink.c (gst_alsasink_get_property): 
13463         * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
13464         device-name property.
13465
13466         * gst-libs/gst/audio/gstaudiosrc.h:
13467         * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
13468         close_device in the ring buffer, like gstaudiosink.
13469
13470         * ext/alsa/gstalsamixer.h:
13471         * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
13472         macro to implement the interface without much code. Cleanups. 
13473
13474         * ext/alsa/gstalsasrc.h:
13475         * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
13476         READY.
13477
13478         * ext/alsa/Makefile.am: Add new files.
13479         * ext/alsa/gstalsamixerelement.c: 
13480         * ext/alsa/gstalsamixerelement.c: Split element code out from
13481         mixer code so that alsasrc can be a mixer too.
13482
13483 2005-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
13484
13485         * check/elements/volume.c: (setup_volume), (cleanup_volume),
13486         (GST_START_TEST):
13487         * check/elements/vorbisdec.c: (setup_vorbisdec),
13488         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
13489         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
13490         (vorbis_handle_identification_packet),
13491         (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
13492         (vorbis_handle_header_packet), (vorbis_dec_push),
13493         (vorbis_dec_chain):
13494           use the setup/teardown methods to save code.  save code is good.
13495
13496 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
13497
13498         * check/Makefile.am:
13499           add ext dir for plugins
13500           add vorbisdec test conditionally
13501         * check/elements/volume.c: (setup_volume), (cleanup_volume),
13502         (GST_START_TEST), (volume_suite):
13503           add a test with wrong caps
13504         * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
13505         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
13506           add a vorbisdec test
13507         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
13508         (gst_ogg_demux_chain), (gst_ogg_demux_loop):
13509           clean up debug output
13510         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
13511           yay, fix a segfault/security issue in vorbisdec
13512           gst-launch fakesrc ! vorbisdec wasn't happy
13513         * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
13514         (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
13515         (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
13516         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
13517         (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
13518         (gst_vorbisenc_set_metadata), (get_constraints_string),
13519         (update_start_message), (gst_vorbisenc_setup),
13520         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
13521         (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
13522         (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
13523         (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
13524         * ext/vorbis/vorbisenc.h:
13525           march in line
13526         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13527         (gst_ffmpegcsp_transform):
13528           have the kow come home
13529         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
13530           debug my func ptr
13531         * gst/volume/gstvolume.c: (volume_set_caps):
13532           add a debug
13533
13534 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
13535
13536         * Makefile.am:
13537         * check/.cvsignore:
13538         * check/Makefile.am:
13539         * check/elements/.cvsignore:
13540         * check/elements/volume.c: (chain_func), (event_func),
13541         (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
13542         (main):
13543         * configure.ac:
13544           add unit test structure for gst-plugins-base
13545           add a test for volume
13546         * gst/volume/gstvolume.c: (gst_volume_list_tracks),
13547         (gst_volume_set_volume), (gst_volume_get_volume),
13548         (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
13549         (volume_funcfind), (volume_process_float), (volume_process_int16),
13550         (volume_set_caps), (volume_transform), (volume_update_mute),
13551         (volume_update_volume), (volume_set_property),
13552         (volume_get_property):
13553           document a little; use basetransform vmethod _set_caps
13554
13555 2005-08-19  Andy Wingo  <wingo@pobox.com>
13556
13557         * ext/alsa/gstalsamixertrack.h:
13558         * ext/alsa/gstalsamixertrack.c:
13559         * ext/alsa/gstalsamixeroptions.h:
13560         * ext/alsa/gstalsamixeroptions.c:
13561         * ext/alsa/gstalsamixer.h:
13562         * ext/alsa/gstalsamixer.c: Port to 0.9.
13563
13564         * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
13565         Remove gstalsa.c and alsaclock. No more cruft here.
13566         
13567 2005-08-18  Wim Taymans  <wim@fluendo.com>
13568
13569         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13570         (gst_base_rtp_depayload_chain),
13571         (gst_base_rtp_depayload_add_to_queue),
13572         (gst_base_rtp_depayload_push),
13573         (gst_base_rtp_depayload_queue_release):
13574         * gst-libs/gst/rtp/gstbasertpdepayload.h:
13575         Fix for RTPBuffer changes.
13576
13577         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
13578         (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
13579         (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
13580         (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
13581         (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
13582         (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
13583         (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
13584         (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
13585         (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
13586         (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
13587         (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
13588         (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
13589         (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
13590         (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
13591         (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
13592         (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
13593         (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
13594         (gst_rtpbuffer_get_payload):
13595         * gst-libs/gst/rtp/gstrtpbuffer.h:
13596         Don't subclass GstBuffer but add methods and helper functions
13597         to construct and manipulate RTP packets in regular GstBuffers.
13598
13599 2005-08-18  Stefan Kost  <ensonic@users.sf.net>
13600
13601         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
13602           moved statement below switch
13603         * gst/volume/gstvolume.c: (gst_volume_class_init):
13604           added debug ptr
13605
13606 2005-08-16  Wim Taymans  <wim@fluendo.com>
13607
13608         * gst-libs/gst/audio/gstbaseaudiosrc.c:
13609         (gst_base_audio_src_change_state):
13610         Open and close device in READY<->NULL state change.
13611
13612 2005-08-16  Andy Wingo  <wingo@pobox.com>
13613
13614         * examples/seeking/Makefile.am: Don't compile non-compiling
13615         compiled objects with the compiler.
13616
13617         * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
13618         elements.
13619
13620 2005-08-12  Philippe Khalaf <burger@speedy.org>
13621         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13622         * gst-libs/gst/rtp/gstbasertpdepayload.h:
13623           Made a thread to release the queue.
13624           Removed timestamp conversion for now.
13625
13626 2005-08-10  Philippe Khalaf <burger@speedy.org>
13627         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13628         * gst-libs/gst/rtp/gstbasertpdepayload.h:
13629           Added rtp timestamp -> gst timestamp conversion.
13630           Fixed several problems with queue.
13631
13632 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
13633
13634         * gst-libs/gst/audio/gstaudioclock.h:
13635         * gst-libs/gst/audio/gstaudiofilter.h:
13636         * gst-libs/gst/audio/gstaudiosink.h:
13637         * gst-libs/gst/audio/gstaudiosrc.h:
13638         * gst-libs/gst/audio/gstbaseaudiosink.h:
13639         * gst-libs/gst/audio/gstbaseaudiosrc.h:
13640         * gst-libs/gst/audio/gstringbuffer.h:
13641         * gst-libs/gst/net/gstnetbuffer.h:
13642         * gst-libs/gst/rtp/gstbasertpdepayload.h:
13643         * gst-libs/gst/rtp/gstrtpbuffer.h:
13644           Add padding (you will need to rebuild gst-plugins-base,
13645           gst-plugins and all applications afterwards!)
13646
13647 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
13648
13649         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
13650         (gst_riff_parse_chunk):
13651           Fix bug in debug message and add some more debug messages.
13652
13653 2005-08-08  Edward Hervey  <edward@fluendo.com>
13654
13655         * gst-libs/gst/riff/riff-media.c:
13656         backported updates since branch
13657
13658 2005-08-08  Andy Wingo  <wingo@pobox.com>
13659
13660         * gst-libs/gst/audio/gstbaseaudiosink.c
13661         (gst_base_audio_sink_change_state): Open the device in NULL->READY
13662         like good elements should. Close on READY->NULL too.
13663
13664         * gst-libs/gst/audio/gstaudiosink.c
13665         (gst_audioringbuffer_open_device,
13666         (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
13667         (gst_audioringbuffer_release): Updates for new ring buffer API,
13668         hook into the new audio sink api.
13669
13670         * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
13671         (GstAudioSinkClass.close): Just open and close the device -- no
13672         resource allocation or configuration.
13673         (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
13674         vmethods, handle device setup and resource allocation.
13675
13676         * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
13677         (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
13678         base class API.
13679
13680         * gst-libs/gst/audio/gstringbuffer.h
13681         (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
13682         New vmethods.
13683
13684         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
13685         (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
13686         New API functions. The device should be opened before acquiring
13687         and closed after releasing.
13688
13689 2005-08-08  Tim-Philipp Müller  <tim at centricular dot net>
13690
13691         * gst-libs/gst/interfaces/mixer.h:
13692           Reset padding to GST_PADDING.
13693
13694 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13695
13696         * gst/playback/gstplaybin.c: (remove_sinks):
13697           Remove visualization from parent explicitely; works around some
13698           apparent refcount issue that I haven't tracked down yet.
13699
13700 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13701
13702         * ext/alsa/gstalsasink.c: (set_hwparams):
13703           Assign debug category, add negotiation debug msgs.
13704
13705 2005-08-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13706
13707         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
13708           Fix error code for file-not-found to NOT_FOUND.
13709
13710 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
13711
13712         * common/gtk-doc-plugins.mak:
13713         * docs/plugins/Makefile.am:
13714         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13715         * docs/plugins/gst-plugins-base-plugins-sections.txt:
13716           renamed to actual element names, so much nicer to look at
13717         * docs/plugins/tmpl/gstmultifdsink.sgml:
13718           remove
13719         * docs/plugins/tmpl/multifdsink.sgml:
13720         * docs/plugins/tmpl/tcpserversink.sgml:
13721           add
13722         * ext/alsa/gstalsa.c:
13723         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
13724         * ext/ogg/gstoggmux.c:
13725         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
13726         * gst/playback/gstdecodebin.c:
13727         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
13728         * gst/tcp/gsttcpserversink.c:
13729           various fixes and documentation additions
13730
13731 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
13732
13733         * common/Makefile.am:
13734         * common/gstdoc-scangobj:
13735         * common/gtk-doc-plugins.mak:
13736         * common/gtk-doc.mak:
13737           add a custom scangobj that uses the registry
13738           add a custom gtk-doc-plugins.mak that uses it
13739           some doc build fixes
13740         * configure.ac:
13741         * docs/Makefile.am:
13742         * docs/plugins/Makefile.am:
13743         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13744         * docs/plugins/gst-plugins-base-plugins-sections.txt:
13745         * docs/plugins/gst-plugins-base-plugins.types:
13746         * docs/plugins/tmpl/gstmultifdsink.sgml:
13747           add docs for one element, multifdsink
13748         * gst/adder/gstadder.h:
13749         * gst/volume/gstvolume.h:
13750           don't privatize enum
13751         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
13752         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
13753         (gst_sync_method_get_type), (gst_client_status_get_type),
13754         (gst_multifdsink_class_init),
13755         (gst_multifdsink_client_queue_buffer),
13756         (gst_multifdsink_handle_client_write):
13757         * gst/tcp/gstmultifdsink.h:
13758         * gst/tcp/gsttcp.h:
13759         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
13760         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
13761         (gst_tcpclientsink_render):
13762         * gst/tcp/gsttcpclientsink.h:
13763         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
13764         (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
13765         (gst_tcpclientsrc_start):
13766         * gst/tcp/gsttcpclientsrc.h:
13767         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
13768         (gst_tcpserversrc_init), (gst_tcpserversrc_create):
13769         * gst/tcp/gsttcpserversrc.h:
13770         * gst/typefind/gsttypefindfunctions.c:
13771           remove superfluous Type stuff
13772
13773 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13774
13775         * gst/playback/gstplaybin.c: (gen_video_element):
13776           Enable videoscale.
13777
13778 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13779
13780         * gst-libs/gst/gconf/gconf.c:
13781         * gst-libs/gst/gconf/gconf.h:
13782           Fix some Andy Problem [tm].
13783
13784 2005-08-04  Andy Wingo  <wingo@pobox.com>
13785
13786         * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
13787         * gst/ffmpegcolorspace/gstffmpegcolorspace.c
13788         (gst_ffmpegcsp_get_size): Adapt to API changes.
13789
13790         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
13791         Implement an in-place do-nothing transform.
13792
13793 2005-08-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13794
13795         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
13796         (gst_ximagesink_renegotiate_size):
13797           Do not set new window sizes yet if we prepare a new buffer size
13798           for upstream renegotiation (software scaling) at some point in the
13799           future, because this new size waqs not actually accepted yet. Once
13800           accepted, renegotiation later on will set the new sizes just fine.
13801           Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
13802           embedding testcase.
13803
13804 2005-08-03  Andy Wingo  <wingo@pobox.com>
13805
13806         * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
13807         (gst_ximagesink_buffer_alloc): 
13808         Protect the height, width, and desired_caps with the pool_lock.
13809         Fixes videotestsrc ! queue ! ximagesink.
13810
13811 2005-08-02  Edward Hervey  <edward@fluendo.com>
13812
13813         * gst/volume/gstvolume.c:
13814         include left from controller cleanup
13815
13816 2005-08-02  Jan Schmidt  <thaytan@mad.scientist.com>
13817         * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
13818           Stop collectpads before calling the parent state
13819           change function on PAUSED->READY.
13820
13821 2005-08-01  Jan Schmidt  <thaytan@mad.scientist.com>
13822         * configure.ac:
13823           When testing for X libs, use the X CFlags 
13824         * gst/adder/gstadder.c: (gst_adder_change_state):
13825           Stop the collectpads before calling parent state change function
13826           on PAUSED->READY, otherwise we deadlock deactivating pads.
13827
13828 2005-08-01  Stefan Kost  <ensonic@users.sf.net>
13829
13830         * configure.ac:
13831         * docs/libs/tmpl/gstcolorbalance.sgml:
13832         * docs/libs/tmpl/gstmixer.sgml:
13833         * examples/Makefile.am:
13834         * gst/sine/Makefile.am:
13835         * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
13836         (gst_sinesrc_set_property), (plugin_init):
13837         * gst/sine/gstsinesrc.h:
13838         * gst/volume/Makefile.am:
13839         * gst/volume/gstvolume.c: (gst_volume_set_volume),
13840         (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
13841         (volume_process_float), (volume_process_int16),
13842         (volume_set_property), (plugin_init):
13843         * gst/volume/gstvolume.h:
13844           deactivate and remove dparams (libgstcontrol)
13845
13846 2005-07-29  Wim Taymans  <wim@fluendo.com>
13847
13848         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
13849         Convert me to BaseTransform!! help..
13850
13851 2005-07-29  Andy Wingo  <wingo@pobox.com>
13852
13853         * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
13854         sinks.
13855
13856         * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
13857         support of both endiannesses.
13858
13859 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
13860
13861         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
13862           Fix confusing debug message (s/event/query/)
13863
13864 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
13865
13866         * gst/videotestsrc/videotestsrc.h:
13867           Use "_stdint.h" instead of <stdint.h>
13868
13869 2005-07-27  Wim Taymans  <wim@fluendo.com>
13870
13871         * ext/vorbis/Makefile.am:
13872         Revert wrong commit.
13873
13874 2005-07-27  Wim Taymans  <wim@fluendo.com>
13875
13876         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
13877         More compilation fixen.
13878
13879 2005-07-27  Wim Taymans  <wim@fluendo.com>
13880
13881         * gst-libs/gst/audio/gstbaseaudiosink.c:
13882         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
13883         (gst_base_audio_sink_create_ringbuffer),
13884         (gst_base_audio_sink_change_state):
13885         Fix compilation.
13886
13887 2005-07-27  Wim Taymans  <wim@fluendo.com>
13888
13889         * examples/seeking/seek.c: (setup_dynamic_link),
13890         (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
13891         (query_positions_elems), (query_positions_pads), (do_seek):
13892         Update seek example.
13893
13894         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
13895         (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
13896         (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
13897         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
13898         (gst_ogg_demux_handle_event),
13899         (gst_ogg_demux_deactivate_current_chain),
13900         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
13901         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13902         (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
13903         (gst_ogg_demux_loop):
13904         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
13905         * ext/theora/theoradec.c: (theora_dec_src_event),
13906         (theora_dec_src_getcaps), (theora_dec_sink_event),
13907         (theora_dec_push), (theora_dec_chain):
13908         * ext/vorbis/Makefile.am:
13909         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
13910         (vorbis_dec_sink_event), (vorbis_dec_push),
13911         (vorbis_handle_data_packet):
13912         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
13913         (gst_vorbisenc_chain):
13914         * gst/playback/gststreaminfo.c: (cb_probe):
13915         * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
13916         * gst/videorate/gstvideorate.c: (gst_videorate_event):
13917         * gst/videoscale/gstvideoscale.c:
13918         (gst_videoscale_handle_src_event):
13919         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
13920         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
13921         (gst_ximagesink_navigation_send_event):
13922         * sys/xvimage/xvimagesink.c:
13923         (gst_xvimagesink_navigation_send_event):
13924         Various event updates and cleanups
13925
13926 2005-07-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13927
13928         * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
13929           Fix segfault for I420/YV12.
13930
13931 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13932
13933         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
13934           Report bitrate.
13935
13936 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13937
13938         * gst/playback/gstplaybin.c: (gen_video_element),
13939         (gen_audio_element):
13940           Switch to auto*sink elements as default sinks; add volume element
13941           so that volume control in totem works.
13942
13943 2005-07-21  Wim Taymans  <wim@fluendo.com>
13944
13945         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
13946         * gst/playback/gstplaybin.c: (setup_sinks),
13947         (gst_play_bin_change_state):
13948         Refcount fix and more comments.
13949
13950 2005-07-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13951
13952         * sys/ximage/Makefile.am:
13953         * sys/ximage/ximage.c: (plugin_init):
13954         * sys/ximage/ximagesink.c:
13955         Prepare for adding ximagesrc, rename of plugin to ximage etc.
13956         
13957
13958 2005-07-21  Wim Taymans  <wim@fluendo.com>
13959
13960         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
13961         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
13962         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
13963         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13964         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
13965         (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
13966         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
13967         (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
13968         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
13969         Generate correct disconts for live chained oggs.
13970
13971         * gst-libs/gst/audio/gstbaseaudiosink.c:
13972         (gst_base_audio_sink_render),
13973         (gst_base_audio_sink_create_ringbuffer),
13974         (gst_base_audio_sink_change_state):
13975         Handle discont math correctly.
13976
13977         * gst/playback/gstplaybin.c: (add_sink):
13978         Some small debug cleanup.
13979
13980 2005-07-21  Wim Taymans  <wim@fluendo.com>
13981
13982         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
13983         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
13984         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
13985         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13986         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
13987         (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
13988         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
13989         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
13990         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13991         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
13992         (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
13993         (gst_ogg_demux_change_state), (gst_ogg_print):
13994         Reorganize code to send the right disconts when in streaming
13995         mode.
13996
13997 2005-07-20  Andy Wingo  <wingo@pobox.com>
13998
13999         * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
14000         fix (?), fixes a seggie mcfalterson (#310894).
14001
14002 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14003
14004         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
14005         (gst_ogg_mux_set_header_on_caps):
14006         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
14007         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
14008         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
14009         * gst-libs/gst/audio/multichannel.c:
14010         (gst_audio_set_channel_positions),
14011         (gst_audio_set_structure_channel_positions_list):
14012         * gst/playback/gstdecodebin.c: (dynamic_create):
14013         * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
14014         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
14015           Fixes for API changes in core.
14016
14017 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14018
14019         * gst/playback/gstplaybasebin.c: (fill_buffer):
14020           Use _new_custom() so we can set custom message types for buffering
14021           messages.
14022
14023 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14024
14025         * configure.ac:
14026         * gst-libs/gst/Makefile.am:
14027         * gst-libs/gst/gconf/.cvsignore:
14028         * gst-libs/gst/gconf/Makefile.am:
14029         * gst-libs/gst/gconf/test-gconf.c:
14030         * pkgconfig/Makefile.am:
14031         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
14032         * pkgconfig/gstreamer-gconf.pc.in:
14033           Remove gconf stuff, use gconf elements instead from now on.
14034
14035 2005-07-20  Wim Taymans  <wim@fluendo.com>
14036
14037         * gst-libs/gst/audio/TODO:
14038         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
14039         (gst_audio_clock_get_internal_time):
14040         * gst-libs/gst/audio/gstaudioclock.h:
14041         * gst-libs/gst/audio/gstbaseaudiosink.c:
14042         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
14043         (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
14044         (gst_base_audio_sink_render),
14045         (gst_base_audio_sink_create_ringbuffer),
14046         (gst_base_audio_sink_change_state):
14047         Make sure the audio clock always returns an increasing value.
14048
14049 2005-07-19  Andy Wingo  <wingo@pobox.com>
14050
14051         * gst/videotestsrc/: Cleanups.
14052
14053 2005-07-19  Wim Taymans  <wim@fluendo.com>
14054
14055         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
14056         Better debugging.
14057
14058 2005-07-19  Wim Taymans  <wim@fluendo.com>
14059
14060         * examples/seeking/seek.c: (make_dv_pipeline),
14061         (make_vorbis_theora_pipeline), (query_rates),
14062         (query_positions_elems), (query_positions_pads), (do_seek):
14063         Make correct DV pipeline.
14064
14065 2005-07-18  Andy Wingo  <wingo@pobox.com>
14066
14067         * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
14068         default. Also because it's the only thing that really works. (This
14069         is used in the GConf elements).
14070         Use AS_LIBTOOL_TAGS.
14071
14072 2005-07-18  Wim Taymans  <wim@fluendo.com>
14073
14074         * gst/playback/gstdecodebin.c: (remove_element_chain):
14075         * gst/playback/gstplaybin.c: (add_sink):
14076         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
14077         (gst_stream_info_set_mute):
14078         * gst/playback/gststreamselector.c:
14079         (gst_stream_selector_get_linked_pad),
14080         (gst_stream_selector_getcaps), (gst_stream_selector_chain):
14081         More leak and compile fixes.
14082
14083 2005-07-18  Wim Taymans  <wim@fluendo.com>
14084
14085         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
14086         (query_rates), (query_positions_elems), (query_positions_pads),
14087         (do_seek), (seek_cb), (stop_seek):
14088         Updated seek example. 
14089
14090         * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
14091         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
14092         (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
14093         * gst/playback/gstplaybin.c: (add_sink):
14094         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
14095         (gst_stream_info_set_mute):
14096         Some refcount leak fixes.
14097
14098 2005-07-16  Wim Taymans  <wim@fluendo.com>
14099
14100         * gst-libs/gst/audio/gstbaseaudiosink.c:
14101         (gst_base_audio_sink_render):
14102         Align samples even if we have roundoff errors in the 
14103         timestamp conversion.
14104
14105 2005-07-16  Wim Taymans  <wim@fluendo.com>
14106
14107         * docs/libs/tmpl/gstringbuffer.sgml:
14108         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
14109         (query_rates), (query_positions_elems), (query_positions_pads),
14110         (update_scale), (do_seek):
14111         Updated seek example.
14112
14113         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14114         (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
14115         (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
14116         (gst_ogg_demux_loop):
14117         Push out correct discont values.
14118
14119         * ext/theora/theoradec.c: (theora_dec_src_convert),
14120         (theora_dec_sink_convert), (theora_dec_src_getcaps),
14121         (theora_dec_sink_event), (theora_handle_type_packet),
14122         (theora_handle_header_packet), (theora_dec_push),
14123         (theora_handle_data_packet), (theora_dec_chain),
14124         (theora_dec_change_state):
14125         Better timestamping.
14126
14127         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
14128         (vorbis_dec_sink_event), (vorbis_dec_push),
14129         (vorbis_handle_data_packet), (vorbis_dec_chain):
14130         * ext/vorbis/vorbisdec.h:
14131         Better timestamping.
14132
14133         * gst-libs/gst/audio/gstbaseaudiosink.c:
14134         (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
14135         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
14136         Handle syncing on timestamps instead of sample offsets. Make
14137         use of DISCONT values as described in design docs.
14138
14139         * gst-libs/gst/audio/gstbaseaudiosrc.c:
14140         (gst_base_audio_src_get_time):
14141         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
14142         (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
14143         (gst_ring_buffer_read):
14144         * gst-libs/gst/audio/gstringbuffer.h:
14145         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
14146         (gst_ximagesink_show_frame):
14147         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
14148         Correcly convert buffer timestamp to stream time.
14149
14150 2005-07-16  Wim Taymans  <wim@fluendo.com>
14151
14152         * gst/audioconvert/gstaudioconvert.c:
14153         (gst_audio_convert_get_buffer):
14154         Timestamp buffers correctly.
14155
14156         * gst/playback/gstplaybin.c: (gen_video_element):
14157         Make internal fakesink silent.
14158
14159 2005-07-15  Wim Taymans  <wim@fluendo.com>
14160
14161         * gst/ffmpegcolorspace/Makefile.am:
14162         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14163         (gst_ffmpegcsp_caps_remove_format_info),
14164         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
14165         (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
14166         (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
14167         (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
14168         Ported ffmpegcolorspace to basetransform.
14169
14170         * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
14171         * gst/volume/gstvolume.c: (volume_transform):
14172         Ported to new API.
14173
14174 2005-07-14  Wim Taymans  <wim@fluendo.com>
14175
14176         * gst/videotestsrc/Makefile.am:
14177         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
14178         (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
14179         (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
14180         (gst_videotestsrc_init), (gst_videotestsrc_event),
14181         (gst_videotestsrc_create), (gst_videotestsrc_start),
14182         (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
14183         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
14184         (gst_videotestsrc_get_property):
14185         * gst/videotestsrc/gstvideotestsrc.h:
14186         Make videotestsrc a pushsrc.
14187
14188 2005-07-14  Wim Taymans  <wim@fluendo.com>
14189
14190         * gst/tcp/gstfdset.c: (gst_fdset_free):
14191         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
14192         (gst_multifdsink_add), (gst_multifdsink_remove),
14193         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
14194         (gst_multifdsink_remove_client_link),
14195         (gst_multifdsink_client_queue_data),
14196         (gst_multifdsink_client_queue_caps),
14197         (gst_multifdsink_client_queue_buffer),
14198         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
14199         (gst_multifdsink_stop):
14200         * gst/tcp/gstmultifdsink.h:
14201         0.8 backporting.
14202
14203         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
14204         Also draw image when not from a pool.
14205
14206 2005-07-14  Wim Taymans  <wim@fluendo.com>
14207
14208         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
14209         (mute_stream), (silence_stream):
14210         Small debug additions.
14211
14212 2005-07-14  Wim Taymans  <wim@fluendo.com>
14213
14214         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
14215         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
14216         (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
14217         Better error recovery, ignore unconnected pads and
14218         non-fatal errors.
14219
14220 2005-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
14221
14222         * docs/libs/tmpl/gstaudio.sgml:
14223         * docs/libs/tmpl/gstcolorbalance.sgml:
14224         * docs/libs/tmpl/gstgconf.sgml:
14225         * docs/libs/tmpl/gstmixer.sgml:
14226         * docs/libs/tmpl/gstringbuffer.sgml:
14227         * docs/libs/tmpl/gsttuner.sgml:
14228         * gst-libs/gst/audio/gstbaseaudiosrc.c:
14229         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
14230         (gst_tcpclientsrc_class_init):
14231         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
14232         (gst_tcpserversrc_class_init):
14233         * sys/v4l/gstv4lelement.c:
14234           more autistic cleanliness in functions/names/defines
14235
14236 2005-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
14237
14238         * configure.ac:
14239           make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
14240           added manually to each Makefile.am so we are sure it goes
14241           *last* and doesn't add -L flags before linking in libs of our
14242           own, like, say, internal .la libs, that then accidentally pick
14243           up the installed copy.
14244         * docs/libs/Makefile.am:
14245         * ext/alsa/Makefile.am:
14246         * ext/cdparanoia/Makefile.am:
14247         * ext/gnomevfs/Makefile.am:
14248         * ext/libvisual/Makefile.am:
14249         * ext/ogg/Makefile.am:
14250         * ext/theora/Makefile.am:
14251         * ext/vorbis/Makefile.am:
14252         * gst-libs/gst/video/Makefile.am:
14253         * gst/adder/Makefile.am:
14254         * gst/audioconvert/Makefile.am:
14255         * gst/audiorate/Makefile.am:
14256         * gst/audioscale/Makefile.am:
14257         * gst/ffmpegcolorspace/Makefile.am:
14258         * gst/playback/Makefile.am:
14259         * gst/sine/Makefile.am:
14260         * gst/subparse/Makefile.am:
14261         * gst/tags/Makefile.am:
14262         * gst/tcp/Makefile.am:
14263         * gst/typefind/Makefile.am:
14264         * gst/videorate/Makefile.am:
14265         * gst/videoscale/Makefile.am:
14266         * gst/videotestsrc/Makefile.am:
14267         * gst/volume/Makefile.am:
14268         * sys/v4l/Makefile.am:
14269         * sys/ximage/Makefile.am:
14270         * sys/xvimage/Makefile.am:
14271           adapt properly to this change. This should make sure that
14272           plugins and libs properly link to the as-yet-uninstalled
14273           copies of stuff like libgstinterfaces and libgstvideo
14274
14275 2005-07-13  Andy Wingo  <wingo@pobox.com>
14276
14277         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
14278         (gst_v4lsrc_fixate): Fixate on format as well.
14279
14280         * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy) 
14281         (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
14282         buffer points to it.
14283         (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
14284         rather just doing X calls ourselves. Also fixes a memleak.
14285
14286 2005-07-12  Andy Wingo  <wingo@pobox.com>
14287
14288         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property) 
14289         (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init) 
14290         (gst_v4lsrc_create): Re-add the copy-mode property, default to
14291         TRUE to avoid deadlocks if an element holds on to our buffers.
14292
14293 2005-07-11  Thomas Vander Stichele  <thomas at apestaart dot org>
14294
14295         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
14296         (gst_sinesrc_init), (gst_sinesrc_create),
14297         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
14298         (gst_sinesrc_start):
14299         * gst/sine/gstsinesrc.h:
14300           removing num-buffers property before moving it
14301
14302 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
14303
14304         * configure.ac:
14305           use overridable ERROR_CFLAGS
14306         * docs/libs/gst-plugins-base-libs.types:
14307         * docs/libs/tmpl/gstringbuffer.sgml:
14308         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
14309         (gst_alsasink_class_init):
14310         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
14311         (gst_alsasrc_class_init):
14312         * gst-libs/gst/audio/audio.h:
14313         * gst-libs/gst/audio/gstaudioclock.h:
14314         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
14315         (gst_audio_filter_base_init), (gst_audio_filter_class_init),
14316         (gst_audio_filter_link), (gst_audio_filter_init),
14317         (gst_audio_filter_chain), (gst_audio_filter_set_property),
14318         (gst_audio_filter_get_property),
14319         (gst_audio_filter_class_add_pad_templates):
14320         * gst-libs/gst/audio/gstaudiofilter.h:
14321         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
14322         (gst_audio_filter_template_get_type),
14323         (gst_audio_filter_template_base_init),
14324         (gst_audio_filter_template_class_init),
14325         (gst_audio_filter_template_init),
14326         (gst_audio_filter_template_set_property),
14327         (gst_audio_filter_template_get_property), (plugin_init),
14328         (gst_audio_filter_template_setup),
14329         (gst_audio_filter_template_filter),
14330         (gst_audio_filter_template_filter_inplace):
14331         * gst-libs/gst/audio/gstaudiosink.c:
14332         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14333         (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
14334         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
14335         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
14336         (gst_audio_sink_base_init), (gst_audio_sink_class_init),
14337         (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
14338         * gst-libs/gst/audio/gstaudiosink.h:
14339         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
14340         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
14341         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14342         (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
14343         (gst_audioringbuffer_delay), (gst_audio_src_base_init),
14344         (gst_audio_src_class_init), (gst_audio_src_init),
14345         (gst_audio_src_create_ringbuffer):
14346         * gst-libs/gst/audio/gstaudiosrc.h:
14347         * gst-libs/gst/audio/gstbaseaudiosink.c:
14348         (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
14349         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
14350         (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
14351         (gst_base_audio_sink_set_property),
14352         (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
14353         (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
14354         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
14355         (gst_base_audio_sink_create_ringbuffer),
14356         (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
14357         * gst-libs/gst/audio/gstbaseaudiosink.h:
14358         * gst-libs/gst/audio/gstbaseaudiosrc.c:
14359         (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
14360         (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
14361         (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
14362         (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
14363         (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
14364         (gst_base_audio_src_event), (gst_base_audio_src_create),
14365         (gst_base_audio_src_create_ringbuffer),
14366         (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
14367         * gst-libs/gst/audio/gstbaseaudiosrc.h:
14368         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
14369         (gst_ring_buffer_class_init), (gst_ring_buffer_init),
14370         (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
14371         (gst_ring_buffer_debug_spec_caps),
14372         (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
14373         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
14374         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
14375         (gst_ring_buffer_start), (gst_ring_buffer_pause),
14376         (gst_ring_buffer_stop), (gst_ring_buffer_delay),
14377         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
14378         (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
14379         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
14380         (gst_ring_buffer_clear):
14381         * gst-libs/gst/audio/gstringbuffer.h:
14382         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
14383         (gst_video_sink_class_init), (gst_video_sink_get_type):
14384         * gst-libs/gst/video/videosink.h:
14385         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
14386         (gst_multifdsink_class_init),
14387         (gst_multifdsink_handle_client_write),
14388         (gst_multifdsink_change_state):
14389         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
14390         (gst_tcpclientsink_setcaps):
14391         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
14392         (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
14393         (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
14394         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
14395         (gst_ximagesink_send_pending_navigation),
14396         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
14397         (gst_ximagesink_class_init), (gst_ximagesink_get_type):
14398         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
14399         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
14400         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
14401         (gst_xvimagesink_send_pending_navigation),
14402         (gst_xvimagesink_navigation_send_event),
14403         (gst_xvimagesink_set_xwindow_id),
14404         (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
14405         (gst_xvimagesink_get_type):
14406         more macro splitting
14407
14408 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
14409
14410         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
14411           plug a memleak, allows me to import 1479 albums in one go
14412           in jamboree
14413         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14414         (vorbis_handle_type_packet), (vorbis_dec_chain),
14415         (vorbis_dec_change_state):
14416           fix some format strings
14417
14418 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
14419
14420         * docs/libs/tmpl/gstcolorbalance.sgml:
14421         * docs/libs/tmpl/gstmixer.sgml:
14422         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
14423         (gst_alsasink_set_property), (gst_alsasink_get_property):
14424         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
14425         (gst_alsasrc_set_property), (gst_alsasrc_get_property):
14426           add device property
14427
14428 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
14429
14430         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
14431         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
14432         (audiocast_register_listener), (audiocast_thread_run),
14433         (gst_gnomevfssrc_send_additional_headers_callback),
14434         (gst_gnomevfssrc_received_headers_callback),
14435         (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
14436         (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
14437         (gst_gnomevfssrc_get_size):
14438           add/clean up debugging
14439         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
14440           cleanups
14441
14442 2005-07-07  Andy Wingo  <wingo@pobox.com>
14443
14444         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
14445         framerate. Need to get a handle on when exactly this function is
14446         called, tho.
14447
14448         * sys/v4l/v4lsrc_calls.h:
14449         * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
14450         (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
14451         (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
14452
14453         * sys/v4l/v4l_calls.h: Cast to V4lElement.
14454         * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
14455         v4lelements are sources.
14456
14457         * sys/v4l/gstv4lxoverlay.h:
14458         * sys/v4l/gstv4lxoverlay.c:
14459         * sys/v4l/gstv4ltuner.h:
14460         * sys/v4l/gstv4ltuner.c: Header loc fixen.
14461         
14462         * sys/v4l/gstv4lsrc.h:
14463         * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
14464         PushSrc/BaseSrc. Removed most sync-related properties, videorate
14465         or something should handle that. Made a live source.
14466
14467         * sys/v4l/gstv4lelement.h:
14468         * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
14469         signals. Some cleanups.
14470
14471         * sys/v4l/gstv4lcolorbalance.h: Interface header update.
14472
14473         * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
14474         stuff.
14475
14476         * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
14477         stuff.
14478
14479         * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
14480
14481 2005-07-07  Wim Taymans  <wim@fluendo.com>
14482
14483         * ext/theora/theoradec.c: (theora_get_query_types),
14484         (theora_dec_src_getcaps), (theora_dec_push):
14485         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
14486         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
14487         Remove deprecated/unused query types.
14488
14489 2005-07-06  Wim Taymans  <wim@fluendo.com>
14490
14491         * ext/alsa/Makefile.am:
14492         * ext/alsa/gstalsaplugin.c: (plugin_init):
14493         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
14494         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
14495         (gst_alsasrc_dispose), (gst_alsasrc_base_init),
14496         (gst_alsasrc_class_init), (gst_alsasrc_init),
14497         (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
14498         (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
14499         (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
14500         (gst_alsasrc_reset):
14501         * ext/alsa/gstalsasrc.h:
14502         * gst-libs/gst/audio/Makefile.am:
14503         * gst-libs/gst/audio/gstaudiosink.c:
14504         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14505         (gst_audioringbuffer_start):
14506         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
14507         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
14508         (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
14509         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
14510         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
14511         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
14512         (gst_audiosrc_base_init), (gst_audiosrc_class_init),
14513         (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
14514         * gst-libs/gst/audio/gstaudiosrc.h:
14515         * gst-libs/gst/audio/gstbaseaudiosink.c:
14516         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
14517         (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
14518         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
14519         * gst-libs/gst/audio/gstbaseaudiosrc.c:
14520         (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
14521         (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
14522         (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
14523         (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
14524         (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
14525         (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
14526         (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
14527         (gst_baseaudiosrc_change_state):
14528         * gst-libs/gst/audio/gstbaseaudiosrc.h:
14529         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
14530         (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
14531         (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
14532         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
14533         (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
14534         (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
14535         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
14536         * gst-libs/gst/audio/gstringbuffer.h:
14537         Added audiosource base classes.
14538         Ported alsasrc, still very basic.
14539
14540 2005-07-06  Wim Taymans  <wim@fluendo.com>
14541
14542         * ext/theora/theoradec.c: (theora_dec_src_getcaps),
14543         (theora_dec_push), (theora_handle_data_packet):
14544         Prepare for better timestamp fix later.
14545
14546         * gst/audioconvert/gstaudioconvert.c:
14547         List most accurate caps first
14548
14549         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
14550         Use proper pad task function.
14551
14552         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
14553         (gst_xvimagesink_show_frame):
14554         Fix deadlock when alloc failed.
14555
14556 2005-07-05  Andy Wingo  <wingo@pobox.com>
14557
14558         * ext/gnomevfs/gstgnomevfssrc.c:
14559         * gst/sine/gstsinesrc.c:
14560         * gst/tcp/gsttcpserversrc.c:
14561         * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
14562
14563         * sys/v4l/: Port from 0.8.
14564
14565         * Many files: Null if we got it....
14566
14567 2005-07-05  Andy Wingo  <wingo@pobox.com>
14568
14569         * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read): 
14570         * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
14571         Signedness fixes.
14572
14573 2005-07-05  Wim Taymans  <wim@fluendo.com>
14574
14575         * configure.ac:
14576         * gst/tcp/Makefile.am:
14577         * gst/tcp/README:
14578         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
14579         (gst_multifdsink_base_init), (gst_multifdsink_class_init),
14580         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
14581         (is_sync_frame), (gst_multifdsink_handle_client_write),
14582         (gst_multifdsink_render), (gst_multifdsink_start),
14583         (gst_multifdsink_stop), (gst_multifdsink_change_state):
14584         * gst/tcp/gstmultifdsink.h:
14585         * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
14586         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
14587         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
14588         * gst/tcp/gsttcp.h:
14589         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
14590         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
14591         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
14592         (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
14593         * gst/tcp/gsttcpclientsink.h:
14594         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
14595         (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
14596         (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
14597         (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
14598         (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
14599         * gst/tcp/gsttcpclientsrc.h:
14600         * gst/tcp/gsttcpplugin.c: (plugin_init):
14601         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
14602         * gst/tcp/gsttcpserversink.h:
14603         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
14604         (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
14605         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
14606         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
14607         (gst_tcpserversrc_stop):
14608         * gst/tcp/gsttcpserversrc.h:
14609         * gst/tcp/gsttcpsink.c:
14610         * gst/tcp/gsttcpsink.h:
14611         * gst/tcp/gsttcpsrc.c:
14612         * gst/tcp/gsttcpsrc.h:
14613         Ported tcp plugins to 0.9. 
14614         
14615
14616 2005-07-05  Andy Wingo  <wingo@pobox.com>
14617
14618         * gst/playback/gstplaybasebin.c (fill_buffer):
14619         message_new_application fixen.
14620
14621         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
14622         Style fix.
14623
14624 2005-07-04  Wim Taymans  <wim@fluendo.com>
14625
14626         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
14627         Set caps on output buffer.
14628
14629 2005-07-04  Andy Wingo  <wingo@pobox.com>
14630
14631         * ext/gnomevfs/gstgnomevfssrc.c
14632         (gst_gnomevfssrc_received_headers_callback) 
14633         (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
14634         hopefully.
14635
14636         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
14637         No refcount leakage.
14638
14639         * configure.ac: Enable -Werror.
14640         
14641         * ext/theora/theoradec.c (theora_dec_src_getcaps):
14642         * gst/audioconvert/bufferframesconvert.c
14643         (buffer_frames_convert_fixate):
14644         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
14645         (gst_audio_convert_fixate):
14646         * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
14647         (gst_sinesrc_create): Fixate func changes.
14648         
14649         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
14650         (gst_ximagesink_buffer_alloc): Unused var.
14651
14652 2005-07-01  Andy Wingo  <wingo@pobox.com>
14653
14654         * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
14655         getcaps to do explicit caps. Needs to be done in all decoders,
14656         possibly via a base class.
14657
14658         * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
14659
14660         * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
14661         caps on the sink pad, just rely on the pad template. Also, setting
14662         ANY caps on a pad is not valid because the caps are not fixed.
14663
14664         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
14665         caps on the buffer, and get the width from the desired_caps if
14666         they're set.
14667         (gst_ximagesink_renegotiate_size): Implement via setting the
14668         desired_caps on the ximagesink.
14669         (gst_ximagesink_setcaps): Only reset the width of the player if it
14670         wasn't already set. Not sure if this is right.
14671         (gst_ximagesink_show_frame): Memcpy only for normal buffers.
14672
14673         * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
14674         that the user wants. NULL unless the window has been resized.
14675
14676         * gst/volume/gstvolume.c (volume_transform): Adapt to
14677         basetransform refcount changes.
14678         
14679 2005-07-01  Andy Wingo  <wingo@pobox.com>
14680
14681         * gst/videoscale/gstvideoscale.c:
14682         * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
14683         from BaseTransform, implements a transform_caps. Removed dead code
14684         including some PAR stuff that was never reached -- should probably
14685         be added back somehow.
14686
14687 2005-07-01  Andy Wingo  <wingo@pobox.com>
14688
14689         * gst/videoscale: Merge David's work from 0.8 branch. Changes to
14690         come later.
14691
14692 2005-06-30  Thomas Vander Stichele  <thomas at apestaart dot org>
14693
14694         * configure.ac:
14695         * docs/libs/Makefile.am:
14696         * docs/libs/gst-plugins-libs.types:
14697         * ext/alsa/Makefile.am:
14698         * ext/alsa/gstalsamixer.h:
14699         * ext/alsa/gstalsamixeroptions.h:
14700         * ext/alsa/gstalsamixertrack.h:
14701         * gst-libs/gst/Makefile.am:
14702         * gst-libs/gst/colorbalance/.cvsignore:
14703         * gst-libs/gst/colorbalance/Makefile.am:
14704         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
14705         * gst-libs/gst/colorbalance/colorbalance.c:
14706         * gst-libs/gst/colorbalance/colorbalance.h:
14707         * gst-libs/gst/colorbalance/colorbalance.vcproj:
14708         * gst-libs/gst/colorbalance/colorbalancechannel.c:
14709         * gst-libs/gst/colorbalance/colorbalancechannel.h:
14710         * gst-libs/gst/interfaces/Makefile.am:
14711         * gst-libs/gst/interfaces/colorbalance.c:
14712         (gst_color_balance_class_init):
14713         * gst-libs/gst/interfaces/colorbalance.h:
14714         * gst-libs/gst/interfaces/interfaces-marshal.list:
14715         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
14716         * gst-libs/gst/interfaces/mixer.h:
14717         * gst-libs/gst/interfaces/mixeroptions.h:
14718         * gst-libs/gst/interfaces/navigation.c:
14719         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
14720         * gst-libs/gst/interfaces/tuner.h:
14721         * gst/volume/Makefile.am:
14722         * gst/volume/gstvolume.c:
14723         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
14724         * sys/ximage/Makefile.am:
14725         * sys/ximage/ximagesink.c:
14726         * sys/xvimage/Makefile.am:
14727         * sys/xvimage/xvimagesink.c:
14728           fold in all interfaces into an interfaces dir, preserving CVS
14729           history
14730
14731 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14732
14733         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
14734           Fix build after riff changes.
14735
14736 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14737
14738         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
14739         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
14740         (gst_riff_create_video_template_caps),
14741         (gst_riff_create_audio_template_caps),
14742         (gst_riff_create_iavs_template_caps):
14743         * gst-libs/gst/riff/riff-media.h:
14744         * gst-libs/gst/riff/riff-read.h:
14745         * gst-libs/gst/riff/riff.c: (gst_riff_init):
14746           Add gst_riff_init() to initialize the debug category, instead
14747           of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
14748
14749 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14750
14751         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
14752           Oops, I shouldn't apply hacks.
14753
14754 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14755
14756         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
14757           Remove pad_loop function which doesn't work.
14758
14759 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14760
14761         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
14762           Send EOS when deactivating.
14763         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
14764         (check_queue), (queue_threshold_reached), (queue_out_of_data),
14765         (gen_preroll_element), (probe_triggered), (mute_stream),
14766         (silence_stream), (new_decoded_pad), (setup_substreams),
14767         (set_active_source):
14768         * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
14769         (remove_sinks), (add_sink):
14770         * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
14771           Change for new probe API.
14772
14773 2005-06-29  Wim Taymans  <wim@fluendo.com>
14774
14775         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
14776         * gst-libs/gst/audio/gstbaseaudiosink.c:
14777         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
14778         (gst_baseaudiosink_change_state):
14779         * gst-libs/gst/audio/gstbaseaudiosink.h:
14780         * gst-libs/gst/audio/gstringbuffer.c:
14781         (gst_ringbuffer_set_callback):
14782         Fix compilation error.
14783         Ringbuffer starts out as not running.
14784         Free our clock in dispose.
14785         When releasing the ringbuffer we need to renegotiate so
14786         clear the pad caps.
14787
14788 2005-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
14789
14790         * autogen.sh:
14791         * configure.ac:
14792         * docs/Makefile.am:
14793         * docs/libs/Makefile.am:
14794         * docs/libs/gst-plugins-libs-docs.sgml:
14795         * docs/libs/gst-plugins-libs-sections.txt:
14796         * docs/libs/gst-plugins-libs.types:
14797         * docs/libs/tmpl/gstaudio.sgml:
14798         * docs/libs/tmpl/gstcolorbalance.sgml:
14799         * docs/libs/tmpl/gstringbuffer.sgml:
14800         * gst-libs/gst/audio/gstringbuffer.c:
14801         (gst_ringbuffer_set_callback):
14802           reinstate gtk-doc docs for plugin libs
14803
14804 2005-06-28  Wim Taymans  <wim@fluendo.com>
14805
14806         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14807         (gst_ogg_demux_init):
14808         Removed pad loop function.
14809
14810 2005-06-28  Wim Taymans  <wim@fluendo.com>
14811
14812         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
14813         If we're building a chain we are not in an error case
14814         when we queue a buffer.
14815
14816 2005-06-28  Andy Wingo  <wingo@pobox.com>
14817
14818         * *.c: Don't cast to GstObject before reffing/unreffing.
14819
14820 2005-06-27  Andy Wingo  <wingo@pobox.com>
14821
14822         * gst/videotestsrc/gstvideotestsrc.c
14823         (gst_videotestsrc_activate_push): Activation API changes.
14824
14825         * gst/playback/gstdecodebin.c (gst_decode_bin_change_state) 
14826         (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
14827         they have refs on the decodebin.
14828
14829         * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
14830         parent class.
14831         (gst_ogg_pad_typefind): Don't leak a pad ref.
14832         (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
14833         (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push) 
14834         (gst_ogg_demux_sink_activate_pull): Changes for activation API.
14835
14836 2005-06-27  Edward Hervey  <edward@fluendo.com>
14837
14838         * ext/theora/theoradec.c: (theora_dec_change_state): 
14839         re-arranged call to parent's state change in order to avoid locks (or
14840         worse).
14841
14842 2005-06-26  Edward Hervey  <edward@fluendo.com>
14843
14844         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
14845         2nd argument of 'unknow-type' signal is a GstCaps and not a
14846         GstMiniObject
14847
14848 2005-06-25  Jan Schmidt  <thaytan@mad.scientist.com>
14849         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
14850           Set the worker thread's running flag to TRUE before starting the
14851           thread.
14852         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
14853           Catch a failure to add typefind to the bin.
14854
14855 2005-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
14856
14857         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
14858         (gst_sinesrc_init), (gst_sinesrc_create),
14859         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
14860         (gst_sinesrc_start):
14861         * gst/sine/gstsinesrc.h:
14862           add num-buffers and timestamp-offset properties
14863         * gst/videotestsrc/gstvideotestsrc.c:
14864         (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
14865         (gst_videotestsrc_get_property):
14866           add timestamp-offset property
14867
14868 2005-06-23  Christian Schaller  <uraeus@gnome.org>
14869
14870         * configure.ac: add videorate
14871         * gst-plugins-base.spec.in: add videorate
14872
14873 2005-06-23  Wim Taymans  <wim@fluendo.com>
14874
14875         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14876         (gst_videorate_getcaps), (gst_videorate_setcaps),
14877         (gst_videorate_event), (gst_videorate_chain):
14878         Fixed videorate, fixating an already fixated caps is not
14879         an error.
14880
14881 2005-06-23  Wim Taymans  <wim@fluendo.com>
14882
14883         * ext/ogg/README:
14884         * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
14885         Buffer on caps is not boxed anymore.
14886
14887 2005-06-22  Wim Taymans  <wim@fluendo.com>
14888
14889         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
14890         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
14891         Set buffers on caps as miniobjects and not as boxed.
14892
14893 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
14894
14895         * configure.ac:
14896           back to HEAD
14897
14898 === release 0.9.1 ===
14899
14900 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
14901
14902         * .cvsignore:
14903         * NEWS:
14904         * README:
14905         * RELEASE:
14906         * configure.ac:
14907         * po/af.po:
14908         * po/az.po:
14909         * po/cs.po:
14910         * po/en_GB.po:
14911         * po/hu.po:
14912         * po/it.po:
14913         * po/nb.po:
14914         * po/nl.po:
14915         * po/or.po:
14916         * po/sq.po:
14917         * po/sr.po:
14918         * po/sv.po:
14919         * po/uk.po:
14920         * po/vi.po:
14921           updates for release
14922
14923 2005-06-09  Andy Wingo  <wingo@pobox.com>
14924
14925         * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
14926         
14927 2005-06-09  Andy Wingo  <wingo@pobox.com>
14928
14929         * configure.ac:
14930         * gst-libs/gst/Makefile.am:
14931         * gst-libs/gst/net/Makefile.am:
14932         Add gstnet to build.
14933
14934 2005-06-09  Andy Wingo  <wingo@pobox.com>
14935
14936         * gst-libs/gst/gconf/gconf.c:
14937         * gst/playback/test.c:
14938         * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
14939         fixes.
14940
14941         * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
14942
14943         * ext/theora/theoraenc.c (theora_enc_chain): 
14944         * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
14945
14946         * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
14947         RealPad.
14948
14949 2005-06-02  Wim Taymans  <wim@fluendo.com>
14950
14951         * gst-libs/gst/net/Makefile.am:
14952         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
14953         * pkgconfig/gstreamer-libs.pc.in:
14954         Added net stuff, version net lib.
14955
14956 2005-06-02  Wim Taymans  <wim@fluendo.com>
14957
14958         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
14959         (query_rates), (query_positions_elems), (query_positions_pads),
14960         (do_seek):
14961         Updated seek example.
14962
14963 2005-06-02  Andy Wingo  <wingo@pobox.com>
14964
14965         * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
14966         * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
14967         list.
14968
14969         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
14970         remove the typefind, the bin dispose will do it for us. When it's
14971         removed and unreffed, the signal handler will be disconnected,
14972         too.
14973         (unlinked): It's too difficult to disconnect from unlinked
14974         handlers, as they are on pads not elements. Just punt if the pads
14975         aren't grandkids of the bin.
14976
14977 2005-06-02  Wim Taymans  <wim@fluendo.com>
14978
14979         * ext/ogg/README:
14980         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14981         (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
14982         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
14983         * ext/theora/theoradec.c: (theora_dec_src_query),
14984         (theora_handle_data_packet):
14985         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
14986         (theora_enc_chain):
14987         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14988         (vorbis_handle_data_packet):
14989         * gst/audioconvert/bufferframesconvert.c:
14990         (buffer_frames_convert_chain):
14991         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14992         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14993         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
14994         (gst_ffmpegcsp_chain):
14995         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14996         (gst_videorate_getcaps), (gst_videorate_setcaps),
14997         (gst_videorate_event), (gst_videorate_chain):
14998         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
14999         (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
15000         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
15001         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
15002         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
15003         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
15004         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
15005         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
15006         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
15007         Cleanups and buffer alloc.
15008
15009 2005-05-31  Wim Taymans  <wim@fluendo.com>
15010
15011         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
15012         Don't try to call the delay method when the device is not
15013         opened.
15014
15015 2005-05-31  Wim Taymans  <wim@fluendo.com>
15016
15017         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
15018         Get actual segment size and buffer size after opening
15019         the device.
15020
15021 2005-05-30  Wim Taymans  <wim@fluendo.com>
15022
15023         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
15024         (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
15025         Also FLUSH upstream, makes the loop function exit faster.
15026         
15027         * ext/theora/theoradec.c: (theora_dec_src_query):
15028         Some more debug info in the query.
15029         
15030         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
15031         (gst_ximagesink_setcaps):
15032         Release lock on par error, better error reporting.
15033
15034 2005-05-26  Wim Taymans  <wim@fluendo.com>
15035
15036         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
15037         (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
15038         (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
15039         Clear chains in READY
15040         Queue packets until the chain is activated.
15041
15042 2005-05-25  Wim Taymans  <wim@fluendo.com>
15043
15044         * gst-libs/gst/audio/gstaudiosink.c:
15045         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15046         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15047         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15048         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15049         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15050         (gst_audiosink_create_ringbuffer):
15051         * gst-libs/gst/audio/gstbaseaudiosink.c:
15052         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15053         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15054         (gst_baseaudiosink_set_property), (build_linear_format),
15055         (debug_spec_caps), (debug_spec_buffer),
15056         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15057         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15058         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15059         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15060         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15061         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15062         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
15063         (gst_ringbuffer_play), (gst_ringbuffer_pause),
15064         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
15065         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
15066         (wait_segment), (gst_ringbuffer_commit),
15067         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
15068         (gst_ringbuffer_clear):
15069         Various small cleanups.
15070
15071         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15072         (gst_audio_convert_change_state):
15073         * gst/subparse/gstsubparse.c: (gst_subparse_chain):
15074         No need to take the locks anymore.
15075
15076 2005-05-25  Wim Taymans  <wim@fluendo.com>
15077
15078         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
15079         (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
15080         (remove_element_chain), (no_more_pads), (unlinked), (close_link),
15081         (type_found):
15082         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
15083         (group_destroy), (group_commit), (queue_overrun),
15084         (gen_preroll_element), (no_more_pads), (preroll_unlinked),
15085         (mute_stream), (new_decoded_pad), (setup_substreams),
15086         (setup_source), (mute_group_type), (set_active_source),
15087         (gst_play_base_bin_change_state):
15088         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
15089         (gen_video_element), (gen_text_element), (gen_audio_element),
15090         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
15091         * gst/playback/gststreaminfo.c: (gst_stream_info_new),
15092         (gst_stream_info_dispose), (gst_stream_info_set_mute):
15093         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
15094         Some playbin cleanups mostly refcounting sloppyness.
15095
15096 2005-05-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15097
15098         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
15099           Work with streaming input.
15100
15101 2005-05-25  Wim Taymans  <wim@fluendo.com>
15102
15103         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15104         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15105         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
15106         (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
15107         No need to take the STREAM lock anymore.
15108
15109 2005-05-25  Wim Taymans  <wim@fluendo.com>
15110
15111         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
15112         (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
15113         (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
15114         (gst_ogg_demux_chain), (gst_ogg_demux_loop),
15115         (gst_ogg_demux_sink_activate):
15116         * ext/theora/theoradec.c: (theora_dec_src_event),
15117         (theora_handle_comment_packet), (theora_dec_chain),
15118         (theora_dec_change_state):
15119         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
15120         (vorbis_handle_data_packet), (vorbis_dec_chain),
15121         (vorbis_dec_change_state):
15122         Remove STREAM locks as they are taken in core now.
15123         Never set bogus granulepos on vorbis/theora.
15124         Fix leaks in theoradec tag parsing.
15125
15126 2005-05-25  Wim Taymans  <wim@fluendo.com>
15127
15128         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
15129         Fix memleaks, GST_BUFFER_DATA() is not freed.
15130
15131 2005-05-25  Wim Taymans  <wim@fluendo.com>
15132
15133         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
15134         Open non-blocking, set to blocking mode afterwards to avoid
15135         lockups when audio device is busy.
15136
15137 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15138
15139         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
15140           This can't be good.
15141
15142 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15143
15144         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
15145         (gst_audio_convert_chain), (gst_audio_convert_link_src),
15146         (gst_audio_convert_setcaps):
15147           Implement instant setup switching.
15148
15149 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15150
15151         * gst/playback/gstplaybasebin.c: (probe_triggered):
15152           Fix missing unlock.
15153         * gst/playback/gstplaybin.c: (add_sink):
15154           First add, then link (otherwise pad link fails).
15155
15156 2005-05-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15157
15158         * examples/Makefile.am:
15159         fix buildbot (make distcheck)
15160
15161 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15162
15163         * gst/playback/gstplaybin.c: (gen_vis_element):
15164           Remove some wrong code. Doesn't work yet.
15165
15166 2005-05-19  Wim Taymans  <wim@fluendo.com>
15167
15168         * gst-libs/gst/net/Makefile.am:
15169         * gst-libs/gst/net/README:
15170         * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
15171         (gst_netbuffer_class_init), (gst_netbuffer_init),
15172         (gst_netbuffer_finalize), (gst_netbuffer_copy),
15173         (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
15174         (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
15175         (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
15176         * gst-libs/gst/net/gstnetbuffer.h:
15177         Added buffer subclass to store extra to/from addresses for
15178         network sources/sinks.
15179
15180 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15181
15182         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
15183           Don't lock an unassigned variable.
15184
15185 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15186
15187         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
15188           Increase buffer for video, decrease buffer for other media types.
15189         * gst/playback/gstplaybin.c: (gen_video_element),
15190         (gen_audio_element):
15191           Change names for debugging purposes.
15192
15193 2005-05-18  Wim Taymans  <wim@fluendo.com>
15194
15195         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15196         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15197         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
15198         (gst_ffmpegcsp_chain):
15199         Enable buffer alloc passthrough if the source and dest
15200         formats are the same.
15201
15202 2005-05-17  Wim Taymans  <wim@fluendo.com>
15203
15204         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
15205         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
15206         (gst_ogg_demux_chain_unlocked):
15207         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15208         (gst_audio_convert_caps_remove_format_info),
15209         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15210         (gst_audio_convert_fixate), (gst_audio_convert_change_state):
15211         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15212         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15213         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
15214         (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
15215         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
15216         (gst_ffmpegcsp_get_property):
15217         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
15218         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
15219         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
15220         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
15221         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
15222         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
15223         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
15224         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
15225         Leak fixes in oggdemux.
15226         Some cleanups in audioconvert.
15227         Make passthrough work along with buffer_alloc etc.
15228         Make buffer_alloc and buffer recycling actually work in
15229         xvimagesink.
15230
15231 2005-05-17  Thomas Vander Stichele  <thomas at apestaart dot org>
15232
15233         * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
15234           make the compiler happy
15235
15236 2005-05-17  Wim Taymans  <wim@fluendo.com>
15237
15238         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
15239         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
15240         (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
15241         (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
15242         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
15243         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
15244         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
15245         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
15246         (gst_xvimagesink_set_xwindow_id):
15247         * sys/xvimage/xvimagesink.h:
15248         Port xvimagesink to new MiniObject.
15249
15250 2005-05-17  Wim Taymans  <wim@fluendo.com>
15251
15252         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
15253         (gst_audiofilter_chain):
15254         * gst-libs/gst/audio/gstaudiosink.c:
15255         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15256         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15257         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15258         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15259         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15260         (gst_audiosink_create_ringbuffer):
15261         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15262         (gst_audio_convert_caps_remove_format_info),
15263         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15264         (gst_audio_convert_fixate), (gst_audio_convert_channels):
15265         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15266         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15267         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15268         Fix passthrough in ffmpegcolorspace.
15269         Fix memset in audiosink on wrong memory.
15270
15271 2005-05-16  David Schleef  <ds@schleef.org>
15272
15273         * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
15274         to GstMiniObject.
15275
15276 2005-05-16  David Schleef  <ds@schleef.org>
15277
15278         Port from GstData to GstMiniObject.
15279         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
15280         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
15281         (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
15282         (gst_ogg_mux_collected):
15283         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
15284         * ext/theora/theoradec.c: (theora_handle_comment_packet),
15285         (theora_handle_data_packet):
15286         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
15287         (theora_set_header_on_caps), (theora_enc_chain):
15288         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
15289         (vorbis_handle_comment_packet):
15290         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
15291         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
15292         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
15293         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
15294         * gst/audioconvert/gstaudioconvert.c:
15295         (gst_audio_convert_get_buffer):
15296         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
15297         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
15298         (mute_stream), (silence_stream):
15299         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
15300         * gst/volume/gstvolume.c: (volume_transform):
15301         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
15302         (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
15303         (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
15304         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
15305         (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
15306         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
15307         (gst_ximagesink_buffer_alloc):
15308         * sys/ximage/ximagesink.h:
15309
15310 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15311
15312         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15313         (fill_buffer), (check_queue), (queue_threshold_reached),
15314         (queue_out_of_data):
15315         * gst/playback/gstplaybasebin.h:
15316           Post buffer-fullness on the bus.
15317
15318 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15319
15320         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
15321         (try_to_link_1):
15322         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15323         (group_commit), (probe_triggered), (setup_source),
15324         (gst_play_base_bin_change_state):
15325         * gst/playback/gstplaybasebin.h:
15326         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15327         (gst_play_bin_init), (remove_sinks), (setup_sinks),
15328         (gst_play_bin_change_state):
15329           Move setup_output_pads into a virtual function, remove
15330           group-switch (no longer needed) and redirect (handled by bus
15331           now) signals.
15332
15333 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15334
15335         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
15336         (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
15337         (get_active_group), (get_building_group), (group_destroy),
15338         (group_commit), (check_queue), (queue_overrun),
15339         (queue_threshold_reached), (queue_out_of_data),
15340         (gen_preroll_element), (remove_groups), (unknown_type),
15341         (add_element_stream), (no_more_pads), (probe_triggered),
15342         (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
15343         (setup_substreams), (setup_source), (finish_source),
15344         (prepare_output), (muted_group_change_state),
15345         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
15346         (gst_play_base_bin_change_state):
15347         * gst/playback/gstplaybasebin.h:
15348         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15349         (gst_play_bin_init), (gst_play_bin_set_property),
15350         (gen_video_element), (gen_text_element), (gen_audio_element),
15351         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
15352         (gst_play_bin_change_state):
15353         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
15354         (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
15355         (stream_info_change_state), (gst_stream_info_set_mute),
15356         (gst_stream_info_get_property):
15357         * gst/playback/gststreaminfo.h:
15358         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
15359         (gst_stream_selector_get_linked_pad),
15360         (gst_stream_selector_getcaps),
15361         (gst_stream_selector_get_linked_pads),
15362         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
15363         * gst/playback/gststreamselector.h:
15364           Rough port of playbin. Needs some more work, but is mostly done,
15365           and uses a few locks in important places, which should make stuff
15366           like chain-switches clean. Still uses GST_STATE() in a few places,
15367           which isn't all that good an idea, subtitles/elements disabled
15368           because no elements to test with and thus probably broken, query
15369           and event handling moved to GstBin, internal thread removed
15370           alltogether because the pipeline does that for us now. Can play
15371           Ogg/Vorbis files. Haven't tested anything else yet.
15372
15373 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15374
15375         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
15376           Do no-more-pads (needed for autoplugging).
15377
15378 2005-05-10  Andy Wingo  <wingo@pobox.com>
15379
15380         * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
15381         message to the bus with the tags. Still not sent downstream tho.
15382
15383         * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
15384         get_parent.
15385         (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
15386         avoid refcounting hassles.
15387
15388 2005-05-09  Andy Wingo  <wingo@pobox.com>
15389
15390         * gst/volume/Makefile.am:
15391         * gst/volume/demo.c
15392         * gst/volume/gstvolume.h
15393         * gst/volume/gstvolume.c: Port to 0.9 API, derive from
15394         basetransform. Probably need an audio filter base class.
15395
15396 2005-05-09  Wim Taymans  <wim@fluendo.com>
15397
15398         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
15399         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
15400         (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
15401         (gst_vorbisenc_chain):
15402         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15403         (gst_audio_convert_caps_remove_format_info),
15404         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15405         (gst_audio_convert_fixate), (gst_audio_convert_channels):
15406         Make caps writable before writing to it.
15407         Fix negotiation in audioconvert some more.
15408
15409 2005-05-09  Wim Taymans  <wim@fluendo.com>
15410
15411         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
15412         (gst_videorate_getcaps), (gst_videorate_setcaps),
15413         (gst_videorate_event), (gst_videorate_chain):
15414         Better negotiation.
15415
15416 2005-05-09  Wim Taymans  <wim@fluendo.com>
15417
15418         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
15419         (gst_videorate_getcaps), (gst_videorate_setcaps),
15420         (gst_videorate_blank_data), (gst_videorate_init),
15421         (gst_videorate_event), (gst_videorate_chain),
15422         (gst_videorate_change_state):
15423         Port videorate, do a better job at negotiation while we're at
15424         it.
15425
15426 2005-05-09  Jan Schmidt  <thaytan@mad.scientist.com>
15427
15428         * configure.ac:
15429           Disable libvisual
15430
15431         * examples/Makefile.am:
15432         * gst-libs/gst/audio/Makefile.am:
15433         * gst-libs/gst/riff/Makefile.am:
15434         * gst-libs/gst/tag/Makefile.am:
15435         * gst-libs/gst/video/Makefile.am:
15436           Fixups for missing variables.
15437
15438 2005-05-09  Wim Taymans  <wim@fluendo.com>
15439
15440         * examples/seeking/seek.c: (make_theora_pipeline),
15441         (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
15442         (query_rates), (query_positions_elems), (query_positions_pads),
15443         (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
15444         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
15445         (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
15446         (gst_ogg_pad_typefind), (gst_ogg_demux_init),
15447         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
15448         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
15449         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
15450         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
15451         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
15452         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
15453         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
15454         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
15455         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
15456         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
15457         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
15458         (theora_dec_src_convert), (theora_dec_sink_convert),
15459         (theora_dec_src_query), (theora_dec_sink_query),
15460         (theora_dec_src_event), (theora_dec_sink_event),
15461         (theora_handle_comment_packet), (theora_handle_type_packet),
15462         (theora_handle_header_packet), (theora_handle_data_packet),
15463         (theora_dec_chain):
15464         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
15465         (vorbis_dec_convert), (vorbis_dec_src_query),
15466         (vorbis_dec_sink_query), (vorbis_dec_src_event),
15467         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15468         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15469         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
15470         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
15471         (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
15472         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
15473         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15474         (gst_play_bin_query):
15475         * gst/playback/test3.c: (update_scale):
15476         * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
15477         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
15478         * gst/subparse/gstsubparse.c: (gst_subparse_init):
15479         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
15480         (gst_videotestsrc_src_query):
15481         * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
15482         (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
15483         (paint_hline_YUV9):
15484         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
15485         Port to new query API.
15486         Updated seek.
15487         Cleanups in x[v]imagesink
15488
15489 2005-05-09  Andy Wingo  <wingo@pobox.com>
15490
15491         * ext/alsa/gstalsasink.h:
15492         * ext/gnomevfs/gstgnomevfssrc.c:
15493         (gst_gnomevfssrc_get_icy_metadata):
15494         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
15495         (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
15496         * ext/theora/theoradec.c (theora_dec_src_query)
15497         (theora_dec_src_event, theora_dec_sink_event)
15498         (theora_handle_comment_packet, theora_handle_data_packet):
15499         * ext/theora/theoraenc.c (theora_enc_chain):
15500         * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
15501         (vorbis_dec_sink_event, vorbis_handle_comment_packet):
15502         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
15503         * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
15504         (qt_type_find):
15505         * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
15506         (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
15507         (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
15508         (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
15509         (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
15510         (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
15511         (paint_setup_xBGR8888, paint_setup_RGBx8888)
15512         (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
15513         (paint_setup_RGB565, paint_setup_xRGB1555):
15514         * gst/videotestsrc/videotestsrc.h:
15515         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
15516         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
15517         (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
15518         GCC4 fixes.
15519         
15520         * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
15521         gst_pad_query_position. Fixes oggdemux.
15522
15523 2005-05-08  David Schleef  <ds@schleef.org>
15524
15525         * configure.ac: Require liboil.
15526         * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
15527         a few more.
15528         * gst/videotestsrc/videotestsrc.c:
15529         * gst/videotestsrc/videotestsrc.h:
15530
15531 2005-05-06  Wim Taymans  <wim@fluendo.com>
15532
15533         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15534         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15535         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15536         Well, unreffing a buffer right before pushing it is asking
15537         for trouble..
15538
15539 2005-05-06  Christian Schaller  <uraeus@gnome.org>
15540
15541         * pkgconfig/gstreamer-libs.pc.in: add missing library calls
15542
15543 2005-05-06  Wim Taymans  <wim@fluendo.com>
15544
15545         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15546         (gst_audio_convert_caps_remove_format_info),
15547         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15548         (gst_audio_convert_fixate), (gst_audio_convert_channels):
15549         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15550         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15551         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15552         * gst/sine/Makefile.am:
15553         * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
15554         (gst_sinesrc_class_init), (gst_sinesrc_init),
15555         (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
15556         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
15557         (gst_sinesrc_update_freq):
15558         * gst/sine/gstsinesrc.h:
15559         * gst/tcp/gstmultifdsink.c:
15560         * sys/xvimage/xvimagesink.c:
15561         Fixed negotiation wrt _peer_get_caps()
15562         Some cleanups.
15563
15564
15565 2005-05-06  Wim Taymans  <wim@fluendo.com>
15566
15567         * gst-libs/gst/audio/gstaudiosink.c:
15568         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15569         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15570         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15571         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15572         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15573         (gst_audiosink_create_ringbuffer):
15574         * gst-libs/gst/audio/gstbaseaudiosink.c:
15575         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15576         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15577         (gst_baseaudiosink_set_property), (build_linear_format),
15578         (debug_spec_caps), (debug_spec_buffer),
15579         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15580         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15581         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15582         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15583         * gst-libs/gst/audio/gstbaseaudiosink.h:
15584         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15585         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15586         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
15587         (gst_ringbuffer_play), (gst_ringbuffer_pause),
15588         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
15589         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
15590         (wait_segment), (gst_ringbuffer_commit),
15591         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
15592         (gst_ringbuffer_clear):
15593         * gst-libs/gst/audio/gstringbuffer.h:
15594         Make the base audiosink return an error when there is no
15595         audiobuffer negotiated.
15596
15597 2005-05-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15598
15599         * ext/Makefile.am:
15600         Disable cdparanoia until someone ports it!
15601
15602 2005-05-06  Wim Taymans  <wim@fluendo.com>
15603
15604         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15605         (gst_ogg_demux_sink_activate):
15606         And revert after wingo's revert.. sigh..
15607
15608 2005-05-05  Andy Wingo  <wingo@pobox.com>
15609
15610         * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
15611         GObject.
15612         * configure.ac: Return audiorate and subparse from the ghetto.
15613         Re-enable -Wall -Werror.
15614         * gst/subparse/gstsubparse.c:
15615         * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
15616         or chain-based. Cleaned up a bit. Not tested.
15617         
15618 2005-05-05  Christian Schaller <christian@fluendo.com> 
15619
15620         * Makefile.am: remove stuff that is not building
15621         * configure.ac: remove stuff that is not building
15622         * examples/Makefile.am: remove stuff that is not building
15623         * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
15624         * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
15625         * sys/Makefile.am: remove stuff that is not building
15626         * testsuite/Makefile.am: remove stuff that is not building
15627
15628 2005-05-05  Andy Wingo  <wingo@pobox.com>
15629
15630         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
15631         * gst-libs/gst/tag/gstvorbistag.c:
15632         (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
15633         * gst/adder/gstadder.h:
15634         * gst/audioconvert/gstchannelmix.c:
15635         (gst_audio_convert_fill_one_other):
15636         * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
15637         (gst_audiorate_init), (gst_audiorate_chain):
15638         * gst/playback/gstplaybasebin.c: (setup_source):
15639         * gst/playback/test3.c: (update_scale):
15640         Some GCC4 fixes
15641         
15642         * po/af.po:
15643         * po/az.po:
15644         * po/cs.po:
15645         * po/en_GB.po:
15646         * po/hu.po:
15647         * po/it.po:
15648         * po/nb.po:
15649         * po/nl.po:
15650         * po/or.po:
15651         * po/sq.po:
15652         * po/sr.po:
15653         * po/sv.po:
15654         * po/uk.po:
15655         * po/vi.po: Foo
15656
15657 2005-05-05  Wim Taymans  <wim@fluendo.com>
15658
15659         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15660         (gst_audio_convert_caps_remove_format_info),
15661         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
15662         (gst_audio_convert_change_state), (gst_audio_convert_channels):
15663         * gst/videotestsrc/gstvideotestsrc.c:
15664         (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
15665         (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
15666         (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
15667         (gst_videotestsrc_init), (gst_videotestsrc_loop):
15668         Don't ignore _push() return values.
15669         Make sure no processing is done when shutting down.
15670         Videotestsrc pad activation fix.
15671
15672 2005-05-05  Wim Taymans  <wim@fluendo.com>
15673
15674         * gst/adder/Makefile.am:
15675         * gst/adder/gstadder.c: (gst_adder_setcaps),
15676         (gst_adder_class_init), (gst_adder_init),
15677         (gst_adder_request_new_pad), (gst_adder_collected),
15678         (gst_adder_change_state):
15679         * gst/adder/gstadder.h:
15680         Ported adder as an example of a mixer element using
15681         collect pads. Needs more negotiation work.
15682
15683 2005-05-05  Wim Taymans  <wim@fluendo.com>
15684
15685         * ext/theora/theoradec.c: (_inc_granulepos),
15686         (theora_dec_src_event), (theora_dec_sink_event),
15687         (theora_handle_comment_packet), (theora_handle_type_packet),
15688         (theora_handle_header_packet), (theora_handle_data_packet),
15689         (theora_dec_chain):
15690         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
15691         (gst_theora_enc_init), (theora_enc_sink_setcaps),
15692         (theora_push_buffer), (theora_push_packet),
15693         (theora_enc_sink_event), (theora_enc_chain),
15694         (theora_enc_change_state), (theora_enc_set_property),
15695         (theora_enc_get_property):
15696         Added stream lock to decoder so that we can serialize
15697         the discont event.
15698         More theoraenc porting, recover from errors, do clean
15699         shutdown.
15700
15701 2005-05-05  Wim Taymans  <wim@fluendo.com>
15702
15703         * ext/ogg/Makefile.am:
15704         * ext/ogg/README:
15705         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15706         (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
15707         (gst_ogg_print):
15708         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
15709         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
15710         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
15711         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
15712         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
15713         (gst_ogg_mux_change_state):
15714         Ported ogg muxer.
15715
15716 2005-05-05  Wim Taymans  <wim@fluendo.com>
15717
15718         * docs/design-audiosinks.txt:
15719         * gst-libs/gst/audio/TODO:
15720         * gst-libs/gst/audio/gstaudiosink.c:
15721         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15722         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15723         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15724         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15725         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15726         (gst_audiosink_create_ringbuffer):
15727         * gst-libs/gst/audio/gstbaseaudiosink.c:
15728         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15729         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15730         (gst_baseaudiosink_set_property), (build_linear_format),
15731         (debug_spec_caps), (debug_spec_buffer),
15732         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15733         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15734         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15735         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15736         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15737         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15738         (gst_ringbuffer_release), (gst_ringbuffer_play),
15739         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
15740         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
15741         (gst_ringbuffer_set_sample), (wait_segment),
15742         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
15743         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
15744         More work on the audiosink, mostly debugging and a race in
15745         shutdown.
15746
15747 2005-04-28  Wim Taymans  <wim@fluendo.com>
15748
15749         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15750         (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
15751         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
15752         (vorbis_dec_src_query), (vorbis_dec_src_event),
15753         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15754         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15755         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
15756         Don't crap out when seeking back to position 0.
15757
15758 2005-04-28  Wim Taymans  <wim@fluendo.com>
15759
15760         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
15761         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
15762         (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
15763         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
15764         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
15765         Make audio sink configurable, use alsasink as default.
15766
15767 2005-04-28  Wim Taymans  <wim@fluendo.com>
15768
15769         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
15770         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15771         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15772         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
15773         (vorbis_dec_change_state):
15774         * ext/vorbis/vorbisdec.h:
15775         Refactor, use STREAM_LOCK.
15776
15777 2005-04-28  Wim Taymans  <wim@fluendo.com>
15778
15779         * ext/theora/theoradec.c: (_inc_granulepos),
15780         (theora_dec_sink_event), (theora_handle_comment_packet),
15781         (theora_handle_type_packet), (theora_handle_header_packet),
15782         (theora_handle_data_packet), (theora_dec_chain),
15783         (theora_dec_change_state):
15784         Refactor a bit, use STREAM_LOCK.
15785
15786 2005-04-28  Wim Taymans  <wim@fluendo.com>
15787
15788         * ext/alsa/Makefile.am:
15789         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
15790         (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
15791         (gst_alsa_link), (gst_alsa_close_audio):
15792         * ext/alsa/gstalsaplugin.c: (plugin_init):
15793         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
15794         (gst_alsasink_dispose), (gst_alsasink_base_init),
15795         (gst_alsasink_class_init), (gst_alsasink_init),
15796         (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
15797         (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
15798         (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
15799         (gst_alsasink_reset):
15800         * ext/alsa/gstalsasink.h:
15801         Implement alsasink with simple open/write/close API. 
15802         Make alsa dir build by disabling compilation of code.
15803
15804 2005-04-28  Wim Taymans  <wim@fluendo.com>
15805
15806         * gst-libs/gst/audio/Makefile.am:
15807         * gst-libs/gst/audio/audio.h:
15808         * gst-libs/gst/audio/audioclock.c:
15809         * gst-libs/gst/audio/audioclock.h:
15810         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
15811         (gst_audio_clock_class_init), (gst_audio_clock_init),
15812         (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
15813         * gst-libs/gst/audio/gstaudioclock.h:
15814         * gst-libs/gst/audio/gstaudiosink.c:
15815         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15816         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15817         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15818         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15819         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15820         (gst_audiosink_create_ringbuffer):
15821         * gst-libs/gst/audio/gstbaseaudiosink.c:
15822         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15823         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15824         (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
15825         (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
15826         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15827         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15828         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15829         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15830         * gst-libs/gst/audio/gstbaseaudiosink.h:
15831         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15832         (gst_ringbuffer_init), (gst_ringbuffer_finalize),
15833         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15834         (gst_ringbuffer_release), (gst_ringbuffer_play),
15835         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
15836         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
15837         (gst_ringbuffer_set_sample), (wait_segment),
15838         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
15839         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
15840         * gst-libs/gst/audio/gstringbuffer.h:
15841         Make ringbuffer faster and more simple by removing the locks
15842         in the playback thread.
15843         Add sample accurate playback based on buffer sample offsets.
15844         Make the baseaudiosink provide a clock.
15845         Parse caps in the base class.
15846         Correctly handle seeking, flushing and state changes.
15847
15848 2005-04-25  Thomas Vander Stichele  <thomas at apestaart dot org>
15849
15850         * configure.ac:
15851         * gst/audioconvert/Makefile.am:
15852         * gst/audioscale/Makefile.am:
15853           Fix part of the build.  Come on guys, autogen didn't even work :)
15854
15855 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15856
15857         * configure.ac:
15858         * gst-libs/gst/Makefile.am:
15859         * gst-libs/gst/media-info/.cvsignore:
15860         * gst-libs/gst/media-info/Makefile.am:
15861         * gst-libs/gst/media-info/README:
15862         * gst-libs/gst/media-info/media-info-priv.c:
15863         * gst-libs/gst/media-info/media-info-priv.h:
15864         * gst-libs/gst/media-info/media-info-test.c:
15865         * gst-libs/gst/media-info/media-info.c:
15866         * gst-libs/gst/media-info/media-info.h:
15867         * gst-libs/gst/media-info/media-info.vcproj:
15868         * pkgconfig/Makefile.am:
15869         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
15870         * pkgconfig/gstreamer-media-info.pc.in:
15871           Remove media-info, which is also successed by playbin (see Totem
15872           implementation).
15873
15874 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15875
15876         * configure.ac:
15877         * examples/Makefile.am:
15878         * examples/gstplay/.cvsignore:
15879         * examples/gstplay/Makefile.am:
15880         * examples/gstplay/player.c:
15881         * gst-libs/gst/Makefile.am:
15882         * gst-libs/gst/play/.cvsignore:
15883         * gst-libs/gst/play/Makefile.am:
15884         * gst-libs/gst/play/play.c:
15885         * gst-libs/gst/play/play.h:
15886         * gst-libs/gst/play/play.vcproj:
15887         * pkgconfig/Makefile.am:
15888         * pkgconfig/gstreamer-play-uninstalled.pc.in:
15889         * pkgconfig/gstreamer-play.pc.in:
15890           Remove libgstplay, playbin is now the official successor.
15891
15892 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15893
15894         * configure.ac:
15895         * gst-libs/gst/Makefile.am:
15896         * gst-libs/gst/xwindowlistener/Makefile.am:
15897         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
15898         * gst-libs/gst/xwindowlistener/xwindowlistener.h:
15899           Remove deprecated xwindowlistener (I've moved xwindowlistening
15900           in the v4l/v4l2 plugins over to serverside).
15901
15902 2005-04-25  David Schleef  <ds@schleef.org>
15903
15904         * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
15905         to examples/dynparams.  Examples do not belong interspersed with
15906         source code.
15907         * examples/dynparams/demo-dparams.c:
15908         * gst/sine/Makefile.am:
15909         * gst/sine/demo-dparams.c:
15910
15911 2005-04-25  David Schleef  <ds@schleef.org>
15912
15913         Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
15914         * gst-libs/gst/audio/Makefile.am:
15915         * gst-libs/gst/riff/Makefile.am:
15916         * gst-libs/gst/tag/Makefile.am:
15917         * gst-libs/gst/video/Makefile.am:
15918         * gst-libs/gst/xwindowlistener/Makefile.am:
15919
15920         Convert to 0.9 API, seems to work:
15921         * sys/ximage/Makefile.am:
15922         * sys/ximage/ximagesink.c:
15923
15924 2005-04-24  David Schleef  <ds@schleef.org>
15925
15926         Link plugins against libraries:
15927         * ext/alsa/Makefile.am:
15928         * gst/tcp/Makefile.am:
15929
15930         Remove asm code that should be in liboil
15931         * gst/videoscale/Makefile.am:
15932         * gst/videoscale/videoscale_x86_asm.s:
15933
15934         gettext wants these checked in:
15935         * po/af.po:
15936         * po/az.po:
15937         * po/cs.po:
15938         * po/en_GB.po:
15939         * po/hu.po:
15940         * po/it.po:
15941         * po/nb.po:
15942         * po/nl.po:
15943         * po/or.po:
15944         * po/sq.po:
15945         * po/sr.po:
15946         * po/sv.po:
15947         * po/uk.po:
15948         * po/vi.po:
15949
15950 2005-04-24  David Schleef  <ds@schleef.org>
15951
15952         Convert gst_main() to g_main_loop_run()
15953         * gst/playback/decodetest.c: (main):
15954         * gst/playback/test2.c: (main):
15955         * gst/playback/test3.c: (main):
15956         * gst/playback/test4.c: (main):
15957
15958         Link plugins against libraries:
15959         * ext/libvisual/Makefile.am:
15960         * sys/xvimage/Makefile.am:
15961
15962 2005-04-24  David Schleef  <ds@schleef.org>
15963
15964         * configure.ac: Remove idct and resample libs
15965         * gst-libs/gst/Makefile.am: same
15966
15967         Remove usage of gst_library_load():
15968         * ext/alsa/gstalsaplugin.c: (plugin_init):
15969         * ext/libvisual/visual.c: (plugin_init):
15970         * ext/ogg/gstogg.c: (plugin_init):
15971         * ext/theora/theora.c: (plugin_init):
15972         * ext/vorbis/vorbis.c: (plugin_init):
15973         * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
15974         * gst/audioscale/gstaudioscale.c:
15975         * gst/adder/gstadder.c: (plugin_init):
15976         * gst/audioconvert/plugin.c: (plugin_init):
15977         * sys/ximage/ximagesink.c: (plugin_init):
15978         * sys/xvimage/xvimagesink.c: (plugin_init):
15979         * gst/tcp/gsttcpplugin.c: (plugin_init):
15980
15981         Link plugins against libraries:
15982         * ext/ogg/Makefile.am:
15983         * ext/theora/Makefile.am:
15984         * ext/vorbis/Makefile.am:
15985         * gst/audioconvert/Makefile.am:
15986
15987         Create proper libraries:
15988         * gst-libs/gst/riff/Makefile.am:
15989         * gst-libs/gst/audio/Makefile.am:
15990         * gst-libs/gst/video/Makefile.am:
15991
15992         Move resample library to audioscale plugin directory:
15993         * gst-libs/gst/resample/Makefile.am:
15994         * gst-libs/gst/resample/README:
15995         * gst-libs/gst/resample/dtof.c:
15996         * gst-libs/gst/resample/dtos.c:
15997         * gst-libs/gst/resample/functable.c:
15998         * gst-libs/gst/resample/private.h:
15999         * gst-libs/gst/resample/resample.c:
16000         * gst-libs/gst/resample/resample.h:
16001         * gst-libs/gst/resample/resample.vcproj:
16002         * gst-libs/gst/resample/test.c:
16003         * gst/audioscale/Makefile.am:
16004         * gst/audioscale/README:
16005         * gst/audioscale/dtof.c:
16006         * gst/audioscale/dtos.c:
16007         * gst/audioscale/functable.c:
16008         * gst/audioscale/private.h:
16009         * gst/audioscale/resample.c:
16010         * gst/audioscale/resample.h:
16011         * gst/audioscale/test.c:
16012
16013         Move tagedit library to gst-libs:
16014         * gst-libs/gst/tag/Makefile.am:
16015         * gst-libs/gst/tag/gstid3tag.c:
16016         * gst-libs/gst/tag/gsttagediting.c:
16017         * gst-libs/gst/tag/gsttageditingprivate.h:
16018         * gst-libs/gst/tag/gstvorbistag.c:
16019         * gst/tags/Makefile.am:
16020         * gst/tags/gstid3tag.c:
16021         * gst/tags/gstvorbistag.c:
16022
16023         Fix for core changes:
16024         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
16025         (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
16026         (gst_sinesrc_getrange):
16027
16028 2005-04-23  David Schleef  <ds@schleef.org>
16029
16030         * gst-libs/gst/Makefile.am: Remove idct.  It hasn't been used
16031         in gst-plugins in a long time, and properly belongs in liboil.
16032         * gst-libs/gst/idct/Makefile.am:
16033         * gst-libs/gst/idct/README:
16034         * gst-libs/gst/idct/dct.h:
16035         * gst-libs/gst/idct/doieee:
16036         * gst-libs/gst/idct/fastintidct.c:
16037         * gst-libs/gst/idct/floatidct.c:
16038         * gst-libs/gst/idct/idct.c:
16039         * gst-libs/gst/idct/idct.h:
16040         * gst-libs/gst/idct/idtc.vcproj:
16041         * gst-libs/gst/idct/ieeetest.c:
16042         * gst-libs/gst/idct/intidct.c:
16043
16044 2005-04-20  Wim Taymans  <wim@fluendo.com>
16045
16046         * docs/design-audiosinks.txt:
16047         * gst-libs/gst/audio/Makefile.am:
16048         * gst-libs/gst/audio/TODO:
16049         * gst-libs/gst/audio/gstaudiosink.c:
16050         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
16051         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
16052         (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
16053         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
16054         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
16055         (gst_audioringbuffer_delay), (gst_audiosink_base_init),
16056         (gst_audiosink_class_init), (gst_audiosink_init),
16057         (gst_audiosink_create_ringbuffer):
16058         * gst-libs/gst/audio/gstaudiosink.h:
16059         * gst-libs/gst/audio/gstbaseaudiosink.c:
16060         (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
16061         (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
16062         (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
16063         (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
16064         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
16065         (gst_baseaudiosink_create_ringbuffer),
16066         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
16067         * gst-libs/gst/audio/gstbaseaudiosink.h:
16068         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
16069         (gst_ringbuffer_class_init), (gst_ringbuffer_init),
16070         (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
16071         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
16072         (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
16073         (gst_ringbuffer_play), (gst_ringbuffer_pause),
16074         (gst_ringbuffer_resume), (gst_ringbuffer_stop),
16075         (gst_ringbuffer_callback), (gst_ringbuffer_delay),
16076         (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
16077         (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
16078         * gst-libs/gst/audio/gstringbuffer.h:
16079         An attempt at a set of audio base classes together with some
16080         design docs.
16081
16082 2005-04-20  Wim Taymans  <wim@fluendo.com>
16083
16084         * gst/audioconvert/Makefile.am:
16085         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
16086         (gst_audio_convert_caps_remove_format_info),
16087         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
16088         (gst_audio_convert_channels):
16089         Link against audio libs.
16090         Fix audio convert plugin.
16091
16092 2005-04-20  Wim Taymans  <wim@fluendo.com>
16093
16094         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
16095         (gst_ogg_demux_sink_activate):
16096         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
16097         (theora_set_header_on_caps), (theora_enc_sink_event),
16098         (theora_enc_chain):
16099         Fix theora encoder.
16100
16101 2005-04-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16102
16103         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
16104         * gst/playback/gstdecodebin.c: (find_compatibles):
16105           Work with staticpadtemplates in elementfactories.
16106
16107 2005-04-12  Wim Taymans  <wim@fluendo.com>
16108
16109         * gst/playback/README:
16110         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
16111         (compare_ranks), (print_feature), (gst_decode_bin_init),
16112         (dynamic_create), (dynamic_free), (find_compatibles),
16113         (mimetype_is_raw), (close_pad_link), (got_redirect),
16114         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
16115         (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
16116         (gst_decode_bin_change_state):
16117         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
16118         (gst_play_base_bin_init), (group_destroy), (group_commit),
16119         (check_queue), (queue_overrun), (queue_threshold_reached),
16120         (queue_out_of_data), (gen_preroll_element), (unknown_type),
16121         (new_decoded_pad), (setup_subtitle), (gen_source_element),
16122         (got_redirect), (setup_source), (play_base_eos),
16123         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
16124         (gst_play_base_bin_remove_element):
16125         * gst/playback/gstplaybasebin.h:
16126         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
16127         (gst_play_bin_init), (gst_play_bin_dispose),
16128         (gst_play_bin_set_property), (gen_video_element),
16129         (gen_text_element), (gen_audio_element), (remove_sinks),
16130         (gst_play_bin_send_event):
16131         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
16132         (stream_info_change_state), (gst_stream_info_set_mute):
16133         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
16134         (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
16135         (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
16136         (gst_stream_selector_chain):
16137         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
16138         (main):
16139         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
16140         (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
16141         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
16142         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
16143         Raw and crude port of decodebin. 
16144         Make playbin compile.
16145
16146 2005-04-06  Wim Taymans  <wim@fluendo.com>
16147
16148         * ext/gnomevfs/Makefile.am:
16149         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
16150         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
16151         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
16152         (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
16153         (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
16154         (gst_gnomevfssrc_stop):
16155         * ext/ogg/Makefile.am:
16156         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
16157         (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
16158         * ext/theora/Makefile.am:
16159         * ext/theora/theoradec.c: (_inc_granulepos),
16160         (theora_dec_sink_event), (theora_dec_chain):
16161         * ext/vorbis/Makefile.am:
16162         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
16163         (vorbis_dec_sink_event), (vorbis_dec_chain):
16164         * gst-libs/gst/audio/Makefile.am:
16165         * sys/xvimage/Makefile.am:
16166         Make gnomevfssrc extend the source base class.
16167         Fix linking against libs in various plugins.
16168
16169 2005-04-06  Andy Wingo  <wingo@pobox.com>
16170
16171         * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
16172         GST_BASE_LIBS.
16173
16174         * configure.ac: Add check and AC_SUBST for libgstbase.
16175
16176 2005-03-31  Wim Taymans  <wim@fluendo.com>
16177
16178         * examples/seeking/Makefile.am:
16179         * examples/seeking/cdparanoia.c: (main):
16180         * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
16181         (play_cb), (pause_cb), (stop_cb), (main):
16182         * examples/seeking/playbin.c:
16183         * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
16184         (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
16185         (make_sid_pipeline), (make_vorbis_pipeline),
16186         (make_theora_pipeline), (make_vorbis_theora_pipeline),
16187         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
16188         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
16189         (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
16190         (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
16191         (stop_cb), (main):
16192         * examples/seeking/spider_seek.c:
16193         * examples/seeking/vorbisfile.c:
16194         * ext/gnomevfs/Makefile.am:
16195         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
16196         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
16197         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
16198         (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
16199         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
16200         (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
16201         (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
16202         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
16203         * ext/ogg/README:
16204         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
16205         (gst_ogg_pad_class_init), (gst_ogg_pad_init),
16206         (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
16207         (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
16208         (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
16209         (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
16210         (gst_ogg_pad_event), (gst_ogg_pad_reset),
16211         (gst_ogg_demux_factory_filter), (compare_ranks),
16212         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
16213         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
16214         (gst_ogg_chain_new), (gst_ogg_chain_free),
16215         (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
16216         (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
16217         (gst_ogg_demux_class_init), (gst_ogg_demux_init),
16218         (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
16219         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
16220         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
16221         (gst_ogg_demux_get_prev_page),
16222         (gst_ogg_demux_deactivate_current_chain),
16223         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
16224         (gst_ogg_demux_bisect_forward_serialno),
16225         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
16226         (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
16227         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
16228         (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
16229         (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
16230         (gst_ogg_demux_change_state), (gst_ogg_print):
16231         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
16232         (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
16233         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
16234         (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
16235         (gst_ogg_mux_loop):
16236         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
16237         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
16238         (theora_dec_src_convert), (theora_dec_sink_convert),
16239         (theora_dec_src_query), (theora_dec_src_event),
16240         (theora_dec_sink_event), (theora_dec_chain),
16241         (theora_dec_change_state):
16242         * ext/theora/theoraenc.c: (gst_theora_enc_init),
16243         (theora_enc_sink_setcaps), (theora_buffer_from_packet),
16244         (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
16245         (theora_enc_change_state):
16246         * ext/vorbis/Makefile.am:
16247         * ext/vorbis/oggvorbisenc.c:
16248         * ext/vorbis/oggvorbisenc.h:
16249         * ext/vorbis/vorbis.c: (plugin_init):
16250         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
16251         (vorbis_dec_src_query), (vorbis_dec_src_event),
16252         (vorbis_dec_sink_event), (vorbis_dec_chain),
16253         (vorbis_dec_change_state):
16254         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
16255         (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
16256         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
16257         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
16258         (gst_vorbisenc_change_state):
16259         * ext/vorbis/vorbisenc.h:
16260         * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
16261         * gst-libs/gst/audio/audioclock.c:
16262         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
16263         (gst_audiofilter_init), (gst_audiofilter_chain):
16264         * gst-libs/gst/audio/testchannels.c: (main):
16265         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
16266         * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
16267         (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
16268         (gmip_find_track_streaminfo), (gmip_find_track_format):
16269         * gst-libs/gst/media-info/media-info.c:
16270         (gst_media_info_read_idler):
16271         * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
16272         (gst_play_get_all_by_interface):
16273         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
16274         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
16275         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
16276         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
16277         (gst_riff_parse_info):
16278         * gst-libs/gst/riff/riff-read.h:
16279         * gst-libs/gst/riff/riff.c: (plugin_init):
16280         * gst-libs/gst/video/Makefile.am:
16281         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
16282         (gst_videosink_class_init), (gst_videosink_get_type):
16283         * gst-libs/gst/video/videosink.h:
16284         * gst/audioconvert/bufferframesconvert.c:
16285         (buffer_frames_convert_init), (buffer_frames_convert_fixate),
16286         (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
16287         * gst/audioconvert/channelmixtest.c: (main):
16288         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
16289         (gst_audio_convert_chain),
16290         (gst_audio_convert_caps_remove_format_info),
16291         (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
16292         (gst_audio_convert_setcaps), (_fixate_caps_to_int),
16293         (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
16294         (gst_audio_convert_buffer_to_default_format),
16295         (gst_audio_convert_buffer_from_default_format),
16296         (gst_audio_convert_channels):
16297         * gst/audioconvert/gstchannelmix.h:
16298         * gst/ffmpegcolorspace/avcodec.h:
16299         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16300         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
16301         (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
16302         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
16303         * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
16304         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
16305         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
16306         (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
16307         (mpeg_video_type_find), (mpeg_video_stream_type_find),
16308         (dv_type_find):
16309         * gst/videotestsrc/gstvideotestsrc.c:
16310         (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
16311         (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
16312         (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
16313         (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
16314         (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
16315         (gst_videotestsrc_init), (gst_videotestsrc_src_query),
16316         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
16317         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
16318         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
16319         (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
16320         (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
16321         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
16322         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
16323         (gst_xvimagesink_navigation_send_event),
16324         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
16325         (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
16326         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
16327         * sys/xvimage/xvimagesink.h:
16328         Plugin port to 0.9, ogg/theora playback should work in the seek
16329         example now.
16330         Removed old examples.
16331         Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
16332         explained in 0.9 TODO doc.
16333
16334
16335 2005-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
16336
16337         * autogen.sh:
16338         * configure.ac:
16339         * ext/Makefile.am:
16340         * gst/Makefile.am:
16341         * po/POTFILES.in:
16342         * po/af.po:
16343         * po/az.po:
16344         * po/cs.po:
16345         * po/en_GB.po:
16346         * po/hu.po:
16347         * po/it.po:
16348         * po/nb.po:
16349         * po/nl.po:
16350         * po/or.po:
16351         * po/sq.po:
16352         * po/sr.po:
16353         * po/sv.po:
16354         * po/uk.po:
16355         * po/vi.po:
16356         * sys/Makefile.am:
16357         * testsuite/Makefile.am:
16358           remove a whole bunch of plugins.  This module now contains a set
16359           of free reference plugins/elements as agreed.
16360
16361 2005-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
16362
16363         * configure.ac:
16364           hunting season on 0.9 is now OPEN
16365
16366 2005-02-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16367
16368         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
16369           Kick the hell out of gcc for not warning me about a symbol conflict.
16370
16371 2005-02-22  Luca Ognibene  <luogni@tin.it>
16372
16373         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
16374
16375         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
16376           Don't leak caps string (fixes #168134)
16377
16378         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
16379         (gst_jpegenc_init), (gst_jpegenc_finalize),
16380         (gst_jpegenc_change_state):
16381           Don't leak line buffers and context struct (fixes #168133).
16382
16383 2005-02-21  Tim-Philipp Müller  <tim at centricular dot net>
16384
16385         * configure.ac:
16386         * ext/dirac/gstdiracdec.cc:
16387         (gst_diracdec_chain):
16388           Since dirac 0.5.0 the framerate in dirac is expressed as a
16389           rational number. Fix build and up requirement to 0.5.0, and
16390           also pass parameters to gst_diracdec_link in the right order
16391           (fixes #167959).
16392
16393 2005-02-21  Maciej Katafiasz  <mathrick@freedesktop.org>
16394
16395         * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
16396         * ext/faad/gstfaad.h:
16397         TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with 
16398         certain invalid muxed streams, where some packets will contain 
16399         junk after decoder data. Partially fixes #149158.
16400
16401 2005-02-21  Jan Schmidt <thaytan@mad.scientist.com>
16402         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
16403           Make sure we only write to writable buffers
16404
16405 2005-02-20  Tim-Philipp Müller  <tim at centricular dot net>
16406
16407         * gst-libs/gst/riff/riff-media.c:
16408         (gst_riff_create_audio_caps_with_data):
16409           Do actually fix invalid RIFF fmt header values for alaw
16410           and mulaw audio instead of just saying so.
16411
16412         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
16413           Give gst_riff_create_audio_caps_with_data() a chance to
16414           fix up broken format header fields before extracting any
16415           parameters from the header. (fixes #167633)
16416
16417 2005-02-19  Martin Holters  <martin.holters@gmx.de>
16418
16419         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
16420
16421         * gst/audioconvert/bufferframesconvert.c:
16422         (buffer_frames_convert_link):
16423           Don't leak othercaps. (fixes #167878)
16424
16425 2005-02-19  Arwed v. Merkatz  <v.merkatz@gmx.net>
16426
16427         * configure.ac:
16428         * ext/libvisual/visual.c: (gst_visual_srclink),
16429         (gst_visual_change_state):
16430           Support libvisual 0.2.0.
16431
16432 2005-02-18  Tim-Philipp Müller  <tim at centricular dot net>
16433
16434         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
16435         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
16436           Use same rowstrides for I420 as used everywhere else.
16437
16438 2005-02-17  Tim-Philipp Müller  <tim at centricular dot net>
16439
16440         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
16441           Declare variables at beginning of block and make gcc-2.95 happy
16442           (fixes # 167482, patch by Gergely Nagy).
16443           
16444         * gst/tcp/gsttcpclientsrc.c:
16445         * gst/tcp/gsttcpclientsrc.h:
16446           Move some includes into the header, so that struct sockaddr_in is
16447           defined when it should be defined on FreeBSD as well (fixes
16448           #167483).
16449           
16450         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
16451           Don't pass uninitialised values to setsockopt() here either.
16452
16453 2005-02-17  Luca Ognibene  <luogni at tin dot it>
16454
16455         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
16456
16457         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
16458           Don't pass uninitialised values to setsockopt(). (fixes #167704)
16459
16460 2005-02-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16461
16462         * gst/playback/gstplaybin.c: (add_sink):
16463           Invert bin_add/link order to workaround deadlock in opt.
16464
16465 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16466
16467         * gst/modplug/gstmodplug.cc:
16468           Add missing break causing position queries to fail.
16469
16470 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16471
16472         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
16473           Granpos can apparently be -1, which screws up calculations...
16474
16475 2005-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
16476
16477         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
16478         (gst_ximagesink_send_pending_navigation),
16479         (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
16480         (gst_ximagesink_init):
16481         * sys/ximage/ximagesink.h:
16482         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
16483         (gst_xvimagesink_send_pending_navigation),
16484         (gst_xvimagesink_navigation_send_event),
16485         (gst_xvimagesink_finalize), (gst_xvimagesink_init):
16486         * sys/xvimage/xvimagesink.h:
16487           Use a mutex protected list to marshal navigation
16488           events into the stream thread from whichever thread
16489           sends them.
16490
16491 2005-02-15  Tim-Philipp Müller  <tim at centricular dot net>
16492
16493         * gst/speed/demo-mp3.c: (time_tick_cb), (main):
16494           Display current position and track length; misc. clean-ups.
16495           
16496         * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
16497         (speed_init), (speed_chain):
16498           Add query function, so that the stream length and current position
16499           get adjusted when queried (note that current position queries may
16500           still be wrong if the audio sink returns values based on buffer
16501           timestamps instead of passing on the query).
16502
16503 2005-02-13  Benjamin Otte  <otte@gnome.org>
16504
16505         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
16506         (gst_audio_convert_channels):
16507           create channel conversion matrix when linking
16508         * gst/audioconvert/.cvsignore:
16509         * gst/audioconvert/Makefile.am:
16510         * gst/audioconvert/channelmixtest.c: (main):
16511           add (ugly) test that ensures stereo <=> mono conversion works
16512           correctly
16513
16514 2005-02-13  Benjamin Otte  <otte@gnome.org>
16515
16516         * gst/audioconvert/gstchannelmix.h:
16517           include missing header file
16518         * gst/audioconvert/gstchannelmix.c:
16519         (gst_audio_convert_fill_compatible):
16520           use same sign for both channels when converting to/from compatible
16521           channel. Previously used different signs made the signals cancel
16522           each other out and appear like silence. (fixes #167269)
16523
16524 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
16525
16526         * gst/ffmpegcolorspace/avcodec.h:
16527         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16528         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
16529         (gst_ffmpegcsp_avpicture_fill):
16530         * gst/ffmpegcolorspace/imgconvert.c:
16531           Convert to and from YV12 (fixes #156379).
16532
16533 2005-02-12  Julien MOUTTE  <julien@moutte.net>
16534
16535         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
16536         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
16537         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
16538         (gst_ximagesink_expose), (gst_ximagesink_set_property),
16539         (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
16540         methods from chain and negotiation and vice versa (Fixes #166142).
16541         * sys/ximage/ximagesink.h: Add stream_lock.
16542         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
16543         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
16544         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
16545         (gst_xvimagesink_expose): Check for xcontext before trying to link.
16546
16547 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
16548
16549         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
16550           Don't send "Hey! You gave me a NULL pointer you naughty person" as
16551           error message when we can't open the DVD device (when dvdnav_open()
16552           fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
16553           the above). Send something more useful instead (fixes #167117).
16554
16555 2005-02-11  Julien MOUTTE  <julien@moutte.net>
16556
16557         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
16558         (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
16559         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
16560         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
16561         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
16562         (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
16563         methods from chain and negotiation and vice versa (Fixes #166142).
16564         Fix a possible bug of images in the buffer pool being discarded because
16565         we are looking at the wrong geometry.
16566         * sys/xvimage/xvimagesink.h: Add stream_lock.
16567
16568 2005-02-11  David Schleef  <ds@schleef.org>
16569
16570         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
16571         unsigned int. (fixes #167128)
16572
16573 2005-02-11  David Schleef  <ds@schleef.org>
16574
16575         * gst/librfb/Makefile.am: Testing stuff before committing is
16576           for wimps... and people with fast machines.  Fix stupid
16577           mistake.
16578
16579 2005-02-11  David Schleef  <ds@schleef.org>
16580
16581         * configure.ac: Pull in librfb from my CVS tree, because it is
16582           too small and annoying to be separate.  Move rfbsrc plugin
16583           to gst/.
16584         * ext/Makefile.am:
16585         * ext/librfb/Makefile.am:
16586         * ext/librfb/gstrfbsrc.c:
16587         * gst/librfb/Makefile.am:
16588         * gst/librfb/gstrfbsrc.c:
16589         * gst/librfb/rfb.c:
16590         * gst/librfb/rfb.h:
16591         * gst/librfb/rfbbuffer.c:
16592         * gst/librfb/rfbbuffer.h:
16593         * gst/librfb/rfbbytestream.c:
16594         * gst/librfb/rfbbytestream.h:
16595         * gst/librfb/rfbcontext.h:
16596         * gst/librfb/rfbdecoder.c:
16597         * gst/librfb/rfbdecoder.h:
16598         * gst/librfb/rfbutil.h:
16599
16600 2005-02-10  Tim-Philipp Müller  <tim at centricular dot net>
16601
16602         * gst/speed/Makefile.am:
16603         * gst/speed/demo-mp3.c: (main):
16604         * gst/speed/filter.func:
16605         * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
16606         (speed_class_init), (speed_init), (speed_chain_int16),
16607         (speed_chain_float32), (speed_chain), (speed_set_property),
16608         (speed_get_property), (speed_change_state):
16609         * gst/speed/gstspeed.h:
16610           Fix speed element and make it chain-based (fixes #156467),
16611           and make it handle more than one channel.
16612
16613 2005-02-10  Jan Schmidt  <thaytan@mad.scientist.com>
16614
16615         * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
16616         (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
16617         (gst_dtsdec_chain), (gst_dtsdec_change_state):
16618         * ext/dts/gstdtsdec.h:
16619           Don't clobber the stack constructing the channels array.
16620           Make the element chain-based. DTS tracks can now be played.
16621           
16622 2005-02-09  Tim-Philipp Müller  <tim at centricular dot net>
16623
16624         * gst-libs/gst/audio/multichannel.h:
16625         * gst-libs/gst/gconf/gconf.h:
16626         * gst-libs/gst/idct/idct.h:
16627         * gst-libs/gst/media-info/media-info-priv.h:
16628         * gst-libs/gst/play/play.h:
16629         * gst-libs/gst/resample/private.h:
16630         * gst-libs/gst/resample/resample.h:
16631         * gst-libs/gst/riff/riff-ids.h:
16632         * gst-libs/gst/video/video.h:
16633         * gst-libs/gst/video/videosink.h:
16634           Add G_BEGIN_DECLS and G_END_DECLS around headers where
16635           missing, so that they work when included from C++ code.
16636
16637 2005-02-09  David Schleef  <ds@schleef.org>
16638
16639         * testsuite/gst-lint: Check for non-statically scoped
16640           parent_class variables.  This won't be a problem once
16641           plugins are loaded with RTLD_LOCAL.
16642
16643 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16644
16645         * ext/mplex/gstmplexibitstream.cc:
16646           gcc madness.
16647
16648 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16649
16650         * ext/ogg/gstogmparse.c:
16651         * gst/debug/gstnavigationtest.c:
16652           Die, thou faulty symbol pollutors (non-static parent_class).
16653
16654 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16655
16656         * ext/mplex/gstmplexibitstream.cc:
16657           Fix event handling (#165525).
16658
16659 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16660
16661         * ext/mikmod/gstmikmod.c:
16662         * gst/modplug/gstmodplug.cc:
16663           Add missing endianness to template (fixes #165509).
16664
16665 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16666
16667         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
16668           Fix wrong order of reading of optional bytes (#165290).
16669
16670 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16671
16672         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
16673           Implement FILLER event awareness.
16674
16675 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16676
16677         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
16678           Fix track calculations (#166208).
16679
16680 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
16681
16682         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16683
16684         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
16685         * ext/libpng/gstpngenc.c:
16686           Fix byte-order, use proper fixed caps. Fixes #164197.
16687
16688 2005-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
16689
16690         * configure.ac:
16691           Add dvdlpcmdec 
16692
16693         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
16694         (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
16695           Don't push buffers if the src pad isn't negotiated yet.
16696           
16697         * gst/audioconvert/gstaudioconvert.c:
16698         (gst_audio_convert_buffer_to_default_format),
16699         (gst_audio_convert_buffer_from_default_format):
16700           Add support for 24-bit width.
16701
16702         * gst/dvdlpcmdec/.cvsignore:
16703         * gst/dvdlpcmdec/Makefile.am:
16704         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
16705         (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
16706         (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
16707         (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
16708         (plugin_init):
16709         * gst/dvdlpcmdec/gstdvdlpcmdec.h:
16710           New decoder for rearranging DVD LPCM into our audio/x-raw-int
16711           format. Needs support for the channels maps if someone can find 
16712           a DVD LPCM track with > 2 channels.
16713
16714         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
16715         (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
16716         (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
16717         * gst/mpegstream/gstdvddemux.h:
16718         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
16719         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
16720         (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
16721         * gst/mpegstream/gstmpegdemux.h:
16722         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
16723         (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
16724         (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
16725         (gst_mpeg_parse_handle_src_query),
16726         (gst_mpeg_parse_handle_src_event):
16727           Use audio/x-dvd-lpcm for LPCM output.
16728           Add DTS output.
16729
16730 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
16731
16732         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16733
16734         * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
16735         (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
16736           Add BGRA handling (#165736).
16737
16738 2005-02-08  Francis Labonte  <francis_labonte@hotmail.com>
16739
16740         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16741
16742         * gst/law/alaw-decode.c: (alawdec_link):
16743         * gst/law/alaw-encode.c: (alawenc_link):
16744         * gst/law/mulaw-decode.c: (mulawdec_link):
16745         * gst/law/mulaw-encode.c: (mulawenc_link):
16746           Fix caps memleaks (#166600).
16747
16748 2005-02-08  Tim-Philipp Müller  <tim at centricular dot net>
16749
16750         * ext/tarkin/mem.h:
16751         * ext/tarkin/wavelet.h:
16752         * ext/tarkin/yuv.h:
16753         * gst/ffmpegcolorspace/avcodec.h:
16754           Include "_stdint.h" instead of <stdint.h>. Fixes build on
16755           systems that don't have stdint.h, like Solaris9 (fixes #166631).
16756
16757 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16758
16759         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
16760         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
16761         (gst_xvimagesink_change_state):
16762           Clear window on PAUSED->READY instead of READY->PAUSED. Stop
16763           Xv video (and thereby regenerate Xv colourkey) in clear() so
16764           that PLAY -> READY -> PLAY works (fixes #162504).
16765
16766 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16767
16768         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
16769           Switch to list instead of range, since MJPEG-devices really just
16770           support decimations, not any size.
16771
16772 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
16773         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
16774         (gst_mpeg2dec_reset), (free_all_buffers),
16775         (gst_mpeg2dec_alloc_buffer), (handle_sequence):
16776         * ext/mpeg2dec/gstmpeg2dec.h:
16777           The libmpeg2 user-allocated buffer management is awkward, 
16778           to say the least. Hopefully this fixes things.
16779
16780 2005-02-04  Andy Wingo  <wingo@pobox.com>
16781
16782         * gst/audioconvert/bufferframesconvert.c
16783         (buffer_frames_convert_fixate): New function, fixates to 256
16784         frames per buffer by default. (Much better than 1.)
16785         (buffer_frames_convert_init): Set the fixate function for both src
16786         and sink pad.
16787         (buffer_frames_convert_link): After success setting nonfixed caps,
16788         get the negotiated caps so we can know how many buffer-frames it
16789         will be. No idea how this worked at all before.
16790
16791 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
16792
16793         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
16794         (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
16795         (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
16796         (handle_sequence), (handle_picture):
16797         * ext/mpeg2dec/gstmpeg2dec.h:
16798           Rearrange buffer tracking and refcounting and refactor
16799           a little for readability. 
16800
16801 2005-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
16802         * sys/v4l/gstv4l.c: (plugin_init):
16803         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
16804         (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
16805         (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
16806         (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
16807         * sys/v4l/gstv4ljpegsrc.h:
16808         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
16809         * sys/v4l/v4l_calls.h:
16810         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
16811         (gst_v4lsrc_get_fps):
16812         * sys/v4l/v4lsrc_calls.h:
16813           Add new v4ljpegsrc for handling the ov51x hacky "I'll give
16814           you jpeg inside rgb frames" driver.
16815           Don't error in the v4lsrc link function, just return 
16816           REFUSED.
16817
16818 2005-02-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16819
16820         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
16821         (gst_qcamsrc_open):
16822           Use GST_ELEMENT_ERROR, not g_warning, if open failed.
16823
16824 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16825
16826         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
16827           Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
16828
16829 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16830
16831         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
16832           Reset negotiated state on PAUSED->READY.
16833
16834 2005-02-02  David Schleef  <ds@schleef.org>
16835
16836         * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
16837         whereever possible.  (Fixes #165997)
16838         * examples/capsfilter/capsfilter1.c: (main):
16839         * examples/dynparams/filter.c: (create_ui):
16840         * examples/seeking/cdparanoia.c: (get_track_info), (main):
16841         * examples/seeking/chained.c: (main):
16842         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
16843         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
16844         (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
16845         (make_mpeg_pipeline), (make_mpegnt_pipeline):
16846         * examples/seeking/spider_seek.c: (make_spider_pipeline):
16847         * examples/switch/switcher.c: (main):
16848         * ext/dv/demo-play.c: (main):
16849         * ext/faad/gstfaad.c: (gst_faad_change_state):
16850         * ext/mad/gstmad.c: (gst_mad_chain):
16851         * ext/smoothwave/demo-osssrc.c: (main):
16852         * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
16853         (gst_gconf_render_bin_from_description),
16854         (gst_gconf_get_default_audio_sink),
16855         (gst_gconf_get_default_video_sink),
16856         (gst_gconf_get_default_audio_src),
16857         (gst_gconf_get_default_video_src),
16858         (gst_gconf_get_default_visualization_element):
16859         * gst/level/demo.c: (main):
16860         * gst/level/plot.c: (main):
16861         * gst/playback/gstplaybin.c: (gen_video_element),
16862         (gen_audio_element):
16863         * gst/playback/test.c: (gen_video_element), (gen_audio_element):
16864         * gst/playondemand/demo-mp3.c: (setup_pipeline):
16865         * gst/sine/demo-dparams.c: (main):
16866         * gst/spectrum/demo-osssrc.c: (main):
16867         * gst/speed/demo-mp3.c: (main):
16868         * gst/volume/demo.c: (main):
16869         * testsuite/embed/embed.c: (main):
16870
16871 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
16872
16873         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
16874         (gst_tcpclientsink_finalize):
16875         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
16876         (gst_tcpclientsrc_finalize):
16877         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
16878         (gst_tcpserversink_init), (gst_tcpserversink_finalize):
16879         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
16880         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
16881           Don't leak the hostname when shutting down.
16882           In tcpserversrc, take a copy of the default hostname.
16883
16884 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16885
16886         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
16887           Set caps to systemstream=TRUE.
16888
16889 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16890
16891         * testsuite/Makefile.am:
16892           Fix more OSX buildbots.
16893
16894 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
16895
16896         * ext/mpeg2dec/gstmpeg2dec.c:
16897           Don't send things to NULL PAD_PEERs
16898
16899         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
16900           Copy-on-write the incoming buffer.
16901
16902         * gst/mpegstream/gstdvddemux.h:
16903         * gst/mpegstream/gstmpegclock.h:
16904         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
16905         (normal_seek), (gst_mpeg_demux_handle_src_event):
16906         * gst/mpegstream/gstmpegdemux.h:
16907         * gst/mpegstream/gstmpegpacketize.h:
16908         * gst/mpegstream/gstmpegparse.c:
16909         (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
16910         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
16911         (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
16912         (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
16913         (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
16914         * gst/mpegstream/gstmpegparse.h:
16915         * gst/mpegstream/gstrfc2250enc.h:
16916           Various changes to the way time is computed that make seeking and
16917           total time estimation much better here.
16918           Use G_BEGIN/END_DECLS instead of __cplusplus
16919
16920         * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
16921           Use gst_buffer_stamp instead of only copying the TIMESTAMP
16922
16923 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16924
16925         * gst/subparse/gstsubparse.c:
16926           Fix OSX buildbot.
16927
16928 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
16929
16930         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
16931         (theora_enc_chain), (theora_enc_change_state):
16932         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
16933         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
16934         (gst_vorbisenc_change_state):
16935         * ext/vorbis/vorbisenc.h:
16936           Set granulepos and timestamp correctly for streams not
16937           starting at 0, taking into account the initial delay.
16938
16939 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
16940
16941         * gst/mpegstream/gstdvddemux.c:
16942           Add audio/x-dts to audio pad template caps
16943
16944 2005-01-30  David Schleef  <ds@schleef.org>
16945
16946         * ext/polyp/polypsink.c: (gst_polypsink_base_init),
16947         (create_context), (gst_polypsink_link): Fix silly endianness
16948         bug.  Add some debugging.  Remove float from caps; it doesn't
16949         work.  Attempt to get remote audio working.
16950
16951 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16952
16953         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
16954           Add 3IV2 fourcc.
16955
16956 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16957
16958         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
16959         (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
16960         (gst_avi_demux_stream_data):
16961         * gst/avi/gstavidemux.h:
16962           Invert DIB images. Fixes #132341.
16963
16964 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16965
16966         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16967         (gst_ffmpegcsp_chain):
16968           D'oh, reference the palette data, not the palette structure.
16969           Fixes color distortion in #132341.
16970
16971 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16972
16973         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
16974           PAR can be non-fixed when not provided as argument (#162626).
16975
16976 2005-01-29  David Moore  <dcm@acm.org>
16977
16978         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16979
16980         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
16981         (gst_qtdemux_loop_header):
16982           Re-apply patch from #142272 that allows non-seekable sources,
16983           re-proposed by Daniel Drake <dsd@gentoo.org>.
16984
16985 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16986
16987         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
16988           Use the src template for creating the src pad (#162330).
16989
16990 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16991
16992         * configure.ac:
16993         * ext/musepack/Makefile.am:
16994         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
16995         (gst_musepackdec_init), (gst_musepackdec_dispose),
16996         (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
16997         (gst_musepack_stream_init), (gst_musepackdec_loop),
16998         (gst_musepackdec_change_state):
16999         * ext/musepack/gstmusepackdec.cpp:
17000         * ext/musepack/gstmusepackdec.h:
17001         * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
17002         (gst_musepack_reader_read), (gst_musepack_reader_seek),
17003         (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
17004         (gst_musepack_reader_canseek), (gst_musepack_init_reader):
17005         * ext/musepack/gstmusepackreader.cpp:
17006         * ext/musepack/gstmusepackreader.h:
17007           Update to 1.1 API (#165446).
17008
17009 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17010
17011         * ext/Makefile.am:
17012           Unbreak buildbot.
17013
17014 2005-01-28  Andy Wingo  <wingo@pobox.com>
17015
17016         * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
17017         to reflect a different dubious internet source. Add a reference
17018         and some commentary.
17019
17020 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17021
17022         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
17023         (gst_stream_selector_get_caps), (gst_stream_selector_chain):
17024         * gst/playback/gststreamselector.h:
17025           Be more selective when we're redoing caps negotiation from
17026           within the chain function on a stream change.
17027
17028 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17029
17030         * configure.ac:
17031         * ext/Makefile.am:
17032         * ext/amrnb/Makefile.am:
17033         * ext/amrnb/amrnb.c: (plugin_init):
17034         * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
17035         (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
17036         (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
17037         (gst_amrnbdec_state_change):
17038         * ext/amrnb/amrnbdec.h:
17039         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
17040         (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
17041         (gst_amrnbparse_init), (gst_amrnbparse_formats),
17042         (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
17043         (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
17044         (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
17045         * ext/amrnb/amrnbparse.h:
17046           Add support for AMR-NB (mobile phone audio format; #155163, #163286).
17047         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
17048           Add AMR-NB/-WB raw formats.
17049         * ext/alsa/gstalsa.c: (gst_alsa_link):
17050           Keep valid time when changing format.
17051         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
17052         (qtdemux_parse_trak):
17053           Add some more format-specific options (#140141, #143555, #155163).
17054
17055 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17056
17057         * gst/matroska/matroska-demux.c:
17058         (gst_matroska_demux_parse_blockgroup):
17059           Fix logic error in timing of subtitle stream synchronization.
17060         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
17061           Add skip-chunk, which is found in kodak-camera streams.
17062
17063 2005-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
17064
17065         * po/LINGUAS:
17066         * po/vi.po:
17067           Adding Vietnamese translation (submitted by Clytie Siddall)
17068
17069 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17070
17071         * gst/playback/gstdecodebin.c: (try_to_link_1):
17072           Use realpad for signal.
17073
17074 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17075
17076         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
17077           Fix category so decodebin picks it up.
17078
17079 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17080
17081         * ext/mad/Makefile.am:
17082         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
17083         (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
17084         (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
17085         (found_type), (gst_id3demux_bin_change_state):
17086         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
17087         (gst_id3_tag_init), (gst_id3_tag_handle_event),
17088         (gst_id3_tag_src_link), (gst_id3_tag_chain),
17089         (gst_id3_tag_change_state), (plugin_init):
17090         * ext/mad/gstmad.h:
17091           Add id3demuxbin (which is a simple bin consisting of id3demux
17092           and typefind), take over rank from id3demux, remove typefind
17093           code from id3demux. Makes all broken mp3s that I know of work,
17094           and thereby fixes #152688.
17095
17096 2005-01-27  Edward Hervey  <bilboed@bilboed.com>
17097
17098         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17099
17100         * ext/mad/gstmad.c: (gst_mad_src_event):
17101         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
17102           Allow seeks on audio pad, make mad forward those (#164826).
17103         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17104           Set duration (#165335).
17105
17106 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17107
17108         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
17109         (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
17110         (gst_asf_demux_process_ext_content_desc),
17111         (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
17112         (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
17113         * gst/asfdemux/gstasfdemux.h:
17114           Improve metadata display, e.g. if the metadata comes before the
17115           streams are loaded (which is perfectly valid).
17116
17117 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17118
17119         * tools/gst-launch-ext-m.m:
17120           Fix AVI/ASF pipelines (#165340).
17121
17122 2005-01-26  Amaury Jacquot  <sxpert@esitcom.org>
17123         * ext/cairo/gsttextoverlay.c: include  string.h and strings.h to fix
17124         build failure on amd64
17125
17126 2005-01-26  Tim-Philipp Müller  <tim at centricular dot net>
17127
17128         * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
17129         (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
17130           Check environment variables GST_ID3V2_TAG_ENCODING,
17131           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
17132           list of character encodings to force interpretation of non-unicode
17133           strings stored in an ID3v2 tag to a particular encoding. If none
17134           is specified, try to use current locale's encoding, then fall back
17135           to ISO-8859-1 (which will always succeed). (Resolves #149274)
17136         * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
17137         (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
17138           Check environment variables GST_ID3V1_TAG_ENCODING,
17139           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
17140           list of character encodings to use in case a string encountered
17141           in an ID3v1 tag is not valid UTF-8 already. If no encoding is
17142           specified, try to use the current locale's encoding, then fall
17143           back to ISO-8859-1 (which will always succeed).
17144
17145 2005-01-25  Benjamin Otte  <otte@gnome.org>
17146
17147         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
17148           - on half framerate, compute the rate in advance so the comparisons
17149             don't compare wrong values
17150           - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
17151             behaviour
17152           - don't use mad_header_decode anymore, mad_frame_decode does that
17153             automatically
17154           - when getting rid of consumed bytes, reset the stream's skiplen
17155           (fixes #163867)
17156
17157 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
17158
17159         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
17160           Use 1/2 a second for default max_discont, as PES streams from DVB
17161           seem to have larger spacings in the SCR. 
17162           Fix a typo.
17163
17164 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17165
17166         * gst/playback/gstplaybasebin.c: (group_commit):
17167           Notify delayed stream-info availability.
17168
17169 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
17170         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
17171         (gst_a52dec_handle_event), (gst_a52dec_chain):
17172         Add some debug output. Check that a discont has a valid
17173         time associated.
17174         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
17175         (gst_alsa_sink_loop):
17176         Ignore TAG events. A little extra debug for broken timestamps.
17177         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
17178         (dvdnavsrc_change_state):
17179         Ensure we send a discont to engage the link before we send any
17180         other events.
17181         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
17182         (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
17183         (_seek_chapter), (seek_sector), (dvdreadsrc_get),
17184         (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
17185         Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
17186         dvd://title works in totem because typefinding sends a seek that ends
17187         up going back to chapter 1 regardless.
17188         * ext/mpeg2dec/gstmpeg2dec.c:
17189         * ext/mpeg2dec/gstmpeg2dec.h:
17190         Output correct timestamps and handle disconts.
17191         * ext/ogg/gstoggdemux.c: (get_relative):
17192         Small guard against a null dereference.
17193         * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
17194         (gst_textoverlay_set_property):
17195         Free memory when done. Don't call gst_event_filler_get_duration on
17196         EOS events. Use GST_LOG and GST_WARNING instead of g_message and
17197         g_warning.
17198         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
17199         (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
17200         (gst_sw_srclink), (gst_smoothwave_chain):
17201         Draw solid lines, prettier colours.
17202         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
17203         Add a default palette that'll work for some movies.
17204         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
17205         (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
17206         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
17207         * gst/mpegstream/gstdvddemux.h:
17208         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
17209         (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
17210         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
17211         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
17212         * gst/mpegstream/gstmpegparse.h:
17213         Use PTM/NAV events when for timestamp adjustment when connected to 
17214         dvdnavsrc. Don't use many discont events where one suffices.
17215         * gst/playback/gstplaybasebin.c: (group_destroy),
17216         (gen_preroll_element), (gst_play_base_bin_add_element):
17217         * gst/playback/gstplaybasebin.h:
17218         Make sure we remove subtitles from the same bin we put them in.
17219         * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
17220         (gst_subparse_buffer_format_autodetect),
17221         (gst_subparse_change_state):
17222         Fix some memleaks and invalid accesses.
17223         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
17224         (oggskel_type_find), (cmml_type_find), (plugin_init):
17225         Some typefind functions for Annodex v3.0 files
17226         * gst/wavparse/gstwavparse.h:
17227         GstRiffReadClass is the correct parent class.
17228
17229 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17230
17231         * gst-libs/gst/riff/riff-media.c:
17232         (gst_riff_create_video_caps_with_data):
17233           Add extradata to huffyuv (fixes #165013).
17234         * gst-libs/gst/riff/riff-read.c:
17235         (gst_riff_read_strf_vids_with_data):
17236           Fix extradata extraction if it is in the chunk size.
17237
17238 2005-01-25  Edward Hervey  <bilboed@bilboed.com>
17239
17240         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17241
17242         * gst/effectv/gstquark.c: (gst_quarktv_class_init),
17243         (gst_quarktv_change_state), (gst_quarktv_dispose):
17244           Memory free'ing location fix (#164708).
17245
17246 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17247
17248         * gst/playback/gstplaybasebin.c: (group_commit),
17249         (gen_preroll_element), (probe_triggered), (gen_source_element),
17250         (setup_source), (gst_play_base_bin_change_state),
17251         (gst_play_base_bin_add_element):
17252           Don't block for streams.
17253         * gst/playback/gststreaminfo.c: (stream_info_change_state),
17254         (gst_stream_info_set_mute):
17255           Use gst_pad_set_active_recursive.
17256
17257 2005-01-25  Andy Wingo  <wingo@pobox.com>
17258
17259         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
17260         for #ifndef HAVE_XVIDEO.
17261
17262 2005-01-24  Jeffrey C. Ollie
17263
17264         reviewed by: Maciej Katafiasz  <mathrick@freedesktop.org>
17265
17266         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
17267         * ext/gsm/gstgsmdec.h:
17268         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
17269         * ext/gsm/gstgsmenc.h:
17270         Fix rate to 8kHz as per spec, removes obscure errors when no rate
17271         was given by property. Add proper buffer timestamps and offsets.
17272
17273 2005-01-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17274
17275         * gst-libs/gst/riff/riff-media.c:
17276         (gst_riff_create_audio_caps_with_data):
17277           Audio can be <8000Hz.
17278
17279 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17280
17281         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
17282           Explicit state change to workaround refcount bugs.
17283
17284 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17285
17286         * gst/avi/gstavimux.c: (gst_avimux_write_tag),
17287         (gst_avimux_riff_get_avi_header):
17288           Fix...
17289
17290 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17291
17292         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
17293         (gst_riff_read_element_data):
17294         * gst-libs/gst/riff/riff-read.h:
17295           Add _peek version (req'ed in CDXA).
17296         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
17297         (gst_cdxaparse_loop):
17298           Fix parsing in playbin.
17299         * gst/playback/gstdecodebin.c: (close_pad_link):
17300           Ignore current_ pads, they cause major annoyance.
17301
17302 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17303
17304         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
17305           Safety guard.
17306
17307 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17308
17309         * gst/avi/gstavimux.c: (gst_avimux_write_tag):
17310           Fix padding...
17311
17312 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17313
17314         * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
17315           Allow for 0-sized buffers. Fixes length query problems in
17316           starwars.mkv from the testsuite.
17317
17318 2005-01-19  Tim-Philipp Müller  <tim at centricular dot net>
17319
17320         * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
17321         (gst_video_box_i420), (gst_video_box_chain):
17322           Fix row strides for I420 (fixes #163159)
17323           
17324 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17325
17326         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
17327           MPEG2 has a useful rate property, so we can actually use that.
17328           For MPEG-1, continue using the bytes/time properties.
17329
17330 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17331
17332         * gst-libs/gst/riff/riff-media.c:
17333         (gst_riff_create_video_caps_with_data),
17334         (gst_riff_create_video_template_caps):
17335           Add intel-h263.
17336
17337 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17338
17339         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
17340           Fail if caps negotiation fails. Should fix #162184, and should
17341           definately be in there regardless of it fixing the actual bug.
17342         * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
17343         (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
17344         (gst_avimux_riff_get_avix_header),
17345         (gst_avimux_riff_get_video_header),
17346         (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
17347         (gst_avimux_start_file), (gst_avimux_handle_event),
17348         (gst_avimux_change_state):
17349         * gst/avi/gstavimux.h:
17350           Refactor structure writing to use GST_WRITE_UINT macros, add
17351           metadata writing support.
17352
17353 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17354
17355         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
17356           Elements may already be destroyed when this function is called.
17357
17358 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17359
17360         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
17361         (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
17362           More memory leak fixes (#149162).
17363
17364 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17365
17366         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
17367         (gst_qtdemux_add_stream):
17368           Fix two memleaks.
17369
17370 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17371
17372         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
17373           Argh...
17374
17375 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17376
17377         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
17378           Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
17379           when fixating to six channels in Totem.
17380
17381 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
17382
17383         * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
17384           Fix compile warnings on Solaris 10 buildbot
17385
17386 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
17387
17388         * ext/dvdread/dvdreadsrc.c: (_read):
17389           Don't read beyond the last cell in a chapter (fixes 
17390           invalid memory access)
17391
17392 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
17393
17394         * ext/dvdread/stream_labels.c:
17395         (dvdreadsrc_get_audio_stream_labels):
17396           Use NULL for an empty GList instead of g_list_alloc(); fix 
17397           memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead 
17398           of GString (easier to bulk free later)
17399
17400 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
17401
17402         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17403
17404         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17405         (gst_ffmpeg_pixfmt_to_caps):
17406           Fix BGRA32 caps (#164209).
17407
17408 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
17409
17410         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17411
17412         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17413         (gst_ffmpeg_caps_to_pixfmt):
17414           alpha_mask can be RGBA/ABGR. Fixes #164265.
17415
17416 2005-01-17  Francis Labonte  <francis_labonte@hotmail.com>
17417
17418         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17419
17420         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
17421         (gst_mpeg2dec_alloc_buffer):
17422         * ext/mpeg2dec/gstmpeg2dec.h:
17423           Crop if decoding size is not the actual image size (#163676).
17424
17425 2005-01-17  Steve Baker  <steve@stevebaker.org>
17426
17427         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17428
17429         * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
17430         (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
17431           Add libsndfile typefind functions (#163309).
17432
17433 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17434
17435         * tools/gst-launch-ext-m.m:
17436           Add .aac, fix .m1v/.m2v (#163891).
17437
17438 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17439
17440         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
17441           Sanity check, don't wait endlessly since the clock might not
17442           actually run at this point (which is a deadlock). Fixes #164069.
17443
17444 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17445
17446         * gst/playback/gstplaybasebin.c: (probe_triggered):
17447           Of course, only pause if group is done...
17448
17449 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17450
17451         * gst/playback/gstplaybasebin.c: (probe_triggered):
17452           Thread safety.
17453
17454 2005-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
17455
17456         * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
17457           Don't return state change success when the parent
17458           failed.
17459
17460 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17461
17462         * gst/avi/gstavimux.c: (gst_avimux_handle_event):
17463           Free events (fix memleak in #162905).
17464
17465 2005-01-15  Gergely Nagy  <algernon@bonehunter.rulez.org>
17466
17467         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17468
17469         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17470         (gst_ffmpeg_caps_to_pixfmt):
17471           Fix for depth = 15. Fixes #161675.
17472
17473 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17474
17475         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
17476           Set FPS correctly, even for webcams and the like.
17477         * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
17478           Don error on setting while capturing.
17479
17480 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17481
17482         * ext/dv/gstdvdec.c:
17483         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
17484         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
17485           I'm a bad boy. using /1001. to force C to do float division
17486           and not integer division (as it did in my last commit)
17487           Thanks to David I. Lehn for pointing this mistake.
17488
17489 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17490
17491         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
17492           Revert Johan's 1.35->1.36 since it breaks compat.
17493
17494 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17495
17496         * ext/dv/gstdvdec.c:
17497         * ext/libfame/gstlibfame.c:
17498         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
17499         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
17500           replace framerate aproximations by their real value
17501           (24000/1001, 30000/1001, 60000/1001)
17502           Finish fixing bug #164049
17503
17504 2005-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
17505
17506         * ext/ogg/gstoggmux.c:
17507           eos/bos debugging
17508         * gst/tcp/gstmultifdsink.c:
17509         * gst/tcp/gstmultifdsink.h:
17510         * gst/tcp/gsttcp.c:
17511         * gst/tcp/gsttcp.h:
17512         * gst/tcp/gsttcpclientsink.c:
17513         * gst/tcp/gsttcpclientsrc.c:
17514         * gst/tcp/gsttcpserversink.c:
17515         * gst/tcp/gsttcpserversrc.c:
17516           improve reusability of elements after state changes and errors
17517           make multifdsink throw away streamheaders when receiving new ones
17518
17519 2005-01-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17520
17521         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
17522           Fix for if items are already in list...
17523
17524 2005-01-12  Benjamin Otte  <otte@gnome.org>
17525
17526         * gst/adder/gstadder.c: (gst_adder_loop):
17527           fix adder a bit so it doesn't screw up with events as much anymore
17528
17529 2005-01-12  Jan Schmidt  <thaytan@mad.scientist.com>
17530
17531         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
17532         (pixbufscale_scale), (gst_pixbufscale_chain):
17533         * ext/gdk_pixbuf/pixbufscale.h:
17534           Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
17535           to ensure rowstrides are calculated the same way as 
17536           ffmpegcolorspace
17537           Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
17538           that we pick up duration and offset also.
17539
17540 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17541
17542         * gst/avi/gstavimux.c: (gst_avimux_class_init),
17543         (gst_avimux_pad_unlink), (gst_avimux_release_pad):
17544           Reusability fixes.
17545
17546 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17547
17548         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
17549         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
17550         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
17551         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
17552           Update flags when requested.
17553
17554 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17555
17556         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
17557           Fix dmix.
17558
17559 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17560
17561         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
17562         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
17563         (probe_triggered), (new_decoded_pad), (gen_source_element),
17564         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
17565         * gst/playback/gstplaybasebin.h:
17566         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
17567         (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
17568         (gst_play_bin_change_state):
17569           Implement group-switch signal for use in apps to clear metadata
17570           cache, clean up subtitle, add suburi property instead of # hack,
17571           some error-out fixes.
17572
17573 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17574
17575         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
17576           Debug.
17577         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
17578           If we got a state change in the _get handler, don't return success.
17579
17580 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17581
17582         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
17583         (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
17584           Make jpegdec quiet on MJPEG decoding
17585         * gst/asfdemux/README:
17586           Fix mimetypes for MJPEG and H263
17587
17588 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17589
17590         * ext/theora/theoradec.c: (theora_dec_chain):
17591           Fix broken code generation by gcc by swapping arguments.
17592         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
17593           Fix \n in debug.
17594
17595 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17596
17597         * TODO:
17598           delete this file, it is by far outdated
17599         * ext/alsa/gstalsa.1: remove
17600         * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
17601         (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
17602         (gst_alsa_get_caps):
17603           Add HW probing for supported sample rates. Fixes #161704
17604
17605 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17606
17607         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17608           Don't crash, biatch! :).
17609
17610 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17611
17612         * ext/musepack/gstmusepackreader.cpp:
17613         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
17614           Some work on tags - still doesn't work in playbin...
17615         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17616           Handle events...
17617
17618 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17619
17620         * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
17621           Also shove tags on kid pads.
17622
17623 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17624
17625         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
17626           Don't bail on unknown events.
17627         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17628           Don't crash on events before negotiation.
17629         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
17630           Send tags on pads, too.
17631         * gst/playback/gststreamselector.c:
17632         (gst_stream_selector_request_new_pad):
17633           Forward events on first pad if no input was selected yet.
17634
17635 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17636
17637         * gst/playback/gstplaybasebin.c: (setup_substreams):
17638           Don't disable streamtype if the stream doesn't exist, since
17639           then playing a video after audio will disable both and nothing
17640           will happen. Fixes the testsuite.
17641
17642 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17643
17644         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
17645         (gst_v4l_xoverlay_set_xwindow_id):
17646         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
17647         (gst_v4l2_xoverlay_set_xwindow_id):
17648           Add debug categories, fix overlay disabling.
17649
17650 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17651
17652         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
17653         * ext/alsa/gstalsa.h:
17654           Add HW probing for period_count/size and buffer_size MIX/MAX
17655           Adjust default/user defined value if out of bounds
17656           Should fix bug #162024
17657
17658 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17659
17660         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
17661           Fix warning (#161191).
17662
17663 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17664
17665         * ext/dvdread/stream_labels.c:
17666         (dvdreadsrc_get_audio_stream_labels):
17667           Fix warning (init the good variable in switch default)
17668
17669 2005-01-09  Koop Mast  <kwm@rainbow-runner.nl>
17670
17671         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17672
17673         * gst/tta/gstttaparse.c: (gst_tta_src_event):
17674           Fix gcc-2.95 compile (#163485).
17675
17676 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17677
17678         * configure.ac:
17679         * ext/flac/gstflacenc.c: (gst_flacenc_init),
17680         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
17681         (gst_flacenc_tell_callback), (gst_flacenc_chain),
17682         (gst_flacenc_change_state):
17683         * ext/flac/gstflacenc.h:
17684           Update for API change in flac-1.1.1. Update requirement in
17685           configure.ac. Fixes #162974.
17686
17687 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17688
17689         * gst/playback/gstplaybasebin.c: (group_destroy):
17690           Remove hack to get rid of assert and get rid of unlinked
17691           signals properly.
17692
17693 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17694
17695         * gst/playback/gstplaybasebin.c: (setup_source):
17696           Set source to NULL so that resources are free'ed. Fixes issues
17697           with playback of CDDA and similar device-accessing things.
17698
17699 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17700
17701         * testsuite/embed/Makefile.am:
17702           test->noinst, fix make test in buildbot.
17703
17704 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17705
17706         * ext/dvdread/stream_labels.c: new file
17707         * ext/dvdread/stream_labels.h: new file
17708         * ext/dvdread/Makefile.am:
17709         * ext/dvdread/dvdreadsrc.c: (_seek_title):
17710           Extract audio stream label from DVD IFO files.
17711           It only dump them on the console for now, still have to
17712           make playbin aware of them.
17713
17714 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17715
17716         * gst/playback/gstplaybasebin.c: (setup_source):
17717           Fix hanging subs.
17718
17719 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17720
17721         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
17722         (gen_preroll_element), (remove_groups), (setup_subtitle),
17723         (gen_source_element), (setup_source):
17724         * gst/playback/gstplaybasebin.h:
17725           Multiple .sub files is just a stupid idea... Fix some threading
17726           mistakes. Interestingly, external .sub files cause playbin to
17727           hang, I don't know why... Parsing fixes contributed by Fran??ois
17728           Kooman <fkooman@tuxed.net>.
17729
17730 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17731
17732         * testsuite/embed/Makefile.am:
17733           Fix buildbot.
17734
17735 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
17736
17737         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17738
17739         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
17740         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
17741         (gst_pngenc_set_property):
17742         * ext/libpng/gstpngenc.h:
17743           Add compression level property (#163323).
17744
17745 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17746
17747         * configure.ac:
17748         * examples/capsfilter/capsfilter1.c: (main):
17749         * examples/seeking/spider_seek.c: (make_spider_pipeline):
17750         * ext/dvdread/Makefile.am:
17751         * ext/dvdread/demo-play:
17752         * ext/dvdread/demo-play.c:
17753         * gconf/gstreamer.schemas.in:
17754         * gst-libs/gst/gconf/gconf.c:
17755         * sys/v4l/TODO:
17756         * testsuite/Makefile.am:
17757         * testsuite/embed/Makefile.am:
17758         * testsuite/embed/embed.c: (cb_expose), (main):
17759           Remove all references to xvideosink, fix examples (#140845).
17760         * gst/playback/gstplaybasebin.c: (group_destroy):
17761           Apparently, disposal does not unlink - so do explicitely.
17762         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
17763           Add debug.
17764
17765 2005-01-09  Maciej Katafiasz <mathrick@freedesktop.org>
17766
17767         * README: fix PKG_CONFIG_PATH instructions, what was there
17768         previously was breaking default search path, not nice. 
17769         Fixes #163358
17770
17771 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17772
17773         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
17774         (gst_audioscale_chain):
17775           %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
17776           when resampling - how the ^@$^!@^! is this possible?!?
17777
17778 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17779
17780         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
17781           Reset variables on READY.
17782         * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
17783         (gst_matroska_mux_loop):
17784           Require data before writing header.
17785
17786 2005-01-09  Francis Labonte  <francis_labonte@hotmail.com>
17787
17788         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17789
17790         * ext/mad/gstmad.c: (gst_mad_chain):
17791           Don't call mad_stream_sync() directly after recovering sync.
17792           Fixes #151661.
17793
17794 2005-01-09  Martin Eikermann  <meiker@upb.de>
17795
17796         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17797
17798         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
17799         (snapshot_handler), (gst_snapshot_sinkconnect),
17800         (gst_snapshot_chain):
17801           Allocate resources when required, fix recursive signal emission
17802           and fix caps. Fixes #161667.
17803
17804 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
17805
17806         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17807
17808         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
17809         (gst_pngdec_chain):
17810           Handle only 8-bppc (bits-per-pixel-component) images, better
17811           error handling and correct strides. Fixes #163177.
17812         * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
17813         (gst_pngenc_chain):
17814           Better error handling. Fixes #163348.
17815
17816 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17817
17818         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
17819         (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
17820         (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
17821         (dvdnavsrc_uri_handler_init):
17822           Add DVD-nav URI (dvdnav://) for Totem testing purposes.
17823         * gst/playback/gstplaybasebin.c: (gen_source_element):
17824           Add MMS to streaming URIs.
17825
17826 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17827
17828         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
17829         * sys/xvimage/xvimagesink.c:
17830         (gst_xvimagesink_navigation_send_event):
17831           Check for pad availability before sending event.
17832
17833 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17834
17835         * gst-plugins.spec.in:
17836           Add subparse.
17837
17838 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17839
17840         * configure.ac:
17841           Since we use functions from CVS, up requirement.
17842
17843 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17844
17845         * gst/playback/Makefile.am:
17846         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
17847         (group_destroy), (group_commit), (group_is_muted),
17848         (gen_preroll_element), (add_stream), (unknown_type),
17849         (probe_triggered), (preroll_unlinked), (mute_stream),
17850         (silence_stream), (new_decoded_pad), (setup_substreams),
17851         (setup_source), (get_active_source), (mute_group_type),
17852         (muted_group_change_state), (set_active_source),
17853         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
17854         (play_base_eos), (gst_play_base_bin_change_state):
17855         * gst/playback/gstplaybasebin.h:
17856         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
17857         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
17858         (gst_stream_info_dispose), (stream_info_mute_pad),
17859         (stream_info_change_state), (gst_stream_info_set_mute):
17860         * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
17861         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
17862         (gst_stream_selector_init), (gst_stream_selector_dispose),
17863         (gst_stream_selector_get_linked_pad),
17864         (gst_stream_selector_get_caps), (gst_stream_selector_link),
17865         (gst_stream_selector_get_linked_pads),
17866         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
17867         * gst/playback/gststreamselector.h:
17868           Adding stream selection support plus required properties for
17869           applications to use this. Fully fixes #100931.
17870
17871 2005-01-08  Benjamin Otte  <otte@gnome.org>
17872
17873         * gst/games/gstpuzzle.c: (nav_event_handler):
17874           - handle nav events differently: forward every event no matter if it
17875             was handled or not.
17876           - translate events
17877           You can now cheat by using navigationtest ! puzzle and moving the
17878           mouse close to the edge of a tile. ;)
17879
17880 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17881
17882         * configure.ac:
17883         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
17884         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
17885         (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
17886         (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
17887         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
17888         (gst_ogm_parse_plugin_init):
17889         * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
17890         (gst_textoverlay_link), (gst_textoverlay_getcaps),
17891         (gst_textoverlay_event), (gst_textoverlay_video_chain),
17892         (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
17893         * ext/pango/gsttextoverlay.h:
17894         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
17895         (gst_matroska_demux_handle_seek_event),
17896         (gst_matroska_demux_sync_streams),
17897         (gst_matroska_demux_parse_blockgroup),
17898         (gst_matroska_demux_subtitle_caps),
17899         (gst_matroska_demux_plugin_init):
17900         * gst/matroska/matroska-ids.h:
17901         * gst/playback/gstdecodebin.c: (close_pad_link):
17902         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
17903         (gen_preroll_element), (remove_groups), (add_stream),
17904         (new_decoded_pad), (setup_subtitles), (gen_source_element),
17905         (setup_source):
17906         * gst/playback/gstplaybasebin.h:
17907         * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
17908         * gst/subparse/Makefile.am:
17909         * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
17910         (gst_subparse_base_init), (gst_subparse_class_init),
17911         (gst_subparse_init), (gst_subparse_formats),
17912         (gst_subparse_eventmask), (gst_subparse_event),
17913         (gst_subparse_handle_event), (convert_encoding), (get_next_line),
17914         (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
17915         (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
17916         (parse_mpsub_deinit), (parse_mpsub_init),
17917         (gst_subparse_buffer_format_autodetect),
17918         (gst_subparse_format_autodetect), (gst_subparse_loop),
17919         (gst_subparse_change_state), (gst_subparse_type_find),
17920         (plugin_init):
17921         * gst/subparse/gstsubparse.h:
17922         * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
17923         (plugin_init):
17924           Add subtitle support, .sub parser (supports SRT and MPsub),
17925           OGM text support, Matroska UTF-8 text support, deadlock fixes
17926           all over the place, subtitle awareness in decodebin/playbin
17927           and some fixes to textoverlay to handle subtitles in a stream
17928           correctly. Fixes #100931.
17929
17930 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17931
17932         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
17933           Check for pad availability before doing a query on it.
17934
17935 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17936
17937         * ext/dv/gstdvdec.c:
17938           really fix bpp24/32 dvdec caps (classic rgba indeed)
17939         * gst/asfdemux/gstasfdemux.c:
17940         (gst_asf_demux_process_ext_content_desc):
17941           don't send text tags if they are empty (bis repetita)
17942
17943 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17944
17945         * ext/dv/gstdvdec.c:
17946          remove unneeded comment from dvdec
17947           (related to DV 4CC codes in AVI files)
17948           moved them in gstreamer/docs/random/mimetypes
17949         * gst/asfdemux/gstasfdemux.c:
17950         (gst_asf_demux_process_ext_content_desc):
17951          don't send text tags if they are empty
17952          fix mem leak on error path
17953         * gst/ffmpegcolorspace/avcodec.h:
17954         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17955         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
17956         (gst_ffmpegcsp_avpicture_fill):
17957         * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
17958         * gst/ffmpegcolorspace/imgconvert_template.h:
17959          adds BGR32 and BGRA32 to ffmpegcolorspace
17960           (still bad colors, fixing it on next commit)
17961           helps with dvdec outputing BGR32
17962
17963 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17964
17965         * ext/dv/gstdvdec.c:
17966          Fix audio caps i just broke (missing ',')
17967         * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
17968         (gst_matroska_mux_reset):
17969          Fix typo + add FIXME about old "x-gst-metadata" crap
17970
17971 2005-01-07  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17972
17973         * ext/dv/demo-play.c: (main):
17974          xvideosink -> xvimagesink
17975         * ext/dv/gstdvdec.c:
17976          change rgb 32/32 caps to 24/32 (no alpha)
17977          change nb of channels to be a list (2 or 4, not 2)
17978          change sample rate to be a list (32, 44.1, 48 kHz) not a range
17979         * gst/asfdemux/gstasfdemux.c:
17980         (gst_asf_demux_process_ext_content_desc):
17981          Add 'date/year' to extracted metadata list
17982
17983 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17984
17985         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
17986           The return value of fixate_to does not imply that the requested
17987           value was set, so don't assume.
17988
17989 2005-01-07  Gergely Nagy  <algernon@bonehunter.rulez.org>
17990
17991         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17992
17993         * ext/libpng/gstpngdec.c:
17994         * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
17995         (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
17996         * ext/libpng/gstpngenc.h:
17997           Alpha support (encoder; #163161), mime fixage.
17998
17999 2005-01-07  Sebastien Cote  <sc5@hermes.usherb.ca>
18000
18001         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18002
18003         * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
18004         (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
18005         (gst_faac_set_property), (gst_faac_get_property):
18006         * ext/faac/gstfaac.h:
18007           Allow for ADTS output (#153434).
18008
18009 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18010
18011         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
18012           Fix against template (#150576).
18013
18014 2005-01-06  Benjamin Otte  <otte@gnome.org>
18015
18016         * gst/games/gstpuzzle.c: (draw_puzzle):
18017           don't draw a puzzle if either width or height of tiles would be 0.
18018
18019 2005-01-06  Benjamin Otte  <otte@gnome.org>
18020
18021         * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
18022         (gst_puzzle_class_init), (gst_puzzle_finalize):
18023           no memleaks, please
18024         (gst_puzzle_create), (gst_puzzle_init),
18025         (gst_puzzle_set_property), (gst_puzzle_setup):
18026           change initialization code around so we don't reshuffle on resize
18027         (draw_puzzle):
18028           fix another stupid typo
18029
18030 2005-01-06  Benjamin Otte  <otte@gnome.org>
18031
18032         * gst/games/gstvideoimage.c: (copy_hline_YUY2):
18033           fix stupid typo that borked copying on YUY2
18034
18035 2005-01-06  Benjamin Otte  <otte@gnome.org>
18036
18037         * gst/games/gstpuzzle.c: (draw_puzzle):
18038           fix edges when image sizes aren't multiples of tile sizes
18039
18040 2005-01-06  Benjamin Otte  <otte@gnome.org>
18041
18042         * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
18043           make RGB endianness work correctly
18044         (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
18045           refactor and fix race with initial shuffling
18046         (nav_event_handler):
18047           allow using the mouse to puzzle
18048         (draw_puzzle):
18049           insist on tiles having width and height as multiples of 4 to get
18050           clean YUV image handling
18051         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
18052         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
18053           s/DEBUG/LOG/ for common messages
18054         (gst_xvimagesink_navigation_send_event):
18055           fix mouse event translation to not include screen PAR
18056         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
18057           fix mouse event translation to actually work
18058
18059 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
18060
18061         * gst/asfdemux/gstasfdemux.c:
18062         (gst_asf_demux_process_ext_content_desc):
18063          Extract TrackNumber metadata + clean up code
18064         * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
18065          Hope this is the good fix (var used unitialised)
18066
18067 2005-01-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18068
18069         * ext/faad/gstfaad.c: (gst_faad_chain):
18070           Only increment timestamp if it's valid. Fixes raw AAC streams.
18071
18072 2005-01-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18073
18074         * configure.ac:
18075         * gst/games/Makefile.am:
18076         * gst/games/gstpuzzle.c:
18077           add a puzzle game with...
18078         * gst/games/gstvideoimage.c:
18079         * gst/games/gstvideoimage.h:
18080           ... full colorspace support (that includes YUV9 and RGB16)) stolen
18081           from videotestsrc and made into something that would be a nice
18082           library for a lot of other plugins.
18083
18084 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
18085
18086         * configure.ac:
18087          don't compile faad plugin if a RC of 2.0 is found
18088          Fixes #155346 (and FC1 buildbot)
18089         * gst/asfdemux/gstasfdemux.c:
18090         (gst_asf_demux_process_ext_content_desc):
18091          try to make Solaris compiler happier
18092
18093 2005-01-06  Paul Jack  <pjack@sfaf.org>
18094
18095         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18096
18097         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
18098           Fix segfault (#161667).
18099
18100 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18101
18102         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
18103           Fix framerate reporting.
18104
18105 2005-01-05  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
18106
18107         * gst-libs/gst/riff/riff-ids.h:
18108         * gst/wavenc/riff.h:
18109          Add AMR (VBR and CBR) ids to riff.h audio codec list
18110         * gst/asfdemux/gstasfdemux.c:
18111         (gst_asf_demux_process_ext_content_desc),
18112         (gst_asf_demux_process_object):
18113           Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
18114
18115 2005-01-05  Martin Eikermann  <meiker@upb.de>
18116
18117         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18118
18119         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
18120         (gst_dvd_demux_handle_discont):
18121         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
18122         (gst_mpeg_demux_handle_discont):
18123           Recreate pads on new-media (#160730).
18124         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
18125           Send discont even if manager changes timestamps (#161929).
18126
18127 2005-01-05  Sebastien Cote  <sc5@hermes.usherb.ca>
18128
18129         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18130
18131         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
18132           Fix invalid memory access (#159211).
18133
18134 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18135
18136         * examples/gstplay/player.c: (main):
18137           Don't iterate.
18138         * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
18139           Add visualizations.
18140         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
18141         (gst_a52dec_handle_frame):
18142           Set duration.
18143         * ext/dvdnav/gst-dvd:
18144           Add audioconvert. Fixes #161325.
18145         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
18146           Explicitely case to gint64. Possible valgrind error.
18147         * gst-libs/gst/play/play.c: (caps_set), (setup_size),
18148         (gst_play_tick_callback), (gst_play_change_state),
18149         (gst_play_dispose), (gst_play_init), (gst_play_class_init),
18150         (gst_play_set_location), (gst_play_get_location),
18151         (gst_play_seek_to_time), (gst_play_set_data_src),
18152         (gst_play_set_video_sink), (gst_play_set_audio_sink),
18153         (gst_play_set_visualization), (gst_play_connect_visualization),
18154         (gst_play_get_framerate), (gst_play_get_all_by_interface),
18155         (gst_play_new):
18156           Use playbin. Fixes #139749 and #147744.
18157         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
18158           Add genre tag.
18159         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
18160         (audioscale_get_type), (gst_audioscale_base_init),
18161         (gst_audioscale_class_init), (gst_audioscale_expand_caps),
18162         (gst_audioscale_getcaps), (gst_audioscale_fixate),
18163         (gst_audioscale_link), (gst_audioscale_get_buffer),
18164         (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
18165         (gst_audioscale_init), (gst_audioscale_dispose),
18166         (gst_audioscale_chain), (gst_audioscale_set_property),
18167         (gst_audioscale_get_property), (plugin_init):
18168           Indent properly.
18169         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
18170           Fix LPCM.
18171         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
18172         (qtdemux_tag_add_str), (qtdemux_tag_add_num),
18173         (qtdemux_tag_add_gnre), (qtdemux_video_caps):
18174           Add more metadata (fixes #162656).
18175
18176 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
18177
18178         * configure.ac:
18179           back to cvs
18180
18181 === release 0.8.7 ===
18182
18183 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
18184
18185         * NEWS:
18186         * RELEASE:
18187         * configure.ac:
18188           releasing 0.8.7, "Hyperspace"
18189
18190 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
18191
18192         patch by: Tim-Philipp Müller  <t.i.m@zen.co.uk>
18193
18194         * gst/playback/gstplaybasebin.c:
18195          Fix for #162924 - free caps after use, not before
18196
18197 2005-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
18198
18199         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18200
18201         * gst/playback/gstplaybasebin.c:
18202         * gst/wavparse/gstwavparse.c:
18203           Fix for #154773 - fixes playback of small .wav files
18204
18205 2005-01-03  Thomas Vander Stichele  <thomas at apestaart dot org>
18206
18207         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18208
18209         * gst/audioscale/gstaudioscale.c:
18210           Fix for #162819 - make audioscale reusable
18211           Fixes playback of more than one file with playbin/totem
18212
18213 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
18214
18215         * gst/ffmpegcolorspace/avcodec.h:
18216         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18217         * gst/ffmpegcolorspace/imgconvert.c:
18218           clean up the mess that made me cry and avoid needless duplication
18219
18220 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
18221
18222         * gst/ffmpegcolorspace/imgconvert.c:
18223           give some indication of why we're segfaulting
18224
18225 2004-12-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18226
18227         * configure.ac:
18228           Fix indentation, fix v4l2 plugin detection.
18229         * ext/Makefile.am:
18230           Fix libmms location (Maciej, use diff -u!).
18231         * ext/alsa/gstalsa.c: (gst_alsa_init):
18232           Initialize caps cache to NULL.
18233         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
18234           Only change state on audiosink if it exists.
18235
18236 2004-12-28  Maciej Katafiasz  <mathrick@mathrick.org>
18237
18238         * gst/matroska/matroska-demux.c:
18239         * gst/matroska/matroska-ids.h:
18240         * gst/matroska/matroska-demux.h:
18241         Fix Vorbis streams failing to decode in some files, where cluster_time
18242         isn't 0, because then it doesn't send codec_priv before actual data.
18243         Remove time-based test and replace it with marker set on beginning of
18244         new stream
18245
18246 2004-12-28  David Schleef  <ds@schleef.org>
18247
18248         Merge patch from Ronald fixing problems with streaming
18249         text.
18250         * ext/cairo/gstcairo.c: (plugin_init):
18251         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
18252         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
18253         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
18254         (gst_textoverlay_font_init), (gst_textoverlay_init),
18255         (gst_textoverlay_set_property):
18256         * ext/cairo/gsttextoverlay.h:
18257
18258 2004-12-27  David Schleef  <ds@schleef.org>
18259
18260         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
18261         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
18262         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
18263         (gst_textoverlay_font_init), (gst_textoverlay_init),
18264         (gst_textoverlay_set_property): Improvements to actually
18265         render text as white on black outline on video, including
18266         font selection and horizontal/vertical alignment.  (Ronald's
18267         christmas present)
18268         * ext/cairo/gsttextoverlay.h:
18269
18270 2004-12-26  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
18271
18272         * ext/ogg/gstogg.c:
18273         * ext/ogg/gstogmparse.c:
18274           fix ogm[audio/video]parse plugin registration
18275           (riff won't load if bytestream is already loaded)
18276
18277 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
18278
18279         * gst/audioconvert/gstchannelmix.c:
18280           fix for GLIB < 2.4
18281
18282 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
18283
18284         * Makefile.am:
18285         * configure.ac:
18286           disable docs again until it actually passes make distcheck.
18287
18288 2004-12-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18289
18290         * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
18291         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
18292         (plugin_init):
18293           Add 3GP (variables name Q3GP because they can't start with a
18294           number). Add samr audio fourcc (used in .3gp files), decoder
18295           is work in progress. Also do a GST_WARNING instead of ERROR
18296           in case of unknown nodes, to decrease output.
18297
18298 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
18299
18300         * Makefile.am:
18301           really fix dist
18302
18303 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18304
18305         * configure.ac:
18306         * ext/speex/gstspeexdec.h:
18307         * ext/speex/gstspeexenc.h:
18308           Fixes #158382.  Make speex plugin compatible with both 1.0 and 1.1.
18309           Fix detection code in configure.ac
18310
18311 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18312
18313         * gst/matroska/matroska-demux.c:
18314         (gst_matroska_demux_parse_blockgroup):
18315           Save position, so that queries give proper return values. Don't
18316           know how this could ever have worked before...
18317
18318 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18319
18320         * configure.ac:
18321           Put additional LAME check inside the conditional.  Fixes #152339
18322
18323 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18324
18325         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18326         (gst_avi_demux_stream_scan):
18327           Add some more debug. Fix logic error when setting movi offset
18328           while reading index.
18329
18330 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18331
18332         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18333         (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
18334         (gst_avi_demux_process_next_entry):
18335           Add some debugging. Better detection of broken indexes and the
18336           accompanying index recovery. No infinite loops on state changes
18337           when we're still in our loopfunction.
18338
18339 2004-12-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18340
18341         * configure.ac:
18342           Fix up.
18343
18344 2004-12-22  Archana Shah  <archana.shah@wipro.com>
18345
18346         Reviewed by:  Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18347
18348         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
18349           Normalizing the value before setting
18350         (gst_sunaudiomixer_get_volume):
18351           Normalizing the value after getting. Fixes bug# 161980
18352
18353 2004-12-22  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
18354
18355         * Makefile.am: Make sure docs gets disted
18356         * docs/Makefile.am: Make sure all needed files get disted
18357         * gst-plugins.spec.in: latest updates
18358
18359 2004-12-22  Wim Taymans  <wim@fluendo.com>
18360
18361         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
18362         Revert patch 1.38 as clock distribution over schedulers does
18363         not work correcly in the core yet.
18364
18365 2004-12-21  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
18366
18367         * sys/oss/README: remove this file, which predates my birth
18368           (and which content is by far outdated)
18369
18370 2004-12-20  Stefan Kost  <ensonic@users.sf.net>
18371
18372         * Makefile.am:
18373         * configure.ac:
18374         * docs/Makefile.am:
18375         * docs/libs/Makefile.am:
18376         * docs/libs/gst-plugins-libs-docs.sgml:
18377         * docs/libs/gst-plugins-libs-sections.txt:
18378         * docs/libs/tmpl/gstgconf.sgml:
18379         * docs/upload.mak:
18380         * docs/version.entities.in:
18381           Added boilerplate gtk-doc files for plugin-libs documentation.
18382
18383 2004-12-19  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
18384
18385         * gst/auparse/gstauparse.c: fix int and float audio caps
18386
18387 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18388
18389         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
18390         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
18391           g_assert() can be a macro, don't use #ifdef inside it.
18392
18393 2004-12-19  Edward Hervey  <bilboed@bilboed.com>
18394
18395         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18396
18397         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
18398         (gst_videorate_init), (gst_videorate_chain),
18399         (gst_videorate_change_state):
18400           Event handling (fixes #159986).
18401
18402 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18403
18404         * gst-libs/gst/riff/riff-media.c:
18405         (gst_riff_create_video_caps_with_data):
18406           Add BLZ0 (Blizzard's version of DivX) fourcc.
18407
18408 2004-12-18  David Schleef  <ds@schleef.org>
18409
18410         * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
18411         portability fix.
18412
18413 2004-12-18  David Schleef  <ds@schleef.org>
18414
18415         * gst/tta/ttadec.h: Disable some header code that isn't used
18416         and clearly isn't portable.
18417
18418 2004-12-18  David Schleef  <ds@schleef.org>
18419
18420         * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
18421         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
18422         (avcodec_get_pix_fmt), (avpicture_layout),
18423         (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
18424         (get_convert_table_entry), (img_convert), (img_get_alpha_info):
18425         Fix code to not use GCC extensions (and c99 extensions that
18426         Forte does not like.)
18427
18428 2004-12-19  Tim-Philipp Müller  <t.i.m@zen.co.uk>
18429
18430         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18431
18432         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
18433         (gst_deinterlace_chain):
18434           Rowstride fixes. Fixes #161039.
18435         * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
18436         (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
18437         (gst_video_crop_getcaps), (gst_video_crop_link),
18438         (gst_video_crop_i420), (gst_video_crop_chain),
18439         (gst_video_crop_change_state):
18440           Rework of negotiation. Actually works now. Fixes #158650.
18441
18442 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18443
18444         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
18445           That was very stupid.
18446
18447 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18448
18449         * gst/matroska/matroska-demux.c:
18450         (gst_matroska_demux_parse_blockgroup):
18451           Fix possible crasher.
18452
18453 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18454
18455         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
18456         (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
18457           Lace sizes can be zero.
18458
18459 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18460
18461         * ext/musepack/gstmusepackdec.cpp:
18462           Fetch error return values. Fixes #161624.
18463         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
18464           Really EOS.
18465
18466 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18467
18468         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
18469           Work for truncated (unfinished download etc.) files. Fixes #160514.
18470
18471 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18472
18473         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18474           Fix for integer overflow. Makes #156001 not crash. Probably masks
18475           the real bug.
18476
18477 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18478
18479         * gst/ac3parse/gstac3parse.c: (plugin_init):
18480           Parsers never have ranks. Fixes #159651.
18481
18482 2004-12-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18483
18484         * gst/playback/gstdecodebin.c: (compare_ranks):
18485           make sure the facotries are ordered the same every time even if they
18486           have the same rank by using the name
18487         * gst/playback/gstdecodebin.c: (find_compatibles):
18488           make sure we don't add factories to the list twice
18489
18490 2004-12-16  David Schleef  <ds@schleef.org>
18491
18492         * configure.ac: look for musepack headers as musepack/*.h
18493         (fixes #159847)
18494         * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
18495         * ext/musepack/gstmusepackreader.h: same
18496
18497 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18498
18499         * gst-libs/gst/riff/riff-read.c:
18500         (gst_riff_read_strf_auds_with_data):
18501           Read extradata correctly (fixes #155879).
18502
18503 2004-12-16  David Schleef  <ds@schleef.org>
18504
18505         * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
18506         audio.  does _not_ attempt or allow conversion unless channels
18507         is 1 or 2.
18508
18509 2004-12-16  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
18510
18511         * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
18512
18513 2004-12-16  David Schleef  <ds@schleef.org>
18514
18515         * gst/audioscale/gstaudioscale.c: the resample library only
18516         handles 1 or 2 channels.  Change caps to compensate.
18517
18518 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18519
18520         * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
18521         (gst_matroska_demux_audio_caps):
18522           Some MPEG-AAC hacks, because else it doesn't work...
18523
18524 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18525
18526         * gst-libs/gst/riff/riff-media.c:
18527         (gst_riff_create_video_caps_with_data),
18528         (gst_riff_create_video_template_caps):
18529           Add h264.
18530
18531 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18532
18533         * gst-libs/gst/audio/Makefile.am:
18534           Try to fix buildbot.
18535
18536 2004-12-16  Thomas Vander Stichele  <thomas at apestaart dot org>
18537
18538         * gst/tcp/gstmultifdsink.c:
18539           Clean up and uniformize debugging.
18540
18541 2004-12-16  Edward Hervey  <bilboed@bilboed.com>
18542
18543         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18544
18545         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
18546         (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
18547         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
18548         (gst_mpeg_demux_change_state):
18549           Reset on ready. Fixes 160276.
18550
18551 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
18552
18553         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18554
18555         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18556         (gst_ffmpegcsp_pad_link):
18557           Fix memleak (#154815).
18558
18559 2004-12-16  James Bowes  <bowes@cs.dal.ca>
18560
18561         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18562
18563         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
18564         (gst_musicbrainz_init), (gst_musicbrainz_chain),
18565         (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
18566         * ext/musicbrainz/gsttrm.h:
18567           Add support for using a proxy server when getting a trm id from
18568           the MusicBrainz database (#149613).
18569
18570 2004-12-16  Christophe Fergeau  <teuf@gnome.org>
18571
18572         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18573
18574         * gst/playback/gstdecodebin.c: (new_pad), (close_link):
18575         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
18576           Fix memleaks (#157233).
18577
18578 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
18579
18580         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18581
18582         * gst-libs/gst/resample/resample.c: (gst_resample_close):
18583         * gst-libs/gst/resample/resample.h:
18584         * gst/audioscale/gstaudioscale.c:
18585           Fix memleak (#159215).
18586
18587 2004-12-16  Toni Willberg  <toniw@iki.fi>
18588
18589         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18590
18591         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
18592         * sys/oss/oss_probe.c: (main):
18593           Check for mono/stereo support (similar to samplerate probing),
18594           fixes #159433. Also add missing copyright header to oss_probe.c.
18595
18596 2004-12-15  David Schleef  <ds@schleef.org>
18597
18598         * configure.ac: add audioresample and cairo plugins.  Remove
18599         HAVE_MMX stuff, because it's not used.
18600         * ext/Makefile.am: same
18601         * ext/audioresample/Makefile.am: You are not ready for an
18602         audio resampling element based on audioresample.
18603         * ext/audioresample/gstaudioresample.c:
18604         * ext/audioresample/gstaudioresample.h:
18605         * ext/cairo/Makefile.am: You are not ready for overlay elements
18606         based on cairo.  Don't look too closely, these elements kinda
18607         suck right now.
18608         * ext/cairo/gstcairo.c: new
18609         * ext/cairo/gsttextoverlay.c: new
18610         * ext/cairo/gsttextoverlay.h: new
18611         * ext/cairo/gsttimeoverlay.c: new
18612         * ext/cairo/gsttimeoverlay.h: new
18613         * gst-libs/gst/media-info/media-info-priv.h: fix compile
18614         problem with compilers that don't support variadic macros.
18615
18616 2004-12-15  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
18617
18618         Reviewed by:  David Schleef  <ds@schleef.org>
18619
18620         * sys/sunaudio/gstsunaudio.c: (plugin_init):  Apply patch from
18621         Bala, registering sunaudiosrc (oops!), and cleaning up code a
18622         bit.  Also ran indent-gst.
18623         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
18624         (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
18625         (gst_sunaudiosrc_setparams):
18626
18627 2004-12-14  David Schleef  <ds@schleef.org>
18628
18629         * gst/festival/gstfestival.c: (gst_festival_chain): Set the
18630         output rate to 16000.  Should fix #160235.
18631
18632 2004-12-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18633
18634         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
18635         Add typefinding for mpeg2 pes streams
18636
18637 2004-12-13  David Schleef  <ds@schleef.org>
18638
18639         * configure.ac:  Applied patch from bug #143659, making default
18640         sources and sinks OS-dependent (for Solaris), and added code
18641         for OS/X.
18642         * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
18643
18644 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
18645
18646         * gst-libs/gst/riff/riff-media.c:
18647           forgot to add h2.64 to avidemux template caps
18648
18649 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
18650
18651         * gst/wavenc/riff.h:
18652         * gst-libs/gst/riff/riff-media.c:
18653         * gst-libs/gst/riff/riff-ids.h:
18654         * gst/avi/gstavimux.c
18655         add 4CC code for VideoSoft h264 in AVI (VSSH)
18656           fixes bug #160655
18657         remove s323 from riff, it's quicktime specific :(
18658
18659 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
18660
18661         * gst/asfdemux/README
18662         * gst/wavenc/riff.h
18663         * gst-libs/gst/riff/riff-ids.h
18664         * gst-libs/gst/riff/riff-media.c
18665         * gst/qtdemux/qtdemux.c:
18666           add new 4CC codes for h263 related codecs
18667           fixes partially bug #155163
18668
18669 2004-12-12  Christian Fredrik Kalager Schaller  <christian at fluendo dot com>
18670
18671         * configure.ac: Update polyaudio requirement to 0.7
18672         * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
18673
18674 2004-12-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18675
18676         * gst/interleave/deinterleave.c:
18677         fix my name's spelling! :)
18678
18679 2004-12-11  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
18680
18681         * AUTHORS ChangeLog
18682         * gst/auparse/gstauparse.c
18683         * gst/interleave/deinterleave.c
18684         * gst/law/:
18685                 alaw-decode.c alaw-encode.c
18686                 mulaw-decode.c mulaw-encode.c
18687         * gst/oneton/gstoneton.c
18688         * sys/osxaudio/:
18689                 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
18690         * sys/osxvideo/:
18691                 cocoawindow.h cocoawindow.m
18692                 osxvideosink.h osxvideosink.m
18693
18694         put the same mail address for Zaheer Abbas Merali everywhere
18695
18696 2004-12-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18697
18698         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
18699           Align by packetsize, and assert that we a packet available before
18700           playing. The first makes webstreams work (they often include
18701           trailing padding data in a packet), the second allows pausing a
18702           ASF stream in totem without getting demux errors afterwards.
18703
18704 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18705
18706         * ext/ogg/gstoggdemux.c: (get_relative):
18707           Check for non-NULL before accessing member (end-of-chain).
18708
18709 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18710
18711         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
18712         (cdparanoia_set_property), (cdparanoia_get_property):
18713         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
18714         (dvdnavsrc_set_property), (dvdnavsrc_get_property):
18715         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
18716         (dvdreadsrc_init), (dvdreadsrc_set_property),
18717         (dvdreadsrc_get_property):
18718         * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
18719         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
18720           Synchronize property names where not yet the case. Devices are
18721           now device=X, other versions are deprecated (but still exist).
18722           Also use g_free() unconditionally.
18723         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
18724         (setup_source), (gst_play_base_bin_get_property):
18725           Expose source.
18726
18727 2004-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
18728
18729         * configure.ac: move GCONF macro outside conditional for the am
18730           conditional. Fixes #160439
18731
18732 2004-12-08  David Schleef  <ds@schleef.org>
18733
18734         * tools/gst-visualise-m.m: Switch to elements that currently
18735         exist.
18736
18737 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18738
18739         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
18740           We love wrong commas.
18741
18742 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18743
18744         * gst/matroska/matroska-demux.c:
18745         (gst_matroska_demux_handle_src_query):
18746           Don't set DEFAULT, unsupported - makes length display incorrectly
18747           in some cases.
18748
18749 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
18750
18751         * gst/monoscope/README: remove blurb about files being GPL
18752         * gst/monoscope/gstmonoscope.c: Change license field to LGPL
18753         * gst/monoscope/monoscope.c: Change license to BSD with explanation
18754           monoscope is now effectively LGPL licensed
18755
18756 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
18757
18758         * gst/monoscope/README: Update information to be more correct
18759         * gst/monoscope/convolve.c: Relicense to LGPL
18760         * gst/monoscope/convolve.h: Relicense to LGPL
18761
18762 2004-12-06  Arwed v. Merkatz <v.merkatz@gmx.net>
18763
18764         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
18765           set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
18766         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
18767           set default_duration for mpeg1 audio
18768
18769 2004-12-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18770
18771         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
18772         * ext/alsa/gstalsa.h:
18773           refactor big chunks of the core caps negotiation code to make it
18774           a lot faster, because people claim it's really slow
18775           (actually, just cache the getcaps when the device is opened)
18776
18777 2004-12-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18778
18779         * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
18780         (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
18781         (gst_a52dec_handle_frame), (gst_a52dec_chain),
18782         (gst_a52dec_change_state), (plugin_init):
18783         * ext/a52dec/gsta52dec.h:
18784           Do something useful with timestamps. Make chain-based (since
18785           there's really no reason to be loopbased).
18786         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
18787           Update current_byte/frame correctly.
18788
18789 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18790
18791         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
18792         (gst_ape_demux_stream_init):
18793           Forward tags, too.
18794
18795 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18796
18797         * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
18798           Let's make sure we're done typefinding when detecting tags.
18799
18800 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18801
18802         * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
18803         (gst_ebml_read_init), (gst_ebml_read_use_event),
18804         (gst_ebml_read_element_id), (gst_ebml_peek_id),
18805         (gst_ebml_read_seek), (gst_ebml_read_skip),
18806         (gst_ebml_read_reserve), (gst_ebml_read_buffer),
18807         (gst_ebml_read_master):
18808         * gst/matroska/ebml-read.h:
18809         * gst/matroska/matroska-demux.c:
18810         (gst_matroska_demux_parse_contents),
18811         (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
18812           Disgustingly evil hack for working around INTERRUPT events and
18813           their extremely annoying habit of being a pain in the ass. We
18814           simply peek a cluster before reading any of it.
18815
18816 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18817
18818         * ext/musepack/gstmusepackdec.cpp:
18819           There's also floating point libmusepacks.
18820
18821 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18822
18823         * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
18824         (gst_faad_chanpos_to_gst), (gst_faad_chain):
18825           Set DURATION even if source buffer didn't. Also use increasing
18826           timestamps.
18827         * gst-libs/gst/riff/riff-media.c:
18828         (gst_riff_create_audio_caps_with_data):
18829           Block_align can have larger values than 8192.
18830
18831 2004-12-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18832
18833         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
18834         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
18835         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
18836         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
18837           Fix caps.
18838
18839 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18840
18841         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
18842           Fix logic bug.
18843
18844 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18845
18846         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
18847           Yay, another one.
18848
18849 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18850
18851         * ext/esd/esdsink.c: (gst_esdsink_chain):
18852           Make error actually say something useful (fixes #156798).
18853         * gst-libs/gst/riff/riff-media.c:
18854         (gst_riff_create_video_caps_with_data),
18855         (gst_riff_create_video_template_caps):
18856           Add Intel Video 5.0 fourcc (IV50).
18857
18858 2004-12-01  Christophe Fergeau  <teuf@gnome.org>
18859
18860         * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
18861         detection on mono and stereo mp3 files.
18862
18863 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18864
18865         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
18866           Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
18867           the contained stream).
18868
18869 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18870
18871         * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
18872           Oops, remove debug.
18873
18874 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
18875
18876         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18877
18878         * gst/law/alaw-decode.c: (alawdec_getcaps):
18879         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
18880           Prevent warnings when negotiating caps (fixes #159338).
18881
18882 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18883
18884         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18885         (gst_ffmpegcsp_chain):
18886           Remove old leftover that shouldn't be there...
18887
18888 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
18889
18890         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18891
18892         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
18893           Don't forward DISCONT events (fixes #159684).
18894
18895 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18896
18897         * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
18898           Unlink manually since sometimes bin disposal (and therefore
18899           pad unlinking) is delayed, which will cause a new media file
18900           to not be able to start playing instantly.
18901
18902 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18903
18904         * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
18905           On mute of an unlinked stream, check for pad availability so
18906           we don't crash on unlinked pad.
18907
18908 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18909
18910         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18911         (gst_avi_demux_massage_index):
18912           Fix quite humiliating bug in omitting 0-sized index chunks but
18913           forgetting to count them for timestamps.
18914
18915 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18916
18917         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
18918           Actually leave the loop if we failed to sync. Don't crash.
18919
18920 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18921
18922         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
18923         (gst_dvd_demux_process_private):
18924         * gst/mpegstream/gstdvddemux.h:
18925           Fix crash (#159759). Doesn't work, though. :-(.
18926
18927 2004-11-28  Benjamin Otte  <otte@gnome.org>
18928
18929         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
18930           more overwriting protection due to modifying channels one by one
18931           instead of all at once
18932
18933 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18934
18935         * gst/audioconvert/gstchannelmix.c:
18936         (gst_audio_convert_fill_normalize):
18937           Normalize using absolute values.
18938
18939 2004-11-28  Julien MOUTTE  <julien@moutte.net>
18940
18941         * configure.ac:
18942         * ext/Makefile.am:
18943         * ext/directfb/Makefile.am:
18944         * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
18945         (gst_directfbvideosink_get_pixel_format),
18946         (gst_directfbvideosink_get_format_from_fourcc),
18947         (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
18948         (gst_directfbvideosink_sink_link),
18949         (gst_directfbvideosink_change_state),
18950         (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
18951         (gst_directfbvideosink_buffer_alloc),
18952         (gst_directfbvideosink_interface_supported),
18953         (gst_directfbvideosink_interface_init),
18954         (gst_directfbvideosink_navigation_send_event),
18955         (gst_directfbvideosink_navigation_init),
18956         (gst_directfbvideosink_set_property),
18957         (gst_directfbvideosink_get_property),
18958         (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
18959         (gst_directfbvideosink_base_init),
18960         (gst_directfbvideosink_class_init),
18961         (gst_directfbvideosink_get_type), (plugin_init):
18962         * ext/directfb/directfbvideosink.h: Adding a first version of
18963         directfbvideosink.
18964         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
18965         more.
18966
18967 2004-11-28  Benjamin Otte  <otte@gnome.org>
18968
18969         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
18970           walk the samples backwards if out_channels > in_channels so we don't
18971           overwrite data
18972
18973 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18974
18975         * gst/audioconvert/Makefile.am:
18976         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
18977         (gst_audio_convert_link), (gst_audio_convert_change_state),
18978         (gst_audio_convert_channels):
18979         * gst/audioconvert/gstchannelmix.c:
18980         (gst_audio_convert_unset_matrix),
18981         (gst_audio_convert_fill_identical),
18982         (gst_audio_convert_fill_compatible),
18983         (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
18984         (gst_audio_convert_fill_others),
18985         (gst_audio_convert_fill_normalize),
18986         (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
18987         (gst_audio_convert_passthrough), (gst_audio_convert_mix):
18988         * gst/audioconvert/gstchannelmix.h:
18989           Implement a channel mixer.
18990
18991 2004-11-28  Martin Soto  <martinsoto@users.sourceforge.net>
18992
18993         * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
18994         * ext/alsa/gstalsa.h:
18995         * ext/alsa/gstalsa.c (gst_alsa_set_clock):
18996         Make alsasink actually honor gst_element_set_clock and use that
18997         clock instead of its internal one.
18998
18999 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
19000
19001         * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
19002         (gst_play_base_bin_change_state): nullify source and decoder when
19003         going from READY to NULL so that we don't try to do weird stuff with
19004         them when going from NULL to READY
19005         * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
19006         instead of g_object_unref
19007         (gen_video_element), (gen_audio_element): more refcounting fixes, now
19008         it should be correct
19009         (gst_play_bin_change_state): don't call remove_sinks if we are
19010         currently disposing the object
19011
19012 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19013
19014         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
19015           Don't forget bass if it's there. Else left channel is silent...
19016
19017 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19018
19019         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
19020         (gst_a52dec_change_state):
19021           Don't do sample adjusting anymore, we use float audio now.
19022         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
19023           Don't fixate to non-existing properties.
19024
19025 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19026
19027         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
19028         (gst_a52dec_change_state):
19029           Advertise that we can do surround sound.
19030
19031 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19032
19033         * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
19034           Add buffer-frames=0.
19035         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
19036         (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
19037         (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
19038         (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
19039         (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
19040         (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
19041         (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
19042         (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
19043         (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
19044         * ext/dvdread/dvdreadsrc.h:
19045           Add seeking, querying for bytes, sectors, title, angle and
19046           chapter. Handle multiple chapters. Relicense to LGPL because
19047           Billy agreed on that (thanks Billy!).
19048
19049 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
19050
19051         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
19052         call parent dispose method
19053
19054 2004-11-27  Martin Soto  <martinsoto@users.sourceforge.net>
19055
19056         * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
19057         (gst_audio_clock_get_internal_time):
19058         Fix active <-> inactive transitions: ensure time value always
19059         grows and avoid abrupt value changes.
19060
19061 2004-11-27  Arwed v. Merkatz <v.merkatz@gmx.net>
19062
19063         * configure.ac:
19064         * gst/tta/Makefile.am:
19065         * gst/tta/crc32.h:
19066         * gst/tta/filters.h:
19067         * gst/tta/gsttta.c:
19068         * gst/tta/gstttadec.c:
19069         * gst/tta/gstttadec.h:
19070         * gst/tta/gstttaparse.c:
19071         * gst/tta/gstttaparse.h:
19072         * gst/tta/ttadec.h:
19073           added TTA parser and decoder
19074
19075 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19076
19077         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
19078         (probe_triggered), (check_queue), (buffer_underrun),
19079         (buffer_running), (buffer_overrun), (gen_source_element),
19080         (setup_source):
19081         * gst/playback/gstplaybasebin.h:
19082           Implement buffering. Needs some more work.
19083
19084 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19085
19086         * ext/theora/theoradec.c: (theora_dec_chain):
19087           Fix ilog mask range overflow.
19088
19089 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19090
19091         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
19092           Don't omit the last (which in case of dmix is the only :) )
19093           channel count. Don't set channels if <= 2.
19094
19095 2004-11-26  Christophe Fergeau  <teuf@gnome.org>
19096
19097         * gst/playback/gstplaybin.c: (gen_video_element),
19098         (gen_audio_element): Removed 2 obsolete comments
19099
19100 2004-11-26  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
19101
19102         * ext/vorbis/oggvorbisenc.c
19103         * ext/vorbis/vorbisenc.c :
19104           change description fields of those plugins to differentiate them
19105           (pitivi show Encoders by description, they had the same one)
19106
19107 2004-11-25  Christophe Fergeau  <teuf@gnome.org>
19108
19109         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19110
19111         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
19112         (gst_play_bin_set_property), (gen_video_element),
19113         (gen_audio_element):
19114           Refcounting fixes for provided audio-/videosinks.
19115
19116 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19117
19118         * gst/playback/gstplaybin.c: (gen_video_element),
19119         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
19120           Don't reference all sinks, but only the video- and audiosinks.
19121           The vis. element should be disposed when we're done with it.
19122           We don't have any reason to keep it around. This fixes warnings
19123           when reusing playbin for playing multiple audio files with
19124           vis. enabled. Also release audio device on pause - idea stolen
19125           from Rhythmbox.
19126
19127 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19128
19129         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
19130         (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
19131         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
19132         * ext/alsa/gstalsaplugin.c: (plugin_init):
19133         * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
19134         (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
19135         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
19136         (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
19137         (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
19138         (gst_faad_change_state), (plugin_init):
19139         * ext/faad/gstfaad.h:
19140         * ext/vorbis/vorbis.c: (plugin_init):
19141         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
19142         * gst-libs/gst/audio/Makefile.am:
19143         * gst-libs/gst/audio/audio.c: (plugin_init):
19144         * gst-libs/gst/audio/multichannel.c:
19145         (gst_audio_check_channel_positions),
19146         (gst_audio_get_channel_positions),
19147         (gst_audio_set_channel_positions),
19148         (gst_audio_set_structure_channel_positions_list),
19149         (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
19150         (gst_audio_fixate_channel_positions):
19151         * gst-libs/gst/audio/multichannel.h:
19152         * gst-libs/gst/audio/testchannels.c: (main):
19153         * gst/audioconvert/gstaudioconvert.c:
19154         (gst_audio_convert_class_init), (gst_audio_convert_init),
19155         (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
19156         (gst_audio_convert_parse_caps), (gst_audio_convert_link),
19157         (gst_audio_convert_fixate), (gst_audio_convert_channels):
19158         * gst/audioconvert/plugin.c: (plugin_init):
19159           Surround sound support.
19160
19161 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19162
19163         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
19164           Fix position for discont if we're close as well. Nitpicking, but
19165           saves a few milliseconds of extra waiting or skipping.
19166
19167 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19168
19169         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
19170           We sometimes need parsers for playback, so add those too.
19171
19172 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19173
19174         * configure.ac:
19175         * gst/apetag/Makefile.am:
19176         * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
19177         (gst_ape_demux_base_init), (gst_ape_demux_class_init),
19178         (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
19179         (gst_ape_demux_get_src_query_types),
19180         (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
19181         (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
19182         (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
19183         (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
19184         (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
19185         (gst_ape_demux_stream_data), (gst_ape_demux_loop),
19186         (gst_ape_demux_change_state):
19187         * gst/apetag/apedemux.h:
19188         * gst/apetag/apetag.c: (plugin_init):
19189         * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
19190         (plugin_init):
19191           APE v1/2 tag reader plus typefind function.
19192
19193 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19194
19195         * configure.ac:
19196         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19197         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
19198           Remove hacks for older core. Require newer core version
19199           accordingly.
19200
19201 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19202
19203         * gst/cdxaparse/Makefile.am:
19204         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
19205         (gst_cdxaparse_class_init), (gst_cdxaparse_init),
19206         (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
19207         * gst/cdxaparse/gstcdxaparse.h:
19208         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
19209         (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
19210         (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
19211         (gst_cdxastrip_get_src_query_types),
19212         (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
19213         (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
19214         (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
19215         (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
19216         * gst/cdxaparse/gstcdxastrip.h:
19217           SVCD/VCD header stripping separated from CDXA image parsing.
19218         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
19219         (plugin_init):
19220           Add VCD/SVCD header typefinding for VCD/SVCD.
19221         * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
19222         (gst_vcdsrc_class_init), (gst_vcdsrc_init),
19223         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
19224         (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
19225         (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
19226         (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
19227         (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
19228         (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
19229         (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
19230         (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
19231         (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
19232         * sys/vcd/vcdsrc.h:
19233           Fix up, add seeking, querying, URI interface. Works in totem now.
19234
19235 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
19236
19237         * configure.ac:
19238           back to CVS
19239
19240 === release 0.8.6 ===
19241
19242 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
19243
19244         * NEWS:
19245         * RELEASE:
19246         * configure.ac:
19247         * po/af.po:
19248         * po/az.po:
19249         * po/cs.po:
19250         * po/en_GB.po:
19251         * po/hu.po:
19252         * po/it.po:
19253         * po/nb.po:
19254         * po/nl.po:
19255         * po/or.po:
19256         * po/sq.po:
19257         * po/sr.po:
19258         * po/sv.po:
19259         * po/uk.po:
19260           releasing 0.8.6, "IOU Love"
19261
19262 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19263
19264         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
19265
19266         * gst/playback/gstplaybasebin.c:
19267           Fix unplayable files error handling.  Fixes #158365
19268
19269 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19270
19271         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
19272
19273         * gst/typefind/gsttypefindfunctions.c:
19274           Fix broken mp3 typefinding.  Fixes #158375
19275
19276 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19277
19278         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
19279
19280         * ext/ogg/gstoggdemux.c:
19281           Fix sync on broken files.  Fixes #158976
19282
19283 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19284
19285         patch by: Edward Hervey <bilboed@bilboed.com>
19286
19287         * ext/libpng/gstpngenc.c:
19288           Copy over buffer properties.  Fixes #158832
19289
19290 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19291
19292         patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
19293
19294         * ext/dvdread/dvdreadsrc.c:
19295           Fixes invalid reads (#158462)
19296
19297 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19298
19299         * sys/v4l/gstv4lsrc.c:
19300         * sys/v4l/gstv4lsrc.h:
19301         * sys/v4l/v4lsrc_calls.c:
19302           Probe less and cache it.  Fixes #159187.
19303
19304 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19305
19306         * gst/videorate/gstvideorate.c:
19307           Handle all video formats. Fixes #159186.
19308
19309 2004-11-16  Jan Schmidt  <thaytan@mad.scientist.com>
19310         * gst/synaesthesia/gstsynaesthesia.c:
19311         (gst_synaesthesia_class_init), (gst_synaesthesia_init),
19312         (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
19313         (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
19314         (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
19315         (gst_synaesthesia_change_state), (plugin_init):
19316         Fix up synaesthesia to work under different samplerates/ buffer sizes.
19317         Force 320x200 output, as that's the only thing the underlying
19318         synaesthesia implementation supports. Still needs to be made
19319         re-entrant.
19320
19321 2004-11-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19322
19323         * configure.ac:
19324           Fix mpeg2enc configure check (similar to mplex check below).
19325
19326 2004-11-14  Koop Mast  <kwm@rainbow-runner.nl>
19327
19328         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19329
19330         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19331           Fix for gcc-2.95 (fixes #158221).
19332
19333 2004-11-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19334
19335         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19336           Re-add clock distribution hack (until new core is released).
19337           Fixes #158125.
19338
19339 2004-11-13  Arwed v. Merkatz  <v.merkatz@gmx.net>
19340         * configure.ac:
19341           fix mplex configure check segfaulting on some systems (bug #140994)
19342
19343 2004-11-13  Benjamin Otte  <otte@gnome.org>
19344
19345         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
19346           add debugging
19347         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
19348           do a wait when we enter the loop func with no data available to
19349           write instead of getting into an 100% CPU loop by just returning and
19350           being called again by the scheduler
19351
19352 2004-11-13  Jan Schmidt  <thaytan@mad.scientist.com>
19353
19354         * configure.ac:
19355         * ext/libvisual/visual.c: (gst_visual_get_type),
19356         (libvisual_log_handler), (gst_visual_getcaps),
19357         (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
19358         (plugin_init):
19359           Update libvisual to 0.1.7. Link in the debug handling to gstreamer
19360         * ext/smoothwave/Makefile.am:
19361         * ext/smoothwave/demo-osssrc.c: (main):
19362         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
19363         (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
19364         (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
19365         (plugin_init):
19366         * ext/smoothwave/gstsmoothwave.h:
19367           Make gstsmoothwave a working element in the 20th century.
19368
19369         * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
19370           Fix incorrect link function
19371
19372 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19373
19374         * gst/volume/gstvolume.c:
19375           Allow buffer-frames=0.
19376
19377 2004-11-12 Iain <iaingnome@gmail.com>
19378
19379         * configure.ac: Check for polypaudio
19380
19381         * ext/Makefile.am: Build the polyp dir
19382
19383         * ext/polyp: The polypsink sources.
19384
19385 2004-10-30 Iain <iaingnome@gmail.com>
19386
19387         * gst/interleave/interleave.c (interleave_unlink): Change the src pads
19388         caps to reflect the new number of channels.
19389
19390 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19391
19392         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
19393           Fix for negotiation order problem. This would show when the
19394           ALSA loopfuction was called before any other function. ALSA
19395           wouldn't do anything because we're not negotiated yet, leading
19396           to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
19397
19398 2004-11-11  Tim-Philipp Müller  <t.i.m@zen.co.uk>
19399
19400         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19401
19402         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
19403           No warnings (#157986).
19404
19405 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19406
19407         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
19408           Prefer apev1/2 and id3v1 (at end of file) over musepack.
19409
19410 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19411
19412         * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
19413           Signal no-more-pads (so it works in playbin).
19414
19415 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19416
19417         * ext/musepack/gstmusepackreader.cpp:
19418           Workaround for older core.
19419
19420 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19421
19422         * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
19423           Actually test for odd width/height rather than testing whether
19424           a temporary variable that was 0 before we subtracted 1 is now
19425           not equal to zero (which it always is).
19426
19427 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
19428
19429         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
19430         Fix compilation if HAVE_XVIDEO is not defined
19431
19432 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
19433
19434         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
19435         Fix compilation if HAVE_XVIDEO is not defined
19436
19437 2004-11-11  Jan Schmidt  <thaytan@mad.scientist.com>
19438
19439         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
19440         (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
19441         (gst_goom_change_state), (plugin_init):
19442         Use the bytestream adapter so goom doesn't depend on the input
19443         buffer size.
19444         Add a debug category
19445
19446 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19447
19448         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
19449           Only set hardware parameters *after* negotiation. Before
19450           negotiation, it will set ANY and that seems to cause crashes
19451           (see e.g. #151288, #153227).
19452
19453 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19454
19455         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
19456           This seems to be antique leftover. It needs to pass error
19457           checking.
19458         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
19459         (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
19460         (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
19461         (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
19462           Fix GstXOverlay implementation (#151059).
19463
19464 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19465
19466         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
19467           Don't assert (#157853).
19468
19469 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19470
19471         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
19472           Fix bytes/samples confustion.
19473         (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
19474           Fix for underrun (#144389).
19475
19476 2004-11-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19477
19478         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
19479           Disable halfway-seek for pending release (since it needs a new
19480           core release).
19481
19482 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
19483
19484         * sys/v4l/gstv4lsrc.c:
19485         * sys/v4l/gstv4lsrc.h:
19486         * sys/v4l/v4lsrc_calls.c:
19487           add autoprobe-fps property so we can separate autoprobing parts
19488
19489 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
19490
19491         * sys/v4l/gstv4lsrc.c:
19492         * sys/v4l/v4lsrc_calls.c:
19493         initialise fourcc to catch unset fourcc's, and debug
19494
19495 2004-11-09  Wim Taymans  <wim@fluendo.com>
19496
19497         * gst/playback/README:
19498         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
19499         * gst/playback/gstplaybin.c: (gst_play_bin_init),
19500         (gst_play_bin_dispose), (gst_play_bin_set_property),
19501         (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
19502         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
19503         (gst_play_bin_get_formats), (gst_play_bin_convert),
19504         (gst_play_bin_get_query_types), (gst_play_bin_query):
19505         Cleanups and some more documentation.
19506
19507 2004-11-09  Jan Schmidt  <thaytan@mad.scientist.com>
19508
19509         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
19510         (gst_cacasink_init), (gst_cacasink_chain):
19511         * ext/libcaca/gstcacasink.h:
19512         Cacasink inherits from VideoSink, so let that store the clock.
19513
19514 2004-11-09  Wim Taymans  <wim@fluendo.com>
19515
19516         * gst/playback/README:
19517         * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
19518         (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
19519         (probe_triggered), (preroll_unlinked), (new_decoded_pad),
19520         (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
19521         * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
19522         (setup_sinks):
19523         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
19524         (gst_stream_info_is_mute), (gst_stream_info_set_property):
19525         * gst/playback/gststreaminfo.h:
19526         Updated README.
19527         Only switch groups if all streams have muted (EOSed).
19528         Send Tags in sync with the stream playback instead of in
19529         the playback/preroll phase.
19530         Some cleanups, free the fakesrc elements.
19531
19532 2004-11-09  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19533
19534         * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
19535           buffer-frames property was missing
19536         * ext/arts/gst_arts.c:
19537           rate missing from sinkcaps
19538         * ext/audiofile/gstafparse.c:
19539         * ext/audiofile/gstafsink.c:
19540         * ext/audiofile/gstafsrc.c:
19541         * ext/swfdec/gstswfdec.c:
19542           int audio doesn't know buffer-frames
19543         * ext/cdparanoia/gstcdparanoia.c:
19544           int audio doesn't know chunksize either
19545         * ext/nas/nassink.c:
19546           it's endianness, not endianess
19547         * gst-libs/gst/audio/audio.h:
19548           make float standard pad template caps really describe float
19549         * gst/law/mulaw.c: (linear_factory):
19550           signed only, please
19551         * gst/mpegstream/gstdvddemux.c:
19552           widths of 20 are not valid
19553
19554 2004-11-08  Thomas Vander Stichele  <thomas at apestaart dot org>
19555
19556         Submitted by: Luca Ferretti <elle.uca@infinito.it>
19557
19558         * po/LINGUAS:
19559         * po/it.po:
19560           Add Italian
19561
19562 2004-11-08  Wim Taymans  <wim@fluendo.com>
19563
19564         * gst/playback/README:
19565         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
19566         * gst/playback/gstplaybasebin.c: (probe_triggered),
19567         (gst_play_base_bin_change_state):
19568         Updated README, added more comments for fixmes etc..
19569
19570 2004-11-08  Wim Taymans  <wim@fluendo.com>
19571
19572         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19573         We can remove this hack now.
19574
19575 2004-11-08  Wim Taymans  <wim@fluendo.com>
19576
19577         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
19578         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
19579         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
19580         Only mix AYUV for maximum quality.
19581
19582 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19583
19584         * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
19585         (gst_ogg_demux_push), (gst_ogg_pad_push):
19586           Let's act as if we're synchronized now! :).
19587         * ext/theora/theoradec.c: (theora_dec_chain):
19588           Add some debug.
19589
19590 2004-11-08  Wim Taymans  <wim@fluendo.com>
19591
19592         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19593         (gst_alpha_set_property), (gst_alpha_sink_link),
19594         (gst_alpha_set_ayuv), (gst_alpha_set_i420),
19595         (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
19596         (gst_alpha_init_params), (gst_alpha_chain):
19597         Implement alpha functions for AYUV too, this increases
19598         accuracy quite a bit.
19599
19600 2004-11-08  Wim Taymans  <wim@fluendo.com>
19601
19602         * gst/ffmpegcolorspace/avcodec.h:
19603         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19604         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
19605         (gst_ffmpegcsp_avpicture_fill):
19606         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19607         (gst_ffmpegcsp_caps_remove_format_info):
19608         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19609         (shrink12), (img_get_alpha_info), (deinterlace_line),
19610         (deinterlace_line_inplace):
19611         * gst/ffmpegcolorspace/imgconvert_template.h:
19612         Added AYUV colorspace and handle RGBA a bit more respectful.
19613
19614 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19615
19616         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19617           Actually always send a discont (cornercase when resending the
19618           same serial-tagged chain twice).
19619
19620 2004-11-08  Julien MOUTTE  <julien@moutte.net>
19621
19622         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
19623         (gst_ximagesink_finalize):
19624         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
19625         (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
19626
19627 2004-11-08  Wim Taymans  <wim@fluendo.com>
19628
19629         * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
19630         Don't segfault on NULL data.
19631
19632 2004-11-08  Wim Taymans  <wim@fluendo.com>
19633
19634         * gst/playback/gstdecodebin.c: (unlinked):
19635         * gst/playback/gstplay-marshal.list:
19636         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
19637         (gst_play_base_bin_init), (group_create), (get_active_group),
19638         (get_building_group), (group_destroy), (group_commit),
19639         (queue_overrun), (remove_groups), (add_stream), (unknown_type),
19640         (add_element_stream), (no_more_pads), (probe_triggered),
19641         (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
19642         (state_change), (setup_source), (gst_play_base_bin_get_property),
19643         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
19644         (gst_play_base_bin_link_stream),
19645         (gst_play_base_bin_get_streaminfo):
19646         * gst/playback/gstplaybasebin.h:
19647         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
19648         (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
19649         Add support for chained ogg files. Prepare for playlist
19650         support. This patch introduces the concept of pad groups, which
19651         together compose one playable media file.
19652
19653 2004-11-07  David Schleef  <ds@schleef.org>
19654
19655         * testsuite/gst-lint: Check for pad templates that aren't statically
19656         scoped.
19657
19658 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19659
19660         * configure.ac:
19661         * ext/Makefile.am:
19662         * ext/musepack/Makefile.am:
19663         * ext/musepack/gstmusepackdec.cpp:
19664         * ext/musepack/gstmusepackdec.h:
19665         * ext/musepack/gstmusepackreader.cpp:
19666         * ext/musepack/gstmusepackreader.h:
19667           Add musepack decoder.
19668         * ext/faad/gstfaad.c: (gst_faad_base_init):
19669           Make pad templates static.
19670         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
19671         (plugin_init):
19672           Add musepack typefinder, make mp3 typefinding work halfway stream,
19673           which doesn't actually work yet because id3demux doesn't implement
19674           _get_length().
19675
19676 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19677
19678         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
19679         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
19680           Fix interrupt event handling (#144436).
19681
19682 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19683
19684         * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
19685           Hide unused glory.
19686
19687 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
19688
19689         reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19690
19691         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
19692           Fix weird caps (#157548).
19693
19694 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
19695
19696         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19697
19698         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
19699           Add missing NULL terminator (#157543).
19700
19701 2004-11-05  Thomas Vander Stichele  <thomas at apestaart dot org>
19702
19703         * gst/tcp/gsttcp.h:
19704         * gst/tcp/gsttcpclientsink.c:
19705         * gst/tcp/gsttcpclientsrc.c:
19706         * gst/tcp/gsttcpserversink.c:
19707         * gst/tcp/gsttcpserversrc.c:
19708           ports can go up to 65535.  Move common defines to gsttcp.h
19709
19710 2004-11-05  Wim Taymans  <wim@fluendo.com>
19711
19712         * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
19713         (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
19714         Added two more colorspaces.
19715
19716 2004-11-05  Wim Taymans  <wim@fluendo.com>
19717
19718         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19719         (gst_ffmpegcsp_avpicture_fill):
19720         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19721         (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
19722         (img_convert), (deinterlace_line), (deinterlace_line_inplace):
19723         More stride fixes.
19724
19725 2004-11-05  Wim Taymans  <wim@fluendo.com>
19726
19727         * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
19728         (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
19729         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
19730         (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
19731         (gst_videomixer_loop):
19732         More stride fixes.
19733
19734 2004-11-05  Benjamin Otte  <otte@gnome.org>
19735
19736         * ext/mad/gstmad.c: (gst_mad_chain):
19737           don't overflow data buffer. Flush not needed sync data when syncing
19738           failed.
19739
19740 2004-11-04  Wim Taymans  <wim@fluendo.com>
19741
19742         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19743         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
19744         (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
19745         (gst_alpha_init_params), (gst_alpha_chain),
19746         (gst_alpha_change_state):
19747         Updated the chroma keying algorithm with something more
19748         sophisticated.
19749
19750 2004-11-03  Wim Taymans  <wim@fluendo.com>
19751
19752         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
19753         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
19754         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
19755         Fix stride issues. Does not completely work for odd
19756         heights.
19757
19758 2004-11-03  Wim Taymans  <wim@fluendo.com>
19759
19760         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19761         (gst_alpha_chroma_key), (gst_alpha_chain):
19762         Fix stride issues. Does not completely work for odd
19763         heights.
19764
19765 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
19766
19767         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
19768         * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
19769         leak fixes
19770
19771 2004-11-03  Wim Taymans  <wim@fluendo.com>
19772
19773         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19774         (gst_ffmpegcsp_avpicture_fill):
19775         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19776         (avpicture_alloc):
19777         * gst/ffmpegcolorspace/imgconvert_template.h:
19778         Use correct _fill function to get correct strides.
19779
19780 2004-11-02  David Schleef  <ds@schleef.org>
19781
19782         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19783         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
19784         (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
19785         Change all g_print()s to debugging.  Add a bunch of consistency
19786         checks.
19787
19788 2004-11-02  Wim Taymans  <wim@fluendo.com>
19789
19790         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19791         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
19792         (unlinked), (no_more_pads), (close_link):
19793         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
19794         (unknown_type), (add_element_stream), (new_decoded_pad),
19795         (removed_decoded_pad), (setup_source):
19796         * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
19797         (gst_stream_info_class_init), (gst_stream_info_init),
19798         (gst_stream_info_new), (gst_stream_info_dispose),
19799         (stream_info_mute_pad), (gst_stream_info_set_property),
19800         (gst_stream_info_get_property):
19801         * gst/playback/gststreaminfo.h:
19802         Fix playback of multiple files.
19803         a slightly different approach to handling dynamic pad removals.
19804         This one only looks at pads that we have linked.
19805
19806 2004-11-01  Christophe Fergeau  <teuf@gnome.org>
19807
19808         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
19809         free" warning from libc.
19810
19811 2004-11-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19812
19813         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19814         (get_unconnected_element), (remove_starting_from), (pad_removed),
19815         (close_link):
19816           Implement support for dynamic pad changing. We listen to "live"
19817           pad removals (i.e. while playing) and re-setup autoplugging
19818           after that. Playbasebin/playbin need some more work for this
19819           to finally work, but decodebin supports (and replugs) chained
19820           ogg now.
19821
19822 2004-11-02  Jan Schmidt  <thaytan@mad.scientist.com>
19823
19824         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
19825         (gst_alsa_finalize):
19826         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
19827         (gst_cdaudio_finalize):
19828         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
19829         (cdparanoia_finalize):
19830         * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
19831         * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
19832         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
19833         (dvdreadsrc_finalize):
19834         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
19835         (gst_flacdec_finalize):
19836         * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
19837         (gst_flacenc_finalize):
19838         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
19839         (gst_gnomevfssink_finalize):
19840         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
19841         (gst_gnomevfssrc_finalize):
19842         * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
19843         (gst_fameenc_finalize):
19844         * ext/nas/nassink.c: (gst_nassink_class_init),
19845         (gst_nassink_finalize):
19846         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
19847         (gst_sdlvideosink_class_init):
19848         * ext/sndfile/gstsf.c: (gst_sf_dispose):
19849         * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
19850         * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
19851         * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
19852         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
19853         (gst_x_window_listener_dispose):
19854         * gst/audioscale/gstaudioscale.c:
19855         * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
19856         (play_on_demand_finalize):
19857         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
19858         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
19859         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
19860         (cdplayer_finalize):
19861         * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
19862         (gst_glimagesink_class_init):
19863         * sys/oss/gstosselement.c: (gst_osselement_class_init),
19864         (gst_osselement_finalize):
19865         * sys/oss/gstosssink.c: (gst_osssink_dispose):
19866         * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
19867         * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
19868           Fixes a bunch of problems with finalize and dispose functions,
19869           either assumptions that dispose is only called once, or not calling
19870           the parent class dispose/finalize function
19871
19872 2004-11-01  Stefan Kost  <ensonic@users.sf.net>
19873
19874         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
19875           added two api precondition guards
19876           use g_strdup with getenv to fix crash when using ENVVAR
19877
19878 2004-11-01  Jan Schmidt  <thaytan@mad.scientist.com>
19879         * ext/esd/esdsink.c: (gst_esdsink_class_init),
19880         (gst_esdsink_finalize):
19881         Use a finalize function, not dispose, and more importantly,
19882         call the parent class finalize function too
19883
19884 2004-11-01  Johan Dahlin  <johan@gnome.org>
19885
19886         * ext/ogg/gstoggdemux.c:
19887         * gst/tags/gstvorbistag.c:
19888         Plug leaks.
19889
19890 2004-10-31  Benjamin Otte  <otte@gnome.org>
19891
19892         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
19893           lotsa memleaks today. But they're all small...
19894
19895 2004-10-31  Benjamin Otte  <otte@gnome.org>
19896
19897         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19898           another memleak crushed
19899
19900 2004-10-31  Benjamin Otte  <otte@gnome.org>
19901
19902         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
19903           fix memleak
19904
19905 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19906
19907         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19908           Hack to prevent crash when going to READY inside signal handler
19909           while this function is active.
19910
19911 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19912
19913         * gst/ffmpegcolorspace/Makefile.am:
19914         * gst/ffmpegcolorspace/avcodec.h:
19915         * gst/ffmpegcolorspace/common.h:
19916         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
19917         * gst/ffmpegcolorspace/dsputil.h:
19918         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
19919         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19920         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
19921         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
19922         (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
19923         (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
19924         (gst_ffmpegcsp_avpicture_fill):
19925         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
19926         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19927         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
19928         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
19929         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
19930         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
19931         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
19932         (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
19933         * gst/ffmpegcolorspace/imgconvert.c:
19934         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
19935         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
19936         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
19937         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
19938         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
19939         (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
19940         (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
19941         (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
19942         (img_convert_init), (img_apply_table), (shrink41), (shrink21),
19943         (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
19944         (grow21), (grow22), (grow41), (grow44), (conv411),
19945         (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
19946         (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
19947         (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
19948         (avpicture_free), (is_yuv_planar), (img_convert),
19949         (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
19950         (deinterlace_line_inplace), (deinterlace_bottom_field),
19951         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
19952         * gst/ffmpegcolorspace/imgconvert_template.h:
19953         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
19954         * gst/ffmpegcolorspace/mmx.h:
19955         * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
19956         (av_fast_realloc), (av_mallocz_static), (av_free_static),
19957         (av_freep), (avcodec_get_context_defaults),
19958         (avcodec_alloc_context), (avcodec_init):
19959           Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
19960           handling plus update from ffmpeg CVS. Large clean-up.
19961
19962 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19963
19964         * gst/playback/Makefile.am:
19965           We need the marshallers for decodebin, too.
19966
19967 2004-10-30  David Schleef  <ds@schleef.org>
19968
19969         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
19970           quicktime typefinding work with 64-bit offsets.
19971
19972 2004-10-30  Jan Schmidt  <thaytan@mad.scientist.com>
19973
19974         * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
19975           Set EOS on the element when processing an EOS event.
19976         * ext/speex/gstspeexdec.h:
19977         * ext/speex/gstspeexenc.h:
19978           Only keep a const ptr to the mode
19979         * gst-libs/gst/riff/riff-media.c:
19980         (gst_riff_create_audio_caps_with_data),
19981         (gst_riff_create_audio_template_caps):
19982           Allow WMAV3, with up to 6 channels.
19983         * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
19984           Don't call gst_pad_set_event_function on a sink pad.
19985         * gst/mpegstream/gstdvddemux.c:
19986         (gst_dvd_demux_get_subpicture_stream),
19987         (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
19988           Copy the explicit caps that were set across to the cur_* pads,
19989           instead of trying to use a possibly non-existent negotiated caps.
19990           Reset the type of subpicture pads to UNKNOWN after calling
19991           init_stream, so that the caps get set.
19992
19993 2004-10-29  Martin Pitt  <martin.pitt@canonical.com>
19994
19995         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19996
19997         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
19998           Don't touch buffer if it is of size 0 (fixes #151064).
19999
20000 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20001
20002         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
20003           Synchronized discont handling.
20004
20005 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20006
20007         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
20008         (gst_ogg_demux_push):
20009           Make seeking sort-of exact again (fixes #156387).
20010
20011 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20012
20013         * gst/playback/gstplaybasebin.c: (unknown_type),
20014         (add_element_stream), (new_decoded_pad),
20015         (gst_play_base_bin_change_state):
20016         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
20017         (gst_stream_info_init), (gst_stream_info_new),
20018         (gst_stream_info_dispose), (gst_stream_info_get_property):
20019         * gst/playback/gststreaminfo.h:
20020           Make caps explicitely available. Makes testing for unsupported
20021           types possible. Improves error reporting.
20022
20023 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20024
20025         * gst/audioconvert/gstaudioconvert.c:
20026         (gst_audio_convert_buffer_to_default_format):
20027           Really don't touch read-only buffers (#156563).
20028
20029 2004-10-29  Sebastien Cote  <sc5@hermes.usherb.ca>
20030
20031         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20032
20033         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
20034           Fix memleak (#155223).
20035
20036 2004-10-29  Wim Taymans  <wim@fluendo.com>
20037
20038         * gst/tcp/.cvsignore:
20039         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
20040         (gst_multifdsink_class_init), (gst_multifdsink_init),
20041         (gst_multifdsink_add), (gst_multifdsink_remove),
20042         (gst_multifdsink_remove_client_link), (is_sync_frame),
20043         (gst_multifdsink_new_client),
20044         (gst_multifdsink_handle_client_write),
20045         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
20046         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
20047         (gst_multifdsink_get_property):
20048         * gst/tcp/gstmultifdsink.h:
20049         Added burst on connect sync_method, deprecated sync_clients,
20050         streamlined the sync code some more.
20051
20052 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20053
20054         * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
20055         (gst_play_base_bin_change_state):
20056           Improve error reporting.
20057
20058 2004-10-28  Wim Taymans  <wim@fluendo.com>
20059
20060         * gst/tcp/Makefile.am:
20061         * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
20062         * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
20063         (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
20064         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
20065         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
20066         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
20067         (gst_fdset_wait):
20068         Added more locks around fdset structures. Fixed/reworked
20069         the poll array resizing code.
20070         Added stress test for fdset.
20071
20072 2004-10-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
20073
20074         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
20075         fix build
20076
20077 2004-10-28  Benjamin Otte  <otte@gnome.org>
20078
20079         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
20080           fix link function to always query channels and query width for
20081           floats
20082         * configure.ac:
20083           add equalizer dir
20084         * gst/equalizer/Makefile.am:
20085         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
20086         (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
20087         (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
20088         (arg_to_scale), (setup_filter),
20089         (gst_iir_equalizer_compute_frequencies),
20090         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
20091         (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
20092         (plugin_init):
20093           add an equalizer
20094
20095 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
20096
20097         Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
20098
20099         * po/LINGUAS:
20100         * po/nb.po:
20101           Added Norwegian Bokmaal translation
20102
20103 2004-10-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20104
20105         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
20106           Don't break on options (fixes #156488).
20107
20108 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
20109
20110         * configure.ac:
20111         * ext/cdaudio/Makefile.am:
20112         * sys/Makefile.am:
20113           fix build on older automake
20114
20115 2004-10-26  Wim Taymans  <wim@fluendo.com>
20116
20117         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
20118         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
20119         Allow a little margin when negotiating the framerate.
20120
20121 2004-10-26  Stefan Kost  <ensonic@users.sf.net>
20122
20123         * gst/level/gstlevel.c:
20124           synchonised naming of pads and pad-templates
20125
20126 2004-10-26  Wim Taymans  <wim@fluendo.com>
20127
20128         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
20129         (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
20130         (_find_streams_check), (gst_ogg_demux_push):
20131         Fix EOS again. Needs to be done in a better way. We should not
20132         remove the pad if there is no new chained stream.
20133
20134 2004-10-26 Iain <iaingnome@gmail.com>
20135
20136         * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
20137         * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
20138         of the caps.
20139         * gst/interleave/interleave.c (interleave_class_init): Hook up release
20140         pad.
20141         (interleave_release_pad): Remove the pad.
20142         * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
20143         * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
20144         the set device.
20145         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
20146         attrs
20147         (gst_xvimagesink_xcontext_clear): Free the xcontext.
20148         (gst_xvimagesink_finalize): Free the par.
20149
20150 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20151
20152         * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
20153         (gst_avimux_stop_file):
20154           First calculate the rate, and only then use it. Hdr.rate is a
20155           multiple and not a derivative of hdr.scale. Scale is not the
20156           same as blockalign but is solely related to rate.
20157
20158 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20159
20160         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
20161         (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
20162           Implement seeking.
20163
20164 2004-10-25  James Henstridge  <james@jamesh.id.au>
20165
20166         Reviewed by:  David Schleef  <ds@schleef.org>
20167
20168         * examples/gstplay/player.c: (got_stream_length), (main):
20169         * examples/seeking/cdplayer.c: (update_scale):
20170         * examples/seeking/seek.c: (format_value), (update_scale):
20171         * examples/seeking/spider_seek.c: (format_value), (update_scale),
20172         (stop_seek):
20173         Build fixes on AMD64.
20174
20175 2004-10-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
20176
20177         reviewed by: Ronald Bultje <rbultje at gnome dot org>
20178
20179         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
20180         Fix for some v4l cards which hang in v4lsrc
20181
20182 2004-10-25  Wim Taymans  <wim@fluendo.com>
20183
20184         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
20185         (gst_ogg_demux_push), (gst_ogg_chains_clear):
20186         Make sure to remove the pad when a new chain is
20187         encountered. Set some vars to NULL so we don't try
20188         to reference freed memory.
20189
20190 2004-10-25  Wim Taymans  <wim@fluendo.com>
20191
20192         * examples/seeking/Makefile.am:
20193         * examples/seeking/cdplayer.c: (update_scale):
20194         * examples/seeking/chained.c: (unlinked), (new_pad), (main):
20195         * examples/seeking/playbin.c: (make_playerbin_pipeline),
20196         (format_value), (update_scale), (iterate), (start_seek),
20197         (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
20198         (print_usage), (main):
20199         Added some more examples, update others.
20200
20201 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20202
20203         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
20204         * ext/speex/gstspeexdec.c: (speex_dec_chain):
20205         * ext/theora/theoradec.c: (theora_dec_chain):
20206         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
20207           Add codec-name metadata.
20208
20209 2004-10-25  Takao Fujiwara  <Takao.Fujiwara@Sun.COM>
20210
20211         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20212
20213         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
20214         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
20215         * ext/alsa/gstalsamixertrack.h:
20216         * po/POTFILES.in:
20217           ALSA mixer track label internationalization (#154054).
20218
20219 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20220
20221         * ext/theora/theoradec.c: (theora_dec_chain):
20222           Export bitrate as metadata.
20223
20224 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20225
20226         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
20227         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
20228         * ext/alsa/gstalsamixertrack.h:
20229           Fix names, fix loop.
20230
20231 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20232
20233         * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
20234         (speex_dec_convert):
20235           sinkconvert function so oggdemux can get the file length (totem).
20236
20237 2004-10-25  James Morrison  <ja2morri@csclub.uwaterloo.ca>
20238
20239         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20240
20241         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
20242           Don't push incomplete packets.
20243         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
20244           Fix MPEG-4 audio typefinding.
20245
20246 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20247
20248         * sys/v4l/Makefile.am:
20249         * sys/v4l/gstv4l.c: (plugin_init):
20250         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
20251         (gst_v4lelement_init), (gst_v4lelement_dispose),
20252         (gst_v4lelement_change_state):
20253         * sys/v4l/gstv4lelement.h:
20254         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
20255         (gst_v4l_xoverlay_close), (idle_refresh),
20256         (gst_v4l_xoverlay_set_xwindow_id):
20257         * sys/v4l/gstv4lxoverlay.h:
20258         * sys/v4l/v4l-overlay_calls.c:
20259         * sys/v4l/v4l_calls.h:
20260         * sys/v4l2/Makefile.am:
20261         * sys/v4l2/gstv4l2.c: (plugin_init):
20262         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
20263         (gst_v4l2element_init), (gst_v4l2element_dispose),
20264         (gst_v4l2element_change_state):
20265         * sys/v4l2/gstv4l2element.h:
20266         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
20267         (gst_v4l2_xoverlay_close), (idle_refresh),
20268         (gst_v4l2_xoverlay_set_xwindow_id):
20269         * sys/v4l2/gstv4l2xoverlay.h:
20270         * sys/v4l2/v4l2-overlay_calls.c:
20271         * sys/v4l2/v4l2_calls.h:
20272           Remove client-side overlay handling, use the X-server v4l plugin
20273           for that. Nicer overlay, less code. Also make the plugin
20274           compileable without X (but then without overlay, obviously).
20275           Makes xwindowlistener obsolete, should we remove that?
20276
20277 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20278
20279         * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
20280         (gst_osssrc_src_query):
20281         * sys/oss/gstosssrc.h:
20282           OK, so people want offset in DEFAULT. This time, actually fix all
20283           cases.
20284         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
20285           Add FPS properly.
20286
20287 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20288
20289         * gst/asfdemux/gstasfmux.c:
20290         * gst/avi/gstavimux.c:
20291           Framerate.
20292
20293 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20294
20295         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
20296           Fix properties (channel, norm, frequency).
20297
20298 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20299
20300         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
20301           Flag typo.
20302         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
20303           No warnings.
20304
20305 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20306
20307         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
20308           Fix hang.
20309
20310 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20311
20312         * sys/v4l2/gstv4l2element.h:
20313           Yet Another Hack (tm) for kernel header borkedness.
20314         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
20315         (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
20316         (gst_v4l2src_link), (gst_v4l2src_getcaps),
20317         (gst_v4l2src_change_state):
20318         * sys/v4l2/gstv4l2src.h:
20319         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
20320         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
20321           Fix caps, keep track of state, work.
20322
20323 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20324
20325         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
20326           Quiet.
20327
20328 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20329
20330         * sys/oss/gstosssrc.c: (gst_osssrc_get):
20331           Don't mix bytes and samples.
20332
20333 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20334
20335         * ext/ogg/gstoggmux.c:
20336           Basic pad template which accepts OGM tracks, speex, flac, vorbis
20337           and theora. Any is incorrect.
20338         * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
20339           Fix caps.
20340         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
20341         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
20342         (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
20343         (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
20344         * sys/v4l/gstv4lmjpegsrc.h:
20345         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
20346         (gst_v4lsrc_change_state):
20347         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
20348         (gst_v4lmjpegsrc_capture_stop):
20349           Fix caps. Keep track of internal state. Work.
20350
20351 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20352
20353         * ext/Makefile.am:
20354           Fix the build fixes.
20355
20356 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20357
20358         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20359         (gst_ogg_demux_src_event), (_find_chain_seek),
20360         (gst_ogg_pad_push):
20361           Check for pad availability before using it.
20362         * ext/ogg/gstoggdemux.c: (_find_chain_process):
20363           Fix parsing of chained ogg. Needs more work on the decoder side.
20364
20365 2004-10-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20366
20367         * gst/spectrum/Makefile.am:
20368         * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
20369         (idle_func):
20370           Fix demo and reenable it. Yes, I'm currently playing with audio
20371           analysis tools
20372
20373 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20374
20375         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
20376           We love it if files that start at zero work too...
20377
20378 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20379
20380         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20381           Handle files with missing EOS headers.
20382
20383 2004-10-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
20384
20385         * gst/tcp/gsttcpserversink.c:
20386         (gst_tcpserversink_handle_server_read),
20387         (gst_tcpserversink_init_send):
20388         Zero some variables first (need for accept not to return EINVAL)
20389
20390 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20391
20392         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20393         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
20394         * ext/theora/theoradec.c: (theora_dec_sink_convert),
20395         (theora_dec_chain):
20396         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
20397         (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
20398           Seeking and querying finetune.
20399
20400 2004-10-20  Thomas Vander Stichele  <thomas at apestaart dot org>
20401
20402         * configure.ac:
20403         * ext/Makefile.am:
20404         * ext/raw1394/Makefile.am:
20405           fix the build
20406
20407 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20408
20409         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20410           Wrong return.
20411         * gst/playback/Makefile.am:
20412         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
20413         * gst/playback/gstplay-marshal.list:
20414         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
20415           Fix marshallers.
20416
20417 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20418
20419         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
20420           Silence.
20421
20422 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20423
20424         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20425         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
20426         (gst_ogg_pad_push):
20427           Yay for non-lineair granulepos in theora.
20428
20429 2004-10-18  Wim Taymans  <wim@fluendo.com>
20430
20431         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
20432         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
20433         * ext/dv/gstdvdec.h:
20434         Make sure we renegotiate aspect ratio when the camera switches.
20435
20436 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20437
20438         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20439         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
20440           Start at zero.
20441         * ext/theora/theoradec.c: (theora_dec_chain):
20442           Skip headers. Bad idea for chained ogg, but fixes seeking.
20443
20444 2004-10-18  Wim Taymans  <wim@fluendo.com>
20445
20446         * configure.ac:
20447         I swear, this is the last time I touch this.
20448
20449 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20450
20451         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20452         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
20453         (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
20454           Faster seeking.
20455         * ext/theora/theoradec.c: (theora_dec_sink_convert):
20456           Time-to-default conversion.
20457         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
20458           Don't error on unknown packets, just skip. We should probably
20459           read them if we want to support chained ogg.
20460
20461 2004-10-18  Wim Taymans  <wim@fluendo.com>
20462
20463         * configure.ac:
20464         Added cdaudio to wrong list.
20465
20466 2004-10-18  Wim Taymans  <wim@fluendo.com>
20467
20468         * configure.ac:
20469         Revive cdaudio.
20470
20471 2004-10-18  Wim Taymans  <wim@fluendo.com>
20472
20473         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
20474         (gst_dvdec_video_link), (gst_dvdec_push):
20475         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
20476         (gst_smokeenc_resync), (gst_smokeenc_chain):
20477         Fix mimetype on smoke encoder.
20478         Add aspect ratio to dvdec. Not sure if these
20479         values are correct though....
20480
20481 2004-10-18  Wim Taymans  <wim@fluendo.com>
20482
20483         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
20484         Fix vorbis property descriptions and ranges.
20485
20486 2004-10-18  Wim Taymans  <wim@fluendo.com>
20487
20488         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20489         Really do nothing when no data is available.
20490         Go to the playing state when the stream is not seekable
20491         instead of failing.
20492
20493 2004-10-18  Wim Taymans  <wim@fluendo.com>
20494
20495         * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
20496         (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
20497         (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
20498         (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
20499         (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
20500         Added uri handler for cd://
20501         Port to new API.
20502
20503 2004-10-18  Wim Taymans  <wim@fluendo.com>
20504
20505         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
20506         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20507         (try_to_link_1), (no_more_pads), (close_link), (type_found):
20508         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
20509         (remove_prerolls), (unknown_type), (add_element_stream),
20510         (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
20511         (gst_play_base_bin_remove_element),
20512         (gst_play_base_bin_link_stream):
20513         * gst/playback/gstplaybin.c: (gen_video_element),
20514         (gen_vis_element), (remove_sinks), (setup_sinks):
20515         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
20516         (gst_stream_info_get_type), (gst_stream_info_class_init),
20517         (gst_stream_info_init), (gst_stream_info_new),
20518         (gst_stream_info_dispose), (stream_info_mute_pad),
20519         (gst_stream_info_set_property), (gst_stream_info_get_property):
20520         * gst/playback/gststreaminfo.h:
20521         Add sink padtemplate to decodebin.
20522         Added some more comments.
20523         Make queue size configurable in playbasebin.
20524         Added possibility to use elements as sinks (ex cdaudio).
20525
20526 2004-10-15  Wim Taymans  <wim@fluendo.com>
20527
20528         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
20529         (gst_speexenc_chain):
20530         Fix speex timestamps so that it gets muxed properly.
20531
20532 2004-10-15  Wim Taymans  <wim@fluendo.com>
20533
20534         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
20535         (gst_dv1394src_base_init), (gst_dv1394src_class_init),
20536         (gst_dv1394src_init), (gst_dv1394src_dispose),
20537         (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
20538         (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
20539         (gst_dv1394src_event), (gst_dv1394src_get_formats),
20540         (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
20541         (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
20542         (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
20543         (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
20544         * ext/raw1394/gstdv1394src.h:
20545         Added conversion/query functions.
20546         Update buffer timestamps,
20547         Added signals.
20548         Added uri dv:// so it might play from the firewire in playbin.
20549         Fix a possible leak.
20550         Added debugging.
20551
20552 2004-10-15  Wim Taymans  <wim@fluendo.com>
20553
20554         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
20555         (gst_dv1394src_init), (gst_dv1394src_set_property),
20556         (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
20557         (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
20558         * ext/raw1394/gstdv1394src.h:
20559         Added AV/C VTR control support needed for some cameras.
20560         Added automatic port detection.
20561         Added properties for selecting the channel.
20562         The configure.ac script is not yet updated to reflect the
20563         new libavc1394 and librom1394 dependencies.
20564
20565 2004-10-15  Wim Taymans  <wim@fluendo.com>
20566
20567         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
20568         (qtdemux_parse), (gst_qtdemux_handle_esds):
20569         An esds box is not a container.
20570         Fix parsing of mp4v boxes.
20571         Do not try to renegotiate fps for each frame. Need to
20572         find a better method. This should fix mp4 playback.
20573
20574 2004-10-14  David Schleef  <ds@schleef.org>
20575
20576         * configure.ac: update for swfdec-0.3 and liboil-0.2
20577         * ext/swfdec/gstswfdec.c: update for swfdec-0.3
20578         * ext/swfdec/gstswfdec.h: same
20579         * gst/videofilter/gstvideobalance.c: update for liboil-0.2
20580         * gst/videotestsrc/videotestsrc.c: same
20581
20582 2004-10-14  Wim Taymans  <wim@fluendo.com>
20583
20584         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
20585         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
20586         (is_sync_frame), (gst_multifdsink_new_client),
20587         (gst_multifdsink_handle_client_write),
20588         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
20589         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
20590         Turn warnings into info.
20591         Don't allow a state change in the streaming thread.
20592
20593 2004-10-14  Thomas Vander Stichele  <thomas at apestaart dot org>
20594
20595         * ext/vorbis/oggvorbisenc.c:
20596         * ext/vorbis/vorbisdec.c:
20597           fix template sample rate
20598
20599 2004-10-13  Wim Taymans  <wim@fluendo.com>
20600
20601         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
20602         Decoding the header first fixes some problems in resyncing
20603         in more mp3s.
20604
20605 2004-10-12  Wim Taymans  <wim@fluendo.com>
20606
20607         * gst/playback/gstplaybin.c: (gen_video_element),
20608         (gen_vis_element), (remove_sinks), (setup_sinks):
20609         Added vis plugin support, need to configure the vis
20610         element to activate it.
20611
20612 2004-10-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20613
20614         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
20615         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
20616           Some debug.
20617         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
20618         (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
20619         (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
20620         (gst_avi_demux_stream_index), (gst_avi_demux_skip),
20621         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
20622         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
20623         * gst/avi/gstavidemux.h:
20624           Support for openDML-2.0 indx/ix## chunks. Support for broken index
20625           recovery (where, if part of the index is broken, we will still read
20626           the rest of the index and recover the broken part by stream
20627           scanning). More broken media support. EOS workarounds. General AVI
20628           braindamage headache recovery. Aspirin included.
20629
20630 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20631
20632         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
20633         (cdparanoia_event), (cdparanoia_query):
20634           Get rid of hideous lead-in.
20635
20636 2004-10-11  Wim Taymans  <wim@fluendo.com>
20637
20638         * gst/playback/gstplaybasebin.c: (setup_source):
20639         Wrong var used to get g_list_next.
20640
20641 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20642
20643         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
20644         (cdparanoia_get), (cdparanoia_open):
20645           Report discid as metadata, add duration.
20646
20647 2004-10-11  Wim Taymans  <wim@fluendo.com>
20648
20649         * gst/playback/gstplaybasebin.c: (setup_source):
20650         Cleanup the previous pipeline a little earlier for the
20651         case that a source element provides raw data.
20652
20653 2004-10-11  Benjamin Otte  <otte@gnome.org>
20654
20655         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
20656           reset v1 tag offset when there is no v1 tag. Fixes id3demux always
20657           consuming the last 128 bytes, even though it was valid mp3 data.
20658
20659 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
20660
20661         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
20662         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
20663         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
20664         Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
20665
20666 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
20667
20668         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
20669         Fix for webcams that support only specific width or height
20670
20671 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
20672
20673         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20674
20675         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
20676           Fix wrong discont event setup (fixes #154967).
20677
20678 2004-10-09  Sebastien Cote  <sc5@hermes.usherb.ca>
20679
20680         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20681
20682         * gst/auparse/gstauparse.c: (gst_auparse_chain):
20683           Error out on invalid data (fixes #154807).
20684
20685 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
20686
20687         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20688
20689         * ext/dvdread/dvdreadsrc.c: (_read):
20690           Make titles > 0 work again (fixes #154834).
20691
20692 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20693
20694         * gst-libs/gst/riff/riff-media.c:
20695         (gst_riff_create_video_template_caps):
20696           WMV3 missing in template caps.
20697
20698 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20699
20700         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20701           OK, so the original code was too strict. It makes random AVI files
20702           hang for seconds upon opening, which is unacceptable and is far
20703           beyond the original goal of getting multiple chunks for one-chunk
20704           sounc stream files. So now do just that.
20705
20706 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20707
20708         * gst/playback/gstplaybasebin.c: (setup_source),
20709         (gst_play_base_bin_change_state):
20710           Actually clean up streaminfo if output fails. This would trigger
20711           if, for example, there was no CD in the drive. No preroll, so
20712           a streaminfo structure is created, but the subsequent state change
20713           of the thread fails.
20714         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
20715           Don't change state if parent failed.
20716
20717 2004-10-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20718
20719         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
20720         (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
20721         (gen_video_element), (remove_sinks):
20722           Add small bits of code for screenshot handling.
20723
20724 2004-10-08  Wim Taymans  <wim@fluendo.com>
20725
20726         * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
20727         (gen_video_element), (gen_audio_element), (setup_sinks):
20728         Don't assume the user provided sinks are named "sink"...
20729
20730 2004-10-08  Wim Taymans  <wim@fluendo.com>
20731
20732         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
20733         (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
20734         (gst_play_base_bin_link_stream):
20735         Do not try to autoplug sources that generate raw streams like
20736         cdparanoia.
20737         disconnect the preroll overrun signal when we don't need it anymore.
20738
20739 2004-10-08  Milosz Derezynski  <internalerror.rez@fhtw-berlin.de>
20740
20741         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
20742         Added reworked patch from #154903 from milosz derezynski (deadchip).
20743
20744 2004-10-08  Wim Taymans  <wim@fluendo.com>
20745
20746         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
20747         (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
20748         (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
20749         (cdparanoia_convert), (cdparanoia_uri_get_type),
20750         (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
20751         (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
20752         * ext/cdparanoia/gstcdparanoia.h:
20753         This adds the cdda://<tracknum> uri.
20754
20755 2004-10-08  Wim Taymans  <wim@fluendo.com>
20756
20757         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
20758         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20759         (try_to_link_1), (no_more_pads), (close_link), (type_found):
20760         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
20761         (unknown_type), (gst_play_base_bin_remove_element),
20762         (gst_play_base_bin_link_stream):
20763         * gst/playback/gstplaybasebin.h:
20764         * gst/playback/gstplaybin.c: (gst_play_bin_init),
20765         (gst_play_bin_set_property), (gen_video_element),
20766         (gen_audio_element), (setup_sinks):
20767         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
20768         (gst_stream_info_get_type), (gst_stream_info_class_init),
20769         (gst_stream_info_init), (gst_stream_info_new),
20770         (gst_stream_info_dispose), (stream_info_mute_pad),
20771         (gst_stream_info_set_property), (gst_stream_info_get_property):
20772         * gst/playback/gststreaminfo.h:
20773         Reuse the audio and video bins.
20774         Some internal cleanups in the stream selection code.
20775
20776 2004-10-08  Julien MOUTTE  <julien@moutte.net>
20777
20778         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20779         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
20780         * sys/ximage/ximagesink.h:
20781         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
20782         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
20783         * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
20784         not coming from those elements. Moreover these elements should not keep
20785         the xid they have been given when in NULL state.
20786
20787 2004-10-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20788
20789         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20790         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
20791         * sys/ximage/ximagesink.h:
20792         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
20793         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
20794         * sys/xvimage/xvimagesink.h:
20795           Actually only create a new toplevel window if we're not gonna
20796           embed it right after.
20797
20798 2004-10-07  Wim Taymans  <wim@fluendo.com>
20799
20800         * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
20801         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
20802         * gst/playback/gstplaybin.c: (setup_sinks):
20803         Implement muting/unmuting of streams, mute streams that are not
20804         used.
20805
20806 2004-10-07  Wim Taymans  <wim@fluendo.com>
20807
20808         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
20809         (plugin_init):
20810         Added lame audio/x-ac3 typefind function.
20811
20812 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
20813
20814         * configure.ac:
20815           bump nano to cvs
20816
20817 === release 0.8.5 ===
20818
20819 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
20820
20821         * NEWS:
20822         * RELEASE:
20823         * configure.ac:
20824           releasing 0.8.5, "Take You On"
20825
20826 2004-10-06  Wim Taymans  <wim@fluendo.com>
20827
20828         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20829         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
20830         (no_more_pads), (close_link), (type_found):
20831         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20832         * gst/playback/gstplaybin.c: (gen_video_element):
20833         Do not signal the no_more_pads after the first pad when
20834         we are plugging a non dynamic element with multiple
20835         output pads (like swfdec, dvdec, ...).
20836
20837 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
20838
20839         * configure.ac:
20840           bump for prerelease
20841
20842 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
20843
20844         * gst/wavparse/gstwavparse.c:
20845           add ATRAC3 to STATIC CAPS to fix a warning
20846
20847         * gst/matroska/ebml-read.c:
20848         * gst-libs/gst/riff/riff-read.c:
20849           fix typos
20850
20851 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
20852
20853         * gst-libs/gst/riff/riff-media.c:
20854           generate caps for ATRAC3 audio streams
20855
20856         * gst/realmedia/rmdemux.c:
20857           generate caps for ATRAC3 audio streams
20858
20859 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
20860
20861         * gst/wavparse/Makefile.am
20862         * gst/wavparse/riff.h
20863         * gst/wavparse/wavparse.vcproj
20864           riff.h removal (unused and duplication with riff-ids.h)
20865
20866 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
20867
20868         * gst/wavparse/gstwavparse.h
20869           remove duplicated defines for audio codec codes
20870
20871         * gst-libs/gst/riff/riff-ids.h
20872         * gst/wavenc/riff.h:
20873           add "4CC" code for ATRAC3 audio streams
20874           add "4CC" code for ITU_G721_ADPCM (unused for now)
20875
20876 2004-10-06  Wim Taymans  <wim@fluendo.com>
20877
20878         * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
20879         Actually _do_ negotiation. Pass gdouble as arg instead
20880         of guint64 for the framerate.
20881
20882 2004-10-06  Wim Taymans  <wim@fluendo.com>
20883
20884         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20885         (find_compatibles), (close_pad_link), (try_to_link_1),
20886         (no_more_pads), (close_link), (type_found):
20887         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20888         * gst/playback/gstplaybin.c: (gen_video_element),
20889         (gen_audio_element):
20890         Set state on newly added element to READY so that negotiation
20891         can happen ASAP.
20892         Addes some more debug info.
20893         Do not try to plug pads with multiple caps structures or ANY
20894         because it is too dangerous since we do not do dynamic
20895         replugging.
20896
20897 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
20898
20899         written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
20900
20901         * po/LINGUAS:
20902         * po/or.po:
20903           add Oriya translation
20904
20905 2004-10-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20906
20907         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20908           Prevent overwrite of size member. Makes audio sound crappy.
20909
20910 2004-10-05  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
20911
20912         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
20913         Add rmvb to the list of known RealMedia extensions
20914
20915 2004-10-05  Wim Taymans  <wim@fluendo.com>
20916
20917         * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
20918         (mngdec_openstream), (mngdec_closestream),
20919         (mngdec_handle_sink_event), (mngdec_readdata),
20920         (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
20921         (mngdec_getcanvasline), (mngdec_refresh),
20922         (gst_mngdec_change_state):
20923         Set the framerate correctly.
20924
20925 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20926
20927         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20928           There was something wrong with the index massaging.
20929
20930 2004-10-04  Wim Taymans  <wim@fluendo.com>
20931
20932         * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
20933         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
20934         (gst_smokedec_chain):
20935         * ext/jpeg/gstsmokedec.h:
20936         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
20937         (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
20938         * ext/jpeg/gstsmokeenc.h:
20939         * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
20940         (smokecodec_decode_new), (smokecodec_info_free),
20941         (smokecodec_set_quality), (smokecodec_get_quality),
20942         (smokecodec_set_threshold), (smokecodec_get_threshold),
20943         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
20944         (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
20945         (smokecodec_encode), (smokecodec_parse_id),
20946         (smokecodec_parse_header), (smokecodec_decode):
20947         * ext/jpeg/smokecodec.h:
20948         * ext/jpeg/smokeformat.h:
20949         Updated smoke, new bitstream, allows embedding in ogg.
20950
20951 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20952
20953         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
20954           Fix seeking in some files. All this code is no longer needed (and
20955           actually breaks stuff) because we now synchronize the full index
20956           right when reading the header.
20957
20958 2004-10-04  Wim Taymans  <wim@fluendo.com>
20959
20960         * configure.ac:
20961         configure update for libmng.
20962
20963 2004-10-04  Wim Taymans  <wim@fluendo.com>
20964
20965         * ext/libmng/Makefile.am:
20966         * ext/libmng/gstmng.c: (plugin_init):
20967         * ext/libmng/gstmng.h:
20968         * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
20969         (gst_mngdec_base_init), (gst_mngdec_class_init),
20970         (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
20971         (gst_mngdec_loop), (gst_mngdec_get_property),
20972         (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
20973         (mngdec_closestream), (mngdec_handle_sink_event),
20974         (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
20975         (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
20976         (gst_mngdec_change_state):
20977         * ext/libmng/gstmngdec.h:
20978         * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
20979         (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
20980         (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
20981         (gst_mngenc_chain), (gst_mngenc_get_property),
20982         (gst_mngenc_set_property):
20983         * ext/libmng/gstmngenc.h:
20984         Added basic MNG decoder. Needs more work. The encoder does
20985         not work yet.
20986
20987 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20988
20989         * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
20990         (gst_rmdemux_loop), (gst_rmdemux_add_stream),
20991         (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
20992           Don't hang on length=0 chunks. Some negotiation fixes. Signal
20993           no-more-pads.
20994
20995 2004-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
20996
20997         * configure.ac:
20998           you need at least 1.0.4 of speex
20999
21000 2004-10-04 Iain <iaingnome@gmail.com>
21001
21002         * ext/speex/gstspeexdec.h: Revert the includes changes.
21003
21004         * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
21005
21006 2004-09-30 Iain <iaingnome@gmail.com>
21007
21008         * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
21009         found during init or set as a property instead of hardcoding /dev/audio
21010
21011 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21012
21013         * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
21014         (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
21015         (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
21016         (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
21017         (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
21018         (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
21019         (gst_rmdemux_dump_data):
21020           Use debug category, fix EOS handling. filesrc ! rmdemux now
21021           works.
21022
21023 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21024
21025         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
21026         (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
21027         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
21028           Improve allocation, cutting and sorting of the index. How takes a
21029           few seconds instead of minutes.
21030
21031 2004-10-03  Christophe Fergeau  <teuf@gnome.org>
21032
21033         * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
21034           fixed compilation
21035
21036 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21037
21038         * gst-libs/gst/riff/riff-media.c:
21039         (gst_riff_create_video_caps_with_data),
21040         (gst_riff_create_video_template_caps):
21041           Add wing commander format mimetype/fourccs.
21042         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
21043           Don't crash if some value is 0.
21044
21045 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21046
21047         * gst-libs/gst/riff/riff-media.c:
21048         (gst_riff_create_video_caps_with_data),
21049         (gst_riff_create_video_template_caps):
21050           Add DIB fourcc (raw, palettized 8-bit RGB).
21051         * gst-libs/gst/riff/riff-read.c:
21052         (gst_riff_read_strf_vids_with_data):
21053           Oops, fix strf_data reading bug.
21054         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
21055           Use a non-NULL tag.
21056         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
21057           Time for hacks. Sorry Dave. At least one quicktime movie (a
21058           trailer) that I've encountered contains multiple video tracks.
21059           One of those is the actual video track, the other are one-frame
21060           tracks (images). Unfortunately, the number of frames according
21061           to the trak header is 1 for each, so that doesn't help. So
21062           instead, I look at the duration and discard tracks with a
21063           duration shorter than 20% of the length of the stream. Better
21064           than nothing.
21065
21066 2004-10-01  Christian Schaller <christian@fluendo.com>
21067
21068         * ext/ivorbis/vorbis.c:
21069           Patch from Phil Blundell (Bug 152341)
21070
21071 2004-10-01  Wim Taymans  <wim@fluendo.com>
21072
21073         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
21074         (speex_dec_get_formats), (speex_dec_convert),
21075         (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
21076         (speex_dec_chain), (gst_speexdec_get_property),
21077         (gst_speexdec_set_property):
21078         Small cleanups.
21079
21080 2004-10-01  Wim Taymans  <wim@fluendo.com>
21081
21082         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
21083         (gst_wavparse_stream_init), (gst_wavparse_fmt),
21084         (gst_wavparse_other), (gst_wavparse_loop),
21085         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
21086         (gst_wavparse_srcpad_event):
21087         * gst/wavparse/gstwavparse.h:
21088         Added some more debugging info.
21089         Fix the case where the length of the file is 0.
21090         Make sure we seek to sample borders.
21091
21092 2004-10-01  Wim Taymans  <wim@fluendo.com>
21093
21094         * gst/playback/README:
21095         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
21096         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
21097         (try_to_link_1), (no_more_pads), (close_link), (type_found):
21098         Add some debug info to decodebin, update README
21099
21100 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21101
21102         * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
21103           Don't use g_print(); use GST_DEBUG().
21104
21105 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21106
21107         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21108         (gst_ogg_mux_queue_pads):
21109           Handle EOS properly.
21110
21111 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
21112
21113         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21114
21115         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
21116         (gst_faad_chain), (gst_faad_change_state):
21117         * ext/faad/gstfaad.h:
21118           Allow playback of raw (unframed) MPEG AAC files (#148993).
21119
21120 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
21121
21122         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21123
21124         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
21125           Throw error if we didn't recognize the stream. Fixes #152289.
21126
21127 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21128
21129         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
21130           Fix negotiation.
21131
21132 2004-10-01  Francis Labonte  <francis_labonte@hotmail.com>
21133
21134         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21135
21136         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
21137           Fix memleak.
21138
21139 2004-10-01  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
21140
21141         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21142
21143         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
21144           Solve #152805.
21145         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
21146           Solve 152806.
21147
21148 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21149
21150         * gst-libs/gst/riff/riff-media.c:
21151         (gst_riff_create_video_caps_with_data),
21152         (gst_riff_create_audio_caps_with_data):
21153           Add codec_data handling (like asfdemux used to do).
21154         * gst/asfdemux/gstasf.c: (plugin_init):
21155         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
21156         (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
21157           Use riff-media for caps creation instead of our own (mostly
21158           broken) copy of its functions.
21159
21160 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21161
21162         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
21163           Don't actually error out if we get another return value than
21164           -EINVAL. Opposite to what I first thought, drivers have random
21165           return values for this, although -EINVAL is the expected return
21166           value. Since this is not fatal, we shouldn't use
21167           GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
21168
21169 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21170
21171         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
21172         (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
21173         (dvdreadsrc_get_property), (_open), (_seek), (_read),
21174         (dvdreadsrc_get), (dvdreadsrc_open_file),
21175         (dvdreadsrc_change_state):
21176           Fix. Don't do one big huge loop around the whole DVD, that will
21177           cache all data and thus eat sizeof(dvd) (several GB) before we
21178           see something.
21179         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
21180           Actually NULL'ify event after using it.
21181         * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
21182         (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
21183         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
21184         (gst_ebml_read_seek), (gst_ebml_read_skip):
21185           Handle events.
21186         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
21187         (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
21188         (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
21189           Fix timing (this will probably break if I seek using menus, but
21190           I didn't get there yet). VOBs and normal DVDs should now work.
21191           Add a mpeg2-only pad with high rank so this get autoplugged for
21192           MPEG-2 movies.
21193         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
21194         (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
21195         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
21196         (gst_mpeg_demux_get_audio_stream),
21197         (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
21198         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
21199           Use this as second rank for MPEG-1 and MPEG-2. Still use this for
21200           MPEG-1 but use dvddemux for MPEG-2.
21201         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
21202         (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
21203         (gst_mpeg_parse_parse_packhead):
21204           Timing. Only add pad template if it exists. Add sink template from
21205           class and not from ourselves. This means we will always use the
21206           correct sink template even if it is not the one defined in this
21207           file.
21208
21209 2004-09-29  Wim Taymans  <wim@fluendo.com>
21210
21211         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
21212         (gst_mpeg_demux_parse_pes):
21213         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
21214         Fix playback of mpeg again, timestamps where screwed up by
21215         patch 1.61.
21216
21217 2004-09-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21218
21219         * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
21220           Only return true if we actually filled something in. Prevents
21221           player applications from showing a random length for flac files.
21222         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
21223         (gst_riff_read_use_event), (gst_riff_read_handle_event),
21224         (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
21225         (gst_riff_read_strf_vids_with_data),
21226         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
21227           OK, ok, so I implemented event handling. Apparently it's normal
21228           that we receive random events at random points without asking
21229           for it.
21230         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
21231         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
21232         (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
21233         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
21234         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
21235         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
21236         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
21237         * gst/avi/gstavidemux.h:
21238           Implement non-lineair chunk handling and subchunk processing.
21239           The first solves playback of AVI files where the audio and video
21240           data of individual buffers that we read are not synchronized.
21241           This should not happen according to the wonderful AVI specs, but
21242           of course it does happen in reality. It is also a prerequisite for
21243           the second. Subchunk processing allows us to cut chunks in small
21244           pieces and process each of these pieces separately. This is
21245           required because I've seen several AVI files with incredibly large
21246           audio chunks, even some files with only one audio chunk for the
21247           whole file. This allows for proper playback including seeking.
21248           This patch is supposed to fix all AVI A/V sync issues.
21249         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
21250         (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
21251           Work.
21252         * gst/modplug/gstmodplug.cc:
21253           Proper return value setting for the query() function.
21254         * gst/playback/gstplaybasebin.c: (setup_source):
21255           Being in non-playing state (after, e.g., EOS) is not necessarily
21256           a bad thing. Allow for that. This fixes playback of short files.
21257           They don't actually playback fully now, because the clock already
21258           runs. This means that small files (<500kB) with a small length
21259           (<2sec) will still not or barely play. Other files, such as mod
21260           or flx, will work correctly, however.
21261
21262 2004-09-28  Wim Taymans  <wim@fluendo.com>
21263
21264         * ext/speex/gstspeex.c: (plugin_init):
21265         * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
21266         (gst_speex_dec_class_init), (speex_dec_get_formats),
21267         (speex_get_event_masks), (speex_get_query_types),
21268         (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
21269         (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
21270         (gst_speexdec_get_property), (gst_speexdec_set_property),
21271         (speex_dec_change_state):
21272         * ext/speex/gstspeexdec.h:
21273         * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
21274         (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
21275         (gst_speexenc_base_init), (gst_speexenc_class_init),
21276         (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
21277         (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
21278         (gst_speexenc_src_query), (gst_speexenc_init),
21279         (gst_speexenc_get_tag_value), (comment_init), (comment_add),
21280         (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
21281         (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
21282         (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
21283         (gst_speexenc_chain), (gst_speexenc_get_property),
21284         (gst_speexenc_set_property), (gst_speexenc_change_state):
21285         * ext/speex/gstspeexenc.h:
21286         Rewrote speex encoder, make sure it can be embedded in ogg.
21287         Implemented speex decoder.
21288
21289 2004-09-28  Christian Schaller <christian@fluendo.com>
21290
21291         * configure.ac:
21292         Remove kioslave plugin. Markey is brewing a new working one
21293         * ext/Makefile.am: Remove kioslave plugin
21294         * ext/kio: remove
21295         * gst-plugins.spec.in: remove kio plugin from spec
21296
21297 2004-09-27  Wim Taymans  <wim@fluendo.com>
21298
21299         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21300         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
21301         (is_sync_frame), (gst_multifdsink_client_queue_buffer),
21302         (gst_multifdsink_new_client),
21303         (gst_multifdsink_handle_client_write),
21304         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
21305         (gst_multifdsink_handle_clients):
21306         * gst/tcp/gstmultifdsink.h:
21307         Make syncing to keyframes actually work for new clients and lagging
21308         clients.
21309
21310 2004-09-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21311
21312         * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
21313         (gst_navigationtest_handle_src_event), (draw_box_planar411),
21314         (gst_navigationtest_planar411), (gst_navigationtest_change_state):
21315         * gst/debug/gstnavigationtest.h:
21316           make navigationtest display button-press and button-release events
21317
21318 2004-09-26 Iain <iaingnome@gmail.com>
21319
21320         * gst/interleave/interleave.c (all_channels_new_media): Checks if all
21321         the channels have received a new media event.
21322         (interleave_buffered_loop): Compresses a new media event on all
21323         channels into one.
21324
21325 2004-09-26 Iain <iaingnome@gmail.com>
21326
21327         * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
21328         call the sinkpad's default event handler and not the srcpads. He also
21329         says this is confusing :)
21330         (gst_wavenc_stop_file): Company says that seek events only go upstream
21331         we should send a discontinuous downstream instead.
21332
21333 2004-09-25  Christian Schaller <christian@fluendo.com>
21334
21335         * Update SPEC file to be usable in conjunction with Fedora Core,
21336           Fedora.us and freshrpms packages
21337         * Fix typo in multifilesrc test Makefile
21338
21339 2004-09-24  Wim Taymans  <wim@fluendo.com>
21340
21341         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
21342         Only signal the no_more_pads signal when we have
21343         added the stream to our list.
21344
21345 2004-09-24  Wim Taymans  <wim@fluendo.com>
21346
21347         * gst/playback/gstplaybasebin.c: (remove_prerolls),
21348         (new_decoded_pad):
21349         * gst/playback/gstplaybasebin.h:
21350         * gst/playback/gstplaybin.c: (setup_sinks):
21351         Don't try to preroll or decode more than one audio/video
21352         track.
21353
21354 2004-09-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21355
21356         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
21357           Throw error if we failed to find a suitable output. This should
21358           throw an error if we successfully set up a pipeline (e.g. because
21359           we recognized a media file) but found no decodable streams in it
21360           (e.g. because it contains only media stream types for which we
21361           have no decoders, or because it's not a media type).
21362
21363 2004-09-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21364
21365         * ext/dirac/Makefile.am:
21366         * ext/dirac/gstdirac.cc:
21367         * ext/dirac/gstdiracdec.cc:
21368         * ext/dirac/gstdiracdec.h:
21369           Do something. Don't actually know if this works because I don't
21370           have a demuxer yet.
21371         * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
21372           Add channels=1 to caps returned from _getcaps().
21373         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
21374         (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
21375         (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
21376         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
21377         (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
21378         (gst_ogm_parse_change_state):
21379           Separate between audio/video so ogmaudioparse actually uses the
21380           audio pad templates. Both audio and video work now, including
21381           autoplugging. Also use sometimes-srcpad hack.
21382         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
21383           Handle events better. Don't hang on infinite loops.
21384         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
21385         (gst_avi_demux_init), (gst_avi_demux_reset),
21386         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
21387         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
21388         (gst_avi_demux_change_state):
21389         * gst/avi/gstavidemux.h:
21390           Improve A/V sync. Still not perfect.
21391         * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
21392         (gst_ebml_read_skip):
21393           Handle events better.
21394         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
21395         (gst_qtdemux_loop_header), (qtdemux_parse_trak),
21396         (qtdemux_audio_caps):
21397           Add IMA4. Improve event handling. Save offset after a seek when
21398           the headers are at the end of the file so that we don't end up in
21399           an infinite loop.
21400         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
21401           Add low-priority typefind support for files with no length.
21402
21403 2004-09-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21404
21405         * testsuite/multifilesink/Makefile.am:
21406         fix typo
21407
21408 2004-09-22  Julien MOUTTE  <julien@moutte.net>
21409
21410         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
21411         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
21412         mistakes from thaytan's patches.
21413
21414 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
21415
21416         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
21417           For completeness, XSync in the destroy function as xvimage does.
21418
21419 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
21420
21421         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
21422            Correct caps negotiation
21423         * gst/volume/gstvolume.c: (volume_chain_float),
21424         (volume_chain_int16):
21425            Modify debug output to be little more informative
21426         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
21427         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
21428         (gst_xvimagesink_xvimage_destroy):
21429           Add XSync calls after detaching from the shared memory segment to
21430           avoid a crash.
21431
21432 2004-09-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21433
21434         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
21435         (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
21436         * ext/vorbis/vorbis.c: (plugin_init):
21437         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
21438         (gst_vorbisenc_chain):
21439         * ext/vorbis/vorbisenc.h:
21440         remove explicit newmedia support from oggmux and vorbisenc
21441         add debug category to vorbisenc
21442         * gst/multifilesink/gstmultifilesink.c:
21443         (gst_multifilesink_class_init), (gst_multifilesink_init),
21444         (gst_multifilesink_dispose), (gst_multifilesink_set_location),
21445         (gst_multifilesink_set_property), (gst_multifilesink_next_file),
21446         (gst_multifilesink_handle_event), (gst_multifilesink_chain),
21447         (plugin_init):
21448         * gst/multifilesink/gstmultifilesink.h:
21449         add support for streamheader in multifilesink
21450
21451 2004-09-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21452
21453         * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
21454         (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
21455         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
21456           Prevent infinite loops. More correct error reporting.
21457         * gst/auparse/gstauparse.c: (gst_auparse_chain):
21458           Error out if negotiation fails.
21459         * gst/playback/gstplaybasebin.c: (setup_source),
21460         (gst_play_base_bin_change_state), (gst_play_base_bin_error),
21461         (gst_play_base_bin_found_tag):
21462           Error/tag forwarding. Pre-roll fixes for source errors on state
21463           changes (e.g. "file does not exist") to prevent hangs.
21464
21465 2004-09-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21466
21467         * testsuite/multifilesink/Makefile.am:
21468         * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
21469         (gst_newmedia_class_init), (gst_newmedia_init),
21470         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
21471         (newfile_signal), (test_signal), (main):
21472         * testsuite/multifilesink/multifilesrc_test.c: (main):
21473         * testsuite/multifilesink/oggtheora_test.c:
21474         (gst_newmedia_base_init), (gst_newmedia_class_init),
21475         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
21476         (test_format), (newfile_signal), (test_signal), (main):
21477         * testsuite/multifilesink/oggvorbis_test.c:
21478         (gst_newmedia_base_init), (gst_newmedia_class_init),
21479         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
21480         (test_format), (newfile_signal), (test_signal), (main):
21481         * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
21482         (gst_newmedia_class_init), (gst_newmedia_init),
21483         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
21484         (newfile_signal), (test_signal), (main):
21485         New media tests
21486
21487 2004-09-20  Christian Schaller <christian@fluendo.com>
21488
21489         * Fix mikmod license to LGPL as they have relicensed
21490         * Move Dirac and Effectv into LGPL section of README_license
21491
21492 2004-09-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21493
21494         * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
21495         (gst_mad_change_state):
21496           Allow for mp3 rate/channels changes. However, only very
21497           conservatively. Reason that we *have* to enable this is smiply
21498           because the mad find_sync() function is not good enough, it will
21499           regularly sync on random data as valid frames and therefore make
21500           us provide random caps as *final* caps of the stream. The best fix
21501           I could think of is to simply require several of the same stream
21502           changes in a row before we change caps.
21503           The actual testcase that works now is #
21504         * ext/ogg/Makefile.am:
21505         * ext/ogg/gstogg.c: (plugin_init):
21506         * ext/ogg/gstogmparse.c:
21507           OGM support (video only for now; I need an audio sample file).
21508         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
21509         (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
21510         (gst_asf_demux_add_video_stream):
21511           WMV extradata.
21512         * gst/playback/gstplaybasebin.c: (unknown_type):
21513           Don't error out on single unknown-types after all. It's wrong.
21514           If we found type of video and audio but not of a subtitle stream,
21515           it will still error out (which is unwanted). Will find a better fix
21516           later on.
21517         * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
21518         (ogmaudio_type_find), (plugin_init):
21519           OGM support.
21520
21521 2004-09-20  Johan Dahlin  <johan@gnome.org>
21522
21523         * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
21524         after setting caps.
21525
21526 2004-09-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21527
21528         * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
21529         * gst/wavenc/gstwavenc.h:
21530         Added newmedia support to wavenc
21531
21532 2004-09-17  Wim Taymans  <wim@fluendo.com>
21533
21534         * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
21535         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
21536         (gst_fdset_fd_can_write), (gst_fdset_wait):
21537         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
21538         (gst_multifdsink_init), (gst_multifdsink_add),
21539         (gst_multifdsink_remove), (gst_multifdsink_get_stats),
21540         (gst_multifdsink_remove_client_link),
21541         (gst_multifdsink_client_queue_buffer),
21542         (gst_multifdsink_handle_client_write),
21543         (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
21544         (gst_multifdsink_close), (gst_multifdsink_change_state):
21545         * gst/tcp/gstmultifdsink.h:
21546         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
21547         (gst_tcpserversink_removed):
21548         Small cleanups in fdset.c
21549         Use a hastable to map fd to the client structure for faster
21550         lookup in _remove and get_stats.
21551         Added virtual function to close the fds.
21552         Handle clients even when the select/poll call was unblocked because
21553         of a command.
21554         Implement syncing to keyframe in the recovery procedure.
21555
21556 2004-09-16 Iain <iaingnome@gmail.com>
21557
21558         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
21559         try caps.
21560
21561 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21562
21563         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
21564           Caps are only set if the type of the stream is unknown, but this
21565           is initialized in ->init_stream(), so set to UNKNOWN after calling
21566           ->init_stream() so that capsnego starts.
21567
21568 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21569
21570         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21571         (gst_avi_demux_stream_data):
21572           Just hardcode for raw audio then. AVI audio sucks.
21573
21574 2004-09-15  Arwed v. Merkatz  <v.merkatz@gmx.net>
21575
21576         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
21577         * gst/matroska/matroska-mux.c: (audiosink_templ),
21578         (gst_matroska_mux_audio_pad_link):
21579         * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
21580         Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
21581
21582 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21583
21584         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21585         (gst_avi_demux_stream_data):
21586           Try to fix a/v sync issues.
21587
21588 2004-09-15  David Schleef  <ds@schleef.org>
21589
21590         * configure.ac: remove NASM check, since we don't use it.  Update
21591         dirac check to 0.4
21592         * ext/dirac/gstdiracdec.cc: update to current 0.4 API
21593         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
21594         Initialized variables.
21595         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
21596         (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
21597         (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
21598         SVQ3 format
21599
21600 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21601
21602         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21603         (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
21604         * gst/avi/gstavidemux.h:
21605           Fix for compressed audio (mp3) timestamp generation. How did this
21606           ever work?
21607
21608 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21609
21610         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
21611           Volume is a double not a float.
21612
21613 2004-09-15  Wim Taymans  <wim@fluendo.com>
21614
21615         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
21616         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
21617         Don't close the fd in multifdsink as we didn't open it in the
21618         first place. Some cleanups.
21619
21620 2004-09-15  Wim Taymans  <wim@fluendo.com>
21621
21622         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
21623         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21624         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21625         Fix the case where the muxer would mark pages as delta
21626         frames when they are not (vorbis only ogg).
21627
21628 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21629
21630         * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
21631         (gst_play_base_bin_change_state):
21632           Handle the case where we failed to setup a clear pipeline. This
21633           will throw an error (or EOS, another nice case) and if you don't
21634           catch that, the app will wait for the signal forever (and thus
21635           hang).
21636
21637 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21638
21639         * ext/gnomevfs/gstgnomevfssink.c:
21640         (gst_gnomevfssink_uri_get_protocols):
21641         * ext/gnomevfs/gstgnomevfssrc.c:
21642         (gst_gnomevfssrc_uri_get_protocols):
21643         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
21644         * ext/gnomevfs/gstgnomevfsuri.h:
21645           Use _uri_new() instead of _open(), so it doesn't take as long and
21646           Christophe's computer won't hang.
21647         * gst/playback/gstplaybasebin.c: (unknown_type):
21648           Throw error on unknown media type, so apps actually display it.
21649
21650 2004-09-14  Brian Cameron  <brian.cameron@sun.com
21651
21652         * tools/gst-launch-ext-m.m:  Changed ~ to $ENV{HOME} to allow
21653           this script to work on Solaris since bash shell handles echo
21654           differenly than bash.
21655
21656 2004-09-17  Wim Taymans  <wim@fluendo.com>
21657
21658         * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
21659         (setup_source), (gst_play_base_bin_set_property),
21660         (gst_play_base_bin_add_element):
21661         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
21662         Some more work on making sure seeking pauses the pipeline and
21663         that changing the uri actually does something.
21664
21665 2004-09-17  Wim Taymans  <wim@fluendo.com>
21666
21667         * gst/tcp/gstfdset.c: (gst_fdset_wait):
21668         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
21669         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
21670         (gst_tcpserversink_close):
21671         Be a bit more paranoid when freeing memory.
21672
21673 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21674
21675         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
21676         (qtdemux_parse_trak):
21677           Don't crash by dividing by zero (see sample movie in #126922).
21678
21679 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21680
21681         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
21682           Don't touch non-existing data (fixes crash on file in #140147).
21683
21684 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21685
21686         * gst/playback/gstplaybasebin.c:
21687         (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
21688           Handle double disposals, and proper change of URIs.
21689
21690 2004-09-13  Martin Eikermann <meiker@upb.de>
21691
21692         * gst/mpegstream/gstmpegparse.c:
21693           fix synchronistation for streams recorded from digital PCR
21694           fixes bug #119376
21695
21696 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21697
21698         * ext/gnomevfs/Makefile.am:
21699         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
21700         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
21701         (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
21702         (gst_gnomevfssink_uri_get_type),
21703         (gst_gnomevfssink_uri_get_protocols),
21704         (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
21705         (gst_gnomevfssink_uri_handler_init),
21706         (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
21707         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
21708         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
21709         (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
21710         (gst_gnomevfssrc_uri_get_type),
21711         (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
21712         (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
21713         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
21714         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
21715         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
21716         * ext/gnomevfs/gstgnomevfsuri.h:
21717           Add URI support to Gnome-VFS plugins. Tries to load a fixed list
21718           of fake URIs to see which this version of Gnome-VFS likes, and
21719           uses that for the Gst-URI interface. Makes playbin support http://
21720           streams. Also fix up some stupid behaviour in gnomevfssrc.
21721
21722 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21723
21724         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
21725         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
21726         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
21727         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
21728           Update mixer (to sync with other sessions) if we try to obtain
21729           a new value. This makes alsamixer work accross applications.
21730         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
21731           Only call sync functions if we're running, else alsalib asserts.
21732         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
21733           Sometimes fails to compile. Possibly a gcc bug.
21734         * gst/playback/gstplaybin.c: (gen_video_element),
21735         (gen_audio_element):
21736           Add a reference to an application-provided object, because we lose
21737           this same reference if we add it to the bin. If we don't do this,
21738           we can only use this object once and thus crash if we go from
21739           ready to playing, back to ready and back to playing again.
21740           Also add an audioscale element because several cheap soundcards -
21741           like mine - don't support all samplerates.
21742         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
21743         (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
21744           Fix wrong order or PAR calls. Makes automatically obtained PAR
21745           from the X server atually being used.
21746
21747 2004-09-12  David Schleef  <ds@schleef.org>
21748
21749         Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
21750         #151887, #152102, #152247.
21751         * examples/indexing/indexmpeg.c: 64-bit warning fixes.
21752         * examples/seeking/cdparanoia.c: same
21753         * examples/seeking/cdplayer.c: same
21754         * examples/seeking/seek.c: same
21755         * examples/seeking/spider_seek.c: same
21756         * examples/seeking/vorbisfile.c: same
21757         * examples/stats/mp2ogg.c: same
21758         * ext/esd/esdsink.c: (gst_esdsink_class_init),
21759         (gst_esdsink_dispose): Dispose of element properly.
21760         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
21761         fixes.
21762         * ext/nas/nassink.c: (gst_nassink_class_init),
21763         (gst_nassink_dispose): Dispose of element correctly.
21764         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
21765         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
21766         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
21767         Fix 64-bit warning.
21768         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
21769         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
21770         Fix 64-bit warning.
21771
21772 2004-09-12  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
21773
21774         * configure.ac : change speex detection as 1.1.6 now uses
21775           .pc/pkg-config and they changed their headers location.
21776
21777 2004-09-09  Arwed v. Merkatz  <v.merkatz@gmx.net>
21778
21779         * gst/matroska/matroska-mux.h:
21780         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
21781         (gst_matroska_mux_start), (gst_matroska_mux_finish),
21782         (gst_matroska_mux_write_data):
21783           Write multiple blocks/frames per cluster.
21784                 Write meta-seek information (seek heads).
21785
21786 2004-09-09  Scott Wheeler <wheeler@kde.org>
21787
21788         * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
21789         (gst_play_bin_set_property), (gst_play_bin_get_property),
21790         (gen_audio_element), (gen_audio_element):
21791           Add a volume element / property to the pipeline.
21792
21793 2004-09-07  Wim Taymans  <wim@fluendo.com>
21794
21795         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
21796         Copy timestamps from the master pad to the output buffers.
21797
21798 2004-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21799
21800         * ext/raw1394/gstdv1394src.c:
21801           throw errors when applicable
21802
21803 2004-09-01  Arwed v. Merkatz  <v.merkatz@gmx.net>
21804
21805         * gst/matroska/ebml-ids.h:
21806         * gst/matroska/ebml-read.c: (gst_ebml_read_date):
21807         * gst/matroska/ebml-write.c: (gst_ebml_write_date):
21808         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
21809           automatically convert unix time <-> ebml time when reading/writing
21810           a date, use gst_ebml_write_uint to write CUETIME,
21811           not gst_ebml_write_date.
21812         * gst/matroska/matroska-ids.h:
21813         * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
21814         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
21815         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
21816         (gst_matroska_mux_write_data):
21817           Write track and segment UIDs, write muxing date, write
21818           TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
21819           Create cues for audio only files.
21820
21821 2004-08-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21822
21823         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
21824         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
21825           Re-commit ALSA switches.
21826         * gst/adder/gstadder.c: (gst_adder_loop):
21827           64-bit fix (#151416).
21828         * gst/debug/progressreport.c: (gst_progressreport_report):
21829           64-bit fix (#151419).
21830         * gst/matroska/matroska-demux.c:
21831         (gst_matroska_demux_parse_contents):
21832           64-bit fix (#151420).
21833         * gst/playback/test3.c: (update_scale):
21834           64-bit fix (#151421).
21835
21836 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
21837
21838         * configure.ac:
21839           bump nano to cvs
21840
21841 === release 0.8.4 ===
21842
21843 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
21844
21845         * configure.ac: releasing 0.8.4, "Alias"
21846
21847 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
21848
21849         * ext/theora/Makefile.am:
21850           fix makefile.  Fixes #151462.
21851
21852 2004-08-30  Wim Taymans  <wim@fluendo.com>
21853
21854         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
21855         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21856         (gst_multifdsink_remove_client_link),
21857         (gst_multifdsink_client_queue_buffer),
21858         (gst_multifdsink_handle_client_write):
21859         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
21860         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
21861         Fix some memory leaks.
21862
21863 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
21864
21865         Patch by: David Schleef
21866
21867         * configure.ac:
21868         * sys/Makefile.am:
21869           rename our detection macro for V4L2.  Fixes #151236.
21870
21871 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
21872
21873         Patch by: David Schleef
21874
21875         * configure.ac:
21876           check to define LAMEPRESET.  Fixes #151232.
21877
21878 2004-08-27  David Schleef  <ds@schleef.org>
21879
21880         * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
21881         (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
21882         (gst_glimagesink_fixate):  Move local variable declarations to
21883         make gcc-2.95 happy.
21884
21885 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
21886
21887         * configure.ac:
21888           bump nano for prerelease
21889
21890 2004-08-27  David Schleef  <ds@schleef.org>
21891
21892         * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
21893         * sys/sunaudio/gstsunaudiosrc.c:
21894         * sys/sunaudio/gstsunaudiosrc.h:
21895
21896 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
21897
21898         * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
21899         handle EOS correctly
21900         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
21901         * gst/matroska/matroska-mux.h:
21902         added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
21903         VFW compatibility mode
21904
21905 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
21906
21907         patch by: Zaheer Abbas Merali
21908
21909         * ext/ogg/gstoggmux.c:
21910         * ext/vorbis/vorbisenc.c:
21911         * ext/vorbis/vorbisenc.h:
21912           handle NEWMEDIA
21913
21914 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
21915
21916         * gst/matroska/ebml-write.c: (gst_ebml_write_float),
21917         fix byte order reversion on little endian machines.
21918         * gst/matroska/matroska-mux.c: (audiosink_templ),
21919         (gst_matroska_mux_audio_pad_link):
21920         add TTA codec to the list of supported codecs.
21921         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
21922         (gst_matroska_mux_start), (gst_matroska_mux_finish),
21923         (gst_matroska_mux_write_data):
21924         * gst/matroska/matroska-mux.h:
21925         write segment duration correctly, write muxing app string, fixes bugs
21926         #140897 and #140898.
21927         * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
21928         wait for all pads to be negotiated before starting to mux.
21929
21930 2004-08-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21931
21932         * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
21933         * ext/lame/gstlame.h:
21934         Added new media support to lame
21935
21936 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
21937
21938         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
21939         send vorbis headers at the beginning of a stream, fixes bug #141554.
21940         Interpret BLOCKDURATION and set buffer duration accordingly, fixes
21941         bug #148950.
21942         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
21943         (gst_matroska_demux_plugin_init):
21944         * gst/matroska/matroska-ids.h:
21945         enable demuxing of TTA audio streams, fixes bug #148951.
21946         * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
21947         enable typefinding for TTA audio files, fixes bug #148711.
21948         * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
21949         set XVID_LOWDELAY flag for decoding so xvid always returns an image,
21950         fixes playback of packed bitstream and xvid with bframes, bug #135407.
21951
21952 2004-08-24  Sebastien Cote  <sc5@hermes.usherb.ca>
21953
21954         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
21955         (gst_riff_read_element_data), (gst_riff_read_seek),
21956         (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
21957         #144616, patch reviewed by Ronald and committed by Christophe Fergeau
21958         <teuf@gnome.org>
21959
21960 2004-08-23 Iain <iaingnome@gmail.com>
21961
21962         * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
21963         tags. They appear to be handled differently to normal.
21964         (tag_list_to_id3_tag_foreach): Ditto.
21965
21966 2004-08-22  Wim Taymans  <wim@fluendo.com>
21967
21968         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21969         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21970         Make sure we never send -1 granulepos.
21971
21972 2004-08-20  Wim Taymans  <wim@fluendo.com>
21973
21974         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21975         (gst_ogg_mux_loop):
21976         I will accept bitchslappings with non sharp objects.
21977
21978 2004-08-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21979
21980         * configure.ac:
21981         Clean up the test for lame presets
21982
21983 2004-08-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21984
21985         * configure.ac:
21986         * ext/lame/Makefile.am:
21987         * ext/lame/gstlame.c: (gst_lame_class_init),
21988         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
21989         Only enable lame presets if version of lame has presets in API
21990
21991 2004-08-19  Jan Schmidt  <thaytan@mad.scientist.com>
21992         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
21993         * gst/udp/gstudpsrc.h:
21994           Don't call gst_pad_push in a get function. Fixes #150449
21995
21996 2004-08-18  Wim Taymans  <wim@fluendo.com>
21997
21998         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
21999         (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
22000         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
22001         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
22002         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
22003         (gst_fdset_wait):
22004         * gst/tcp/gstfdset.h:
22005         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
22006         (gst_multifdsink_client_queue_buffer),
22007         (gst_multifdsink_handle_client_write):
22008         * gst/tcp/gstmultifdsink.h:
22009         Some extra checks in gstfdset.
22010         Only use send() when the fd is a socket. Don't try to
22011         read from write only fds.
22012
22013 2004-08-18  Wim Taymans  <wim@fluendo.com>
22014
22015         * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
22016         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
22017         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
22018         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
22019         (gst_fdset_wait):
22020         Add more locking and bounds checking.
22021
22022 2004-08-18  Wim Taymans  <wim@fluendo.com>
22023
22024         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
22025         Realloc test fdset in the lock and right before starting
22026         the poll call. Bump the limit to 4096.
22027
22028 2004-08-17  David Schleef  <ds@schleef.org>
22029
22030         * sys/sunaudio/Makefile.am:
22031         * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
22032         of rates and channels.  Make debugging less obnoxious.
22033
22034         Patch from Balamurali Viswanathan implementing a mixer for
22035         Sun audio.  (bug #144091):
22036         * sys/sunaudio/gstsunelement.c:
22037         * sys/sunaudio/gstsunelement.h:
22038         * sys/sunaudio/gstsunmixer.c:
22039         * sys/sunaudio/gstsunmixer.h:
22040
22041 2004-08-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22042
22043         * gst/audioscale/gstaudioscale.c:
22044         * gst/audioscale/gstaudioscale.h:
22045         made audioscale resample from any sample rate to any sample rate
22046
22047 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
22048
22049         * ext/libpng/gstpngdec.c:
22050           error out on unsupported types
22051
22052 2004-08-17  Iain <iaingnome@gmail.com>
22053
22054         * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
22055         mid_side and loose_mid_side properties if its a stereo stream.
22056
22057 2004-08-17  Wim Taymans  <wim@fluendo.com>
22058
22059         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
22060         (theora_get_formats), (theora_dec_src_convert),
22061         (theora_dec_sink_convert), (theora_dec_src_query),
22062         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
22063         Add a debug line.
22064
22065 2004-08-17  Wim Taymans  <wim@fluendo.com>
22066
22067         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
22068         (gst_ogg_pad_push):
22069         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
22070         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
22071         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
22072         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
22073         Mark delta units in the muxer.
22074         Try to decode the packet after an out-of-sync error from
22075         libogg.
22076
22077 2004-08-17  Wim Taymans  <wim@fluendo.com>
22078
22079         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22080         (gst_multifdsink_init), (gst_multifdsink_add),
22081         (gst_multifdsink_client_queue_buffer),
22082         (gst_multifdsink_set_property), (gst_multifdsink_get_property):
22083         * gst/tcp/gstmultifdsink.h:
22084         Added option to send a keyframe to clients as the first buffer.
22085         Make timeout property writable.
22086
22087 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
22088
22089         patch by: Wim Taymans
22090
22091         * gst/tcp/gstfdset.c:
22092         * gst/tcp/gstmultifdsink.c:
22093           fix index comparison, should include 0
22094
22095 2004-08-16  Wim Taymans  <wim@fluendo.com>
22096
22097         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
22098         (gst_fdset_add_fd), (gst_fdset_remove_fd),
22099         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
22100         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
22101         (gst_fdset_wait):
22102           copy when reallocing for poll so the select arguments don't get
22103           changed during the call
22104
22105 2004-08-16  Wim Taymans  <wim@fluendo.com>
22106
22107         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
22108         (gst_theora_enc_class_init), (theora_enc_sink_link),
22109         (theora_buffer_from_packet), (theora_enc_chain):
22110         Fix bug where buffers were not marked as keyframes
22111         correctly.
22112
22113 2004-08-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22114
22115         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
22116         (gst_lame_preset_get_type), (gst_lame_class_init):
22117         describe the enum values for vbr mode and presets more verbosely
22118
22119 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22120
22121         * ext/lame/gstlame.c: (gst_lame_mode_get_type),
22122         (gst_lame_quality_get_type), (gst_lame_padding_get_type),
22123         (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
22124         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
22125         * ext/lame/gstlame.h:
22126         add preset property to lame so it can use lame presets
22127
22128 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22129
22130         * ext/lame/gstlame.c: (gst_lame_get_property):
22131         whoops forgot break, thanks teuf
22132
22133 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22134
22135         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
22136         (gst_lame_class_init), (gst_lame_src_getcaps),
22137         (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
22138         (gst_lame_get_property), (gst_lame_setup):
22139         * ext/lame/gstlame.h:
22140         fix lame's broken vbr stuff, allow it to resample if need be, and also
22141         make xing header optional
22142
22143 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22144
22145         * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
22146         added getcaps function so samplerate doesnt get fixated to silly values
22147
22148 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22149
22150         * ext/lame/gstlame.c: (gst_lame_src_link):
22151         revert previous fix
22152
22153 2004-08-12  Johan Dahlin  <johan@gnome.org>
22154
22155         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
22156         checks. Doesn't matter what state we are in. Interfaces are a
22157         compile time thing, not runtime. It also broke the python bindings.
22158
22159 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22160
22161         * ext/lame/gstlame.c: (gst_lame_src_link):
22162         made source pad link function check if sinkpad is ok..fixes the problem
22163         where core fixates the output rate of lame stupidly
22164
22165 2004-08-12  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
22166
22167         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
22168         * sys/v4l/v4l_calls.c:
22169         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
22170           fix fixate function to handle nonsimple caps.
22171           remove bogus check in _link
22172           cleanups
22173
22174 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22175
22176         * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
22177         set default compression ratio parameter to 0.0 so bitrate parameter
22178         works :)
22179
22180 2004-08-11  David Schleef  <ds@schleef.org>
22181
22182         * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
22183
22184 2004-08-11  David Schleef  <ds@schleef.org>
22185
22186         * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
22187         before.
22188
22189 2004-08-11  David Schleef  <ds@schleef.org>
22190
22191         * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
22192
22193 2004-08-11  David Schleef  <ds@schleef.org>
22194
22195         * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
22196           license field
22197         * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
22198         * gst-libs/gst/video/gstvideosink.c: Change copyright block to
22199           LGPL.
22200         * gst/auparse/gstauparse.c: Fix plugin license field.
22201         * gst/monoscope/gstmonoscope.c: Fix plugin license field.
22202         * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
22203         * gst/rtp/gstrtp.c: Fix plugin license field.
22204
22205 2004-08-11  Wim Taymans  <wim@fluendo.com>
22206
22207         * gst/tcp/Makefile.am:
22208         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
22209         (ensure_size), (gst_fdset_new), (gst_fdset_free),
22210         (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
22211         (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
22212         (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
22213         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
22214         (gst_fdset_fd_can_write), (gst_fdset_wait):
22215         * gst/tcp/gstfdset.h:
22216         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
22217         (gst_multifdsink_class_init), (gst_multifdsink_init),
22218         (gst_multifdsink_add), (gst_multifdsink_remove),
22219         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
22220         (gst_multifdsink_remove_client_link),
22221         (gst_multifdsink_handle_client_read),
22222         (gst_multifdsink_client_queue_data),
22223         (gst_multifdsink_client_queue_caps),
22224         (gst_multifdsink_client_queue_buffer),
22225         (gst_multifdsink_handle_client_write),
22226         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
22227         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
22228         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
22229         (gst_multifdsink_close):
22230         * gst/tcp/gstmultifdsink.h:
22231         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
22232         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
22233         (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
22234         (gst_tcpserversink_close):
22235         * gst/tcp/gsttcpserversink.h:
22236         Abstracted away the select call, implemented poll (yes we ran into
22237         the 1024 limit in production).
22238
22239 2004-08-11  Thomas Vander Stichele  <thomas at apestaart dot org>
22240
22241         * gst/tcp/gsttcp.c:
22242         * gst/tcp/gsttcpplugin.c:
22243           improve debuggging, remove assert
22244
22245 2004-08-10  Wim Taymans  <wim@fluendo.com>
22246
22247         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
22248         (gst_client_status_get_type), (gst_multifdsink_class_init),
22249         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
22250         (gst_multifdsink_handle_client_read),
22251         (gst_multifdsink_handle_client_write),
22252         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
22253         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
22254         (gst_multifdsink_get_property):
22255         * gst/tcp/gstmultifdsink.h:
22256         * gst/tcp/gsttcp-marshal.list:
22257         Starting to prepare for specifying buffer time in other units
22258         than buffers. Expose remove reason in signal.
22259
22260 2004-08-10  Wim Taymans  <wim@fluendo.com>
22261
22262         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
22263         (gst_multifdsink_remove), (gst_multifdsink_clear),
22264         (gst_multifdsink_remove_client_link),
22265         (gst_multifdsink_handle_client_read),
22266         (gst_multifdsink_client_queue_data),
22267         (gst_multifdsink_client_queue_buffer),
22268         (gst_multifdsink_handle_client_write),
22269         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
22270         (gst_multifdsink_chain), (gst_multifdsink_close):
22271         * gst/tcp/gstmultifdsink.h:
22272         Added more debugging info. Changed the way clients are
22273         removed from the lists. Fixed a bug where a bad file descriptor
22274         could cause many clients to be removed.
22275
22276 2004-08-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22277
22278         * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
22279           allow all pixel-aspect-ratios, not just 1:1
22280
22281 2004-08-09  David Schleef  <ds@schleef.org>
22282
22283         * sys/glsink/ARB_multitexture.h:  Remove old files.
22284         * sys/glsink/EXT_paletted_texture.h:
22285         * sys/glsink/NV_register_combiners.h:
22286         * sys/glsink/gstgl_nvimage.c:
22287         * sys/glsink/gstgl_pdrimage.c:
22288         * sys/glsink/gstgl_rgbimage.c:
22289         * sys/glsink/gstglsink.c:
22290         * sys/glsink/gstglsink.h:
22291         * sys/glsink/gstglxwindow.c:
22292         * sys/glsink/regcomb_yuvrgb.c:
22293
22294 2004-08-09  David Schleef  <ds@schleef.org>
22295
22296         Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
22297         GL sink plugin.  (Bug #147302)
22298
22299         * configure.ac: Test for OpenGL
22300         * sys/Makefile.am: Use test for OpenGL
22301         * sys/glsink/Makefile.am:
22302         * sys/glsink/glimagesink.c: rewrite
22303         * sys/glsink/glimagesink.h: rewrite
22304
22305 2004-08-09  David Schleef  <ds@schleef.org>
22306
22307         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init):  Only allow
22308         sane framerates.
22309         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
22310         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
22311         * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
22312
22313 2004-08-09  Wim Taymans  <wim@fluendo.com>
22314
22315         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22316         (gst_multifdsink_add), (gst_multifdsink_get_stats),
22317         (gst_multifdsink_client_remove),
22318         (gst_multifdsink_handle_client_read),
22319         (gst_multifdsink_handle_client_write),
22320         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22321         Do a bit more logging, make the client_read code more robust.
22322
22323 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22324
22325         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
22326         (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
22327         (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
22328         (gst_jpegdec_init), (gst_jpegdec_chain):
22329         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
22330         (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
22331           cleanups, debugging fixes and memleak plugging
22332
22333 2004-08-09  Wim Taymans  <wim@fluendo.com>
22334
22335         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
22336         (theora_get_formats), (theora_dec_src_convert),
22337         (theora_dec_sink_convert), (theora_dec_src_query),
22338         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
22339         (theora_dec_change_state):
22340         Don't crash on missing header packets.
22341
22342 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22343
22344         * po/LINGUAS:
22345         * po/sq.po:
22346           Added Albanian translation (Laurent Dhima)
22347         * po/cs.po:
22348           updated
22349
22350 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22351
22352         * ext/lame/gstlame.c:
22353           fix/add debugging
22354
22355 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22356
22357         * sys/ximage/ximagesink.c:
22358         * sys/xvimage/xvimagesink.c:
22359           assign all TOO_LAZY's to a real category.  Thanks to Warthy Warthog.
22360
22361 2004-08-06  Wim Taymans  <wim@fluendo.com>
22362
22363         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22364         (gst_multifdsink_add), (gst_multifdsink_get_stats),
22365         (gst_multifdsink_client_remove),
22366         (gst_multifdsink_handle_client_read),
22367         (gst_multifdsink_handle_client_write),
22368         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22369         Make sure we don't try to read more from a client that what
22370         ioctl says us or we deadlock.
22371
22372 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
22373
22374         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
22375         (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
22376         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
22377           decouple running_time and n_frames so it can handle changing
22378           framerate while running
22379
22380 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
22381
22382         * po/nl.po:
22383         * po/sv.po:
22384           updated translations
22385
22386 2004-08-04  Benjamin Otte  <otte@gnome.org>
22387
22388         * gst/videotestsrc/gstvideotestsrc.c:
22389         (gst_videotestsrc_get_capslist), (generate_capslist),
22390         (plugin_init):
22391           generate the list of supported caps at startup and reuse it instead
22392           of always generating it
22393
22394 2004-07-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22395
22396         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
22397           whoops, last checkin broke normal build
22398
22399 2004-08-03  Benjamin Otte  <otte@gnome.org>
22400
22401         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
22402         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
22403         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
22404         (gst_alsa_mixer_get_option):
22405         * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
22406         (dvdnavsrc_print_event):
22407         * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
22408         * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
22409         (gst_ogg_mux_pad_unlink):
22410         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
22411         (gst_multipart_mux_pad_unlink):
22412         * gst/videofilter/gstvideobalance.c:
22413         (gst_videobalance_colorbalance_set_value):
22414         * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
22415         (gst_videomixer_pad_unlink):
22416         * po/uk.po:
22417         * sys/oss/gstossmixer.c:
22418         * sys/v4l/gstv4lcolorbalance.c:
22419         * sys/v4l/gstv4ltuner.c:
22420         * sys/v4l/v4lsrc_calls.c:
22421         * sys/v4l2/gstv4l2colorbalance.c:
22422         * sys/v4l2/gstv4l2tuner.c:
22423           compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
22424
22425 2004-08-03  Benjamin Otte  <otte@gnome.org>
22426
22427         * examples/dynparams/filter.c: (ui_control_create):
22428         * examples/gstplay/player.c: (print_tag):
22429         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
22430         * ext/gdk_pixbuf/gstgdkanimation.c:
22431         (gst_gdk_animation_iter_may_advance):
22432         * ext/jack/gstjack.c: (gst_jack_request_new_pad):
22433         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
22434         (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
22435         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
22436         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
22437         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
22438         * gst-libs/gst/media-info/media-info-test.c: (print_tag):
22439         * gst/sine/demo-dparams.c: (main):
22440         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
22441         * testsuite/alsa/formats.c: (create_pipeline):
22442         * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
22443           fixes for G_DISABLE_ASSERT and friends
22444         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
22445         (mp3_type_frame_length_from_header), (mp3_type_find),
22446         (plugin_init):
22447           require mp3 typefinding to have at least MIN_HEADERS valid headers
22448           add typefinding for AAC adts files
22449
22450 2004-08-04  Jan Schmidt  <thaytan@mad.scientist.com>
22451
22452         * sys/ximage/ximagesink.c:
22453         (gst_ximagesink_calculate_pixel_aspect_ratio):
22454         * sys/xvimage/xvimagesink.c:
22455         (gst_xvimagesink_calculate_pixel_aspect_ratio):
22456         Make sure we calculate pixel-aspect-ratio using floating point maths
22457
22458 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
22459
22460         * po/uk.po:
22461           updated translation
22462
22463 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
22464
22465         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
22466         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
22467           add debugging for display PAR calculation
22468
22469 2004-08-02  David Schleef  <ds@schleef.org>
22470
22471         * configure.ac: Fix mikmod CFLAGS.
22472
22473 2004-07-27  Benjamin Otte  <otte@gnome.org>
22474
22475         * gst/audioscale/gstaudioscale.c:
22476         - fix templates to only support S16, it's the only format that works
22477         - make caps nego code use try_set_caps_nonfixed and fixation instead
22478         of try_set_caps twice, which is not nice for autopluggers
22479         - change rank to secondary, so autopluggers can pick it up after
22480         audioconvert
22481
22482 2004-08-02  Iain <iain@prettypeople.org>
22483
22484         * gst/interleave/interleave.c (interleave_init),
22485         (interleave_request_new_pad),
22486         (interleave_pad_removed),
22487         (interleave_buffered_loop): Use the real pad count, not the artificial
22488         one.
22489
22490 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22491
22492         * configure.ac: bump nano back to development
22493
22494 === release 0.8.3 ===
22495
22496 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22497
22498         * configure.ac: releasing 0.8.3, "Water"
22499
22500 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22501
22502         * sys/xvimage/xvimagesink.c:
22503         (gst_xvimagesink_calculate_pixel_aspect_ratio),
22504         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
22505         (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
22506         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
22507         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
22508         * sys/xvimage/xvimagesink.h:
22509           apply similar PAR fixes as to ximagesink
22510
22511 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22512
22513         patch from: Benjamin Otte
22514
22515         * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
22516           add link function to lame.  Fixes #148986.
22517
22518 2004-08-02  Johan Dahlin  <johan@gnome.org>
22519
22520         * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
22521         fix debugging log
22522
22523 2004-07-30  David Schleef  <ds@schleef.org>
22524
22525         * gst/videomixer/Makefile.am: Fix things that should have been
22526         fixed in the last checkin.
22527
22528 2004-07-30  David Schleef  <ds@schleef.org>
22529
22530         * gst/multipart/Makefile.am: Fix things that should have been
22531         fixed in the last checkin.
22532
22533 2004-07-30  David Schleef  <ds@schleef.org>
22534
22535         * testsuite/multifilesink/Makefile.am: Fix unused variable.
22536
22537 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22538
22539         * configure.ac:
22540           bump nano for prerelease
22541         * po/af.po:
22542         * po/az.po:
22543         * po/cs.po:
22544         * po/en_GB.po:
22545         * po/hu.po:
22546         * po/nl.po:
22547         * po/sr.po:
22548         * po/sv.po:
22549         * po/uk.po:
22550           updates
22551
22552 2004-07-30  Wim Taymans  <wim@fluendo.com>
22553
22554         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22555         (gst_multifdsink_add), (gst_multifdsink_remove),
22556         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
22557         (gst_multifdsink_client_remove),
22558         (gst_multifdsink_handle_client_write),
22559         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22560         * gst/tcp/gstmultifdsink.h:
22561         Recover from a select with a bad file descriptor by removing
22562         the client.
22563
22564 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22565
22566         * configure.ac:
22567           fix requirement of core
22568         * gst-libs/gst/play/play.c: (gst_play_error_plugin),
22569         (gst_play_pipeline_setup):
22570           don't use colorspace element.  do use hermescolorspace element.
22571           make macro to get a colorspace element.
22572           mark strings for translation.
22573         * po/POTFILES.in:
22574           add play.c
22575         * po/af.po:
22576         * po/az.po:
22577         * po/cs.po:
22578         * po/en_GB.po:
22579         * po/hu.po:
22580         * po/nl.po:
22581         * po/sr.po:
22582         * po/sv.po:
22583         * po/uk.po:
22584           update translations
22585
22586 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22587
22588         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
22589         fix default for newmedia flag
22590
22591 2004-07-30  Wim Taymans  <wim@fluendo.com>
22592
22593         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
22594         (gst_theora_dec_init), (theora_get_formats),
22595         (theora_dec_src_convert), (theora_dec_sink_convert),
22596         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22597         (theora_dec_chain), (theora_dec_set_property),
22598         (theora_dec_get_property):
22599         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
22600         (gst_theora_enc_class_init), (gst_theora_enc_init),
22601         (theora_enc_sink_link), (theora_enc_chain),
22602         (theora_enc_set_property), (theora_enc_get_property):
22603         Added cropping option to theora decoder.
22604         Added border option to theora encoder.
22605
22606 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22607
22608         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
22609         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
22610         (gst_pngenc_set_property):
22611         * ext/libpng/gstpngenc.h:
22612         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
22613
22614 2004-07-30  Wim Taymans  <wim@fluendo.com>
22615
22616         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
22617         (theora_enc_sink_link), (theora_enc_chain),
22618         (theora_enc_set_property), (theora_enc_get_property):
22619         Fix encoding of non-multiple-of-16 video.
22620
22621 2004-07-29  David Schleef  <ds@schleef.org>
22622
22623         * configure.ac: make test for audiofile more strict
22624
22625 2004-07-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22626
22627         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
22628           give different names to typefind functions
22629
22630 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
22631
22632         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
22633         (gst_ximagesink_calculate_pixel_aspect_ratio),
22634         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
22635         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
22636         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
22637         (gst_ximagesink_get_property), (gst_ximagesink_init):
22638         * sys/ximage/ximagesink.h:
22639           allocate PAR's dynamically.
22640           use autodetected PAR if no object-set PAR is given.
22641           add workaround for directfb's X not setting physical size.
22642           fix to xvimagesink will follow tomorrow.
22643
22644 2004-07-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22645
22646         * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
22647         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
22648         (gst_shout2send_get_type), (gst_shout2send_set_clock),
22649         (gst_shout2send_class_init), (gst_shout2send_init),
22650         (set_shout_metadata), (gst_shout2send_set_metadata),
22651         (gst_shout2send_chain), (gst_shout2send_set_property),
22652         (gst_shout2send_get_property), (gst_shout2send_connect),
22653         (gst_shout2send_change_state):
22654         * ext/shout2/gstshout2.h:
22655         - fix for sending mp3 audio to icecast2 server, if pad link function not
22656         called before PAUSED state
22657         - added option to use GStreamer clock sync (as opposed to libshout's own sync)
22658         - added tagging support for mp3 audio broadcasted
22659         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
22660         debug info
22661
22662 2004-07-28  Wim Taymans  <wim@fluendo.com>
22663
22664         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
22665         (gst_ogg_demux_push):
22666         Return query failure when we don't know the length of
22667         an ogg stream insteda of returning TRUE with a bogus value.
22668
22669 2004-07-28  Wim Taymans  <wim@fluendo.com>
22670
22671         * ext/theora/theoradec.c: (theora_get_formats),
22672         (theora_dec_src_convert), (theora_dec_sink_convert),
22673         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22674         (theora_dec_chain):
22675         Don't screw up the 1 Chroma for 1 luma sample situation when we
22676         have an odd offset/width by adding a black border in those cases.
22677
22678 2004-07-28  Wim Taymans  <wim@fluendo.com>
22679
22680         * ext/theora/theoradec.c: (theora_get_formats),
22681         (theora_dec_src_convert), (theora_dec_sink_convert),
22682         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22683         (theora_dec_chain):
22684         * ext/theora/theoraenc.c: (theora_enc_sink_link):
22685         Added first attempt at cropping of the image as required by the
22686         theora spec. We need more properties in the caps (offset_x,
22687         offset_y,stride) to implement this correctly.
22688
22689 2004-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
22690
22691         * ext/dvdnav/README:
22692           Update the README to use dvddemux
22693         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
22694           Ensure getcaps returns a subset of the template caps
22695         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
22696         (gst_mpeg2subt_init):
22697           Ensure getcaps returns a subset of the template caps
22698         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
22699         (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
22700         (gst_dvd_demux_get_subpicture_stream),
22701         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
22702         * gst/mpegstream/gstdvddemux.h:
22703           Set the explicit caps on the current_video pad before pushing
22704           anything
22705         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
22706         (gst_mpeg_demux_get_audio_stream):
22707           Free caps used to gst_pad_set_explicit_caps, which takes a const
22708           GstCaps *
22709
22710 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
22711
22712         * configure.ac: update GStreamer requirement to 0.8.4 because of
22713           GstFraction.
22714
22715 2004-07-28  Wim Taymans  <wim@fluendo.com>
22716
22717         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
22718         (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
22719         Add the pad to the element after setting up the caps. This
22720         makes it a lot easier to autoplug.
22721
22722 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
22723
22724         * gst/median/gstmedian.c:
22725         * gst/mpeg2subt/gstmpeg2subt.c:
22726         * gst/mpegaudioparse/gstmpegaudioparse.c:
22727         * gst/mpegstream/gstdvddemux.c:
22728         * gst/mpegstream/gstmpegdemux.c:
22729         * gst/mpegstream/gstmpegpacketize.c:
22730         * gst/rtjpeg/gstrtjpeg.c:
22731         * gst/rtjpeg/gstrtjpegdec.c:
22732         * gst/rtjpeg/gstrtjpegenc.c:
22733         * gst/sine/gstsinesrc.c:
22734         * gst/smooth/gstsmooth.c:
22735         * gst/smpte/gstsmpte.c:
22736         * gst/smpte/gstsmpte.h:
22737         * gst/stereo/gststereo.c:
22738         * gst/videofilter/gstgamma.c:
22739         * gst/videofilter/gstvideobalance.c:
22740         * gst/videofilter/gstvideofilter.c:
22741         * gst/videofilter/gstvideoflip.c:
22742         * gst/videoscale/gstvideoscale.c:
22743         * gst/videoscale/videoscale.c:
22744         * gst/videotestsrc/gstvideotestsrc.c:
22745         * gst/videotestsrc/videotestsrc.c:
22746         * gst/wavenc/gstwavenc.c:
22747         * gst/wavparse/gstwavparse.c:
22748           fix local includes and 64 bits constants
22749
22750 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
22751
22752         * win32/gst.sln:
22753         * gst-libs/gst/*/*.vcproj:
22754         * gst/*/*.vcproj:
22755           more working plugins
22756
22757 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22758
22759         * testsuite/alsa/Makefile.am:
22760         * testsuite/alsa/srcstate.c:
22761         add test for alsasrc changing state
22762
22763 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22764
22765         * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
22766         (gst_silence_get):
22767         * gst/silence/gstsilence.h:
22768         fix silence generation for 16bit raw audio
22769
22770 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
22771
22772         * gst/matroska/matroska-demux.c:
22773         (gst_matroska_demux_parse_metadata),
22774         (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
22775         * gst/mpegaudio/common.c:
22776         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
22777         (gst_videoscale_getcaps), (gst_videoscale_link),
22778         (gst_videoscale_src_fixate), (gst_videoscale_init),
22779         (gst_videoscale_finalize):
22780         * gst/videoscale/gstvideoscale.h:
22781         * gst/videotestsrc/gstvideotestsrc.c:
22782         (gst_videotestsrc_get_capslist):
22783         * gst/wavenc/gstwavenc.c:
22784         * sys/oss/gstossmixer.c: (fill_labels):
22785         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
22786         (gst_ximagesink_handle_xevents),
22787         (gst_ximagesink_calculate_pixel_aspect_ratio),
22788         (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
22789         (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
22790         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
22791         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
22792         (gst_ximagesink_init), (gst_ximagesink_class_init):
22793         * sys/ximage/ximagesink.h:
22794         * sys/xvimage/xvimagesink.c:
22795         (gst_xvimagesink_calculate_pixel_aspect_ratio),
22796         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
22797         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
22798         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
22799         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
22800         * sys/xvimage/xvimagesink.h:
22801           first batch of pixel aspect ratio commits.
22802
22803 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
22804
22805         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22806         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
22807         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
22808           handle stride, needs work if we want to move stride handling
22809           upstream, but works correctly for our purposes.
22810
22811 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
22812
22813         * gst/videoscale/README:
22814           add testing examples
22815         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
22816         (gst_videoscale_chain):
22817         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22818         (gst_videoscale_get_size):
22819           add get_size function that handles stride like videotestsrc.
22820           fixes conversion for YUV formats for as much as I can test them.
22821
22822 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
22823
22824         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22825         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
22826         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22827         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
22828         (gst_xvimagesink_xvimage_put):
22829           further cleanups, logging, error handling and synchronizing
22830
22831 2004-07-27  Wim Taymans  <wim@fluendo.com>
22832
22833         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
22834         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
22835         (gst_videomixer_pad_set_property),
22836         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
22837         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
22838         (gst_videomixer_class_init), (gst_videomixer_init),
22839         (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
22840         (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
22841         (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
22842         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
22843         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
22844         (gst_videomixer_loop), (plugin_init):
22845         Be a nicer negotiation citizen and provide a getcaps function on
22846         the srcpad. This also fixes a crash when resizing.
22847
22848 2004-07-27  Julien MOUTTE  <julien@moutte.net>
22849
22850         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22851         (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
22852
22853 2004-07-27  Wim Taymans  <wim@fluendo.com>
22854
22855         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
22856         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
22857         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
22858         (gst_pngenc_set_property):
22859         * ext/libpng/gstpngenc.h:
22860         Added snapshot property to pngenc.
22861         removed g_print from pngdec
22862
22863 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
22864
22865         * gst/ac3parse/ac3parse.vcproj
22866         * gst/adder/adder.vcproj
22867         * gst/alpha/alpha.vcproj
22868         * gst/alpha/alphacolor.vcproj
22869         * gst/asfdemux/asf.vcproj
22870         * gst/audioconvert/audioconvert.vcproj
22871         * gst/audiorate/audiorate.vcproj
22872         * gst/audioscale/audioscale.vcproj
22873         * gst/auparse/auparse.vcproj
22874         * gst/avi/avi.vcproj
22875         * gst/cdxaparse/cdxaparse.vcproj
22876         * gst/chart/chart.vcproj
22877         * gst/colorspace/colorspace.vcproj
22878         * gst/cutter/cutter.vcproj
22879         * gst/debug/debug.vcproj
22880         * gst/debug/efence.vcproj
22881         * gst/debug/navigationtest.vcproj
22882         * gst/deinterlace/deinterlace.vcproj
22883         * gst/effectv/effectv.vcproj
22884         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
22885         * gst/filter/filter.vcproj
22886         * gst/flx/flxdec.vcproj
22887         * gst/goom/goom.vcproj
22888         * gst/interleave/interleave.vcproj
22889         * gst/law/alaw.vcproj
22890         * gst/law/mulaw.vcproj
22891         * gst/matroska/matroska.vcproj
22892         * gst/median/median.vcproj
22893         * gst/mixmatrix/mixmatrix.vcproj
22894         * gst/mpeg1sys/mpeg1systemencode.vcproj
22895         * gst/mpeg1videoparse/mp1videoparse.vcproj
22896         * gst/mpeg2sub/mpeg2subt.vcproj
22897         * gst/mpegaudio/mpegaudio.vcproj
22898         * gst/mpegaudioparse/mpegaudioparse.vcproj
22899         * gst/mpegstream/mpegstream.vcproj
22900         * gst/multifilesink/multifilesink.vcproj
22901         * gst/multipart/multipart.vcproj
22902         * gst/oneton/oneton.vcproj
22903         * gst/overlay/overlay.vcproj
22904         * gst/passthrough/passthrough.vcproj
22905         * gst/qtdemux/qtdemux.vcproj
22906         * gst/realmedia/rmdemux.vcproj
22907         * gst/rtjpeg/rtjpeg.vcproj
22908         * gst/rtp/rtp.vcproj
22909         * gst/silence/silence.vcproj
22910         * gst/sine/sinesrc.vcproj
22911         * gst/smooth/smooth.vcproj
22912         * gst/smpte/smpte.vcproj
22913         * gst/spectrum/spectrum.vcproj
22914         * gst/speed/speed.vcproj
22915         * gst/stereo/stereo.vcproj
22916         * gst/switch/switch.vcproj
22917         * gst/tags/tagedit.vcproj
22918         * gst/tcp/tcp.vcproj
22919         * gst/typefind/typefindfunctions.vcproj
22920         * gst/udp/udp.vcproj
22921         * gst/videobox/videobox.vcproj
22922         * gst/videocrop/videocrop.vcproj
22923         * gst/videodrop/videodrop.vcproj
22924         * gst/videofilter/gamma.vcproj
22925         * gst/videofilter/videobalance.vcproj
22926         * gst/videofilter/videofilter.vcproj
22927         * gst/videofilter/videoflip.vcproj
22928         * gst/videoflip/videoflip.vcproj
22929         * gst/videomixer/videomixer.vcproj
22930         * gst/videorate/videorate.vcproj
22931         * gst/videoscale/videoscale.vcproj
22932         * gst/videotestsrc/videotestsrc.vcproj
22933         * gst/virtualdub/virtualdub.vcproj
22934         * gst/volenv/volenv.vcproj
22935         * gst/volume/volume.vcproj
22936         * gst/wavenc/wavenc.vcproj
22937         * gst/wavparse/wavparse.vcproj
22938         * gst/y4m/y4menc.vcproj
22939         * gst-libs/gst/audio/audio.vcproj
22940         * gst-libs/gst/audio/audiofilter.vcproj
22941         * gst-libs/gst/colorbalance/colorbalance.vcproj
22942         * gst-libs/gst/idct/idtc.vcproj
22943         * gst-libs/gst/media-info/media-info.vcproj
22944         * gst-libs/gst/mixer/mixer.vcproj
22945         * gst-libs/gst/navigation/navigation.vcproj
22946         * gst-libs/gst/play/play.vcproj
22947         * gst-libs/gst/propertyprobe/propertyprobe.vcproj
22948         * gst-libs/gst/resample/resample.vcproj
22949         * gst-libs/gst/riff/riff.vcproj
22950         * gst-libs/gst/tuner/tuner.vcproj
22951         * gst-libs/gst/video/video.vcproj
22952         * gst-libs/gst/xoverlay/xoverlay.vcproj
22953           avoid problems with math.h, fix release dependancy
22954           rename GStreamer-0.8.lib to libgstreamer.lib
22955
22956 2004-07-27  Julien MOUTTE  <julien@moutte.net>
22957
22958         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
22959         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
22960         the atom is not available we have to unlock the mutex. Fixes #148023
22961
22962 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22963
22964         * gst-libs/gst/media-info/media-info.h:
22965           issue for a vararg macro with MSVC
22966
22967 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22968
22969         * gst/effectv/effectv.vcproj
22970         * gst-libs/gst/idct/idct.vcproj:
22971         * gst-libs/gst/media-info/media-info.vcproj:
22972         * gst-libs/gst/navigation/navigation.vcproj:
22973         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
22974         * gst-libs/gst/video/video.vcproj:
22975         * gst-libs/gst/xoverlay/xoverlay.vcproj:
22976           fixes for build problems
22977
22978 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22979
22980         * gst-libs/gst/audio/audio.def:
22981         * gst-libs/gst/audio/riff.def:
22982           add some definitions needed by plugins
22983
22984 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22985
22986         * gst/asfdemux/gstasfmux.c
22987           Fix some 64 bits constants to be glib friendly
22988
22989 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22990
22991         * gst/ac3parse/gstac3parse.c
22992         * gst/audioscale/gstaudioscale.c
22993         * gst/auparse/gstauparse.c
22994         * gst/colorspace/gstcolorspace.c
22995         * gst/colorspace/yuv2rgb.h
22996           local include fixes
22997
22998 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22999
23000         * win32/gst.sln
23001           add more plugins to the build
23002
23003 2004-07-26  Julien MOUTTE  <julien@moutte.net>
23004
23005         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
23006         (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
23007
23008 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
23009
23010         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
23011         (gst_level_set_property), (gst_level_get_property),
23012         (gst_level_base_init), (gst_level_class_init):
23013           add debugging categories.  cleanups.
23014
23015 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
23016
23017         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
23018         (gst_videoscale_planar411), (gst_videoscale_planar400),
23019         (gst_videoscale_packed422), (gst_videoscale_packed422rev),
23020         (gst_videoscale_scale_nearest_str1),
23021         (gst_videoscale_scale_nearest_str2),
23022         (gst_videoscale_scale_nearest_str4),
23023         (gst_videoscale_scale_nearest_16bit),
23024         (gst_videoscale_scale_nearest_24bit):
23025           fixed stride issues
23026           tested with 320x240 -> 321, 322, 324 x240
23027           tested with YV12, I420, YUY2, UYVY
23028           fixed packed422rev (don't think it could have worked before)
23029           by testing with UYVY
23030
23031 2004-07-26  Benjamin Otte  <otte@gnome.org>
23032
23033         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
23034         (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
23035         (plugin_init):
23036           add debugging category, add error checks like checking return values
23037           of setup calls, make sure it still works after
23038           PLAYING=>NULL=>PLAYING, fix encoding of mono streams
23039
23040 2004-07-26  Wim Taymans  <wim@fluendo.com>
23041
23042         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
23043         (gst_mpeg_demux_get_audio_stream),
23044         (gst_mpeg_demux_process_private):
23045         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
23046         Check for error codes from the negotiation functions. Make sure
23047         we really set the pad caps when a new pad is created.
23048
23049 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
23050
23051         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
23052         (gst_ffmpeg_caps_to_pix_fmt):
23053         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
23054         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23055         (gst_ffmpegcolorspace_pad_link):
23056           don't make function do two things at the same time without reason.
23057
23058 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
23059
23060         * gst/ac3parse/ac3parse.vcproj
23061         * gst/adder/adder.vcproj
23062         * gst/alpha/alpha.vcproj
23063         * gst/alpha/alphacolor.vcproj
23064         * gst/asfdemux/asf.vcproj
23065         * gst/audioconvert/audioconvert.vcproj
23066         * gst/audiorate/audiorate.vcproj
23067         * gst/audioscale/audioscale.vcproj
23068         * gst/auparse/auparse.vcproj
23069         * gst/avi/avi.vcproj
23070         * gst/cdxaparse/cdxaparse.vcproj
23071         * gst/chart/chart.vcproj
23072         * gst/colorspace/colorspace.vcproj
23073         * gst/cutter/cutter.vcproj
23074         * gst/debug/debug.vcproj
23075         * gst/debug/efence.vcproj
23076         * gst/debug/navigationtest.vcproj
23077         * gst/deinterlace/deinterlace.vcproj
23078         * gst/effectv/effectv.vcproj
23079         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
23080         * gst/filter/filter.vcproj
23081         * gst/flx/flxdec.vcproj
23082         * gst/goom/goom.vcproj
23083         * gst/interleave/interleave.vcproj
23084         * gst/law/alaw.vcproj
23085         * gst/law/mulaw.vcproj
23086         * gst/matroska/matroska.vcproj
23087         * gst/median/median.vcproj
23088         * gst/mixmatrix/mixmatrix.vcproj
23089         * gst/mpeg1sys/mpeg1systemencode.vcproj
23090         * gst/mpeg1videoparse/mp1videoparse.vcproj
23091         * gst/mpeg2sub/mpeg2subt.vcproj
23092         * gst/mpegaudio/mpegaudio.vcproj
23093         * gst/mpegaudioparse/mpegaudioparse.vcproj
23094         * gst/mpegstream/mpegstream.vcproj
23095         * gst/multifilesink/multifilesink.vcproj
23096         * gst/multipart/multipart.vcproj
23097         * gst/oneton/oneton.vcproj
23098         * gst/overlay/overlay.vcproj
23099         * gst/passthrough/passthrough.vcproj
23100         * gst/qtdemux/qtdemux.vcproj
23101         * gst/realmedia/rmdemux.vcproj
23102         * gst/rtjpeg/rtjpeg.vcproj
23103         * gst/rtp/rtp.vcproj
23104         * gst/silence/silence.vcproj
23105         * gst/sine/sinesrc.vcproj
23106         * gst/smooth/smooth.vcproj
23107         * gst/smpte/smpte.vcproj
23108         * gst/spectrum/spectrum.vcproj
23109         * gst/speed/speed.vcproj
23110         * gst/stereo/stereo.vcproj
23111         * gst/switch/switch.vcproj
23112         * gst/tags/tagedit.vcproj
23113         * gst/tcp/tcp.vcproj
23114         * gst/typefind/typefindfunctions.vcproj
23115         * gst/udp/udp.vcproj
23116         * gst/videobox/videobox.vcproj
23117         * gst/videocrop/videocrop.vcproj
23118         * gst/videodrop/videodrop.vcproj
23119         * gst/videofilter/gamma.vcproj
23120         * gst/videofilter/videobalance.vcproj
23121         * gst/videofilter/videofilter.vcproj
23122         * gst/videofilter/videoflip.vcproj
23123         * gst/videoflip/videoflip.vcproj
23124         * gst/videomixer/videomixer.vcproj
23125         * gst/videorate/videorate.vcproj
23126         * gst/videoscale/videoscale.vcproj
23127         * gst/videotestsrc/videotestsrc.vcproj
23128         * gst/virtualdub/virtualdub.vcproj
23129         * gst/volenv/volenv.vcproj
23130         * gst/volume/volume.vcproj
23131         * gst/wavenc/wavenc.vcproj
23132         * gst/wavparse/wavparse.vcproj
23133         * gst/y4m/y4menc.vcproj
23134           more plugins supported under windows
23135
23136 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
23137
23138         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
23139         (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
23140         (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
23141         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
23142         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
23143           Add debugging statements.  Use the sizes as returned by the
23144           *CreateImage calls.
23145
23146 2004-07-26  Johan Dahlin  <johan@gnome.org>
23147
23148         * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
23149         the pad is negotiated.
23150
23151         * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
23152
23153 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
23154
23155         * gst-libs/gst/colorbalance/colorbalance.vcproj:
23156         * gst-libs/gst/idct/idct.vcproj:
23157         * gst-libs/gst/media-info/media-info.vcproj:
23158         * gst-libs/gst/mixer/mixer.vcproj:
23159         * gst-libs/gst/navigation/navigation.vcproj:
23160         * gst-libs/gst/play/play.vcproj:
23161         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
23162         * gst-libs/gst/resample/resample.vcproj:
23163         * gst-libs/gst/tuner/tuner.vcproj:
23164         * gst-libs/gst/video/video.vcproj:
23165         * gst-libs/gst/xoverlay/xoverlay.vcproj:
23166           more plugins supported under windows
23167
23168 2004-07-25 Iain <iain@prettypeople.org>
23169
23170         * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
23171         pad now rather than when the pad is created because state changes wipe
23172         explicit caps (fixes #148043).
23173
23174 2004-07-25  Sebastien Cote  <sc5@hermes.usherb.ca>
23175
23176         reviewed by Benjamin Otte  <otte@gnome.org>
23177
23178         * ext/mad/gstmad.c:
23179           fix mad plugin crashing on Sun (fixes #148289)
23180
23181 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
23182
23183         * gst/avi/avi.def:
23184         * gst/avi/avi.vcproj:
23185         * gst/matroska/matroska.def:
23186         * gst/matroska/matroska.vcproj:
23187           remove unused .def files
23188
23189 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
23190
23191         * gst-libs/gst/audio/gstaudiofilter.c:
23192           Clean the local include
23193
23194 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
23195
23196         * win32/gst.sln:
23197         * gst-libs/gst/audio/audio.def:
23198         * gst-libs/gst/audio/audio.vcproj:
23199         * gst-libs/gst/audio/audiofilter.vcproj:
23200         * gst-libs/gst/audio/riff.def:
23201         * gst-libs/gst/audio/riff.vcproj:
23202         * gst-libs/gst/gst-libs.def:
23203         * gst-libs/gst/gst-libs.vcproj:
23204         * gst/avi/avi.vcproj:
23205         * gst/avi/avi.vcproj:
23206           Copy the files where needed after building, cleaner projects
23207
23208 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
23209
23210         * gst/matroska/ebml-write.c:
23211           Fix some 64 bits constants to be glib friendly
23212
23213 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
23214
23215         * win32/gst.sln:
23216         * gst-libs/gst/gst-libs.def:
23217         * gst-libs/gst/gst-libs.vcproj:
23218         * gst/matroska/matroska.def:
23219         * gst/matroska/matroska.vcproj:
23220           Add the preliminary canvas to build plugins on Win32
23221
23222 2004-07-23  Benjamin Otte  <otte@gnome.org>
23223
23224         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
23225           don't enfore negotiation from source side, it breaks
23226           sinesrc ! audioconvert ! osssink
23227
23228 2004-07-22  David Schleef  <ds@schleef.org>
23229
23230         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
23231         for ELF files, since they can easily be recognized as audio/mpeg.
23232         (bug #147441)
23233
23234 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
23235
23236         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
23237         (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
23238         (gst_videoscale_scale_nearest_24bit),
23239         (gst_videoscale_scale_nearest_16bit):
23240           fix 16bit and 24bit for stride (24bit might need testing)
23241           don't pretend we do more than one algorithm
23242
23243 2004-07-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
23244
23245         * configure.ac:
23246         * gst/Makefile.am:
23247         * gst/multifilesink/Makefile.am:
23248         * gst/multifilesink/gstmultifilesink.c:
23249         (gst_multifilesink_get_formats),
23250         (gst_multifilesink_get_query_types), (_do_init),
23251         (gst_multifilesink_base_init), (gst_multifilesink_class_init),
23252         (gst_multifilesink_init), (gst_multifilesink_dispose),
23253         (gst_multifilesink_set_location), (gst_multifilesink_set_property),
23254         (gst_multifilesink_get_property), (gst_multifilesink_open_file),
23255         (gst_multifilesink_close_file), (gst_multifilesink_next_file),
23256         (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
23257         (gst_multifilesink_chain), (gst_multifilesink_change_state),
23258         (gst_multifilesink_uri_get_type),
23259         (gst_multifilesink_uri_get_protocols),
23260         (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
23261         (gst_multifilesink_uri_handler_init), (plugin_init):
23262         * gst/multifilesink/gstmultifilesink.h:
23263         * testsuite/Makefile.am:
23264         * testsuite/multifilesink/Makefile.am:
23265         * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
23266         (gst_newmedia_class_init), (gst_newmedia_init),
23267         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
23268         (newfile_signal), (test_signal), (main):
23269         multifilesink plugin for creating new files every time a new media
23270         discontinuity event occurs
23271
23272 2004-07-22  Wim Taymans  <wim@fluendo.com>
23273
23274         * gst/alpha/Makefile.am:
23275         * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
23276         (gst_alpha_color_base_init), (gst_alpha_color_class_init),
23277         (gst_alpha_color_init), (gst_alpha_color_set_property),
23278         (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
23279         (transform), (gst_alpha_color_chain),
23280         (gst_alpha_color_change_state), (plugin_init):
23281         Stupid plugin to to RGBA to AYUV conversion because none of
23282         the colorspace plugins can handle that yet.
23283
23284 2004-07-22  Wim Taymans  <wim@fluendo.com>
23285
23286         * examples/seeking/seek.c: (update_scale), (main):
23287         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23288         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
23289         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
23290         (gst_decode_bin_init), (gst_decode_bin_dispose),
23291         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23292         (no_more_pads), (close_link), (type_found),
23293         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23294         (plugin_init):
23295         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23296         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23297         (gst_play_base_bin_dispose), (queue_overrun),
23298         (gen_preroll_element), (remove_prerolls), (unknown_type),
23299         (no_more_pads), (new_stream), (setup_source),
23300         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
23301         (play_base_eos), (gst_play_base_bin_change_state),
23302         (gst_play_base_bin_add_element),
23303         (gst_play_base_bin_remove_element),
23304         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23305         (gst_play_base_bin_unlink_stream),
23306         (gst_play_base_bin_get_streaminfo):
23307         * gst/playback/gstplaybin.c: (gen_video_element),
23308         (gen_audio_element):
23309         * gst/playback/gststreaminfo.h:
23310         More playback updates, attempt to fix things after the state change
23311         breakage.
23312
23313 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
23314
23315         * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
23316         (gst_videoscale_scale_nearest_16bit):
23317           comment algorithm
23318
23319 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
23320
23321         * gst/videotestsrc/gstvideotestsrc.c:
23322         (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
23323         (gst_videotestsrc_init), (gst_videotestsrc_get),
23324         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
23325         (gst_videotestsrc_get_property):
23326         * gst/videotestsrc/gstvideotestsrc.h:
23327         * gst/videotestsrc/videotestsrc.c:
23328         * gst/videotestsrc/videotestsrc.h:
23329           cleanup and commenting
23330
23331 2004-07-21  Wim Taymans  <wim@fluendo.com>
23332
23333         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
23334         (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
23335         (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
23336         (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
23337         (_find_chain_get_unknown_part), (_find_streams_check),
23338         (gst_ogg_demux_push), (gst_ogg_pad_push):
23339         * ext/theora/theoradec.c: (theora_get_formats),
23340         (theora_dec_src_convert), (theora_dec_sink_convert),
23341         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
23342         (theora_dec_chain):
23343         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
23344         (vorbis_dec_convert), (vorbis_dec_src_query),
23345         (vorbis_dec_src_event), (vorbis_dec_event):
23346         More seeking fixes, oggdemux now supports seeking to time and
23347         uses the downstream element to convert granulepos to time.
23348         Seeking in theora-only ogg files now works.
23349
23350 2004-07-21  Wim Taymans  <wim@fluendo.com>
23351
23352         * ext/theora/theoradec.c: (gst_theora_dec_init),
23353         (theora_get_formats), (theora_get_event_masks),
23354         (theora_get_query_types), (theora_dec_src_convert),
23355         (theora_dec_sink_convert), (theora_dec_src_query),
23356         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
23357         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
23358         (vorbis_get_event_masks), (vorbis_get_query_types),
23359         (gst_vorbis_dec_init), (vorbis_dec_convert),
23360         (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
23361         Added query/convert/formats functions to vorbis and theora decoders
23362         so that the outside world can use them too. Fixed seeking on an
23363         ogg/theora/vorbis file by disabling the seeking seeking on the
23364         theora srcpad.
23365
23366 2004-07-21  Julien MOUTTE  <julien@moutte.net>
23367
23368         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
23369         (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
23370         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
23371         images creation for both elements. We don't create the image on caps
23372         nego or renego, we just destroy the internal one if present if it does
23373         not match the needs. The chain function takes care of creating a new
23374         image when needed.
23375         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
23376         (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
23377         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
23378         (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
23379         the image format information. The buffer pool checks for the context
23380         image format and discard images with different formats.
23381         * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
23382
23383 2004-07-21  Thomas Vander Stichele  <thomas at apestaart dot org>
23384
23385         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23386         (gst_ffmpegcolorspace_chain):
23387           no point in doing any chaining if the pad we want to push from
23388           isn't usable.
23389
23390 2004-07-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23391
23392         * gst-libs/gst/riff/riff-media.c:
23393         (gst_riff_create_audio_caps_with_data):
23394           Fix double end-to-native symbol conversion (#148021).
23395
23396 2004-07-20  David Schleef  <ds@schleef.org>
23397
23398         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
23399         Don't use an Atom that doesn't exist.
23400
23401 2004-07-20  Wim Taymans  <wim@fluendo.com>
23402
23403         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23404         (gst_multifdsink_add), (gst_multifdsink_get_stats),
23405         (gst_multifdsink_client_remove),
23406         (gst_multifdsink_handle_client_write),
23407         (gst_multifdsink_queue_buffer):
23408         * gst/tcp/gstmultifdsink.h:
23409         More multifdsink stats. Avoid deadlock by releasing locks
23410         before sending out a signal.
23411
23412 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
23413
23414         * po/LINGUAS:
23415         * po/hu.po:
23416           added Hungarian translation (Laszlo Dvornik)
23417
23418 2004-07-20  Wim Taymans  <wim@fluendo.com>
23419
23420         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23421         (gst_multifdsink_add), (gst_multifdsink_client_remove),
23422         (gst_multifdsink_handle_client_write),
23423         (gst_multifdsink_queue_buffer):
23424         * gst/tcp/gsttcp-marshal.list:
23425         Fixed the stupid marshal definition.
23426
23427 2004-07-20  Wim Taymans  <wim@fluendo.com>
23428
23429         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23430         (gst_multifdsink_init), (gst_multifdsink_add),
23431         (gst_multifdsink_client_remove),
23432         (gst_multifdsink_handle_client_write),
23433         (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
23434         (gst_multifdsink_set_property), (gst_multifdsink_get_property),
23435         (gst_multifdsink_init_send):
23436         * gst/tcp/gstmultifdsink.h:
23437         Added more stats, added timeout for a client, fixed some typos
23438         and added some comments.
23439
23440 2004-07-20  Wim Taymans  <wim@fluendo.com>
23441
23442         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23443         (gst_multifdsink_add), (gst_multifdsink_get_stats),
23444         (gst_multifdsink_client_remove),
23445         (gst_multifdsink_handle_client_write):
23446         * gst/tcp/gstmultifdsink.h:
23447         * gst/tcp/gsttcp-marshal.list:
23448         Added get_stats method that returns a GValueArray of
23449         stats values.
23450
23451 2004-07-19  Benjamin Otte  <otte@gnome.org>
23452
23453         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
23454           make sure longname, description and author are valid UTF-8
23455
23456 2004-07-19  Thomas Vander Stichele  <thomas at apestaart dot org>
23457
23458         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
23459         (gst_ximagesink_set_property):
23460         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
23461         (gst_xvimagesink_set_property):
23462           make sure SYNCHRONOUS is respected after getting the X context
23463
23464 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
23465
23466         * gst/matroska/matroska-demux.c:
23467         (gst_matroska_demux_handle_src_event),
23468         (gst_matroska_demux_parse_blockgroup):
23469         * gst/matroska/matroska-ids.h:
23470           add BlockReference tag and ignore it to clear out log.
23471           ignore NAVIGATION events to clear out log.
23472
23473 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
23474
23475         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
23476         (gst_matroska_demux_add_stream):
23477         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
23478           add debug categories
23479
23480 2004-07-16  Wim Taymans  <wim@fluendo.com>
23481
23482         * ext/libpng/Makefile.am:
23483         * ext/libpng/gstpng.c: (plugin_init):
23484         * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
23485         (gst_pngdec_get_type), (gst_pngdec_base_init),
23486         (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
23487         (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
23488         * ext/libpng/gstpngdec.h:
23489         Added png decoder.
23490
23491 2004-07-16  Julien MOUTTE  <julien@moutte.net>
23492
23493         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
23494         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
23495         (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
23496         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
23497         (gst_ximagesink_buffer_alloc):
23498         * sys/ximage/ximagesink.h:
23499         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
23500         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
23501         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
23502         (gst_xvimagesink_buffer_alloc):
23503         * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
23504         again. Using internal data pointer of the x(v)image to store image's
23505         data to be coherent with the buffer alloc mechanism. Investigated the
23506         image destruction code to be sure that everything gets freed correctly.
23507
23508 2004-07-16  Wim Taymans  <wim@fluendo.com>
23509
23510         * gst-libs/gst/riff/riff-read.c:
23511         (gst_riff_read_strf_vids_with_data),
23512         (gst_riff_read_strf_auds_with_data):
23513         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
23514         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
23515         Make sure we don't create 0 sized subbuffers in riff-read.
23516         Signal the no more pads signal after reading the avi header.
23517
23518 2004-07-16  Wim Taymans  <wim@fluendo.com>
23519
23520         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23521         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
23522         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
23523         (gst_decode_bin_init), (gst_decode_bin_dispose),
23524         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23525         (no_more_pads), (close_link), (type_found),
23526         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23527         (gst_decode_bin_change_state), (plugin_init):
23528         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23529         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23530         (gst_play_base_bin_dispose), (queue_overrun),
23531         (gen_preroll_element), (remove_prerolls), (unknown_type),
23532         (no_more_pads), (new_stream), (setup_source),
23533         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
23534         (play_base_eos), (gst_play_base_bin_change_state),
23535         (gst_play_base_bin_add_element),
23536         (gst_play_base_bin_remove_element),
23537         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23538         (gst_play_base_bin_unlink_stream),
23539         (gst_play_base_bin_get_streaminfo):
23540         * gst/playback/gstplaybasebin.h:
23541         Better error recovery. Added configurable preroll queue size. Faster
23542         detection of no-more-pads.
23543
23544 2004-07-16  Wim Taymans  <wim@fluendo.com>
23545
23546         * gst-libs/gst/video/video.h:
23547         Added 32 bits RGBA. Not sure if we should use another mime-type
23548         for alpha rgb. Currently the presence of the alpha_mask property
23549         signals an alpha channel.
23550
23551 2004-07-16  Wim Taymans  <wim@fluendo.com>
23552
23553         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
23554         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
23555         FPS seems to be 0.0 to MAX everywhere else.
23556
23557 2004-07-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23558
23559         * gst-libs/gst/riff/riff-media.c:
23560         (gst_riff_create_video_caps_with_data):
23561           mp42/mp43 (no caps) exist too.
23562         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
23563           Set pixel_width/height; we've got them in-caps.
23564         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
23565         * gst/wavparse/gstwavparse.c: (plugin_init):
23566           Both are valid primary.
23567         * sys/oss/gstossmixer.c:
23568           Remove i18n hack and enable translations.
23569
23570 2004-07-15  Benjamin Otte  <otte@gnome.org>
23571
23572         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
23573         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
23574           fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
23575
23576 2004-07-15  Benjamin Otte  <otte@gnome.org>
23577
23578         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
23579         (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
23580         (gst_alsa_close_audio):
23581           disable some of the debugging code for now. Writing debugging to a
23582           buffer is broken in current alsalib releases.
23583
23584 2004-07-12  Benjamin Otte  <otte@gnome.org>
23585
23586         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
23587           use bufferpools
23588
23589 2004-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
23590
23591         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
23592         (theora_dec_src_query), (theora_dec_event):
23593         * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
23594           add debugging categories.  Remove \n's.
23595
23596 2004-07-13  Johan Dahlin  <johan@gnome.org>
23597
23598         * gst/playback/gstplaybin.c (gst_play_bin_set_property)
23599         (gst_play_bin_get_property): Impl.
23600
23601 2004-07-13  Wim Taymans  <wim@fluendo.com>
23602
23603         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
23604         When trying to find the stream length, seek back N pages
23605         instead of just one, where N is the number of streams in
23606         the current chain.
23607
23608 2004-07-13  Wim Taymans  <wim@fluendo.com>
23609
23610         * gst-libs/gst/riff/riff-media.c:
23611         (gst_riff_create_audio_caps_with_data),
23612         (gst_riff_create_audio_caps),
23613         (gst_riff_create_audio_template_caps):
23614         * gst-libs/gst/riff/riff-media.h:
23615         * gst-libs/gst/riff/riff-read.c:
23616         (gst_riff_read_strf_vids_with_data),
23617         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
23618         * gst-libs/gst/riff/riff-read.h:
23619         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
23620         (gst_avi_demux_add_stream):
23621         Set codec_data on caps for avidemuxer.
23622
23623 2004-07-12  David Schleef  <ds@schleef.org>
23624
23625         * configure.ac: Fix test for Objective C
23626
23627 2004-07-12  Jan Schmidt  <thaytan@mad.scientist.com>
23628         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
23629         (gst_gdk_pixbuf_chain):
23630           Add svg and pcx to template caps, and ensure that getcaps returns a
23631           subset of the template caps.
23632           Copy each row manually for output, as gdkpixbuf may pad the
23633           rowstride to a 32-bit word boundary.
23634
23635 2004-07-12  Wim Taymans  <wim@fluendo.com>
23636
23637         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
23638         (gst_riff_create_video_template_caps):
23639         Fix the template caps to include some more media types.
23640
23641 2004-07-12  Wim Taymans  <wim@fluendo.com>
23642
23643         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23644         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23645         (compare_ranks), (print_feature), (gst_decode_bin_init),
23646         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23647         (try_to_link_1), (new_pad), (close_link), (type_found),
23648         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23649         (gst_decode_bin_change_state), (plugin_init):
23650         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23651         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23652         (gst_play_base_bin_dispose), (queue_overrun),
23653         (gen_preroll_element), (remove_prerolls), (no_more_pads),
23654         (new_stream), (setup_source), (gst_play_base_bin_set_property),
23655         (gst_play_base_bin_get_property), (play_base_eos),
23656         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
23657         (gst_play_base_bin_remove_element),
23658         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23659         (gst_play_base_bin_unlink_stream),
23660         (gst_play_base_bin_get_streaminfo):
23661         * gst/playback/gstplaybasebin.h:
23662         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23663         (gst_play_bin_class_init), (gst_play_bin_init),
23664         (gst_play_bin_dispose), (gst_play_bin_set_property),
23665         (gst_play_bin_get_property), (gen_video_element),
23666         (gen_audio_element), (remove_sinks), (setup_sinks),
23667         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
23668         (gst_play_bin_send_event), (gst_play_bin_get_formats),
23669         (gst_play_bin_convert), (gst_play_bin_get_query_types),
23670         (gst_play_bin_query), (plugin_init):
23671         * gst/playback/test4.c: (main):
23672         More fixes on reusing of the element.
23673
23674 2004-07-11  Benjamin Otte  <otte@gnome.org>
23675
23676         * ext/mad/gstmad.c: (normal_seek):
23677           allow seeking for other methods than just SET
23678
23679 2004-07-11  Andy Wingo  <wingo@pobox.com>
23680
23681         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
23682         float, "any" caps -> buffer_frames=[0,MAX].
23683
23684         * gst/interleave/interleave.c (interleave_getcaps): Seems the core
23685         doesn't intersect our caps with the template any more. Do it
23686         ourselves.
23687         (interleave_buffered_loop): Use g_newa instead of malloc/free.
23688
23689 2004-07-09  Wim Taymans  <wim@fluendo.com>
23690
23691         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23692         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23693         (compare_ranks), (print_feature), (gst_decode_bin_init),
23694         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23695         (try_to_link_1), (new_pad), (close_link), (type_found),
23696         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23697         (gst_decode_bin_change_state), (plugin_init):
23698         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23699         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23700         (gst_play_base_bin_dispose), (queue_overrun),
23701         (gen_preroll_element), (remove_prerolls), (no_more_pads),
23702         (new_stream), (setup_source), (gst_play_base_bin_set_property),
23703         (gst_play_base_bin_get_property), (play_base_eos),
23704         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
23705         (gst_play_base_bin_remove_element),
23706         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23707         (gst_play_base_bin_unlink_stream),
23708         (gst_play_base_bin_get_streaminfo):
23709         * gst/playback/gstplaybasebin.h:
23710         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23711         (gst_play_bin_class_init), (gst_play_bin_init),
23712         (gst_play_bin_dispose), (gst_play_bin_set_property),
23713         (gst_play_bin_get_property), (gen_video_element),
23714         (gen_audio_element), (remove_sinks), (setup_sinks),
23715         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
23716         (gst_play_bin_send_event), (gst_play_bin_get_formats),
23717         (gst_play_bin_convert), (gst_play_bin_get_query_types),
23718         (gst_play_bin_query), (plugin_init):
23719         * gst/playback/test4.c: (main):
23720         Work on object reuse and seeking.
23721
23722 2004-07-09  Wim Taymans  <wim@fluendo.com>
23723
23724         * examples/seeking/seek.c: (iterate):
23725         Don't consume all CPU in the idle loop.
23726
23727 2004-07-09  Wim Taymans  <wim@fluendo.com>
23728
23729         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
23730         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
23731         Add pad to element *after* setting the pad functions so that
23732         the scheduler can use the correct ones.
23733
23734 2004-07-09  Wim Taymans  <wim@fluendo.com>
23735
23736         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
23737         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
23738         Sync to keyframe after seek
23739
23740 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23741
23742         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
23743         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
23744         (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
23745         * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
23746         * ext/libvisual/visual.c: (gst_visual_change_state):
23747         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
23748         * ext/theora/theoradec.c: (theora_dec_change_state):
23749         * ext/theora/theoraenc.c: (theora_enc_change_state):
23750         * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
23751         * gst-libs/gst/navigation/navigation.c:
23752         * gst/adder/gstadder.c: (gst_adder_change_state):
23753         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
23754         (gst_audio_convert_get_buffer):
23755         * gst/multipart/multipartdemux.c:
23756         (gst_multipart_demux_change_state):
23757         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
23758         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
23759         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
23760         * gst/videoscale/gstvideoscale.c:
23761         (gst_videoscale_handle_src_event):
23762         * gst/volume/gstvolume.c: (volume_chain_int16):
23763           don't assert in state change, this should be done by the base
23764           GstElement class.
23765           various debugging fixes.
23766
23767 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23768
23769         * configure.ac:
23770         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
23771         (gst_play_dispose), (gst_play_set_location),
23772         (gst_play_set_data_src), (gst_play_set_video_sink),
23773         (gst_play_set_audio_sink), (gst_play_set_visualization),
23774         (gst_play_connect_visualization), (gst_play_get_sink_element),
23775         (gst_play_get_all_by_interface):
23776         * gst-libs/gst/play/play.h:
23777           add new method to get elements implementing an interface.
23778           add various error logging
23779
23780 2004-07-08  Wim Taymans  <wim@fluendo.com>
23781
23782         * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
23783         (make_mpeg_pipeline), (make_mpegnt_pipeline),
23784         (make_playerbin_pipeline), (query_durations_elems),
23785         (query_durations_pads), (query_positions_elems),
23786         (query_positions_pads), (update_scale), (iterate), (stop_seek),
23787         (main):
23788         Added playbin seeking example.
23789
23790 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23791
23792         * gst-libs/gst/play/play.c: (gst_play_set_location),
23793         (gst_play_set_data_src), (gst_play_set_video_sink),
23794         (gst_play_set_audio_sink), (gst_play_set_visualization),
23795         (gst_play_connect_visualization), (gst_play_get_framerate):
23796           use a macro to look up elements from hash table
23797
23798 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23799
23800         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
23801         (gst_play_get_length_callback), (gst_play_set_location),
23802         (gst_play_seek_to_time), (gst_play_set_data_src),
23803         (gst_play_set_video_sink), (gst_play_set_audio_sink),
23804         (gst_play_set_visualization), (gst_play_connect_visualization),
23805         (gst_play_get_sink_element):
23806         - add debugging info
23807         - fix looking up sink elements by iterating over complete caps
23808         - put everything except for source and autoplugger in a complete bin
23809
23810 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23811
23812         * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
23813         * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
23814         (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
23815         (gst_alsa_sink_write), (gst_alsa_sink_loop):
23816         * ext/alsa/gstalsasink.h:
23817         - add debugging info
23818         - clean up schizophrenia of data/buffer/event
23819         - fix double event unref error
23820
23821 2004-07-08  Wim Taymans  <wim@fluendo.com>
23822
23823         * gst/playback/Makefile.am:
23824         Add headers to noinst
23825
23826 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23827
23828         * tools/gst-launch-ext-m.m:
23829         * tools/gst-launch-ext.1.in:
23830           convert to the third millenium
23831
23832 2004-07-07  David Schleef  <ds@schleef.org>
23833
23834         * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
23835
23836 2004-07-07  Wim Taymans  <wim@fluendo.com>
23837
23838         * gst/playback/Makefile.am:
23839         * gst/playback/README:
23840         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23841         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23842         (compare_ranks), (print_feature), (gst_decode_bin_init),
23843         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23844         (try_to_link_1), (new_pad), (close_link), (type_found),
23845         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23846         (plugin_init):
23847         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23848         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23849         (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
23850         (gen_preroll_element), (no_more_pads), (new_stream),
23851         (setup_source), (gst_play_base_bin_set_property),
23852         (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
23853         (gst_play_base_bin_add_element),
23854         (gst_play_base_bin_remove_element),
23855         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23856         (gst_play_base_bin_unlink_stream),
23857         (gst_play_base_bin_get_streaminfo):
23858         * gst/playback/gstplaybasebin.h:
23859         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23860         (gst_play_bin_class_init), (gst_play_bin_init),
23861         (gst_play_bin_dispose), (gst_play_bin_set_property),
23862         (gst_play_bin_get_property), (gen_video_element),
23863         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
23864         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
23865         (gst_play_bin_get_formats), (gst_play_bin_convert),
23866         (gst_play_bin_get_query_types), (gst_play_bin_query),
23867         (plugin_init):
23868         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
23869         (gst_stream_info_get_type), (gst_stream_info_class_init),
23870         (gst_stream_info_init), (gst_stream_info_new),
23871         (gst_stream_info_dispose), (gst_stream_info_set_property),
23872         (gst_stream_info_get_property):
23873         * gst/playback/gststreaminfo.h:
23874         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
23875         (main):
23876         * gst/playback/test2.c: (main):
23877         * gst/playback/test3.c: (update_scale), (main):
23878         More playbin fixes. Added README. Do better element filtering.
23879         Added base class to preroll media. Added test apps.
23880
23881 2004-07-07  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23882
23883         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
23884         * ext/mpeg2dec/gstmpeg2dec.h:
23885           various debugging improvements.  Reset stream to next picture
23886           instead of sequence header, otherwise seeks cannot work.
23887
23888 2004-07-07  Wim Taymans  <wim@fluendo.com>
23889
23890         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
23891         (gst_video_box_class_init), (gst_video_box_set_property),
23892         (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
23893         Use pad_alloc where possible.
23894
23895 2004-07-07  Wim Taymans  <wim@fluendo.com>
23896
23897         * sys/oss/gstosselement.c: (gst_osselement_reset),
23898         (gst_osselement_parse_caps):
23899         * sys/oss/gstosselement.h:
23900         * sys/oss/gstosssrc.c: (gst_osssrc_get):
23901         Fix offset on osssrc.
23902
23903 2004-07-07  Wim Taymans  <wim@fluendo.com>
23904
23905         * ext/theora/theora.c: (plugin_init):
23906         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
23907         (theora_dec_src_query), (theora_dec_chain):
23908         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
23909         (theora_enc_sink_link), (theora_buffer_from_packet),
23910         (theora_push_packet), (theora_enc_chain):
23911         Fix theora granulepos calculation.
23912         Fix overflow in duration/position calculation.
23913         Bump rank to PRIMARY for theoradec.
23914         Use granulepos of last packet to calculate position.
23915         Set keyframe flag on buffers when needed.
23916
23917 2004-07-06  David Schleef  <ds@schleef.org>
23918
23919         * gst/playback/Makefile.am: 'test' in bin_PROGRAMS?  Are you
23920         serious?  (Fixed, obviously.)
23921
23922 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
23923
23924         * po/LINGUAS:
23925         * po/cs.po:
23926           added Czech translation (Miloslav Trmac)
23927
23928 2004-07-05  Wim Taymans  <wim@fluendo.com>
23929
23930         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23931         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23932         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
23933         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23934         (close_link), (type_found), (gst_decode_bin_set_property),
23935         (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
23936         (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
23937         (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
23938         (gst_decode_bin_query), (plugin_init):
23939         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23940         (gst_play_bin_class_init), (gst_play_bin_init),
23941         (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
23942         (get_video_element), (new_pad), (setup_source),
23943         (gst_play_bin_set_property), (gst_play_bin_get_property),
23944         (gst_play_bin_change_state), (gst_play_bin_add_element),
23945         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
23946         (gst_play_bin_send_event), (gst_play_bin_get_formats),
23947         (gst_play_bin_convert), (gst_play_bin_get_query_types),
23948         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
23949         * gst/playback/test.c: (main):
23950         More fixes, cleaned up playbin, make it use decodebin. Added
23951         threaded property to playbin.
23952
23953 2004-07-05  Wim Taymans  <wim@fluendo.com>
23954
23955         * configure.ac:
23956         * gst/playback/Makefile.am:
23957         * gst/playback/decodetest.c: (main):
23958         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23959         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23960         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
23961         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23962         (close_link), (type_found), (gst_decode_bin_set_property),
23963         (gst_decode_bin_get_property), (gst_decode_bin_change_state),
23964         (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
23965         (gst_decode_bin_get_formats), (gst_decode_bin_convert),
23966         (gst_decode_bin_get_query_types), (gst_decode_bin_query),
23967         (plugin_init):
23968         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23969         (gst_play_bin_class_init), (gst_play_bin_init),
23970         (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
23971         (collect_sink_pads), (find_compatibles), (close_pad_link),
23972         (try_to_link_1), (new_pad), (close_link), (type_found),
23973         (setup_source), (gst_play_bin_set_property),
23974         (gst_play_bin_get_property), (gst_play_bin_factory_filter),
23975         (compare_ranks), (gst_play_bin_collect_factories),
23976         (gst_play_bin_change_state), (gst_play_bin_add_element),
23977         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
23978         (gst_play_bin_send_event), (gst_play_bin_get_formats),
23979         (gst_play_bin_convert), (gst_play_bin_get_query_types),
23980         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
23981         * gst/playback/test.c: (main):
23982         Added some playback helper elements and some test apps, very alpha
23983         still.
23984
23985 2004-07-04  Benjamin Otte  <otte@gnome.org>
23986
23987         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
23988           only restart audio when we indeed have an xrun to fix repeated
23989           xruns. Fix suggested by Giuliano Pochini.
23990
23991 2004-07-03  David Schleef  <ds@schleef.org>
23992
23993         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
23994         call to gst_debug_log() if debugging is disabled (bug #145118)
23995
23996 2004-07-03  Benjamin Otte  <otte@gnome.org>
23997
23998         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
23999           use our own functions for restarting the alsa device.
24000         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24001           I should apply patches myself - use MIN for the third argument, not
24002           the second, this fixes seeking
24003
24004 2004-07-02  David Schleef  <ds@schleef.org>
24005
24006         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
24007         (gst_flacdec_write):  Actually, GST_PAD_CAPS() has nothing to
24008         do with the logic.
24009
24010 2004-07-02  David Schleef  <ds@schleef.org>
24011
24012         * ext/flac/gstflacdec.c: (gst_flacdec_write):  Set duration on
24013         output buffers.  Fix logic mistake.  (bug #144866)
24014
24015 2004-07-02  David Schleef  <ds@schleef.org>
24016
24017         * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
24018         on X.  (bug #144753)
24019
24020 2004-07-02  David Schleef  <ds@schleef.org>
24021
24022         * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
24023         (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
24024         (bug #144624)
24025         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
24026         (gst_osselement_rate_probe_check): Add another workaround for
24027         buggy drivers (bug #145336)
24028
24029 2004-07-02  David Schleef  <ds@schleef.org>
24030
24031         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
24032         Most systems don't have MSG_NOSIGNAL.
24033
24034 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
24035
24036         * Makefile.am:
24037         * gst-libs/gst/colorbalance/Makefile.am:
24038         * gst-libs/gst/mixer/Makefile.am:
24039         * gst-libs/gst/play/Makefile.am:
24040         * gst-libs/gst/tuner/Makefile.am:
24041           (hopefully) fix both install and dist and make error message useful.
24042           needs testing across automakes.
24043
24044 2004-07-02  Benjamin Otte  <otte@gnome.org>
24045
24046         * ext/ogg/gstogg.c: (plugin_init):
24047           we require bytestream now
24048         * ext/ogg/gstoggdemux.c:
24049           huge diff to implement chain setup in a fast and generic way. This
24050           improves tag reading and startup of huge files (read: Theora videos)
24051           quite a bit. It probably contains bugs, too, so please test.
24052           Seeking is not improved to the fast method.
24053
24054 2004-06-29  Wim Taymans  <wim@fluendo.com>
24055
24056         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
24057         * ext/ogg/gstoggmux.c:
24058         Fix memleak in oggdemux when running unconnected pads.
24059         doc update in mux, start working on keyframe mode.
24060
24061 2004-06-29  Benjamin Otte  <otte@gnome.org>
24062
24063         * sys/oss/gstosssink.c:
24064         * sys/oss/gstosssrc.c:
24065           advertise correct template caps - we indeed do non-native endianness
24066           and 8bit audio has no endianness
24067         * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
24068         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
24069           avoid (wrong) duplications in getcaps function and return
24070           template caps
24071
24072 2004-06-29  Wim Taymans  <wim@fluendo.com>
24073
24074         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
24075         (gst_multifdsink_class_init), (gst_multifdsink_add),
24076         (gst_multifdsink_remove), (gst_multifdsink_clear),
24077         (gst_multifdsink_client_remove),
24078         (gst_multifdsink_handle_client_read),
24079         (gst_multifdsink_client_queue_data),
24080         (gst_multifdsink_client_queue_caps),
24081         (gst_multifdsink_client_queue_buffer),
24082         (gst_multifdsink_handle_client_write),
24083         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
24084         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
24085         (gst_multifdsink_init_send), (gst_multifdsink_close):
24086         Fix wrong GList iteration that could crash the server when
24087         more then 2 clients disconnect at the same time. Read all the
24088         pending commands in one batch to recover from command storms under
24089         very heavy load.
24090
24091 2004-06-28  Wim Taymans  <wim@fluendo.com>
24092
24093         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
24094         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
24095         (gst_videomixer_pad_set_property),
24096         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
24097         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
24098         (gst_videomixer_class_init), (gst_videomixer_init),
24099         (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
24100         (pad_zorder_compare), (gst_videomixer_sort_pads),
24101         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
24102         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
24103         (gst_videomixer_update_queues), (gst_videomixer_loop),
24104         (plugin_init):
24105         Avoid divide by zero, choose masterpad as the pad with the highest
24106         framerate.
24107
24108 2004-06-27  Julien Moutte  <julien@moutte.net>
24109
24110         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
24111         (gst_ximagesink_xwindow_new):
24112         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
24113         (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
24114         function directly. We might want to call it from somewhere else one day.
24115
24116 2004-06-27  Julien Moutte  <julien@moutte.net>
24117
24118         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
24119         (gst_ximagesink_xwindow_new):
24120         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
24121         (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
24122         window decorations.
24123
24124 2004-06-27  Wim Taymans  <wim@fluendo.com>
24125
24126         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
24127         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
24128         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
24129         (gst_dvdec_set_property), (gst_dvdec_get_property):
24130         * ext/dv/gstdvdec.h:
24131         Implement drop_factor property to lower the framerate with
24132         a factor.
24133
24134 2004-06-27  Thomas Vander Stichele  <thomas at apestaart dot org>
24135
24136         * gst-libs/gst/colorbalance/Makefile.am:
24137         * gst-libs/gst/mixer/Makefile.am:
24138         * gst-libs/gst/play/Makefile.am:
24139         * gst-libs/gst/tuner/Makefile.am:
24140           unbreak Company's fix that didn't install the -enum.h files
24141
24142 2004-06-27  Wim Taymans  <wim@fluendo.com>
24143
24144         * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
24145         (gst_dvdec_change_state):
24146         * ext/dv/gstdvdec.h:
24147         Fix timestamp, duration and offset of the buffers.
24148
24149 2004-06-27  Wim Taymans  <wim@fluendo.com>
24150
24151         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
24152         (gst_multifdsink_class_init), (gst_multifdsink_add),
24153         (gst_multifdsink_remove), (gst_multifdsink_clear),
24154         (gst_multifdsink_client_remove),
24155         (gst_multifdsink_handle_client_read),
24156         (gst_multifdsink_client_queue_data),
24157         (gst_multifdsink_client_queue_caps),
24158         (gst_multifdsink_client_queue_buffer),
24159         (gst_multifdsink_handle_client_write),
24160         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
24161         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
24162         (gst_multifdsink_init_send), (gst_multifdsink_close):
24163         * gst/tcp/gstmultifdsink.h:
24164         * gst/tcp/gsttcpserversink.c:
24165         (gst_tcpserversink_handle_server_read),
24166         (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
24167         More multifdsink fixes, more recovery policy fixes.
24168         Removed stupid g_print
24169
24170 2004-06-26  Wim Taymans  <wim@fluendo.com>
24171
24172         * gst/tcp/Makefile.am:
24173         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
24174         (gst_multifdsink_get_type), (gst_multifdsink_base_init),
24175         (gst_multifdsink_class_init), (gst_multifdsink_init),
24176         (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
24177         (gst_multifdsink_handle_client_read),
24178         (gst_multifdsink_client_queue_data),
24179         (gst_multifdsink_client_queue_caps),
24180         (gst_multifdsink_client_queue_buffer),
24181         (gst_multifdsink_handle_client_write),
24182         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
24183         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
24184         (gst_multifdsink_chain), (gst_multifdsink_set_property),
24185         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
24186         (gst_multifdsink_close), (gst_multifdsink_change_state):
24187         * gst/tcp/gstmultifdsink.h:
24188         * gst/tcp/gsttcpplugin.c: (plugin_init):
24189         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
24190         (gst_tcpserversink_class_init), (gst_tcpserversink_init),
24191         (gst_tcpserversink_handle_server_read),
24192         (gst_tcpserversink_handle_select),
24193         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
24194         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
24195         * gst/tcp/gsttcpserversink.h:
24196         Added multifdsink, made tcpserversink a subclass of fdsink, removed
24197         one of the locks, added recovery policy to multifdsink.
24198
24199 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
24200
24201         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
24202           fix decision for when getting frames with same timestamp
24203         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
24204         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24205         (gst_v4lsrc_get_property):
24206         * sys/v4l/gstv4lsrc.h:
24207           add latency offset property
24208
24209 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
24210
24211         * gst/videorate/gstvideorate.c: (gst_videorate_chain),
24212         (plugin_init):
24213           fix debugging. add category.
24214
24215 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
24216
24217         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
24218           fix wrong offsets
24219
24220 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
24221
24222         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
24223         (gst_alsa_src_get_time), (gst_alsa_src_loop),
24224         (gst_alsa_src_change_state):
24225           return a time that is in sync with the element's processing
24226
24227 2004-06-25  Wim Taymans  <wim@fluendo.com>
24228
24229         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
24230         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
24231         (gst_tcpserversink_client_remove),
24232         (gst_tcpserversink_handle_client_read),
24233         (gst_tcpserversink_client_queue_data),
24234         (gst_tcpserversink_client_queue_caps),
24235         (gst_tcpserversink_client_queue_buffer),
24236         (gst_tcpserversink_handle_client_write),
24237         (gst_tcpserversink_queue_buffer),
24238         (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
24239         (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
24240         (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
24241         (gst_tcpserversink_close):
24242         * gst/tcp/gsttcpserversink.h:
24243         Serversink rewrite. Really do non blocking writes to clients and
24244         maintain an internal queue to handle slower clients while not
24245         disturbing fast clients.
24246
24247 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
24248
24249         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24250           better debug, don't override OFFSET and OFFSET_END
24251
24252 2004-06-25  Iain <iain@prettypeople.org>
24253
24254         * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
24255         name=source for the wavparse pipeline.
24256
24257 2004-06-24  Johan Dahlin  <johan@gnome.org>
24258
24259         * ext/theora/theoraenc.c (theora_enc_chain): Call
24260         gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
24261         streamheader caps are set correctly.
24262
24263 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
24264
24265         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
24266         (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
24267           respect minimum bitrate; same could be done for max bitrate
24268
24269 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
24270
24271         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
24272         (gst_vorbisenc_setup):
24273           fix sample rate range
24274
24275 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
24276
24277         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
24278         (gst_oggvorbisenc_setup):
24279         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
24280         (gst_vorbisenc_setup):
24281           resolve ambiguities in code and description
24282
24283 2004-06-24  Wim Taymans  <wim@fluendo.com>
24284
24285         * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
24286         * ext/alsa/gstalsa.h:
24287         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
24288         (gst_alsa_src_update_avail), (gst_alsa_src_loop):
24289         Use alsa trigger_tstamp to get the timestamp of the first
24290         sample in the buffer for more precise sync. Some cleanups.
24291
24292 2004-06-24  Wim Taymans  <wim@fluendo.com>
24293
24294         * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
24295         (gst_audiorate_init), (gst_audiorate_chain),
24296         (gst_audiorate_set_property), (gst_audiorate_get_property):
24297         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24298         (gst_videorate_chain):
24299         Added some logging, fixed an overflow bug in videorate.
24300
24301 2004-06-24  Benjamin Otte  <otte@gnome.org>
24302
24303         * ext/kio/Makefile.am:
24304           fix for builddir != srcdir and distcheck
24305
24306 2004-06-24  Benjamin Otte  <otte@gnome.org>
24307
24308         * gst-libs/gst/colorbalance/Makefile.am:
24309         * gst-libs/gst/mixer/Makefile.am:
24310         * gst-libs/gst/play/Makefile.am:
24311         * gst-libs/gst/tuner/Makefile.am:
24312         * gst/tcp/Makefile.am:
24313         * sys/dxr3/Makefile.am:
24314           don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
24315           tarball.
24316           Also add all *.list files that were missing.
24317         * Makefile.am:
24318           add a distcheck hook to ensure the above doesn't happen again.
24319
24320 2004-06-23  David I. Lehn  <dlehn@users.sourceforge.net>
24321
24322         * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
24323
24324 2004-06-23  Colin Walters  <walters@redhat.com>
24325
24326         * m4/Makefile.am: Distribute gst-fionread.m4.
24327
24328 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
24329
24330         * configure.ac: back to dev
24331
24332 2004-06-23  Wim Taymans  <wim@fluendo.com>
24333
24334         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
24335         (gst_alsa_xrun_recovery):
24336         * ext/alsa/gstalsa.h:
24337         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
24338         (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
24339         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
24340         (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
24341         (gst_alsa_src_loop):
24342         Add clock to alsasrc. Take new capture timestamp when
24343         restarting after an overrun. Split up some functions between
24344         alsasrc and alsasink.
24345
24346 === release 0.8.2 ===
24347
24348 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
24349
24350         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
24351         (gst_alsa_change_state), (gst_alsa_update_avail),
24352         (gst_alsa_xrun_recovery):
24353         * ext/alsa/gstalsa.h:
24354         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24355           merge back changes from release
24356
24357 2004-06-23  Wim Taymans  <wim@fluendo.com>
24358
24359         * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
24360         (gst_audiorate_init), (gst_audiorate_chain),
24361         (gst_audiorate_set_property), (gst_audiorate_get_property):
24362         Implement sample dropping and notify
24363
24364 2004-06-22  Wim Taymans  <wim@fluendo.com>
24365
24366         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
24367         (theora_enc_sink_link), (theora_buffer_from_packet),
24368         (theora_push_packet), (theora_enc_chain):
24369         Some cleanups, make sure the timestamps are correct.
24370
24371 2004-06-22  Wim Taymans  <wim@fluendo.com>
24372
24373         * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
24374         (gst_alsa_change_state), (gst_alsa_update_avail),
24375         (gst_alsa_xrun_recovery):
24376         * ext/alsa/gstalsa.h:
24377         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
24378         Cleanups, take queued samples into account when reporting
24379         the time.
24380
24381 2004-06-22  Wim Taymans  <wim@fluendo.com>
24382
24383         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24384         (gst_videorate_init):
24385         Initialize the property as well.
24386
24387 2004-06-22  Wim Taymans  <wim@fluendo.com>
24388
24389         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24390         (gst_videorate_init), (gst_videorate_chain),
24391         (gst_videorate_set_property), (gst_videorate_get_property):
24392         Add property to make videorate silent.
24393         Add property to prefer new frames over old ones.
24394
24395 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24396
24397         * sys/osxvideo/Makefile.am:
24398         Workaround so that the osxvideo .so file gets linked with the
24399         Cocoa, OpenGL and QuickTime frameworks
24400
24401 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24402
24403         * sys/osxaudio/Makefile.am:
24404         Workaround so that the osxaudio .so file gets linked with the
24405         CoreAudio framework
24406
24407 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24408
24409         * configure.ac:
24410         Whoops, my fault...fixed build issues
24411
24412 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24413
24414         * configure.ac:
24415         Add objective-c support if running in Darwin/Mac OS X
24416         * sys/Makefile.am:
24417         * sys/osxvideo:
24418         * sys/osxvideo/Makefile.am:
24419         * sys/osxvideo/osxvideosink.h:
24420         * sys/osxvideo/osxvideosink.m:
24421         * sys/osxvideo/cocoawindow.h:
24422         * sys/osxvideo/cocoawindow.m:
24423         Add osxvideosink, a cocoa-based osx video sink
24424
24425
24426 2004-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
24427         * ext/dvdnav/gst-dvd:
24428         Grab the gconf key from the right spot
24429         * gst/debug/gstnavseek.c: (gst_navseek_init),
24430         (gst_navseek_segseek), (gst_navseek_handle_src_event),
24431         (gst_navseek_chain):
24432         * gst/debug/gstnavseek.h:
24433           Add 's', 'e' and 'l' keypresses to navseek to define the start,end
24434           and loop parameters of a segment seek.
24435         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
24436         (gst_videotestsrc_get_event_masks),
24437         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
24438         * gst/videotestsrc/gstvideotestsrc.h:
24439           Add seeking support to videotestsrc
24440           Initialise the timestamp_offset variable.
24441
24442 2004-06-18  Wim Taymans  <wim@fluendo.com>
24443
24444         * ext/sidplay/gstsiddec.cc:
24445         Fix negotiation and set correct end offset.
24446
24447 2004-06-18  Thomas Vander Stichele  <thomas at apestaart dot org>
24448
24449         * configure.ac: branch and prerelease
24450
24451 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
24452
24453         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
24454         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
24455         (gst_tcpclientsrc_init_receive):
24456         * gst/tcp/gsttcpclientsrc.h:
24457           read caps when connecting to server for GDP so we set them correctly
24458
24459 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
24460
24461         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
24462           notify drops and duplicates
24463         * gst/videoscale/videoscale.c: (videoscale_get_structure):
24464           no good reason to limit ourselves to 100x100
24465
24466 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
24467
24468         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
24469         (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
24470         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24471         (gst_v4lsrc_get_property):
24472         * sys/v4l/gstv4lsrc.h:
24473         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24474         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
24475         (gst_v4l_set_audio):
24476         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
24477         (gst_v4lsrc_try_capture):
24478         * sys/v4l/v4lsrc_calls.h:
24479           change try_palette to more general try_capture
24480           add autoprobe option so we can turn off autoprobing
24481           various fixes
24482
24483 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
24484
24485         * configure.ac:
24486           add videorate
24487         * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
24488         (gst_ximagesink_class_init):
24489         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
24490         (gst_xvimagesink_class_init):
24491           run them as finalize, not dispose, since dispose can be invoked
24492           multiple times
24493
24494 2004-06-17  Wim Taymans  <wim@fluendo.com>
24495
24496         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
24497         (gst_alsa_get_time), (gst_alsa_xrun_recovery):
24498         * ext/alsa/gstalsa.h:
24499         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
24500         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
24501         (gst_alsa_src_change_state):
24502         * ext/alsa/gstalsasrc.h:
24503         Make the xrun code timestamp and offset the buffers correctly.
24504         moved the clock to the base class, use alsa methods to get time.
24505         Do correct timestamping on outgoing buffers.
24506
24507 2004-06-17  Wim Taymans  <wim@fluendo.com>
24508
24509         * gst/audiorate/Makefile.am:
24510         * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
24511         (gst_audiorate_base_init), (gst_audiorate_class_init),
24512         (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
24513         (gst_audiorate_set_property), (gst_audiorate_get_property),
24514         (gst_audiorate_change_state), (plugin_init):
24515         Added an audiorate converter that fills in gaps.
24516
24517 2004-06-17  Johan Dahlin  <johan@gnome.org>
24518
24519         * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
24520
24521 2004-06-16  Wim Taymans  <wim@fluendo.com>
24522
24523         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
24524         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
24525         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
24526         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24527         (gst_v4lsrc_get_property):
24528         * sys/v4l/gstv4lsrc.h:
24529         Added a copy mode to v4lsrc where it will output a copied version
24530         of its internal hardware buffer.
24531         Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
24532         can't | them.
24533
24534 2004-06-16  Wim Taymans  <wim@fluendo.com>
24535
24536         * sys/oss/gstosssrc.c: (gst_osssrc_get):
24537         Timestamp fixes.
24538
24539 2004-06-16  Wim Taymans  <wim@fluendo.com>
24540
24541         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
24542         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
24543         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24544         (gst_v4lsrc_get_property):
24545         * sys/v4l/gstv4lsrc.h:
24546         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
24547         Added a sync mode enum property to control v4lsrc timestamp method
24548         Removed the use-fixed-fps property and moved functionality in
24549         the enum.
24550         Don't error on an error value from v4l-conf, it might not always
24551         be a real error.
24552
24553 2004-06-16  Wim Taymans  <wim@fluendo.com>
24554
24555         * gst/videorate/Makefile.am:
24556         * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
24557         (gst_videorate_base_init), (gst_videorate_class_init),
24558         (gst_videorate_getcaps), (gst_videorate_link),
24559         (gst_videorate_init), (gst_videorate_chain),
24560         (gst_videorate_set_property), (gst_videorate_get_property),
24561         (gst_videorate_change_state), (plugin_init):
24562         Added a video timestamp corrector.
24563
24564 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24565
24566         fixed a potential leak with previous commit
24567
24568         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
24569
24570 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24571
24572         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
24573         Added missing refcount, fixes bug #144425
24574         Cheers Tim for finding the bug
24575
24576 2004-06-15  Thomas Vander Stichele  <thomas at apestaart dot org>
24577
24578         * sys/v4l/gstv4l.c: (plugin_init):
24579         * sys/v4l/gstv4lcolorbalance.c:
24580         * sys/v4l/gstv4lcolorbalance.h:
24581         * sys/v4l/gstv4lelement.c:
24582         * sys/v4l/gstv4lelement.h:
24583         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
24584         * sys/v4l/gstv4lmjpegsink.h:
24585         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
24586         * sys/v4l/gstv4lmjpegsrc.h:
24587         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
24588         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
24589         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
24590         * sys/v4l/gstv4lsrc.h:
24591         * sys/v4l/gstv4ltuner.c:
24592         * sys/v4l/gstv4ltuner.h:
24593         * sys/v4l/gstv4lxoverlay.c:
24594         * sys/v4l/gstv4lxoverlay.h:
24595         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
24596         (gst_v4l_set_window), (gst_v4l_enable_overlay):
24597         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24598         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
24599         (gst_v4l_set_audio):
24600         * sys/v4l/v4l_calls.h:
24601         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
24602         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
24603         (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
24604         (gst_v4lmjpegsink_playback_init),
24605         (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
24606         (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
24607         (gst_v4lmjpegsink_playback_stop),
24608         (gst_v4lmjpegsink_playback_deinit):
24609         * sys/v4l/v4lmjpegsink_calls.h:
24610         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
24611         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
24612         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
24613         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
24614         (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
24615         (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
24616         * sys/v4l/v4lmjpegsrc_calls.h:
24617         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
24618         (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
24619         (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
24620         (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
24621         (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
24622         (gst_v4lsrc_try_palette):
24623         * sys/v4l/v4lsrc_calls.h:
24624           bunch of paranoia cleanups
24625
24626 2004-06-14  David Schleef  <ds@schleef.org>
24627
24628         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
24629         (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
24630         Send discont events and change timestamps appropriately when
24631         we get a seek event.  (bug #144240)
24632         * ext/cdparanoia/gstcdparanoia.h:
24633
24634 2004-06-14  Benjamin Otte  <otte@gnome.org>
24635
24636         * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
24637           snd_pcm_hw_params_set_rate  since the latter fails for no good
24638           reason on some setups.
24639
24640 2004-06-14  David Schleef  <ds@schleef.org>
24641
24642         * gst/volume/demo.c: (value_changed_callback): exp10() is not
24643         standard.  Thank you for playing.
24644
24645 2004-06-14  Wim Taymans  <wim@fluendo.com>
24646
24647         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
24648         Patch 1.3 broke the ordering of the colorspace info and
24649         made the plugin basically work by coincidence, reordered
24650         the info.
24651
24652 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
24653
24654         * ext/lame/gstlame.c:
24655         * ext/mad/gstmad.c:
24656           sync caps.  Make sure mad can only output a list of rates, not
24657           a full range.  In the future, have three caps lists for each of the
24658           mpeg versions.  Change mpegversion to a double as well.
24659
24660 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
24661
24662         * gst/volume/.cvsignore:
24663         * gst/volume/Makefile.am:
24664         * gst/volume/demo.c: (value_changed_callback), (idler),
24665         (setup_gui), (main):
24666           added small demo app
24667
24668 2004-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
24669         * ext/esd/esdsink.c: (gst_esdsink_change_state):
24670         * ext/esd/esdsink.h:
24671         Close the esd connection on pause, because esd will just wait -
24672         blocking all other esd clients indefinitely.
24673
24674 2004-06-12  Christophe Fergeau  <teuf@gnome.org>
24675
24676         * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
24677           previous commit with GST_DEBUG
24678
24679 2004-06-12  Thomas Vander Stichele  <thomas at apestaart dot org>
24680
24681         * configure.ac:
24682           add a header check for a dvdread header in dvdnav.  Fixes #133002
24683
24684 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24685
24686         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
24687         * gst/tcp/gsttcpclientsink.h:
24688         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
24689         * gst/tcp/gsttcpclientsrc.h:
24690         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
24691         (gst_tcpserversink_handle_server_read),
24692         (gst_tcpserversink_init_send):
24693         * gst/tcp/gsttcpserversink.h:
24694         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
24695         * gst/tcp/gsttcpserversrc.h:
24696         Modified the tcp plugins so they are portable (IPv4,IPv6, any future
24697         version of IP)
24698
24699 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24700
24701         * configure.ac:
24702         Added ogg library so that OSX detects libtheora properly
24703
24704 2004-06-11  Wim Taymans  <wim@fluendo.com>
24705
24706         * ext/theora/theoradec.c: (theora_dec_chain),
24707         (theora_dec_change_state):
24708         Don't try to decode frames before we received a keyframe.
24709
24710 2004-06-11  Wim Taymans  <wim@fluendo.com>
24711
24712         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
24713         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
24714         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24715         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
24716         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
24717         Added property to set the maximum delay of a page.
24718
24719 2004-06-10  Wim Taymans  <wim@fluendo.com>
24720
24721         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
24722         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
24723         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24724         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
24725         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
24726         Added max-delay property to control the maximum amount
24727         of data to put in one page.
24728
24729 2004-06-10  Wim Taymans  <wim@fluendo.com>
24730
24731         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
24732         (gst_theora_enc_init), (theora_enc_sink_link),
24733         (theora_buffer_from_packet), (theora_enc_set_property),
24734         (theora_enc_get_property):
24735         Set duration on encoded buffer, added some more properties
24736
24737 2004-06-10  Wim Taymans  <wim@fluendo.com>
24738
24739         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
24740         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24741         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
24742         * ext/theora/theoraenc.c: (theora_enc_chain):
24743         Fix refcounting bugs
24744
24745 2004-06-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24746
24747         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
24748         (gst_asf_demux_loop), (gst_asf_demux_process_file),
24749         (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
24750         (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
24751         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
24752         (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
24753         (gst_asf_demux_change_state):
24754         * gst/asfdemux/gstasfdemux.h:
24755           You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
24756           feels like. I think we should set a new requirement for demuxers
24757           from now on to implement sane loop functions, data loops, query
24758           and seek functions before first commit into CVS. And this commit
24759           fixes all of the above.
24760
24761 2004-06-10  Christophe Fergeau  <teuf@gnome.org>
24762
24763         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
24764           vorbis comments are properly encoded in UTF-8 before adding them
24765           to a GstTagList
24766
24767 2004-06-09  Benjamin Otte  <otte@gnome.org>
24768
24769         * ext/alsa/gstalsa.c: (add_channels):
24770           handle min <= max correctly
24771         * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
24772         (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
24773           add fixation functions so we fixate correctly. No preferring of alaw
24774           anymore because it's the first structure.
24775         * ext/alsa/gstalsa.h:
24776         * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
24777         (gst_alsa_hw_params_dump):
24778           add functions to ease debugging in alsalib
24779         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
24780         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
24781         (gst_alsa_start_audio):
24782           only specify hw params if we really setup a format (fixes #134007 -
24783           or at least works around it)
24784
24785 2004-06-09  Wim Taymans  <wim@fluendo.com>
24786
24787         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
24788         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
24789         (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
24790         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
24791         (gst_ogg_mux_loop):
24792         Use stream caps to setup the initial pages in the ogg stream.
24793         Correctly set the streamheader caps on the srcpad.
24794
24795 2004-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
24796
24797         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
24798         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
24799         (gst_v4lsrc_getcaps):
24800         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24801         (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
24802           add querying of fps lists for webcams.  Negotiating to a framerate
24803           now works.
24804
24805 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24806
24807         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
24808         (theora_push_buffer), (theora_push_packet),
24809         (theora_set_header_on_caps), (theora_enc_chain):
24810           mark buffers and put on streamheader, raw theora streaming
24811           now works too, whee
24812
24813 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24814
24815         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
24816         (gst_tcp_gdp_read_caps):
24817           do a looping read for caps and GDP headers too
24818
24819 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24820
24821         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24822         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
24823           return EOS instead of NULL in _get
24824
24825 2004-06-08  Wim Taymans  <wim@fluendo.com>
24826
24827         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
24828         (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
24829         (gst_tcp_gdp_write_caps):
24830         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24831         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
24832         (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
24833         Memory leak fixes
24834
24835 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24836
24837         * ext/vorbis/Makefile.am:
24838         * ext/vorbis/vorbis.c: (plugin_init):
24839         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
24840         (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
24841         (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
24842         (vorbis_parse_change_state):
24843         * ext/vorbis/vorbisparse.h:
24844           adding a vorbisparse element that marks the buffers, streaming
24845           raw vorbis using GDP now works, whee
24846
24847 2004-06-08  Wim Taymans  <wim@fluendo.com>
24848
24849         * ext/jpeg/Makefile.am:
24850         * ext/jpeg/README:
24851         * ext/jpeg/gstjpeg.c: (plugin_init):
24852         * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
24853         (gst_smokedec_base_init), (gst_smokedec_class_init),
24854         (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
24855         * ext/jpeg/gstsmokedec.h:
24856         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
24857         (gst_smokeenc_base_init), (gst_smokeenc_class_init),
24858         (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
24859         (gst_smokeenc_resync), (gst_smokeenc_chain),
24860         (gst_smokeenc_set_property), (gst_smokeenc_get_property):
24861         * ext/jpeg/gstsmokeenc.h:
24862         * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
24863         (smokecodec_flush_destination), (smokecodec_term_destination),
24864         (smokecodec_init_source), (smokecodec_fill_input_buffer),
24865         (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
24866         (smokecodec_term_source), (smokecodec_encode_new),
24867         (smokecodec_decode_new), (smokecodec_info_free),
24868         (smokecodec_set_quality), (smokecodec_get_quality),
24869         (smokecodec_set_threshold), (smokecodec_get_threshold),
24870         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
24871         (find_best_size), (abs_diff), (put), (smokecodec_encode),
24872         (smokecodec_parse_header), (smokecodec_decode):
24873         * ext/jpeg/smokecodec.h:
24874         Added a new simple jpeg based codec
24875
24876 2004-06-08  Wim Taymans  <wim@fluendo.com>
24877
24878         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24879         (gst_multipart_mux_loop):
24880         Fix memory leak
24881
24882 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24883
24884         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24885         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
24886         (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
24887         (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
24888         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
24889         * gst/tcp/gsttcpserversink.h:
24890           take streamheader into account
24891
24892 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24893
24894         * gst/level/Makefile.am:
24895         * gst/level/gstlevel.c: (gst_level_class_init):
24896           clean up marshal generation
24897
24898 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24899
24900         * gst/tcp/Makefile.am:
24901         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
24902         (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
24903         (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
24904         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
24905         (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
24906         (gst_tcpclientsrc_get_property):
24907         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
24908         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
24909         (gst_tcpserversink_handle_client_read),
24910         (gst_tcpserversink_handle_client_write),
24911         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
24912         * gst/tcp/gsttcpserversink.h:
24913           add signals client-added and client-removed
24914         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
24915         (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
24916         (gst_tcpserversrc_get_property):
24917         uniformized, change default protocol to NONE
24918         * gst/tcp/gsttcp-marshal.list: added
24919 2004-06-07  Benjamin Otte  <otte@gnome.org>
24920
24921         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24922           handle discont events if they happen before caps nego
24923
24924 2004-06-07  Wim Taymans  <wim@fluendo.com>
24925
24926         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
24927         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
24928         (gst_multipart_demux_plugin_init):
24929         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24930         (gst_multipart_mux_init), (gst_multipart_mux_loop),
24931         (gst_multipart_mux_change_state):
24932         Small updates, fix a memleak
24933
24934 2004-06-07  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
24935
24936         * configure.ac: OSS portability
24937         * ext/arts/gst_arts.c: idem
24938         * sys/oss/gstosselement.c: idem
24939         * sys/oss/gstossmixer.c: idem
24940         * sys/oss/gstosssink.c: idem
24941         * sys/oss/gstosssrc.c: idem
24942         * sys/oss/oss_probe.c: idem
24943           - check for soundcard.h in different places for some BSD
24944
24945 2004-06-07  Jan Schmidt <thaytan@mad.scientist.com>
24946
24947         * AUTHORS:
24948         Add me to the authors file
24949         * configure.ac:
24950         Increase the libdv requirement to >= version 0.100
24951         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
24952         (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
24953         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
24954         * ext/dv/gstdvdec.h:
24955         Add support for the new_media flag when sending DISCONT events
24956         Make the querying work when video pad is not linked
24957
24958 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
24959
24960         reviewed by Benjamin Otte  <otte@gnome.org>
24961
24962         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
24963           create a NULL-initialized array of pads, so we don't think they
24964           exist already. (fixes #143130)
24965
24966 2004-06-07  Benjamin Otte  <otte@gnome.org>
24967
24968         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
24969         (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
24970         (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
24971           don't use // coments
24972
24973 2004-06-07  Benjamin Otte  <otte@gnome.org>
24974
24975         * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
24976           cast to GstClockTime to get higher granularity
24977         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24978           use gst_element_set_time_delay to get the exact time
24979         * ext/mad/gstmad.c: (gst_mad_chain):
24980           use the negotiated rate instead of the current frame's rate which
24981           might be wrong because of bit errors. This avoids emitting totally
24982           bogus timestamps and screwing sync.
24983         (fixes #143454)
24984
24985 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
24986
24987         reviewed by Benjamin Otte  <otte@gnome.org>
24988
24989         * gst/adder/gstadder.c: (gst_adder_loop):
24990           properly error out when no negotiation has happened yet. (fixes
24991           #143032)
24992
24993 2004-06-06  Benjamin Otte  <otte@gnome.org>
24994
24995         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
24996           forward correctly transformed offset in discont events. Based on
24997           patch by Arwed v. Merkatz. (fixes #142851)
24998
24999 2004-06-06  David Schleef  <ds@schleef.org>
25000
25001         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
25002         G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS.  Should fix compile
25003         problems on several systems.
25004
25005 2004-06-06  Benjamin Otte  <otte@gnome.org>
25006
25007         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
25008           use explicit caps on the srcpad
25009         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
25010           properly error out if caps couldn't be set (fixes #142764)
25011
25012 2004-06-06  Benjamin Otte  <otte@gnome.org>
25013
25014         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
25015         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
25016         (gst_alsa_start_audio):
25017           - don't call set_periods_integer anymore, it breaks the
25018           configuration randomly
25019           - call snd_pcm_hw_params_set_access directly instead of using masks
25020           - don't fail if the sw_params can't be set, just use the default
25021           params and hope it works. Alsalib has weird issues when you touch
25022           sw_params and does no proper error reporting about what failed.
25023         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
25024         (gst_alsa_close_audio):
25025           make our alsa debugging go via gst debugging and not conditionally
25026           defined
25027         * ext/alsa/gstalsa.h:
25028           add ALSA_DEBUG_FLUSH macro
25029         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
25030         (plugin_init):
25031           wrap alsa errors to be printed via the gst debugging system and not
25032           spammed to stderr
25033
25034 2004-06-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25035
25036         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
25037         (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
25038         (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
25039         (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
25040         (qtdemux_parse_trak):
25041         * gst/qtdemux/qtdemux.h:
25042           Bitch. Also known as seeking, querying & co.
25043         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
25044         (gst_osssink_change_state):
25045         * sys/oss/gstosssink.h:
25046           Resyncing is for weenies, this hack is no longer needed and was
25047           broken anyway (since it - unintendedly - always leaves resync to
25048           TRUE).
25049
25050 2004-06-05  Andrew Turner <zxombie@hotpop.com>
25051
25052         * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
25053         * gst/tcp/gsttcpclientsrc.h: idem
25054           - define MSG_NOSIGNAL if not done
25055           - include unistd.h for off_t
25056           (fixes #143749)
25057
25058 2004-06-05  Benjamin Otte  <otte@gnome.org>
25059
25060         * configure.ac:
25061         * ext/kio/Makefile.am:
25062           check for qt's moc preprocessor explicitly and use it
25063
25064 2004-06-03  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
25065
25066         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
25067           don't get a signal for EPIPE on socket writes
25068           (somebody check if this works on other platforms)
25069
25070 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
25071
25072         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
25073         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
25074           check error condition on available samples correctly
25075
25076 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
25077
25078         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
25079           avoid a segfault
25080         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
25081         (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
25082         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
25083         (gst_tcpserversrc_gdp_read_header):
25084          use ssize_t over size_t since the former is signed and thus the
25085          check for error codes can work
25086
25087 2004-06-02  Wim Taymans  <wim@fluendo.com>
25088
25089         reviewed by: Johan
25090
25091         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
25092         (gst_multipart_mux_loop):
25093         Oops
25094
25095 2004-06-02  Wim Taymans  <wim@fluendo.com>
25096
25097         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
25098         (gst_multipart_mux_init), (gst_multipart_mux_loop),
25099         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
25100         (gst_multipart_mux_change_state):
25101         Added configurable boundary specifier, added the value as a
25102         caps field as well.
25103
25104 2004-06-02  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
25105
25106         * gst/tcp/gsttcp.c:
25107         * gst/tcp/gsttcpclientsrc.c:
25108         * gst/tcp/gsttcpclientsrc.h:
25109         * gst/tcp/gsttcpserversrc.c:
25110           - portability fix, to compile on OSX
25111             (fixes #143146)
25112
25113         * sys/osxaudio/gstosxaudioelement.c:
25114         * sys/osxaudio/gstosxaudiosink.c:
25115         * sys/osxaudio/gstosxaudiosrc.c:
25116           - compilation warnings on OSX
25117             (fixes #143153)
25118
25119 2004-06-02  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25120
25121         * ext/vorbis/vorbisdec.c : sign warning fixes
25122
25123         * gst-libs/gst/mixer/mixertrack.c :
25124           do no use defines which are glib 2.4 specific
25125
25126 2004-06-01  Christophe Fergeau  <teuf@gnome.org>
25127
25128         * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
25129           buffer since libflac doesn't expect it (reports a sync error when
25130           it encounters that)
25131
25132
25133 2004-06-01  Owen Fraser-Green  <owen@discobabe.net>
25134
25135         * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
25136         * gst-libs/gst/mixer/mixertrack.c:
25137         (gst_mixer_track_get_property), (get_mixer_track_init),
25138         (get_mixer_track_get_property): Added property accessors
25139         * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
25140         * gst-libs/gst/mixer/mixeroptions.c:
25141         (gst_mixer_options_get_values): Added
25142         * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
25143         * gst-libs/gst/mixer/mixer.c: Fixed comment
25144
25145
25146 2004-06-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
25147
25148         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
25149           improve error messages on open
25150
25151
25152 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
25153
25154         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
25155           check if v4l-conf is in path
25156
25157 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
25158
25159         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
25160           change assert to a more readable error message
25161
25162 2004-05-31  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
25163
25164         * gst-libs/gst/tuner/tunerchannel.h:
25165           - add a freq_multiplicator field to make the conversion
25166             between internal frequency unit and Hz
25167         * sys/v4l/gstv4lelement.c:
25168         * sys/v4l2/gstv4l2element.c:
25169           - change default video device to /dev/video0
25170         * sys/v4l/v4l_calls.c:
25171         * sys/v4l2/v4l2_calls.c:
25172           - we only expose frequency to the user in Hz instead of
25173             bastard v4lX unit (either 62.5kHz or 62.5Hz)
25174
25175 2004-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
25176         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
25177           Initialise b_o_s and e_o_s variables
25178         * gst-libs/gst/riff/riff-media.c:
25179         (gst_riff_create_video_caps_with_data):
25180           Add some unusual fourcc's from mplayer avi's
25181         * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
25182           Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
25183           autoplugging.
25184
25185 2004-05-28  Wim Taymans  <wim@fluendo.com>
25186
25187         * configure.ac:
25188         * gst/alpha/Makefile.am:
25189         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
25190         (gst_alpha_get_type), (gst_alpha_base_init),
25191         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
25192         (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
25193         (gst_alpha_chroma_key), (gst_alpha_chain),
25194         (gst_alpha_change_state), (plugin_init):
25195         A plugin to add an alpha channel to I420 video. Can optionally do
25196         chroma keying.
25197         * gst/multipart/Makefile.am:
25198         * gst/multipart/multipart.c: (plugin_init):
25199         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
25200         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
25201         (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
25202         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
25203         (gst_multipart_demux_change_state),
25204         (gst_multipart_demux_plugin_init):
25205         * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
25206         (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
25207         (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
25208         (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
25209         (gst_multipart_mux_pad_unlink),
25210         (gst_multipart_mux_request_new_pad),
25211         (gst_multipart_mux_handle_src_event),
25212         (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
25213         (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
25214         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
25215         (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
25216         A Multipart demuxer/muxer. Not sure if it violates specs. Used to
25217         send multipart jpeg images to a browser.
25218         * gst/videobox/Makefile.am:
25219         * gst/videobox/README:
25220         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
25221         (gst_video_box_get_type), (gst_video_box_base_init),
25222         (gst_video_box_class_init), (gst_video_box_init),
25223         (gst_video_box_set_property), (gst_video_box_get_property),
25224         (gst_video_box_sink_link), (gst_video_box_i420),
25225         (gst_video_box_ayuv), (gst_video_box_chain),
25226         (gst_video_box_change_state), (plugin_init):
25227         Crops or adds borders around an image. can do alpha channel
25228         borders as well.
25229         * gst/videomixer/Makefile.am:
25230         * gst/videomixer/README:
25231         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
25232         (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
25233         (gst_videomixer_pad_get_sink_event_masks),
25234         (gst_videomixer_pad_get_property),
25235         (gst_videomixer_pad_set_property),
25236         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
25237         (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
25238         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
25239         (gst_videomixer_base_init), (gst_videomixer_class_init),
25240         (gst_videomixer_init), (gst_videomixer_request_new_pad),
25241         (gst_videomixer_handle_src_event),
25242         (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
25243         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
25244         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
25245         (gst_videomixer_loop), (gst_videomixer_get_property),
25246         (gst_videomixer_set_property), (gst_videomixer_change_state),
25247         (plugin_init):
25248         Generic video mixer plugin, can handle multiple inputs all with
25249         different framerates and video sizes. Is fully alpha channel
25250         aware.
25251
25252 2004-05-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25253
25254         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
25255           Select first track as master track. Not sure how else to handle
25256           that...
25257         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
25258           Discard discont events. Should fix #142962.
25259
25260 2004-05-26  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25261
25262         * ext/alsa/Makefile.am:
25263         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
25264         (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
25265         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
25266         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
25267         (gst_alsa_mixer_get_option):
25268         * ext/alsa/gstalsamixer.h:
25269         * ext/alsa/gstalsamixeroptions.c:
25270         (gst_alsa_mixer_options_get_type),
25271         (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
25272         (gst_alsa_mixer_options_new):
25273         * ext/alsa/gstalsamixeroptions.h:
25274         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
25275         * ext/alsa/gstalsamixertrack.h:
25276           Add enumerations (as GstMixerOptions). Make correct distinction
25277           between input/output tracks. Add capture/playback private flag.
25278           Use flag to decide on whether to set capture or playback volumes
25279           or switches. Use playback and record switches.
25280         * gst-libs/gst/mixer/Makefile.am:
25281         * gst-libs/gst/mixer/mixer-marshal.list:
25282         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
25283         (gst_mixer_set_option), (gst_mixer_get_option),
25284         (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
25285         (gst_mixer_volume_changed), (gst_mixer_option_changed):
25286         * gst-libs/gst/mixer/mixer.h:
25287         * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
25288         (gst_mixer_options_class_init), (gst_mixer_options_init),
25289         (gst_mixer_options_dispose):
25290         * gst-libs/gst/mixer/mixeroptions.h:
25291           Add GstMixerOptions.
25292         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
25293           Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
25294           broken device detection on computers with multiple OSS sound
25295           cards.
25296
25297 2004-05-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25298
25299         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
25300           fixate nicely even when the peer is not negotiating
25301
25302 2004-05-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25303
25304         * gst/audioconvert/gstaudioconvert.c:
25305         (gst_audio_convert_parse_caps):
25306           make sure we don't allow depth > width
25307         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
25308           fixate endianness to G_BYTE_ORDER as default
25309         * gst/audioscale/gstaudioscale.c:
25310           we don't handle another endianness as host-endianness
25311
25312 2004-05-25  David Schleef  <ds@schleef.org>
25313
25314         * gst/ffmpegcolorspace/mem.c:  malloc() is in stdlib.h, not malloc.h
25315
25316 2004-05-24  Benjamin Otte  <otte@gnome.org>
25317
25318         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
25319         (gst_oggvorbisenc_setup):
25320           properly fail when we can't setup the vorbis encoder due to
25321           unsupported settings
25322         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
25323         (gst_vorbisenc_setup):
25324           same
25325         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
25326           fix case where warnings occured when one pad was unlinked while the
25327           other's link function was called
25328
25329 2004-05-24  Thomas Vander Stichele  <thomas at apestaart dot org>
25330
25331         * gst/tcp/Makefile.am:
25332           use GST_ENABLE_NEW
25333
25334 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25335
25336         * gst-libs/gst/resample/private.h:
25337           don't use optimizations that are #if 0'ed
25338
25339 2004-05-24  Wim Taymans  <wim@fluendo.com>
25340
25341         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
25342         Fix potential division by zero error and hopefully get
25343         the position query right to get correct timestamps on avi
25344         audio.
25345
25346 2004-05-24  Wim Taymans  <wim@fluendo.com>
25347
25348         * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
25349         (gst_videoscale_scale_nearest_str2),
25350         (gst_videoscale_scale_nearest_str4),
25351         (gst_videoscale_scale_nearest_32bit),
25352         (gst_videoscale_scale_nearest_24bit),
25353         (gst_videoscale_scale_nearest_16bit):
25354         Fix the scaling algorithm and avoid a buffer overflow.
25355         removed the while loop in the scaling function as it
25356         was used for point sampling only.
25357
25358 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25359
25360         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
25361         (gst_id3_tag_class_init), (gst_id3_tag_init),
25362         (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
25363         (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
25364         (gst_id3_tag_send_tag_event):
25365           lots of fixes to make id3mux work and id3demux work correctly
25366
25367 2004-05-24  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25368
25369         * ext/Makefile.am:
25370           add rules to build shout2send (was removed by accident
25371           when this module was no more marked experimental/broken)
25372
25373 2004-05-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
25374
25375         * ext/shout2/gstshout2.c:
25376         * ext/shout2/gstshout2.h:
25377           adding a "connection problem" signal to shout2send
25378           (fixes #142954)
25379
25380 2004-05-21  Thomas Vander Stichele  <thomas at apestaart dot org>
25381
25382         * ext/kio/kioreceiver.cpp:
25383         * ext/kio/kioreceiver.h:
25384           fix sign comparison issues
25385
25386 2004-05-21  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25387
25388         * gst/cdxaparse/gstcdxaparse.c:
25389         * gst/cdxaparse/gstcdxaparse.h:
25390           some renaming
25391           add some checks/sanity
25392           prepare for seek addition
25393
25394         * sys/sunaudio/gstsunaudio.c:
25395           remove exported dupe init function
25396
25397 2004-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
25398
25399         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
25400         (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
25401           Fix format conversion and position querying.
25402         * gst/debug/progressreport.c: (gst_progressreport_report):
25403           Don't output a bogus total value that we didn't query.
25404         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
25405           Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
25406           only a blank window after xine has been used.
25407
25408 2004-05-21  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
25409
25410         * m4/as-arts.m4:
25411           sync with upstream version to fix test on FC2
25412           readd with -ko to preserve Id header
25413
25414 2004-05-20  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25415
25416         * configure.ac:
25417           test for FIONREAD ioctl in sys/filio.h for Solaris compat.
25418         * gst/tcp/gsttcpclientsrc.c: idem
25419         * gst/tcp/gsttcpserversink.c: idem
25420         * gst/tcp/gsttcpserversrc.c: idem
25421         * m4/gst-fionread.m4: idem
25422
25423         * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
25424
25425         * configure.ac: enable speex plugin for speex 1.1.5+
25426         * ext/speex/gstspeexenc.c: fix cast warning
25427
25428         * ext/esd/README: fix typo
25429
25430 2004-05-20  David Schleef  <ds@schleef.org>
25431
25432         * configure.ac: Minor cosmetic change to convince the buildbot to
25433         reautogen.
25434         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
25435         (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
25436         (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
25437         (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
25438         (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
25439         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
25440         More hacking.  Plays audio now.
25441
25442 2004-05-20  David Schleef  <ds@schleef.org>
25443
25444         * configure.ac:
25445         * sys/Makefile.am:
25446
25447 2004-05-20  David Schleef  <ds@schleef.org>
25448
25449         * sys/osxaudio/Makefile.am:  New OS X audio plugin by Zaheer Abbas Merali
25450         * sys/osxaudio/gstosxaudio.c:
25451         * sys/osxaudio/gstosxaudioelement.c:
25452         * sys/osxaudio/gstosxaudioelement.h:
25453         * sys/osxaudio/gstosxaudiosink.c:
25454         * sys/osxaudio/gstosxaudiosink.h:
25455         * sys/osxaudio/gstosxaudiosrc.c:
25456         * sys/osxaudio/gstosxaudiosrc.h:
25457
25458 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
25459
25460         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
25461         (gst_vorbisenc_chain):
25462           put the codec headers on the caps as streamheader as well as
25463           pushing them out
25464
25465 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
25466
25467         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
25468         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
25469         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
25470         split up push_packet into two functions
25471
25472 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
25473
25474         * gst/tcp/.cvsignore:
25475           ignore enums
25476         * gst/tcp/Makefile.am:
25477         * gst/tcp/README:
25478         * gst/tcp/gsttcp.c:
25479         * gst/tcp/gsttcp.h:
25480         * gst/tcp/gsttcpclientsink.c:
25481         * gst/tcp/gsttcpclientsink.h:
25482         * gst/tcp/gsttcpclientsrc.c:
25483         * gst/tcp/gsttcpclientsrc.h:
25484         * gst/tcp/gsttcpplugin.c:
25485         * gst/tcp/gsttcpserversink.c:
25486         * gst/tcp/gsttcpserversink.h:
25487         * gst/tcp/gsttcpserversrc.c:
25488         * gst/tcp/gsttcpserversrc.h:
25489           add new tcp elements
25490
25491 2004-05-19  Wim Taymans  <wim@fluendo.com>
25492
25493         * gst/law/mulaw-conversion.c: (mulaw_encode):
25494         Fix overflow bug in ulaw encoding.
25495
25496 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25497
25498         * ext/mad/gstmad.c: (gst_mad_handle_event):
25499           don't unref the event twice
25500
25501 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25502
25503         * configure.ac:
25504           remove -Wno-sign-compare
25505
25506 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25507
25508         * configure.ac:
25509           remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
25510           if you want to work against glib 2.2 and 2.4
25511
25512 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
25513
25514         * gst/tcp/Makefile.am:
25515         * gst/tcp/gsttcp.c:
25516         * gst/tcp/gsttcp.h:
25517         * gst/tcp/gsttcpsink.h:
25518         * gst/tcp/gsttcpsrc.h:
25519           gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
25520
25521 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25522
25523         * gst/debug/tests.c: (md5_get_value):
25524           fix segfault on gst-inspect
25525
25526 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25527
25528         * gst/debug/testplugin.c:
25529         * gst/debug/tests.c:
25530         * gst/debug/tests.h:
25531           add new extensible and configurable testing element. Current tests
25532           include buffer count, stream length, timestamp/duration matching and
25533           md5.
25534         * gst/debug/Makefile.am:
25535         * gst/debug/gstdebug.c: (plugin_init):
25536           add infrastructure for new element
25537
25538 2004-05-19  Johan Dahlin  <johan@gnome.org>
25539
25540         * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
25541         ending of the array. Fixes gst-inspect segfault on ppc.
25542
25543 2004-05-19  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25544
25545         * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
25546
25547         * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
25548
25549 2004-05-18  David Schleef  <ds@schleef.org>
25550
25551         * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
25552         warnings (bugs, actually) noticed by gcc but not forte.
25553
25554 2004-05-18  David Schleef  <ds@schleef.org>
25555
25556         * sys/sunaudio/Makefile.am:
25557         * sys/sunaudio/gstsunaudio.c: New sunaudiosink
25558
25559 2004-05-18  David Schleef  <ds@schleef.org>
25560
25561         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
25562         (gst_qtdemux_loop_header):  Patch from dcm@acm.org (David Moore)
25563         to allow qtdemux to use non-seekable streams. (bug #142272)
25564
25565 2004-05-18  David Schleef  <ds@schleef.org>
25566
25567         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
25568         (gst_resample_sinc_ft_float): Remove use of static temporary
25569         buffer.  This code was obviously not supposed to last long, but
25570         it's stuck in our ABI, so it required a little hack to make it
25571         ABI-compatible.  Fixes #142585.
25572         * gst-libs/gst/resample/resample.h: same.
25573
25574 2004-05-18  David Schleef  <ds@schleef.org>
25575
25576         * configure.ac: Add sunaudio
25577         * examples/Makefile.am: make gstplay depend on gconf
25578         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
25579         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
25580         (convert_table_lookup), (img_convert): remove c99-isms
25581         * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
25582           unsigned, to fix a warning on Solaris
25583         * gst/mpeg1sys/systems.c: bcopy->memcpy
25584         * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
25585         * sys/Makefile.am: Add sunaudio
25586
25587 2004-05-18  Wim Taymans  <wim@fluendo.com>
25588
25589         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
25590         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
25591         (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
25592         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
25593         (gst_ogg_mux_loop):
25594         Fix an ugly memleak where the muxer didn't flush enough ogg
25595         pages. This also resulted in badly muxed ogg files.
25596
25597 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25598
25599         * gst/asfdemux/asfheaders.c :
25600         * gst/asfdemux/asfheaders.h :
25601         * gst/asfdemux/gstasfdemux.c :
25602           - fix ASF_OBJ_PADDING guid
25603           - add 3 new object guids (language list, metadata,
25604             extended stream properties)
25605           - add a function to parse extended header objects
25606
25607 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25608
25609         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
25610           remove leftover debugging g_print
25611
25612 2004-05-17  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25613
25614         * ext/mad/gstmad.c: (gst_mad_handle_event):
25615           Fix for when the first format in a discont event is not a
25616           byte-based one. Should fix #137710.
25617
25618 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25619
25620         * m4/a52.m4 : fix compilation with -Wall -Werror
25621         * m4/libfame.m4 : idem
25622         * m4/libmikmod.m4 : idem
25623
25624 2004-05-17  Benjamin Otte  <otte@gnome.org>
25625
25626         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25627           signal the new tags before giving up the reference
25628
25629 2004-05-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25630
25631         * ext/shout2/gstshout2.c:
25632           use application/ogg instead of application/x-ogg (patch by Patrick
25633           Guimond, fixes #142432)
25634         * sys/oss/gstosselement.c: (gst_osselement_reset),
25635         (gst_osselement_sync_parms):
25636           don't set fragment size unless specified (fixes #142493)
25637
25638 2004-05-17  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25639
25640         * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
25641           fixes #142664
25642
25643 2004-05-17  Benjamin Otte  <otte@gnome.org>
25644
25645         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
25646           compute offsets correctly for internal buffers so timestamps are set
25647           correctly when we can't seek. Also handle cases where there are no
25648           offsets. (based on a patch by David Moore, fixes #142507)
25649
25650 2004-05-17  Benjamin Otte  <otte@gnome.org>
25651
25652         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25653           use correct variable when determining amount of data to skip so we
25654           don't skip into the void and segfault
25655
25656 2004-05-16  Benjamin Otte  <otte@gnome.org>
25657
25658         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
25659           Hi, I'm a memleak
25660
25661 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25662
25663         * gst/asfdemux/gstasfdemux.c:
25664           - fix a mem leak and always propagate tags
25665           - add WMV3 to known video codecs (but no decoder yet)
25666           - replace "surplus data" at end of audio header for what
25667             it is : codec specific data
25668           - fix a typo
25669
25670 2004-05-16  Arwed v. Merkatz  <v.merkatz@gmx.net>
25671
25672         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
25673
25674         * gst-libs/gst/audio/audioclock.c:
25675           Fix wrong return type (#142205).
25676
25677 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25678
25679         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
25680           Ignore CRCs by default (fixes #142566).
25681
25682 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25683
25684         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
25685         (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
25686         (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
25687         (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
25688         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
25689         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
25690           Fix for cases where we fail to attach to a mixer.
25691
25692 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25693
25694         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
25695           Don't touch events after not owning them anymore.
25696         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
25697         (gst_wavparse_fmt), (gst_wavparse_other),
25698         (gst_wavparse_handle_seek), (gst_wavparse_loop),
25699         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
25700         (gst_wavparse_srcpad_event):
25701         * gst/wavparse/gstwavparse.h:
25702           Add seeking, fix querying.
25703
25704 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25705
25706         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25707           - process comments even if they don't end with \0\0
25708             g_convert would ignore them if present and works well without them
25709
25710 2004-05-16  Benjamin Otte  <otte@gnome.org>
25711
25712         * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
25713           simplify caps
25714
25715 2004-05-16  Benjamin Otte  <otte@gnome.org>
25716
25717         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25718           don't write to memory we might not write to - g_convert does that
25719           for us anyway (fixes #142613)
25720         (gst_asf_demux_audio_caps):
25721           comment out gst_util_dump_mem
25722
25723 2004-05-16  Benjamin Otte  <otte@gnome.org>
25724
25725         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25726           compute correct expected timestamps after seek (broken since
25727           last commit)
25728         * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
25729           rename element and debugging category to gdkpixbufscale
25730
25731 2004-05-16  Benjamin Otte  <otte@gnome.org>
25732
25733         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25734           add error checking to snd_pcm_delay and remove duplicate call to
25735           snd_pcm_delay that caused issues (see inline code comments)
25736         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
25737           make more readable and fix return value when snd_pcm_delay fails
25738         (fixes #142586)
25739
25740 2004-05-15  Jan Schmidt  <thaytan@mad.scientisti.com>
25741         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
25742         (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
25743         (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
25744         (gst_pixbufscale_link), (gst_pixbufscale_init),
25745         (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
25746         (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
25747         (gst_pixbufscale_get_property), (pixbufscale_init):
25748         * ext/gdk_pixbuf/pixbufscale.h:
25749         Add these files I forgot earlier
25750
25751 2004-05-15  Jan Schmidt  <thaytan@mad.scientist.com>
25752         * ext/gdk_pixbuf/Makefile.am:
25753         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
25754         * ext/gdk_pixbuf/gstgdkpixbuf.h:
25755         Add new pixbufscale element to scale RGB video
25756         using gdk_pixbuf, because gdk_pixbuf does BILINEAR
25757         and HYPER interpolation correctly.
25758         * ext/theora/theoraenc.c: (theora_enc_chain),
25759         Discard buffer and return if explicit caps could not be set
25760         (theora_enc_get_property):
25761         Make _get return kbps for the bitrate consistent with
25762         the _set function.
25763
25764
25765 2004-05-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25766
25767         * ext/libvisual/visual.c: (gst_visual_chain):
25768           add missing visual_audio_analyze
25769
25770 2004-05-14  David Schleef  <ds@schleef.org>
25771
25772         * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
25773         is killed while we're playing.
25774         * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
25775         gst_element_no_more_pads().
25776
25777 2004-05-14  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25778
25779         * gst-libs/gst/riff/riff-read.c :
25780           - fix INFO tag extraction in RIFF/AVI files
25781             because gst_event_unref (event) also freed taglist
25782           - avoid a mem leak
25783
25784 2004-05-13  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25785
25786         * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
25787         * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
25788
25789         * gst/auparse/gstauparse.c :
25790           - add code (commented for now) to support audio/x-adpcm on src pad
25791             (we have no decoder for those layout yet)
25792
25793         * gst/cdxaparse/gstcdxaparse.c :
25794         * gst/cdxaparse/gstcdxaparse.h :
25795           - partial rewrite using RiffRead (ripped iain's wavparse code)
25796
25797         * gst/rtp/gstrtpL16enc.c : typo
25798         * gst/rtp/gstrtpgsmenc.c : typo
25799
25800 2004-05-13  Benjamin Otte  <otte@gnome.org>
25801
25802         * configure.ac:
25803           check for exact version of libvisual, it's not supposed to be
25804           API/ABI stable yet
25805
25806 2004-05-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25807
25808         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
25809           signal no-more-pads
25810
25811 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
25812
25813         * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
25814         Report which format was used for GST_FORMAT_DEFAULT
25815         * gst/debug/Makefile.am:
25816         * gst/debug/gstdebug.c: (plugin_init):
25817         * gst/debug/progressreport.c: (gst_progressreport_base_init),
25818         (gst_progressreport_class_init), (gst_progressreport_init),
25819         (gst_progressreport_report), (gst_progressreport_set_property),
25820         (gst_progressreport_get_property), (gst_progressreport_chain),
25821         (gst_progressreport_plugin_init):
25822         Add progressreport element for testing.
25823
25824 2004-05-13  Thomas Vander Stichele  <thomas at apestaart dot org>
25825
25826         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
25827         * sys/v4l/gstv4lsrc.h:
25828         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
25829         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
25830         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
25831         (gst_v4lsrc_grab_frame):
25832           add more debugging
25833           send a discont at start
25834
25835 2004-05-12  Colin Walters  <walters@redhat.com>
25836
25837         * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
25838         inflooping if we can't find a chunk.  Or in other words, don't blow
25839         chunks if we don't have a chunk to blow.
25840
25841 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
25842         * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
25843         Remove old debug output
25844         * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
25845         (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
25846         (gst_dvdec_set_property), (gst_dvdec_get_property):
25847         Change the quality setting to an enum, so it works from gst-launch
25848         Don't renegotiate a non-linked pad. Allows audio only decoding.
25849         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
25850         (gst_deinterlace_link), (gst_deinterlace_init):
25851         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
25852         (gst_videodrop_link):
25853         Some caps negotiation fixes
25854
25855 2004-05-12  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25856
25857         * ext/tarkin/gsttarkin.c :
25858           - Change RANK from NONE to PRIMARY
25859         * ext/gdk_pixbuf/gstgdkpixbuf.c :
25860           - Change RANK from NONE to MARGINAL
25861         * ext/divx/gstdivxenc.c :
25862           - Change RANK from PRIMARY to NONE (encoder/spider issue)
25863
25864 2004-05-12  Thomas Vander Stichele  <thomas at apestaart dot org>
25865
25866         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
25867         (gst_vorbisenc_push_packet):
25868           copy a function that was added between 1.0 and 1.0.1 until we
25869           depend on worthwhile features of post-1.0
25870
25871 2004-05-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25872
25873         * configure.ac:
25874           enable shout2 by default
25875         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
25876         (gst_shout2send_base_init), (gst_shout2send_init),
25877         (gst_shout2send_connect), (gst_shout2send_change_state):
25878         * ext/shout2/gstshout2.h:
25879           make this work again. Based on a patch by Zaheer Abbas Merali (fixes
25880           #142262)
25881         * ext/theora/theora.c: (plugin_init):
25882           don't set rank on encoders
25883
25884 2004-05-11  Jeremy Simon  <jesimon@libertysurf.fr>
25885
25886         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
25887           Use codec_data property instead of flag1 and flag2 for wma
25888
25889 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25890
25891         * gst/cdxaparse/gstcdxaparse.c :
25892           - Add mpegversion to CAPS to make it link
25893           - Rank is as GST_RANK_SECONDARY instead of NONE
25894         * gst/auparse/gstauparse.c :
25895           - Document all audio encoding we can encounter from Solaris 9
25896             headers and libsndfile information.
25897           - Increase max. rate from 48000 to 192000 (to match other elements)
25898           - Don't try to play junk data between header and samples
25899
25900 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25901
25902         * ext/libvisual/visual.c: (gst_visual_getcaps):
25903           use the right caps depending on endianness (I hope)
25904         * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
25905           use GST_RANK_NONE for all non-decoding elements or spider gets
25906           mighty confused
25907
25908 2004-05-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25909
25910         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25911           Fix some odd cases and fix BE metadata parsing of unicode16 text.
25912
25913 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25914
25915         * gst/switch/gstswitch.c: (gst_switch_release_pad),
25916         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
25917         (gst_switch_loop), (gst_switch_get_type):
25918           whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
25919           HEADERS. Had to be said.
25920
25921 2004-05-10  David Schleef  <ds@schleef.org>
25922
25923         * configure.ac: Add prototype Dirac support.
25924         * ext/Makefile.am:
25925         * ext/dirac/Makefile.am:
25926         * ext/dirac/gstdirac.cc:
25927         * ext/dirac/gstdiracdec.cc:
25928
25929 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25930
25931         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
25932         (gst_auparse_init), (gst_auparse_chain),
25933         (gst_auparse_change_state):
25934           Hack around spider. Remove me some day please.
25935
25936 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25937
25938         * gst/auparse/gstauparse.c: (gst_auparse_chain):
25939           Fix for some uninitialized variables in previous patch, also
25940           makes it work. Fixes #142286 while we're at it.
25941
25942 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25943
25944         * gst/auparse/gstauparse.c:
25945                 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
25946                 only unsupported formats are ADPCM/CCITT G.72x
25947                 reviewed by Ronald
25948         * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
25949
25950 2004-05-10  Wim Taymans  <wim@fluendo.com>
25951
25952         * ext/vorbis/Makefile.am:
25953         * ext/vorbis/README:
25954         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
25955         (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
25956         (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
25957         (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
25958         (gst_oggvorbisenc_convert_sink),
25959         (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
25960         (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
25961         (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
25962         (get_constraints_string), (update_start_message),
25963         (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
25964         (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
25965         (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
25966         * ext/vorbis/oggvorbisenc.h:
25967         * ext/vorbis/vorbis.c: (plugin_init):
25968         * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
25969         (raw_caps_factory), (gst_vorbisenc_class_init),
25970         (gst_vorbisenc_init), (gst_vorbisenc_setup),
25971         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
25972         (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
25973         * ext/vorbis/vorbisenc.h:
25974         Added a raw vorbis encoder to be used with the oggmuxer.
25975         We still need the old encoder for some gnome applications,
25976         read the README to find out how that works.
25977         The raw encoder is called "rawvorbisenc" until 0.9.
25978
25979 2004-05-10  Wim Taymans  <wim@fluendo.com>
25980
25981         * ext/ogg/gstogg.c: (plugin_init):
25982         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
25983         (gst_ogg_print):
25984         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
25985         (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
25986         (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
25987         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
25988         (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
25989         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
25990         (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
25991         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
25992         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
25993         (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
25994         Added an ogg muxer.
25995         Small typo fixes in the demuxer.
25996
25997 2004-05-10  Wim Taymans  <wim@fluendo.com>
25998
25999         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
26000         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
26001         (theora_enc_change_state), (theora_enc_set_property),
26002         (theora_enc_get_property):
26003         Mark the last packet with an EOS flag which is not really needed
26004         in gstreamer.
26005         Do some better video framerate initialisation.
26006         Update the buffer timestamp.
26007
26008 2004-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
26009
26010         * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
26011         Return the result of the parent state change call
26012
26013 2004-05-10  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
26014
26015         * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
26016         * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
26017         * gst/law/alaw-encode.c : (idem)
26018         * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
26019         * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
26020         * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
26021
26022 2004-05-09  Benjamin Otte  <otte@gnome.org>
26023
26024         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
26025           don't use a fixed buffer size when writing variable length data to
26026           it. Fixes memory corruption and makes alsasrc work
26027
26028 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26029
26030         * ext/gnomevfs/gstgnomevfssink.c:
26031         (_gst_boolean_allow_overwrite_accumulator),
26032         (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
26033           Run glib's default signal handler (??) in RUN_CLEANUP rather than
26034           RUN_LAST, and don't use that to set the accumulator value because
26035           then it's always FALSE.
26036
26037 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26038
26039         * gst-libs/gst/riff/riff-media.c:
26040         (gst_riff_create_video_caps_with_data),
26041         (gst_riff_create_audio_caps),
26042         (gst_riff_create_audio_template_caps):
26043         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
26044           Fix for unaligned RIFF files (i.e. where all the chunks together
26045           in a LIST chunk are not of the same size as the size given in
26046           the LIST chunk header). Fixes several odd WAVE files. Also fix
26047           ADPCM (block_align property) in audio, so that wavparse based
26048           on this works now as it used to stand-alone.
26049
26050 2004-05-09  Edward Hervey  <bilboed@bilboed.com>
26051
26052         reviewed by Benjamin Otte  <otte@gnome.org>
26053
26054         * ext/a52dec/gsta52dec.c:
26055         * ext/divx/gstdivxdec.c:
26056         * ext/divx/gstdivxenc.c:
26057         * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
26058         * ext/faac/gstfaac.c: (gst_faac_base_init):
26059         * ext/faad/gstfaad.c: (gst_faad_base_init):
26060         * ext/ivorbis/vorbisfile.c:
26061         * ext/lame/gstlame.c:
26062         * ext/libfame/gstlibfame.c:
26063         * ext/mpeg2enc/gstmpeg2enc.cc:
26064         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
26065         * ext/sidplay/gstsiddec.cc:
26066         * ext/speex/gstspeexdec.c:
26067         * ext/speex/gstspeexenc.c:
26068         * ext/xvid/gstxviddec.c:
26069         * ext/xvid/gstxvidenc.c:
26070           correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
26071           (fixes #142193)
26072
26073 2004-05-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26074
26075         * ext/alsa/gstalsa.c: (device_list),
26076         (gst_alsa_class_probe_devices):
26077         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
26078           Fix alsa oddness in mixer after the combination of using mixer
26079           in source/sink elements and using hw:x,y instead of just hw:x.
26080
26081 2004-05-09  Benjamin Otte  <otte@gnome.org>
26082
26083         * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
26084         (gst_wavparse_create_sourcepad):
26085           make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
26086           sourcepads
26087
26088 2004-05-09  Benjamin Otte  <otte@gnome.org>
26089
26090         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
26091           allow discont events before caps nego
26092
26093 2004-05-08  Benjamin Otte  <otte@gnome.org>
26094
26095         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
26096           don't leak events
26097
26098 2004-05-08  Benjamin Otte  <otte@gnome.org>
26099
26100         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
26101         (gst_level_change_state), (gst_level_init):
26102         * gst/level/gstlevel.h:
26103           figure out if we're initialized directly instead of keeping a
26104           variable that's wrong in 90% of cases
26105           don't initialize pads and then leak them and use a new unitialized
26106           pad. (fixes #142084)
26107           these were bugs so n00bish I didn't find them for an hour :/
26108
26109 2004-05-08 Iain <iain@prettypeople.org>
26110
26111         * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
26112         * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
26113         (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
26114         return the length that was read.
26115         (gst_riff_read_strf_auds): Allow fmt tags as well.
26116
26117 2004-05-07  David Schleef  <ds@schleef.org>
26118
26119         * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
26120         signed char assumption in faad.h.
26121
26122 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26123
26124         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
26125           Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
26126
26127 2004-05-07  Colin Walters  <walters@redhat.com>
26128
26129         * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
26130         * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
26131         function.
26132         * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
26133         Add dispose function.
26134
26135 2004-05-08  Jan Schmidt  <thaytan@mad.scientist.com>
26136         * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
26137           Fix caps nego and pad templates. RGB mode caps should
26138           work now.
26139         * ext/dvdnav/gst-dvd:
26140           Move mpeg2dec inside the thread because otherwise the
26141           queue rejects cap changes mid-stream
26142         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
26143         (gst_mpeg2dec_flush_decoder):
26144           For mpeg2dec > 0.4.0, call the flush function instead of
26145           manually extracting all in-flight frames.
26146         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
26147         (gst_dv1394src_init), (gst_dv1394src_iso_receive):
26148           Change mime type video/dv go video/x-dv to match the
26149           rest of gst-plugins
26150
26151 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26152
26153         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
26154         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
26155         (gst_alsa_sink_class_init):
26156         * ext/alsa/gstalsasink.h:
26157         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
26158         (gst_alsa_src_class_init):
26159         * ext/alsa/gstalsasrc.h:
26160           Make alsasink/src a subclass of alsamixer so that mixer stuff
26161           shows up in gst-rec. Needs some finetuning.
26162
26163 2004-05-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26164
26165         * ext/lame/gstlame.c: (gst_lame_chain):
26166           simplify
26167         * ext/mad/gstmad.c: (gst_mad_handle_event):
26168           fix event leak
26169         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
26170           be able to detect mp3 files < 4096 bytes
26171
26172 2004-05-06  Wim Taymans  <wim@fluendo.com>
26173
26174         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
26175         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
26176         (theora_enc_set_property), (theora_enc_get_property):
26177         Also encode the first frame, cleanup some code.
26178
26179 2004-05-06  Wim Taymans  <wim@fluendo.com>
26180
26181         * ext/mpeg2enc/gstmpeg2enc.cc:
26182         Forward events first before deciding that negotiation was
26183         not performed.
26184
26185 2004-05-06  Wim Taymans  <wim@fluendo.com>
26186
26187         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
26188         First process the events before deciding that negotiation
26189         was not performed.
26190
26191 2004-05-06  Wim Taymans  <wim@fluendo.com>
26192
26193         * ext/theora/Makefile.am:
26194         * ext/theora/theora.c: (plugin_init):
26195         * ext/theora/theoradec.c: (theora_dec_change_state):
26196         * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
26197         (gst_theora_enc_class_init), (gst_theora_enc_init),
26198         (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
26199         (theora_enc_chain), (theora_enc_change_state),
26200         (theora_enc_set_property), (theora_enc_get_property):
26201         Added a theora encoder, grouped the encoder and decoder into the
26202         same plugin.
26203
26204 2004-05-05  Thomas Vander Stichele  <thomas at apestaart dot org>
26205
26206         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26207         (gst_jpegenc_chain):
26208         fix DURATION on outgoing buffers
26209         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
26210         debug using time formats
26211         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
26212         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
26213         (gst_xvimagesink_sink_link):
26214         windows with width/height 0 generate X errors, so don't allow them
26215
26216 2004-05-05  Wim Taymans  <wim@fluendo.com>
26217
26218         * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
26219         (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
26220         (gst_mpeg2dec_negotiate_format):
26221         * ext/mpeg2dec/gstmpeg2dec.h:
26222           removed the static pad template so that we can add the
26223           more accurate framerate value to the caps.
26224
26225
26226 2004-05-04  Benjamin Otte  <otte@gnome.org>
26227
26228         * configure.ac:
26229           check for kdemacros.h, too (should fix #141821)
26230         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
26231           don't crash if no header was sent, but nicely error out (fixes part
26232           of #141554)
26233
26234 2004-05-04  Wim Taymans  <wim@fluendo.com>
26235
26236         * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
26237         parent dispose function to avoid segfault on destroy.
26238
26239 2004-05-04  Thomas Vander Stichele  <thomas at apestaart dot org>
26240
26241         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
26242         (plugin_init):
26243         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
26244         (gst_xvimagesink_sink_link):
26245         clean up debugging caps
26246         also recreate xvimage when format has changed
26247
26248 2004-05-04  Benjamin Otte  <otte@gnome.org>
26249
26250         * ext/libvisual/Makefile.am:
26251         * ext/libvisual/visual.c: (gst_visual_class_init),
26252         (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
26253         (gst_visual_srclink), (gst_visual_chain),
26254         (gst_visual_change_state), (plugin_init):
26255           use a GstAdapter to correctly adapt buffer sizes - allows using a
26256           framerate
26257
26258 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
26259
26260         * sys/v4l/gstv4lelement.h:
26261         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
26262         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
26263         (gst_v4lsrc_buffer_free):
26264         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
26265         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
26266         (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
26267         (gst_v4lsrc_requeue_frame):
26268         move some debugging categories around
26269         query for fps index and set accordingly if found
26270
26271 2004-05-03  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
26272
26273         * ext/lame/gstlame.c:
26274         correct defaults that lame_init puts out of range
26275
26276 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
26277
26278         * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
26279         (gst_divxenc_class_init):
26280         fix range since -1 is the default
26281         * gst/mpeg1sys/gstmpeg1systemencode.c:
26282         (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
26283         * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
26284         (gst_rtjpegdec_chain):
26285         * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
26286         (gst_rtjpegenc_chain):
26287         * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
26288         (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
26289         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
26290         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
26291         * sys/v4l/gstv4lsrc.c:
26292         * sys/v4l/v4l_calls.c: (gst_v4l_open):
26293         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
26294         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
26295         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
26296         * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
26297           remove gst_info calls
26298
26299 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
26300
26301         * Makefile.am:
26302         * po/af.po:
26303         * po/az.po:
26304         * po/en_GB.po:
26305         * po/nl.po:
26306         * po/sr.po:
26307         * po/sv.po:
26308           Updated translations
26309
26310 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
26311
26312         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26313           refactor/comment code
26314
26315 2004-05-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26316
26317         * gst/asfdemux/Makefile.am:
26318         * gst/asfdemux/asfheaders.c:
26319         * gst/asfdemux/asfheaders.h:
26320         * gst/asfdemux/gstasf.c: (plugin_init):
26321         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
26322         (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
26323         (gst_asf_demux_setup_pad):
26324         * gst/asfdemux/gstasfdemux.h:
26325         * gst/asfdemux/gstasfmux.c:
26326         * gst/asfdemux/gstasfmux.h:
26327           Add tagging support to demuxer, split out registration in its own
26328           file instead of in demux (hacky), and prevent having some tables
26329           in our memory multiple times (in asfheaders.h).
26330
26331 2004-05-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26332
26333         * gst/matroska/matroska-demux.c:
26334         (gst_matroska_demux_parse_metadata):
26335         * gst/matroska/matroska-ids.h:
26336           Basic tag reading support.
26337
26338 2004-04-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26339
26340         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
26341           Really detect ac-3 audio.
26342         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
26343           really detect matroska files (off-by-1).
26344
26345 2004-04-30  David Schleef  <ds@schleef.org>
26346
26347         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
26348         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
26349         (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
26350         (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
26351         (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
26352         hackage -- parse a lot more atoms, extract a few tags.  One might even
26353         mistake this for tag support.  Maybe it is.
26354         * gst/qtdemux/qtdemux.h:
26355
26356 2004-04-30  Colin Walters  <walters@verbum.org>
26357
26358         * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
26359
26360 2004-04-30  Thomas Vander Stichele  <thomas at apestaart dot org>
26361
26362         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26363         (gst_ffmpegcolorspace_getcaps):
26364           remove broken nego fix
26365
26366 2004-04-30  Benjamin Otte  <otte@gnome.org>
26367
26368         * configure.ac:
26369         * ext/Makefile.am:
26370         * ext/libvisual/Makefile.am:
26371         * ext/libvisual/visual.c:
26372           add initial support for libvisual (http://libvisual.sourceforge.net)
26373           libvisual is still quite alpha, so expect crashes in there :)
26374
26375 2004-04-29  David Schleef  <ds@schleef.org>
26376
26377         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
26378         (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
26379         up qtdemux to make it spit out codec_data.  Do _not_ look at this
26380         code; you will no longer respect me.
26381
26382 2004-04-29  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
26383
26384         * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
26385         * ext/alsa/gstalsa.h :
26386         change alsa pcm device discovery to find more than 1 device
26387         per card. code review by Ronald.
26388
26389 2004-04-29  David Schleef  <ds@schleef.org>
26390
26391         * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
26392         Add a check for a driver bug on FreeBSD.  (bug #140565)
26393
26394 2004-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
26395
26396         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
26397         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26398         (gst_jpegenc_getcaps):
26399           move format setting to inner loop
26400         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26401         (gst_ffmpegcolorspace_getcaps):
26402           use GST_PAD_CAPS if available so that we use already negotiated
26403           caps
26404         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
26405         (qtdemux_parse_moov), (qtdemux_parse):
26406           extra debugging
26407         * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
26408         * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
26409           move hardcoded path to DEFINE
26410
26411 2004-04-28  David Schleef  <ds@schleef.org>
26412
26413         * gst/speed/gstspeed.c: (speed_parse_caps):  Fix caps parsing.
26414         (bug #140064)
26415
26416 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26417
26418         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
26419           Don't probe for playback device if we're a source element. Fixes
26420           #139658.
26421
26422 2004-04-29  Benjamin Otte  <otte@gnome.org>
26423
26424         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
26425         (gst_id3_tag_chain):
26426           rewrite buffer offset
26427
26428 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26429
26430         * configure.ac:
26431         * ext/Makefile.am:
26432         * ext/dts/Makefile.am:
26433         * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
26434         (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
26435         (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
26436         (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
26437         (gst_dtsdec_loop), (gst_dtsdec_change_state),
26438         (gst_dtsdec_set_property), (gst_dtsdec_get_property),
26439         (plugin_init):
26440         * ext/dts/gstdtsdec.h:
26441           New DTS decoder.
26442         * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
26443         (gst_faad_srcconnect):
26444           Add ESDS atom handling (.m4a).
26445
26446 2004-04-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26447
26448         * ext/divx/gstdivxdec.c: (plugin_init):
26449           Remove comment that makes no sense.
26450         * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
26451           Fix for obvious typo that resulted in warnings during gst-register.
26452         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
26453         (gst_xviddec_sink_link):
26454           Fix caps negotiation a bit better.
26455         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
26456           We call this 'codec_data', not 'esds'.
26457
26458 2004-04-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26459
26460         * gst/monoscope/gstmonoscope.c:
26461           make sure we only provide 256x128
26462         * gst/monoscope/monoscope.c: (monoscope_init):
26463           assert size of 256x128
26464
26465 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
26466
26467         * Makefile.am:
26468         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
26469         (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
26470           fixate to max width and height of device
26471
26472 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
26473
26474         * Makefile.am:
26475         * sys/v4l/gstv4l.c:
26476         * sys/v4l/gstv4lsrc.c:
26477         * sys/v4l/v4l_calls.c:
26478         * sys/v4l/v4lsrc_calls.c:
26479           fix for qc-usb driver which fakes having more than one buffer
26480           by handing the same buffer twice, which confused GStreamer's/v4lsrc
26481           buffer_free override
26482           add debugging
26483
26484 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
26485
26486         * Makefile.am:
26487         * gst/videotestsrc/gstvideotestsrc.c:
26488         (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
26489         (gst_videotestsrc_init), (gst_videotestsrc_get),
26490         (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
26491         * gst/videotestsrc/gstvideotestsrc.h:
26492           add num-buffers property
26493
26494         2004-04-26  Benjamin Otte  <otte@gnome.org>
26495
26496         * ext/mad/gstid3tag.c: (plugin_init):
26497           set id3mux rank to NONE so it doesn't confuse spider
26498           require audio/mpeg,mpegversion=1 in id3mux
26499
26500 2004-04-26  Benjamin Otte  <otte@gnome.org>
26501
26502         * configure.ac:
26503           detect faad correctly as non-working if it's indeed non-working
26504
26505 2004-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
26506
26507         * Makefile.am:
26508         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26509         (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
26510         fix _getcaps so it only negotiates to its supported format
26511
26512 2004-04-25  Benjamin Otte  <otte@gnome.org>
26513
26514         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26515           fix memleak
26516
26517 2004-04-23  Benjamin Otte  <otte@gnome.org>
26518
26519         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
26520           audio/x-raw-int with height rules! not. Now it's depth.
26521
26522 2004-04-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26523
26524         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
26525         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
26526         (gst_wavparse_loop):
26527           Missing variable initialization. Add handling of DVI ADPCM. Fix
26528           mis-parsing of LIST chunks. This works around a bug where we mis-
26529           parse non-aligning LIST chunks (so LIST chunks where the contents
26530           don't align with the actual LIST size). The correct fix is to use
26531           rifflib, I'm not going to fix wavparse - too much work. All this
26532           fixes #104878.
26533
26534 2004-04-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
26535
26536         reviewed by Benjamin Otte  <otte@gnome.org>
26537
26538         * ext/shout/gstshout.c: (gst_icecastsend_change_state):
26539           fix shoutcast not working (fixes #140844)
26540
26541 2004-04-22  Benjamin Otte  <otte@gnome.org>
26542
26543         * ext/hermes/gsthermescolorspace.c:
26544         (gst_hermes_colorspace_caps_remove_format_info):
26545         * gst/colorspace/gstcolorspace.c:
26546         (gst_colorspace_caps_remove_format_info):
26547         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26548         (gst_ffmpegcolorspace_caps_remove_format_info):
26549           s/gst_caps_simplify/gst_caps_do_simplify/
26550
26551 2004-04-22  Benjamin Otte  <otte@gnome.org>
26552
26553         * gst-libs/gst/riff/riff-media.c:
26554         (gst_riff_create_video_caps_with_data):
26555           mpegversion is an int
26556         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
26557           don't try to create pad templates with NULL caps, use any caps
26558           instead.
26559
26560 2004-04-20  David Schleef  <ds@schleef.org>
26561
26562         * ext/sdl/Makefile.am: Link against libgstinterfaces, not
26563         libgstxoverlay.  jmmv@menta.net (Julio M. Merino Vidal)
26564         (bug #140384)
26565
26566 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
26567
26568         reviewed by David Schleef
26569
26570         * ext/mad/gstid3tag.c: Add stdlib.h
26571         * gst/rtp/gstrtpgsmenc.c: same
26572         * gst/tags/gstid3tag.c: same
26573         * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
26574         * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
26575         GST_DISABLE_LOADSAVE use.
26576         * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
26577         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
26578         * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
26579         atol(3)).
26580         * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
26581         * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
26582         strtoul(3)).
26583         * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
26584         * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
26585         $(ID3_CFLAGS).
26586         * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
26587         $(LIBFAME_CFLAGS).
26588
26589 2004-04-20  David Schleef  <ds@schleef.org>
26590
26591         * gst/realmedia/rmdemux.c:  This was supposed to part of the
26592         last checkin.  Same idea.
26593
26594 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
26595
26596         reviewed by David Schleef
26597
26598         * configure.ac: bump required gstreamer version to 0.8.1.1
26599         because of following changes [--ds]
26600
26601         * gst-libs/gst/riff/riff-read.c:  Include gst/gstutils.h.
26602         (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
26603         (gst_riff_read_header):  Use GST_READ_UINT*
26604         macros to access possibly unaligned memory.
26605
26606         * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
26607         (mp3_type_find):  Use GST_READ_UINT*
26608         macros to access possibly unaligned memory.
26609         (mp3_type_find, mpeg1_parse_header, qt_type_find)
26610         (speex_type_find): Likewise
26611
26612         * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
26613
26614         * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
26615         (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
26616         (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
26617         (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
26618         (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
26619         (qtdemux_tree_get_sibling_by_type):  Use GST_READ_UINT*
26620         macros to access possibly unaligned memory.
26621
26622         * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
26623         Likewise.
26624
26625         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
26626         (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
26627
26628         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
26629         Likewise.
26630
26631         * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
26632         (gst_mpeg2subt_chain_subtitle): Likewise.
26633
26634         * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
26635         (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
26636         Likewise.
26637
26638         * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
26639         Likewise.
26640
26641         * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
26642         Likewise.
26643
26644         * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
26645         Likewise.
26646
26647 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
26648
26649         * configure.ac:
26650           update required version of GStreamer because of GST_TIME_FORMAT
26651
26652 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26653
26654         * ext/mad/gstid3tag.c: (gst_id3_tag_init):
26655           remove leftover g_print
26656         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
26657           don't try setting only a subset of the caps. We don't want to kill
26658           autoplugging on purpose
26659
26660 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
26661
26662         * sys/ximage/ximagesink.c: (plugin_init):
26663         * sys/xvimage/xvimagesink.c: (plugin_init):
26664           add debugging categories
26665
26666 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
26667
26668         * po/en_GB.po:
26669         * po/LINGUAS:
26670           Adding en_GB translation (Gareth Owen)
26671
26672 2004-04-20  David Schleef  <ds@schleef.org>
26673
26674         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
26675         (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
26676         (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
26677         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
26678         A number of new features and hacks to extract the esds atom and
26679         put it into the caps.  (bug #137724)
26680
26681 2004-04-19  David Schleef  <ds@schleef.org>
26682
26683         * gconf/Makefile.am: Fix for non-GNU make
26684         * gst-libs/gst/Makefile.am: Change directory order to handle
26685         GstPlay linking with gstinterfaces
26686         * gst-libs/gst/audio/make_filter: make use of tr portable
26687         * gst-libs/gst/play/Makefile.am: Add intended \
26688         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
26689         (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
26690         function prototype instead of void *.
26691         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
26692         macro.
26693         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26694         (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
26695         * gst/videofilter/make_filter: make use of tr portable
26696         * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
26697
26698 2004-04-19  Thomas Vander Stichele  <thomas at apestaart dot org>
26699
26700         * po/LINGUAS:
26701         * po/uk.po:
26702           Added Ukrainian translation (Maxim V. Dziumanenko)
26703
26704 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26705
26706         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
26707         (gst_gsmdec_link), (gst_gsmdec_chain):
26708           Fix capsnego, simplify chain function slightly.
26709         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
26710           Add GSM.
26711
26712 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26713
26714         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
26715         (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
26716         (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
26717           Hack to make wavparse work with spider (always -> sometimes pad).
26718           Fixes #135862 && #140411.
26719
26720 2004-04-18  Benjamin Otte  <otte@gnome.org>
26721
26722         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
26723         (gst_osselement_rate_probe_check),
26724         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
26725           get rid of \n in debug output
26726
26727 2004-04-17  Iain <iain@prettypeople.org>
26728
26729         * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
26730         not just EOS.
26731
26732 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26733
26734         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
26735         (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
26736         (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
26737         (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
26738         (gst_id3_tag_src_link), (gst_id3_tag_chain),
26739         (gst_id3_tag_change_state), (plugin_init):
26740           deprecate id3tag element and replace with id3demux/id3mux.
26741           great side effect: this ugly file is now even uglier, yay!
26742         * ext/mad/gstmad.h:
26743           remove non-available function
26744           update for new get_type
26745
26746 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26747
26748         * configure.ac:
26749           require mpeg2dec >= 0.4.0
26750
26751 2004-04-17  Benjamin Otte  <otte@gnome.org>
26752
26753         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
26754         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
26755         (gst_xvimagesink_set_xwindow_id):
26756           call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
26757           assorted cleanup fixes.
26758
26759 2004-04-16  David Schleef  <ds@schleef.org>
26760
26761         * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
26762         * sys/xvimage/xvimagesink.h: same
26763
26764 2004-04-16  Thomas Vander Stichele  <thomas at apestaart dot org>
26765
26766         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
26767           Fix GST_ELEMENT_ERROR with (NULL)
26768
26769 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26770
26771         * gst-libs/gst/riff/riff-media.c:
26772         (gst_riff_create_video_caps_with_data):
26773           Add div[3456] as fourccs for DivX 3 (fixes #140137).
26774
26775 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26776
26777         * gst-libs/gst/riff/riff-media.c:
26778         (gst_riff_create_video_caps_with_data),
26779         (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
26780         (gst_riff_create_video_template_caps),
26781         (gst_riff_create_audio_template_caps):
26782         * gst-libs/gst/riff/riff-media.h:
26783         * gst-libs/gst/riff/riff-read.c:
26784         (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
26785         * gst-libs/gst/riff/riff-read.h:
26786         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
26787           Add MS RLE support. I added some functions to read out strf chunks
26788           into strf chunks and the data behind it. This is usually color
26789           palettes (as in RLE, but also in 8-bit RGB). Also use those during
26790           caps creation. Lastly, add ADPCM (similar to wavparse - which
26791           should eventually be rifflib based).
26792         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
26793         (gst_matroska_demux_init), (gst_matroska_demux_reset):
26794         * gst/matroska/matroska-demux.h:
26795           Remove placeholders for some prehistoric tagging system. Didn't add
26796           support for any tag system really anyway.
26797         * gst/qtdemux/qtdemux.c:
26798           Add support for audio/x-m4a (MPEG-4) through spider.
26799         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
26800         (gst_wavparse_loop):
26801           ADPCM support (#135862). Increase max. buffer size because we
26802           cannot split buffers for ADPCM (screws references) and I've seen
26803           files with 2048 byte chunks. 4096 seems safe for now.
26804
26805 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
26806
26807         * configure.ac: bump nano to 1
26808
26809 === release 0.8.1 ===
26810
26811 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
26812
26813         * configure.ac: releasing 0.8.1, "Comforting Sounds"
26814
26815 2004-04-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26816
26817         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26818           Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
26819           Fixes #140058
26820
26821 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
26822
26823         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
26824           lower rank of dvddemux so that it's not used for mpeg playback.
26825
26826 2004-04-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26827
26828         * configure.ac:
26829           save libs correctly when checking mad
26830
26831 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
26832
26833         * ext/mad/gstid3tag.c: (plugin_init):
26834           lower rank of id3tag as proposed by Benjamin.  Fixes #139926.
26835
26836 2004-04-13  David Schleef  <ds@schleef.org>
26837
26838         * common/m4/gst-feature.m4: Call -config scripts with
26839         --plugin-libs if it is supported.
26840         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
26841         JPEG images are image/jpeg.
26842         * gst/debug/Makefile.am:
26843         * gst/debug/negotiation.c: (gst_negotiation_class_init),
26844         (gst_negotiation_getcaps), (gst_negotiation_pad_link),
26845         (gst_negotiation_update_caps), (gst_negotiation_get_property),
26846         (gst_negotiation_plugin_init): Add a property that acts like
26847         filter caps.
26848         * testsuite/gst-lint:  Move license checking to be a standard
26849         test.
26850
26851 2004-04-13  David Schleef  <ds@schleef.org>
26852
26853         * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
26854         patch from Sebastien Cote (bug #139958)
26855
26856 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
26857
26858         * examples/gstplay/Makefile.am:
26859         * examples/gstplay/player.c: (main):
26860           make the commandline player example use gconf settings
26861
26862 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
26863
26864         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
26865         (gst_cacasink_sinkconnect), (gst_cacasink_init),
26866         (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
26867           init/end library during state transition, not object
26868           creation/disposal.  get rid of custom dispose handler.
26869
26870
26871 2004-04-12  Christian Schaller <Uraeus@gnome.org>
26872
26873         * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
26874         be a symlink
26875
26876 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26877
26878         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
26879           Handle JUNK chunks inside data section. Prevents warnings.
26880
26881 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26882
26883         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
26884         (gst_riff_create_video_template_caps):
26885           Add MS video v1.
26886         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
26887         (gst_avi_demux_stream_data):
26888           Add support for "rec-list" chunks.
26889
26890 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26891
26892         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
26893           Fix another codecname mismatch.
26894
26895 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26896
26897         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26898           Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
26899           so that MJPEG plays back.
26900
26901 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26902
26903         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
26904         (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
26905         * gst/mpeg1videoparse/gstmp1videoparse.h:
26906           Fix for some slight mis-cuts in buffer parsing, and for some
26907           potential overflows or faults-causers. Adds disconts. Also fixes
26908           #139105 while we're at it.
26909
26910 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26911
26912         * configure.ac:
26913         * sys/v4l2/gstv4l2element.h:
26914           Workaround for missing struct v4l2_buffer declaration in Suse 9
26915           and Mandrake 10 linux/videodev2.h header file (#135919).
26916
26917 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26918
26919         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
26920           Bail out if no filename was given.
26921
26922 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26923
26924         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
26925         (gst_v4l2_fourcc_from_structure):
26926           Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
26927           Y41B somewhere).
26928
26929 2004-04-09  Benjamin Otte  <otte@gnome.org>
26930
26931         * ext/gnomevfs/gstgnomevfssink.c:
26932         (_gst_boolean_allow_overwrite_accumulator),
26933         (gst_gnomevfssink_class_init):
26934           fix erase signal - if any handler returns false the file will not be
26935           overwritten. If no handler is connected, the file will not be
26936           overwritten either.
26937           renamed signal to "allow-overwrite"
26938         * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
26939           free string when adding it to ID3 failed
26940         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
26941           unref event when done
26942         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26943           free caps
26944         * gst/typefind/gsttypefindfunctions.c:
26945         (mpeg_video_stream_type_find):
26946           fix invalid read
26947
26948 2004-04-08  David Schleef  <ds@schleef.org>
26949
26950         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26951         (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
26952
26953 2004-04-08  David Schleef  <ds@schleef.org>
26954
26955         * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
26956         we don't support (bug #139532)
26957
26958 2004-04-07  Thomas Vander Stichele  <thomas at apestaart dot org>
26959
26960         * ext/mad/gstmad.c: (gst_mad_handle_event),
26961         (gst_mad_check_caps_reset), (gst_mad_chain),
26962         (gst_mad_change_state):
26963           only set explicit caps if they haven't been set before for
26964           this stream.  MPEG-audio sample rate/channels aren't allowed
26965           to change in-stream.
26966           Fixes #139382
26967
26968 2004-04-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26969
26970         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
26971         (_gst_boolean_did_something_accumulator),
26972         (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
26973         (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
26974         (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
26975         (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
26976         (gst_gnomevfssink_change_state):
26977           Fix erase signal. Don't erase by default. Remove handoff signal.
26978           Remove erase property. Don't segfault. General cleanup.
26979
26980 2004-04-07  Benjamin Otte  <otte@gnome.org>
26981
26982         * gst-libs/gst/gconf/test-gconf.c: (main):
26983           add missing gst_init
26984
26985 2004-04-07  Benjamin Otte  <otte@gnome.org>
26986
26987         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
26988           free the mutexes, too
26989
26990 2004-04-07  Benjamin Otte  <otte@gnome.org>
26991
26992         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
26993           actually free the URI string
26994         * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
26995           compute offset correctly when passing discont events
26996         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
26997           don't leak discont events
26998         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
26999           add some missing breaks so caps aren't copied randomly
27000         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
27001           if we realloc memory, we better use it
27002
27003 2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
27004
27005         * ext/mad/gstmad.c: (normal_seek):
27006           fix GST_FORMAT_TIME usage
27007
27008 2004-04-05  David Schleef  <ds@schleef.org>
27009
27010         * ext/kio/kiosrc.cpp:  Undefine KDE_DEPRECATED so we can use
27011         a deprecated function (hack!)
27012
27013 2004-04-05  Benjamin Otte  <otte@gnome.org>
27014
27015         * ext/esd/esdmon.c: (gst_esdmon_get):
27016           fix nonterminated vararg and memleak
27017
27018 2004-04-05  Benjamin Otte  <otte@gnome.org>
27019
27020         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
27021         (gst_ladspa_init), (gst_ladspa_force_src_caps),
27022         (gst_ladspa_set_property), (gst_ladspa_get_property),
27023         (gst_ladspa_instantiate), (gst_ladspa_activate),
27024         (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
27025           clean up debugging
27026
27027 2004-04-05  Stefan Kost <kost@imn.htwk-leipzig.de>
27028
27029         reviewed by Benjamin Otte  <otte@gnome.org>
27030
27031         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
27032           check for broken LADSPA parameters (fixes #138635)
27033
27034 2004-04-05  Benjamin Otte  <otte@gnome.org>
27035
27036         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
27037           advertise buffer-frames correctly on sinkpads
27038
27039 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
27040
27041         * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
27042         (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
27043         (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
27044         (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
27045         (gst_mad_check_caps_reset), (gst_mad_chain):
27046         add more debugging, only reset caps when we're not in error state
27047
27048 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
27049
27050         * ext/mad/gstmad.c: add debugging category, comment + cleanups
27051
27052 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
27053
27054         reviewed by Benjamin Otte  <otte@gnome.org>
27055
27056         * configure.ac:
27057           fix == in test(1) operator
27058
27059 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
27060
27061         reviewed by Benjamin Otte  <otte@gnome.org>
27062
27063         * configure.ac:
27064           fix --export-symblos-regex to a working regex.
27065
27066 2004-04-04  Benjamin Otte  <otte@gnome.org>
27067
27068         * sys/oss/.cvsignore:
27069           add for oss_probe
27070
27071 2004-04-03  Tim-Phillip Müller <t.i.m@zen.co.uk>
27072
27073         reviewed by Benjamin Otte  <otte@gnome.org>
27074
27075         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
27076           add missing 'new_media' argument (fixes #138168)
27077         * gst/matroska/matroska-demux.c:
27078         (gst_matroska_demux_handle_seek_event):
27079           add vararg terminator (fixes #138169)
27080
27081 2004-04-02  David Schleef  <ds@schleef.org>
27082
27083         * ext/gdk_pixbuf/Makefile.am:  Make sure gstgdkanimation.h is
27084         disted (bug #138914)
27085
27086 2004-04-01  Benjamin Otte  <otte@gnome.org>
27087
27088         * ext/alsa/gstalsa.c: (gst_alsa_change_state),
27089         (gst_alsa_close_audio):
27090           handle case better where a soundcard can't pause
27091         * ext/ogg/gstoggdemux.c:
27092           don't crash when we get events but don't have pads yet
27093
27094 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
27095
27096         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
27097           throw an error if we couldn't probe any caps.
27098
27099 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
27100
27101         * ext/dvdnav/gst-dvd:
27102         Add a really simple sample DVD player
27103
27104 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
27105
27106         * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
27107         (gst_a52dec_push), (gst_a52dec_handle_event),
27108         (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
27109         (gst_a52dec_change_state):
27110         * ext/a52dec/gsta52dec.h:
27111           Use a debug category, Output timestamps correctly
27112           Emit tag info, Handle events, tell liba52dec about cpu
27113           capabilities so it can use MMX etc.
27114         * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
27115           Fix a crasher accessing invalid memory
27116         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
27117         (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
27118         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
27119         (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
27120         (dvdnavsrc_query):
27121           Some support for byte-format seeking.
27122           Small fixes for still frames and menu button overlays
27123         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
27124         (gst_mpeg2dec_alloc_buffer):
27125           Use a debug category. Adjust the report level of several items to
27126           LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
27127           so it doesn't lose the GstBuffer pointer
27128         * gst/debug/Makefile.am:
27129         * gst/debug/gstdebug.c: (plugin_init):
27130         * gst/debug/gstnavseek.c: (gst_navseek_get_type),
27131         (gst_navseek_base_init), (gst_navseek_class_init),
27132         (gst_navseek_init), (gst_navseek_seek),
27133         (gst_navseek_handle_src_event), (gst_navseek_set_property),
27134         (gst_navseek_get_property), (gst_navseek_chain),
27135         (gst_navseek_plugin_init):
27136         * gst/debug/gstnavseek.h:
27137           Add the navseek debug element for seeking back and forth in a
27138           video stream using arrow keys.
27139         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
27140         (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
27141         (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
27142         (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
27143         (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
27144         (gst_mpeg2subt_parse_header), (gst_get_nibble),
27145         (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
27146         (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
27147         (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
27148         (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
27149         * gst/mpeg2sub/gstmpeg2subt.h:
27150           Pretty much a complete rewrite. Now a loopbased element. May still
27151           require work to properly synchronise subtitle buffers.
27152         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
27153         (gst_dvd_demux_send_subbuffer):
27154         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
27155           Don't attempt to create subbuffers of size 0
27156           Reduce a couple of error outputs to warnings.
27157         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
27158         (gst_y4mencode_chain):
27159         Output the y4m frame header correctly.
27160
27161 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
27162
27163         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
27164           throw errors instead of allowing SIGFPE
27165
27166 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
27167
27168         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
27169         (gst_gconf_render_bin_from_key):
27170           leak plugging and style fixing
27171
27172 2004-03-31  David Schleef  <ds@schleef.org>
27173
27174         * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
27175         (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
27176         (bug #138225)
27177         * gst/debug/Makefile.am:
27178         * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
27179         * gst/debug/gstdebug.c: (plugin_init):  Merge elements into one
27180         plugin.
27181         * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
27182         (gst_negotiation_base_init), (gst_negotiation_class_init),
27183         (gst_negotiation_init), (gst_negotiation_getcaps),
27184         (gst_negotiation_pad_link), (gst_negotiation_chain),
27185         (gst_negotiation_set_property), (gst_negotiation_get_property),
27186         (gst_negotiation_plugin_init):  New element to talk about random
27187         negotiation things happening in a pipeline.
27188
27189 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
27190
27191         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
27192           fix integer addition with help of Stefan Kost
27193
27194 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
27195
27196         * po/nl.po: updated Dutch translation (Elros Cyriatan)
27197
27198 2004-03-30  David Schleef  <ds@schleef.org>
27199
27200         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
27201         (gst_mpeg2dec_negotiate_format):  Handle Y42B-format MPEG
27202         video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
27203         (bug #137504)
27204         * ext/mpeg2dec/gstmpeg2dec.h:
27205
27206 2004-03-30  David Schleef  <ds@schleef.org>
27207
27208         * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
27209
27210 2004-03-30  David Schleef  <ds@schleef.org>
27211
27212         * tools/gst-launch-ext-m.m:  Applied patch from gnome@flyn.org (W.
27213         Michael Petullo) to handle .mov
27214
27215 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
27216
27217         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
27218         (gst_osselement_rate_check_rate):
27219           probe caps correctly for sound cards that only support one format
27220
27221 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
27222
27223         * ext/kio/kiosrc.cpp: (process_events):
27224           update handling event processing if inside KDE - untested
27225
27226 2004-03-29  David Schleef  <ds@schleef.org>
27227
27228         * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
27229         by 2 to not interfere with other colorspaces.
27230         * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
27231         * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
27232         one to not interfere with ffmpeg_colorspace.
27233
27234 2004-03-29  David Schleef  <ds@schleef.org>
27235
27236         * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
27237         aren't in the caps.
27238         * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
27239         * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
27240
27241 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
27242
27243         * gst-libs/gst/riff/riff-media.c:
27244           fail on error, don't try to set stuff on NULL caps
27245
27246 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
27247
27248         * configure.ac:
27249         * ext/Makefile.am:
27250         * ext/kio/Makefile.am:
27251         * ext/kio/kioreceiver.cpp:
27252         * ext/kio/kioreceiver.h:
27253         * ext/kio/kiosrc.cpp:
27254         * ext/kio/kiosrc.h:
27255           add experimental kiosrc plugin
27256         * ext/alsa/gstalsaplugin.c: (plugin_init):
27257           initialize debugging category only when we're sure registering the
27258           plugins worked.
27259
27260 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
27261
27262         * examples/gstplay/player.c: (main):
27263         * gst-libs/gst/play/play.c: (gst_play_class_init),
27264         (gst_play_set_location), (gst_play_set_data_src),
27265         (gst_play_set_video_sink), (gst_play_set_audio_sink),
27266         (gst_play_set_visualization), (gst_play_connect_visualization):
27267           check return values of element_set_state and return FALSE where
27268           failed
27269
27270 2004-03-29  Benjamin Otte  <otte@gnome.org>
27271
27272         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
27273           try harder to check if an event is really a discont
27274
27275 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
27276
27277         * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
27278         * po/az.po:
27279
27280 2004-03-28  Benjamin Otte  <otte@gnome.org>
27281
27282         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
27283         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
27284         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
27285           get rid of non-standard "..." ranges in case statements.
27286
27287 2004-03-27  Martin Soto  <martinsoto@users.sourceforge.net>
27288
27289         * gst/mpegstream/gstmpegdemux.c:
27290         * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
27291         specific functionality split to the new dvddemux element.
27292         * gst/mpegstream/gstdvddemux.c:
27293         * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
27294         streams, derived from mpegdemux.
27295         * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
27296         up. SCR based timestamp rewriting can be turned off (will probably
27297         completely disappear soon).
27298         * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
27299         hacking. General cleanup. All printf statements replaced by
27300         debugging messages. Almost complete libdvdnav support.
27301         (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
27302         by events. New properties for audio and subpicture languages.
27303         (dvdnavsrc_update_highlight): Now uses events.
27304         (dvdnavsrc_user_op): Cleaned up.
27305         (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
27306         based). Lots of cleanup, and propper support for most libdvdnav
27307         events.
27308         (dvdnavsrc_make_dvd_event): New function.
27309         (dvdnavsrc_make_dvd_nav_packet_event): New function.
27310         (dvdnavsrc_make_clut_change_event): New function.
27311
27312 2004-03-26  Benjamin Otte  <otte@gnome.org>
27313
27314         * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
27315           fix bug where typefinding would claim it's theora whenever less then
27316           7 bytes of data were available
27317
27318 2004-03-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27319
27320         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
27321         (gst_alawdec_base_init), (gst_alawdec_class_init),
27322         (gst_alawdec_init), (gst_alawdec_chain):
27323         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
27324         (gst_alawenc_base_init), (gst_alawenc_class_init),
27325         (gst_alawenc_init), (gst_alawenc_chain):
27326         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
27327         (gst_mulawdec_base_init), (gst_mulawdec_class_init),
27328         (gst_mulawdec_init), (gst_mulawdec_chain):
27329         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
27330         (gst_mulawenc_base_init), (gst_mulawenc_class_init),
27331         (gst_mulawenc_init), (gst_mulawenc_chain):
27332           Fix capsnego in all four, remove the unused property functions and
27333           simplify the chain functions slightly. I guess we could use macros
27334           or something similar for those, since the code is so similar, but
27335           I'm currently too lazy...
27336
27337 2004-03-24  David Schleef  <ds@schleef.org>
27338
27339         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
27340         (gst_osselement_close_audio), (gst_osselement_probe_caps),
27341         (gst_osselement_get_format_structure),
27342         (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
27343         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
27344         (gst_osselement_rate_int_compare): Add code to handle rate probing
27345         (bug #120883)
27346         * sys/oss/gstosselement.h: same
27347         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
27348         Use rate probing provided by osselement.
27349         * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
27350
27351 2004-03-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27352
27353         * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
27354         (gst_xvidenc_get_property):
27355           ulong/int mess-up.
27356
27357 2004-03-24  David Schleef  <ds@schleef.org>
27358
27359         * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
27360         (gst_speexdec_init):
27361         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
27362         (gst_speexenc_init):  Create the pad template correctly (from
27363         the static pad template, not a NULL pointer.)
27364
27365 2004-03-25  Benjamin Otte  <otte@gnome.org>
27366
27367         * gst/debug/Makefile.am:
27368         * gst/debug/breakmydata.c:
27369           add element that quasi-randomly changes bytes in the stream.
27370           Intended use is robustness checking of demuxers and decoders in
27371           media tests.
27372
27373 2004-03-24  Benjamin Otte  <otte@gnome.org>
27374
27375         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
27376         (gst_alsa_probe_hw_params):
27377         * ext/alsa/gstalsa.h:
27378           debugging output fixes
27379
27380 2004-03-24  Benjamin Otte  <otte@gnome.org>
27381
27382         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
27383           don't g_return_if_fail if element is PLAYING, fail silently as every
27384           other element.
27385         * gst/effectv/gstquark.c: (gst_quarktv_chain):
27386           only fix needed for cast lvalue issues in gst-plugins
27387         * gst/volenv/gstvolenv.c: (gst_volenv_init):
27388           add proxy_getcaps
27389
27390 2004-03-24  Benjamin Otte  <otte@gnome.org>
27391
27392         * gst/level/gstlevel.c: (gst_level_init):
27393           add proxying getcaps function, so level doesn't advertise impossible
27394           caps
27395
27396 2004-03-24  David Schleef  <ds@schleef.org>
27397
27398         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
27399         (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
27400         (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
27401         (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
27402         (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
27403         (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
27404         (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
27405         (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
27406         (qtdemux_parse_tree), (qtdemux_parse_trak):  Fix debugging
27407         messages.  Divide the chunk size by the compression ratio
27408         (needed for MACE audio)
27409
27410 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27411
27412         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
27413           Fix buffer overflow read error.
27414
27415 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27416
27417         * ext/alsa/gstalsa.h:
27418           Remove unused entry.
27419         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
27420           Add cinepak.
27421         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
27422         (gst_videodrop_link), (gst_videodrop_chain):
27423           Fix, sort of. Was horribly broken with new capsnego. Bah...
27424
27425 2004-03-23  Jeremy Simon  <jesimon@libertysurf.fr>
27426
27427         * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
27428         (plugin_init):
27429         Add a monkeysaudio typefind function
27430
27431 2004-03-23  Johan Dahlin  <johan@gnome.org>
27432
27433         * gst-libs/gst/play/play.c (gst_play_audio_fixate)
27434         (gst_play_video_fixate): Check so the structure has the field
27435         before trying to fixate them, this makes it possible to have
27436         fakesinks for video and audio output without printing errors on
27437         the output console.
27438
27439 2004-03-22  David Schleef  <ds@schleef.org>
27440
27441         * sys/oss/Makefile.am:
27442         * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
27443         (check_rate), (add_rate):  Rate probing test app.
27444
27445 2004-03-21  Benjamin Otte  <otte@gnome.org>
27446
27447         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
27448         (_fixate_caps_to_int), (gst_audio_convert_fixate):
27449           add a fixation function that pretty much does the right thing (fixes
27450           #137556)
27451
27452 2004-03-20  David I. Lehn  <dlehn@users.sourceforge.net>
27453
27454         * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
27455
27456 2004-03-20  Tim-Phillip Müller <t.i.m@zen.co.uk>
27457
27458         reviewed by: Benjamin Otte  <otte@gnome.org>
27459
27460         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
27461           terminate gst_event_new_discontinuous correctly (fixes parts of
27462           #137711)
27463
27464 2004-03-19  David Schleef  <ds@schleef.org>
27465
27466         * gst-libs/gst/Makefile.am:  Enable xoverlay unconditionally,
27467         since it doesn't depend on X, and it's part of our ABI.
27468
27469 2004-03-19  Iain <iain@prettypeople.org>
27470
27471         * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
27472         is_int in the structure, not the local variable.
27473
27474 2004-03-19  David Schleef  <ds@schleef.org>
27475
27476         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
27477         (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
27478         (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
27479         Improvements in caps negotiation.
27480
27481 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
27482
27483         * po/LINGUAS:
27484         * po/af.po:
27485           adding Afrikaans (Petri Jooste)
27486
27487 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
27488
27489         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27490         (gst_ffmpegcolorspace_chain):
27491         throw error instead of g_critical (#137588)
27492
27493 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
27494
27495         * Makefile.am:
27496         * configure.ac:
27497           dist common and m4 correctly
27498         * po/sv.po:
27499
27500 2004-03-17  David Schleef  <ds@schleef.org>
27501
27502         * pkgconfig/gstreamer-media-info.pc.in:  Add Version.
27503         (bug #137348)
27504
27505 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
27506
27507         * po/LINGUAS:
27508         * po/sv.po:
27509           adding Swedish translation (Christian Rose)
27510
27511 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
27512
27513         * Makefile.am: use release.mak
27514
27515 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
27516
27517         * common/ChangeLog:
27518         * common/gst-autogen.sh:
27519           add some explanation about the version detection
27520         * configure.ac:
27521           fix X check
27522
27523 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
27524
27525         * configure.ac: bump nano to 1
27526
27527 === release 0.8.0 ===
27528
27529 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
27530
27531         * configure.ac: release 0.8.0, "Pharmaceutical Itch"
27532
27533 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
27534
27535         * configure.ac:
27536           update libtool version
27537         * gst-libs/gst/media-info/Makefile.am:
27538           actually use libtool version
27539
27540 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
27541
27542         * configure.ac: fix speex detection to work with 1.0 but not 1.1
27543
27544 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
27545
27546         * configure.ac:
27547         * gst-plugins.spec.in:
27548         * pkgconfig/Makefile.am:
27549         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
27550         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
27551         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
27552         * pkgconfig/gstreamer-libs.pc.in:
27553         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
27554         * pkgconfig/gstreamer-play-uninstalled.pc.in:
27555         * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
27556         * pkgconfig/gstreamer-plugins.pc.in:
27557           remove @VERSION@ from some of the pc files since core and plugins
27558           are decoupled.
27559           created gstreamer-plugins.pc as it's a better name, but keeping
27560           -libs around for now to get fixes upstream done first.
27561
27562 2004-03-15  Julien MOUTTE <julien@moutte.net>
27563
27564         * gst-libs/gst/play/play.c: (gst_play_get_framerate),
27565         (gst_play_get_sink_element): First draft of gst_play_get_framerate.
27566         * gst-libs/gst/play/play.h:
27567
27568 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
27569
27570         * *.c, *.cc: don't mix tabs and spaces
27571
27572 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
27573
27574         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
27575           use the new ffmpegcolorspace
27576         * gst-plugins.spec.in:
27577           package new colorspace and media-info
27578         * configure.ac:
27579         * pkgconfig/Makefile.am:
27580           fix some more disting issues
27581         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
27582         * pkgconfig/gstreamer-media-info.pc.in:
27583           generate media-info pc files
27584
27585 2004-03-15  Johan Dahlin  <johan@gnome.org>
27586
27587         * *.h: Revert indenting
27588
27589 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
27590
27591         * configure.ac:
27592           adding ffmpegcolorspace element
27593         * gst/ffmpegcolorspace/Makefile.am:
27594         * gst/ffmpegcolorspace/avcodec.h:
27595         * gst/ffmpegcolorspace/common.h:
27596         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
27597         * gst/ffmpegcolorspace/dsputil.h:
27598         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
27599         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27600         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
27601         (gst_ffmpeg_caps_to_pix_fmt):
27602         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
27603         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27604         (gst_ffmpegcolorspace_caps_remove_format_info),
27605         (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
27606         (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
27607         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
27608         (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
27609         (gst_ffmpegcolorspace_set_property),
27610         (gst_ffmpegcolorspace_get_property),
27611         (gst_ffmpegcolorspace_register):
27612         * gst/ffmpegcolorspace/imgconvert.c:
27613         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
27614         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
27615         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
27616         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
27617         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
27618         (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
27619         (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
27620         (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
27621         (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
27622         (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
27623         (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
27624         (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
27625         (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
27626         (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
27627         (img_get_alpha_info), (deinterlace_line),
27628         (deinterlace_line_inplace), (deinterlace_bottom_field),
27629         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
27630         * gst/ffmpegcolorspace/imgconvert_template.h:
27631         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
27632         * gst/ffmpegcolorspace/mmx.h:
27633         * gst/ffmpegcolorspace/utils.c: (avcodec_init):
27634           adding ffmpegcolorspace element supplied by Ronald after cleaning
27635           up and pulling in the right bits of upstream source.
27636           I'm sure a better C/compiler wizard could do some cleaning up (for
27637           example use GLIB's malloc stuff), but as a first pass this
27638           works very well
27639
27640 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
27641
27642         * ext/alsa/gstalsa.h:
27643           I assume Ronald forgot to commit the change to have cardname
27644           as a struct member.  Expect some public spanking at the next
27645           opportunity.
27646
27647 2004-03-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27648
27649         * ext/alsa/gstalsa.c: (gst_alsa_get_property),
27650         (gst_alsa_open_audio), (gst_alsa_close_audio):
27651         * ext/alsa/gstalsa.c:
27652           Don't open the device if we're a mixer (= padless).
27653         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
27654         (gst_alsa_mixer_init), (gst_alsa_mixer_open),
27655         (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
27656           Open mixer during state change rather than during object
27657           initialization. Also, get a device name. Currently in a somewhat
27658           hackish fashion, but I didn't really find something better.
27659
27660 2004-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
27661
27662         * *.c, *.h: run gst-indent
27663
27664 2004-03-14  Benjamin Otte  <otte@gnome.org>
27665
27666         * gst/modplug/gstmodplug.cc:
27667         * gst/modplug/gstmodplug.h:
27668           set correct timestamps on outgoing buffers
27669
27670 2004-03-14  Benjamin Otte  <otte@gnome.org>
27671
27672         * gst/modplug/gstmodplug.cc:
27673           handle events - don't do crap when a discont arrives that's not
27674           necessary
27675           This allows correct loading and playback of mods in Rhythmbox
27676
27677 2004-03-14  Benjamin Otte  <otte@gnome.org>
27678
27679         * configure.ac:
27680         * gst-libs/gst/gconf/Makefile.am:
27681         * pkgconfig/Makefile.am:
27682           move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
27683           they get rebuilt properly
27684         * configure.ac:
27685           when checking for vorbis, try pkgconfig first.
27686         * gst/modplug/gstmodplug.cc:
27687           add fixate function
27688
27689 2004-03-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27690
27691         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
27692           Fix for obvious mistake, where we first shift the offset and then
27693           read a samplesize element assuming the old offset. Note that this
27694           part still has something weird, i.e. my movies containing those
27695           don't actually play well, but at least there's something that looks
27696           like sound now.
27697
27698 2004-03-14  Jan Schmidt  <thaytan@mad.scientist.com>
27699         * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
27700         (plugin_init):
27701         Add a typefind function for speex format
27702
27703 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27704
27705         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
27706         (gst_asf_demux_setup_pad):
27707           Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
27708           instead of 0. Reason is simple: some elements have a fps range
27709           of 1-max instead of 0-max. So now ASF video actually works.
27710
27711 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
27712
27713         * po/LINGUAS:
27714         * po/sr.po:
27715           adding serbian as a language
27716
27717 2004-03-13  Benjamin Otte  <otte@gnome.org>
27718
27719         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
27720           return taglist correctly from _get function, don't gst_pad_push it.
27721           (fixes #137042)
27722
27723 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
27724         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
27725
27726 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27727
27728         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
27729         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
27730         (gst_alsa_mixer_track_new):
27731         * ext/alsa/gstalsamixertrack.h:
27732           Fix ancient leftovers... MixerTrack is a GObject.
27733
27734 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27735
27736         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
27737         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
27738           Don't block during probing...
27739
27740 2004-03-12  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27741
27742         * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
27743         (gst_alsa_get_property), (gst_alsa_probe_get_properties),
27744         (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
27745         (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
27746         (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
27747         (gst_alsa_open_audio), (gst_alsa_close_audio):
27748         * ext/alsa/gstalsa.h:
27749           Add propertyprobe interface implementation, add some device-name
27750           property, all this so that it looks good in gnome-volume-control.
27751
27752 2004-03-12  David Schleef  <ds@schleef.org>
27753
27754         * configure.ac: the Hermes library controls hermescolorspace, not
27755         colorspace.
27756         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
27757         (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
27758         not /* */
27759         * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
27760         * ext/sdl/sdlvideosink.h: ditto.
27761         * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
27762
27763 2004-03-12  Benjamin Otte  <otte@gnome.org>
27764
27765         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
27766         (gst_x_overlay_got_xwindow_id):
27767         * gst-libs/gst/xoverlay/xoverlay.h:
27768           replace XID with unsigned long to get rid of the xlibs dependency in
27769           XOverlay (fixes #137004)
27770
27771 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
27772         * gst/effectv/gstaging.c: (gst_agingtv_base_init),
27773         (gst_agingtv_setup):
27774         * gst/effectv/gstdice.c: (gst_dicetv_get_type),
27775         (gst_dicetv_base_init), (gst_dicetv_class_init),
27776         (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
27777         * gst/effectv/gstedge.c: (gst_edgetv_get_type),
27778         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
27779         (gst_edgetv_setup), (gst_edgetv_rgb32):
27780         * gst/effectv/gsteffectv.c:
27781         * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
27782         (gst_quarktv_set_property):
27783         * gst/effectv/gstrev.c: (gst_revtv_get_type),
27784         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
27785         (gst_revtv_setup), (gst_revtv_rgb32):
27786         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
27787         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
27788         (gst_shagadelictv_init), (gst_shagadelictv_setup),
27789         (gst_shagadelictv_rgb32):
27790         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
27791         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
27792         (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
27793         * gst/effectv/gstwarp.c:
27794         Port everything that can be ported to videofilter and fix up the caps.
27795         Can someone with a big-endian machine please check these?
27796
27797 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27798
27799         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
27800         (gst_osssink_chain), (gst_osssink_change_state):
27801           Latest fixes for A/V sync, audio playback and such. This is about
27802           all... MPEG playback issues are mostly related to the async build-
27803           up of MPEG files, I cannot fix that. Use basicgthread to solve it.
27804
27805 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
27806
27807         patch from: Stephane Loeuillet
27808
27809         * configure.ac:
27810           use pkg-config for some libraries, falling back to the old .m4 way
27811           (fixes #131270)
27812         * m4/libdv.m4:
27813           removed
27814
27815 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
27816
27817         * configure.ac:
27818         * tools/Makefile.am:
27819         * tools/Makefile.in:
27820         * tools/gst-launch-ext-m.m:
27821         * tools/gst-launch-ext.1.in:
27822         * tools/gst-visualise-m.m:
27823         * tools/gst-visualise.1:
27824         * tools/gst-visualise.1.in:
27825           reorganizing generation of script tools
27826
27827 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27828
27829         * ext/divx/gstdivxdec.c:
27830           Downgrade priority. We prefer ffdec_mpeg4.
27831         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
27832         (gst_faad_chain), (gst_faad_change_state):
27833           Fix capsnego. Doesn't work for some sounds because we don't have
27834           a 5:1 to stereo element.
27835         * ext/xvid/gstxvid.c: (plugin_init):
27836           Add priority.
27837         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
27838         (gst_osssink_change_state):
27839           Add discont handling.
27840
27841 2004-03-09  Colin Walters  <walters@verbum.org>
27842
27843         * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
27844         conversion.
27845
27846 2004-03-09  Benjamin Otte  <otte@gnome.org>
27847
27848         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
27849           the signals take 2 arguments
27850
27851 2004-03-09  David Schleef  <ds@schleef.org>
27852
27853         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
27854         (gst_alsa_fixate): Add fixate function.  (bug #136686)
27855         * ext/alsa/gstalsa.h:
27856         * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
27857
27858 2004-03-09  Benjamin Otte  <otte@gnome.org>
27859
27860         * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
27861         (gst_mikmod_change_state):
27862         * ext/mikmod/gstmikmod.h:
27863           make mikmod's loop function not loop infinitely and call
27864           gst_element_yield anymore
27865         * gst/modplug/gstmodplug.cc:
27866           fix pad negotiation (fixes #136590)
27867
27868 2004-03-09  David Schleef  <ds@schleef.org>
27869
27870         * ext/lcs/Makefile.am:  Fix so that the lcs colorspace plugin
27871         doesn't conflict with the internal colorspace plugin.
27872         * gst-libs/gst/audio/make_filter:  Use `` instead of $() to
27873         satisfy the crappy-ass shell shipped by a certain vendor.
27874         * gst/videofilter/make_filter: same (bug #135299)
27875
27876 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27877
27878         * configure.ac: bump nano to 1
27879
27880 === release 0.7.6 ===
27881
27882 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27883
27884         * configure.in: releasing 0.7.6, "There"
27885
27886 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27887
27888         * pkgconfig/gstreamer-play-uninstalled.pc.in:
27889         * pkgconfig/gstreamer-play.pc.in:
27890           synchronize the two
27891
27892 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27893
27894         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
27895         (cdparanoia_open), (cdparanoia_event):
27896           fix/add error handling
27897         * po/POTFILES.in:
27898           add cdparanoia source
27899         * tools/Makefile.am:
27900           make scripts executable
27901
27902 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27903
27904         * configure.ac:
27905         * ext/vorbis/Makefile.am:
27906         * sys/Makefile.am:
27907           remove id3types, vorbisfile and xvideosink from the build (#133783)
27908
27909 2004-03-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27910
27911         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
27912           Fix metadata read crash (#136537).
27913
27914 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
27915
27916         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
27917         * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
27918           adding mime types, fixing the one-stop function
27919
27920 2004-03-08  Christian Schaller <Uraeus@gnome.org>
27921
27922         * ext/nas/nassink.c and /ext/nas/nassink.h:
27923         More NAS love from Arwed von Merkatz
27924         So lets all sing 'Can you feel the NAS tonight'
27925
27926 2004-03-08  Christian Schaller <Uraeus@gnome.org>
27927
27928         * tools/gst-launch-ext.in:
27929         Replace vorbisfile with oggdemux/vorbisdec/audioconvert
27930
27931 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
27932
27933         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
27934         (gst_mpeg2dec_init):
27935         remove the user_data pad for now, because it is being used in
27936         fixating causing MPEG playback to fixate on 1000 Hz for playback.
27937         If someone knows how to fix this properly, please do.
27938
27939 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
27940
27941         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27942         (gst_osssink_get_time):
27943         add a warning, IMO this won't get triggered anymore, remove later
27944
27945 2004-03-07  David Schleef  <ds@schleef.org>
27946
27947         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):  Added Cinepak
27948         format (bug #136470)
27949
27950 2004-03-07  Thomas Vander Stichele  <thomas at apestaart dot org>
27951
27952         * gst-libs/Makefile.am:
27953         * gst-libs/gst/media-info/Makefile.am:
27954         * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
27955         (error_callback), (gst_media_info_error_create),
27956         (gst_media_info_error_element), (gmip_init), (gmip_reset),
27957         (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
27958         * gst-libs/gst/media-info/media-info-priv.h:
27959         * gst-libs/gst/media-info/media-info-test.c: (main):
27960         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
27961         (gst_media_info_class_init), (gst_media_info_instance_init),
27962         (gst_media_info_set_source), (gst_media_info_read_with_idler),
27963         (gst_media_info_read_idler), (gst_media_info_read):
27964         * gst-libs/gst/media-info/media-info.h:
27965         fixed, should work now
27966
27967 2004-03-07  Christian Schaller <Uraeus@gnome.org>
27968
27969         * ext/nas/nassink.c:
27970         A bunch of NAS fixes from Arwed von Merkatz
27971
27972 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27973
27974         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
27975         (qtdemux_parse_trak):
27976           Fix crash (j might be greater than n_samples, in which case we're
27977           writing outside the allocated space for the array) and memleak.
27978
27979 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27980
27981         * sys/oss/gstosssink.c: (gst_osssink_chain):
27982           And another caller that couldn't handle delay < 0 (unsigned
27983           integer overflow). Video now continues playing on an audio
27984           buffer underrun, and the clock continues working. Audio still
27985           stalls.
27986
27987 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27988
27989         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27990         (gst_osssink_get_time):
27991           get_delay() may return values lower than 0. In those cases, we
27992           should not actually cast to *unsigned* int64, that will break
27993           stuff horribly. In my case, it screwed up A/V sync in movies
27994           in totem rather badly.
27995
27996 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
27997
27998         * ext/faac/gstfaac.c: (gst_faac_chain):
27999         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
28000         * ext/libpng/gstpngenc.c: (user_write_data):
28001         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
28002         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
28003         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
28004         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
28005         Fix several misuse of gst_buffer_merge (it doesn't take ownership
28006         of any buffer), should fix some leaks. I hope I didn't unref buffers
28007         that shouldn't be...
28008
28009 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
28010
28011         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
28012         (deep_notify_callback), (tag_flag_score), (found_tag_callback),
28013         (error_callback), (gmi_reset), (gmi_seek_to_track),
28014         (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
28015         (gmip_find_type_post), (gmip_find_stream_post),
28016         (gmip_find_track_streaminfo_post):
28017         * gst-libs/gst/media-info/media-info-priv.h:
28018         * gst-libs/gst/media-info/media-info-test.c: (print_tag),
28019         (info_print), (main):
28020         * gst-libs/gst/media-info/media-info.c:
28021         (gst_media_info_error_create), (gst_media_info_error_element),
28022         (gst_media_info_instance_init), (gst_media_info_get_property),
28023         (gst_media_info_new), (gst_media_info_set_source),
28024         (gst_media_info_read_idler), (gst_media_info_read):
28025         * gst-libs/gst/media-info/media-info.h:
28026           first pass at making this work again.  This seems to work on
28027           tagged ogg/vorbis and mp3 files.
28028
28029 2004-03-06  Benjamin Otte  <otte@gnome.org>
28030
28031         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
28032           fix huge leak: gst_buffer_merge doesn't unref the first argument
28033           itself.
28034
28035 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
28036
28037         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
28038           report layer/mode/emphasis
28039
28040 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
28041
28042         * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
28043
28044 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
28045
28046         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
28047           signal serial
28048
28049 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
28050
28051         * ext/vorbis/vorbis.c: (plugin_init):
28052         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
28053         (gst_vorbis_dec_init), (vorbis_dec_event):
28054         add debug category
28055         make vorbisdec handle _BYTE and _TIME queries
28056
28057 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
28058
28059         * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
28060           from the xing header
28061
28062 2004-03-06  Benjamin Otte  <otte@gnome.org>
28063
28064         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
28065         (gst_audio_convert_link), (gst_audio_convert_change_state),
28066         (gst_audio_convert_buffer_from_default_format):
28067           do conversions from/to float correctly, fix some caps nego errors,
28068           export correct supported caps in template and getcaps, use correct
28069           caps in try_set_caps functions
28070
28071 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
28072
28073         For some reason, I only committed a ChangeLog entry yesterday and
28074         not the corresponding code...
28075         * ext/mad/gstmad.c: Fix detection of Xing headers
28076         * gst/tags/gstid3tag.c: Changes to support TLEN tags
28077
28078 2004-03-06  Benjamin Otte  <otte@gnome.org>
28079
28080         * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
28081         (gst_ogg_demux_src_query):
28082           make sure to handle the case where there's no current chain
28083           gracefully.
28084
28085 2004-03-05  David Schleef  <ds@schleef.org>
28086
28087         * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
28088         Add fixate function. (bug #131128)
28089         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
28090         (gst_sdlvideosink_fixate):  Add fixate function.
28091         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
28092         Fix attempt to print a non-pointer using GST_PTR_FORMAT.
28093         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
28094         Fix missing break that was causing ulaw to be interpreted as
28095         raw int.
28096
28097 2004-03-05  David Schleef  <ds@schleef.org>
28098
28099         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
28100         Fix code that ignores return value of gst_buffer_merge().
28101         (bug #114560)
28102         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
28103         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
28104         * testsuite/gst-lint:  Check for above.
28105
28106 2004-03-05  David Schleef  <ds@schleef.org>
28107
28108         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):  Check for unfixed
28109         caps and throw an element error.  (bug #136334)
28110
28111 2004-03-05  David Schleef  <ds@schleef.org>
28112
28113         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
28114         (gst_faad_chain): Fix negotiation.
28115         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
28116         key and button events.
28117         * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
28118         dung heap of code.
28119         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
28120         depends on gconf
28121         * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
28122         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
28123         (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
28124         function to encourage better negotiation, particularly between
28125         audioconvert and osssink.
28126         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
28127         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):  Make some debugging
28128         more important.
28129         * gst/typefind/gsttypefindfunctions.c:  Fix mistake in flash
28130         typefinding.
28131         * gst/vbidec/vbiscreen.c:  Add glib header
28132         * pkgconfig/gstreamer-play.pc.in:  Depends on gst-interfaces.
28133
28134 2004-03-06  Christophe Fergeau  <teuf@users.sourceforge.net>
28135
28136         * ext/mad/gstmad.c: Fix detection of Xing headers
28137         * gst/tags/gstid3tag.c: Changes to support TLEN tags
28138
28139 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
28140
28141         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
28142         (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
28143           debug updates
28144
28145 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
28146
28147         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
28148         * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
28149         (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
28150         files, and report the parsed length as a GST_TAG_DURATION tag.
28151         * gst/tags/gstid3tag.c: support TLEN (duration) tag
28152
28153 2004-03-05  Benjamin Otte  <otte@gnome.org>
28154
28155         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
28156           convert channels correctly. convert correctly to unsigned.
28157
28158 2004-03-05  Julien MOUTTE <julien@moutte.net>
28159
28160         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
28161         we have a window before clearing it.
28162
28163 2004-03-05  Julien MOUTTE <julien@moutte.net>
28164
28165         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
28166         have a window before clearing it.
28167
28168 2004-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
28169
28170         * gconf/gstreamer.schemas.in:
28171         * gst-libs/gst/gconf/Makefile.am:
28172           version installation path the same way as for 0.6
28173         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
28174         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28175         * pkgconfig/gstreamer-play-uninstalled.pc.in:
28176           remove comment that was fixed
28177
28178 2004-03-05  David Schleef  <ds@schleef.org>
28179
28180         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
28181         (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
28182         (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
28183         (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
28184         Add prototype code for handling seeking and querying.
28185
28186 2004-03-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
28187
28188         * examples/gstplay/player.c: (main):
28189           Initialize variables to NULL. Prevents a segfault because the
28190           (uninitialized) variable is not NULL, resulting in a crash on
28191           trying to reach error->message.
28192
28193 2004-03-05  Benjamin Otte  <otte@gnome.org>
28194
28195         * gst/audioconvert/gstaudioconvert.c:
28196         (gst_audio_convert_buffer_to_default_format):
28197         make float=>int conversion work correctly even in cornercases.
28198
28199 2004-03-04  David I. Lehn  <dlehn@users.sourceforge.net>
28200
28201         * debian/README.Debian:
28202         * debian/build-deps:
28203         * debian/changelog:
28204         * debian/control:
28205         * debian/control.in:
28206         * debian/copyright:
28207         * debian/gstreamer-a52dec.files:
28208         * debian/gstreamer-aa.files:
28209         * debian/gstreamer-alsa.files:
28210         * debian/gstreamer-alsa.manpages:
28211         * debian/gstreamer-arts.files:
28212         * debian/gstreamer-artsd.files:
28213         * debian/gstreamer-audiofile.files:
28214         * debian/gstreamer-avifile.files:
28215         * debian/gstreamer-cdparanoia.files:
28216         * debian/gstreamer-colorspace.files:
28217         * debian/gstreamer-doc.files:
28218         * debian/gstreamer-dv.files:
28219         * debian/gstreamer-dvd.files:
28220         * debian/gstreamer-esd.files:
28221         * debian/gstreamer-festival.files:
28222         * debian/gstreamer-flac.files:
28223         * debian/gstreamer-gconf.conffiles:
28224         * debian/gstreamer-gconf.files:
28225         * debian/gstreamer-gconf.postinst:
28226         * debian/gstreamer-gnomevfs.files:
28227         * debian/gstreamer-gsm.files:
28228         * debian/gstreamer-http.files:
28229         * debian/gstreamer-jack.files:
28230         * debian/gstreamer-jpeg.files:
28231         * debian/gstreamer-mad.files:
28232         * debian/gstreamer-mikmod.files:
28233         * debian/gstreamer-misc.files:
28234         * debian/gstreamer-mpeg2dec.files:
28235         * debian/gstreamer-oss.files:
28236         * debian/gstreamer-plugin-apps.files:
28237         * debian/gstreamer-plugin-apps.manpages:
28238         * debian/gstreamer-plugin-libs-dev.files:
28239         * debian/gstreamer-plugin-libs.files:
28240         * debian/gstreamer-plugin-template.postinst:
28241         * debian/gstreamer-plugin-template.postrm:
28242         * debian/gstreamer-sdl.files:
28243         * debian/gstreamer-sid.files:
28244         * debian/gstreamer-vorbis.files:
28245         * debian/gstreamer-x.files:
28246         * debian/mk.control:
28247         * debian/rules:
28248         Debian package info not maintained here.
28249
28250 2004-03-04  Thomas Vander Stichele  <thomas at apestaart dot org>
28251
28252         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
28253         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
28254         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
28255         * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
28256         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
28257         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
28258         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
28259         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
28260         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
28261         * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
28262         * gst-libs/gst/colorbalance/colorbalance.c:
28263         (gst_color_balance_class_init):
28264         * gst-libs/gst/colorbalance/colorbalancechannel.c:
28265         (gst_color_balance_channel_class_init):
28266         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
28267         * gst-libs/gst/play/play.c: (gst_play_class_init):
28268         * gst-libs/gst/propertyprobe/propertyprobe.c:
28269         (gst_property_probe_iface_init):
28270         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
28271         * gst-libs/gst/tuner/tunerchannel.c:
28272         (gst_tuner_channel_class_init):
28273         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
28274         * gst/cutter/gstcutter.c: (gst_cutter_class_init):
28275         * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
28276         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
28277         * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
28278         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
28279         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
28280         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
28281         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
28282           fix signals to use - instead of _
28283         * ext/libcaca/gstcacasink.h:
28284         * ext/sdl/sdlvideosink.h:
28285           fix header rename
28286
28287 2004-03-04  David Schleef  <ds@schleef.org>
28288
28289         * testsuite/gst-lint:  Add a check for bad signal names.
28290
28291 2004-03-04  Stefan Kost <kost@imn.htwk-leipzig.de>
28292
28293         reviewed by David Schleef
28294
28295         * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
28296         modified the alpha channel and caused a warning. (bug #136192)
28297
28298 2004-04-03  Christian Schaller <Uraeus@gnome.org>
28299
28300         * gst-plugins.spec.in:
28301         Change names of plugins to actually be correct. Try to keep things
28302         alphabetical to avoid getting beat up by Thomas
28303
28304 2004-03-03  Julien MOUTTE <julien@moutte.net>
28305
28306         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
28307         Using ximagesink as a default if no gconf key found. We should
28308         probably consider using alsasink instead of osssink for the audio
28309         part.
28310
28311 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
28312
28313         * configure.ac:
28314           fix --with-plugins, don't think it ever worked before
28315         * gst-plugins.spec.in:
28316           even more updates
28317
28318 2004-03-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
28319
28320         * ext/sdl/sdlvideosink.h:
28321         * sys/ximage/ximagesink.h:
28322         * sys/xvideo/xvideosink.h:
28323         * sys/xvimage/xvimagesink.h:
28324           Fix for move of gstvideosink.h -> videosink.h.
28325
28326 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
28327
28328         * gst-libs/gst/xwindowlistener/Makefile.am:
28329           this is a plugin library, not a library
28330
28331 2004-03-01  David Schleef  <ds@schleef.org>
28332
28333         * AUTHORS:  Added some names.  Add yourself if you're still
28334         missing.
28335
28336 2004-03-01  David Schleef  <ds@schleef.org>
28337
28338         * MAINTAINERS: Add
28339
28340 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
28341
28342         * gst-plugins.spec.in: clean up spec file
28343
28344 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
28345
28346         * gst-libs/gst/video/Makefile.am:
28347         * gst-libs/gst/video/gstvideosink.c:
28348         * gst-libs/gst/video/gstvideosink.h:
28349           rename gstvideosink.h to videosink.h to match other headers
28350         * gst/mixmatrix/Makefile.am:
28351           fix plugin filename
28352         * gst/tags/Makefile.am: fix plugin filename
28353
28354 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
28355
28356         * gst/tags/Makefile.am: fix plugin filename
28357
28358 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
28359
28360         * examples/gstplay/player.c: (got_time_tick), (main):
28361           add error handler
28362           display time_tick more readably
28363         * gst/mixmatrix/Makefile.am:
28364           fix plugin file name
28365
28366 2004-02-29  Christophe Fergeau  <teuf@gnome.org>
28367
28368         * sys/oss/gstosselement.c: (gst_osselement_probe),
28369         (device_combination_append), (gst_osselement_class_probe_devices):
28370         * sys/oss/gstosselement.h:
28371           Reworked enumeration of oss dsps and mixers so that gst-mixer works
28372           on my system using alsa oss emulation, fixes bug #135597
28373
28374 2004-02-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
28375
28376         * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
28377         (gst_videodrop_chain), (gst_videodrop_change_state):
28378         * gst/videodrop/gstvideodrop.h:
28379           Work based on timestamp of input data, not based on the expected
28380           framerate from the input. The consequence is that this element now
28381           not only scales framerates, but also functions as a framerate
28382           corrector or framerate stabilizer/constantizer.
28383
28384 2004-02-27  David Schleef  <ds@schleef.org>
28385
28386         patches from jmmv@menta.net (Julio M. Merino Vidal)
28387
28388         * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
28389         GST_ELEMENT_ERROR call (bug #135634)
28390         * gst/interleave/interleave.c: (interleave_buffered_loop),
28391         (interleave_bytestream_loop): Don't use alloca() (bug #135640)
28392         * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
28393         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
28394         (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
28395         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
28396         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
28397         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
28398         Fix GST_ELEMENT_ERROR call.
28399         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
28400         GST_ELEMENT_ERROR call.
28401
28402 2004-02-27  Benjamin Otte  <otte@gnome.org>
28403
28404         * gst-libs/gst/audio/audio.h:
28405           add macro to make sure header isn't included twice
28406         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
28407           don't use gst_buffer_free
28408         * gst/playondemand/filter.func:
28409           don't use gst_data_free. Free data only once.
28410
28411 2004-02-26  David Schleef  <ds@schleef.org>
28412
28413         * gst-libs/gst/colorbalance/Makefile.am:
28414         * gst-libs/gst/mixer/Makefile.am:
28415         * gst-libs/gst/tuner/Makefile.am:
28416         * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
28417         should not be disted, -marshal.h files should not be installed,
28418         and -enum.h files _should_ be installed.  Fix to make this the
28419         case.
28420
28421 === release 0.7.5 ===
28422
28423 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
28424
28425         * configure.ac: release 0.7.5, "Under The Sea"
28426
28427 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
28428
28429         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
28430         (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
28431         * gst/videoscale/gstvideoscale.c:
28432         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
28433           assorted debug/warning fixes
28434
28435 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
28436
28437         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
28438         (gst_videoscale_init), (gst_videoscale_chain),
28439         (gst_videoscale_set_property), (plugin_init):
28440         * gst/videoscale/gstvideoscale.h:
28441         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
28442         (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
28443         (gst_videoscale_planar400), (gst_videoscale_packed422),
28444         (gst_videoscale_packed422rev), (gst_videoscale_32bit),
28445         (gst_videoscale_24bit), (gst_videoscale_16bit),
28446         (gst_videoscale_bilinear), (gst_videoscale_bicubic),
28447         (gst_videoscale_scale_plane_slow),
28448         (gst_videoscale_scale_point_sample),
28449         (gst_videoscale_scale_nearest),
28450         (gst_videoscale_scale_nearest_str2),
28451         (gst_videoscale_scale_nearest_str4),
28452         (gst_videoscale_scale_nearest_32bit),
28453         (gst_videoscale_scale_nearest_24bit),
28454         (gst_videoscale_scale_nearest_16bit):
28455         add debugging category and use it properly
28456         fix use of GST_PTR_FORMAT
28457
28458 2004-02-25  Andy Wingo  <wingo@pobox.com>
28459
28460         * gst/interleave/interleave.c (interleave_buffered_loop): Always
28461         push only when channel->buffer is NULL. Prevents segfaults doing
28462         the state change after a nonlocal exit, like a scheme exception.
28463
28464         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
28465         Handle the case where the intersected caps is empty.
28466
28467 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
28468
28469         * gst/law/mulaw-decode.c: (mulawdec_link):
28470         * gst/law/mulaw.c: (plugin_init):
28471           fix mulawdec so it actually works again
28472
28473 2004-02-24  Arwed v. Merkatz  <v.merkatz@gmx.net>
28474
28475         reviewed by: David Schleef  <ds@schleef.org>
28476
28477         * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
28478         (gst_gamma_init), (gst_gamma_set_property),
28479         (gst_gamma_get_property), (gst_gamma_calculate_tables),
28480         (gst_gamma_rgb24), (gst_gamma_rgb32):  Adds gamma correction
28481         for RGB, with separate r g and b correction factors. (#131167)
28482
28483 2004-02-24  Thomas Vander Stichele  <thomas at apestaart dot org>
28484
28485         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
28486           only signal tags for bitrate if they're > 0 (#134894)
28487
28488 2004-02-24  David Schleef  <ds@schleef.org>
28489
28490         * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
28491         (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
28492         (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
28493         (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
28494         (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
28495         (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
28496         (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
28497         (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
28498         Cleanups.  Convert g_prints to GST_LOGs.  Add qtdemux debug
28499         category.  Attempt to fix timestamp calculation.
28500
28501 2004-02-24  Johan Dahlin  <johan@gnome.org>
28502
28503         * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
28504
28505 2004-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28506
28507         * configure.ac:
28508         * gconf/Makefile.am:
28509         * gconf/gstreamer.schemas:
28510         * gst-libs/gst/gconf/Makefile.am:
28511         * gst-libs/gst/gconf/gconf.c:
28512           version gconf schemas and install locations
28513
28514 2004-02-23  Benjamin Otte  <otte@gnome.org>
28515
28516         * ext/xine/xineinput.c: (gst_xine_input_dispose):
28517         (gst_xine_input_subclass_init):
28518           call parent dispose.
28519           change pad template for CD reader correctly
28520         * ext/xine/Makefile.am:
28521         * ext/xine/gstxine.h:
28522         * ext/xine/xine.c: (plugin_init):
28523         * ext/xine/xineaudiosink.c:
28524           wrap audio sinks, too
28525         * gst-libs/gst/resample/private.h:
28526         * gst-libs/gst/resample/resample.c: (gst_resample_init),
28527         (gst_resample_reinit), (gst_resample_scale),
28528         (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
28529         (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
28530         (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
28531         (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
28532         (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
28533         * gst-libs/gst/resample/resample.h:
28534         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
28535         (gst_audioscale_class_init), (gst_audioscale_link),
28536         (gst_audioscale_get_buffer), (gst_audioscale_init),
28537         (gst_audioscale_chain), (gst_audioscale_set_property),
28538         (gst_audioscale_get_property):
28539         * gst/audioscale/gstaudioscale.h:
28540           s/resample_*/gst_resample_*/i to not clobber namespaces
28541
28542 2004-02-23  Julien MOUTTE  <julien@moutte.net>
28543
28544         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
28545         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
28546         (gst_riff_create_video_template_caps),
28547         (gst_riff_create_audio_template_caps),
28548         (gst_riff_create_iavs_template_caps):
28549         * gst-libs/gst/riff/riff-media.h:
28550         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
28551         (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
28552         (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
28553         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
28554         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
28555         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
28556         (gst_matroska_demux_plugin_init): First batch implementing audio and
28557         video codec tags in demuxers.
28558
28559 2004-02-22  Benjamin Otte  <otte@gnome.org>
28560
28561         * ext/xine/Makefile.am:
28562         * ext/xine/gstxine.h:
28563         * ext/xine/xine.c: (plugin_init):
28564         * ext/xine/xineinput.c:
28565           add input plugin wrapper. Playback from files, http, mms and cdda
28566           works.
28567         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
28568           remove leftover G_GNUC_UNUSED
28569         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
28570         (gst_asf_demux_identify_guid):
28571           improve debugging output
28572
28573 2004-02-22  Benjamin Otte  <otte@gnome.org>
28574
28575         reported by: Padraig O'Briain <padraig.obriain@sun.com>
28576
28577         * autogen.sh:
28578           replace test -e with test -x for mkinstalldirs to be more portable.
28579           (fixes #134816)
28580
28581 2004-02-22  Benjamin Otte  <otte@gnome.org>
28582
28583         reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
28584
28585         * gst/audioconvert/gstaudioconvert.c: (plugin_init):
28586           set rank to PRIMARY
28587         * gst/volume/gstvolume.c: (plugin_init):
28588           set rank to NONE
28589         fixes #134960
28590
28591 2004-02-22   Julio M. Merino Vidal <jmmv@menta.net>
28592
28593         reviewed by Benjamin Otte  <otte@gnome.org>
28594
28595         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
28596           escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
28597
28598 2004-02-22  Benjamin Otte  <otte@gnome.org>
28599
28600         * configure.ac:
28601           export [_]*{gst,Gst,GST}.* symbols from plugins
28602
28603 2004-02-22  Christophe Fergeau <teuf@gnome.org>
28604
28605         reviewed by: Benjamin Otte  <otte@gnome.org>
28606
28607         * ext/lame/gstlame.c: (add_one_tag):
28608         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
28609         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
28610         (gst_vorbisenc_metadata_set1):
28611         * gst/tags/gstid3tag.c:
28612         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
28613           apply fixes from bugs #135042 (lame can't write tags) and #133817
28614           (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
28615
28616 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
28617
28618         * configure.ac: Export only gst_plugin_desc from plugins.
28619          Note that this change only makes any effect with Linux using libtool
28620          1.5.2 or higher. Otherwise it is silently ignored, but it would build
28621          fine. And don't try to have several versions of libtool in different
28622          directories.
28623
28624 2004-02-20  Andy Wingo  <wingo@pobox.com>
28625
28626         * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
28627         interleave respectively.
28628
28629         * gst/interleave/deinterleave.c: New plugin: deinterleave
28630         (replaces on oneton).
28631         * gst/interleave/interleave.c: New plugin: interleave.
28632         * gst/interleave/plugin.h: Support file.
28633         * gst/interleave/plugin.c: Support file.
28634
28635         * configure.ac: Remove intfloat and oneton, add interleave.
28636
28637         * ext/sndfile/gstsf.c: Handle events better.
28638
28639         * gst/audioconvert/gstaudioconvert.c: Change to support int2float
28640         and float2int operation. int2float has scheduling problems as
28641         noted in in2float_chain.
28642
28643 2004-02-20  Benjamin Otte  <otte@gnome.org>
28644
28645         * ext/xine/Makefile.am:
28646         * ext/xine/gstxine.h:
28647         * ext/xine/xine.c:
28648         * ext/xine/xineaudiodec.c:
28649         * ext/xine/xinecaps.c:
28650           add first version of xine plugin wrapper. Currently only wraps the
28651           QDM2 win32 DLL, and even that only in proof-of-concept quality.
28652         * configure.ac:
28653         * ext/Makefile.am:
28654           add xine plugin wrapper, disabled by default. Use --enable-xine to
28655           build. Note that it'll segfault on gst-register if you don't remove
28656           the goom and tvtime post plugins from xine.
28657         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
28658         (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
28659           add extradata parsing for QDM2.
28660           change around debugging prints.
28661
28662 2004-02-19  Benjamin Otte  <otte@gnome.org>
28663
28664         * ext/lame/gstlame.c: (gst_lame_chain):
28665         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
28666           use gst_tag_list_insert when you want to insert tags
28667
28668 2004-02-18  David Schleef  <ds@schleef.org>
28669
28670         * configure.ac:  Move massink to gst-rotten
28671         * ext/Makefile.am:
28672         * ext/mas/Makefile.am:
28673         * ext/mas/massink.c:
28674         * ext/mas/massink.h:
28675
28676 2004-02-18  David Schleef  <ds@schleef.org>
28677
28678         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
28679         typefinding, since it seems to be worse than nothing.
28680         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):  Add ftyp
28681         atom to recognize .mp4 and .m4a files as video/quicktime.
28682
28683 2004-02-18  David Schleef  <ds@schleef.org>
28684
28685         * gst/sine/demo-dparams.c: (quit_live),
28686         (dynparm_log_value_changed), (dynparm_value_changed), (main):
28687         Use double dparams, not float.
28688         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28689         (gst_sinesrc_init): Change sync default to FALSE, since multiple
28690         sync'd elements don't really work correctly.
28691         * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
28692         (volume_update_volume), (volume_get_property):  Change dparam
28693         to double.
28694
28695 2004-02-18  Julien MOUTTE  <julien@moutte.net>
28696
28697         * sys/ximage/ximagesink.c:
28698         (gst_ximagesink_xwindow_update_geometry),
28699         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
28700         (gst_ximagesink_change_state), (gst_ximagesink_expose),
28701         (gst_ximagesink_init): Rework the way software video scaling works. So
28702         now we check on each chain call if the video frames are feeling the
28703         window. If not we try to renegotiate caps. On failure we memorize that
28704         and we won't try again for that PLAYING sessions.
28705         * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
28706         failure.
28707         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
28708         synchronous flag.
28709
28710 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
28711
28712         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
28713           break up _link so we can give a better debug message for errors
28714
28715 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
28716
28717         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
28718           set up debug category
28719
28720 2004-02-18  Julien MOUTTE <julien@moutte.net>
28721
28722         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28723         (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
28724         the way renegotiation work. The event handling function is not taking
28725         care of external windows and renegotiate method check for pad flags
28726         NEGOTIATING. Should fix : #133209
28727
28728 2004-02-17  Julien MOUTTE  <julien@moutte.net>
28729
28730         * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
28731         pad is negotiating before trying renegotiation.
28732
28733 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
28734
28735         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
28736           pass on all possible mime types as typefind hints
28737
28738 2004-02-17  Julien MOUTTE <julien@moutte.net>
28739
28740         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
28741         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
28742         possible SHM leak if we crash. All other apps using XShm are doing
28743         that.
28744
28745 2004-02-17  Julien MOUTTE  <julien@moutte.net>
28746
28747         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28748         (gst_ximagesink_expose): Renegotiate size on expose.
28749         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
28750         size on expose.
28751
28752 2004-02-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28753
28754         * testsuite/alsa/sinesrc.c:
28755           cosmetic fix to fix compile issue with gcc 2.95.4
28756
28757 2004-02-16  Julien MOUTTE <julien@moutte.net>
28758
28759         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
28760         (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
28761         failed opening the audio device.
28762         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
28763         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
28764         (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
28765         (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
28766         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
28767         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
28768         (gst_ximagesink_change_state), (gst_ximagesink_chain),
28769         (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
28770         Removing some useless g_return_if_fail like wingo suggested.
28771         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
28772         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
28773         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
28774         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
28775         (gst_xvimagesink_update_colorbalance),
28776         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
28777         (gst_xvimagesink_xcontext_clear),
28778         (gst_xvimagesink_get_fourcc_from_caps),
28779         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
28780         (gst_xvimagesink_set_xwindow_id),
28781         (gst_xvimagesink_colorbalance_list_channels),
28782         (gst_xvimagesink_colorbalance_set_value),
28783         (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
28784         PAUSED. Removing some useless g_return_if_fail like wingo suggested.
28785
28786 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
28787
28788         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
28789           throw error when not negotiated instead of asserting
28790
28791 2004-02-15  Julien MOUTTE  <julien@moutte.net>
28792
28793         * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
28794         correct data refcounting.
28795
28796 2004-02-15  Julien MOUTTE  <julien@moutte.net>
28797
28798         * gst/switch/gstswitch.c: (gst_switch_change_state),
28799         (gst_switch_class_init): Cleaning the sinkpads correctly on state
28800         change, mostly the EOS flag.
28801
28802 2004-02-15  Julien MOUTTE  <julien@moutte.net>
28803
28804         * examples/gstplay/player.c: (got_eos), (main): Adding some
28805         output for debugging.
28806         * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
28807         timeouts if we go to any state different from PLAYING.
28808         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
28809         more EOS bugs in riff lib.
28810
28811 2004-02-14  Julien MOUTTE  <julien@moutte.net>
28812
28813         * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
28814         visualization until i find a way to fix switch correctly.
28815         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
28816         EOS arrives.
28817         * gst/switch/gstswitch.c: (gst_switch_release_pad),
28818         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
28819         (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
28820         Reworked switch to get a more correct behaviour with events and refing
28821         of data stored in sinkpads.
28822         * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
28823         we don't pull from a pad in EOS.
28824
28825 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28826
28827         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
28828           remove v1 tag even if we can't read it (makes sure we don't detect
28829           it again)
28830
28831 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28832
28833         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
28834         (gst_alsa_xrun_recovery):
28835         * ext/alsa/gstalsa.h:
28836           try xrun recovery when wait failed. Make xrun recovery function
28837           return TRUE/FALSE to indicate success. (might fix #134354)
28838
28839 2004-02-13  David Schleef  <ds@schleef.org>
28840
28841         * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
28842         (dynparm_value_changed), (main): Convert from float to double.
28843         * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
28844
28845 2004-02-13  David Schleef  <ds@schleef.org>
28846
28847         * gst/silence/gstsilence.c: (gst_silence_class_init),
28848         (gst_silence_set_clock), (gst_silence_get),
28849         (gst_silence_set_property), (gst_silence_get_property):
28850         * gst/silence/gstsilence.h: Add sync property.
28851         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28852         (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
28853         (gst_sinesrc_set_property), (gst_sinesrc_get_property):
28854         * gst/sine/gstsinesrc.h: Add sync property.
28855
28856 2004-02-13  David Schleef  <ds@schleef.org>
28857
28858         * gst/intfloat/gstint2float.c: (conv_f32_s16),
28859         (gst_int2float_chain_gint16):  Change stdint usage to glib types.
28860
28861 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
28862
28863         * configure.ac:
28864         * ext/Makefile.am:
28865         * gst-libs/ext/Makefile.am:
28866           move ffmpeg plugin to gst-ffmpeg module
28867
28868 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
28869
28870         * configure.ac: use GST_ARCH to detect architecture
28871
28872 2004-02-12  Julien MOUTTE  <julien@moutte.net>
28873
28874         * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
28875
28876 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
28877
28878         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
28879           classify LADSPA plugins based on number of src/sink pads
28880           (#133663, Stefan Kost)
28881         * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
28882           fix dparams registration
28883           (#133528, Stefan Kost)
28884         * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
28885           fix use of isprint and use g_ascii_isprint instead
28886           (#133316, Stefan Kost)
28887
28888 2004-02-11  David Schleef  <ds@schleef.org>
28889
28890         Convert a few inner loops to use liboil.  This is currently
28891         optional, and is only enabled if liboil is present (duh!).
28892         * configure.ac: Check for liboil-0.1
28893         * gst/intfloat/Makefile.am:
28894         * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
28895         (gst_int2float_chain_gint16):
28896         * gst/videofilter/Makefile.am:
28897         * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
28898         (tablelookup_u8), (gst_videobalance_planar411):
28899         * gst/videotestsrc/Makefile.am:
28900         * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
28901         * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
28902         (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
28903         (paint_hline_RGB565), (paint_hline_xRGB1555):
28904
28905 2004-02-11  David Schleef  <ds@schleef.org>
28906
28907         * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
28908         (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
28909         (gst_colorspace_getcaps), (gst_colorspace_link),
28910         (gst_colorspace_base_init), (gst_colorspace_init),
28911         (gst_colorspace_chain), (gst_colorspace_change_state),
28912         (plugin_init): Merge Ronald's patch (bug #117897) and update
28913         for new caps and negotiation.  Seems to work, although it
28914         shows off bugs in lcs.
28915
28916 2004-02-11  David Schleef  <ds@schleef.org>
28917
28918         * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
28919         (bug #133886)  Noticed by bugs@leroutier.net (Stephane LOEUILLET)
28920
28921 2004-02-11  David Schleef  <ds@schleef.org>
28922
28923         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
28924         (gst_rfbsrc_change_state), (gst_rfbsrc_init),
28925         (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
28926         Add server and port properties
28927
28928 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
28929
28930         * m4/a52.m4:
28931         * m4/aalib.m4:
28932         * m4/as-ffmpeg.m4:
28933         * m4/as-liblame.m4:
28934         * m4/as-slurp-ffmpeg.m4:
28935         * m4/check-libheader.m4:
28936         * m4/esd.m4:
28937         * m4/freetype2.m4:
28938         * m4/gconf-2.m4:
28939         * m4/glib.m4:
28940         * m4/gst-alsa.m4:
28941         * m4/gst-artsc.m4:
28942         * m4/gst-ivorbis.m4:
28943         * m4/gst-matroska.m4:
28944         * m4/gst-sdl.m4:
28945         * m4/gst-shout2.m4:
28946         * m4/gst-sid.m4:
28947         * m4/gtk.m4:
28948         * m4/libdv.m4:
28949         * m4/libfame.m4:
28950         * m4/libmikmod.m4:
28951         * m4/ogg.m4:
28952         * m4/vorbis.m4:
28953           fix underquotedness of macros (#133800)
28954         * m4/as-avifile.m4:
28955         * m4/xmms.m4:
28956           removed because no longer used
28957
28958 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
28959
28960         * configure.ac:
28961           require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
28962           by autopoint (fixes #132996)
28963
28964 2004-02-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28965
28966         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
28967         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
28968         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
28969         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
28970           fix memleaks
28971
28972 2004-02-11  David Schleef  <ds@schleef.org>
28973
28974         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
28975         (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
28976         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
28977         (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
28978         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
28979         (gst_jpegenc_class_init), (gst_jpegenc_init),
28980         (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
28981         (gst_jpegenc_chain), (gst_jpegenc_set_property),
28982         (gst_jpegenc_get_property):  Fix negotiation.  Add some properties.
28983         * ext/jpeg/gstjpegenc.h: Fix negotiation.
28984
28985 2004-02-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28986
28987         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
28988         (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
28989         * ext/mikmod/gstmikmod.h:
28990           fix caps negotiation in mikmod
28991         * ext/ogg/gstoggdemux.c: (gst_ogg_print):
28992           output debug information
28993
28994 2004-02-08  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28995
28996         * gst-libs/gst/colorbalance/Makefile.am:
28997         * gst-libs/gst/navigation/Makefile.am:
28998         * gst-libs/gst/xoverlay/Makefile.am:
28999           remove unused GST_OPT_CFLAGS from Makefiles
29000           include X_CFLAGS and X_LIBS in xoverlay. (#131948)
29001
29002 2004-02-07  David Schleef  <ds@schleef.org>
29003
29004         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
29005         push events to pads that haven't been created (#133508)
29006
29007 2004-02-07  Jan Schmidt  <thaytan@mad.scientist.com>
29008
29009         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
29010         (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
29011         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
29012         (gst_dvdec_loop), (gst_dvdec_change_state):
29013         Second attempt at committing a working dvdec element.
29014
29015 2004-02-06  David Schleef  <ds@schleef.org>
29016
29017         Build fixes for OS X: (see #129600)
29018         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
29019         (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
29020         (gst_riff_read_strf_iavs):
29021         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
29022         (gst_avi_demux_stream_odml):
29023         * gst/playondemand/Makefile.am:
29024         * gst/rtp/rtp-packet.c:
29025
29026 2004-02-05  David Schleef  <ds@schleef.org>
29027
29028         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
29029         last change, because it Just Doesn't Compile.
29030
29031 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29032
29033         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
29034           skip undecodable id3v2 tag instead of keeping it
29035
29036 2004-02-05  David Schleef  <ds@schleef.org>
29037
29038         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
29039         Unref leaked buffer.  (Noticed by Ronald)
29040
29041 2004-02-05  David I. Lehn  <dlehn@users.sourceforge.net>
29042
29043         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
29044         Sync requires with other checks.  >= vs =.
29045
29046 2004-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
29047
29048         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
29049         (gst_dvdec_video_link), (gst_dvdec_loop):
29050         * ext/dv/gstdvdec.h:
29051           rework the caps negotiation so that dvdec works again instead
29052           of just segfaulting.
29053
29054 === release 0.7.4 ===
29055
29056 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
29057
29058         * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
29059         * configure.ac: changed for release
29060
29061 2004-02-05  Thomas Vander Stichele  <thomas at apestaart dot org>
29062
29063         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
29064         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
29065         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
29066         * pkgconfig/gstreamer-play-uninstalled.pc.in:
29067           reworked patch by David Lehn to fix libdir and includedir for
29068           uninstalled libraries
29069           removed play and gconf from gstreamer-libs since they have their
29070           own pkgconfig files
29071
29072 2004-02-04  David Schleef  <ds@schleef.org>
29073
29074         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
29075         memleak.
29076
29077 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29078
29079         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29080           use correct GST_TAG_ENCODER tag
29081
29082 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29083
29084         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
29085           be sure to stop the clock when going to paused
29086         * sys/oss/gstosssink.c: (gst_osssink_change_state):
29087           reset number of transmitted when going to ready.
29088         fixes #132935
29089
29090 2004-02-05  Charles Schmidt <cschmidt2@emich.edu>
29091
29092         reviewed by Benjamin Otte
29093
29094         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
29095           extract track count (fixes #133410)
29096
29097 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29098
29099         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
29100           that should be !=, not == (fixes #132519)
29101
29102 2004-02-04  David Schleef  <ds@schleef.org>
29103
29104         Make sure set_explicit_caps() is called before adding pad.
29105         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
29106         * gst/id3/gstid3types.c: (gst_id3types_loop):
29107         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
29108         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
29109
29110 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
29111
29112         * configure.ac:
29113           bump nano to 2, first prerelease
29114           put back AM_PROG_LIBTOOL
29115
29116 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
29117
29118         * testsuite/alsa/Makefile.am:
29119           these are user test apps, not automatic testsuite tests
29120
29121 2004-02-04  David Schleef  <ds@schleef.org>
29122
29123         Convert GST_DEBUG_CAPS() to GST_DEBUG():
29124         * gst/mpeg1videoparse/gstmp1videoparse.c:
29125         (mp1videoparse_parse_seq):
29126         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
29127         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
29128         * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
29129         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
29130         (gst_xvideosink_getcaps):
29131         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
29132         * testsuite/gst-lint: more tests
29133
29134 2004-02-04  David Schleef  <ds@schleef.org>
29135
29136         Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
29137         with the code that they would expand to.
29138         * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
29139         (gst_flacdec_get_src_query_types),
29140         (gst_flacdec_get_src_event_masks):
29141         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
29142         (gst_gnomevfssrc_get_query_types),
29143         (gst_gnomevfssrc_get_event_mask):
29144
29145 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29146
29147         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
29148         (gst_sinesrc_dispose):
29149           fix memleak by properly disposing sinesrc
29150
29151 2004-02-04  Julien MOUTTE  <julien@moutte.net>
29152
29153         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
29154         * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
29155         an overlay to redraw the image because it has been exposed.
29156         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
29157         (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
29158         (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
29159         * sys/ximage/ximagesink.h: Implement expose method from XOverlay
29160         interface
29161         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
29162         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
29163         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
29164         * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
29165         interface
29166
29167 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29168
29169         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
29170           more memleak fixage
29171
29172 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29173
29174         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
29175         * gst/typefind/gsttypefindfunctions.c:
29176           fix memleaks shown by gst-typefind
29177
29178 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
29179
29180         * common/glib-gen.mak:
29181           add hack rule to touch .Plo files
29182         * gst-libs/gst/colorbalance/Makefile.am:
29183         * gst-libs/gst/mixer/Makefile.am:
29184         * gst-libs/gst/play/Makefile.am:
29185         * gst-libs/gst/tuner/Makefile.am:
29186           remove glib_root variable
29187
29188 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29189
29190         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
29191           set explicit caps before adding the element, so the autopluggers can
29192           plug correctly.
29193         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
29194         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
29195         (mpeg_video_type_find), (mpeg_video_stream_type_find),
29196         (dv_type_find):
29197           fix memleaks in typefind functions. gst_type_find_suggest takes a const
29198           argument.
29199
29200 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
29201
29202         * gst-libs/gst/colorbalance/Makefile.am:
29203         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
29204         * gst-libs/gst/colorbalance/colorbalance.c:
29205         * gst-libs/gst/colorbalance/colorbalance.h:
29206         * gst-libs/gst/colorbalance/colorbalancemarshal.list:
29207         * gst-libs/gst/mixer/Makefile.am:
29208         * gst-libs/gst/mixer/mixer-marshal.list:
29209         * gst-libs/gst/mixer/mixer.c:
29210         * gst-libs/gst/mixer/mixer.h:
29211         * gst-libs/gst/mixer/mixermarshal.list:
29212         * gst-libs/gst/play/Makefile.am:
29213         * gst-libs/gst/play/play.h:
29214         * gst-libs/gst/tuner/Makefile.am:
29215         * gst-libs/gst/tuner/tuner-marshal.list:
29216         * gst-libs/gst/tuner/tuner.c:
29217         * gst-libs/gst/tuner/tuner.h:
29218         * gst-libs/gst/tuner/tunermarshal.list:
29219           use new glib-gen.mak snippet to clean up Makefile.am
29220           fix various bugs in Makefile.am's
29221
29222 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29223
29224         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
29225           handle chain parsing correctly in the multichain case
29226         * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
29227         (theora_dec_from_granulepos), (theora_dec_to_granulepos),
29228         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
29229         (theora_dec_chain):
29230           handle events and queries correctly
29231
29232 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
29233
29234         * .cvsignore:
29235         Ignore generated file _stdint.h.
29236
29237 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
29238
29239         * gst-libs/gst/colorbalance/Makefile.am:
29240         * gst-libs/gst/colorbalance/colorbalance.h:
29241         * gst-libs/gst/mixer/Makefile.am:
29242         * gst-libs/gst/mixer/mixer.h:
29243         * gst-libs/gst/play/Makefile.am:
29244         * gst-libs/gst/play/play.h:
29245         * gst-libs/gst/tuner/Makefile.am:
29246         * gst-libs/gst/tuner/tuner.h:
29247         Generate enum type code with glib-mkenums.
29248         * gst-libs/gst/colorbalance/.cvsignore:
29249         * gst-libs/gst/mixer/.cvsignore:
29250         * gst-libs/gst/play/.cvsignore:
29251         * gst-libs/gst/tuner/.cvsignore:
29252         Ignore generated files.
29253
29254 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
29255
29256         * gst-libs/gst/audio/.cvsignore:
29257         Ignore generated file.
29258         * gst-libs/gst/audio/Makefile.am:
29259         Do not install example filter.
29260
29261 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
29262
29263         * examples/switch/.cvsignore:
29264         Ignore generated file.
29265
29266 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29267
29268         * common/m4/ax_create_stdint_h.m4:
29269         * configure.ac:
29270           add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
29271           _stdint.h.
29272         * Makefile.am:
29273           remove generated _stdint.h in DISTCLEANFILES
29274         * ext/a52dec/gsta52dec.c:
29275           include _stdint.h for a52dec. (should fix #133064)
29276
29277 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
29278
29279         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
29280         (gst_tag_to_vorbis_comments):
29281         Add replaygain support to vorbistag
29282
29283 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
29284         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
29285         (gst_ffmpeg_caps_to_extradata):
29286           Fix SVQ3 caps flag properties
29287           Use glib macro for bytes swap
29288
29289 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
29290
29291         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
29292         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
29293         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
29294         * ext/sndfile/gstsf.c: (plugin_init):
29295         * gst/avi/gstavi.c: (plugin_init):
29296         * sys/dxr3/dxr3init.c: (plugin_init):
29297         * sys/oss/gstossaudio.c: (plugin_init):
29298         * sys/v4l/gstv4l.c: (plugin_init):
29299         * sys/v4l2/gstv4l2.c: (plugin_init):
29300           remove textdomain calls
29301         * po/nl.po:
29302           update Dutch translation
29303
29304 2004-02-02  Julien MOUTTE  <julien@moutte.net>
29305
29306         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
29307         (gst_play_set_audio_sink): Moving volume in the audio thread for
29308         instantaneous volume change. Maybe i will add another volume in front
29309         of visualization later, not sure yet though.
29310
29311 2004-02-02  Julien MOUTTE  <julien@moutte.net>
29312
29313         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
29314         (gst_ximagesink_handle_xevents): Better X events handling, only take
29315         the latest events for configure and motion.
29316         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
29317
29318 2004-02-02  Jon Trowbridge  <trow@gnu.org>
29319
29320         reviewed by: David Schleef  <ds@schleef.org>
29321
29322         Fix memory leaks:
29323         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
29324         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
29325
29326 2004-02-02  David Schleef  <ds@schleef.org>
29327
29328         code cleanup.  Change bzero() to memset().  Remove duplicate ; at ends
29329         of lines.
29330         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
29331         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
29332         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
29333         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
29334         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
29335         * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
29336         * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
29337         * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
29338         (gst_float2_2_int_link):
29339         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
29340         * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
29341         * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
29342         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
29343         * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
29344         * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
29345         * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
29346         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
29347         * testsuite/gst-lint: Add tests for bzero and ;;
29348
29349 2004-02-02  David Schleef  <ds@schleef.org>
29350
29351         * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
29352
29353 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
29354
29355         * ext/aalib/gstaasink.c: (gst_aasink_open):
29356         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
29357         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29358         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
29359         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
29360         (gst_afsink_close_file):
29361         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
29362         (gst_afsrc_close_file):
29363         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
29364         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
29365         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
29366         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
29367         * ext/esd/esdmon.c: (gst_esdmon_get):
29368         * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
29369         * ext/faac/gstfaac.c: (gst_faac_chain):
29370         * ext/faad/gstfaad.c: (gst_faad_chain):
29371         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
29372         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
29373         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
29374         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
29375         (gst_flacdec_loop):
29376         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
29377         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
29378         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
29379         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
29380         (gst_gnomevfssink_close_file):
29381         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
29382         (gst_gnomevfssrc_open_file):
29383         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
29384         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
29385         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
29386         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
29387         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
29388         * ext/mad/gstmad.c: (gst_mad_chain):
29389         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
29390         * ext/mpeg2dec/gstmpeg2dec.c:
29391         * ext/mpeg2enc/gstmpeg2enc.cc:
29392         * ext/mplex/gstmplex.cc:
29393         * ext/mplex/gstmplexibitstream.cc:
29394         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
29395         (gst_ogg_demux_push):
29396         * ext/raw1394/gstdv1394src.c:
29397         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
29398         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
29399         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
29400         (gst_sf_loop):
29401         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
29402         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
29403         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
29404         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
29405         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
29406         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
29407         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
29408         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
29409         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
29410         (gst_riff_read_element_data), (gst_riff_read_seek),
29411         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
29412         * gst/adder/gstadder.c: (gst_adder_loop):
29413         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
29414         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
29415         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
29416         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
29417         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
29418         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
29419         * gst/goom/gstgoom.c: (gst_goom_chain):
29420         * gst/id3/gstid3types.c: (gst_id3types_loop):
29421         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
29422         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
29423         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
29424         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
29425         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
29426         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
29427         (gst_ebml_read_float), (gst_ebml_read_header):
29428         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
29429         (gst_matroska_demux_parse_blockgroup):
29430         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
29431         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
29432         * gst/oneton/gstoneton.c: (gst_oneton_chain):
29433         * gst/silence/gstsilence.c: (gst_silence_get):
29434         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
29435         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
29436         * gst/speed/gstspeed.c: (speed_loop):
29437         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
29438         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
29439         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
29440         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
29441         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
29442         (gst_wavparse_loop):
29443         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
29444         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
29445         (dxr3audiosink_close):
29446         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
29447         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
29448         (dxr3videosink_close), (dxr3videosink_write_data):
29449         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
29450         * sys/oss/gstosssink.c: (gst_osssink_chain):
29451         * sys/oss/gstosssrc.c: (gst_osssrc_get):
29452         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
29453         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
29454         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
29455         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
29456         (gst_v4l_set_window), (gst_v4l_enable_overlay):
29457         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
29458         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
29459         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
29460         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
29461         (gst_v4l_set_audio):
29462         * sys/v4l/v4l_calls.h:
29463         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
29464         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
29465         (gst_v4lmjpegsink_playback_init),
29466         (gst_v4lmjpegsink_playback_start):
29467         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
29468         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
29469         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
29470         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
29471         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
29472         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
29473         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
29474         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
29475         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
29476         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
29477         (gst_v4l2_get_output), (gst_v4l2_set_output),
29478         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
29479         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
29480         (gst_v4l2_set_attribute):
29481         * sys/v4l2/v4l2_calls.h:
29482         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
29483         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
29484         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
29485         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
29486         (gst_v4l2src_capture_stop):
29487         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
29488         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
29489         (gst_ximagesink_chain):
29490         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
29491         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
29492         (gst_xvideosink_xwindow_new):
29493         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29494         (gst_xvimagesink_chain):
29495
29496 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
29497
29498         * gst/volume/gstvolume.c: (gst_volume_set_volume),
29499         (gst_volume_get_volume), (volume_class_init), (volume_init),
29500         (volume_chain_int16), (volume_update_volume):
29501         * gst/volume/gstvolume.h:
29502           make code more readable by removing magic numbers
29503           make mixer interface export 0-100 range
29504           make it internally map to 0.0-1.0 range so users don't distort
29505           output by putting the sliders at full volume
29506
29507 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
29508
29509         * gst-libs/gst/play/play.c: (gst_play_tick_callback),
29510         (gst_play_state_change), (gst_play_seek_to_time):
29511         block the tick callback for 0.5 secs after doing a seek
29512
29513 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
29514
29515         * gst-libs/gst/play/play.c: (gst_play_new):
29516           check for GError
29517
29518 2004-02-01  Julien MOUTTE  <julien@moutte.net>
29519
29520         * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
29521         (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
29522         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
29523         (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
29524         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
29525         (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
29526
29527 2004-02-01  Thomas Vander Stichele  <thomas at apestaart dot org>
29528
29529         * configure.ac:
29530         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29531           check for a function added in vorbis 1.1
29532
29533 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29534
29535         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
29536         (gst_alsa_drain_audio), (gst_alsa_stop_audio):
29537           really start/stop clock only on PLAYING <=> PAUSED
29538         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29539           remove \n from debugging lines
29540         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
29541           make it work when seeking does not
29542         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29543           reset on DISCONT
29544
29545 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29546
29547         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
29548           start clock on PAUSED=>PLAYING, not later
29549         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
29550           extract correct time for different discont formats
29551         (gst_alsa_sink_get_time):
29552           don't segfault when no format is negotiated yet, just return 0
29553         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29554         (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
29555         (gst_ogg_pad_push):
29556           handle flush and discont events correctly
29557         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
29558           handle discont events correctly
29559
29560 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
29561
29562         * gst-libs/gst/play/play.c: (gst_play_error_quark),
29563         (gst_play_error_create), (gst_play_error_plugin),
29564         (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
29565         * gst-libs/gst/play/play.h:
29566           add error handling during creation
29567         * examples/gstplay/player.c: (main):
29568           use new gst_play_new
29569
29570
29571 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29572
29573         * ext/theora/theoradec.c: (theora_dec_chain):
29574           make comments work
29575         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
29576         (vorbis_dec_src_event), (vorbis_dec_chain):
29577           add encoder tag, fix tag reading to be more error tolerant, change
29578           BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
29579           gst_pad_event_default.
29580         * gst/tags/gstvorbistag.c:
29581         (gst_tag_list_from_vorbiscomment_buffer):
29582           undefine function specific define at end of function
29583
29584 2004-01-31  Jeremy Simon  <jesimon@libertysurf.fr>
29585
29586         * ext/flac/gstflac.c: (plugin_init):
29587         * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
29588         * ext/flac/gstflacdec.h:
29589         * ext/flac/gstflacenc.h:
29590           Fix typos
29591
29592 2004-01-30  David I. Lehn  <dlehn@users.sourceforge.net>
29593
29594         * examples/gstplay/player.c: s/gstplay.h/play.h/
29595
29596 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
29597
29598         * gst-libs/gst/play/Makefile.am:
29599         * gst-libs/gst/play/gstplay.c:
29600         * gst-libs/gst/play/gstplay.h:
29601         * gst-libs/gst/play/play.c:
29602           more surgery, operation complete
29603
29604 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
29605
29606         * gst-libs/gst/play/play.old.c:
29607         * gst-libs/gst/play/play.old.h:
29608           after CVS surgery by moving, remove
29609         * gst-libs/gst/play/playpipelines.c:
29610           remove
29611
29612         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
29613           add negotiation error
29614
29615 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
29616
29617         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29618         (gst_ogg_demux_push):
29619           add some seeking debug info
29620           send a flush when seeking
29621
29622 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29623
29624         * configure.ac:
29625           use AC_C_INLINE
29626         * configure.ac:
29627         * ext/Makefile.am:
29628         * ext/theora/Makefile.am:
29629         * ext/theora/theoradec.c:
29630           add theora video decoder. Does just do simple decoding for now and
29631           has been tested against Theora cvs only. It only works when theora
29632           is compiled with --enable-static.
29633         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29634           always reset packetno on DISCONT
29635
29636 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29637
29638         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
29639           Fix audio.
29640
29641 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29642
29643         * gst/mpegaudioparse/gstmpegaudioparse.c:
29644         (mp3_type_frame_length_from_header):
29645           Fix header parsing - stolen from ffmpeg (thank you! :) ).
29646
29647 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29648
29649         * ext/esd/esdsink.c: (gst_esdsink_init):
29650           Since we have static pad template caps, we don't need to negotiate;
29651           either the core errors out or we know the format.
29652
29653 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29654
29655         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
29656         (gst_riff_read_seek):
29657         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
29658         (gst_ebml_read_seek):
29659           Fix event handling.
29660
29661 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29662
29663         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
29664           removee video/x-theora from vp3 decoder, it doesn't handle raw
29665           theora streams
29666         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
29667           fix bug with finalizing element that never went to PAUSED
29668         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
29669           length and position queries were swapped
29670         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
29671         (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
29672         (vorbis_dec_src_event):
29673           implement querying time and bytes
29674
29675 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
29676
29677         * just about every source file:
29678           gst_element_error -> GST_ELEMENT_ERROR
29679
29680 2004-01-29  Julien MOUTTE  <julien@moutte.net>
29681
29682         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
29683         emiting FLUSH and even before DISCONT.
29684         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
29685         get the best instant seeking as possible yay!
29686
29687 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29688
29689         * gst/mpeg1videoparse/gstmp1videoparse.c:
29690         (gst_mp1videoparse_real_chain):
29691           Committed wrong version last week... Grr... Didn't notice until now.
29692
29693 2004-01-29  Julien MOUTTE <julien@moutte.net>
29694
29695         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
29696         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
29697         have_xwindow_id signal in xwindow_create.
29698
29699 2004-01-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29700
29701         * ext/ogg/gstoggdemux.c:
29702           lots of changes - mainly support for chained bitstreams, seeking,
29703           querying and bugfixes of course
29704         * ext/vorbis/Makefile.am:
29705         * ext/vorbis/vorbisdec.c:
29706         * ext/vorbis/vorbisdec.h:
29707           add vorbisdec raw vorbis decoder
29708         * ext/vorbis/vorbis.c: (plugin_init):
29709           register vorbisdec as PRIMARY, vorbisfile as SECONDARY
29710         * gst/intfloat/Makefile.am:
29711         * gst/intfloat/float22int.c:
29712         * gst/intfloat/float22int.h:
29713         * gst/intfloat/gstintfloatconvert.c: (plugin_init):
29714           add float2intnew plugin. It converts multichannel interleaved float to
29715           multichannel interleaved int. The name should probably be changed.
29716         * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
29717         (plugin_init):
29718           add typefinding for raw theora video so oggdemux can detect it.
29719
29720 2004-01-28  Julien MOUTTE  <julien@moutte.net>
29721
29722         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
29723         sink element first.
29724         * gst/videoscale/gstvideoscale.c:
29725         (gst_videoscale_handle_src_event): Fixing src event handler.
29726
29727 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29728
29729         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
29730         (gst_v4lsrc_open), (gst_v4lsrc_close),
29731         (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
29732         (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
29733         * sys/v4l/gstv4lsrc.h:
29734         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
29735         (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
29736           Implement resizing... Hack. But that's why v4l is b0rked...
29737
29738 2004-01-28  Julien MOUTTE <julien@moutte.net>
29739
29740         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
29741         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
29742         (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
29743         (gst_ximagesink_xwindow_destroy):
29744         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
29745         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
29746         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
29747         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
29748         (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
29749         correctly cleaning the image created to check xshm calls on succes,
29750         added a lot of XSync calls in X11 functions, and fixed a segfault when
29751         no image format was defined before negotiation happened.
29752
29753 2004-01-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29754
29755         * ext/alsa/gstalsa.c: (gst_alsa_query_func):
29756           use gst_element_get_time to get correct time
29757
29758 2004-01-28  Julien MOUTTE  <julien@moutte.net>
29759
29760         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
29761         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
29762         (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
29763         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
29764         (gst_xvimagesink_check_xshm_calls),
29765         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
29766         X plugins are now able to detect that XShm calls will fail even if the
29767         server claims that it has XShm support (remote displays most of the
29768         time). We then log the error as a GST_DEBUG and set use_shm to FALSE
29769         so that we use non XShm functions. This feature is almost useless for
29770         xvimagesink as Xv is not supported on remote displays anyway, but
29771         it might happen than even on the local display XShm calls fail.
29772
29773 2004-01-27  David Schleef  <ds@schleef.org>
29774
29775         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
29776         (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
29777         (gst_esdsink_change_state):  Fix sync issues in esdsink.  Also
29778         changed esdsink to only use 44100,16,2, since esd sucks at rate
29779         conversion and esdsink has had difficulty negotiating.
29780
29781 2004-01-27  Julien MOUTTE <julien@moutte.net>
29782
29783         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
29784         (gst_play_seek_to_time): Fixing the way to get current position.
29785
29786 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29787
29788         * sys/oss/gstosssink.c: (gst_osssink_sink_query):
29789           use gst_element_get_time to get correct time
29790
29791 2004-01-27  Julien MOUTTE <julien@moutte.net>
29792
29793         * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
29794         fix ever... Inverting 2 lines of code make spider autoplug correctly
29795         tagged mp3 !
29796
29797 2004-01-27  David Schleef  <ds@schleef.org>
29798
29799         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
29800         Use gst_pad_try_set_caps_nonfixed().
29801
29802 2004-01-27  David Schleef  <ds@schleef.org>
29803
29804         * gst/ac3parse/gstac3parse.c: update to checklist 5
29805         * gst/adder/gstadder.c: rewrite negotiation.  update to checklist 5
29806         * gst/audioconvert/gstaudioconvert.c: update to checklist 5
29807         * gst/audioscale/gstaudioscale.c: same
29808         * gst/auparse/gstauparse.c: same
29809         * gst/avi/gstavidemux.c: same
29810
29811 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29812
29813         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
29814           stop processing after EOS
29815
29816 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29817
29818         * gst/asfdemux/asfheaders.h:
29819         * gst/asfdemux/gstasfdemux.c:
29820         * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
29821         (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
29822         (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
29823           lot's of fixes to make data extraction simpler and get the code
29824           architecture and compiler independant. Add debugging category
29825         * gst/goom/gstgoom.c: (gst_goom_change_state):
29826           reset channel count on PAUSED=>READY, not READY=>PAUSED
29827
29828 2004-01-26  Colin Walters  <walters@verbum.org>
29829
29830         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
29831         code to pull a bigger buffer in iradio mode.  This as a side effect
29832         makes typefinding work.
29833
29834 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
29835
29836         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
29837         Fix SVQ3 decoding on PPC
29838
29839 2004-01-26  Julien MOUTTE <julien@moutte.net>
29840
29841         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
29842         that one managed to stay there... Fixed.
29843
29844 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
29845
29846         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
29847         (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
29848         * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
29849         (qtdemux_video_caps):
29850         * gst/qtdemux/qtdemux.h:
29851         Add SVQ3 specific flags to qtdemux and ffmpeg
29852
29853 2004-01-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29854
29855         * gst-libs/gst/audio/audio.h:
29856           remove buffer-frames from audio caps
29857         * gst/audioconvert/gstaudioconvert.c:
29858           fix plugin to really work.
29859
29860 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29861
29862         * gst-libs/gst/mixer/mixer.c:
29863         * gst-libs/gst/propertyprobe/propertyprobe.c:
29864         * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
29865         (gst_tuner_find_channel_by_name):
29866         * gst-libs/gst/tuner/tuner.h:
29867           Add gtk-doc style comments. Also fix a function name.
29868
29869 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29870
29871         * ext/divx/gstdivxdec.c: (gst_divxdec_init),
29872         (gst_divxdec_negotiate):
29873           Fix for new capsnego - also fixes gst-player with divxdec.
29874
29875 2004-01-25  Julien MOUTTE  <julien@moutte.net>
29876
29877         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
29878         (gst_play_identity_handoff), (gst_play_set_location),
29879         (gst_play_set_visualization), (gst_play_connect_visualization): Another
29880         try in visualization implementation. Still have an issue with switch
29881         blocking when pulling from video_queue and only audio comes out of
29882         spider.
29883         * gst/switch/gstswitch.c: (gst_switch_release_pad),
29884         (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
29885         release method. And check if the pad is usable before pulling.
29886
29887 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29888
29889         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
29890         (gst_videobalance_init),
29891         (gst_videobalance_colorbalance_list_channels),
29892         (gst_videobalance_colorbalance_set_value),
29893         (gst_videobalance_colorbalance_get_value),
29894         (gst_videobalance_update_properties),
29895         (gst_videobalance_update_tables_planar411),
29896         (gst_videobalance_planar411):
29897         * gst/videofilter/gstvideobalance.h:
29898           Implement lookup-tables. +/- 10x faster.
29899
29900 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29901
29902         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
29903         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
29904           The index reading was broken. The rest worked fine, but the whole
29905           goal of my rewrite was to make avidemux readable, and this was
29906           not at all readable. Please use typed variables.
29907
29908 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29909
29910         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29911           Additional pad usability check.
29912         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
29913         (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
29914         (gst_mp1videoparse_real_chain):
29915           Fix MPEG video stream parsing. The original plugin had several
29916           issues, including not timestamping streams where the source was
29917           not timestamped (this happens with PTS values in mpeg system
29918           streams, but MPEG video is also a valid stream on its own so
29919           that needs timestamps too). We use the display time code for that
29920           for now. Also, if one incoming buffer contains multiple valid
29921           frames, we push them all on correctly now, including proper EOS
29922           handling. Lastly, several potential segfaults were fixed, and we
29923           properly sync on new sequence/gop headers to include them in next,
29924           not previous frames (since they're header for the next frame, not
29925           the previous). Also see #119206.
29926         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
29927         (bpf_from_header):
29928           Move caps setting so we only do it after finding several valid
29929           MPEG-1 fraes sequentially, not right after the first one (which
29930           might be coincidental).
29931         * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
29932         (mpeg_video_type_find), (mpeg_video_stream_type_find),
29933         (plugin_init):
29934           Add unsynced MPEG video stream typefinding, and change some
29935           probability values so we detect streams rightly. The idea is as
29936           follows: I can have an unsynced system stream which contains
29937           video. In the current code, I would randomly get a type for either
29938           system or video stream type found, because the probabilities are
29939           being calculated rather randomly. I now use fixed values, so we
29940           always prefer system stream if that was found (and that is how it
29941           should be). If no system stream was found, we can still identity                the stream as video-only.
29942
29943 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29944
29945         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
29946         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
29947           don't write to buffer. Extract data without the need of
29948           __attribute__ ((packed))
29949
29950 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29951
29952         * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
29953         (mpeg1_sys_type_find):
29954           Fix MPEG-1 stream typefinding.
29955
29956 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29957
29958         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
29959           Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
29960
29961 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
29962
29963         * ext/esd/esdsink.c: (gst_esdsink_open_audio):
29964         * ext/esd/gstesd.c: (plugin_init):
29965           private debugging, better error reporting
29966
29967 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29968
29969         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
29970         (gst_riff_read_init), (gst_riff_read_change_state):
29971         * gst-libs/gst/riff/riff-read.h:
29972           Remove stuff fromold metadata system.
29973
29974 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29975
29976         * ext/ogg/gstoggdemux.c:
29977           Fix wrong file comment.
29978         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29979         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
29980           Add metadata reading properly.
29981
29982 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
29983
29984         * ext/Makefile.am:
29985           Fix nas DIST_SUBDIRS
29986           Uraeus:
29987           Fix bug where make distcheck doesn't get run on adding stuff to
29988           the build.
29989
29990 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29991
29992         * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
29993         * ext/divx/gstdivxdec.h:
29994           Fix divx3 ("msmpeg4") playback using divxdec.
29995
29996 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29997
29998         * gst/typefind/gsttypefindfunctions.c:
29999         (mp3_type_frame_length_from_header): fix bug in length computation
30000         (mp3_type_find): improve debugging output
30001
30002 2004-01-23  Julien MOUTTE  <julien@moutte.net>
30003
30004         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
30005         (gst_play_set_location), (gst_play_seek_to_time),
30006         (gst_play_set_audio_sink), (gst_play_set_visualization),
30007         (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
30008         the pipeline from scratch. Visualization is back and switch went out as
30009         i realized it was not possible to use the way i wanted.
30010         * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
30011         (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
30012         clearing in state change from READY to NULL. So that one can clean the
30013         X ressources keeping the element.
30014         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30015         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
30016         (gst_xvimagesink_colorbalance_set_value),
30017         (gst_xvimagesink_colorbalance_get_value),
30018         (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
30019         (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
30020         change from READY to NULL and fixed some stupid bugs in colorbalance
30021         get/set values. Also added the following feature : when nobody tries to
30022         set some values to the colorbalance levels before the xcontext is
30023         grabbed, then when creating channels list from Xv attributes we set the
30024         internal values to the Xv defaults. This way we handle buggy Xv drivers
30025         that set default hue values far from the middle of the range (Thanks
30026         to Jon Trowbridge for pointing that issue).
30027         * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
30028         colorbalance levels have been set before xcontext is grabbed.
30029
30030 2004-01-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30031
30032         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
30033           Fix the ossmixer case where we shouldn't open /dev/dsp* because
30034           it might block operations (which is bad for a mixer).
30035
30036 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
30037
30038         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
30039         (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
30040         (gmip_find_type_pre):
30041         * gst-libs/gst/media-info/media-info-priv.h:
30042         * gst-libs/gst/media-info/media-info.c:
30043         (gst_media_info_instance_init), (gst_media_info_read_idler):
30044         add fakesink to get caps on decoder src pad again
30045         fix callback prototype to match new have_type signal signature
30046
30047 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
30048
30049         * gst/adder/gstadder.c: (gst_adder_link):
30050           fix non-compile and cut-n-paste code
30051
30052 2004-01-21  David Schleef  <ds@schleef.org>
30053
30054         * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
30055         (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
30056         (gst_swfdec_init), (gst_swfdec_change_state):
30057         * ext/swfdec/gstswfdec.h:
30058         Fix negotiation.
30059         * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
30060         (gst_adder_request_new_pad): Fix negotiation.
30061         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
30062         Add a fixate function.
30063         * gst/intfloat/gstfloat2int.c:
30064         * gst/intfloat/gstfloat2int.h:
30065         * gst/intfloat/gstint2float.c:
30066         * gst/intfloat/gstint2float.h:
30067         Completely rewrite the negotiation.  Doesn't quite work yet,
30068         due to some buffer-frames problem.
30069
30070 2004-01-21  Thomas Vander Stichele  <thomas at apestaart dot org>
30071
30072         * ext/gnomevfs/gstgnomevfssrc.c:
30073         * sys/v4l2/v4l2_calls.h:
30074           fix includes for distcheck
30075
30076 2004-01-21  Christian Schaller <uraeus@gnome.org>
30077
30078         * ext/nas/
30079         Add libnas (network audio system) plugin, patch from Arwed von Merkatz
30080         based on earlier patch from Laurent Vivier
30081
30082 2004-01-20  Jeremy Simon  <jesimon@libertysurf.fr>
30083
30084         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
30085         Fix wma caps property
30086         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
30087         Fix typo (flags1 and flags2)
30088
30089 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
30090
30091         * gst-libs/gst/media-info/media-info-priv.c:
30092         (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
30093         (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
30094         (gmip_find_stream), (gmip_find_track_metadata),
30095         (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
30096         (gmip_find_track_format):
30097         * gst-libs/gst/media-info/media-info-priv.h:
30098         * gst-libs/gst/media-info/media-info-test.c: (main):
30099         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
30100         (gst_media_info_read_idler), (gst_media_info_read):
30101         * gst-libs/gst/media-info/media-info.h:
30102           register debugging category and use it for debugging
30103
30104 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
30105
30106         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
30107         (gst_vorbisfile_new_link):
30108           signal streaminfo through tags
30109
30110 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30111
30112         * ext/mplex/gstmplex.cc:
30113         * ext/mplex/gstmplexibitstream.cc:
30114           g++ doesn't like NULL in our i18n/error macros, should be
30115           either (NULL) or ("").
30116
30117 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30118
30119         * sys/dxr3/dxr3audiosink.c:
30120         * sys/dxr3/dxr3init.c:
30121         * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
30122         * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
30123           Fix more error error error errors (missing includes here).
30124
30125 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30126
30127         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
30128           fix thomas' error errors.
30129
30130 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
30131
30132         * ext/mpeg2enc/gstmpeg2enc.cc:
30133           fix error errors.
30134
30135 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30136
30137         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
30138         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
30139           Fix for new error system.
30140
30141 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
30142
30143         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
30144           fix for new error reporting
30145
30146 2004-01-20  David Schleef  <ds@schleef.org>
30147
30148         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
30149         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
30150         (gst_ximagesink_set_xwindow_id): Change to using a framerate
30151         of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
30152         and neither is 100+, most likely.
30153         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
30154         (gst_xvimagesink_getcaps): same
30155
30156 2004-01-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30157
30158         * configure.ac:
30159           Up version requirement to 2.0.3 (not yet released) to avoid symbol
30160           clashes with ffmpeg.
30161
30162 2004-01-20  Julien MOUTTE  <julien@moutte.net>
30163
30164         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
30165         (gst_switch_init): Fixed switch element : proxying link and setting
30166         caps from src to sink on request.
30167
30168 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
30169
30170         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
30171         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
30172         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
30173         fix element_error
30174
30175 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
30176
30177         * sys/v4l/v4l_calls.h:
30178         * sys/v4l2/v4l2_calls.h:
30179           element_error fixes
30180
30181 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
30182
30183         * gst-libs/gst/gst-i18n-plugin.h:
30184           add locale.h
30185           remove config.h inclusion
30186
30187 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
30188
30189         * autogen.sh:
30190           adding autopoint invocation
30191         * Makefile.am:
30192         * configure.ac:
30193         * gst-libs/gst/gettext.h:
30194           adding gettext bits
30195         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
30196         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
30197         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
30198         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
30199         (gst_gnomevfssink_close_file):
30200         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
30201         * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
30202         * gst-libs/gst/gst-i18n-plugin.h:
30203         * gst/avi/gstavi.c: (plugin_init):
30204         * sys/dxr3/dxr3init.c: (plugin_init):
30205         * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
30206         * sys/oss/gstossaudio.c: (plugin_init):
30207         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
30208         * sys/v4l/gstv4l.c: (plugin_init):
30209         * sys/v4l/v4l_calls.c: (gst_v4l_open):
30210         * sys/v4l2/gstv4l2.c: (plugin_init):
30211         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
30212         (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
30213         (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
30214         (gst_v4l2_set_output), (gst_v4l2_get_frequency),
30215         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
30216         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
30217           make sure locale and translation domain are set
30218           fix translated strings
30219         * po/.cvsignore:
30220         * po/LINGUAS:
30221         * po/Makevars:
30222         * po/POTFILES.in:
30223         * po/nl.po:
30224           put translation files into place
30225         * sys/xvideo/imagetest.c: (main):
30226         * ext/dv/demo-play.c: (main):
30227           fix unnecessary translations
30228
30229 2004-01-19  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
30230
30231         * ext/sndfile/gstsf.c:
30232         * gst/avi/gstavimux.c:
30233         * ext/audiofile/gstafsink.c:
30234         * ext/audiofile/gstafsrc.c:
30235         * ext/gnomevfs/gstgnomevfssink.c:
30236         * ext/gnomevfs/gstgnomevfssrc.c:
30237         * sys/oss/gstosselement.c:
30238         * sys/v4l/v4l_calls.h:
30239           fix i18n include
30240
30241 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
30242
30243         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
30244         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
30245         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
30246         (gst_v4l2_get_output), (gst_v4l2_set_output),
30247         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
30248         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
30249         (gst_v4l2_set_attribute):
30250         update to new error handling
30251
30252 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
30253
30254         * ext/sidplay/gstsiddec.cc:
30255         * gst/modplug/gstmodplug.cc:
30256           parenthese NULL because C++ seems angry about it
30257
30258 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
30259
30260         * gst-libs/gst/gst-i18n-plugin.h:
30261           add skeleton i18n stuff, but needs to be further implemented
30262
30263 2004-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>
30264
30265         * examples/gstplay/player.c: (main):
30266         * ext/aalib/gstaasink.c: (gst_aasink_open):
30267         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
30268         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
30269         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
30270         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
30271         (gst_afsink_close_file):
30272         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
30273         (gst_afsrc_close_file):
30274         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
30275         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
30276         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
30277         * ext/esd/esdmon.c: (gst_esdmon_get):
30278         * ext/esd/esdsink.c: (gst_esdsink_chain):
30279         * ext/faac/gstfaac.c: (gst_faac_chain):
30280         * ext/faad/gstfaad.c: (gst_faad_chain):
30281         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
30282         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
30283         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
30284         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
30285         (gst_flacdec_loop):
30286         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
30287         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
30288         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
30289         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
30290         (gst_gnomevfssink_close_file):
30291         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
30292         (gst_gnomevfssrc_open_file):
30293         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
30294         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
30295         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
30296         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
30297         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
30298         * ext/mad/gstmad.c: (gst_mad_chain):
30299         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
30300         * ext/mpeg2dec/gstmpeg2dec.c:
30301         * ext/mpeg2enc/gstmpeg2enc.cc:
30302         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
30303         * ext/mplex/gstmplex.cc:
30304         * ext/mplex/gstmplexibitstream.cc:
30305         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
30306         (gst_ogg_demux_push), (gst_ogg_pad_push):
30307         * ext/raw1394/gstdv1394src.c:
30308         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
30309         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
30310         * ext/sidplay/gstsiddec.cc:
30311         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
30312         (gst_sf_loop):
30313         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
30314         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
30315         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
30316         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
30317         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
30318         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
30319         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
30320         * gst-libs/gst/Makefile.am:
30321         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
30322         (gst_riff_read_element_data), (gst_riff_read_seek),
30323         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
30324         * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
30325         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
30326         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
30327         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
30328         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
30329         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
30330         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
30331         * gst/goom/gstgoom.c: (gst_goom_chain):
30332         * gst/id3/gstid3types.c: (gst_id3types_loop):
30333         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
30334         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
30335         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
30336         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
30337         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
30338         (gst_ebml_read_float), (gst_ebml_read_header):
30339         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
30340         (gst_matroska_demux_parse_blockgroup):
30341         * gst/modplug/gstmodplug.cc:
30342         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
30343         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
30344         * gst/oneton/gstoneton.c: (gst_oneton_chain):
30345         * gst/silence/gstsilence.c: (gst_silence_get):
30346         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
30347         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
30348         * gst/speed/gstspeed.c: (speed_loop):
30349         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
30350         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30351         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
30352         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
30353         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
30354         (gst_wavparse_loop):
30355         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
30356         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
30357         (dxr3audiosink_close):
30358         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
30359         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
30360         (dxr3videosink_close), (dxr3videosink_write_data):
30361         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
30362         * sys/oss/gstosselement.h:
30363         * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
30364         (gst_osssink_chain):
30365         * sys/oss/gstosssrc.c: (gst_osssrc_get):
30366         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
30367         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
30368         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
30369         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
30370         (gst_v4l_enable_overlay):
30371         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
30372         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
30373         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
30374         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
30375         (gst_v4l_set_audio):
30376         * sys/v4l/v4l_calls.h:
30377         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
30378         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
30379         (gst_v4lmjpegsink_playback_init),
30380         (gst_v4lmjpegsink_playback_start):
30381         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
30382         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
30383         (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
30384         (gst_v4lmjpegsrc_requeue_frame):
30385         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
30386         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
30387         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
30388         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
30389         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
30390         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
30391         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
30392         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
30393         (gst_v4l2src_capture_stop):
30394         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
30395         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
30396         (gst_ximagesink_chain):
30397         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
30398         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
30399         (gst_xvideosink_xwindow_new):
30400         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30401         (gst_xvimagesink_chain):
30402         use new error signal, function and categories
30403
30404 2004-01-18  Jeremy Simon <jesimon@libertysurf.fr>
30405
30406         * configure.ac:
30407         * ext/Makefile.am:
30408         * ext/musicbrainz/gsttrm.c:
30409         * ext/musicbrainz/gsttrm.h:
30410         * ext/musicbrainz/Makefile.am:
30411         Add a trm plugin
30412
30413 2004-01-18  Julien MOUTTE  <julien@moutte.net>
30414
30415         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
30416         (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
30417         synchronous property for debugging.
30418         * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
30419         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30420         (gst_xvimagesink_set_property): Moving a pointer declaration to a
30421         smaller block, fixing indent.
30422
30423 2004-01-16  David Schleef  <ds@schleef.org>
30424
30425         * gst/videofilter/gstvideobalance.c: Fix regression; changing a
30426         property affects the video stream.
30427         * sys/xvimage/xvimagesink.c:
30428         * sys/xvimage/xvimagesink.h:
30429         Add synchronous property for debugging.  Should probably be
30430         disabled in non-CVS builds.  Make sure that the Xv attribute
30431         exists before we set it (crash!).  Fix a silly float bug that
30432         caused colorbalance to just not work.
30433
30434 2004-01-17  Christian Schaller <Uraeus@gnome.org>
30435
30436         * tools/gst-launch-ext.in - update for new plugins
30437
30438 2004-01-16  David Schleef  <ds@schleef.org>
30439
30440         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
30441         already-freed caps.
30442
30443 2994-01-16  Christian Schaller <Uraeus@gnome.org>
30444
30445         * Update spec for new colorspace plugin and libcaca plugin
30446         * Fix compilation of libcaca plugin (clock -> id)
30447
30448 2004-01-16  Julien MOUTTE <julien@moutte.net>
30449
30450         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
30451         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
30452         (gst_xvimagesink_set_xwindow_id),
30453         (gst_xvimagesink_colorbalance_set_value),
30454         (gst_xvimagesink_colorbalance_get_value),
30455         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
30456         (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
30457         correct colorbalance properties. They can now be set when the element
30458         is still in NULL state. The values will be committed to the Xv Port
30459         when xcontext is initialized.
30460         * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
30461         brightness int values in the GstXvImagesink structure.
30462
30463 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30464
30465         * gst-libs/gst/Makefile.am:
30466           restructure so having local patches works easier.
30467
30468 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30469
30470         * ext/mpeg2enc/Makefile.am:
30471         * ext/mpeg2enc/gstmpeg2enc.cc:
30472         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
30473           Bugfix with respect to EOS handling.
30474
30475 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30476
30477         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
30478           Link with right caps (else, it segfaults).
30479         * ext/mplex/gstmplexjob.cc:
30480           Fix for slight API change in 1.6.1.93 release of mjpegtools.
30481
30482 2004-01-15  David Schleef  <ds@schleef.org>
30483
30484         * gst-libs/gst/audio/Makefile.am:
30485         Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
30486         from the template.
30487         * gst-libs/gst/audio/gstaudiofilter.c:
30488         * gst-libs/gst/audio/gstaudiofilter.h:
30489         Add bytes_per_sample and size and n_samples calculation.
30490         * gst-libs/gst/audio/gstaudiofilterexample.c:
30491         Remove, now autogenerated.
30492         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
30493         Moved from gstaudiofilterexample, object name changed, code added
30494         so that it actually works.
30495         * gst-libs/gst/audio/make_filter:
30496         Script to build an audiofilter subclass from the template.
30497         * gst/colorspace/Makefile.am:
30498         * gst/colorspace/yuv2yuv.c:
30499         Remove file, since it's GPL, and we don't use it.
30500
30501 2004-01-15  Julien MOUTTE  <julien@moutte.net>
30502
30503         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30504         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
30505         them use the buffer free function to test how the buffer was allocated.
30506
30507 2004-01-15  David Schleef  <ds@schleef.org>
30508
30509         * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
30510         that handles osssink fallback.
30511         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
30512         (gst_audio_convert_getcaps):
30513         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
30514         Add audio/x-qdm2 for QDM2 audio.
30515         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
30516         * gst/sine/gstsinesrc.h: Add example of how to implement tags.
30517         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
30518         Decrease minimum size to 16x16.
30519         * gst/wavparse/gstwavparse.c:
30520         Convert disabled pad template caps to new caps.
30521         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
30522         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30523         (gst_xvimagesink_chain): Throw element error when display cannot
30524         be opened.  Increase minimum framerate to 1.0.  Check the data
30525         free function on a buffer to make sure it is the type we expect
30526         before manipulating it.
30527
30528 2004-01-15  Julien MOUTTE <julien@moutte.net>
30529
30530         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
30531         (gst_videobalance_colorbalance_set_value): Implement passthru if
30532         settings are in the middle.
30533         * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
30534
30535 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30536
30537         * gst/videofilter/Makefile.am:
30538         * gst/volume/Makefile.am:
30539           Since we use videofilter symbols, link to it.
30540
30541 2004-01-15  Julien MOUTTE <julien@moutte.net>
30542
30543         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
30544         mixer interface type to HARDWARE.
30545         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
30546         type to SOFTWARE.
30547         * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
30548         * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
30549         * gst/volume/gstvolume.c: (gst_volume_interface_supported),
30550         (gst_volume_interface_init), (gst_volume_list_tracks),
30551         (gst_volume_set_volume), (gst_volume_get_volume),
30552         (gst_volume_set_mute), (gst_volume_mixer_init),
30553         (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
30554         (volume_init): Implementing mixer interface.
30555         * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
30556         * sys/oss/gstosselement.c: (gst_osselement_get_type),
30557         (gst_osselement_change_state): Removing some trailing commas in
30558         structures.
30559         * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
30560         interface type to HARDWARE.
30561         * sys/v4l/gstv4lcolorbalance.c:
30562         (gst_v4l_color_balance_interface_init): Setting colorbalance interface
30563         type to HARDWARE.
30564         * sys/v4l2/gstv4l2colorbalance.c:
30565         (gst_v4l2_color_balance_interface_init): Setting colorbalance
30566         interface type to HARDWARE.
30567         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
30568         same code than ximagesink for event handling.
30569
30570 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30571
30572         * ext/snapshot/Makefile.am:
30573         * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
30574         (gst_snapshot_chain):
30575         * ext/snapshot/gstsnapshot.h:
30576           This has to be a joke... Snapshot should be connected to a tee,
30577           colorspace element before it and EOS after that, where the other
30578           src of the tee receives normal data.
30579           The current way is *wrong*.
30580
30581 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30582
30583         * ext/hermes/gsthermescolorspace.c:
30584           Fix another compile error. Same as below.
30585
30586 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30587
30588         * gst/colorspace/gstcolorspace.c:
30589         * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
30590         (gst_colorspace_i420_to_yv12):
30591           Fix compiling... Didn't test if it actually works.
30592
30593 2004-01-15  David Schleef  <ds@schleef.org>
30594
30595         * configure.ac:
30596         * gst/colorspace/Makefile.am:
30597         * gst/colorspace/gstcolorspace.c:
30598         * gst/colorspace/gstcolorspace.h:
30599         * gst/colorspace/yuv2rgb.c:
30600         * gst/colorspace/yuv2rgb.h:
30601         Duplicate the ext/hermes colorspace plugin, and remove Hermes
30602         code and GPL code.  Fix for new caps negotiation.  Rewrite
30603         much of the format handling code, and some of the conversion
30604         code.  Basically, rewrote almost everything.  This element
30605         handles I420, YV12 to RGB conversions.
30606         * ext/hermes/Makefile.am:
30607         * ext/hermes/gsthermescolorspace.c:
30608         Rename colorspace to hermescolorspace.  Fix negotiation issues.
30609         Remove non-Hermes related code.  This element handles lots of
30610         RGB to RGB conversions, but no YUV.
30611         * ext/hermes/gstcolorspace.c:
30612         * ext/hermes/gstcolorspace.h:
30613         * ext/hermes/rgb2yuv.c:
30614         * ext/hermes/yuv2rgb.c:
30615         * ext/hermes/yuv2rgb.h:
30616         * ext/hermes/yuv2rgb_mmx16.s:
30617         * ext/hermes/yuv2yuv.c:
30618         * ext/hermes/yuv2yuv.h:
30619         Remove old code.
30620
30621 2004-01-14  Colin Walters  <walters@verbum.org>
30622
30623         * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
30624         they've already been.
30625
30626 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30627
30628         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
30629           assume tag mode when pad is not connected
30630
30631 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30632
30633         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
30634           Don't update the time of the clock
30635         (gst_alsa_sink_loop):
30636           sync to the clock given to alsasink, not the own clock
30637         * sys/oss/gstosssink.c: (gst_osssink_chain):
30638           sync to the clock
30639         (gst_osssink_change_state):
30640           activate the clock
30641         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30642         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
30643           remove bogus code that made DISCONT events unhandled
30644         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
30645           explicitly case to double in _set_simple. (fixes 2nd warning in bug
30646           #131502)
30647         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
30648         (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
30649         (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
30650           convert g_warning because of wrong asf data to GST_WARNINGs (fixes
30651           2nd warning in bug #131502)
30652
30653 2004-01-14  Julien MOUTTE  <julien@moutte.net>
30654
30655         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
30656         (gst_videobalance_colorbalance_set_value),
30657         (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
30658         for colorbalance interface implementation.
30659         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
30660         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
30661         (gst_ximagesink_dispose), (gst_ximagesink_init),
30662         (gst_ximagesink_class_init): Adding DISPLAY property.
30663         * sys/ximage/ximagesink.h: Adding display_name to store display.
30664         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30665         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
30666         (gst_xvimagesink_dispose), (gst_xvimagesink_init),
30667         (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
30668         properties (they still need polishing though for gst-launch use : no
30669         xcontext yet, i ll do that tomorrow).
30670         * sys/xvimage/xvimagesink.h: Adding display_name to store display.
30671
30672 2004-01-14  Julien MOUTTE  <julien@moutte.net>
30673
30674         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
30675         (gst_play_set_location), (gst_play_set_visualization): Preparing
30676         switch integration, adding videobalance in the pipeline.
30677
30678 2004-01-14  Julien MOUTTE <julien@moutte.net>
30679
30680         * gst-libs/gst/colorbalance/colorbalance.c:
30681         (gst_color_balance_class_init): Adding a default type.
30682         * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
30683         the type.
30684         * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
30685         (gst_videobalance_dispose), (gst_videobalance_class_init),
30686         (gst_videobalance_init), (gst_videobalance_interface_supported),
30687         (gst_videobalance_interface_init),
30688         (gst_videobalance_colorbalance_list_channels),
30689         (gst_videobalance_colorbalance_set_value),
30690         (gst_videobalance_colorbalance_get_value),
30691         (gst_videobalance_colorbalance_init): Implementing colorbalance
30692         interface.
30693         * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
30694         list.
30695         * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
30696         bug which was triggering a BadAccess X error when setting an overlay
30697         before pad was really negotiated.
30698         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
30699         Using the colorbalance type macro.
30700
30701 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30702
30703         * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
30704         (gst_flacenc_chain):
30705           handle tags correctly
30706         * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
30707           extract ID3v1 tags correctly
30708
30709 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30710
30711         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
30712         (plugin_init):
30713           Improve matroska typefinding for odd-typed headers...
30714
30715 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30716
30717         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
30718           Fix for using incremental number on padnames.
30719
30720 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30721
30722         * ext/divx/gstdivxdec.c:
30723         * ext/divx/gstdivxenc.c:
30724           Set category to divx4linux instead of divx (too generic).
30725         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
30726         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
30727         (gst_wavparse_loop), (gst_wavparse_change_state):
30728         * gst/wavparse/gstwavparse.h:
30729           fix parsing of WAV files with non-standard fmt-tag size and fix
30730           skipping of unrecognized chunks... Someone please fix this thing
30731           to use rifflib so all this is automated.
30732         * sys/v4l/Makefile.am:
30733         * sys/v4l2/Makefile.am:
30734           Add X_CFLAGS because we depend on X (for overlay).
30735
30736 2004-01-14  Jan Schmidt  <thaytan@mad.scientist.com>
30737
30738         * ext/mpeg2dec/gstmpeg2dec.c:
30739           Don't issue a timestamp unless we tagged the frame
30740           with a PTS.
30741
30742 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30743
30744         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
30745           Query the audio element to get the time, not the clock. We're
30746           interested in the element's time here.
30747
30748 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30749
30750         * ext/aalib/gstaasink.c: (gst_aasink_chain):
30751         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
30752         * ext/esd/esdsink.c: (gst_esdsink_chain):
30753         * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
30754         * ext/mas/massink.c: (gst_massink_chain):
30755         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
30756         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
30757         (gst_matroska_demux_parse_metadata):
30758         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
30759         (gst_mpeg_parse_release_locks):
30760         * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
30761         * gst/udp/gstudpsink.c: (gst_udpsink_chain):
30762         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30763         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
30764         (gst_osssink_change_state):
30765         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
30766         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30767         * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
30768         (gst_xvideosink_release_locks):
30769         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
30770           use element time.
30771         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
30772         (gst_alsa_clock_stop):
30773         * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
30774         (gst_audio_clock_get_internal_time):
30775           simplify for use with new clocking code.
30776         * testsuite/alsa/Makefile.am:
30777         * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
30778           fix testsuite for new caps system
30779
30780 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30781
30782         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
30783         * ext/flac/gstflacenc.c: (add_one_tag):
30784           length is already host endian, no need to convert. Fixes playback of
30785           tagged files on PPC. (bug #128384)
30786
30787 2004-01-13  Julien MOUTTE <julien@moutte.net>
30788
30789         * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
30790         colorbalance interface stating if it is hardware based or software
30791         based.
30792         * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
30793         Removing a trailing comma.
30794         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30795         (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
30796         Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
30797         the documentation seems to be wrong on the -1000 to 1000 interval.
30798
30799 2004-01-12  David Schleef  <ds@schleef.org>
30800
30801         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
30802         (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
30803         (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
30804         Fix negotiation.  Add a bufferalloc function for the sink pad,
30805         and generally clean up some of the code.
30806
30807 2004-01-12  Julien MOUTTE <julien@moutte.net>
30808
30809         * gst-libs/gst/colorbalance/colorbalancechannel.c:
30810         (gst_color_balance_channel_dispose): Adding safety check in dispose
30811         method.
30812         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30813         (gst_xvimagesink_xcontext_clear),
30814         (gst_xvimagesink_interface_supported),
30815         (gst_xvimagesink_colorbalance_list_channels),
30816         (gst_xvimagesink_colorbalance_set_value),
30817         (gst_xvimagesink_colorbalance_get_value),
30818         (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
30819         Adding colorbalance interface support to set XV parameters such as
30820         HUE, BRIGHTNESS, CONTRAST, SATURATION.
30821         * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
30822         interface.
30823
30824 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
30825
30826         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
30827         (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
30828         (gst_audio_convert_init), (gst_audio_convert_set_property),
30829         (gst_audio_convert_get_property), (gst_audio_convert_chain),
30830         (gst_audio_convert_link),
30831         (gst_audio_convert_buffer_to_default_format),
30832         (gst_audio_convert_buffer_from_default_format), (plugin_init):
30833           - implement _getcaps and use it
30834           - improve linking
30835           - remove float caps since no float conversion is actually done
30836           - remove properties and arguments that were to be used for rate
30837             conversion
30838
30839 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
30840
30841         * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
30842         (gst_audio_structure_set_int):
30843         * gst-libs/gst/audio/audio.h:
30844           add helper functions for _getcaps matching the standard audio
30845           templates
30846
30847 2004-01-12  David Schleef  <ds@schleef.org>
30848
30849         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
30850         Test that pad is negotiated before getting its caps.
30851
30852 2004-01-12  Julien MOUTTE <julien@moutte.net>
30853
30854         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
30855         analyzing the pads of an element the bin is mostly in READY state so
30856         no caps were negotiated. This helper function needs to work with
30857         _get_caps directly then. I was not freeing them though, added that to
30858         fix the mem leak.
30859
30860 2004-01-12  Julien MOUTTE <julien@moutte.net>
30861
30862         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30863         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
30864         direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
30865         than the free_func.
30866
30867 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
30868
30869         * sys/oss/gstossaudio.c: (plugin_init):
30870         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
30871         * sys/oss/gstosselement.h:
30872           make an oss debugging category
30873           make failure more descriptive
30874
30875 2004-01-11  David Schleef  <ds@schleef.org>
30876
30877         * ext/ffmpeg/gstffmpeg.c:
30878         * ext/ffmpeg/gstffmpegcodecmap.c:
30879         * ext/ffmpeg/gstffmpegdec.c:
30880         * ext/ffmpeg/gstffmpegenc.c:
30881         * ext/ffmpeg/gstffmpegprotocol.c:
30882         * ext/gdk_pixbuf/gstgdkanimation.c:
30883         * ext/jpeg/gstjpeg.c:
30884         * ext/libpng/gstpng.c:
30885         * ext/mpeg2dec/perftest.c:
30886         * ext/speex/gstspeex.c:
30887         * gst-libs/gst/resample/dtos.c:
30888         * gst/intfloat/gstintfloatconvert.c:
30889         * gst/oneton/gstoneton.c:
30890         * gst/rtjpeg/RTjpeg.c:
30891         * gst/rtp/gstrtp.c:
30892         * sys/dxr3/dxr3init.c:
30893         * sys/glsink/gstgl_nvimage.c:
30894         * sys/glsink/gstgl_pdrimage.c:
30895         * sys/glsink/gstglsink.c:
30896         * testsuite/gst-lint:
30897         Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
30898
30899 2004-01-11  David Schleef  <ds@schleef.org>
30900
30901         * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
30902         * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
30903         * ext/gdk_pixbuf/gstgdkanimation.c:
30904         (gst_gdk_animation_iter_create_pixbuf):
30905         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
30906         (gst_gdk_pixbuf_chain):
30907         * ext/gdk_pixbuf/gstgdkpixbuf.h:
30908         * ext/jack/gstjack.c: (gst_jack_change_state):
30909         * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
30910         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
30911         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
30912         * gst/videofilter/gstvideofilter.c:
30913         (gst_videofilter_set_output_size):
30914         Remove all usage of gst_pad_get_caps(), and replace it with
30915         gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
30916
30917 2004-01-11  David Schleef  <ds@schleef.org>
30918
30919         * configure.ac:
30920         * ext/Makefile.am: Fixes to make ext/libcaca compile.
30921         * ext/divx/gstdivxdec.c:
30922         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
30923         (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
30924         handle images that span multiple buffers.  Now work with both
30925         filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
30926         * ext/gdk_pixbuf/gstgdkpixbuf.h:
30927         * ext/libcaca/gstcacasink.h: Fixes needed due to recent
30928         video/video.h changes
30929         * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
30930         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30931         (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
30932         of GstData free function.
30933         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
30934         same.
30935
30936 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30937
30938         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
30939         (gst_v4l2element_dispose), (gst_v4l2element_set_property),
30940         (gst_v4l2element_get_property):
30941         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
30942           add norm, channel and frequency properties.
30943         * sys/v4l2/gstv4l2tuner.c:
30944           fixes for tuner interface changes
30945         * sys/v4l2/gstv4l2element.h:
30946         * sys/v4l2/gstv4l2src.c:
30947         * sys/v4l2/gstv4l2src.h:
30948         * sys/v4l2/v4l2src_calls.c:
30949         * sys/v4l2/v4l2src_calls.h:
30950           rework v4l2src to work with saa1734 cards and allow mmaped buffers.
30951
30952 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30953
30954         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
30955         (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
30956         (gst_tuner_channel_changed), (gst_tuner_norm_changed),
30957         (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
30958         * gst-libs/gst/tuner/tuner.h:
30959           GObjects aren't const.
30960           Add find_by_name functions.
30961           Add checks to _changed functions.
30962         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
30963         (gst_v4l_tuner_get_norm):
30964           Fixes for above.
30965
30966 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30967
30968         * gst-libs/gst/video/video.h:
30969           Fix caps template names to be understandable.
30970           Prefix everything with GST_VIDEO.
30971         * ext/aalib/gstaasink.c:
30972         * ext/divx/gstdivxdec.c:
30973         * ext/divx/gstdivxenc.c:
30974         * ext/gdk_pixbuf/gstgdkpixbuf.c:
30975         * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
30976         * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
30977         * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
30978         * ext/libcaca/gstcacasink.c:
30979         * ext/libpng/gstpngenc.c: (raw_caps_factory):
30980         * ext/snapshot/gstsnapshot.c:
30981         * ext/swfdec/gstswfdec.c:
30982         * ext/xvid/gstxviddec.c:
30983         * ext/xvid/gstxvidenc.c:
30984         * gst/chart/gstchart.c:
30985         * gst/deinterlace/gstdeinterlace.c:
30986         * gst/effectv/gsteffectv.c:
30987         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
30988         * gst/goom/gstgoom.c:
30989         * gst/median/gstmedian.c:
30990         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
30991         (gst_monoscope_srcconnect), (gst_monoscope_chain):
30992         * gst/overlay/gstoverlay.c:
30993         * gst/smooth/gstsmooth.c:
30994         * gst/smpte/gstsmpte.c:
30995         * gst/synaesthesia/gstsynaesthesia.c:
30996         * gst/videocrop/gstvideocrop.c:
30997         * gst/videodrop/gstvideodrop.c:
30998         * gst/y4m/gsty4mencode.c:
30999         * sys/qcam/gstqcamsrc.c:
31000         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
31001           Make them work with new video.h file.
31002         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
31003         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
31004         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
31005         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
31006           Make it work with new buffer allocation system.
31007
31008 2004-01-11  Julien MOUTTE  <julien@moutte.net>
31009
31010         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
31011         pad_alloc_buffer implementation to use ->srcpad
31012         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
31013         pad_alloc_buffer implementation to use ->srcpad
31014         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):  Fixing the
31015         pad_alloc_buffer implementation to use ->srcpad
31016         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
31017         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
31018         (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
31019         a reference to everything we need.
31020         * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
31021         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
31022         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
31023         (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
31024         a reference to everything we need.
31025         * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
31026
31027 2004-01-11  David Schleef  <ds@schleef.org>
31028
31029         * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
31030         * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
31031         (gst_fenced_buffer_default_copy): Fix for rename of buffer private
31032         structure members.
31033         * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
31034         value during a resize/renegotiation.
31035         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
31036         gst_pad_alloc_buffer();
31037         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
31038         (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
31039         structure members.
31040         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
31041         Fix for rename of buffer private structure members.
31042         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
31043         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
31044         Fix for rename of buffer private structure members.
31045         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
31046         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
31047         Fix for rename of buffer private structure members.
31048
31049 2004-01-11  Arwed v. Merkatz <v.merkatz@gmx.net>
31050
31051         reviewed by: David Schleef <ds@schleef.org>
31052
31053         * gst/videofilter/Makefile.am:
31054         * gst/videofilter/gstgamma.c: Gamma correction filter.  Modified
31055         from the patch by ds to fit in with recent make_filter changes.
31056
31057 2004-01-11  Julien MOUTTE  <julien@moutte.net>
31058
31059         * configure.ac: Adding examples/switch/Makefile
31060         * examples/Makefile.am: Adding examples/switch
31061         * examples/switch/Makefile.am: Adding switcher example.
31062         * examples/switch/switcher.c: (got_eos), (idle_iterate),
31063         (switch_timer), (main): Adding an example demonstrating switch usage
31064         with 2 videotestsrc showing different patterns.
31065         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
31066         (gst_switch_init): Fixing switch with the new caps system.
31067
31068 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31069
31070         * gst-libs/gst/video/video.h:
31071           Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
31072           They should probably be like
31073           GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
31074
31075 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31076
31077         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
31078         (qtdemux_parse_trak):
31079           fix audio chunk size/timestamp calculation
31080
31081 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31082
31083         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
31084           fix SVQ3 caps
31085
31086 2004-01-11  Steve Baker  <steve@stevebaker.org>
31087
31088         * gst/effectv/gstaging.c: (gst_agingtv_get_type),
31089         (gst_agingtv_base_init), (gst_agingtv_class_init),
31090         (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
31091         (gst_agingtv_set_property), (gst_agingtv_get_property):
31092         Port agingTV to videofilter
31093
31094 2004-01-09  Julien MOUTTE <julien@moutte.net>
31095
31096         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
31097         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
31098
31099 2004-01-09  Julien MOUTTE <julien@moutte.net>
31100
31101         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
31102         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
31103         * gst-libs/gst/xoverlay/xoverlay.c:
31104         (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
31105         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
31106         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
31107         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
31108         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
31109         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
31110         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
31111         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
31112         the bufferalloc_function to replace bufferpools, fixing the XOverlay
31113         interface implementation to handle xid being 0 and fix some bugs
31114         triggered by Benjamin's testcase.
31115         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
31116         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
31117         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
31118         the bufferalloc_function to replace bufferpools, fixing the XOverlay
31119         interface implementation to handle xid being 0 and fix some bugs
31120         triggered by Benjamin's testcase.
31121
31122 2004-01-09  David Schleef  <ds@schleef.org>
31123
31124         * ext/librfb/gstrfbsrc.c:  Hacking.  Added actual decoding and
31125         mouse pointer events.  It works.
31126
31127 2004-01-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31128
31129         * ext/divx/gstdivxenc.c: (gst_divxenc_init):
31130           Use explicit caps - fix capsnego.
31131         * ext/xvid/gstxviddec.c:
31132         * ext/xvid/gstxvidenc.c:
31133           Remove macro-inside-macro which caused compile errors.
31134         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
31135           Error out if it's not a RIFF file. Else we error out without
31136           gst_element_error() which is not good...
31137
31138 2004-01-08  David Schleef  <ds@schleef.org>
31139
31140         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
31141         Fix pad_link function to handle formats that ffmpeg returns
31142         as multiple caps structures.
31143         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
31144         Only complain if source buffer is _smaller_ than expected.
31145         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
31146         (gst_videoscale_handle_src_event): Resize navigation events
31147         when passing them upstream.
31148         * gst/videotestsrc/gstvideotestsrc.c:
31149         * gst/videotestsrc/gstvideotestsrc.h:
31150         * gst/videotestsrc/videotestsrc.c:
31151         * gst/videotestsrc/videotestsrc.h:
31152         Rewrite many of the buffer painting functions to handle odd
31153         sizes (for many formats, size%4!=0 or size%8!=0).  Most have
31154         been verified to work with my video card.
31155         * testsuite/gst-lint:  Add check for elements calling
31156         gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
31157
31158 2004-01-08  David Schleef  <ds@schleef.org>
31159
31160         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
31161         (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
31162
31163 2004-01-08  Julien MOUTTE  <julien@moutte.net>
31164
31165         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
31166         configure event is not emiting the desired size signal. That fixes
31167         aspect ratio issues with gst-player.
31168
31169 2004-01-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31170
31171         * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
31172           Fix capsnego.
31173
31174 2004-01-08  Julien MOUTTE  <julien@moutte.net>
31175
31176         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
31177         public method to fire size signal.
31178
31179 2004-01-07  Julien MOUTTE  <julien@moutte.net>
31180
31181         * examples/gstplay/Makefile.am: Adding the interface library.
31182         * gst-libs/gst/play/Makefile.am: Adding the interface library.
31183         * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to         the XOverlay size signal instead of GstVideoSink.
31184         * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
31185         GST_IS_X_OVERLAY before signal connect.
31186         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
31187         Removing the have_video_size signal.
31188         * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
31189         and associated public method.
31190         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
31191         (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
31192         signal.
31193         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
31194         (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
31195         signal.
31196         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
31197         Using XOverlay public method to fire size signal.
31198
31199 2004-01-07  David Schleef  <ds@schleef.org>
31200
31201         * gst/videofilter/Makefile.am:
31202         * gst/videofilter/gstvideotemplate.c:
31203         * gst/videofilter/make_filter:
31204         Create gstvideoexample.c in a srcdir!=builddir friendly way.
31205         Convert make_filter to /bin/sh script.
31206
31207 2004-01-07  Thomas Vander Stichele  <thomas at apestaart dot org>
31208
31209         * gst/modplug/gstmodplug.cc: fix element description
31210
31211 2004-01-07  Julien MOUTTE  <julien@moutte.net>
31212
31213         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
31214         (got_video_size): Adding some new lines in g_print calls.
31215         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
31216         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
31217         (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
31218         (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
31219         (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
31220         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
31221         Complete code review, reverting some stuff i disagree with, adding
31222         some fixes : time synchronization on invalid timestamps, renegotiation
31223         of private window.
31224         * sys/ximage/ximagesink.h:
31225         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
31226         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
31227         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
31228         (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
31229         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
31230         (gst_xvimagesink_buffer_new),
31231         (gst_xvimagesink_navigation_send_event),
31232         (gst_xvimagesink_set_xwindow_id),
31233         (gst_xvimagesink_get_desired_size),
31234         (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
31235         stuff i disagree with, adding some fixes : Renegotiation of private
31236         window, implementing get_desired_size.
31237
31238 2004-01-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31239
31240         * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
31241         (gst_afsink_handle_event):
31242         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
31243         * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
31244         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
31245         * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
31246         * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
31247           Fix for instantiate-test (see core). Also remove dead code from
31248           jpegenc (which still needs fixing, but that's lower on my TODO
31249           list...).
31250         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
31251           Never return NULL as caps.
31252
31253 2004-01-07  David Schleef  <ds@schleef.org>
31254
31255         * configure.ac:
31256         * ext/Makefile.am:
31257         * ext/librfb/Makefile.am:
31258         * ext/librfb/gstrfbsrc.c:
31259         New source plugin based on librfb-0.1.  RFB (remote framebuffer)
31260         is the protocol used by VNC.
31261
31262 2004-01-07  David Schleef  <ds@schleef.org>
31263
31264         * gst/videofilter/gstvideotemplate.c:
31265         * gst/videofilter/gstvideotemplate.h:
31266         * gst/videofilter/make_filter:
31267         Merge videotemplate header into source file.
31268         * gst/effectv/Makefile.am:
31269         * gst/effectv/gsteffectv.c: (plugin_init):
31270         * gst/effectv/gstwarp.c:
31271         Make warpTV a subclass of videofilter.
31272
31273 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31274
31275         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
31276           Add guard against invalid utf-8 conversions in mad. Just in case.
31277
31278 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31279
31280         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
31281           Fix for bug shown by poisoning
31282
31283 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31284
31285         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
31286         (gst_v4lmjpegsrc_buffer_free):
31287         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
31288         (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
31289         (gst_v4lsrc_buffer_free):
31290           Fix for removed bufferpools.
31291
31292 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
31293
31294         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
31295         Fix caps negotiation.
31296
31297         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
31298         (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
31299         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
31300         (dvdnavsrc_event):
31301         * ext/mpeg2dec/gstmpeg2dec.c:
31302         * gst-libs/gst/navigation/navigation.c:
31303         (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
31304         * gst-libs/gst/navigation/navigation.h:
31305         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
31306         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
31307         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
31308         Super-simple first version of mouse and keyboard events. Clicking
31309         on a DVD menu now works, although it may not take you where you
31310         expected.
31311
31312         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
31313         * gst/videotestsrc/gstvideotestsrc.c:
31314         (gst_videotestsrc_src_fixate):
31315         These fixate functions were broken - they never actually
31316         fixated :)
31317
31318 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31319
31320         * ext/shout/gstshout.c: (gst_icecastsend_base_init),
31321         (gst_icecastsend_init):
31322           fix for new caps system.
31323         * gst-libs/gst/mixer/mixertrack.h:
31324         * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
31325           Add 'master track' flag (for tools like ACME that only want to
31326           change the main volume).
31327
31328 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
31329
31330         * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
31331         (gst_xvid_csp_to_caps):
31332         * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
31333         * ext/xvid/gstxvidenc.c:
31334         ifdef out ARGB type when it isn't available
31335         in xvidcore 1.0.0beta2
31336
31337 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31338
31339         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
31340           When we have received a new SCR right in the first buffer after
31341           a seek (so in the same cycle that handles the discont), we should
31342           handle the buffer instead of unreffing it, else we lose data.
31343
31344 2004-01-06  Iain <iain@prettypeople.org>
31345
31346         * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
31347           buffer-frames caps too.
31348
31349         * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
31350           caps that we need, don't destroy them all and rebuild them. And when
31351           creating src pads, use the src pad template rather than the sink...
31352
31353 2004-01-05  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31354
31355         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
31356           Add pad to element *after* setting functions such as event handler.
31357           Without this, the scheduler (opt) will link pads, set the event
31358           handler from the default event function (dispatcher in gstpad.c)
31359           and *after* that, we will set our own event function, which will
31360           thus never be used (and thus mpegdemux doesn't handle events).
31361
31362 2004-01-04  David Schleef  <ds@schleef.org>
31363
31364         Fix the fixate functions to handle new prototype:
31365         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
31366         * gst/videotestsrc/gstvideotestsrc.c:
31367         (gst_videotestsrc_src_fixate):
31368         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
31369         * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
31370         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
31371
31372 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31373
31374         * sys/ximage/ximagesink.h:
31375         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
31376         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
31377         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
31378         (gst_ximagesink_xoverlay_init):
31379           assorted fixes to make (re)embedding work
31380         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
31381         (gst_ximagesink_get_desired_size):
31382           implement desired size additions to XOverlay
31383
31384 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31385
31386         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
31387         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
31388         (gst_x_overlay_got_desired_size):
31389         * gst-libs/gst/xoverlay/xoverlay.h:
31390           Add optional "desired size" signal and querying.
31391
31392 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31393
31394         * gst/matroska/matroska-demux.c:
31395         (gst_matroska_demux_parse_blockgroup):
31396           Fix EBML-laced block parsing. Diffs are relative to previous
31397           lace, not the first lace. Thanks to Mosu from the Matroska
31398           team for detecting this.
31399         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
31400         (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
31401         (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
31402         (gst_wavparse_change_state):
31403         * gst/wavparse/gstwavparse.h:
31404           Quickfix for capsnego.
31405
31406 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31407
31408         * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
31409           Fix indenting, fix pad creation.
31410
31411 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31412
31413         * ext/xvid/gstxviddec.c: (gst_xviddec_init),
31414         (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
31415         (gst_xviddec_sink_link):
31416           Implement src_getcaps() so proper size caps is negotiated.
31417
31418 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31419
31420         * ext/flac/gstflacdec.c: (gst_flacdec_loop):
31421           Finish flac decoder on EOS. See #116178.
31422
31423 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31424
31425         * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
31426         (gst_matroska_demux_add_stream):
31427         * gst/matroska/matroska-ids.h:
31428           Add getcaps() function to fix capsnego...
31429
31430 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31431
31432         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
31433         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
31434         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
31435           Fix more integer overflows. Again, see #126967.
31436
31437 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31438
31439         * ext/mpeg2dec/gstmpeg2dec.c:
31440           Add support for mpeg2dec-0.4.0 (released two weeks ago). See
31441           #130416.
31442
31443 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31444
31445         * configure.ac:
31446         * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
31447         (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
31448         * ext/xvid/gstxvid.h:
31449         * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
31450         (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
31451         (gst_xviddec_src_link), (gst_xviddec_sink_link),
31452         (gst_xviddec_change_state):
31453         * ext/xvid/gstxviddec.h:
31454         * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
31455         (gst_xvidenc_base_init), (gst_xvidenc_class_init),
31456         (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
31457         (gst_xvidenc_link), (gst_xvidenc_set_property),
31458         (gst_xvidenc_get_property), (gst_xvidenc_change_state):
31459         * ext/xvid/gstxvidenc.h:
31460           Update xvid plugin to latest xvid (1.0.0-beta3) API.
31461
31462 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31463
31464         * gst/rtp/rtp-packet.c:
31465           Add sys/types.h include, since OS X doesn't define in_addr_t
31466           in netinet/in.h, like it does on Linux (see #129600).
31467
31468 2004-01-03  Thomas Canty <tommydal@optushome.com.au>
31469
31470         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
31471
31472         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
31473           Correct logic of dispose function (see #129306).
31474
31475 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31476
31477         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
31478         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
31479         (gst_mpeg_parse_init):
31480         * gst/mpegstream/gstmpegparse.h:
31481           Remove clock (which was never provided, i.e. dead code), and
31482           also fix integer overflows at high PTS values (see #126967).
31483
31484 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31485
31486         * ext/flac/gstflacdec.c:
31487         * ext/libpng/gstpngenc.h:
31488         * ext/mikmod/gstmikmod.h:
31489           OS X fixes (see #126628).
31490
31491 2004-01-02  David Schleef  <ds@schleef.org>
31492
31493         * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
31494         (gst_alsa_src_base_init): Remove bogus "src" request pad.
31495         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
31496         (gst_mpeg_parse_class_init): Move pad template registration
31497         to class_init, since the derived class (mpegdemux) doesn't
31498         want them.
31499
31500 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31501
31502         * sys/ximage/Makefile.am:
31503         * sys/xvideo/Makefile.am:
31504         * sys/xvimage/Makefile.am:
31505           Move interface libs from LDFLAGS to LIBADD, fix relocation errors
31506           after installation (see #127664).
31507
31508 2004-01-02  David Schleef  <ds@schleef.org>
31509
31510         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
31511         (gst_ffmpegenc_connect):  Negotiation fixes.
31512         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
31513         Remove inappropriate gst_caps_free().
31514         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31515         Reenable Ronald's internal resize code, since the core handles
31516         it correctly now.
31517
31518 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31519
31520         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
31521         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
31522         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
31523           Fix pad template stuff.
31524
31525 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31526
31527         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
31528         * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
31529           fix signed integer reading/writing.
31530
31531 2004-01-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31532
31533         * ext/alsa/README:
31534           Remove outdated document
31535
31536 2004-01-03  Jan Schmidt  <thaytan@mad.scientist.com>
31537
31538         * gst/cutter/gstcutter.c: (gst_cutter_init):
31539           src pad was being created twice - oops.
31540
31541 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31542
31543         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31544           Comment out internal resize. It doesn't handle the resulting
31545           XEvent internally, does another try_set_caps() which leads to
31546           a really nice loop.
31547           Real fix will come when Julien and Dave are awake. ;).
31548
31549 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31550
31551         * ext/mpeg2enc/gstmpeg2enc.cc:
31552           fix const/nonconst compile issue.
31553
31554 2004-01-02  David Schleef  <ds@schleef.org>
31555
31556         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
31557         (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
31558         Add fixate function and a check for bad formats.
31559
31560 2004-01-01  David Schleef  <ds@schleef.org>
31561
31562         Negotiation fixes:
31563         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
31564         (gst_audiofilter_init):
31565         * gst/debug/efence.c: (gst_efence_init):
31566         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
31567         (gst_deinterlace_init):
31568         * gst/volume/gstvolume.c: (volume_connect):
31569
31570 2004-01-01  David Schleef  <ds@schleef.org>
31571
31572         Convert elements to use gst_pad_use_explicit_caps() where
31573         appropriate:
31574         * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
31575         * ext/audiofile/gstafparse.c: (gst_afparse_init),
31576         (gst_afparse_open_file):
31577         * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
31578         (gst_afsrc_open_file):
31579         * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
31580         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
31581         (gst_ffmpegdec_chain):
31582         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
31583         * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
31584         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
31585         (gst_gdk_pixbuf_chain):
31586         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
31587         (gst_jpegdec_chain):
31588         * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
31589         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
31590         (gst_mikmod_negotiate):
31591         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
31592         (gst_mpeg2dec_negotiate_format):
31593         * ext/mpeg2enc/gstmpeg2enc.cc:
31594         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
31595         * ext/speex/gstspeexdec.c: (gst_speexdec_init),
31596         (gst_speexdec_sinkconnect):
31597         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
31598         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
31599         (gst_vorbisfile_new_link):
31600         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
31601         (gst_ac3parse_chain):
31602         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
31603         (gst_asf_demux_setup_pad):
31604         * gst/auparse/gstauparse.c: (gst_auparse_init),
31605         (gst_auparse_chain):
31606         * gst/id3/gstid3types.c: (gst_id3types_loop):
31607         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
31608         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
31609         (mp1videoparse_parse_seq):
31610         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
31611         (bpf_from_header):
31612         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
31613         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
31614         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
31615         (gst_mpeg_parse_send_data):
31616         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
31617         (gst_qtdemux_add_stream):
31618         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
31619         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
31620         (gst_wavparse_parse_fmt):
31621
31622 2004-01-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31623
31624         * configure.ac:
31625           Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
31626           1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
31627           it therefore uses the wrong include paths. Too bad... Note
31628           that 1.6.1.93 is not release yet. ;).
31629           Also add a check for mplex, which is now using the lib'ified
31630           mplex from mjpegtools, too.
31631         * ext/ffmpeg/gstffmpegcodecmap.c:
31632           Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
31633           issues. I don't think ffmpeg handles 3ivx correctly, so this
31634           probably won't work. But it won't hurt either.
31635         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
31636         (gst_ffmpegdec_chain):
31637         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
31638         (gst_ffmpegenc_chain_audio):
31639           Fix memleak in audio encoding. Close codec if open fails, this
31640           calls the cleanup routines so we can re-use the context.
31641         * ext/mpeg2enc/gstmpeg2enc.cc:
31642           Fix pad template names/types, fix memory issue with getcaps().
31643         * ext/mpeg2enc/gstmpeg2encoder.cc:
31644         * ext/mpeg2enc/gstmpeg2encoder.hh:
31645           Fix compile issue with new caps system (const thingy).
31646         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
31647         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
31648           We read a first frame right on initing, so that we have a caps
31649           when we init the output. This caps is cached in padprivate and
31650           read as first frame.
31651         * ext/mplex/Makefile.am:
31652         * ext/mplex/gstmplex.cc:
31653         * ext/mplex/gstmplex.h:
31654         * ext/mplex/gstmplex.hh:
31655         * ext/mplex/gstmplexibitstream.cc:
31656         * ext/mplex/gstmplexibitstream.hh:
31657         * ext/mplex/gstmplexjob.cc:
31658         * ext/mplex/gstmplexjob.hh:
31659         * ext/mplex/gstmplexoutputstream.cc:
31660         * ext/mplex/gstmplexoutputstream.hh:
31661           We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
31662           had issues, didn't do capsnego, supported only a subset of the
31663           mplex features and required a mplex fork in our local CVS. Plus
31664           that it worked agaist a very old mplex version. Rewriting was
31665           faster than updating it.
31666         * gst-libs/ext/Makefile.am:
31667         * gst-libs/ext/mplex/INSTRUCT:
31668         * gst-libs/ext/mplex/Makefile.am:
31669         * gst-libs/ext/mplex/README:
31670         * gst-libs/ext/mplex/TODO:
31671         * gst-libs/ext/mplex/ac3strm_in.cc:
31672         * gst-libs/ext/mplex/audiostrm.hh:
31673         * gst-libs/ext/mplex/audiostrm_out.cc:
31674         * gst-libs/ext/mplex/aunit.hh:
31675         * gst-libs/ext/mplex/bits.cc:
31676         * gst-libs/ext/mplex/bits.hh:
31677         * gst-libs/ext/mplex/buffer.cc:
31678         * gst-libs/ext/mplex/buffer.hh:
31679         * gst-libs/ext/mplex/fastintfns.h:
31680         * gst-libs/ext/mplex/format_codes.h:
31681         * gst-libs/ext/mplex/inputstrm.cc:
31682         * gst-libs/ext/mplex/inputstrm.hh:
31683         * gst-libs/ext/mplex/lpcmstrm_in.cc:
31684         * gst-libs/ext/mplex/mjpeg_logging.cc:
31685         * gst-libs/ext/mplex/mjpeg_logging.h:
31686         * gst-libs/ext/mplex/mjpeg_types.h:
31687         * gst-libs/ext/mplex/mpastrm_in.cc:
31688         * gst-libs/ext/mplex/mpegconsts.cc:
31689         * gst-libs/ext/mplex/mpegconsts.h:
31690         * gst-libs/ext/mplex/mplexconsts.hh:
31691         * gst-libs/ext/mplex/multplex.cc:
31692         * gst-libs/ext/mplex/outputstream.hh:
31693         * gst-libs/ext/mplex/padstrm.cc:
31694         * gst-libs/ext/mplex/padstrm.hh:
31695         * gst-libs/ext/mplex/stillsstream.cc:
31696         * gst-libs/ext/mplex/stillsstream.hh:
31697         * gst-libs/ext/mplex/systems.cc:
31698         * gst-libs/ext/mplex/systems.hh:
31699         * gst-libs/ext/mplex/vector.cc:
31700         * gst-libs/ext/mplex/vector.hh:
31701         * gst-libs/ext/mplex/videostrm.hh:
31702         * gst-libs/ext/mplex/videostrm_in.cc:
31703         * gst-libs/ext/mplex/videostrm_out.cc:
31704         * gst-libs/ext/mplex/yuv4mpeg.cc:
31705         * gst-libs/ext/mplex/yuv4mpeg.h:
31706         * gst-libs/ext/mplex/yuv4mpeg_intern.h:
31707         * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
31708           We don't fork mjpegtools' mplex in our CVS anymore.
31709         * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
31710         (gst_avi_demux_add_stream):
31711         * gst/avi/gstavidemux.h:
31712           Add getcaps() function for proper caps nego. This makes some
31713           parts of AVI playback/reading work.
31714         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31715           Resize window on new capsnego. This is probably wrong, but
31716           I'm still committing it because with current capsnego, the
31717           first successfull capsnego is auto-fixated, therefore rounded
31718           down to the lowest values in the caps. this results in a 16x16
31719           XWindow that is not reized when real capsnego finishes.
31720           Dave, I see more cases of this, do you know a proper solution?
31721         * tools/gst-launch-ext.in:
31722           Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
31723
31724 2003-12-31  David Schleef  <ds@schleef.org>
31725
31726         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
31727         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
31728           Change gst_pad_proxy_link() to gst_pad_try_set_caps()
31729
31730 2003-12-30  David Schleef  <ds@schleef.org>
31731
31732         * ext/ffmpeg/gstffmpegcolorspace.c:
31733         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
31734         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
31735         (gst_ffmpegcsp_chain): Negotiation fixes
31736         * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
31737         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
31738         (gst_audio_convert_link), (gst_audio_convert_channels):
31739         * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
31740         (gst_audioscale_link), (gst_audioscale_get_buffer),
31741         (gst_audioscale_chain): Negotiation fixes
31742         * gst/audioscale/gstaudioscale.h:
31743         * gst/videofilter/gstvideofilter.c:
31744         (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
31745         (gst_videofilter_link), (gst_videofilter_init),
31746         (gst_videofilter_set_output_size), (gst_videofilter_setup),
31747         (gst_videofilter_find_format_by_structure):
31748         * gst/videofilter/gstvideofilter.h: Negotiation fixes
31749         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
31750         (gst_videoscale_link):
31751         * gst/videoscale/videoscale.c: (videoscale_get_structure),
31752         (videoscale_find_by_structure), (gst_videoscale_setup):
31753         * gst/videoscale/videoscale.h: Negotiation fixes
31754         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
31755         (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
31756         function, restrict resizing to a multiple of 4 (hack until
31757         everyone supports odd sizes correctly).
31758
31759 2003-12-29  Colin Walters  <walters@verbum.org>
31760
31761         * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
31762         signed.
31763
31764 2003-12-30  Jan Schmidt <thaytan@mad.scientist.com>
31765
31766         * ext/sndfile/gstsf.c: (gst_sf_loop):
31767           Fix warning about discarding const qualifier
31768
31769 2003-12-27  Jeremy Simon   <jesimon@libertysurf.fr>
31770
31771         * gst/cutter/gstcutter.c:
31772         * gst/videoscale/gstvideoscale.c:
31773         * gst/volenv/gstvolenv.c:
31774         * gst-libs/gst/audio/audio.c:
31775         * gst-libs/gst/video/video.c:
31776           Fix warnings
31777
31778 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31779
31780         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
31781           Don't send ALSA debugging to stderr.
31782         * ext/alsa/gstalsa.h:
31783           Use GST_WARNING instead of g_warning when ALSA functions fail.
31784
31785 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31786
31787         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
31788           Free XVAdapterInfo correctly.
31789
31790 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31791
31792         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
31793         (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
31794           Make id3tag use correct caps nego.
31795
31796 2003-12-27  Amaury Jacquot <sxpert@esitcom.org>
31797
31798         * ext/ivorbis/vorbis.c:
31799         * ext/ivorbis/vorbisenc.h:
31800         * ext/ivorbis/vorbisfile.c:
31801           Modify so that it uses the new caps things
31802
31803 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31804
31805         * testsuite/spider/spider1.c: (main):
31806         * testsuite/spider/spider2.c: (main):
31807         * testsuite/spider/spider3.c: (main):
31808           Make tests compile again. They probably don't work.
31809
31810 2003-12-24  Colin Walters  <walters@verbum.org>
31811
31812         * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
31813         we can't fixate the caps anymore.
31814
31815 2003-12-23  David Schleef  <ds@schleef.org>
31816
31817         * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
31818         * sys/oss/gstosssink.c: (gst_osssink_init),
31819         (gst_osssink_sink_fixate): Add fixate function.
31820
31821 2003-12-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31822
31823         * ext/ffmpeg/gstffmpegcodecmap.c:
31824         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
31825         (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
31826         (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
31827         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
31828         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
31829         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
31830         (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
31831           fix typo in RGB masks, and move back to "old" colorspace
31832           capsnego code until whoever wrote this new crap has actually
31833           tested it so that it works.
31834           And yes, this works, keep it that way please.
31835
31836 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31837
31838         * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
31839         (gst_divxdec_init), (gst_divxdec_negotiate):
31840         * ext/divx/gstdivxdec.h:
31841         * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
31842         (gst_divxenc_init):
31843         * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
31844         (gst_faac_sinkconnect), (gst_faac_srcconnect):
31845         * ext/mpeg2enc/gstmpeg2enc.cc:
31846         * ext/mpeg2enc/gstmpeg2encoder.cc:
31847         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
31848         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
31849         (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
31850         * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
31851         (dxr3spusink_init):
31852         * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
31853         (dxr3videosink_init):
31854           Fix caps breakage after Dave's caps branch merge.
31855
31856 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31857
31858         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
31859           Fix for 24bpp display.
31860
31861 2003-12-23  Colin Walters  <walters@verbum.org>
31862
31863         * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
31864         a GnomeVFSHandle directly.
31865
31866 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31867
31868         * gst/volume/Makefile.am:
31869         * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
31870         (volume_base_init), (volume_init):
31871           Reenable volume element and fix to work with new caps stuff.
31872           Rhythmbox needs this.
31873
31874 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31875
31876         * gst/qtdemux/qtdemux.c: (plugin_init):
31877           qtdemux requires bytestream
31878
31879 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31880
31881         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
31882           Fix remaining caps handling errors due to CAPS merge.
31883
31884 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31885
31886         * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
31887         (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
31888         (gst_faad_srcconnect):
31889           Port to new caps system.
31890
31891 2003-12-21  Julien MOUTTE  <julien@moutte.net>
31892
31893         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
31894         (got_video_size), (main): using g_print instead of g_message.
31895         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
31896         signal which was not emitted because of "switch" element added to the
31897         bin but not connected. (Removing from the bin temporarily)
31898
31899 2003-12-21  Julien MOUTTE  <julien@moutte.net>
31900
31901         * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
31902         find X development files. I don't understand the previous tests and
31903         they fail on my debian/ppc unstable. This one works.
31904         * examples/gstplay/player.c: (main): Set the pipeline to READY before
31905         exiting.
31906         * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
31907         (gst_play_set_video_sink), (gst_play_set_audio_sink),
31908         (gst_play_set_visualization): Add some safety checks in set_ methods
31909         and state_change. This was throwing some ugly CRITICAL messages when
31910         pipeline was getting disposed and casts were failing.
31911
31912 2003-12-21  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31913
31914         * configure.ac:
31915           Improve mpeg2enc detection. This is for distributions that do
31916           ship mjpegtools, but without mpeg2enc. Also does object check
31917           for might there ever be ABI incompatibility.
31918         * ext/mpeg2enc/gstmpeg2enc.cc:
31919           Add Andrew as second maintainer (he's helping me), and also add
31920           an error if no caps was set. This happens if I pull before capsnego
31921           and that's something I should solve sometime else.
31922         * gst/matroska/matroska-demux.c:
31923         (gst_matroska_demux_parse_blockgroup):
31924           Fix time parsing.
31925         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
31926         (gst_matroska_mux_track_header):
31927           Add caps to templates.
31928         * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
31929           Add mpegversion=1 to prevent confusion with MPEG/AAC.
31930         * gst/mpegstream/gstmpegdemux.c:
31931           Remove layer since it causes warnings about unfixed caps.
31932         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
31933           Fix obvious typo (we error out if caps were set, we should of
31934           course error out if *no* caps were set).
31935         * sys/oss/gstosselement.c: (gst_osselement_convert):
31936           Fix format conversion, we confused bits/bytes.
31937         * sys/oss/gstosselement.h:
31938           Improve documentation for 'bps'.
31939         * sys/v4l/TODO:
31940           Remove stuff about plugins that need removing - this was done
31941           ages ago.
31942         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
31943         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
31944         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
31945         (gst_v4lsrc_src_query):
31946         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
31947         (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
31948           Add get_query_types(), get_formats() and query() functions.
31949
31950 2003-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
31951
31952         * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
31953           * moved CVS to freedesktop.org