gst/subparse/gstsubparse.c: Fix detection of discontinuities based on the buffer...
[platform/upstream/gstreamer.git] / ChangeLog
1 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2
3         * gst/subparse/gstsubparse.c: (feed_textbuf):
4           Fix detection of discontinuities based on the buffer offset (doesn't work
5           so well if no buffer offset is set) and also check for the DISCONT buffer
6           flag. This keeps the parser state from being reset after each buffer in
7           the unit test.
8
9 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
10
11         * gst/typefind/gsttypefindfunctions.c: (mpeg_video_stream_type_find):
12           Further fine-tuning: don't absolutely require sequence or GOP headers
13           (as introduced in the previous commit), but adjust the typefind
14           probabilities returned accordingly if we don't see them. Also make sure
15           picture header and first slice are somewhat close to each other (which
16           is not perfect but still better than requiring a fixed offset or having
17           no limit at all).
18
19 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
20
21         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
22         (gst_basertppayload_sink_setcaps),
23         (gst_basertppayload_sink_getcaps):
24         Rename the setcaps/getcaps function internally to make it clear that
25         they are called for the sink pad.
26
27 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
28
29         * gst-libs/gst/rtp/gstbasertpdepayload.c:
30         (gst_base_rtp_depayload_class_init),
31         (gst_base_rtp_depayload_handle_sink_event), (create_segment_event),
32         (gst_base_rtp_depayload_packet_lost),
33         (gst_base_rtp_depayload_set_gst_timestamp):
34         * gst-libs/gst/rtp/gstbasertpdepayload.h:
35         Catch packet-lost events from the jitterbuffer and convert them into a
36         vmethod call (lost-packet) so that depayloaders can do something smart.
37         Also add a default packet-lost function that sends out a segment update
38         to the decoders.
39
40 2008-05-02  Stefan Kost  <ensonic@users.sf.net>
41
42         * gst/playback/test4.c:
43         * gst/playback/test5.c:
44         * gst/playback/test6.c:
45         * gst/playback/test7.c:
46           Also include config.h when relying on defines from it. Fixes the
47           build. Its been a please to serve :)
48
49 2008-05-02  Thijs Vermeir <thijsvermeir@gmail.com>
50
51         * gst/videotestsrc/videotestsrc.c (paint_setup_NV12),
52         (paint_setup_NV21), (paint_hline_NV12_NV21):
53         Add support for NV12 and NV21 in videotestsrc
54
55 2008-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
56
57         * gst/videoscale/gstvideoscale.c:
58         * gst/videoscale/vs_4tap.c: (vs_image_scale_4tap_Y):
59         * gst/videoscale/vs_image.c: (vs_image_scale_nearest_RGBA),
60         (vs_image_scale_linear_RGBA), (vs_image_scale_nearest_RGB),
61         (vs_image_scale_linear_RGB), (vs_image_scale_nearest_YUYV),
62         (vs_image_scale_linear_YUYV), (vs_image_scale_nearest_UYVY),
63         (vs_image_scale_linear_UYVY), (vs_image_scale_nearest_Y),
64         (vs_image_scale_linear_Y), (vs_image_scale_nearest_RGB565),
65         (vs_image_scale_linear_RGB565), (vs_image_scale_nearest_RGB555),
66         (vs_image_scale_linear_RGB555):
67         Support 1x1 images as input and output as for example the BBC HQ new
68         streams have 1x1 GIFs in the playlists for some reason.
69
70 2008-05-01  Tim-Philipp Müller  <tim.muller at collabora co uk>
71
72         * gst/playback/gstdecodebin.c: (free_pad_probe_for_element),
73           (try_to_link_1):
74           If we can't activate one of the decoders we plugged in (such as,
75           say, musepackdec) for some reason (it might not support push mode,
76           for example), remove any pad probes that close_pad_link() might
77           have set up. This makes sure we later don't try to remove a probe
78           for a pad that doesn't exist any longer, and avoids nast warnings
79           and probably other things too.
80
81 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
82
83         * gst/typefind/gsttypefindfunctions.c:
84           (mpeg_video_stream_ctx_ensure_data), (mpeg_video_stream_type_find),
85           (plugin_init):
86           Rework mpeg video stream typefinding a bit more: make sure sequence,
87           GOP, picture and slice headers appear in the order they should and
88           that we've in fact at least had one of each; fix picture header
89           detection; decouple picture and slice header check - don't assume
90           they're at a fixed offset, there may be extra data in between. Also,
91           announce varying degrees of probability depending on what we found
92           exactly (multiple pictures, at least one picture, just sequence and
93           GOP headers). Finally, in _ensure_data(), take into account that we
94           might be typefinding smaller amounts of data, such as the first
95           buffer of a stream, so fall back to the minimum size needed as long
96           as that's available, instead of erroring out if there's less than
97           2kB of data. Fixes #526173. Conveniently also doesn't recognise the
98           fuzzed file from #399342 as valid.
99
100 2008-04-30  Michael Smith <msmith@songbirdnest.com>
101
102         * ext/theora/theoradec.c:
103           Cool kids don't divide by zero.
104           Treat PAR of x:0 as 1:1.
105           Fixes #530719.
106
107 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
108
109         * gst/typefind/gsttypefindfunctions.c: (MpegVideoStreamCtx),
110           (mpeg_video_stream_ctx_advance), (mpeg_video_stream_ctx_ensure_data),
111           (mpeg_video_stream_type_find):
112           Refactor a bit: use context structure to track parsing offset and
113           size of available data and make the code a bit clearer. Fixes bad
114           memory access in #356937.
115
116 2008-04-28  Michael Smith <msmith@songbirdnest.com>
117
118         * gst/playback/test4.c:
119         * gst/playback/test5.c:
120         * gst/playback/test6.c:
121         * gst/tcp/gstmultifdsink.c:
122           Include stdlib.h and unistd.h only if the appropriate HAVE_*_H macro
123           is defined.
124
125 2008-04-28  Wim Taymans  <wim.taymans@collabora.co.uk>
126
127         * gst-libs/gst/audio/gstbaseaudiosink.h:
128         Clarify some docs.
129
130         * gst-libs/gst/audio/gstbaseaudiosrc.c: (slave_method_get_type),
131         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
132         (gst_base_audio_src_set_slave_method),
133         (gst_base_audio_src_get_slave_method),
134         (gst_base_audio_src_set_property),
135         (gst_base_audio_src_get_property), (gst_base_audio_src_create):
136         * gst-libs/gst/audio/gstbaseaudiosrc.h:
137         Add property and methods for selecting the clock slave method in the
138         source, like in the sink.
139         We only implement "none" and "re-timestamp" for now.
140         API: gst_base_audio_src_set_slave_method()
141         API: gst_base_audio_src_get_slave_method()
142
143 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
144
145         * gst-libs/gst/rtp/gstrtpbuffer.c:
146         Fix the docs about the seqnum compare function, it returns a difference.
147
148 2008-04-24  Edward Hervey  <edward.hervey@collabora.co.uk>
149
150         * ext/alsa/gstalsadeviceprobe.c:
151         (gst_alsa_get_device_list): Don't return before freeing up
152         the allocated structures.
153
154 2008-04-24  Stefan Kost  <ensonic@users.sf.net>
155
156         * gst/playback/gstplaybin.c:
157           Remove obsolete streaminfo code and fix a leak. Fixes #529546
158
159 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
160
161         * ext/ogg/gstoggdemux.c:
162           Revert the event part, that should not go in.
163
164 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
165
166         * ext/ogg/gstoggdemux.c:
167           Don't leak GstPluginFeatures when filtering.
168
169 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
170
171         * sys/xvimage/xvimagesink.c:
172           Add some logging for cases when grabbing the xv failed.
173
174 2008-04-21  David Schleef  <ds@schleef.org>
175
176         * ext/ogg/gstoggmux.c:
177           Update Ogg/Dirac muxing.  Removes the weird "KW-DIRAC" bos
178           packet.  Should conform to what we currently think is the
179           final Ogg/Dirac muxing spec.
180
181 2008-04-21  David Schleef  <ds@schleef.org>
182
183         * sys/xvimage/xvimagesink.c:
184           Fix typo that causes the overlay keying color to bright green
185           on a 16-bit display.  Dark grey good.  Bright green bad.
186
187 2008-04-21  Stefan Kost  <ensonic@users.sf.net>
188
189         * ext/gnomevfs/gstgnomevfsuri.c:
190           Add  FIXME comment about using uri-list for source and sink.
191
192 2008-04-20  Sebastian Dröge  <slomo@circular-chaos.org>
193
194         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
195         GST_TYPE_FRACTION contains gints so correctly cast gint64 arguments to
196         vaargs functions to gint. Otherwise the fractions will get 0 set
197         instead of the correct value on big endian systems. Fixes bug #529018.
198
199 2008-04-20  Sebastian Dröge  <slomo@circular-chaos.org>
200
201         * ext/gnomevfs/gstgnomevfssink.c:
202         (gst_gnome_vfs_sink_uri_get_protocols):
203         * ext/gnomevfs/gstgnomevfssrc.c:
204         (gst_gnome_vfs_src_uri_get_protocols):
205         * ext/gnomevfs/gstgnomevfsuri.c: (_internal_get_supported_uris),
206         (gst_gnomevfs_get_supported_uris):
207         Get the list of supported URI schemes in a threadsafe way and use the
208         same list for the source and sink.
209
210 2008-04-20  Sebastian Dröge  <slomo@circular-chaos.org>
211
212         * ext/gio/gstgio.c: (_internal_get_supported_protocols),
213         (gst_gio_get_supported_protocols):
214         Don't generate a new supported protocols list on each call but cache
215         it. It's supposed to be static anyway, this way we only leak it once
216         per process.
217
218         * ext/gio/gstgiosink.c: (gst_gio_sink_base_init),
219         (gst_gio_sink_class_init), (gst_gio_sink_finalize),
220         (gst_gio_sink_set_property), (gst_gio_sink_get_property),
221         (gst_gio_sink_start):
222         * ext/gio/gstgiosink.h:
223         * ext/gio/gstgiosrc.c: (gst_gio_src_base_init),
224         (gst_gio_src_class_init), (gst_gio_src_finalize),
225         (gst_gio_src_set_property), (gst_gio_src_get_property),
226         (gst_gio_src_start):
227         * ext/gio/gstgiosrc.h:
228         API: Add "file" properties where one can set a GFile as source/destination.
229
230         Add locking to the properties and use gst_element_class_set_details_simple()
231         instead of a static GstElementDetails struct.
232
233 2008-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
234
235         * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
236         (plugin_init):
237         Add "mpp" and "mp+" as possible extensions for MusePack files.
238
239         Add typefinding for MusePack StreamVersion 8 files and include the
240         stream version in the caps.
241
242 2008-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
243
244         * gst-libs/gst/rtp/gstrtppayloads.c:
245         (gst_rtp_payload_info_for_name):
246         Use g_ascii_strcasecmp() instead of the deprecated g_strcasecmp().
247
248 2008-04-18  Tim-Philipp Müller  <tim at centricular dot net>
249
250         * configure.ac:
251           Bump Gtk+ requirement to 2.12.0 for gtk_range_set_fill_level
252           (NB: this only affects compilation of some of the examples).
253           Remove some configure.ac cruft that's not needed any longer.
254
255 2008-04-18  Edward Hervey  <edward.hervey@collabora.co.uk>
256
257         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
258         Don't validate the payload if there isn't any.
259         Fixes #525915
260
261 2008-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
262
263         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_may_start):
264         Use g_atomic_int_set() instead of gst_atomic_int_set().
265
266 2008-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
267
268         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
269         Return NULL instead of a gchar * array with one NULL element if we
270         don't get any supported URI schemes from GIO.
271
272 2008-04-15  Stefan Kost  <ensonic@users.sf.net>
273
274         * gst/audiotestsrc/gstaudiotestsrc.c:
275           Remove cpp style commented old code.
276
277 2008-04-15  Stefan Kost  <ensonic@users.sf.net>
278
279         * gst/playback/gstdecodebin2.c:
280           Fix signal docs.
281
282 2008-04-14  Tim-Philipp Müller  <tim at centricular dot net>
283
284         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
285           (gst_text_overlay_init):
286           Fix textoverlay unit test again by making the supposed default
287           value for the wait-text property the actual default value.
288           Also fix Since: tag for new property.
289
290 2008-04-11  Tim-Philipp Müller  <tim at centricular dot net>
291
292         * gst-libs/gst/video/video.c: (gst_video_format_new_caps),
293           (gst_video_format_to_fourcc), (gst_video_format_get_row_stride),
294           (gst_video_format_get_pixel_stride),
295           (gst_video_format_get_component_width),
296           (gst_video_format_get_component_height),
297           (gst_video_format_get_component_offset), (gst_video_format_get_size),
298           (gst_video_format_convert):
299           Add guards to these functions to ensure sane input values.
300
301         * tests/check/libs/video.c:
302           Fix unit test not to create caps with width=0 and height=0.
303
304 2008-04-11  Wim Taymans  <wim.taymans@collabora.co.uk>
305
306         * docs/design/draft-keyframe-force.txt:
307         Fix typo.
308
309         * gst/playback/gstqueue2.c: (update_buffering),
310         (gst_queue_handle_src_query):
311         Set buffering mode in the messages.
312         Set buffering percent in the query.
313
314         * tests/examples/seek/seek.c: (update_fill), (msg_state_changed),
315         (do_stream_buffering), (do_download_buffering), (msg_buffering):
316         Do some more fancy things based on the buffering method in use.
317
318 2008-04-09  Wim Taymans  <wim.taymans@collabora.co.uk>
319
320         * tests/examples/seek/seek.c: (update_fill), (set_update_fill),
321         (play_cb), (pause_cb), (stop_cb), (msg_state_changed),
322         (msg_buffering), (main):
323         Add basic download reports to seek using the new buffering API.
324
325 2008-04-09  Wim Taymans  <wim.taymans@collabora.co.uk>
326
327         * gst/playback/gstqueue2.c: (update_buffering),
328         (gst_queue_close_temp_location_file), (gst_queue_handle_src_query),
329         (gst_queue_src_checkgetrange_function):
330         Include extra buffering stats in the buffering message.
331         Implement BUFFERING query.
332
333         * gst/playback/gsturidecodebin.c: (do_async_start),
334         (do_async_done), (type_found), (setup_streaming), (setup_source),
335         (gst_uri_decode_bin_change_state):
336         Only add decodebin2 when the type is found in streaming mode.
337         Make uridecodebin async to PAUSED even when we don't have decodebin2
338         added yet.
339
340 2008-04-09  Sebastian Dröge  <slomo@circular-chaos.org>
341
342         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
343         Filter cdda from the supported URI schemes. We can't support
344         musicbrainz tags and everything else one expects from a cdda source
345         with GIO. Fixes bug #526794.
346
347 2008-04-07  Jan Schmidt  <jan.schmidt@sun.com>
348
349         * sys/xvimage/xvimagesink.c (gst_xvimagesink_xvimage_new),
350         (gst_xvimagesink_buffer_alloc):
351         Fix calculation of 'expected size' for YV12 buffers.
352         Be a little more verbose in the debug output for buffer-alloc'ed
353         buffers which turn out to have the wrong size.
354
355 2008-04-07  Tim-Philipp Müller  <tim at centricular dot net>
356
357         * NEWS:
358         * RELEASE:
359         * gst-plugins-base.doap:
360           Merge other changes from 0.10.19 release branch.
361
362 2008-04-06  Tim-Philipp Müller  <tim at centricular dot net>
363
364         * gst-libs/gst/audio/gstbaseaudiosink.c:
365           (gst_base_audio_sink_class_init):
366         * gst-libs/gst/audio/gstbaseaudiosrc.c:
367           (gst_base_audio_src_class_init):
368         * gst/playback/gstplayback.c: (plugin_init):
369         * gst/volume/gstvolume.c: (plugin_init):
370           Work around missing bits of thread-safety on older GLibs some
371           more to avoid assertions when starting up multiple playbin
372           objects concurrently (see #512382).
373
374 2008-04-06  Tim-Philipp Müller  <tim at centricular dot net>
375
376         * gst-libs/gst/pbutils/missing-plugins.c: (copy_and_clean_caps):
377           Remove some more fields.
378
379 2008-04-06  Sebastian Dröge  <slomo@circular-chaos.org>
380
381         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
382
383         * configure.ac:
384         Actually build dlls when cross-compiling with mingw32.
385         Fixes bug #526247.
386
387 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
388
389         * configure.ac:
390           Bump version to 0.10.19.1 after the unplanned 0.10.19 release.
391
392 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
393
394         * tests/examples/seek/seek.c: (play_cb), (pause_cb), (stop_cb),
395         (msg_buffering), (connect_bus_signals), (main):
396         Add statusbar.
397         Add buffering support with feedback in the statusbar.
398
399 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
400
401         * ext/ogg/gstoggmux.c:
402           Fix sample pipeline description.
403
404 2008-04-03  Stefan Kost  <ensonic@users.sf.net>
405
406         * docs/plugins/Makefile.am:
407         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
408         * docs/plugins/gst-plugins-base-plugins-overrides.txt:
409         * docs/plugins/gst-plugins-base-plugins-sections.txt:
410           Add playbin, playbin2, decodebin, decodebin2, uridecodebin and oggmux
411
412         * docs/plugins/gst-plugins-base-plugins.args:
413         * docs/plugins/gst-plugins-base-plugins.hierarchy:
414         * docs/plugins/gst-plugins-base-plugins.interfaces:
415         * docs/plugins/gst-plugins-base-plugins.prerequisites:
416         * docs/plugins/inspect/plugin-adder.xml:
417         * docs/plugins/inspect/plugin-alsa.xml:
418         * docs/plugins/inspect/plugin-audioconvert.xml:
419         * docs/plugins/inspect/plugin-audiorate.xml:
420         * docs/plugins/inspect/plugin-audioresample.xml:
421         * docs/plugins/inspect/plugin-audiotestsrc.xml:
422         * docs/plugins/inspect/plugin-cdparanoia.xml:
423         * docs/plugins/inspect/plugin-decodebin.xml:
424         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
425         * docs/plugins/inspect/plugin-gdp.xml:
426         * docs/plugins/inspect/plugin-gnomevfs.xml:
427         * docs/plugins/inspect/plugin-libvisual.xml:
428         * docs/plugins/inspect/plugin-ogg.xml:
429         * docs/plugins/inspect/plugin-pango.xml:
430         * docs/plugins/inspect/plugin-playback.xml:
431         * docs/plugins/inspect/plugin-queue2.xml:
432         * docs/plugins/inspect/plugin-subparse.xml:
433         * docs/plugins/inspect/plugin-tcp.xml:
434         * docs/plugins/inspect/plugin-theora.xml:
435         * docs/plugins/inspect/plugin-typefindfunctions.xml:
436         * docs/plugins/inspect/plugin-uridecodebin.xml:
437         * docs/plugins/inspect/plugin-video4linux.xml:
438         * docs/plugins/inspect/plugin-videorate.xml:
439         * docs/plugins/inspect/plugin-videoscale.xml:
440         * docs/plugins/inspect/plugin-videotestsrc.xml:
441         * docs/plugins/inspect/plugin-volume.xml:
442         * docs/plugins/inspect/plugin-vorbis.xml:
443         * docs/plugins/inspect/plugin-ximagesink.xml:
444         * docs/plugins/inspect/plugin-xvimagesink.xml:
445           Update introspection data.
446
447         * ext/ogg/gstoggmux.c:
448           Document oggmux.
449
450         * gst/playback/gstdecodebin2.c:
451           Don't use gtk-doc style comment start for private stuff, but make it
452           formatted like this for consistency.
453
454 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
455
456         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
457         (gst_decode_bin_init), (gst_decode_bin_dispose),
458         (gst_decode_bin_set_sink_caps), (gst_decode_bin_get_sink_caps),
459         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
460         (analyze_new_pad), (connect_pad), (expose_pad),
461         (gst_decode_group_new), (gst_decode_group_control_demuxer_pad),
462         (gst_decode_group_expose), (gst_decode_group_free),
463         (do_async_start), (do_async_done), (gst_decode_bin_change_state):
464         Remove fakesink hack, we can now implement this more elegantly.
465         Added property to bypass typefinding.
466         Removed underrun callback and demuxer pad probe, we now use the srcpad
467         probe to expose groups.
468         API::sink-caps property
469
470         * gst/playback/gstplaybin2.c: (no_more_pads_cb):
471         Guard against multiple emissions of the no_more_pads signal, which
472         happens when we are dealing with chained oggs.
473
474         * gst/playback/gsturidecodebin.c: (remove_decoders),
475         (make_decoder), (type_found), (setup_streaming), (source_new_pad),
476         (setup_source):
477         For streams, use our own typefind element and plug our queue after it.
478         We will need this to determine the type of buffering to use for the
479         queue soon.
480
481 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
482
483         * gst-libs/gst/audio/gstbaseaudiosink.c:
484         (gst_base_audio_sink_skew_slaving), (gst_base_audio_sink_render):
485         Guard against over and underflows because of clock slaving.
486         When we are using our own clock, still compensate for any calibrations
487         that we might have done to our clock.
488
489 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
490
491         * ext/theora/theoradec.c: (theora_handle_type_packet),
492         (theora_dec_chain):
493         Don't try to do anything fancy with the return code from pushing an
494         event, it does not have enough information to turn it into a
495         GST_FLOW_ERROR.
496
497 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
498
499         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_reset),
500         (gst_ogg_demux_chain_elem_pad):
501         Add small debug line.
502         Pass return code from the internal decoder instead of the too generic
503         GST_FLOW_ERROR.
504
505 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
506
507         * gst-libs/gst/cdda/Makefile.am:
508         * gst-libs/gst/cdda/base64.c:
509         * gst-libs/gst/cdda/base64.h:
510         * gst-libs/gst/cdda/gstcddabasesrc.c:
511         (gst_cddabasesrc_calculate_musicbrainz_discid):
512         Use GLib's base64 implementation instead of our own.
513
514 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
515
516         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
517         (gst_ogg_demux_read_chain):
518         Refix oggdemux, we only have a problem if we failed to find a chain and
519         we are not EOF.
520
521 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
522
523         Patch by: Victor STINNER <victor dot stinner at haypocalc dot com>
524
525         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
526         (gst_ogg_demux_read_chain):
527         When we fail to find a BOS page and we and up with no chain, error out
528         properly instead of segfaulting. Fixes #525665.
529
530 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
531
532         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
533         (gst_ogg_demux_read_chain), (gst_ogg_demux_handle_page):
534         The new-pad-group sequence is add-pads, no-more-pads, add-pads,
535         no-more-pads...
536
537 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
538
539         * gst/playback/gstqueue2.c: (update_out_rates),
540         (gst_queue_open_temp_location_file),
541         (gst_queue_close_temp_location_file), (gst_queue_handle_src_event),
542         (gst_queue_handle_src_query), (gst_queue_set_property):
543         Update the estimated input data when we push out a buffer.
544         Add some debug info about the temp file.
545         Only forward src events when we are not using a temp file.
546         Don't block the duration query, we need to find something better.
547         Don't leak the temp filename.
548
549 2008-04-01  Sebastian Dröge  <slomo@circular-chaos.org>
550
551         * configure.ac:
552         Require GLib 2.12 and liboil 0.3.14.
553
554         * gst/volume/gstvolume.c: (volume_process_double):
555         Unconditionally use liboil 0.3.14 function.
556
557 2008-03-31  Wim Taymans  <wim.taymans@collabora.co.uk>
558
559         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
560         ms-gsm can have arbitrarty sample rates. See #481354.
561
562 2008-03-28  Wim Taymans  <wim.taymans@collabora.co.uk>
563
564         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
565         MP4S is generic MPEG-4, not a microsoft variant.
566
567 2008-03-27  Michael Smith <msmith@fluendo.com>
568
569         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
570           Check the body CRC (if set) when depayloading.
571           Fixes #522401.
572
573 2008-03-24  Tim-Philipp Müller  <tim at centricular dot net>
574
575         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init):
576           Fix Since: version for new property.
577
578 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
579
580         * gst-libs/gst/rtsp/gstrtspconnection.c:
581         (gst_rtsp_connection_connect), (gst_rtsp_connection_write),
582         (gst_rtsp_connection_read_internal), (gst_rtsp_connection_poll):
583         Don't error when poll_wait returns EAGAIN.
584
585 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
586
587         * gst/playback/gstqueue2.c: (gst_queue_is_filled):
588         The queue is never filled when there are no buffers in the queue at all.
589         Fixes #523993.
590
591 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
592
593         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
594         (init_group), (free_group), (gst_play_bin_init),
595         (gst_play_bin_finalize), (gst_play_bin_set_uri),
596         (gst_play_bin_set_suburi), (gst_play_bin_get_video_tags),
597         (gst_play_bin_get_audio_tags), (gst_play_bin_get_text_tags),
598         (gst_play_bin_set_current_video_stream),
599         (gst_play_bin_set_current_audio_stream),
600         (gst_play_bin_set_current_text_stream),
601         (gst_play_bin_set_encoding), (gst_play_bin_set_property),
602         (gst_play_bin_get_property), (pad_added_cb), (pad_removed_cb),
603         (no_more_pads_cb), (perform_eos), (autoplug_select_cb),
604         (activate_group), (deactivate_group), (setup_next_source),
605         (save_current_group), (gst_play_bin_change_state):
606         Update some docs.
607         Add new locks and conds to protect pipeline creation and group
608         switching.
609         Implement the sub-uri property.
610         Keep track of pending uridecodebin creation and configure the output
611         pipeline after all streams are configured.
612         Propagate subtitle encoding to the uridecodebins.
613         Implement getting the video/audio/visualisation elements.
614         Use input-selector for stream switching.
615         If we are asked to do visualisation, prefer to autoplug raw sinks
616         instead of sinks that accept encoded data.
617
618 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
619
620         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
621         (gst_play_sink_init), (gst_play_sink_dispose),
622         (gst_play_sink_set_video_sink), (gst_play_sink_get_video_sink),
623         (gst_play_sink_set_audio_sink), (gst_play_sink_get_audio_sink),
624         (gst_play_sink_vis_unblocked), (gst_play_sink_vis_blocked),
625         (gst_play_sink_set_vis_plugin), (gst_play_sink_get_vis_plugin),
626         (gst_play_sink_set_volume), (gst_play_sink_get_volume),
627         (gst_play_sink_set_mute), (gen_video_chain), (gen_text_chain),
628         (gen_audio_chain), (gen_vis_chain), (gst_play_sink_reconfigure),
629         (gst_play_sink_set_font_desc), (gst_play_sink_get_font_desc),
630         (gst_play_sink_send_event_to_sink), (gst_play_sink_change_state):
631         * gst/playback/gstplaysink.h:
632         Add methods to get audio/video/vis elements.
633         Add methods to set the font description for the overlay.
634         Remove properties, we're using this element with its methods only.
635         Add support for subtitles.
636         Rearrange the locking a bit to not use the object lock for protecting
637         the pipeline construction.
638         Try to use the volume and mute property on the sink when its available.
639         Implement the mute option with volume when the sink does not have a mute
640         property.
641         Only add volume element when the sink has no volume property.
642         Only do visualisations with raw audio pads.
643
644 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
645
646         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
647         (gst_text_overlay_init), (gst_text_overlay_set_property),
648         (gst_text_overlay_get_property), (gst_text_overlay_src_event),
649         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
650         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
651         (gst_text_overlay_change_state):
652         * ext/pango/gsttextoverlay.h:
653         Add property to configure waiting for text on the textpad or not, with
654         the default behaviour being the old one (always wait for text before
655         rendering the video). This default behaviour is usually not the best one
656         because the text stream can very sparse and could require queueing a lot
657         of video.
658         Fix the flushing and EOS handing so that we don't mix up their meaning.
659
660 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
661
662         * gst/playback/gsturidecodebin.c:
663         (gst_uri_decode_bin_autoplug_factories),
664         (gst_uri_decode_bin_class_init), (gst_uri_decode_bin_init),
665         (gst_uri_decode_bin_finalize), (gst_uri_decode_bin_set_encoding),
666         (gst_uri_decode_bin_set_property),
667         (gst_uri_decode_bin_get_property), (no_more_pads_full),
668         (new_decoded_pad_cb), (gen_source_element), (remove_decoders),
669         (proxy_autoplug_factories_signal), (make_decoder),
670         (source_new_pad), (setup_source):
671         Add a readonly source property and notify.
672         Add new lock for protecting the construction of the pipeline.
673         Keep track of the decodebins we plugged.
674         Correctly proxy the autoplug signal so that it actually continues.
675         Proxy subtitle-encoding to the decodebins.
676
677 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
678
679         * tests/examples/seek/seek.c: (audio_toggle_cb), (video_toggle_cb),
680         (text_toggle_cb), (update_streams), (main):
681         Rearrange some buttons in playbin2 and make some other boxes insensitive
682         when needed.
683         Add language codes to subtitle selection boxes when we gind the right
684         tags for the streams.
685
686 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
687
688         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
689         (gst_decode_bin_set_caps), (gst_decode_bin_get_caps),
690         (gst_decode_bin_set_subs_encoding),
691         (gst_decode_bin_get_subs_encoding),
692         (gst_decode_bin_autoplug_factories), (connect_pad), (are_raw_caps),
693         (deactivate_free_recursive):
694         Protect caps property with the object lock.
695         Protect encoding property with the object lock.
696         Keep list of elements we added that have the subtitle-encoding property.
697         Distribute the subtitle-encoding to all of the elements when it
698         changes.
699
700 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
701
702         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_release):
703         Small debug improvement.
704
705         * gst-libs/gst/audio/gstbaseaudiosink.c:
706         (gst_base_audio_sink_render):
707         Fix bug in determining the sample start/stop position, we want to base
708         this decision on the fact that we are going forwards or backwards, not
709         slower or faster. This fixes some ugly resync warnings when playing at
710         very slow speeds.
711
712 2008-03-23  Sebastian Dröge  <slomo@circular-chaos.org>
713
714         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
715         Correctly set the supported URI schemes and don't leave
716         some schemes in the middle or at the start at NULL.
717
718 2008-03-23  Tim-Philipp Müller  <tim at centricular dot net>
719
720         * tests/check/elements/gdpdepay.c:
721           Make test compile without unused function/variable warnings on PPC.
722  
723 2008-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
724
725         * configure.ac:
726         * ext/alsa/gstalsamixerelement.c:
727         (gst_alsa_mixer_element_class_init):
728         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init):
729         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
730         * ext/cdparanoia/gstcdparanoiasrc.c:
731         (gst_cd_paranoia_src_class_init):
732         * ext/gio/gstgiosink.c: (gst_gio_sink_class_init):
733         * ext/gio/gstgiosrc.c: (gst_gio_src_class_init):
734         * ext/gio/gstgiostreamsink.c: (gst_gio_stream_sink_class_init):
735         * ext/gio/gstgiostreamsrc.c: (gst_gio_stream_src_class_init):
736         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
737         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init):
738         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
739         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init):
740         * ext/pango/gsttextrender.c: (gst_text_render_class_init):
741         * ext/theora/theoradec.c: (gst_theora_dec_class_init):
742         * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
743         * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
744         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_class_init):
745         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
746         (gst_audio_filter_template_class_init):
747         * gst-libs/gst/audio/gstbaseaudiosink.c:
748         (gst_base_audio_sink_class_init):
749         * gst-libs/gst/audio/gstbaseaudiosrc.c:
750         (gst_base_audio_src_class_init):
751         * gst-libs/gst/cdda/gstcddabasesrc.c:
752         (gst_cdda_base_src_class_init):
753         * gst-libs/gst/interfaces/mixertrack.c:
754         (gst_mixer_track_class_init):
755         * gst-libs/gst/rtp/gstbasertpdepayload.c:
756         (gst_base_rtp_depayload_class_init):
757         * gst-libs/gst/rtp/gstbasertppayload.c:
758         (gst_basertppayload_class_init):
759         * gst/audioconvert/gstaudioconvert.c:
760         (gst_audio_convert_class_init):
761         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_class_init):
762         * gst/audioresample/gstaudioresample.c:
763         (gst_audioresample_class_init):
764         * gst/audiotestsrc/gstaudiotestsrc.c:
765         (gst_audio_test_src_class_init):
766         * gst/gdp/gstgdppay.c: (gst_gdp_pay_class_init):
767         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
768         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
769         (preroll_unlinked):
770         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
771         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init):
772         * gst/playback/gstplaysink.c: (gst_play_sink_class_init):
773         * gst/playback/gstqueue2.c: (gst_queue_class_init):
774         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
775         * gst/playback/gststreamselector.c: (gst_selector_pad_class_init),
776         (gst_stream_selector_class_init):
777         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init):
778         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
779         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
780         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
781         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
782         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
783         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
784         * gst/videorate/gstvideorate.c: (gst_video_rate_class_init):
785         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
786         * gst/videotestsrc/gstvideotestsrc.c:
787         (gst_video_test_src_class_init):
788         * gst/volume/gstvolume.c: (gst_volume_class_init):
789         * sys/v4l/gstv4lelement.c: (gst_v4lelement_class_init):
790         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
791         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
792         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
793         * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
794         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
795         Use G_PARAM_STATIC_STRINGS everywhere for GParamSpecs that use
796         static strings (i.e. all). This gives us less memory usage,
797         fewer allocations and thus less memory defragmentation. Depend
798         on core CVS for this. Fixes bug #523806.
799
800 2008-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
801
802         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
803         Filter http and https protocols. GIO/GVfs handles them but it's
804         impossible to implement iradio/icecast with it. Better use
805         souphttpsrc or something else for this.
806
807         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_get_size):
808         If getting the file informations by a query fails try it with the
809         seek-to-end trick too.
810
811 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
812
813         * gst/volume/gstvolume.c: (gst_volume_interface_supported),
814         (gst_volume_base_init), (gst_volume_class_init),
815         (volume_process_double), (volume_process_float),
816         (volume_transform_ip), (plugin_init):
817         memset buffers to zero if we get a GAP buffer. We usually see a
818         buffer as one unit so let's handle it as one and don't care about
819         volume changes while processing one buffer.
820         Also clean up some stuff a bit.
821
822 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
823
824         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
825         (gst_audio_convert_create_silence_buffer),
826         (gst_audio_convert_transform):
827         Make audioconvert GAP-aware by outputting silence buffers when the
828         input has the GAP flag set. This is up to 8x faster.
829         Based on a patch by Stefan Kost. Fixes bug #517813.
830
831 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
832
833         * gst/volume/gstvolume.c: (volume_process_double):
834         Use oil_scalarmultiply_f64_ns() for double processing when it's
835         available at compile time.
836
837 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
838
839         * configure.ac:
840         Fix lrint/lrintf checks to actually work. These functions are
841         in libm on Linux at least so try to link to it.
842
843 2008-03-21  Jan Schmidt  <jan.schmidt@sun.com>
844
845         * configure.ac:
846         Back to development - 0.10.18.1
847
848 === release 0.10.18 ===
849
850 2008-03-20  Jan Schmidt <jan.schmidt@sun.com>
851
852         * configure.ac:
853           releasing 0.10.18, "I will follow"
854
855 2008-03-18  Jan Schmidt  <jan.schmidt@sun.com>
856
857         * configure.ac:
858         * win32/common/config.h:
859         0.10.17.4 pre-release
860
861 2008-03-18  Wim Taymans  <wim.taymans@collabora.co.uk>
862
863         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_message_dump):
864         Use GST_STR_NULL when trying to print strings that could be NULL because
865         this might crash on some platforms. See #520808.
866
867 2008-03-18  Wim Taymans  <wim.taymans@collabora.co.uk>
868
869         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
870
871         * gst-libs/gst/rtsp/gstrtspconnection.c:
872         (gst_rtsp_connection_connect), (gst_rtsp_connection_write),
873         (read_line), (gst_rtsp_connection_read_internal):
874         Generic Windows fixes that makes libgstrtsp work on Windows when
875         coupled with the new GstPoll API. See #520808.
876
877 2008-03-17  Sebastian Dröge  <slomo@circular-chaos.org>
878
879         Patch by: Milosz Derezynski <internalerror at gmail dot com>
880
881         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_create):
882           If seeking to a new position succeeds don't simply return from
883           create() without creating a buffer. Do this only in the case
884           seeking to the new position fails. Fixes bug #523054.
885
886 2008-03-17  Tim-Philipp Müller  <tim at centricular dot net>
887
888         * gst-libs/gst/video/video.c: (gst_video_format_parse_caps),
889           (gst_video_format_from_rgba32_masks):
890           Fix gst_video_format_parse_caps() for RGB caps with alpha channel
891           (#522635).
892
893         * tests/check/libs/video.c: (test_parse_caps_rgb), (video_suite):
894           Add unit test for the RGB caps parsing and creation, checking for
895           internal consistency of the new API and consistency of the API with
896           the old GST_VIDEO_CAPS_* defines.
897
898 2008-03-14  David Schleef  <ds@schleef.org>
899
900         * gst/videotestsrc/videotestsrc.c:  Oops, revert last change
901           because -base is in freeze.
902
903 2008-03-14  David Schleef  <ds@schleef.org>
904
905         Patch by: William M. Brack
906
907         * gst/videotestsrc/videotestsrc.c: Fix Bayer pattern generation.
908
909 2008-03-14  Wim Taymans  <wim.taymans@collabora.co.uk>
910
911         * gst/playback/gststreamselector.c: (gst_selector_pad_event),
912         (gst_selector_pad_chain):
913         * gst/playback/gststreamselector.h:
914         Revert change that caused regression until a real fix is found.
915         Fixes #522203.
916
917 2008-03-12  Michael Smith <msmith@fluendo.com>
918
919         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
920         * gst-libs/gst/audio/gstringbuffer.h:
921           Rename recently added buffer types to make more sense.
922         * ext/alsa/gstalsasink.c: (alsasink_parse_spec),
923         (gst_alsasink_write):
924           Adapt for above API changes.
925           Fixes bug #520523.
926
927 2008-03-11  Sebastian Dröge  <slomo@circular-chaos.org>
928
929         * win32/common/libgstnetbuffer.def:
930         Add new symbol gst_netaddress_equal. Fixes bug #521743.
931
932 2008-03-11  Jan Schmidt  <jan.schmidt@sun.com>
933
934         * configure.ac:
935         * win32/common/config.h:
936         0.10.17.3 pre-release
937
938 2008-03-10  Wim Taymans  <wim.taymans@collabora.co.uk>
939
940         * gst-libs/gst/audio/gstbaseaudiosrc.c:
941         (gst_base_audio_src_create):
942         Fix duration when no clock was provided. Fixes #520300.
943
944 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
945
946         Patch by: Olivier Crete  <tester at tester ca>
947
948         * docs/libs/gst-plugins-base-libs-sections.txt:
949         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netaddress_equal):
950         * gst-libs/gst/netbuffer/gstnetbuffer.h:
951         Add trivial function to compare GstNetAddress. See #520626.
952         API: GstNetBuffer::gst_netaddress_equal
953
954 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
955
956         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
957         Update mode property docs, it's deprecated now.
958
959 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
960
961         * gst-libs/gst/rtsp/gstrtspconnection.c:
962         (gst_rtsp_connection_create):
963         * gst/tcp/gstmultifdsink.c: (gst_fdset_mode_get_type),
964         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_start):
965         * gst/tcp/gstmultifdsink.h:
966         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_start):
967         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_start):
968         Remove GstPollMode from gstpoll constructor.
969
970 2008-03-04  Jan Schmidt  <jan.schmidt@sun.com>
971
972         * configure.ac:
973         * win32/common/config.h:
974         0.10.17.2 pre-release
975
976 2008-03-03  Jan Schmidt  <jan.schmidt@sun.com>
977
978         * gst/Makefile.am:
979         GST_PLUGINS_ALL correctly lists subparse and tcp now, don't distclean
980         them twice
981
982         * win32/common/libgstinterfaces.def:
983         * win32/common/libgstrtp.def:
984         Add new API to the defs
985
986 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
987
988         Patch by: Mersad Jelacic  <mersad at axis dot com>
989
990         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
991         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
992         API: add gst_base_rtp_audio_payload_set_samplebits_options() to make it
993         possible to specify the sample size in bits. (#509637)
994
995 2008-03-03  Tim-Philipp Müller  <tim at centricular dot net>
996
997         * tests/check/libs/mixer.c:
998           Add a few simple checks for the new message types.
999
1000 2008-03-03  Tim-Philipp Müller  <tim at centricular dot net>
1001
1002         * docs/libs/gst-plugins-base-libs-sections.txt:
1003         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_option_changed),
1004           (gst_mixer_options_list_changed), (gst_mixer_mixer_changed),
1005           (gst_mixer_message_get_type),
1006           (gst_mixer_message_parse_option_changed),
1007           (gst_mixer_message_parse_options_list_changed):
1008         * gst-libs/gst/interfaces/mixer.h: (GstMixerType),
1009           (GST_MIXER_MESSAGE_OPTION_CHANGED),
1010           (GST_MIXER_MESSAGE_OPTIONS_LIST_CHANGED),
1011           (GST_MIXER_MESSAGE_MIXER_CHANGED):
1012           API: add gst_mixer_options_list_changed(), gst_mixer_mixer_changed()
1013           and gst_mixer_message_parse_options_list_changed(). Fixes #519916.
1014
1015 2008-03-03  Tim-Philipp Müller  <tim at centricular dot net>
1016
1017         * gst-libs/gst/interfaces/mixeroptions.c: (gst_mixer_options_init),
1018           (gst_mixer_options_get_values):
1019         * gst-libs/gst/interfaces/mixeroptions.h:
1020           (GST_MIXER_OPTIONS_GET_CLASS), (GstMixerOptionsClass),
1021           (_GstMixerOptions), (_GstMixerOptionsClass):
1022           API: add GstMixerOptions::get_values vfunc (#519906)
1023
1024 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
1025
1026         * configure.ac:
1027         Use AG_GST_CHECK_PLUGIN and AG_GST_DISABLE_PLUGIN to simplify which
1028         plug-ins are included/excluded. (#498222)
1029
1030 2008-03-03  Sebastian Dröge  <slomo@circular-chaos.org>
1031
1032         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1033         Add typefinder for IMelody files, using audio/x-imelody.
1034         See bug #519516.
1035
1036 2008-03-03  Sebastian Dröge  <slomo@circular-chaos.org>
1037
1038         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_get_type):
1039         * ext/alsa/gstalsasink.c: (set_hwparams):
1040         * ext/alsa/gstalsasrc.c: (set_hwparams):
1041         * ext/gio/gstgio.c: (gst_gio_uri_handler_get_uri):
1042         * ext/ogg/gstoggmux.h:
1043         * ext/ogg/gstogmparse.c:
1044         * gst-libs/gst/audio/audio.c:
1045         * gst-libs/gst/fft/kiss_fft_f64.c: (kiss_fft_f64_alloc):
1046         * gst-libs/gst/pbutils/missing-plugins.c:
1047         (gst_missing_uri_sink_message_new),
1048         (gst_missing_element_message_new),
1049         (gst_missing_decoder_message_new),
1050         (gst_missing_encoder_message_new):
1051         * gst-libs/gst/rtp/gstbasertppayload.c:
1052         * gst-libs/gst/rtp/gstrtcpbuffer.c:
1053         (gst_rtcp_packet_bye_get_reason):
1054         * gst/audioconvert/gstaudioconvert.c:
1055         * gst/audioresample/gstaudioresample.c:
1056         * gst/ffmpegcolorspace/imgconvert.c:
1057         * gst/playback/test.c: (gen_video_element), (gen_audio_element):
1058         * gst/typefind/gsttypefindfunctions.c:
1059         * gst/videoscale/vs_4tap.c:
1060         * gst/videoscale/vs_4tap.h:
1061         * sys/v4l/gstv4lelement.c:
1062         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_any_caps):
1063         * sys/v4l/v4l_calls.c:
1064         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
1065         (gst_v4lsrc_try_capture):
1066         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
1067         (gst_ximagesink_ximage_new):
1068         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
1069         (gst_xvimagesink_xvimage_new):
1070         * tests/check/elements/audioconvert.c:
1071         * tests/check/elements/audioresample.c:
1072         (fail_unless_perfect_stream):
1073         * tests/check/elements/audiotestsrc.c: (setup_audiotestsrc):
1074         * tests/check/elements/decodebin.c:
1075         * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
1076         (setup_gdpdepay_streamheader):
1077         * tests/check/elements/gdppay.c: (setup_gdppay), (GST_START_TEST),
1078         (setup_gdppay_streamheader):
1079         * tests/check/elements/gnomevfssink.c: (setup_gnomevfssink):
1080         * tests/check/elements/multifdsink.c: (setup_multifdsink):
1081         * tests/check/elements/textoverlay.c:
1082         * tests/check/elements/videorate.c: (setup_videorate):
1083         * tests/check/elements/videotestsrc.c: (setup_videotestsrc):
1084         * tests/check/elements/volume.c: (setup_volume):
1085         * tests/check/elements/vorbisdec.c: (setup_vorbisdec):
1086         * tests/check/elements/vorbistag.c:
1087         * tests/check/generic/clock-selection.c:
1088         * tests/check/generic/states.c: (setup), (teardown):
1089         * tests/check/libs/cddabasesrc.c:
1090         * tests/check/libs/video.c:
1091         * tests/check/pipelines/gio.c:
1092         * tests/check/pipelines/oggmux.c:
1093         * tests/check/pipelines/simple-launch-lines.c:
1094         (simple_launch_lines_suite):
1095         * tests/check/pipelines/streamheader.c:
1096         * tests/check/pipelines/theoraenc.c:
1097         * tests/check/pipelines/vorbisdec.c:
1098         * tests/check/pipelines/vorbisenc.c:
1099         * tests/examples/seek/scrubby.c:
1100         * tests/examples/seek/seek.c: (query_positions_elems),
1101         (query_positions_pads):
1102         * tests/icles/stress-xoverlay.c: (myclock):
1103         Correct all relevant warnings found by the sparse semantic code
1104         analyzer. This include marking several symbols static, using
1105         NULL instead of 0 for pointers and using "foo (void)" instead
1106         of "foo ()" for declarations.
1107
1108         * win32/common/libgstrtp.def:
1109         Add gst_rtp_buffer_set_extension_data to the symbol definition file.
1110
1111 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
1112
1113         Patch by: José Alburquerque <jaalburqu svn gnome org>
1114
1115         * gst/playback/gstplaybin2.c:
1116           Make the function signature of the _get_*_tags() functions match
1117           the signature of the vfuncs they implement, ie. return a
1118           GstTagList rather than a GstStructure, which is more correct,
1119           even if one is typedef'ed to the other (#518940).
1120
1121 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
1122
1123         * gst-libs/gst/rtsp/gstrtspconnection.c:
1124           Don't include unix headers unconditionally (fixes #518037).
1125
1126 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
1127
1128         * tests/check/libs/video.c: (paintinfo), (paintinfo_struct),
1129           (fourcc_list_struct), (fourcc_list), (fourcc_get_size),
1130           (paint_setup_I420), (paint_setup_YV12), (paint_setup_AYUV),
1131           (paint_setup_YUY2), (paint_setup_UYVY), (paint_setup_YVYU),
1132           (paint_setup_IYU2), (paint_setup_Y41B), (paint_setup_Y42B),
1133           (paint_setup_Y800), (paint_setup_YVU9), (paint_setup_YUV9),
1134           (gst_video_format_is_packed), (video_format_is_packed):
1135           Add unit test that makes sure that the strides, offsets and
1136           sizes returned for the various YUV formats by the new video API
1137           match the old reference implementation in videotestsrc.
1138
1139 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
1140
1141         * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio),
1142           (gst_video_format_from_fourcc), (gst_video_format_to_fourcc),
1143           (gst_video_format_is_rgb), (gst_video_format_is_yuv),
1144           (gst_video_format_has_alpha), (gst_video_format_get_row_stride),
1145           (gst_video_format_get_pixel_stride),
1146           (gst_video_format_get_component_width),
1147           (gst_video_format_get_component_height),
1148           (gst_video_format_get_component_offset), (gst_video_format_get_size):
1149         * gst-libs/gst/video/video.h: (GST_VIDEO_FORMAT_Y41B),
1150           (GST_VIDEO_FORMAT_Y42B):
1151           API: add GST_VIDEO_FORMAT_Y41B and GST_VIDEO_FORMAT_Y42B.
1152
1153 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
1154
1155         * gst-libs/gst/video/video.c: (gst_video_format_get_component_offset):
1156           YV12 is I420 with swapped components 1 and 2, so the offset of
1157           component 1 for I420 should be the offset for component 2 for YV12
1158           and vice versa.
1159
1160 2008-02-29  Rene Stadler  <mail@renestadler.de>
1161
1162         * sys/v4l/gstv4lelement.c:
1163         Add missing semicolon to fix indentation.
1164
1165 2008-02-29  Julien Moutte  <julien@fluendo.com>
1166
1167         * ext/alsa/gstalsa.c: (gst_alsa_open_iec958_pcm),
1168         (gst_alsa_probe_supported_formats): Probe for IEC958 pcm to detect
1169         if we can do SPDIF output.
1170         * ext/alsa/gstalsa.h:
1171         * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec),
1172         (gst_alsasink_prepare), (gst_alsasink_close), (gst_alsasink_write):
1173         * ext/alsa/gstalsasink.h: Initial support for SPDIF.
1174         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
1175         * gst-libs/gst/audio/gstringbuffer.h: Add non linear buffer types
1176         to support AC3, EC3 and IEC958 buffers.
1177
1178 2008-02-29  Tim-Philipp Müller  <tim at centricular dot net>
1179
1180         * gst-libs/gst/interfaces/mixer.c: (GST_MIXER_MESSAGE_HAS_TYPE),
1181           (gst_mixer_message_parse_mute_toggled),
1182           (gst_mixer_message_parse_record_toggled),
1183           (gst_mixer_message_parse_volume_changed),
1184           (gst_mixer_message_parse_option_changed):
1185           De-cruft and fix message type assertions (NULL is not a really
1186           valid mixer message type string).
1187
1188 2008-02-29  Wim Taymans  <wim.taymans@collabora.co.uk>
1189
1190         * ext/libvisual/visual.c: (gst_vis_src_negotiate):
1191         When negotiating, actually start from a format that we can support
1192         instead of from the too generic template.
1193
1194 2008-02-29  Wim Taymans  <wim.taymans@collabora.co.uk>
1195
1196         * gst/playback/gstplaybin2.c: (gst_play_bin_set_property):
1197         Enable vis setting.
1198
1199         * gst/playback/gstplaysink.c: (gst_play_sink_init),
1200         (gst_play_sink_dispose), (gst_play_sink_vis_unblocked),
1201         (gst_play_sink_vis_blocked), (gst_play_sink_set_vis_plugin),
1202         (gen_vis_chain):
1203         Implement vis switching while playing.
1204
1205 2008-02-28  David Schleef  <ds@schleef.org>
1206
1207         * gst-libs/gst/riff/riff-media.c: Add Dirac mapping
1208
1209 2008-02-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1210
1211         Patch by: Peter Kjellerstedt  <pkj at axis com>
1212
1213         * gst/tcp/Makefile.am:
1214         * gst/tcp/fdsetstress.c:
1215         * gst/tcp/gstfdset.c:
1216         * gst/tcp/gstfdset.h:
1217         Removed fdset and stress test, they are now known as GstPoll in
1218         core. 
1219
1220         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
1221         (gst_multi_fd_sink_add_full), (gst_multi_fd_sink_remove),
1222         (gst_multi_fd_sink_clear), (gst_multi_fd_sink_remove_client_link),
1223         (gst_multi_fd_sink_handle_client_write),
1224         (gst_multi_fd_sink_queue_buffer),
1225         (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_start),
1226         (gst_multi_fd_sink_stop):
1227         * gst/tcp/gstmultifdsink.h:
1228         * gst/tcp/gsttcp.c: (gst_tcp_socket_read), (gst_tcp_socket_close),
1229         (gst_tcp_read_buffer), (gst_tcp_gdp_read_buffer),
1230         (gst_tcp_gdp_read_caps):
1231         * gst/tcp/gsttcp.h:
1232         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_init),
1233         (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
1234         (gst_tcp_client_sink_start), (gst_tcp_client_sink_stop):
1235         * gst/tcp/gsttcpclientsink.h:
1236         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_init),
1237         (gst_tcp_client_src_create), (gst_tcp_client_src_start),
1238         (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
1239         * gst/tcp/gsttcpclientsrc.h:
1240         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_handle_wait),
1241         (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
1242         * gst/tcp/gsttcpserversink.h:
1243         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_init),
1244         (gst_tcp_server_src_create), (gst_tcp_server_src_start),
1245         (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
1246         * gst/tcp/gsttcpserversrc.h:
1247         Port to GstPoll. See #505417.
1248
1249 2008-02-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1250
1251         Patch by: Peter Kjellerstedt  <pkj at axis com>
1252
1253         * gst-libs/gst/rtsp/gstrtspconnection.c:
1254         (gst_rtsp_connection_create), (gst_rtsp_connection_connect),
1255         (gst_rtsp_connection_write), (gst_rtsp_connection_read_internal),
1256         (gst_rtsp_connection_receive), (gst_rtsp_connection_close),
1257         (gst_rtsp_connection_free), (gst_rtsp_connection_poll),
1258         (gst_rtsp_connection_flush):
1259         * gst-libs/gst/rtsp/gstrtspconnection.h:
1260         Use GstPoll for the rtsp connection. See #505417.
1261
1262 2008-02-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1263
1264         * tests/examples/seek/seek.c: (vis_toggle_cb), (filter_features),
1265         (init_visualization_features), (vis_combo_cb), (shot_cb), (main):
1266         Add combo box for visualisations, populate it with a factory list
1267         of all visualisation plugins, configure vis plugin instance in
1268         playbin2. 
1269
1270 2008-02-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1271
1272         * tests/check/libs/rtp.c: (GST_START_TEST):
1273         Add check for RTP buffer defaults, padding and marker bit API.
1274
1275 2008-02-27  Sebastian Dröge  <slomo@circular-chaos.org>
1276
1277         * gst-libs/gst/cdda/sha1.c: (sha_transform):
1278         Use memcpy() instead of upcasting a byte array to long *. This
1279         fixes an unaligned memory access, resulting in SIGBUS on IA64.
1280         This should be ported to GCheckSum once we can use GLib 2.16.
1281         Partially fixes bug #500833.
1282
1283 2008-02-27  Tim-Philipp Müller  <tim at centricular dot net>
1284
1285         * gst-libs/gst/tag/gsttagdemux.c: (gst_tag_demux_chain):
1286           Push tag event after the newsegment event. Log the pointer of
1287           the buffer we're actually going to push rather than the buffer
1288           we're feeding to _make_metadata_writable().
1289
1290 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
1291
1292         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1293         Comment smoke typefinder for now. The smokedec plugin needs one
1294         frame per buffer but we have no parser yet, thus it simply crashes
1295         in most situations.
1296
1297 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
1298
1299         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1300         Add typefinder for the smoke video codec. Copied from the jpeg plugin.
1301
1302 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
1303
1304         * gst/typefind/gsttypefindfunctions.c: (mid_type_find),
1305         (plugin_init):
1306         Add midi typefinder, copied from the timidity plugin.
1307
1308 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
1309
1310         Based on patch by: Tomasz Sałaciński <tsalacinski gmail com>
1311
1312         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
1313         * tests/check/elements/subparse.c: (test_microdvd_with_italics),
1314           (subparse_suite):
1315           Forward slashes at the beginning and end of a line also signify
1316           italics (Fixes: #518162).
1317
1318 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
1319
1320         * tests/check/gst-plugins-base.supp:
1321         Add a suppression for a cached value in GIO that wasn't moved
1322         while moving gio from -bad to -base.
1323
1324 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
1325
1326         Patch by: Brian Cameron <brian dot cameron at sun dot com>
1327
1328         * configure.ac:
1329         Don't hardcode -Wall and -Werror for configure checks, this fails
1330         with non-GCC compilers. Fixes bug #517991.
1331
1332 2008-02-21  Stefan Kost  <ensonic@users.sf.net>
1333
1334         * gst/audioconvert/gstaudioconvert.c:
1335         * gst/audioconvert/gstaudioquantize.c:
1336         * gst/audioconvert/gstaudioquantize.h:
1337           Make audioconvert gap aware. If noiseshaping is used, wait for
1338           noiseshaping to converge before marking as GAP. Fixes #517813.
1339
1340 2008-02-21  Stefan Kost  <ensonic@users.sf.net>
1341
1342         * gst/audiotestsrc/gstaudiotestsrc.c:
1343           Mark buffers as GAP,if volume is 0.0 and fix the previous logic.
1344
1345 2008-02-20  Sebastian Dröge  <slomo@circular-chaos.org>
1346
1347         * ext/gnomevfs/gstgnomevfssink.c:
1348         (gst_gnome_vfs_sink_handle_event):
1349         Return FALSE when seeking for a new segment fails instead
1350         of silently ignoring the failure and appending every buffer
1351         that comes for the new segment.
1352
1353 2008-02-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1354
1355         * gst/playback/gstplaysink.c: (find_property),
1356         (gst_play_sink_find_property), (gen_video_chain),
1357         (gst_play_sink_reconfigure), (gst_play_sink_get_last_frame):
1358         Recursively search the sink element for a last-frame property so that we
1359         can also find the property in autovideosink and friends that don't
1360         always proxy the internal sink properties.
1361
1362 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
1363
1364         * gst-libs/gst/audio/multichannel.c:
1365           (GST_AUDIO_CHANNEL_POSITIONS_FIELD_NAME),
1366           (gst_audio_get_channel_positions), (gst_audio_set_channel_positions),
1367           (gst_audio_set_structure_channel_positions_list),
1368           (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
1369           (gst_audio_fixate_channel_positions):
1370           Fix confusing terminology in docs and code: structure fields are
1371           'fields' and not 'properties'.
1372
1373 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
1374
1375         * gst-libs/gst/audio/multichannel.c:
1376           (gst_audio_check_channel_positions), (add_list_to_struct):
1377           Give more useful warning messages if one of the channel
1378           layout enums passed to us is invalid and if the "channels"
1379           field in the caps has a GType we don't expect.
1380
1381 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
1382
1383         * gst-libs/gst/audio/multichannel.c:
1384           Fix typo in docs blurb.
1385
1386 2008-02-19  Julien Moutte  <julien@fluendo.com>
1387
1388         Patch by: Josep Torra Valles <josep@fluendo.com>
1389
1390         * gst/typefind/gsttypefindfunctions.c: Increase the MPEG PS
1391         typefind lookup to fix typefinding on HD clips.
1392
1393 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
1394
1395         * gst/playback/gstscreenshot.c:
1396         * gst/playback/gstscreenshot.h:
1397           Fix up copyright (I rewrote the GStreamer-0.10 code for
1398           this from scratch back in the days).
1399
1400 2008-02-19  Wim Taymans  <wim.taymans@collabora.co.uk>
1401
1402         * gst/playback/Makefile.am:
1403         * gst/playback/gstscreenshot.c: (feed_fakesrc), (save_result),
1404         (create_element), (gst_play_frame_conv_convert):
1405         * gst/playback/gstscreenshot.h:
1406         Add screenshot conversion code from totem.
1407
1408         * gst/playback/gstplay-marshal.list:
1409         * gst/playback/gstplaybin2.c: (gst_play_marshal_BUFFER__BOXED),
1410         (gst_play_bin_class_init), (gst_play_bin_convert_frame),
1411         (gst_play_bin_get_property), (no_more_pads_cb), (activate_group):
1412         Implement frame property to get a color-unconverted snapshot.
1413         Implement convert-frame action signal to get a converted snapshot image.
1414         Configure connection speed in uridecodebin.
1415         Document some more properties.
1416
1417         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
1418         (gen_video_chain), (gen_audio_chain), (gst_play_sink_reconfigure),
1419         (gst_play_sink_get_last_frame):
1420         * gst/playback/gstplaysink.h:
1421         Use last-buffer property of the video sink to get a video snapshot.
1422
1423         * tests/examples/seek/seek.c: (shot_cb), (main):
1424         Add snapshot button for playbin2 and use the frame property to save the
1425         frame as a png in the current directory.
1426
1427 2008-02-19  Sebastian Dröge  <slomo@circular-chaos.org>
1428
1429         Patch by: Josep Torra Valles <josep at fluendo dot com>
1430
1431         * gst/typefind/gsttypefindfunctions.c: (h264_video_type_find),
1432         (plugin_init):
1433         Add typefinding support for h264 elementary streams.
1434         Fixes bug #517420.
1435
1436 2008-02-18  Stefan Kost  <ensonic@users.sf.net>
1437
1438         * configure.ac:
1439           Require CVS of core for new API in collectpads.
1440
1441         * gst/adder/gstadder.c:
1442           Use new API to make adder sparse stream aware.
1443
1444 2008-02-18  Wim Taymans  <wim.taymans@collabora.co.uk>
1445
1446         * gst/playback/gstplaybin2.c: (pad_added_cb), (pad_removed_cb),
1447         (no_more_pads_cb):
1448         Get the object data correct so that we can remove our channels
1449         correctly.
1450
1451         * gst/playback/gstplaysink.c: (gen_video_chain), (gen_audio_chain),
1452         (gen_vis_chain), (gst_play_sink_reconfigure),
1453         (gst_play_sink_request_pad):
1454         Add option to disable async behaviour in the sinks when possible. This
1455         makes it possible to avoid an audio queue when dealing with
1456         visualisations.
1457         Add option to add a queue for the audio path.
1458
1459         * tests/examples/seek/seek.c: (clear_streams), (update_streams),
1460         (main):
1461         Disable the vis checkbox to match the defaults of playbin2.
1462         Only get the stream info when we need to.
1463
1464 2008-02-17  Sebastian Dröge  <slomo@circular-chaos.org>
1465
1466         * ext/gio/gstgiobasesink.c: (gst_gio_base_sink_stop),
1467         (gst_gio_base_sink_set_stream):
1468         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_stop),
1469         (gst_gio_base_src_set_stream):
1470         * ext/gio/gstgiosink.c: (gst_gio_sink_start):
1471         * ext/gio/gstgiosrc.c: (gst_gio_src_start):
1472         Don't use async operations as they require a running main loop.
1473         This makes us block again when closing streams and unable
1474         to mount the enclosing volume of an URI if it isn't yet.
1475
1476 2008-02-15  Wim Taymans  <wim.taymans@collabora.co.uk>
1477
1478         * gst/playback/gstplaysink.c: (gst_play_sink_set_mute),
1479         (gst_play_sink_get_mute), (gen_video_chain), (gen_audio_chain),
1480         (gen_vis_chain), (gst_play_sink_reconfigure),
1481         (gst_play_sink_request_pad):
1482         Move tee in front of the audio and vis pipelines.
1483         Add queue for audio for now.
1484         Add visualisation support.
1485
1486         * tests/examples/seek/seek.c: (main):
1487         Visualisation is by default disabled.
1488
1489 2008-02-15  Sebastian Dröge  <slomo@circular-chaos.org>
1490
1491         * ext/gio/gstgiobasesink.c: (close_stream_cb):
1492         * ext/gio/gstgiobasesrc.c: (close_stream_cb):
1493         Improve debugging a bit.
1494
1495         * ext/gio/gstgiosink.c: (mount_cb), (gst_gio_sink_start):
1496         * ext/gio/gstgiosink.h:
1497         * ext/gio/gstgiosrc.c: (mount_cb), (gst_gio_src_start):
1498         * ext/gio/gstgiosrc.h:
1499         Try to mount the enclosing volume of a GFile if it isn't mounted
1500         yet. This requires us to wait for an async operation to finish, done
1501         with an nested GMainLoop. Authentication is not supported yet, will
1502         come later.
1503
1504 2008-02-14  Wim Taymans  <wim.taymans@collabora.co.uk>
1505
1506         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
1507         (gst_play_bin_set_property), (gst_play_bin_get_property),
1508         (pad_added_cb), (pad_removed_cb), (no_more_pads_cb):
1509         * gst/playback/gstplaysink.c: (gst_play_sink_set_mute),
1510         (gst_play_sink_get_mute), (gen_audio_chain):
1511         * gst/playback/gstplaysink.h:
1512         Add mute property.
1513
1514         * gst/playback/gststreamselector.c: (gst_selector_pad_event),
1515         (gst_selector_pad_chain):
1516         * gst/playback/gststreamselector.h:
1517         Make sure we forward the event only once.
1518
1519         * tests/examples/seek/seek.c: (stop_cb), (mute_toggle_cb), (main):
1520         Add and implement the mute button for playbin2.
1521
1522 2008-02-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1523
1524         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
1525
1526         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_delay):
1527         Add some more debug info.
1528         Make sure we never return a negative delay. Fixes #516246.
1529
1530 2008-02-12  Tim-Philipp Müller  <tim at centricular dot net>
1531
1532         * ext/alsa/gstalsasink.c: (gst_alsasink_delay):
1533           Revert patch that makes the sink hold the object lock when
1534           calling snd_pcm_delay(), since it breaks playback for me.
1535
1536 2008-02-12  Julien Moutte  <julien@fluendo.com>
1537
1538         * tests/examples/seek/seek.c: (rate_spinbutton_changed_cb): Add
1539         some seek flags when changing rate.
1540
1541 2008-02-12  Wim Taymans  <wim.taymans@collabora.co.uk>
1542
1543         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
1544         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
1545         (gst_base_rtp_audio_payload_handle_sample_based_buffer):
1546         Fix potential leaks.
1547
1548         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_chain):
1549         Fix leak when there is no function configured.
1550
1551 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
1552
1553         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_class_init),
1554         (gst_v4lsrc_buffer_finalize):
1555         Correctly chain up the finalize method.
1556
1557 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
1558
1559         * ext/gio/gstgiostreamsink.c:
1560         * ext/gio/gstgiostreamsrc.c:
1561         Add documentation and example code for giostreamsink/giostreamsrc.
1562
1563         * tests/check/pipelines/gio.c: (GST_START_TEST):
1564         Ask the GMemoryOutputStream for the data instead of assuming that
1565         the pointer to the data stayed the same. It could've been realloc'ed.
1566
1567 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
1568
1569         * ext/gio/gstgiosink.c:
1570         * ext/gio/gstgiosrc.c:
1571         Make the documentation of giosink/giosrc complete, large parts
1572         are based on the gnomevfssink/gnomevfssrc docs.
1573
1574 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
1575
1576         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1577         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1578         * docs/plugins/gst-plugins-base-plugins.args:
1579         * docs/plugins/gst-plugins-base-plugins.hierarchy:
1580         * docs/plugins/gst-plugins-base-plugins.interfaces:
1581         * docs/plugins/gst-plugins-base-plugins.prerequisites:
1582         * docs/plugins/gst-plugins-base-plugins.signals:
1583         * docs/plugins/inspect/plugin-adder.xml:
1584         * docs/plugins/inspect/plugin-audioconvert.xml:
1585         * docs/plugins/inspect/plugin-audiorate.xml:
1586         * docs/plugins/inspect/plugin-audioresample.xml:
1587         * docs/plugins/inspect/plugin-decodebin.xml:
1588         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
1589         * docs/plugins/inspect/plugin-gdp.xml:
1590         * docs/plugins/inspect/plugin-gio.xml:
1591         * docs/plugins/inspect/plugin-gnomevfs.xml:
1592         * docs/plugins/inspect/plugin-libvisual.xml:
1593         * docs/plugins/inspect/plugin-ogg.xml:
1594         * docs/plugins/inspect/plugin-pango.xml:
1595         * docs/plugins/inspect/plugin-playback.xml:
1596         * docs/plugins/inspect/plugin-queue2.xml:
1597         * docs/plugins/inspect/plugin-subparse.xml:
1598         * docs/plugins/inspect/plugin-theora.xml:
1599         * docs/plugins/inspect/plugin-uridecodebin.xml:
1600         * docs/plugins/inspect/plugin-videorate.xml:
1601         * docs/plugins/inspect/plugin-videoscale.xml:
1602         * docs/plugins/inspect/plugin-volume.xml:
1603         * docs/plugins/inspect/plugin-vorbis.xml:
1604         Add the GIO documentation again and while at that run make update.
1605
1606 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
1607
1608         * ext/alsa/gstalsa.h: (GST_CHECK_ALSA_VERSION):
1609         * ext/alsa/gstalsasink.c: (set_swparams):
1610         * ext/alsa/gstalsasrc.c: (set_swparams), (gst_alsasrc_open):
1611           Don't use snd_pcm_sw_params_set_xfer_align() if we're compiling
1612           against libasound >= 1.0.16, since it's been deprecated in
1613           0.10.16, and alignment is always 1 then, apparently. (#512899)
1614
1615 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
1616
1617         * gst/playback/gstplaybin.c: (gen_audio_element):
1618         * gst/playback/gstplaysink.c: (gen_audio_chain):
1619           Handle case where we can't create the volume element a bit
1620           better (#514307).
1621
1622 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
1623
1624         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_check_get_range):
1625         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
1626           Add support for https protocol. Fixes #510229.
1627
1628 2008-02-11  Julien Moutte  <julien@fluendo.com>
1629         
1630         Patch by: Alan Peevers <peeves@pacbell.net>
1631
1632         * ext/alsa/gstalsasink.c: (gst_alsasink_delay): Take appropriate
1633         lock when calling alsa methods.
1634
1635 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
1636
1637         * gst/typefind/gsttypefindfunctions.c:
1638           Bump rank of jpeg and png typefinders, which will return maximum
1639           probability in the most common cases (thus short-circuiting more
1640           expensive typefinders like the mp3 one for these two quite common
1641           image types).
1642
1643 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
1644
1645         * ext/theora/theoraparse.c:
1646         Fix long description of the theora parser to be more verbose than just
1647         the type name.
1648
1649 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
1650
1651         Patch by: Branko Čibej <brane at xbc dot nu>
1652
1653         * sys/xvimage/xvimagesink.c:
1654         Fix build of xvimagesink if we don't have XShm, e.g. on Mac OS X.
1655         Fixes bug #515654.
1656
1657 2008-02-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
1658
1659         * gst/playback/gstplaybasebin.c:
1660         Set is_dynamic as True if there are elements with both request
1661         and sometimes src pad templates instead of breaking out when it
1662         finds the first pad template that is a src.
1663
1664 2008-02-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1665
1666         * tests/examples/seek/seek.c: (stop_cb), (clear_streams),
1667         (update_streams), (video_combo_cb), (audio_combo_cb),
1668         (text_combo_cb), (volume_spinbutton_changed_cb), (main):
1669         Add some stream switching and volume gui for playbin2.
1670
1671 2008-02-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1672
1673         * gst/playback/gstplay-marshal.list:
1674         Added marshal for streamselector Tags.
1675
1676         * gst/playback/gstplaybasebin.c: (set_active_source):
1677         Streamselector now selects pads based on the pad object instead of its
1678         name.
1679
1680         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
1681         (init_group), (gst_play_bin_init), (get_group), (get_tags),
1682         (gst_play_bin_get_video_tags), (gst_play_bin_get_audio_tags),
1683         (gst_play_bin_get_text_tags),
1684         (gst_play_bin_set_current_video_stream),
1685         (gst_play_bin_set_current_audio_stream),
1686         (gst_play_bin_set_current_text_stream),
1687         (gst_play_bin_set_property), (gst_play_bin_get_property),
1688         (pad_added_cb), (pad_removed_cb), (autoplug_select_cb):
1689         Remove option to mute streams with the current-a/v/t property, we have
1690         this functionality in the flags.
1691         Add signals to notify when the number of A/V/T channels changed.
1692         Add action signals to get tags for the A/V/T streams.
1693         Implement setting the current A/V/T stream.
1694         Rearrange some things to simplify stream selection.
1695         Implement volume.
1696
1697         * gst/playback/gstplaysink.c: (gst_play_sink_set_volume),
1698         (gst_play_sink_get_volume), (gst_play_sink_set_property),
1699         (gst_play_sink_get_property), (gen_video_chain), (gen_audio_chain),
1700         (activate_vis), (gst_play_sink_reconfigure):
1701         * gst/playback/gstplaysink.h:
1702         Add and implement volume setting methods.
1703
1704         * gst/playback/gststreamselector.c: (gst_selector_pad_class_init),
1705         (gst_selector_pad_finalize), (gst_selector_pad_get_property),
1706         (gst_selector_pad_event), (gst_stream_selector_class_init),
1707         (gst_stream_selector_init), (gst_stream_selector_finalize),
1708         (gst_stream_selector_set_property),
1709         (gst_stream_selector_get_property),
1710         (gst_stream_selector_get_linked_pad),
1711         (gst_stream_selector_request_new_pad):
1712         * gst/playback/gststreamselector.h:
1713         Add pad properties for tags and status of pads.
1714         Keep tags on pads.
1715         Make active pad selection based on pad object instead of name.
1716
1717 2008-02-08  Stefan Kost  <ensonic@users.sf.net>
1718
1719         * configure.ac:
1720           Revert last change as we now check in gtk-doc.m4 for sed.
1721
1722 2008-02-08  Jan Schmidt  <Jan.Schmidt@sun.com>
1723
1724         * configure.ac:
1725         Find and subst SED when building the docs.
1726
1727 2008-02-08  Julien Moutte  <julien@fluendo.com>
1728
1729         * tests/examples/seek/seek.c: (stop_cb), (connect_bus_signals),
1730         (main): Make sure bus signals are reconnected when pressing STOP
1731         and then PLAY again for a parse launch pipeline. Fix a ref leak
1732         on the bus.
1733         * win32/common/config.h: Updated.
1734
1735 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
1736
1737         * configure.ac:
1738         Make DISABLE_DEPRECATED defined *only* during CVS, not during
1739         pre-releases or releases.
1740
1741 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
1742
1743         * configure.ac:
1744         * ext/gio/Makefile.am:
1745         Subst GIO_LDFLAGS to avoid undefined Makefile var error Zaheer is
1746         reporting
1747
1748 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
1749
1750         * docs/plugins/Makefile.am:
1751         Add the headers which need scanning for the GIO plugin. The rest of
1752         the docs still need migrating.
1753
1754 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
1755
1756         * ext/Makefile.am:
1757         * tests/check/Makefile.am:
1758         * tests/check/pipelines/.cvsignore:
1759         Add gio in a few more places.
1760
1761 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
1762
1763         * configure.ac:
1764         * ext/Makefile.am:
1765         * tests/check/Makefile.am:
1766         Move gio plugin from -bad and mark as experimental.
1767
1768 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
1769
1770         * gst-libs/gst/interfaces/mixeroptions.c:
1771         * gst-libs/gst/interfaces/mixertrack.c:
1772         Comment out a couple of other things which break the build when
1773         GST_DISABLE_DEPRECATED isn't on but -Werror is.
1774
1775 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
1776
1777         * docs/libs/gst-plugins-base-libs-sections.txt:
1778           Fix pbutils header.
1779
1780 2008-02-07  Wim Taymans  <wim.taymans@collabora.co.uk>
1781
1782         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
1783         Fix compiler warning.
1784
1785 2008-02-07  Wim Taymans  <wim.taymans@collabora.co.uk>
1786
1787         Patch by: Peter Kjellerstedt  <pkj at axis com>
1788
1789         * gst-libs/gst/sdp/gstsdpmessage.c: (is_multicast_address):
1790         Clear the addrinfo struct using memset. Fixes #514937.
1791
1792 2008-02-06  Wim Taymans  <wim.taymans@collabora.co.uk>
1793
1794         * gst/tcp/gstfdset.h:
1795         Remove unused field to same some memory.
1796
1797         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
1798         Mark action signals as such.
1799
1800 2008-02-06  Michael Smith <msmith@fluendo.com>
1801
1802         * ext/theora/theoradec.c: (_theora_granule_frame),
1803         (_inc_granulepos):
1804           Increment granulepos for new-bitstream versions appropriately.
1805           Fixes #514623.
1806
1807 2008-02-04  Wim Taymans  <wim.taymans@collabora.co.uk>
1808
1809         * tests/examples/seek/seek.c: (do_seek),
1810         (rate_spinbutton_changed_cb), (update_streams), (main):
1811         Remove obsolete stream_time reset after flushing seek, core does that
1812         automatically now.
1813         Improve accuracy of speed spinbutton.
1814         Only do playbin2 stuff when we actually use it.
1815
1816 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
1817
1818         * tests/check/Makefile.am:
1819           Revert previous change of the test environment's GST_PLUGIN_PATH.
1820           The problem is not with the plugins, but with element factories
1821           and only occurs if elements are split out from existing plugins
1822           or if plugins change name (see #512740).
1823
1824 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
1825
1826         * tests/check/Makefile.am:
1827           Fix the tests environment's GST_PLUGIN_PATH: we want the directory
1828           with the core's plugins first and our local build directories last,
1829           since we might be building against an installed core, and that
1830           core's plugin directory may contain older or other versions of
1831           our own -base plugins, but we really do want to test our local
1832           ones (if there are multiple plugins or element factories with the
1833           same name, those inspected last will trump those read in earlier).
1834           Fixes #512740 for the most part.
1835
1836 2008-02-02  Sebastian Dröge  <slomo@circular-chaos.org>
1837
1838         * configure.ac:
1839         * gst-libs/gst/rtsp/gstrtspconnection.c: (add_date_header):
1840         Use gmtime_r if available as gmtime is not MT-safe.
1841         Fixes bug #511810.
1842
1843 2008-02-02  Sebastian Dröge  <slomo@circular-chaos.org>
1844
1845         * gst-libs/gst/rtsp/gstrtspconnection.c: (add_date_header):
1846         Cast glong to time_t as time_t might have a different type on
1847         other platforms, like FreeBSD, and we get a compiler warning
1848         otherwise. Fixes bug #511825.
1849
1850 2008-02-01  Wim Taymans  <wim.taymans@collabora.co.uk>
1851
1852         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
1853         (get_group), (get_n_pads), (gst_play_bin_get_property),
1854         (pad_added_cb), (no_more_pads_cb), (perform_eos),
1855         (autoplug_select_cb), (deactivate_group):
1856         Remove stream-info, we going for something easier.
1857         Refactor getting the current group.
1858         Implement getting the number of audio/video/text streams.
1859
1860         * gst/playback/gststreamselector.c:
1861         (gst_stream_selector_class_init), (gst_stream_selector_init),
1862         (gst_stream_selector_get_property),
1863         (gst_stream_selector_request_new_pad),
1864         (gst_stream_selector_release_pad):
1865         * gst/playback/gststreamselector.h:
1866         Add property for number of pads.
1867
1868         * tests/examples/seek/seek.c: (set_scale), (update_flag),
1869         (vis_toggle_cb), (audio_toggle_cb), (video_toggle_cb),
1870         (text_toggle_cb), (update_streams), (msg_async_done),
1871         (msg_state_changed), (main):
1872         Block slider callback when updating the slider position.
1873         Add gui elements for controlling playbin2.
1874         Add callback for async_done that updates position/duration.
1875
1876 2008-02-01  Stefan Kost  <ensonic@users.sf.net>
1877
1878         * docs/plugins/Makefile.am:
1879         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1880         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1881         * docs/plugins/gst-plugins-base-plugins.hierarchy:
1882         * docs/plugins/gst-plugins-base-plugins.interfaces:
1883         * docs/plugins/gst-plugins-base-plugins.prerequisites:
1884           First round of plugin docs cleansups.
1885
1886         * docs/plugins/inspect/plugin-adder.xml:
1887         * docs/plugins/inspect/plugin-alsa.xml:
1888         * docs/plugins/inspect/plugin-audioconvert.xml:
1889         * docs/plugins/inspect/plugin-audiorate.xml:
1890         * docs/plugins/inspect/plugin-audioresample.xml:
1891         * docs/plugins/inspect/plugin-audiotestsrc.xml:
1892         * docs/plugins/inspect/plugin-cdparanoia.xml:
1893         * docs/plugins/inspect/plugin-decodebin.xml:
1894         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
1895         * docs/plugins/inspect/plugin-gdp.xml:
1896         * docs/plugins/inspect/plugin-gnomevfs.xml:
1897         * docs/plugins/inspect/plugin-libvisual.xml:
1898         * docs/plugins/inspect/plugin-ogg.xml:
1899         * docs/plugins/inspect/plugin-pango.xml:
1900         * docs/plugins/inspect/plugin-subparse.xml:
1901         * docs/plugins/inspect/plugin-tcp.xml:
1902         * docs/plugins/inspect/plugin-theora.xml:
1903         * docs/plugins/inspect/plugin-typefindfunctions.xml:
1904         * docs/plugins/inspect/plugin-video4linux.xml:
1905         * docs/plugins/inspect/plugin-videorate.xml:
1906         * docs/plugins/inspect/plugin-videoscale.xml:
1907         * docs/plugins/inspect/plugin-videotestsrc.xml:
1908         * docs/plugins/inspect/plugin-volume.xml:
1909         * docs/plugins/inspect/plugin-vorbis.xml:
1910         * docs/plugins/inspect/plugin-ximagesink.xml:
1911         * docs/plugins/inspect/plugin-xvimagesink.xml:
1912           Regenerate.
1913
1914         * ext/ogg/Makefile.am:
1915         * ext/ogg/gstoggmux.c:
1916         * ext/ogg/gstoggmux.h:
1917           Add header for oggmux. the c-file needs a doc blob still.
1918
1919 2008-02-01  Wim Taymans  <wim.taymans@collabora.co.uk>
1920
1921         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
1922
1923         * gst-libs/gst/rtp/gstrtpbuffer.c:
1924         (gst_rtp_buffer_set_extension_data):
1925         * gst-libs/gst/rtp/gstrtpbuffer.h:
1926         * tests/check/libs/rtp.c: (GST_START_TEST), (rtp_suite):
1927         Add gst_rtp_buffer_set_extension_data() 
1928         Add a unit test for this addition. Fixes #511478.
1929         API: GstRTPBuffer:gst_rtp_buffer_set_extension_data()
1930
1931 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
1932
1933         * configure.ac:
1934         Back to CVS
1935
1936 === release 0.10.17 ===
1937
1938 2008-01-30  Jan Schmidt <jan.schmidt@sun.com>
1939
1940         * configure.ac:
1941           releasing 0.10.17, "Peanut Butter and Jelly"
1942
1943 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
1944
1945         * gst-libs/gst/interfaces/mixeroptions.c:
1946         * gst-libs/gst/interfaces/mixertrack.c:
1947         Also remove the conditional registration of the signals
1948         that disappeared with the ABI change in 0.10.14
1949
1950 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
1951
1952         * gst-libs/gst/rtsp/gstrtspconnection.c:
1953         Revert patch to gstrtspconnection.c for brown paper bag
1954         release of -base. Re-opens: #511825
1955
1956 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
1957
1958         * gst-libs/gst/interfaces/mixeroptions.h:
1959         * gst-libs/gst/interfaces/mixertrack.h:
1960         Change the way these deprecated function pointers are removed
1961         so that the compiled ABI is unconditionally smaller. This 
1962         sets in stone an ABI break that actually occurred when the
1963         things were deprecated in 0.10.14, which seems to be the best
1964         fix as the only known users are oss-mixer and sunaudio-mixer in 
1965         gst-plugins-good.
1966         Fixes: #513018
1967
1968 2008-01-30  Tim-Philipp Müller  <tim at centricular dot net>
1969
1970         * win32/common/libgstpbutils.def:
1971           Export the two new _get_type() functions which are needed
1972           by the python bindings.
1973
1974 2008-01-29  Sebastian Dröge  <slomo@circular-chaos.org>
1975
1976         * gst-libs/gst/rtsp/gstrtspconnection.c: (add_date_header):
1977         Cast glong to time_t as time_t might have a different type on
1978         other platforms, like FreeBSD, and we get a compiler warning
1979         otherwise. Fixes bug #511825.
1980
1981 2008-01-29  Sebastian Dröge  <slomo@circular-chaos.org>
1982
1983         * gst-libs/gst/audio/gstaudiofilter.c:
1984         (gst_audio_filter_class_init):
1985         Initialize the GstRingerBuffer class to get it's debug category
1986         initialized. gst_ring_buffer_parse_caps() uses the ringbuffer debug
1987         category and otherwise we get some g_critical(). Fixes bug #512334.
1988
1989 2008-01-28  Jan Schmidt  <jan.schmidt@sun.com>
1990
1991         * configure.ac:
1992         Back to CVS
1993
1994 === release 0.10.16 ===
1995
1996 2008-01-28  Jan Schmidt <jan.schmidt@sun.com>
1997
1998         * configure.ac:
1999           releasing 0.10.16, "Scheduled Interruption"
2000
2001 2008-01-22  Wim Taymans  <wim.taymans@collabora.co.uk>
2002
2003         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
2004
2005         * gst-libs/gst/rtp/gstrtpbuffer.c:
2006         (gst_rtp_buffer_get_extension_data):
2007         Fix typos and wrong extension check. Fixes #511274.
2008
2009 2008-01-18  Jan Schmidt  <jan.schmidt@sun.com>
2010
2011         * po/sk.po:
2012         Oops - add new sk.po mentioned in the LINGUAS I just committed
2013
2014 2008-01-17  Jan Schmidt  <jan.schmidt@sun.com>
2015
2016         * po/LINGUAS:
2017         Add ca translation to the disted list.
2018
2019         * win32/vs6/libgstsdp.dsp:
2020         Convert line endings to CRLF
2021
2022 2008-01-17  Sebastien Moutte <sebastien@moutte.net>
2023
2024         * win32/MANIFEST:
2025         Add win32/vs6/libgstrtsp.dsp to MANIFEST
2026
2027 2008-01-14  Jan Schmidt  <jan.schmidt@sun.com>
2028
2029         * win32/common/libgstsdp.def:
2030         * win32/common/libgstvideo.def:
2031         Add new API declarations
2032
2033 2008-01-14  Jan Schmidt  <jan.schmidt@sun.com>
2034
2035         * ext/theora/gsttheoradec.h:
2036         * ext/theora/gsttheoraparse.h:
2037         * ext/theora/theoradec.c:
2038         * ext/theora/theoraparse.c:
2039         Take a 2nd stab at handling libtheora granulepos changes in the decoder
2040         and parser by inspecting the bitstream version of the incoming data.
2041
2042 2008-01-14  Sebastian Dröge  <slomo@circular-chaos.org>
2043
2044         * configure.ac:
2045         * pkgconfig/Makefile.am:
2046         * pkgconfig/gstreamer-audio-uninstalled.pc.in:
2047         * pkgconfig/gstreamer-audio.pc.in:
2048         * pkgconfig/gstreamer-cdda-uninstalled.pc.in:
2049         * pkgconfig/gstreamer-cdda.pc.in:
2050         * pkgconfig/gstreamer-fft-uninstalled.pc.in:
2051         * pkgconfig/gstreamer-fft.pc.in:
2052         * pkgconfig/gstreamer-floatcast-uninstalled.pc.in:
2053         * pkgconfig/gstreamer-floatcast.pc.in:
2054         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
2055         * pkgconfig/gstreamer-interfaces.pc.in:
2056         * pkgconfig/gstreamer-netbuffer-uninstalled.pc.in:
2057         * pkgconfig/gstreamer-netbuffer.pc.in:
2058         * pkgconfig/gstreamer-pbutils-uninstalled.pc.in:
2059         * pkgconfig/gstreamer-pbutils.pc.in:
2060         * pkgconfig/gstreamer-riff-uninstalled.pc.in:
2061         * pkgconfig/gstreamer-riff.pc.in:
2062         * pkgconfig/gstreamer-rtp-uninstalled.pc.in:
2063         * pkgconfig/gstreamer-rtp.pc.in:
2064         * pkgconfig/gstreamer-rtsp-uninstalled.pc.in:
2065         * pkgconfig/gstreamer-rtsp.pc.in:
2066         * pkgconfig/gstreamer-sdp-uninstalled.pc.in:
2067         * pkgconfig/gstreamer-sdp.pc.in:
2068         * pkgconfig/gstreamer-tag-uninstalled.pc.in:
2069         * pkgconfig/gstreamer-tag.pc.in:
2070         * pkgconfig/gstreamer-video-uninstalled.pc.in:
2071         * pkgconfig/gstreamer-video.pc.in:
2072         Provide one pkg-config file for every gst-plugins-base library.
2073         This makes linking to those libraries much more intuitive and
2074         provides standard pkg-config behaviour for them. Fixes bug #499697.
2075
2076 2008-01-13  David Schleef  <ds@schleef.org>
2077
2078         * gst/videoscale/vs_4tap.c:
2079           Fix valgrind error on 4tap scaling method.
2080
2081 2008-01-13  Sebastien Moutte  <sebastien@moutte.net>
2082
2083         * gst-libs/gst/sdp/gstsdpmessage.c: (is_multicast_address):
2084         Include Winsock2.h for VS6 and use a different way initialize
2085         hints structure so it can build with VS6.
2086         * win32/MANIFEST:
2087         * win32/vs6/libgstsdp.dsp:
2088         * win32/common/libgstsdp.def:
2089         Add new files for libgstsdp.
2090         * win32/vs6/grammar.dsp:
2091         Copy pbutils-enumtypes* from win32/common to pbutils sources folder.
2092         * win32/vs6/gst_plugins_base.dsw:
2093         * win32/vs6/libgstdecodebin.dsp:
2094         * win32/vs6/libgstdecodebin2.dsp:
2095         * win32/vs6/libgstplaybin.dsp:
2096         * win32/vs6/libgstvolume.dsp:
2097         Add new dependencies to the link list.
2098
2099 2008-01-13  Julien Moutte  <julien@fluendo.com>
2100
2101         * win32/common/config.h:
2102         * win32/common/gstrtsp-enumtypes.c: (gst_rtsp_result_get_type),
2103         (gst_rtsp_event_get_type), (gst_rtsp_family_get_type),
2104         (gst_rtsp_state_get_type), (gst_rtsp_version_get_type),
2105         (gst_rtsp_method_get_type), (gst_rtsp_auth_method_get_type),
2106         (gst_rtsp_header_field_get_type), (gst_rtsp_status_code_get_type):
2107         * win32/common/interfaces-enumtypes.c:
2108         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
2109         (gst_mixer_message_type_get_type), (gst_mixer_flags_get_type),
2110         (gst_mixer_track_flags_get_type),
2111         (gst_tuner_channel_flags_get_type):
2112         * win32/common/multichannel-enumtypes.c:
2113         (gst_audio_channel_position_get_type):
2114         * win32/common/pbutils-enumtypes.c:
2115         (gst_install_plugins_return_get_type):
2116         * win32/common/pbutils-enumtypes.h: Update/Add generated files
2117         in the win32 build directory.
2118
2119 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
2120
2121         * tests/check/Makefile.am:
2122         Fix CFLAGS to also pull in the gstcheck cflags from AM_CFLAGS.
2123
2124         * tests/check/elements/audiorate.c: (do_perfect_stream_test):
2125         * tests/check/elements/playbin.c:
2126         * tests/check/libs/mixer.c: (test_element_interface_supported),
2127         (gst_implements_interface_init):
2128         * tests/check/libs/rtp.c: (GST_START_TEST):
2129         Fix various assignment type mismatches.
2130
2131 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
2132
2133         * configure.ac:
2134         * gst-libs/gst/rtsp/Makefile.am:
2135         Add test to see if hstrerror is available or if we need libresolv
2136         (Solaris) for it, then use it in libgstrtsp.
2137
2138 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
2139
2140         * gst-libs/gst/tag/Makefile.am:
2141         Fix include path order
2142
2143 2008-01-11  Edward Hervey  <edward.hervey@collabora.co.uk>
2144
2145         * gst-libs/gst/pbutils/install-plugins.c:
2146         (gst_install_plugins_context_copy),
2147         (gst_install_plugins_context_get_type):
2148         * gst-libs/gst/pbutils/install-plugins.h:
2149         Add GBoxed GType for GstInstallPluginsContext, this eases the wrapping
2150         for bindings.
2151
2152 2008-01-11  Michael Smith <msmith@fluendo.com>
2153
2154         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
2155         (_theora_granule_frame), (_theora_granule_start_time),
2156         (theora_dec_sink_convert), (theora_dec_decode_buffer):
2157           Adapt for post-alpha meaning of granulepos, when we
2158           have a newer version of libtheora.
2159         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
2160         (theora_enc_get_ogg_packet_end_time), (theora_enc_sink_event),
2161         (theora_enc_is_discontinuous), (theora_enc_chain):
2162           Likewise.
2163         * tests/check/Makefile.am:
2164           Link libtheora into theoraenc test so we can check which version of
2165           libtheora we're testing against.
2166         * tests/check/pipelines/theoraenc.c: (check_libtheora),
2167         (check_buffer_granulepos),
2168         (check_buffer_granulepos_from_starttime), (GST_START_TEST),
2169         (theoraenc_suite):
2170           Adapt tests to check the values that are now defined for theora; make
2171           the tests backwards-adapt the passed values if we're running against an
2172           old libtheora.
2173           Fixes #497964
2174
2175 2008-01-10  Tim-Philipp Müller  <tim at centricular dot net>
2176
2177         * gst-libs/gst/audio/gstbaseaudiosink.c:
2178           (gst_base_audio_sink_class_init):
2179         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2180           (gst_base_audio_src_class_init):
2181           Ref audio clock class from a thread-safe context to make sure
2182           we're not bit by GObjects lack of thread-safety here (#349410),
2183            however unlikely that may be in practice.
2184
2185 2008-01-10  Sebastian Dröge  <slomo@circular-chaos.org>
2186
2187         * autogen.sh:
2188           Add -Wno-portability to the automake parameters to stop warnings
2189           about GNU make extensions being used. We require GNU make in almost
2190           every Makefile anyway.
2191           
2192         * configure.ac:
2193           Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o
2194           at the same time is required for per target flags.
2195
2196 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
2197
2198         * gst-libs/gst/tag/gsttagdemux.c: (gst_tag_demux_pull_start_tag):
2199           Post an error message if we can't pull as many bytes as we need
2200           for the tag. This makes sure the user gets to see a proper error
2201           message if a file with a partial ID3 tag is fed to decodebin, and
2202           not a 'no ID3 tag demuxer' error, which would be confusing
2203           (see #508138).
2204
2205 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
2206
2207         * gst-libs/gst/pbutils/descriptions.c: (formats):
2208           Add description strings for ID3, APE, and ICY tags.
2209
2210 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
2211
2212         * gst/playback/gstdecodebin.c: (try_to_link_1):
2213           Make sure we error out correctly if we can't activate one of
2214           the elements we've added.  Fixes #508138.
2215           
2216 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
2217
2218         Patch by: Bastien Nocera <hadess at hadess net>
2219
2220         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
2221           (check_if_volumes_are_the_same), (gst_alsa_mixer_set_volume):
2222           Use snd_mixer_selem_set_{playback|capture}_volume_all() if
2223           the volume is the same for all channels. This works around
2224           some problem in alsa that leaves us with inconsistent state
2225           for some reason (#486840).
2226
2227 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
2228
2229         Patch by: Jerone Young <jerone at gmail com>
2230
2231         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer):
2232           If there's no mixer track by the name of 'Master' or 'Front',
2233           check if there's one called 'PCM' before trying the generic
2234           fallback logic (fixes #506928, where we pick 'Mic' as master
2235           track for the AD1984 card in a Thinkpad T61/X61 laptop).
2236
2237 2008-01-07  Wim Taymans  <wim.taymans@collabora.co.uk>
2238
2239         * gst/playback/gstplay-enum.c:
2240         (register_gst_autoplug_select_result),
2241         (gst_autoplug_select_result_get_type), (register_gst_play_flags),
2242         (gst_play_flags_get_type):
2243         * gst/playback/gstplay-enum.h:
2244         Add enums for configuration flags.
2245
2246         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
2247         (init_group), (gst_play_bin_init), (gst_play_bin_set_property),
2248         (gst_play_bin_get_property), (no_more_pads_cb),
2249         (autoplug_select_cb), (gst_play_bin_change_state):
2250         Merge mode with flags.
2251         Add more property getters/setters, defaults and docs.
2252         Add properties to get number of audio/video/text streams.
2253         Create sink object in _init so that we can always rely on it being
2254         there.
2255
2256         * gst/playback/gstplaysink.c: (gst_play_sink_init),
2257         (gen_video_chain), (gen_audio_chain), (gen_vis_chain),
2258         (activate_vis), (gst_play_sink_reconfigure),
2259         (gst_play_sink_set_flags), (gst_play_sink_get_flags),
2260         (gst_play_sink_change_state):
2261         * gst/playback/gstplaysink.h:
2262         Use flags to configure the sink pipelines.
2263         Add tee before audio pipeline so that we can use it for visualisations.
2264         Start working on integrating visualisations.
2265         Remove mode, we can do everything with the flags now.
2266         Add method to configue the sink pipeline.
2267
2268 2008-01-06  Tim-Philipp Müller  <tim at centricular dot net>
2269
2270         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
2271           (check_buffer_timestamp), (check_buffer_duration):
2272           Turn these functions into macros so we can see right away
2273           where the failure occured.
2274
2275 2008-01-05  Julien Moutte  <julien@fluendo.com>
2276
2277         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Add
2278         debugging information to understand how X calculates the stride
2279         for XvImages.
2280
2281 2008-01-03  Sebastian Dröge  <slomo@circular-chaos.org>
2282
2283         * gst/volume/Makefile.am:
2284         * gst/volume/gstvolume.c: (volume_choose_func),
2285         (gst_volume_base_init), (gst_volume_class_init), (gst_volume_init),
2286         (volume_setup):
2287         * gst/volume/gstvolume.h:
2288         Use GstAudioFilter as base class for the volume element instead of
2289         plain GstBaseTransform.
2290
2291 2008-01-03  Sebastian Dröge  <slomo@circular-chaos.org>
2292
2293         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type):
2294         Don't set element details for the abstract GstAudioFilter class.
2295
2296 2008-01-02  Sebastian Dröge  <slomo@circular-chaos.org>
2297
2298         * gst-libs/gst/audio/gstaudiofilter.c:
2299         (gst_audio_filter_class_init), (gst_audio_filter_get_unit_size):
2300         Implement get_unit_size() vmethod of GstBaseTransform.
2301
2302 2008-01-01  Edward Hervey  <edward.hervey@collabora.co.uk>
2303
2304         * gst-libs/gst/pbutils/Makefile.am:
2305         * gst-libs/gst/pbutils/pbutils.h:
2306         Use glib-enum generator to have a proper enum GType for
2307         GST_TYPE_INSTALL_PLUGINS_RETURN so we can easily wrap it in bindings.
2308
2309 2007-12-31  David Schleef  <ds@schleef.org>
2310
2311         * tests/check/Makefile.am:
2312         * tests/check/pipelines/theoraenc.c:
2313           Reenable theoraenc test, which fails on the buildbot but
2314           not locally.
2315
2316 2007-12-31  David Schleef  <ds@schleef.org>
2317
2318         * docs/libs/.cvsignore:
2319         * docs/plugins/.cvsignore:
2320           Add *-undeclared.txt to fix buildbot.
2321
2322 2007-12-31  David Schleef  <ds@schleef.org>
2323
2324         * tests/check/Makefile.am:
2325           Second attempt at disabling theoraenc test long enough to
2326           get buildbot to compile -base.
2327
2328 2007-12-31  David Schleef  <ds@schleef.org>
2329
2330         * tests/check/pipelines/theoraenc.c:
2331           Disable theoraenc test long enough to get the buildbot to
2332           compile a recent -base.
2333
2334 2007-12-31  Wim Taymans  <wim.taymans@collabora.co.uk>
2335
2336         * tests/examples/seek/seek.c: (stop_cb):
2337         Make sure we reset the slider value to 0.0 without racing against a
2338         possible g_idle that sets it to something else.
2339
2340 2007-12-31  Thijs Vermeir  <thijsvermeir@gmail.com>
2341
2342         * sys/ximage/ximagesink.c:
2343         fix typo
2344
2345 2007-12-30  Wim Taymans  <wim.taymans@collabora.co.uk>
2346
2347         * gst-libs/gst/rtsp/gstrtspdefs.c: (rtsp_init_status):
2348         * gst-libs/gst/rtsp/gstrtspdefs.h:
2349         Add Location header so that we can start implementing redirects.
2350         See #506025.
2351
2352 2007-12-29  Thijs Vermeir  <thijsvermeir@gmail.com>
2353
2354         * gst/subparse/gstssaparse.c:
2355         combine if's
2356
2357 2007-12-29  Thijs Vermeir  <thijsvermeir@gmail.com>
2358
2359         * gst/subparse/gstssaparse.c:
2360         remove duplicate log message
2361
2362 2007-12-29  Sebastian Dröge  <slomo@circular-chaos.org>
2363
2364         * ext/libvisual/visual.c: (gst_visual_chain):
2365         Fix 'xyz may be used uninitialized' compiler warnings caused
2366         by broken g_assert_not_reached() macro in GLib-2.15.x and don't
2367         abort() in any case but properly report the error.
2368
2369 2007-12-28  Wim Taymans  <wim.taymans@collabora.co.uk>
2370
2371         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
2372         (gst_play_bin_finalize), (gst_play_bin_set_uri),
2373         (gst_play_bin_set_suburi), (gst_play_bin_set_property),
2374         (gst_play_bin_get_property), (pad_removed_cb), (drained_cb),
2375         (autoplug_select_cb), (activate_group), (deactivate_group),
2376         (setup_next_source), (save_current_group),
2377         (gst_play_bin_change_state):
2378         Code cleanups.
2379         Remove next-uri, we can use the uri property just fine.
2380         Fix some crasher.
2381         Unref uridecodebin when switching.
2382         Fix going to READY.
2383
2384         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
2385         (gst_play_sink_init), (gst_play_sink_dispose),
2386         (gst_play_sink_finalize), (gst_play_sink_vis_unblocked),
2387         (gst_play_sink_vis_blocked), (gst_play_sink_set_video_sink),
2388         (gst_play_sink_set_audio_sink), (gst_play_sink_set_vis_plugin),
2389         (gst_play_sink_set_property), (gst_play_sink_get_property),
2390         (gen_video_chain), (gen_text_element), (gen_audio_chain),
2391         (gen_vis_element), (gst_play_sink_get_mode),
2392         (gst_play_sink_set_mode), (gst_play_sink_set_flags),
2393         (gst_play_sink_get_flags), (gst_play_sink_request_pad),
2394         (gst_play_sink_release_pad), (gst_play_sink_send_event_to_sink),
2395         (gst_play_sink_change_state):
2396         * gst/playback/gstplaysink.h:
2397         Add some locking to make things threadsafe.
2398
2399         * gst/playback/test7.c: (about_to_finish_cb):
2400         Fix test.
2401
2402 2007-12-22  Tim-Philipp Müller  <tim at centricular dot net>
2403
2404         * gst/videoscale/gstvideoscale.c: (gst_video_scale_set_property),
2405           (gst_video_scale_get_property), (gst_video_scale_transform_caps),
2406           (gst_video_scale_transform):
2407           Don't claim to be able to handle/transform caps that can't really
2408           be handled by the currently selected scaling method (here: RGB or
2409           packed YUV with 4-tap method). Also add locking to method property.
2410
2411         * tests/check/pipelines/simple-launch-lines.c: (setup_pipeline),
2412           (test_basetransform_based):
2413           Some test pipelines for the above (not entirely valgrind clean yet
2414           apparently).
2415
2416 2007-12-21  David Schleef  <ds@schleef.org>
2417
2418         * gst-libs/gst/video/video.c:
2419         * gst-libs/gst/video/video.h:
2420           Add additional RGBA and RGB-24 video formats.
2421
2422 2007-12-21  Tim-Philipp Müller  <tim at centricular dot net>
2423
2424         * tests/check/elements/playbin.c: (test_sink_usage_video_only_stream),
2425           (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
2426           (test_suburi_error_wrongproto), (test_missing_primary_decoder):
2427         * tests/check/libs/cddabasesrc.c: (GST_START_TEST), (GST_START_TEST),
2428           (cddabasesrc_suite):
2429           Don't use GST_PLUGIN_DEFINE_STATIC, it's not portable and will be
2430           deprecated in the future (see #498924).
2431
2432 2007-12-21  Tim-Philipp Müller  <tim at centricular dot net>
2433
2434         * gst/playback/gststreamselector.c: (gst_selector_pad_event):
2435           Don't leak event.
2436
2437 2007-12-20  Thijs Vermeir <thijsvermeir@gmail.com>
2438
2439         * gst-libs/gst/riff/riff-read.c:
2440         Use GST_ROUND_UP_2 macro
2441
2442 2007-12-20  Tim-Philipp Müller  <tim at centricular dot net>
2443
2444         * gst/playback/.cvsignore:
2445           Ignore more.
2446
2447 2007-12-20  Tim-Philipp Müller  <tim at centricular dot net>
2448
2449         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init):
2450         * gst/playback/gstplaybasebin.c: (set_subtitles_visible),
2451           (set_active_source):
2452         * gst/playback/gstplaybasebin.h:
2453         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
2454           (setup_sinks), (playbin_set_subtitles_visible):
2455           Make switching off of subtitles work. To avoid all kind of
2456           problems with unlinking of the subtitle input, we just keep
2457           the subtitle inputs linked as they are and tell textoverlay
2458           not to render them. Fixes #373011.
2459           Other subtitle switching issues (esp. when there are both
2460           external and in-stream subtitles) remain. They'll be solved
2461           in playbin2.
2462
2463 2007-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
2464
2465         * gst/playback/gststreamselector.c: (gst_selector_pad_init):
2466         Init the pad segment too.
2467
2468 2007-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
2469
2470         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
2471         (gst_audioringbuffer_open_device),
2472         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
2473         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
2474         (gst_audioringbuffer_pause), (gst_audioringbuffer_stop),
2475         (gst_audio_sink_create_ringbuffer):
2476         Improve debug output.
2477
2478         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_start),
2479         (gst_ring_buffer_pause), (gst_ring_buffer_delay):
2480         Prevent some functions from doing things and failing when the
2481         ringbuffer is not yet acquired.
2482
2483 2007-12-18  Sebastian Dröge  <slomo@circular-chaos.org>
2484
2485         * gst-libs/gst/interfaces/interfaces.h:
2486           Also remove interfaces.h from CVS as it is not needed anymore.
2487
2488 2007-12-18  Sebastian Dröge  <slomo@circular-chaos.org>
2489
2490         * gst-libs/gst/interfaces/Makefile.am:
2491           interfaces.h is not used anymore so remove it from the build
2492           process.
2493
2494 2007-12-17  David Schleef  <ds@schleef.org>
2495
2496         * gst/videotestsrc/gstvideotestsrc.c:
2497         * gst/videotestsrc/gstvideotestsrc.h:
2498           Add a "blink" pattern.  Turn on the pain.  Apologies.  It's useful
2499           for testing vertical refresh synchronization.
2500
2501 2007-12-17  David Schleef  <ds@schleef.org>
2502
2503         * docs/libs/gst-plugins-base-libs-sections.txt:
2504         * gst-libs/gst/video/video.c:
2505         * gst-libs/gst/video/video.h:
2506           Add new GstVideFormat enum and write a bunch of helper functions
2507           based around it.
2508
2509 2007-12-17  Tim-Philipp Müller  <tim at centricular dot net>
2510
2511         * Makefile.am:
2512           Use new common/win32.mak.
2513
2514 2007-12-17  Wim Taymans  <wim.taymans@collabora.co.uk>
2515
2516         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2517         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
2518         Add debug info.
2519         When going from PLAYING to PAUSED, pause the ringbuffer before calling
2520         the parent state change function, just like the audiosink, because the
2521         parent waits for the element to finish its processing before completing
2522         the state change. This makes going to PAUSED a lot snappier.
2523         When going from READY to PAUSED, don't allow the ringbuffer to start
2524         yet.
2525
2526 2007-12-17  Edward Hervey  <edward.hervey@collabora.co.uk>
2527
2528         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
2529         Yet another fix for broken software that produce files with an empty
2530         blockalign field. Instead of completely failing, make a second attempt
2531         at guessing the width/depth by looking at strf->size.
2532
2533 2007-12-16  Tim-Philipp Müller  <tim at centricular dot net>
2534
2535         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_do_seek),
2536           (gst_cdda_base_src_handle_track_seek), (gst_cdda_base_src_create):
2537         * gst-libs/gst/pbutils/install-plugins.c:
2538           (gst_install_plugins_spawn_child), (gst_install_plugins_supported):
2539         * gst-libs/gst/pbutils/missing-plugins.c:
2540           (gst_missing_plugin_message_get_installer_detail),
2541           (gst_missing_encoder_installer_detail_new):
2542         * gst-libs/gst/rtsp/gstrtspconnection.c: (gst_rtsp_connection_send):
2543         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
2544           Turn a few g_assert_not_reached() into g_return_val_if_reached() to
2545           avoid compiler warnings (#503930).
2546
2547 2007-12-17  Edward Hervey  <edward.hervey@collabora.co.uk>
2548
2549         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
2550         Be apologetic of software that use the 'jpeg' instead of 'JPEG' FOURCC
2551         for jpeg video streams.
2552         Add the 'avc1'/'AVC1' fourcc mapping for h264, same software-comment as
2553         for the above modification.
2554
2555 2007-12-15  Tim-Philipp Müller  <tim at centricular dot net>
2556
2557         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_expose),
2558           (gst_x_overlay_handle_events):
2559           More guards (we don't want klass to end up being NULL).
2560
2561 2007-12-14  Sebastian Dröge  <slomo@circular-chaos.org>
2562
2563         * configure.ac:
2564         * gst/volume/gstvolume.c: (gst_volume_init):
2565           Use new gst_base_transform_set_gap_aware() function as volume
2566           correctly handles GST_BUFFER_FLAG_GAP. Require core 0.10.15.1 
2567           for this.
2568
2569 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
2570
2571         * tests/examples/seek/seek.c: (msg_segment_done), (main):
2572         Don't go to READY on EOS as this avoids testing of seeking and
2573         restarting after EOS, use the stop button when you want to READY.
2574         Don't try to do a flushing seek in segment-done, it does not make
2575         sense to use this for gapless playback and is not needed.
2576
2577 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
2578
2579         * gst/playback/gstqueue2.c: (gst_queue_init), (gst_queue_finalize),
2580         (reset_rate_timer), (update_in_rates), (update_out_rates),
2581         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
2582         (gst_queue_chain), (gst_queue_loop):
2583         Use separate timers for input and output rates.
2584         Pause measuring the output rate when we block for more data.
2585         See #503262.
2586
2587 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
2588
2589         * gst/playback/gstqueue2.c: (gst_queue_chain):
2590         Pause the timer to measure the input rate when we block because the
2591         queue is filled. See #503262.
2592
2593 2007-12-13  Wim Taymans  <wim.taymans@collabora.co.uk>
2594
2595         Patch by: Peter Kjellerstedt  <pkj at axis com>
2596
2597         * gst-libs/gst/rtsp/gstrtspconnection.c:
2598         (gst_rtsp_connection_free):
2599         Close control sockets. Fixes #503440.
2600
2601 2007-12-13  Wim Taymans  <wim.taymans@collabora.co.uk>
2602
2603         * gst/playback/gstdecodebin2.c: (analyze_new_pad), (connect_pad):
2604         Expose the right pad in the right place with the right element.
2605
2606 2007-12-13  Tim-Philipp Müller  <tim at centricular dot net>
2607
2608         * gst-libs/gst/pbutils/descriptions.c: (formats):
2609           Add description for 'private' dts caps (who come up with that name?).
2610
2611 2007-12-13  Tim-Philipp Müller  <tim at centricular dot net>
2612
2613         * Makefile.am:
2614           Add check-exports target and run it with 'make check'.
2615
2616         * configure.ac:
2617           Be stricter about what we export in our libraries: change regexp so that
2618           we only export _gst_foo(), but not __gst_foo().
2619
2620         * gst-libs/gst/cdda/base64.h: (rfc822_binary):
2621         * gst-libs/gst/cdda/sha1.h: (sha_init), (sha_update), (sha_final):
2622           Change internal functions to __gst_foo so they dont' get exported.
2623
2624         * win32/common/libgstaudio.def:
2625           Add missing symbols.
2626
2627 2007-12-11  David Schleef  <ds@schleef.org>
2628
2629         * ChangeLog: remove conflict markers
2630
2631 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
2632
2633         * ext/gnomevfs/Makefile.am:
2634         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_unicodify):
2635           Use gst_tag_freeform_string_to_utf8() here, which also takes
2636           into account any character sets specified by the user via
2637           environment variables.
2638
2639 2007-12-10  Wim Taymans  <wim.taymans@gmail.com>
2640
2641         * gst/audioconvert/Makefile.am:
2642         Also link to libm.
2643
2644 2007-12-10  Wim Taymans  <wim.taymans@gmail.com>
2645
2646         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
2647         No need for floating point operations here. avoids having to link
2648         against the math library too.
2649
2650 2007-12-10  Tim-Philipp Müller  <tim at centricular dot net>
2651
2652         * gst-libs/gst/pbutils/descriptions.c: (formats),
2653           (format_info_get_desc):
2654         * tests/check/libs/pbutils.c: (GST_START_TEST), (caps_strings),
2655           (GST_START_TEST):
2656           Add one or two missing formats.  Generate ADPCM description
2657           dynamically depending on layout/format.
2658
2659 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
2660
2661         * configure.ac:
2662           Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
2663
2664 2007-12-08  Tim-Philipp Müller  <tim at centricular dot net>
2665
2666         Patch by: Robin Stocker <robin dot stocker at gmx dot ch>
2667
2668         * gst/subparse/gstsubparse.c: (gst_sub_parse_data_format_autodetect):
2669           Some .srt files start with chunk number 0 and not chunk number 1,
2670           recognise and accept those as well (fixes #502497).
2671
2672         * tests/check/elements/subparse.c: (srt_input), (srt_input0),
2673           (test_src):
2674           Add unit test for the above.
2675
2676 2007-12-06  Wim Taymans  <wim.taymans@gmail.com>
2677
2678         * gst/playback/gstplay-enum.c:
2679         (register_gst_autoplug_select_result),
2680         (gst_autoplug_select_result_get_type):
2681         * gst/playback/gstplay-enum.h:
2682         Add missing files.
2683
2684 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
2685
2686         * gst/playback/Makefile.am:
2687         Group decodebin2 and uridecodebin into the same plugin so that they
2688         can share the GEnumType.
2689
2690         * gst/playback/gstdecodebin2.c: (_gst_array_accumulator),
2691         (_gst_select_accumulator), (gst_decode_bin_class_init),
2692         (gst_decode_bin_init), (gst_decode_bin_autoplug_sort),
2693         (gst_decode_bin_autoplug_select), (gst_decode_bin_autoplug_add),
2694         (analyze_new_pad), (connect_pad), (gst_decode_bin_plugin_init):
2695         Add signal to sort factories instead of the more awkward autoplug-select
2696         signal.
2697         Modify autoplug_select so that we can try, skip or expose the
2698         autopluggin of an element on a pad.
2699
2700         * gst/playback/gstfactorylists.c: (compare_ranks),
2701         (decoders_filter), (sinks_filter), (gst_factory_list_is_type),
2702         (element_filter), (gst_factory_list_get_elements),
2703         (gst_factory_list_debug), (gst_factory_list_filter):
2704         * gst/playback/gstfactorylists.h:
2705         Simplify the API, allow getting elements based on mask.
2706
2707         * gst/playback/gstplay-marshal.list:
2708         Add some more marshallers.
2709
2710         * gst/playback/gstplaybin2.c: (init_group), (gst_play_bin_init),
2711         (gst_play_bin_finalize), (pad_removed_cb), (autoplug_factories_cb),
2712         (autoplug_select_cb), (activate_group):
2713         Add support for managing non-raw sinks by providing a custom element and
2714         sink list to decodebin2.
2715         Try to plug non-raw sinks when decodebin2 using autoplug-select of
2716         decodebin2.
2717
2718         * gst/playback/gstplaysink.c: (gen_video_chain), (gen_audio_chain),
2719         (gst_play_sink_set_mode), (gst_play_sink_request_pad):
2720         * gst/playback/gstplaysink.h:
2721         Add support for raw and non-raw sinks. 
2722         Add support to force sinks selected by playbin2.
2723         Don't plug raw converters for non-raw sinks.
2724
2725         * gst/playback/gsturidecodebin.c: (_gst_array_accumulator),
2726         (_gst_select_accumulator), (gst_uri_decode_bin_class_init),
2727         (proxy_autoplug_select_signal), (gst_uri_decode_bin_plugin_init),
2728         (plugin_init):
2729         Use right accumulators.
2730         Proxy new signal.
2731
2732 2007-12-03  Wim Taymans  <wim.taymans@gmail.com>
2733
2734         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
2735         Use runnning time as the base time instead of the timestamp.
2736         Spotted by Saur on IRC.
2737
2738 2007-12-03  Edward Hervey  <bilboed@bilboed.com>
2739
2740         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
2741         Add 'WVC1' codec mapping for Windows Media VC-1 video codec.
2742
2743 2007-12-03  Wim Taymans  <wim.taymans@gmail.com>
2744
2745         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_bisect_forward_serialno),
2746         (gst_ogg_demux_read_chain):
2747         If we find a new serial number but it does not contain a BOS page, make
2748         sure we initialize the chain to NULL because else we will try to scan it
2749         and crash. Fixes #500763
2750
2751 2007-11-30  Wim Taymans  <wim.taymans@gmail.com>
2752
2753         * gst/playback/Makefile.am:
2754         * gst/playback/gstfactorylists.c: (compare_ranks), (print_feature),
2755         (get_feature_array), (decoders_filter), (sinks_filter),
2756         (gst_factory_list_get_decoders), (gst_factory_list_get_sinks),
2757         (gst_factory_list_filter):
2758         * gst/playback/gstfactorylists.h:
2759         Refactor some common code to filter factories and check caps compat.
2760
2761         * gst/playback/gstdecodebin.c:
2762         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
2763         (gst_decode_bin_init), (gst_decode_bin_dispose),
2764         (gst_decode_bin_autoplug_continue),
2765         (gst_decode_bin_autoplug_factories),
2766         (gst_decode_bin_autoplug_select), (analyze_new_pad),
2767         (find_compatibles):
2768         * gst/playback/gstplaybin.c:
2769         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
2770         (gst_play_bin_init), (gst_play_bin_finalize),
2771         (autoplug_factories_cb), (activate_group):
2772         * gst/playback/gstqueue2.c:
2773         * gst/playback/gsturidecodebin.c: (proxy_unknown_type_signal),
2774         (proxy_autoplug_continue_signal),
2775         (proxy_autoplug_factories_signal), (proxy_autoplug_select_signal),
2776         (proxy_drained_signal):
2777         Add some more debug info and use factor filtering code.
2778
2779 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
2780
2781         * gst/audiotestsrc/gstaudiotestsrc.c:
2782         * gst/volume/gstvolume.c:
2783         * gst/volume/gstvolume.h:
2784           Add GAP-flag support.
2785
2786 2007-11-24  Julien MOUTTE  <julien@moutte.net>
2787
2788         * tests/examples/seek/seek.c: (main): Increase the range of the
2789         rate selector as I would like to test QOS behavior at higher
2790         forward and reverse playback speed like say 64x.
2791
2792 2007-11-23  Sebastian Dröge  <slomo@circular-chaos.org>
2793
2794         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
2795         (audioresample_query), (audioresample_query_type),
2796         (gst_audioresample_set_property):
2797         Implement latency query.
2798
2799 2007-11-21  Wim Taymans  <wim.taymans@gmail.com>
2800
2801         * gst-libs/gst/audio/gstbaseaudiosink.c:
2802         (gst_base_audio_sink_drain):
2803         Our EOS time contains the base_time, _wait_eos() expects a running_time
2804         so we have to subtract the base_time again before calling the function.
2805         This fixes an EOS regression where the base_time was added twice and EOS
2806         took longer and longer in certain situations.
2807         Fixes #498767.
2808
2809 2007-11-21  Wim Taymans  <wim.taymans@gmail.com>
2810
2811         * docs/libs/gst-plugins-base-libs-sections.txt:
2812         * gst-libs/gst/audio/gstbaseaudiosink.c: (slave_method_get_type),
2813         (gst_base_audio_sink_set_provide_clock),
2814         (gst_base_audio_sink_get_provide_clock),
2815         (gst_base_audio_sink_set_slave_method),
2816         (gst_base_audio_sink_get_slave_method),
2817         (gst_base_audio_sink_set_property),
2818         (gst_base_audio_sink_get_property), (gst_base_audio_sink_drain),
2819         (gst_base_audio_sink_none_slaving),
2820         (gst_base_audio_sink_handle_slaving):
2821         * gst-libs/gst/audio/gstbaseaudiosink.h:
2822         Expose methods for some object properties so that subclasses can more
2823         easily configure them.
2824         Added slave method none, that completely disables slaving to the
2825         internal clock.
2826         API: gst_base_audio_sink_set_provide_clock()
2827         API: gst_base_audio_sink_get_provide_clock()
2828         API: gst_base_audio_sink_set_slave_method()
2829         API: gst_base_audio_sink_get_slave_method()
2830
2831         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2832         (gst_base_audio_src_set_provide_clock),
2833         (gst_base_audio_src_get_provide_clock),
2834         (gst_base_audio_src_set_property),
2835         (gst_base_audio_src_get_property), (gst_base_audio_src_create):
2836         * gst-libs/gst/audio/gstbaseaudiosrc.h:
2837         Expose methods for some object properties so that subclasses can more
2838         easily configure them.
2839         API: gst_base_audio_src_set_provide_clock()
2840         API: gst_base_audio_src_get_provide_clock()
2841
2842 2007-11-20  Wim Taymans  <wim.taymans@gmail.com>
2843
2844         Patch by: Joe Peterson <lavajoe at gentoo dot org>
2845
2846         * gst-libs/gst/sdp/gstsdpmessage.c:
2847         Fix compilation on FreeBSD (Gentoo). Fixes #498228.
2848
2849 2007-11-19  Sebastian Dröge  <slomo@circular-chaos.org>
2850
2851         * tests/check/libs/fft.c: (GST_START_TEST):
2852         Fix scaling to really have dB instead of something else.
2853
2854 2007-11-19  Julien MOUTTE  <julien@moutte.net>
2855
2856         * tests/examples/seek/seek.c: (main): There's a nice macro to check
2857         GTK version, use it.
2858
2859 2007-11-19  Julien MOUTTE  <julien@moutte.net>
2860
2861         * tests/examples/seek/seek.c: (main): Try to support stable version
2862         of GTK.
2863
2864 2007-11-17  Stefan Kost  <ensonic@users.sf.net>
2865
2866         * gst/playback/README:
2867         * gst/playback/test7.c:
2868           Fix the build + little README update.
2869
2870 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
2871
2872         * tests/examples/seek/seek.c: (make_playerbin2_pipeline), (main):
2873         Add playbin2 seek pipeline.
2874
2875 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
2876
2877         * gst/playback/Makefile.am:
2878         * gst/playback/gstplayback.c: (plugin_init):
2879         * gst/playback/test7.c: (update_scale), (warning_cb), (error_cb),
2880         (eos_cb), (about_to_finish_cb), (main):
2881         Add playbin2.
2882         Added gapless playback example.
2883
2884         * gst/playback/gstplaybasebin.c:
2885         * gst/playback/gstplaybasebin.h:
2886         * gst/playback/gstplaybin.c: (gst_play_bin_plugin_init):
2887         * gst/playback/gstqueue2.c:
2888         * gst/playback/test.c:
2889         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init),
2890         (pad_removed_cb):
2891         * gst/playback/gststreaminfo.h:
2892         Change email.
2893
2894         * gst/playback/gstplaybin2.c: (gst_play_bin_get_type),
2895         (gst_play_bin_class_init), (init_group), (gst_play_bin_init),
2896         (gst_play_bin_dispose), (gst_play_bin_set_uri),
2897         (gst_play_bin_set_suburi), (gst_play_bin_set_property),
2898         (gst_play_bin_get_property), (gst_play_bin_handle_message),
2899         (pad_added_cb), (pad_removed_cb), (no_more_pads_cb), (perform_eos),
2900         (drained_cb), (unlink_group), (activate_group),
2901         (setup_next_source), (gst_play_bin_change_state),
2902         (gst_play_bin2_plugin_init):
2903         Added raw first version of playbin2. Does chained oggs and gapless
2904         playback fine. No support for raw sinks yet. No visualisations or
2905         subtitles yet.
2906
2907         * gst/playback/gstplaysink.c: (gst_play_sink_get_type),
2908         (gst_play_sink_class_init), (gst_play_sink_init),
2909         (gst_play_sink_dispose), (gst_play_sink_vis_unblocked),
2910         (gst_play_sink_vis_blocked), (gst_play_sink_set_video_sink),
2911         (gst_play_sink_set_audio_sink), (gst_play_sink_set_vis_plugin),
2912         (gst_play_sink_set_property), (gst_play_sink_get_property),
2913         (post_missing_element_message), (free_chain), (add_chain),
2914         (activate_chain), (gen_video_chain), (gen_text_element),
2915         (gen_audio_chain), (gen_vis_element), (gst_play_sink_get_mode),
2916         (gst_play_sink_set_mode), (gst_play_sink_request_pad),
2917         (gst_play_sink_release_pad), (gst_play_sink_send_event_to_sink),
2918         (gst_play_sink_send_event), (gst_play_sink_change_state):
2919         * gst/playback/gstplaysink.h:
2920         Added Element that abstracts the sinks and their pipelines for playbin2.
2921
2922 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
2923
2924         * gst/playback/gststreamselector.c: (gst_selector_pad_get_type),
2925         (gst_selector_pad_class_init), (gst_selector_pad_init),
2926         (gst_selector_pad_finalize), (gst_selector_pad_reset),
2927         (gst_selector_pad_get_linked_pads), (gst_selector_pad_event),
2928         (gst_selector_pad_getcaps), (gst_selector_pad_bufferalloc),
2929         (gst_selector_pad_chain), (gst_stream_selector_get_type),
2930         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
2931         (gst_stream_selector_init), (gst_stream_selector_set_property),
2932         (gst_stream_selector_get_linked_pad),
2933         (gst_stream_selector_getcaps),
2934         (gst_stream_selector_is_active_sinkpad),
2935         (gst_stream_selector_activate_sinkpad),
2936         (gst_stream_selector_get_linked_pads),
2937         (gst_stream_selector_request_new_pad),
2938         (gst_stream_selector_release_pad):
2939         * gst/playback/gststreamselector.h:
2940         Improve streamselector, make it select and unselect the current pad more
2941         intelligently. 
2942         Subclass GstPad for the sinkpads of the selector.
2943         Handle segments more correctly.
2944         Fix caps negotiation.
2945         Implement release_pad.
2946
2947 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
2948
2949         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
2950         (gst_decode_group_check_if_drained), (source_pad_event_probe),
2951         (remove_fakesink):
2952         Add drained signal fired when decodebin finishes decoding the data.
2953         Remove deprecated STATE_DIRTY message.
2954
2955         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init),
2956         (unknown_type_cb), (new_decoded_pad_cb), (pad_removed_cb),
2957         (analyse_source), (proxy_drained_signal), (make_decoder),
2958         (source_new_pad), (value_list_append_structure_list),
2959         (handle_redirect_message), (handle_message):
2960         Proxy the new drained signal.
2961         Handle pad removed from decodebin.
2962         Handle redirect messages by sorting multiple redirections based on the
2963         connection speed.
2964
2965 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
2966
2967         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
2968
2969         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
2970         Fix leaking headers. Fixes #496761.
2971
2972 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
2973
2974         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
2975
2976         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
2977         (gst_ximagesink_change_state):
2978         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
2979         Don't leak the PAR on errors. Fixes #496731.
2980
2981 2007-11-16  Tim-Philipp Müller  <tim at centricular dot net>
2982
2983         * gst-libs/gst/tag/gstid3tag.c: (user_tag_matches),
2984           (gst_tag_from_id3_user_tag):
2985           Add mapping for audio cd discid tags, so we can extract
2986           them from tags as well (see #347848). Also compare identifiers
2987           in ID3v2 TXXX frames in a case-insensitive way to increase
2988           compatibility when reading tags (discid vs. DiscID vs. DiscId).
2989
2990 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
2991
2992         * gst-plugins-base.doap:
2993         Oops, fix the release name.
2994
2995 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
2996
2997         * gst-plugins-base.doap:
2998         Add 0.10.15 release
2999
3000 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
3001
3002         * configure.ac:
3003         Back to CVS
3004
3005 === release 0.10.15 ===
3006
3007 2007-11-15  Jan Schmidt <jan.schmidt@sun.com>
3008
3009         * configure.ac:
3010           releasing 0.10.15, "No need to argue"
3011
3012 2007-11-15  Jan Schmidt  <jan.schmidt@sun.com>
3013
3014         * win32/vs6/libgstfft.dsp:
3015         Convert line endings to DOS.
3016
3017 2007-11-15  Sebastien Moutte <sebastien@moutte.net>
3018
3019         * win32/vs6/gst_plugins_base.dsw:
3020         * win32/vs6/libgstfft.dsp:
3021         * win32/MANIFEST:
3022         Add a project file for fft plugin and remove socket
3023         based plugin which don't build from the workspace.
3024         * win32/vs6/libgstaudio.dsp:
3025         * win32/vs6/libgstrtp.dsp:
3026         * win32/vs6/libgsttag.dsp:
3027         Convert line endings back to DOS.
3028         Fixes #496724
3029
3030 2007-11-14  Jan Schmidt  <jan.schmidt@sun.com>
3031
3032         * win32/vs6/libgstinterfaces.dsp:
3033         * win32/vs6/libgstrtsp.dsp:
3034         Convert line endings back to DOS
3035
3036 2007-11-14  Jan Schmidt  <jan.schmidt@sun.com>
3037
3038         * gst-libs/gst/fft/kiss_fft_f32.h:
3039         * gst-libs/gst/fft/kiss_fft_f64.h:
3040         * gst-libs/gst/fft/kiss_fft_s16.h:
3041         * gst-libs/gst/fft/kiss_fft_s32.h:
3042         Don't include malloc.h which doesn't exist on Mac OSX.
3043         Instead, pull in glib.h and use g_malloc/g_free for 
3044         consistency. Fixes: #496548
3045
3046 2007-11-09  Stefan Kost  <ensonic@users.sf.net>
3047
3048         * gst/playback/gstdecodebin2.c:
3049           Dont leak ghostpad. Fixes #475451.
3050
3051 2007-11-09  Wim Taymans  <wim.taymans@gmail.com>
3052
3053         * docs/design/design-decodebin.txt:
3054         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
3055         Update some more docs and comments.
3056
3057 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
3058
3059         Patch by: Sebastien Moutte  <sebastien moutte net>
3060
3061         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_ntp_to_unix),
3062           (gst_rtcp_unix_to_ntp):
3063         * gst-libs/gst/rtp/gstrtppayloads.c: (gst_rtp_payload_info_for_name):
3064           Fix some C99-isms and and a missing function that some versions of
3065           MSVC don't like too much (#494346).
3066
3067         * win32/vs6/gst_plugins_base.dsw:
3068         * win32/vs6/libgstaudio.dsp:
3069         * win32/vs6/libgstrtp.dsp:
3070         * win32/vs6/libgsttag.dsp:
3071           Update vs6 projects files (#494346).
3072
3073 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
3074
3075         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
3076
3077         * win32/common/libgstaudio.def:
3078         * win32/common/libgstcdda.def:
3079         * win32/common/libgstinterfaces.def:
3080         * win32/common/libgstnetbuffer.def:
3081         * win32/common/libgstpbutils.def:
3082         * win32/common/libgstrtp.def:
3083         * win32/common/libgstrtsp.def:
3084         * win32/common/libgsttag.def:
3085         * win32/common/libgstvideo.def:
3086           More missing symbols to export (fixes #493986).
3087
3088 2007-11-06  Sebastian Dröge  <slomo@circular-chaos.org>
3089
3090         * docs/libs/gst-plugins-base-libs-sections.txt:
3091         * gst-libs/gst/fft/gstfftf32.c:
3092         * gst-libs/gst/fft/gstfftf32.h:
3093         * gst-libs/gst/fft/gstfftf64.c:
3094         * gst-libs/gst/fft/gstfftf64.h:
3095         * gst-libs/gst/fft/gstffts16.c:
3096         * gst-libs/gst/fft/gstffts16.h:
3097         * gst-libs/gst/fft/gstffts32.c:
3098         * gst-libs/gst/fft/gstffts32.h:
3099         * tests/check/libs/fft.c: (GST_START_TEST):
3100         Remove the magnitude and phase calculation functions as these have
3101         very special use cases and can't even be used for the spectrum
3102         element. Also adjust the docs to mention some properties of the used
3103         FFT implemention, i.e. how the values are scaled. Fixes #492098.
3104
3105 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
3106
3107         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
3108           (finish_source):
3109           Avoid crash when there are external subtitles (fixes #491722).
3110
3111 2007-11-03  Tim-Philipp Müller  <tim at centricular dot net>
3112
3113         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
3114         * ext/alsa/gstalsasrc.c: (gst_alsasrc_open):
3115           'Could not open resource for writing' is not an acceptable
3116           error message when we can't open the audio device (see #492334),
3117           even less so when we're trying to open it to record something.
3118
3119 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
3120
3121         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
3122
3123         * win32/common/libgstrtp.def:
3124           Add some more missing symbols (#492813).
3125
3126 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
3127
3128         Patch by: Thijs Vermeir <thijsvermeir@gmail.com>
3129
3130         * tests/check/elements/audioconvert.c: (verify_convert):
3131           Add check to make sure that the out caps have a channel layout
3132           set on them where they should have one.
3133
3134 2007-11-01  Tim-Philipp Müller  <tim at centricular dot net>
3135
3136         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
3137
3138         * gst-libs/gst/fft/kiss_fft_s16.h: (KISS_FFT_S16_MALLOC):
3139         * gst-libs/gst/fft/kiss_fft_s32.h: (KISS_FFT_S32_MALLOC):
3140           Include our own _stdint.h instead of sys/types.h, makes MingW happy
3141           (#492306).
3142
3143         * gst-libs/gst/rtsp/gstrtspconnection.c: (gst_rtsp_connection_create):
3144           Use _pipe directly, GLib doesn't have a pipe() macro any longer
3145           (it disappeared in GLib 2.14.0) (#492306).
3146
3147         * gst-libs/gst/sdp/Makefile.am:
3148         * gst-libs/gst/sdp/gstsdpmessage.c:
3149           Fix includes and LIBS for win32/Mingw (#492306).
3150
3151         * tests/examples/dynamic/addstream.c (pause_play_stream):
3152           Use more portable g_usleep() instead of sleep() (#492306).
3153
3154 2007-11-01  Tim-Philipp Müller  <tim at centricular dot net>
3155
3156         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
3157
3158         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
3159           (gst_ring_buffer_parse_caps):
3160           Return NULL instead of an enum that happens to be 0, fixes warning
3161           on MSVC (#492114).
3162
3163         * gst-libs/gst/audio/gstringbuffer.h:
3164           No trailing commas in enum list (for gcc-2.9x).
3165
3166         * gst/videotestsrc/videotestsrc.c: (random_char):
3167           Make information loss explicit instead of implicitly truncating to
3168           eight bits via the return value.  Fixes runtime error on MSVC when
3169           using the debug CRT (#492114).
3170
3171         * win32/common/config.h.in:
3172           Fix a bunch of '#undef FOO bar', which MSVC doesn't like (#492114).
3173
3174         * win32/common/libgstinterfaces.def:
3175         * win32/common/libgstrtp.def:
3176           Export a few more symbols (#492114).
3177
3178 2007-11-01  Stefan Kost  <ensonic@users.sf.net>
3179
3180         * gst-libs/gst/audio/audio.c:
3181         * gst-libs/gst/audio/audio.h:
3182           Readd the deprecation guards, but preserve compilability.
3183
3184 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
3185
3186         * gst/audioconvert/gstaudioconvert.c: (find_suitable_channel_layout),
3187           (gst_audio_convert_fixate_channels), (gst_audio_convert_fixate_caps):
3188           Preserve channel layout when fixating the number of channels in the
3189           output caps, or make sure there's a suitable channel position layout
3190           set on the caps if required. Fixes #430677.
3191
3192 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
3193
3194         * tests/check/elements/decodebin.c: (test_text_plain_streams):
3195           Make sure the pipeline really operates in push mode as it should
3196           in this case.
3197
3198 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
3199
3200         * gst-libs/gst/audio/audio.h:
3201           Don't guard deprecated enum with #ifndef DISABLE_DEPRECATED, or
3202           compilation with DISABLE_DEPRECATED and without REMOVE_DEPRECATED
3203           (ie. normal cvs builds) will fail.
3204
3205 2007-10-31  Stefan Kost  <ensonic@users.sf.net>
3206
3207         * docs/libs/Makefile.am:
3208         * gst-libs/gst/audio/audio.c:
3209         * gst-libs/gst/audio/audio.h:
3210         * gst-libs/gst/interfaces/mixer.c:
3211           tell gtk-doc about the deprecation guard. Apply more doc fixes.
3212
3213 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
3214
3215         * tests/check/libs/audio.c: (init_value_to_channel_layout),
3216           (test_channel_layout_value_intersect), (audio_suite):
3217           Add simple unit test to make sure GstValue intersection
3218           of channel layouts works the way I think it does.
3219
3220 2007-10-30  Stefan Kost  <ensonic@users.sf.net>
3221
3222         * docs/libs/gst-plugins-base-libs-sections.txt:
3223         * gst-libs/gst/audio/gstaudiofilter.h:
3224         * gst-libs/gst/interfaces/mixer.h:
3225         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3226         * gst-libs/gst/rtp/gstbasertpdepayload.h:
3227         * gst-libs/gst/sdp/gstsdpmessage.c:
3228           Fix the docs according to what gtk-doc complained about.
3229
3230 2007-10-30  Stefan Kost  <ensonic@users.sf.net>
3231
3232         * tests/icles/stress-playbin.c:
3233           Fix the build.
3234
3235 2007-10-30  Tim-Philipp Müller  <tim at centricular dot net>
3236
3237         * gst/playback/gstdecodebin.c: (close_pad_link), (type_found):
3238         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
3239           Post nice/more useful error message if we don't have a decoder for
3240           the primary type.
3241
3242 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
3243
3244         * gst/playback/gstdecodebin2.c: (gst_decode_group_expose):
3245         Be a bit more useful, unblock the pads after we fired the no-more-pads
3246         signal so that we can use the signal to inspect and connect all pads
3247         without having to keep extra state outside of decodebin.
3248
3249 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
3250
3251         * gst/playback/gsturidecodebin.c:
3252         (gst_uri_decode_bin_autoplug_continue),
3253         (gst_uri_decode_bin_class_init), (no_more_pads_full):
3254         Implement default signal handler so that we return TRUE when nothing is
3255         connected.
3256
3257 2007-10-28  Sebastian Dröge  <slomo@circular-chaos.org>
3258
3259         * gst-libs/gst/riff/riff-media.c:
3260         (gst_riff_wavext_add_channel_layout),
3261         (gst_riff_wave_add_default_channel_layout),
3262         (gst_riff_wavext_get_default_channel_mask),
3263         (gst_riff_create_audio_caps):
3264         Use the ALSA channel layout as default for wav files without channel
3265         layout information. This fixes playback of chan-id.wav on 5.1 systems
3266         for example. Also refactor the channel layout setting a bit and add
3267         more default channel orders. Fixes #489010.
3268
3269 2007-10-26  Tim-Philipp Müller  <tim at centricular dot net>
3270
3271         * tests/check/libs/tag.c: (test_musicbrainz_tag_registration):
3272           GST_TAG_MUSICBRAINZ_SORTNAME is deprecated and we compile with
3273           -DGST_DISABLE_DEPRECATED, so use new GST_TAG_ARTIST_SORTNAME
3274           instead.
3275
3276 2007-10-25  Wim Taymans  <wim.taymans@gmail.com>
3277
3278         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
3279         (gst_decode_bin_dispose), (gst_decode_bin_set_caps),
3280         (gst_decode_bin_set_subs_encoding),
3281         (gst_decode_bin_get_subs_encoding), (gst_decode_bin_set_property),
3282         (gst_decode_bin_get_property), (analyze_new_pad):
3283         Move subtitle encoding property to decodebin2 so that it can set the
3284         property value on all elements that it autoplugs and that require it.
3285         Make caps refcounting more consistent in get/set.
3286
3287         * gst/playback/gsturidecodebin.c: (_gst_boolean_accumulator),
3288         (gst_uri_decode_bin_class_init), (gst_uri_decode_bin_init),
3289         (gst_uri_decode_bin_finalize), (gst_uri_decode_bin_set_property),
3290         (gst_uri_decode_bin_get_property), (proxy_unknown_type_signal),
3291         (proxy_autoplug_continue_signal),
3292         (proxy_autoplug_factories_signal), (proxy_autoplug_select_signal),
3293         (make_decoder):
3294         Proxy properties and relevant signals from the internal decodebin.
3295         Make properties MT safe.
3296
3297 2007-10-25  Tim-Philipp Müller  <tim at centricular dot net>
3298
3299         * gst-libs/gst/tag/tag.h: (GST_TAG_MUSICBRAINZ_SORTNAME):
3300         * gst-libs/gst/tag/tags.c:
3301           Deprecate GST_TAG_MUSICBRAINZ_SORTNAME, replaced by the newly-added
3302           GST_TAG_ARTIST_SORTNAME (in an API and ABI compatible way).
3303
3304         * gst-libs/gst/tag/gstid3tag.c: (tag_matches):
3305           Map ID3v2 TSOP, TSOA and TSOT frames to new SORTNAME tags (#414539).
3306
3307         * gst-libs/gst/tag/gstvorbistag.c: (tag_matches),
3308           (gst_tag_to_vorbis_comments):
3309           Map new SORTNAME tags (these tags aren't even semi-official, so I'm
3310           just mapping everything I found in the wild) (#414539).
3311
3312 2007-10-24  Wim Taymans  <wim.taymans@gmail.com>
3313
3314         Inspired by patch of: René Stadler <mail at renestadler dot de>
3315
3316         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
3317         (gst_decode_bin_autoplug_continue),
3318         (gst_decode_bin_autoplug_factories),
3319         (gst_decode_bin_autoplug_select), (analyze_new_pad), (connect_pad),
3320         (find_compatibles):
3321         * gst/playback/gstplay-marshal.list:
3322         Remove the autoplug-sort signal and replace it with a binding friendly
3323         autoplug-select signal.
3324         Add an autoplug-factories signal that can be used to generate a list of
3325         factories to try to autoplug.
3326         Add the GstPad to the autoplugging signal args as it might be needed to
3327         make a good factory selection.
3328         Fix up the marshallers for this. Fixes #407282.
3329
3330 2007-10-23  Tim-Philipp Müller  <tim at centricular dot net>
3331
3332         * gst-libs/gst/tag/gsttagdemux.c:
3333           Don't abort with an assertion if we receive a seek event with
3334           a start type of NONE (see launchpad bug #155878).
3335
3336 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
3337
3338         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
3339         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
3340         (gst_ximagesink_change_state), (gst_ximagesink_reset):
3341         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_event_thread),
3342         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_xcontext_clear),
3343         (gst_xvimagesink_change_state), (gst_xvimagesink_reset):
3344         Make sure that before we clean up the X resources, we shutdown and join
3345         the event thread.
3346         Also make sure the event thread does not shut down immediatly after
3347         startup because the running variable is not yet correctly set.
3348         Fixes #378770. 
3349
3350 2007-10-16  Wim Taymans  <wim.taymans@gmail.com>
3351
3352         * gst/playback/gstdecodebin.c: (new_pad), (type_found):
3353         Make the window for a race in typefind and shutting down smaller until
3354         we figure out the right locking here. Avoids #485753 usually.
3355
3356         * gst/playback/gstdecodebin2.c: (type_found), (pad_added_group_cb):
3357         Remove unneeded lock causing a race in typefind and shutting down.
3358         Fixes #485753.
3359
3360         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
3361         Also remove sinks when going to NULL because we might not complete the
3362         state change to PAUSED, causing the PAUSED->READY state change not to
3363         happen.
3364
3365 2007-10-16  Wim Taymans  <wim.taymans@gmail.com>
3366
3367         * gst-libs/gst/audio/gstbaseaudiosink.c:
3368         (gst_base_audio_sink_drain), (gst_base_audio_sink_change_state):
3369         Also explicitly release the ringbuffer when going to NULL because it
3370         is required in the setcaps function, before the state change to PAUSED
3371         completes.
3372
3373 2007-10-16  Tim-Philipp Müller  <tim at centricular dot net>
3374
3375         * tests/icles/.cvsignore:
3376         * tests/icles/Makefile.am:
3377         * tests/icles/stress-playbin.c:
3378           Does what it says on the tin.
3379
3380 2007-10-15  Wim Taymans  <wim.taymans@gmail.com>
3381
3382         * gst/playback/gstqueue2.c: (gst_queue_init), (gst_queue_push_one):
3383         Fix queue negotiation. See #486758.
3384
3385 2007-10-12  Jan Schmidt  <Jan.Schmidt@sun.com>
3386
3387         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
3388         (gst_xvimagesink_xwindow_new),
3389         (gst_xvimagesink_update_colorbalance),
3390         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get):
3391
3392         Fix handling of some of the X atoms. If the last parameter is True,
3393         XInternAtom won't create the atom if it doesn't exist, and therefore
3394         might return None. This causes X errors on Xv implementations that
3395         don't provide the colour balance attributes.
3396
3397 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
3398
3399         * gst-libs/gst/tag/gstvorbistag.c:
3400         * tests/check/libs/tag.c:
3401           Extract vorbis comment LICENSE tags correctly.
3402
3403 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
3404
3405         Patch by: Jason Kivlighn  <jkivlighn gmail com>
3406
3407         * gst-libs/gst/tag/gstid3tag.c:
3408         * tests/check/libs/tag.c:
3409           Map ID3v2 WCOP frame to GST_TAG_COPYRIGHT_URI (#447000).
3410
3411 2007-10-10  Tim-Philipp Müller  <tim at centricular dot net>
3412
3413         * gst-libs/gst/tag/gsttagdemux.c:
3414           Don't error out when a buggy downstream element doesn't
3415           handle the newsegment event we send properly (especially
3416           not without posting a meaningful error message on the
3417           bus). See bug #471370 and launchpad bug #136264.
3418
3419 2007-10-10  Wim Taymans  <wim.taymans@gmail.com>
3420
3421         * gst-libs/gst/audio/gstbaseaudiosink.c:
3422         (gst_base_audio_sink_drain):
3423         Use new basesink method to make our EOS drain interruptable.
3424
3425 2007-10-10  Jan Schmidt  <Jan.Schmidt@sun.com>
3426
3427         * gst-libs/gst/rtp/gstrtppayloads.c:
3428         Fix silly search-replace oversight.
3429
3430 2007-10-09  Wim Taymans  <wim.taymans@gmail.com>
3431
3432         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
3433
3434         * gst-libs/gst/rtp/gstbasertppayload.c: (copy_fixed),
3435         (gst_basertppayload_set_outcaps):
3436         Fix caps memleak. Fixes #484989.
3437
3438
3439 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
3440
3441         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3442         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain):
3443         Fix debug output.
3444
3445 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
3446
3447         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3448         (gst_base_audio_src_create):
3449         Also handle the case where there is no clock set on the audio source,
3450         like in the unit tests.
3451
3452 2007-10-08  Jan Schmidt  <Jan.Schmidt@sun.com>
3453
3454         * gst-libs/gst/rtp/gstrtppayloads.c:
3455         Use unsigned G_MAXUINT8 instead of -1 to initialise a guint8
3456         to avoid compiler warnings
3457
3458 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
3459
3460         * gst/playback/gstdecodebin.c: (type_found),
3461         (gst_decode_bin_change_state):
3462         * gst/playback/gstdecodebin2.c: (type_found),
3463         (gst_decode_bin_change_state):
3464         Don't disconnect the have_type signal because we never reconnect it
3465         later on. Instead keep a variable to see if we already detected a type.
3466
3467 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
3468
3469         * gst/playback/gstdecodebin.c: (add_fakesink), (type_found):
3470         * gst/playback/gstdecodebin2.c: (gst_decode_bin_init),
3471         (type_found):
3472         Unlink the signal handler when we found the type, we're not going to do
3473         anything sensible with more type_found signals anyway.
3474
3475 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
3476
3477         * gst-libs/gst/tag/gsttagdemux.c:
3478           Don't leak caps.
3479
3480 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
3481
3482         * gst-libs/gst/tag/Makefile.am:
3483         * gst-libs/gst/tag/gsttagdemux.c:
3484         * gst-libs/gst/tag/gsttagdemux.h:
3485           API: add GstTagDemux base class for simple tag demuxers.
3486
3487         * docs/libs/gst-plugins-base-libs-docs.sgml:
3488         * docs/libs/gst-plugins-base-libs-sections.txt:
3489           Add GstTagDemux to docs.
3490
3491 2007-10-05  Sebastian Dröge  <slomo@circular-chaos.org>
3492
3493         * gst-libs/gst/rtp/gstrtpbuffer.c:
3494         (gst_rtp_buffer_get_payload_subbuffer):
3495         Fix bug introduced with last commit which inverted the logic and
3496         caused all buffers to be dropped. Fixes #483620.
3497         Thanks to Laurent Glayal <spglegle at yahoo dot fr> for noticing.
3498
3499 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
3500
3501         * gst-libs/gst/rtp/gstrtpbuffer.c:
3502           Replace g_return_if_val (as it could be disabled), with regular return
3503           and warning.
3504
3505 2007-10-03  Stefan Kost  <ensonic@users.sf.net>
3506
3507         * tests/check/pipelines/simple-launch-lines.c:
3508           Print message name and not just number.
3509
3510 2007-10-02  Wim Taymans  <wim.taymans@gmail.com>
3511
3512         * gst-libs/gst/audio/gstbaseaudiosink.c:
3513         (gst_base_audio_sink_async_play):
3514         When slaved to the clock, don't try to align a sample with the previous
3515         one when going to PLAYING again.
3516
3517 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
3518
3519         * tests/examples/snapshot/snapshot.c:
3520           Fix the build.
3521
3522 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
3523
3524         * gst-libs/gst/sdp/gstsdpmessage.h:
3525         Add RFC 3556 bandwidth modifiers.
3526
3527 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
3528
3529         * docs/libs/gst-plugins-base-libs-docs.sgml:
3530         * docs/libs/gst-plugins-base-libs-sections.txt:
3531         * gst-libs/gst/rtp/gstrtppayloads.c:
3532         Update documentation.
3533
3534 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
3535
3536         * gst-libs/gst/rtp/Makefile.am:
3537         * gst-libs/gst/rtp/gstrtppayloads.c: (gst_rtp_payload_info_for_pt),
3538         (gst_rtp_payload_info_for_name):
3539         * gst-libs/gst/rtp/gstrtppayloads.h:
3540         Added new file and header to deal with payload info.
3541
3542         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data),
3543         (gst_rtp_buffer_default_clock_rate):
3544         * gst-libs/gst/rtp/gstrtpbuffer.h:
3545         Payload specific stuff is move to new headers.
3546         Implement _default_clock rate using the new payload function.
3547
3548         * gst-libs/gst/sdp/gstsdpmessage.c: (is_multicast_address),
3549         (gst_sdp_parse_line):
3550         * gst-libs/gst/sdp/gstsdpmessage.h:
3551         Add some more comments.
3552
3553 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
3554
3555         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
3556         (sdp_check_header), (sdp_type_find), (plugin_init):
3557         Add typefind function for application/sdp.
3558         Remove some old dirac typefind code that was ifdeffed out.
3559
3560 2007-09-29  Sebastien Moutte <sebastien@moutte.net>
3561
3562         * win32/common/libgstaudio.def:
3563         Add new exported functions.
3564         * win32/vs6/grammar.dsp:
3565         Add autogeneration and copy of some autegenerated files from win32/common
3566         for rtsp library.
3567         * win32/vs6/libgstaudioconvert.dsp:
3568         Add gstaudioquantize.c to the build.
3569         * win32/vs6/libgstinterfaces.dsp:
3570         Add videoorientation.c to the build.
3571         * win32/vs6/libgstriff.dsp:
3572         Add libgsttag to the link libraries list.
3573         * win32/vs6/libgstvolume.dsp:
3574         Add liboil to the link.
3575         * win32/vs6/gst_plugins_base.dsw:
3576         * win32/vs6/libgstrtsp.dsp:
3577         * win32/common/libgstrtsp.def:
3578         Add files to build libgstrtsp library.
3579         
3580 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
3581
3582         * tests/examples/snapshot/snapshot.c: (main):
3583         Print error when pipeline failed to construct.
3584
3585 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
3586
3587         * configure.ac:
3588         * gst-libs/gst/tag/gstid3tag.c:
3589         * gst-libs/gst/tag/gstvorbistag.c:
3590           Add mappings for the new GST_TAG_COMPOSER for vorbis comments
3591           and ID3v2 tags.
3592
3593 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
3594
3595         * gst-libs/gst/floatcast/floatcast.h:
3596           Don't include config.h in an installed public header, this
3597           might break compilation of applications that don't have such
3598           a header and doesn't necessarily do what it's supposed to do
3599           anyway (ie. check for the lrint/lrintf defines) (#442065).
3600           Add docs for the various macros and document how this header
3601           has to be used (link against libm, etc.); add a few FIXMEs;
3602           include math.h for non-c99 code path.  Based on patch by
3603           Jan Schmidt.
3604           
3605 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
3606
3607         * configure.ac:
3608         Use AG_GST_ARG_WITH_PLUGINS and AG_GST_ARG_ENABLE_EXTERNAL instead
3609         of duplicating these macros in configure.ac.
3610
3611 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
3612
3613         * po/hu.po:
3614         * po/sv.po:
3615         * po/uk.po:
3616           Updated translations to 0.10.14
3617
3618 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
3619
3620         translated by: Jakub Bogusz <qboosh@pld-linux.org>
3621
3622         * po/pl.po:
3623           Added Polish translation.
3624
3625 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
3626
3627         translated by: Ilkka Tuohela <hile@iki.fi>
3628
3629         * po/fi.po:
3630           Added Finnish translation.
3631
3632 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
3633
3634         translated by: Jorge González González <aloriel@gmail.com>
3635
3636         * po/es.po:
3637           Added Spanish translation.
3638
3639 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
3640
3641         translated by: Mogens Jaeger <mogens@jaeger.tf>
3642
3643         * po/da.po:
3644           Added Danish translation.
3645
3646 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
3647
3648         translated by: Funda Wang <fundawang@linux.net.cn>
3649
3650         * po/zh_CN.po:
3651           Added Chinese (simplified) translation.
3652
3653 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
3654
3655         translated by: Alexander Shopov <ash@contact.bg>
3656
3657         * po/bg.po:
3658           Added Bulgarian translation.
3659
3660 2007-09-21  Wim Taymans  <wim.taymans@gmail.com>
3661
3662         * gst/playback/gstqueue2.c: (gst_queue_push_one):
3663         Fix compilation wrt printf arguments.
3664
3665 2007-09-20  Wim Taymans  <wim.taymans@gmail.com>
3666
3667         * configure.ac:
3668         * tests/examples/Makefile.am:
3669         * tests/examples/snapshot/.cvsignore:
3670         * tests/examples/snapshot/Makefile.am:
3671         * tests/examples/snapshot/snapshot.c: (main):
3672         Add simple snapshot example program using appsink.
3673
3674 2007-09-20  Stefan Kost  <ensonic@users.sf.net>
3675
3676         * tests/check/generic/states.c:
3677           Improved state change unit test.
3678
3679 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
3680
3681         * docs/plugins/.cvsignore:
3682         * tests/check/.cvsignore:
3683           Ignore registries in any format.
3684
3685 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
3686
3687         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3688         (gst_base_rtp_depayload_chain),
3689         (gst_base_rtp_depayload_set_gst_timestamp):
3690         Only copy timestamp on outgoing packets if the depayloader did not set
3691         one.
3692         Also copy duration on outgoing packets.
3693
3694 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
3695
3696         * gst-libs/gst/rtp/gstbasertppayload.c: (copy_fixed),
3697         (gst_basertppayload_set_outcaps):
3698         Fix compilation because of missing %d in printf.
3699         When fixating caps, fixate what we can and throw away all remaining
3700         unfixed caps, subclasses should do something smart if they need to.
3701
3702 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
3703
3704         * ext/gnomevfs/gstgnomevfssrc.c:
3705           Improve debug logs a bit and be more verbose if things go wrong.
3706
3707 2007-09-17  Jan Schmidt  <Jan.Schmidt@sun.com>
3708
3709         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
3710         (gst_text_overlay_set_property):
3711         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
3712         * gst-libs/gst/audio/gstbaseaudiosink.c:
3713         (gst_base_audio_sink_render):
3714         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_ntp_to_unix),
3715         (gst_rtcp_unix_to_ntp):
3716         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_get_type):
3717         * gst/playback/gstqueue2.c:
3718         * tests/examples/seek/seek.c: (set_scale):
3719         Fix a bunch of compile warnings shown with Forte.
3720
3721         * gst/audiorate/gstaudiorate.c:
3722         Always pull in config.h before including any system headers.
3723
3724 2007-09-17  Wim Taymans  <wim.taymans@gmail.com>
3725
3726         * gst/playback/gstqueue2.c: (update_buffering),
3727         (gst_queue_locked_flush), (gst_queue_locked_enqueue),
3728         (gst_queue_handle_sink_event), (gst_queue_chain),
3729         (gst_queue_push_one), (gst_queue_sink_activate_push),
3730         (gst_queue_src_activate_push), (gst_queue_src_activate_pull):
3731         Also fix #476514 for queue2.
3732
3733 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
3734
3735         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3736         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_setcaps),
3737         (gst_base_rtp_depayload_chain),
3738         (gst_base_rtp_depayload_handle_sink_event),
3739         (gst_base_rtp_depayload_push_full),
3740         (gst_base_rtp_depayload_set_gst_timestamp),
3741         (gst_base_rtp_depayload_change_state):
3742         Remove code to deal with RTP to GST time conversion, we now just copy
3743         the GST timestamp we receive to the outgoing buffers.
3744         Handle segment and flushes correctly.
3745
3746         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
3747         When we have no valid input timestamp, use the previous rtp timestamp on
3748         the outgoing RTP packet instead of the RTP base time.
3749
3750 2007-09-15  David Schleef  <ds@schleef.org>
3751
3752         * ext/alsa/gstalsa.c:
3753         * ext/alsa/gstalsadeviceprobe.c:
3754         * ext/alsa/gstalsamixer.c:
3755         * ext/alsa/gstalsasink.c:
3756         * ext/alsa/gstalsasrc.c:
3757           Change alsa alloca's to malloc to fix warnings on gcc-4.2.
3758
3759 2007-09-15  Wim Taymans  <wim.taymans@gmail.com>
3760
3761         * gst-libs/gst/rtp/gstbasertppayload.c:
3762         (gst_basertppayload_set_outcaps), (gst_basertppayload_push):
3763         Add some debug info when negotiating caps.
3764
3765 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
3766
3767         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
3768         A buffer with an empty payload is also a valid buffer.
3769
3770 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
3771
3772         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_event),
3773         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
3774         (gst_basertppayload_change_state):
3775         Make sure we start our RTP timestamp from the random base RTP
3776         timestamp even if the buffer timestamp starts from some random value.
3777
3778 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
3779
3780         * configure.ac:
3781         * tests/examples/Makefile.am:
3782         * tests/examples/dynamic/.cvsignore:
3783         * tests/examples/dynamic/Makefile.am:
3784         * tests/examples/dynamic/addstream.c: (create_stream),
3785         (pause_play_stream), (message_received), (eos_message_received),
3786         (perform_step), (main):
3787         Add simple exmple app to demonstrate starting and pausing live and
3788         non-live bins in a PLAYING pipeline.
3789
3790 2007-09-14  Julien MOUTTE  <julien@moutte.net>
3791
3792         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add some
3793         typefind for QCP files (RFC #3625)
3794
3795 2007-09-13  Wim Taymans  <wim.taymans@gmail.com>
3796
3797         * gst-libs/gst/audio/gstbaseaudiosink.c:
3798         (gst_base_audio_sink_init):
3799         Disable pull mode scheduling, we're not ready for it yet and it subtly
3800         breaks a lot of things.
3801
3802 2007-09-12  Tim-Philipp Müller  <tim at centricular dot net>
3803
3804         * tests/check/elements/libvisual.c:
3805           Test all libvisual plugins, not just the first one; this reproduces
3806           bug #450336 quite easily.  Looks like a problem with the 'jess'
3807           visualisation.
3808
3809 2007-09-12  Tim-Philipp Müller  <tim at centricular dot net>
3810
3811         * tests/check/Makefile.am:
3812         * tests/check/elements/.cvsignore:
3813         * tests/check/elements/libvisual.c:
3814           Add basic libvisual test case in an attempt to reproduce bug #450336.
3815           Doesn't reproduce that bug, but some other crasher instead (invalid
3816           free), at least with make elements/libvisual.forever and the bumscope
3817           plugin on x86-64/gutsy. Leaving test disabled for now.
3818
3819 2007-09-11  Wim Taymans  <wim.taymans@gmail.com>
3820
3821         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
3822
3823         * gst-libs/gst/rtsp/gstrtspconnection.c:
3824         (gst_rtsp_connection_read_internal), (gst_rtsp_connection_read),
3825         (read_body), (gst_rtsp_connection_receive):
3826         Make sure we can not cancel in the middle of receiving a message.
3827         Fixes #475731.
3828
3829 2007-09-11  Tim-Philipp Müller  <tim at centricular dot net>
3830
3831         Patch by: Josep Torra Valles <josep@fluendo.com>
3832
3833         * gst/playback/gstplaybasebin.c:
3834           Increase upper limit for audio queue a bit; fixes preroll problem
3835           with playbin and decodebin2 when playing a quicktime trailer with
3836           multichannel audio via http (#464666).
3837
3838 2007-09-10  Wim Taymans  <wim.taymans@gmail.com>
3839
3840         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3841         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
3842         (gst_base_audio_src_provide_clock),
3843         (gst_base_audio_src_set_property),
3844         (gst_base_audio_src_get_property), (gst_base_audio_src_create):
3845         * gst-libs/gst/audio/gstbaseaudiosrc.h:
3846         Allow othe clocks than the internal clock to be used for the pipeline.
3847         Add property to disable clock provide.
3848         API: GstBaseAudioSrc::provide-clock
3849
3850 2007-09-10  Stefan Kost  <ensonic@users.sf.net>
3851
3852         * gst/playback/gstdecodebin2.c:
3853           Don't leak request pads. Fixes #475395.
3854
3855 2007-09-09  Sebastian Dröge  <slomo@circular-chaos.org>
3856
3857         Patch by: René Stadler <mail at renestadler dot de>
3858
3859         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
3860         (gst_ximage_buffer_class_init):
3861         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
3862         (gst_xvimage_buffer_class_init):
3863         Correctly chain up finalize with the parent class to prevent
3864         memory leaks. Fixes #474880.
3865
3866 2007-09-09  Sebastian Dröge  <slomo@circular-chaos.org>
3867
3868         * gst/volume/gstvolume.c: (volume_choose_func):
3869         * tests/check/elements/volume.c: (GST_START_TEST):
3870         Revert the latest change: floating point samples are allowed to
3871         have any value, not only values in the range [-1,1]. Thanks to Andy
3872         Wingo for noticing.
3873         Also fix processing of int32 samples with volumes > 4 by making the
3874         unity value smaller which prevents overflows.
3875
3876 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
3877
3878         * gst-libs/gst/rtp/gstrtpbuffer.c:
3879         * tests/check/libs/rtp.c:
3880           Fix gst_rtp_buffer_set_csrc() and enable csrc-related unit test checks.
3881
3882 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
3883
3884         Based on patch by: Haakon Sporsheim  <haakon.sporsheim at tandberg com>
3885
3886         * gst-libs/gst/rtp/gstrtpbuffer.c:
3887           Fix up GstRTPHeader helper struct so that compilers will not under
3888           any circumstances add padding in between our fields, as currently
3889           happens with MSVC on win32, because that would lead to us sending
3890           out RTP payloads with broken RTP headers (#471194).
3891           Fix assertion guards for gst_rtp_buffer_get_csrc() and _set_csrc().
3892           
3893         * tests/check/Makefile.am:
3894         * tests/check/libs/.cvsignore:
3895         * tests/check/libs/rtp.c:
3896           Add some simple unit tests for GstRTPBuffer. Some are disabled
3897           because the code tested still needs fixing (set_csrc() does not work).
3898
3899 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
3900
3901         * win32/MANIFEST:
3902         * win32/common/gstrtsp-enumtypes.c:
3903         * win32/common/gstrtsp-enumtypes.h:
3904         * win32/common/interfaces-enumtypes.c:
3905         * win32/common/interfaces-enumtypes.h:
3906         * win32/common/multichannel-enumtypes.c:
3907           Add rtsp enumtypes (#474384) and update others.
3908
3909 2007-09-06  Stefan Kost  <ensonic@users.sf.net>
3910
3911         * configure.ac:
3912           Fix configure check for HAVE_LIBXML_HTML.
3913
3914 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
3915
3916         * tests/check/libs/.cvsignore:
3917           Ignore more, in case the build bots work again one day.
3918
3919 2007-09-06  Sebastian Dröge  <slomo@circular-chaos.org>
3920
3921         Reviewed by:  Stefan Kost  <ensonic@users.sf.net>
3922
3923         * configure.ac:
3924         * gst-libs/gst/Makefile.am:
3925         * gst-libs/gst/fft/Makefile.am:
3926         * gst-libs/gst/fft/_kiss_fft_guts_f32.h:
3927         * gst-libs/gst/fft/_kiss_fft_guts_f64.h:
3928         * gst-libs/gst/fft/_kiss_fft_guts_s16.h:
3929         * gst-libs/gst/fft/_kiss_fft_guts_s32.h:
3930         * gst-libs/gst/fft/gstfft.c: (gst_fft_next_fast_length):
3931         * gst-libs/gst/fft/gstfft.h:
3932         * gst-libs/gst/fft/gstfftf32.c: (gst_fft_f32_new),
3933         (gst_fft_f32_fft), (gst_fft_f32_inverse_fft), (gst_fft_f32_free),
3934         (gst_fft_f32_window), (gst_fft_f32_magnitude), (gst_fft_f32_phase):
3935         * gst-libs/gst/fft/gstfftf32.h:
3936         * gst-libs/gst/fft/gstfftf64.c: (gst_fft_f64_new),
3937         (gst_fft_f64_fft), (gst_fft_f64_inverse_fft), (gst_fft_f64_free),
3938         (gst_fft_f64_window), (gst_fft_f64_magnitude), (gst_fft_f64_phase):
3939         * gst-libs/gst/fft/gstfftf64.h:
3940         * gst-libs/gst/fft/gstffts16.c: (gst_fft_s16_new),
3941         (gst_fft_s16_fft), (gst_fft_s16_inverse_fft), (gst_fft_s16_free),
3942         (gst_fft_s16_window), (gst_fft_s16_magnitude), (gst_fft_s16_phase):
3943         * gst-libs/gst/fft/gstffts16.h:
3944         * gst-libs/gst/fft/gstffts32.c: (gst_fft_s32_new),
3945         (gst_fft_s32_fft), (gst_fft_s32_inverse_fft), (gst_fft_s32_free),
3946         (gst_fft_s32_window), (gst_fft_s32_magnitude), (gst_fft_s32_phase):
3947         * gst-libs/gst/fft/gstffts32.h:
3948         * gst-libs/gst/fft/kiss_fft_f32.c: (kf_bfly2), (kf_bfly4),
3949         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
3950         (kiss_fft_f32_alloc), (kiss_fft_f32_stride), (kiss_fft_f32),
3951         (kiss_fft_f32_cleanup), (kiss_fft_f32_next_fast_size):
3952         * gst-libs/gst/fft/kiss_fft_f32.h:
3953         * gst-libs/gst/fft/kiss_fft_f64.c: (kf_bfly2), (kf_bfly4),
3954         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
3955         (kiss_fft_f64_alloc), (kiss_fft_f64_stride), (kiss_fft_f64),
3956         (kiss_fft_f64_cleanup), (kiss_fft_f64_next_fast_size):
3957         * gst-libs/gst/fft/kiss_fft_f64.h:
3958         * gst-libs/gst/fft/kiss_fft_s16.c: (kf_bfly2), (kf_bfly4),
3959         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
3960         (kiss_fft_s16_alloc), (kiss_fft_s16_stride), (kiss_fft_s16),
3961         (kiss_fft_s16_cleanup), (kiss_fft_s16_next_fast_size):
3962         * gst-libs/gst/fft/kiss_fft_s16.h:
3963         * gst-libs/gst/fft/kiss_fft_s32.c: (kf_bfly2), (kf_bfly4),
3964         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
3965         (kiss_fft_s32_alloc), (kiss_fft_s32_stride), (kiss_fft_s32),
3966         (kiss_fft_s32_cleanup), (kiss_fft_s32_next_fast_size):
3967         * gst-libs/gst/fft/kiss_fft_s32.h:
3968         * gst-libs/gst/fft/kiss_fftr_f32.c: (kiss_fftr_f32_alloc),
3969         (kiss_fftr_f32), (kiss_fftri_f32):
3970         * gst-libs/gst/fft/kiss_fftr_f32.h:
3971         * gst-libs/gst/fft/kiss_fftr_f64.c: (kiss_fftr_f64_alloc),
3972         (kiss_fftr_f64), (kiss_fftri_f64):
3973         * gst-libs/gst/fft/kiss_fftr_f64.h:
3974         * gst-libs/gst/fft/kiss_fftr_s16.c: (kiss_fftr_s16_alloc),
3975         (kiss_fftr_s16), (kiss_fftri_s16):
3976         * gst-libs/gst/fft/kiss_fftr_s16.h:
3977         * gst-libs/gst/fft/kiss_fftr_s32.c: (kiss_fftr_s32_alloc),
3978         (kiss_fftr_s32), (kiss_fftri_s32):
3979         * gst-libs/gst/fft/kiss_fftr_s32.h:
3980         * gst-libs/gst/fft/kiss_version:
3981         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
3982         * pkgconfig/gstreamer-plugins-base.pc.in:
3983         Add libgstfft, a FFT library based on Kiss FFT which is
3984         BSD licensed. Supported sample formats are int16, int32,
3985         float and double. For those formats a real FFT and IFFT
3986         can be done, different windowing functions can be applied
3987         and functions for extracting the magnitude and phase exist.
3988         Fixes #468619.
3989
3990         * docs/libs/Makefile.am:
3991         * docs/libs/gst-plugins-base-libs-docs.sgml:
3992         * docs/libs/gst-plugins-base-libs-sections.txt:
3993         Integrate libgstfft into the docs.
3994
3995         * tests/check/Makefile.am:
3996         * tests/check/libs/fft.c: (GST_START_TEST), (fft_suite), (main):
3997         Add unit tests for libgstfft, currently only testing the FFT.
3998         Unit tests for IFFT will follow soon.
3999
4000 2007-09-05  Wim Taymans  <wim.taymans@gmail.com>
4001
4002         Patch by: Peter Kjellerstedt  <pkj at axis com>
4003
4004         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_time_init),
4005         (gst_sdp_message_init), (gst_sdp_message_uninit),
4006         (is_multicast_address), (gst_sdp_message_as_text),
4007         (gst_sdp_message_get_origin), (gst_sdp_message_set_connection),
4008         (gst_sdp_message_get_connection), (gst_sdp_message_add_bandwidth),
4009         (gst_sdp_message_add_time), (gst_sdp_message_add_zone),
4010         (gst_sdp_message_get_key), (gst_sdp_message_get_attribute_val_n),
4011         (gst_sdp_message_get_attribute_val), (gst_sdp_message_add_media),
4012         (gst_sdp_media_init), (gst_sdp_media_uninit),
4013         (gst_sdp_media_as_text), (gst_sdp_media_set_port_info),
4014         (gst_sdp_media_connections_len), (gst_sdp_media_add_connection),
4015         (gst_sdp_media_bandwidths_len), (gst_sdp_media_get_bandwidth),
4016         (gst_sdp_media_add_bandwidth), (gst_sdp_media_attributes_len),
4017         (gst_sdp_parse_line), (print_media), (gst_sdp_message_dump):
4018         * gst-libs/gst/sdp/gstsdpmessage.h:
4019         Separate INIT_ARRAY() and related macros into two versions, one for
4020         structures and one for pointers (e.g., INIT_ARRAY() and
4021         INIT_PTR_ARRAY()). This fixes a segmentation error on freeing the
4022         lists of emails and phone numbers.
4023         Add missing const as appropriate.
4024         Change all gint to guint since they all actually represent unsigned
4025         values.
4026         Do not use time as a variable name as it shadows the global time().
4027         Add gst_sdp_message_as_text() and gst_sdp_media_as_text().
4028         Actually implement gst_sdp_message_add_time().
4029         Make gst_sdp_message_add_time() take repeat times as an argument.
4030         Store repeat times in GstSDPTime as a GArray rather than as gchar**.
4031         Corrected the definition of gst_sdp_media_get_bandwidth() (was
4032         misspelled as badwidth).
4033         gst-indented and a little clean up. Fixes #471067.
4034
4035 2007-09-05  Sebastian Dröge  <slomo@circular-chaos.org>
4036
4037         * gst/volume/gstvolume.c: (volume_choose_func),
4038         (volume_process_double), (volume_process_double_clamp),
4039         (volume_process_float_clamp):
4040         Correctly clamp float/double samples in the [-1.0,1.0] range to
4041         prevent weird effects.
4042         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
4043         Add unit tests for all samples types that had none before.
4044
4045 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
4046
4047         * gst-libs/gst/rtp/gstrtpbuffer.c:
4048           Need to include stdlib.h for abs() here too.
4049
4050 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
4051
4052         * gst/playback/gststreaminfo.c:
4053           Fix build.
4054
4055 2007-09-05  Stefan Kost  <ensonic@users.sf.net>
4056
4057         * gst/playback/gststreaminfo.c:
4058           Clean up some half-disabled code and comment.
4059
4060 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
4061
4062         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
4063
4064         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4065         (gst_base_rtp_payload_audio_handle_event):
4066         Return FALSE from the event handler to let the parent class handle the
4067         event. Fixes #446766.
4068
4069         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4070         (gst_base_rtp_depayload_chain), (gst_base_rtp_depayload_push_full):
4071         Mark outgoing buffers as DISCONT if the incomming buffer was DISCONT.
4072
4073         * gst-libs/gst/rtp/gstbasertppayload.c:
4074         Bump the MTU to 1400.
4075
4076 2007-09-03  Johan Dahlin  <jdahlin@async.com.br>
4077
4078         * gst/typefind/gsttypefindfunctions.c (plugin_init): 
4079         Add an audio/x-nsf typefind function for the nsfdec element.
4080
4081 2007-09-03  Renato Filho  <renato.filho@indt.org.br>
4082         * gst/playback/gstplaybasebin.c:
4083         Included "myth://" on stream_uris list for enable buffering to mythtv files
4084
4085 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
4086
4087         * docs/libs/gst-plugins-base-libs-sections.txt:
4088         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_get_rb),
4089         (gst_rtcp_packet_sdes_copy_entry), (gst_rtcp_ntp_to_unix),
4090         (gst_rtcp_unix_to_ntp):
4091         * gst-libs/gst/rtp/gstrtcpbuffer.h:
4092         Fix parsing of RB blocks.
4093         Fix docs.
4094         Added helper functions to convert to/from UNIX and NTP time.
4095         API: gst_rtcp_ntp_to_unix()
4096         API: gst_rtcp_unix_to_ntp()
4097
4098         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data),
4099         (gst_rtp_buffer_get_header_len),
4100         (gst_rtp_buffer_get_extension_data),
4101         (gst_rtp_buffer_get_payload_subbuffer),
4102         (gst_rtp_buffer_get_payload_len), (gst_rtp_buffer_get_payload),
4103         (gst_rtp_buffer_ext_timestamp):
4104         * gst-libs/gst/rtp/gstrtpbuffer.h:
4105         Fix some more docs.
4106         Implement handling of packets with extensions.
4107         Fix padding check in _validate().
4108         Added function to get extension data.
4109         API: gst_rtp_buffer_get_header_len()
4110         API: gst_rtp_buffer_get_extension_data()
4111
4112 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
4113
4114         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4115         (gst_base_rtp_depayload_class_init),
4116         (gst_base_rtp_depayload_set_gst_timestamp):
4117         Add some more docs for the queue-delay property and fix a typo in a
4118         comment.
4119
4120         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
4121         Fix typo.
4122
4123 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
4124
4125         * gst-libs/gst/audio/gstbaseaudiosink.c:
4126         (gst_base_audio_sink_skew_slaving), (gst_base_audio_sink_render),
4127         (gst_base_audio_sink_change_state):
4128         When skew slaving, try to hover around the middle of a segment so that
4129         we at most drift by half a segment.
4130         If we are aligning in the oposite direction of the clock skew, we don't
4131         have to resync.
4132
4133 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
4134
4135         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4136         (gst_base_rtp_depayload_setcaps),
4137         (gst_base_rtp_depayload_set_gst_timestamp):
4138         Be less silly with the segment start, just apply the clock-base to the
4139         timestamp.
4140
4141 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
4142
4143         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4144         (gst_base_rtp_depayload_class_init),
4145         (gst_base_rtp_depayload_finalize),
4146         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
4147         (gst_base_rtp_depayload_handle_sink_event),
4148         (gst_base_rtp_depayload_set_gst_timestamp),
4149         (gst_base_rtp_depayload_change_state):
4150         * gst-libs/gst/rtp/gstbasertpdepayload.h:
4151         Deprecate the queue handling thread thing and remove the code.
4152         Use new method to calculate the extended timestamp.
4153
4154 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
4155
4156         * gst-libs/gst/rtp/gstrtcpbuffer.c:
4157         (gst_rtcp_packet_sdes_copy_entry):
4158         Use g_strndup which does exactly what we want.
4159
4160         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_compare_seqnum),
4161         (gst_rtp_buffer_ext_timestamp):
4162         * gst-libs/gst/rtp/gstrtpbuffer.h:
4163         Add helper function to compare seqnums.
4164         Add helper function to calculate extended timestamps.
4165         API: gst_rtp_buffer_compare_seqnum()
4166         API: gst_rtp_buffer_ext_timestamp()
4167
4168 2007-08-30  Wim Taymans  <wim.taymans@gmail.com>
4169
4170         * gst-libs/gst/rtp/gstrtcpbuffer.c:
4171         (gst_rtcp_packet_sdes_get_entry),
4172         (gst_rtcp_packet_sdes_copy_entry):
4173         * gst-libs/gst/rtp/gstrtcpbuffer.h:
4174         Fix and document SDES item data function.
4175         Add new function that makes a proper copy of SDES item data.
4176         API: gst_rtcp_packet_sdes_copy_entry()
4177
4178 2007-08-30  Stefan Kost  <ensonic@users.sf.net>
4179
4180         * configure.ac:
4181         * gst/Makefile.am:
4182           The tcp and subparse plugins are under gst, but not totaly free of
4183           dependencies. Handle selection inconfigure.ac, so that they show up
4184           on the final list of what is build and what is not. Maybe they should
4185           better be moved to ext.
4186
4187 2007-08-30  Stefan Kost  <ensonic@users.sf.net>
4188
4189         Patch by: Daniel Díaz  <yosoy@danieldiaz.org>
4190
4191         * configure.ac:
4192         * gst/Makefile.am:
4193           Check if libxml provides HTML parser which subparse needs.
4194           Fixes #451970.
4195
4196 2007-08-29  Tim-Philipp Müller  <tim at centricular dot net>
4197
4198         * ext/alsa/gstalsa.c:
4199           Fix typo and compilation on big endian systems.
4200
4201 2007-08-29  Tim-Philipp Müller  <tim at centricular dot net>
4202
4203         * gst/subparse/gstssaparse.c:
4204           Convert SSA newline codes into actual newline characters (#470766).
4205
4206 2007-08-28  Tim-Philipp Müller  <tim at centricular dot net>
4207
4208         * docs/libs/gst-plugins-base-libs-sections.txt:
4209         * gst-libs/gst/pbutils/install-plugins.c:
4210         * gst-libs/gst/pbutils/install-plugins.h:
4211         * tests/check/libs/pbutils.c:
4212           API: also add gst_install_plugins_supported() while we're at it
4213           (see #470456).
4214
4215 2007-08-28  Tim-Philipp Müller  <tim at centricular dot net>
4216
4217         * docs/libs/gst-plugins-base-libs-sections.txt:
4218         * gst-libs/gst/pbutils/missing-plugins.c:
4219         * gst-libs/gst/pbutils/missing-plugins.h:
4220         * tests/check/libs/pbutils.c:
4221           API: add gst_missing_*_installer_detail_new() convenience API so
4222           that applications that know exactly what they're missing can request
4223           installer detail strings for those items directly instead of having
4224           to first create a dummy missing-plugin message and then get the
4225           installer detail string from that.  Fixes #470456.
4226
4227 2007-08-27  Jan Schmidt  <thaytan@mad.scientist.com>
4228
4229         * gst/playback/gstdecodebin.c: (close_pad_link):
4230         We need to set up delayed-linking whenever the caps are non-fixed,
4231         not just when there are multiple types - use gst_pad_is_fixed()
4232         to test.
4233
4234 2007-08-26  Tim-Philipp Müller  <tim at centricular dot net>
4235
4236         * gst-libs/gst/pbutils/missing-plugins.c:
4237           (gst_missing_plugin_message_get_installer_detail):
4238           Add missing separator in PID fallback case.
4239
4240 2007-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
4241
4242         * ext/alsa/Makefile.am:
4243         There is no GST_PLUGINS_BASE_LIBS defined.
4244         
4245         * ext/alsa/gstalsa.c:
4246         * ext/alsa/gstalsasink.c: (gst_alsasink_delay):
4247         * ext/alsa/gstalsasrc.c: (gst_alsasrc_delay):
4248         Add support for ALSA 24-bit formats.
4249         snd_pcm_delay can return an error code, especially
4250         during XRUNS. In that case, the best we can do is assume
4251         delay = 0.
4252
4253         * gst/audioconvert/Makefile.am:
4254         Add flags from -base before any more-remote dependencies.
4255
4256 2007-08-23  Sebastian Dröge  <slomo@circular-chaos.org>
4257
4258         Based on a patch by: Davyd Madeley <davyd at madeley dot id dot au>
4259
4260         * gst/volume/gstvolume.c: (volume_choose_func),
4261         (volume_update_real_volume), (gst_volume_set_volume),
4262         (gst_volume_init), (volume_process_int32),
4263         (volume_process_int32_clamp), (volume_process_int24),
4264         (volume_process_int24_clamp), (volume_process_int16),
4265         (volume_process_int16_clamp), (volume_process_int8),
4266         (volume_process_int8_clamp), (volume_update_volume), (plugin_init):
4267         * gst/volume/gstvolume.h:
4268         Add support for int32, int24 and int8 to the volume element.
4269         Fixes #445529.
4270
4271 2007-08-23  Tim-Philipp Müller  <tim at centricular dot net>
4272
4273         * tests/examples/Makefile.am:
4274           Fix even more.
4275
4276 2007-08-23  Stefan Kost  <ensonic@users.sf.net>
4277
4278         * configure.ac:
4279         * docs/libs/Makefile.am:
4280         * docs/libs/gst-plugins-base-libs-docs.sgml:
4281         * docs/libs/gst-plugins-base-libs-sections.txt:
4282         * ext/gnomevfs/gstgnomevfssrc.c:
4283         * ext/gnomevfs/gstgnomevfssrc.h:
4284         * gst-libs/gst/Makefile.am:
4285         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
4286         * pkgconfig/gstreamer-plugins-base.pc.in:
4287         * sys/v4l/v4lsrc_calls.c:
4288         * tests/examples/Makefile.am:
4289         * win32/common/config.h:
4290           Revert unwanted commit. many thanks to moap. I want a fix for 
4291           https://thomas.apestaart.org/moap/trac/ticket/239
4292
4293 2007-08-23  Stefan Kost  <ensonic@users.sf.net>
4294
4295         * gst/volume/gstvolume.c:
4296           Move passthrough below gst_object_sync_values(). Fixes #442654.
4297
4298 2007-08-22  Wim Taymans  <wim.taymans@gmail.com>
4299
4300         * gst-libs/gst/audio/audio.c:
4301         Clarify the docs a little.
4302
4303 2007-08-22  Stefan Kost  <ensonic@users.sf.net>
4304
4305         * gst/volume/gstvolume.c:
4306           Enable liboil for float and add more details about problems with
4307           int16.
4308
4309 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
4310
4311         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
4312         Fix RGB24 masks as spotted by _ke (Daniel G. Siegel) on IRC.
4313
4314 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
4315
4316         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward):
4317         When calculating the first timestamp of the buffers, don't go below 0
4318         and clip the samples because the offset was on the eos page.
4319         Fixes #466717.
4320
4321 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
4322
4323         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain),
4324         (gst_ogg_demux_collect_chain_info):
4325         Also submit the eos page when trying to find the first timestamp.
4326         See #466717.
4327
4328 2007-08-17  Sebastian Dröge  <slomo@circular-chaos.org>
4329
4330         * gst-libs/gst/audio/audio.h:
4331         Use gst_util_uint64_scale() instead of doing the math
4332         with double for GST_FRAMES_TO_CLOCK_TIME() and
4333         GST_CLOCK_TIME_TO_FRAMES(). For large timestamps this
4334         prevents rounding errors. Fixes #467667.
4335
4336 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
4337
4338         * gst-libs/gst/rtsp/gstrtspconnection.c:
4339         (gst_rtsp_connection_connect), (gst_rtsp_connection_write),
4340         (gst_rtsp_connection_read), (gst_rtsp_connection_poll):
4341         * gst-libs/gst/rtsp/gstrtspconnection.h:
4342         Small cleanups.
4343         On shutdown, don't read the control socket yet.
4344         Set timeout value correctly in all cases.
4345         Add function to check if the server accepts reads or writes.
4346         API: gst_rtsp_connection_poll()
4347
4348         * gst-libs/gst/rtsp/gstrtspdefs.h:
4349         Fix compilation with -pedantic.
4350         Add enum for _poll.
4351
4352 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
4353
4354         Patch by: Olivier Crete  <tester at tester ca>
4355
4356         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
4357         (gst_basertppayload_getcaps):
4358         * gst-libs/gst/rtp/gstbasertppayload.h:
4359         Add getcaps vfunc to basertppayload. See #465146.
4360
4361 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
4362
4363         * gst/playback/gstplaybasebin.c: (queue_threshold_reached):
4364         Only post buffering messages when we are a stream.
4365
4366 2007-08-15  Tim-Philipp Müller  <tim at centricular dot net>
4367
4368         * gst-libs/gst/pbutils/install-plugins.c:
4369         * gst-libs/gst/pbutils/missing-plugins.c:
4370           Small docs fix and addition.
4371
4372 2007-08-13  Tim-Philipp Müller  <tim at centricular dot net>
4373
4374         * tests/icles/.cvsignore:
4375         * tests/icles/Makefile.am:
4376         * tests/icles/test-textoverlay.c:
4377           Add a dumb little test for textoverlay alignments.
4378
4379 2007-08-13  Tim-Philipp Müller  <tim at centricular dot net>
4380
4381         Patch by: Dan Williams  <dcbw redhat com>
4382
4383         * ext/pango/gsttextoverlay.c:
4384         * ext/pango/gsttextoverlay.h:
4385           API: add "line-alignment" property (#459334). Add gtk-doc blurb for
4386           "silent" property so there's a Since tag in the API reference.
4387
4388 2007-08-12  Wim Taymans  <wim.taymans@gmail.com>
4389
4390         * gst-libs/gst/rtp/gstbasertppayload.c:
4391         (gst_basertppayload_set_outcaps):
4392         * gst-libs/gst/rtp/gstbasertppayload.h:
4393         Improve caps negotiation so that downstream elements can confiure
4394         certain RTP properties by fixing them on the caps. See #465146.
4395         Add docs.
4396
4397 2007-08-11  Tim-Philipp Müller  <tim at centricular dot net>
4398
4399         * docs/libs/gst-plugins-base-libs-sections.txt:
4400         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4401         * gst-libs/gst/rtp/gstbasertpdepayload.h:
4402           Mark as deprecated some macros which were presumably meant to be
4403           private API and accidentally exposed in the public header file.
4404           Also actually _init() lock (only works at the moment because the
4405           struct is zeroed out when created and the initial values in the
4406           mutex struct are zeroes too). (#459585)
4407
4408 2007-08-10  Stefan Kost  <ensonic@users.sf.net>
4409
4410         * docs/libs/Makefile.am:
4411           Remove cruft and do some cleanups.
4412
4413         * docs/libs/gst-plugins-base-libs-docs.sgml:
4414           Prepare for comming gtkdoc features (rebase against online docs).
4415
4416 2007-08-10  Michael Smith <msmith@fluendo.com>
4417
4418         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
4419           Debug output fixes.
4420         * tests/check/elements/audiorate.c: (do_perfect_stream_test),
4421         (GST_START_TEST):
4422           Change the number of buffers used; 500 is too many and leads to
4423           timeouts.
4424
4425 2007-08-10  Tim-Philipp Müller  <tim at centricular dot net>
4426
4427         * gst/playback/gstqueue2.c:
4428         * gst/videorate/gstvideorate.c:
4429           Printf format fixes (#465028).
4430
4431 2007-08-09  Michael Smith <msmith@fluendo.com>
4432
4433         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
4434           If we have a large (> 1 second) discontinuity, push a series of
4435           smaller buffers rather than a single very large buffer. Avoids
4436           unreasonably large single buffer allocations when encountering a
4437           large gap.
4438         * tests/check/elements/audiorate.c: (GST_START_TEST),
4439         (audiorate_suite):
4440           Add a test for this.
4441
4442 2007-08-09  Jan Schmidt  <thaytan@mad.scientist.com>
4443
4444         * gst/playback/gstplaybasebin.c: (group_commit),
4445         (queue_remove_probe), (queue_threshold_reached):
4446
4447         Patch by: Josep Torra Valles <josep@fluendo.com>
4448         Fixes: #465015
4449         Make sure we remove the check_queues buffer probe from the 
4450         correct queue to avoid racily going back to "buffering 99%" when
4451         buffering is actually complete.
4452
4453         Also, fix the spelling of Josep's surname in the ChangeLog.
4454
4455 2007-08-09  Stefan Kost  <ensonic@users.sf.net>
4456
4457         * ext/ogg/gstoggmux.c:
4458           Do not leak oggmux instance.
4459         
4460         * ext/vorbis/vorbisenc.c:
4461           Also log values.
4462
4463 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
4464
4465         * po/hu.po:
4466         * po/it.po:
4467         * po/nl.po:
4468         * po/uk.po:
4469         * po/vi.po:
4470           Updated translations.
4471
4472 2007-08-08  Stefan Kost  <ensonic@users.sf.net>
4473
4474         patch by: Yang Hong <hongyang@redflag-linux.com>
4475
4476         * ext/pango/gsttextoverlay.c:
4477         * ext/pango/gsttextoverlay.h:
4478           Add 'silent' property to GstTimeOverlay. Fixes #462979
4479
4480 2007-08-08  Wim Taymans  <wim.taymans@gmail.com>
4481
4482         Patch by: Josep Torra Valles <josep@fluendo.com>
4483
4484         * docs/plugins/gst-plugins-base-plugins.args:
4485         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init),
4486         (gst_uri_decode_bin_init), (gst_uri_decode_bin_set_property),
4487         (gst_uri_decode_bin_get_property), (gen_source_element):
4488         Add connection-speed property. Fixes #464690.
4489
4490 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
4491
4492         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
4493
4494         * configure.ac:
4495         * gst-libs/gst/rtsp/Makefile.am:
4496         * gst-libs/gst/rtsp/gstrtspconnection.c:
4497         (gst_rtsp_connection_connect):
4498         Fix compilation on windows. Fixes #464320.
4499
4500 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
4501
4502         Patch by: Josep Torra Valles <josep@fluendo.com>
4503
4504         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
4505         (gst_play_base_bin_init), (queue_threshold_reached),
4506         (gen_source_element), (setup_substreams),
4507         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
4508         (gst_play_base_bin_get_streaminfo_value_array):
4509         * gst/playback/gstplaybasebin.h:
4510         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
4511         (gst_play_bin_set_property), (gst_play_bin_get_property),
4512         (gst_play_bin_handle_redirect_message):
4513         Move connection-speed property from playbin to playbasebin so that we
4514         can also configure it in source elements that have the connection-speed
4515         property. Fixes #464028.
4516         Add some debug info here and there.
4517
4518 2007-08-06  Sebastian Dröge  <slomo@circular-chaos.org>
4519
4520         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
4521         Properly respond to conversion queries. Fixes #464079.
4522
4523 2007-08-03  Sebastian Dröge  <slomo@circular-chaos.org>
4524
4525         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_init),
4526         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
4527         (gst_audio_test_src_init_sine_table),
4528         (gst_audio_test_src_change_wave), (gst_audio_test_src_create):
4529         * gst/audiotestsrc/gstaudiotestsrc.h:
4530         Add float/double and int32 support to audiotestsrc. Fixes #460422.
4531         Also set the default volume to the default value specified in the
4532         GParamSpec.
4533
4534 2007-08-03  Sebastian Dröge  <slomo@circular-chaos.org>
4535
4536         Patch by: Jens Granseuer <jensgr at gmx dot net>
4537
4538         * gst/audioconvert/gstaudioquantize.c:
4539         Fix C89 incompatibilities and spelling of explanations. Fixes #463215.
4540
4541 2007-08-03  Wim Taymans  <wim.taymans@gmail.com>
4542
4543         * gst-libs/gst/rtsp/gstrtsptransport.c: (gst_rtsp_transport_parse):
4544         Add rdt manager for rdt transport.
4545         Fix parsing of RDT transport.
4546
4547 2007-08-03  Jan Schmidt  <thaytan@mad.scientist.com>
4548
4549         * configure.ac:
4550         Back to CVS
4551
4552 === release 0.10.14 ===
4553
4554 2007-08-03  Jan Schmidt <thaytan@mad.scientist.com>
4555
4556         * configure.ac:
4557           releasing 0.10.14, "Light Years Ahead"
4558
4559 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
4560
4561         * tests/check/libs/audio.c: (GST_START_TEST):
4562         Fix the test to reflect the behaviour of gst_audio_clip_buffer.
4563
4564 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
4565
4566         * gst-libs/gst/audio/audio.c:
4567         When clipping a buffer with no timestamp, assume it is
4568         within the segment without warnings.
4569
4570         Fixes: #460978
4571
4572 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
4573
4574         * gst-libs/gst/rtsp/gstrtspextension.c: (gst_rtsp_extension_send):
4575         Fire the signal on the object, not the interface.
4576
4577 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
4578
4579         * gst-libs/gst/rtsp/.cvsignore:
4580         Ber. Don't include the full path, idiot.
4581
4582 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
4583
4584         * gst-libs/gst/rtsp/.cvsignore:
4585         Ignore generated files.
4586
4587 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
4588
4589         * gst-libs/gst/interfaces/Makefile.am:
4590         * gst-libs/gst/interfaces/interfaces-marshal.list:
4591         * gst-libs/gst/interfaces/rtspextension.c:
4592         * gst-libs/gst/interfaces/rtspextension.h:
4593         * gst-libs/gst/rtsp/Makefile.am:
4594         * gst-libs/gst/rtsp/gstrtsp.h:
4595         * gst-libs/gst/rtsp/gstrtspextension.c:
4596         (gst_rtsp_extension_get_type), (gst_rtsp_extension_iface_init),
4597         (gst_rtsp_extension_detect_server),
4598         (gst_rtsp_extension_before_send), (gst_rtsp_extension_after_send),
4599         (gst_rtsp_extension_parse_sdp), (gst_rtsp_extension_setup_media),
4600         (gst_rtsp_extension_configure_stream),
4601         (gst_rtsp_extension_get_transports),
4602         (gst_rtsp_extension_stream_select), (gst_rtsp_extension_send):
4603         * gst-libs/gst/rtsp/gstrtspextension.h:
4604         * gst-libs/gst/rtsp/rtsp-marshal.list:
4605         Move the rtspextension.h interface into gstrtspextension.h
4606         as part of libgstrtsp instead of libgstinterfaces, because it's
4607         only for use within plugins, not applications. 
4608         Add stuff to do the enum & marshal generation needed in libgstrtsp now.
4609         Use the GST_TYPE_RTSP_RESULT enum type for the return value of the 
4610         signal that the GstRTSPExtension interface emits, since G_TYPE_ENUM
4611         is abstract.
4612
4613 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
4614
4615         * gst-libs/gst/interfaces/Makefile.am:
4616         * gst-libs/gst/interfaces/interfaces-marshal.list:
4617         * gst-libs/gst/interfaces/rtspextension.c:
4618         (gst_rtsp_extension_iface_init),
4619         (gst_rtsp_extension_stream_select), (gst_rtsp_extension_send):
4620         * gst-libs/gst/interfaces/rtspextension.h:
4621         Fix marshaller for the send signal.
4622         Add URL to stream selection interface method.
4623
4624 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
4625
4626         * gst-libs/gst/riff/Makefile.am:
4627         Pull in our dependencies from -base before those from outside.
4628
4629 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
4630
4631         * docs/libs/gst-plugins-base-libs-sections.txt:
4632         * gst-libs/gst/rtsp/gstrtspbase64.c: (gst_rtsp_base64_decode_ip):
4633         * gst-libs/gst/rtsp/gstrtspbase64.h:
4634         API: gst_rtsp_base64_decode_ip()
4635         Added function to decode Base64 in-place.
4636
4637 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
4638
4639         * tests/check/libs/.cvsignore:
4640         Ignore the mixer test binary.
4641
4642 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
4643
4644         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward):
4645         Gratuitous comment change to trigger a rebuild on the buildbots.
4646
4647 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
4648
4649         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_media_get_media),
4650         (gst_sdp_media_get_port), (gst_sdp_media_get_num_ports),
4651         (gst_sdp_media_get_proto), (gst_sdp_media_formats_len),
4652         (gst_sdp_media_get_format), (gst_sdp_media_get_information),
4653         (gst_sdp_media_connections_len), (gst_sdp_media_get_connection),
4654         (gst_sdp_media_bandwidths_len), (gst_sdp_media_get_badwidth),
4655         (gst_sdp_media_get_key), (gst_sdp_media_attributes_len),
4656         (gst_sdp_media_get_attribute), (gst_sdp_media_get_attribute_val_n),
4657         (gst_sdp_media_get_attribute_val):
4658         * gst-libs/gst/sdp/gstsdpmessage.h:
4659         Constify args where we can.
4660
4661 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
4662
4663         * gst-libs/gst/interfaces/Makefile.am:
4664         * gst-libs/gst/interfaces/rtspextension.c:
4665         (gst_rtsp_extension_get_type), (gst_rtsp_extension_iface_init),
4666         (gst_rtsp_extension_detect_server),
4667         (gst_rtsp_extension_before_send), (gst_rtsp_extension_after_send),
4668         (gst_rtsp_extension_parse_sdp), (gst_rtsp_extension_setup_media),
4669         (gst_rtsp_extension_configure_stream),
4670         (gst_rtsp_extension_get_transports),
4671         (gst_rtsp_extension_stream_select), (gst_rtsp_extension_send):
4672         * gst-libs/gst/interfaces/rtspextension.h:
4673         Move interface for RTSP extensions from -good to here.
4674         Added helper methods to invoke interface methods.
4675
4676 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
4677
4678         * docs/libs/gst-plugins-base-libs-sections.txt:
4679         * gst-libs/gst/rtsp/gstrtspdefs.h:
4680         * gst-libs/gst/rtsp/gstrtspmessage.c: (key_value_foreach),
4681         (gst_rtsp_message_get_type), (gst_rtsp_message_parse_request),
4682         (gst_rtsp_message_init_response),
4683         (gst_rtsp_message_parse_response), (gst_rtsp_message_new_data),
4684         (gst_rtsp_message_parse_data), (gst_rtsp_message_add_header),
4685         (gst_rtsp_message_remove_header), (gst_rtsp_message_get_header),
4686         (gst_rtsp_message_append_headers), (gst_rtsp_message_set_body),
4687         (gst_rtsp_message_get_body), (dump_key_value):
4688         * gst-libs/gst/rtsp/gstrtspmessage.h:
4689         * gst-libs/gst/rtsp/gstrtsprange.c: (parse_npt_time),
4690         (parse_npt_range), (parse_clock_range), (parse_smpte_range),
4691         (gst_rtsp_range_parse):
4692         * gst-libs/gst/rtsp/gstrtsprange.h:
4693         * gst-libs/gst/rtsp/gstrtsptransport.c:
4694         * gst-libs/gst/rtsp/gstrtspurl.c:
4695         Fix some more RTSP docs.
4696         Add some missing methods for dealing with messages.
4697
4698 2007-07-24  Wim Taymans  <wim.taymans@gmail.com>
4699
4700         * docs/libs/gst-plugins-base-libs-docs.sgml:
4701         * docs/libs/gst-plugins-base-libs-sections.txt:
4702         * gst-libs/gst/rtsp/gstrtspbase64.c: (gst_rtsp_base64_encode):
4703         * gst-libs/gst/rtsp/gstrtspbase64.h:
4704         * gst-libs/gst/rtsp/gstrtspconnection.c:
4705         (gst_rtsp_connection_connect), (add_auth_header),
4706         (gst_rtsp_connection_write), (gst_rtsp_connection_send),
4707         (read_body), (gst_rtsp_connection_receive),
4708         (gst_rtsp_connection_next_timeout),
4709         (gst_rtsp_connection_reset_timeout),
4710         (gst_rtsp_connection_set_auth):
4711         * gst-libs/gst/rtsp/gstrtspconnection.h:
4712         * gst-libs/gst/rtsp/gstrtspdefs.c: (rtsp_init_status):
4713         * gst-libs/gst/rtsp/gstrtspdefs.h:
4714         * gst-libs/gst/rtsp/gstrtspmessage.h:
4715         * gst-libs/gst/rtsp/gstrtsprange.c: (parse_npt_time),
4716         (parse_npt_range), (parse_clock_range), (parse_smpte_range),
4717         (gst_rtsp_range_parse):
4718         * gst-libs/gst/rtsp/gstrtspurl.h:
4719         Added beginnings of RTSP documentation.
4720
4721 2007-07-24  Wim Taymans  <wim.taymans@gmail.com>
4722
4723         * docs/libs/Makefile.am:
4724         * docs/libs/gst-plugins-base-libs-docs.sgml:
4725         * docs/libs/gst-plugins-base-libs-sections.txt:
4726         * gst-libs/gst/sdp/gstsdp.h:
4727         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_message_set_origin),
4728         (gst_sdp_message_set_connection), (gst_sdp_message_add_bandwidth),
4729         (gst_sdp_message_add_time), (gst_sdp_message_add_zone),
4730         (gst_sdp_message_set_key), (gst_sdp_message_get_attribute_val_n),
4731         (gst_sdp_message_get_attribute_val),
4732         (gst_sdp_message_add_attribute), (gst_sdp_media_new),
4733         (gst_sdp_media_init), (gst_sdp_media_uninit), (gst_sdp_media_free),
4734         (gst_sdp_media_get_media), (gst_sdp_media_set_media),
4735         (gst_sdp_media_get_port), (gst_sdp_media_get_num_ports),
4736         (gst_sdp_media_set_port_info), (gst_sdp_media_get_proto),
4737         (gst_sdp_media_set_proto), (gst_sdp_media_formats_len),
4738         (gst_sdp_media_get_format), (gst_sdp_media_add_format),
4739         (gst_sdp_media_get_information), (gst_sdp_media_set_information),
4740         (gst_sdp_media_connections_len), (gst_sdp_media_get_connection),
4741         (gst_sdp_media_add_connection), (gst_sdp_media_bandwidths_len),
4742         (gst_sdp_media_get_badwidth), (gst_sdp_media_add_bandwidth),
4743         (gst_sdp_media_set_key), (gst_sdp_media_get_key),
4744         (gst_sdp_media_attributes_len), (gst_sdp_media_add_attribute),
4745         (gst_sdp_media_get_attribute_val_n),
4746         (gst_sdp_media_get_attribute_val), (gst_sdp_message_parse_buffer),
4747         (print_media), (gst_sdp_message_dump):
4748         * gst-libs/gst/sdp/gstsdpmessage.h:
4749         Document the SDP library.
4750         Add some of the missing SDPMedia methods.
4751
4752 2007-07-24  Wim Taymans  <wim.taymans@gmail.com>
4753
4754         * configure.ac:
4755         * gst-libs/gst/Makefile.am:
4756         * gst-libs/gst/rtsp/Makefile.am:
4757         * gst-libs/gst/rtsp/gstrtspbase64.c: (gst_rtsp_base64_encode):
4758         * gst-libs/gst/rtsp/gstrtspbase64.h:
4759         * gst-libs/gst/rtsp/gstrtspconnection.c: (inet_aton),
4760         (gst_rtsp_connection_create), (gst_rtsp_connection_connect),
4761         (add_auth_header), (add_date_header), (gst_rtsp_connection_write),
4762         (gst_rtsp_connection_send), (read_line), (read_string), (read_key),
4763         (parse_response_status), (parse_request_line), (parse_line),
4764         (gst_rtsp_connection_read), (read_body),
4765         (gst_rtsp_connection_receive), (gst_rtsp_connection_close),
4766         (gst_rtsp_connection_free), (gst_rtsp_connection_next_timeout),
4767         (gst_rtsp_connection_reset_timeout), (gst_rtsp_connection_flush),
4768         (gst_rtsp_connection_set_auth):
4769         * gst-libs/gst/rtsp/gstrtspconnection.h:
4770         * gst-libs/gst/rtsp/gstrtspdefs.c: (rtsp_init_status),
4771         (gst_rtsp_strresult), (gst_rtsp_method_as_text),
4772         (gst_rtsp_version_as_text), (gst_rtsp_header_as_text),
4773         (gst_rtsp_status_as_text), (gst_rtsp_find_header_field),
4774         (gst_rtsp_find_method):
4775         * gst-libs/gst/rtsp/gstrtspdefs.h:
4776         * gst-libs/gst/rtsp/gstrtspmessage.c: (key_value_foreach),
4777         (gst_rtsp_message_new), (gst_rtsp_message_init),
4778         (gst_rtsp_message_new_request), (gst_rtsp_message_init_request),
4779         (gst_rtsp_message_new_response), (gst_rtsp_message_init_response),
4780         (gst_rtsp_message_init_data), (gst_rtsp_message_unset),
4781         (gst_rtsp_message_free), (gst_rtsp_message_add_header),
4782         (gst_rtsp_message_remove_header), (gst_rtsp_message_get_header),
4783         (gst_rtsp_message_append_headers), (gst_rtsp_message_set_body),
4784         (gst_rtsp_message_take_body), (gst_rtsp_message_get_body),
4785         (gst_rtsp_message_steal_body), (dump_mem), (dump_key_value),
4786         (gst_rtsp_message_dump):
4787         * gst-libs/gst/rtsp/gstrtspmessage.h:
4788         * gst-libs/gst/rtsp/gstrtsprange.c: (parse_npt_time),
4789         (parse_npt_range), (parse_clock_range), (parse_smpte_range),
4790         (gst_rtsp_range_parse), (gst_rtsp_range_free):
4791         * gst-libs/gst/rtsp/gstrtsprange.h:
4792         * gst-libs/gst/rtsp/gstrtsptransport.c: (gst_rtsp_transport_new),
4793         (gst_rtsp_transport_init), (gst_rtsp_transport_get_mime),
4794         (gst_rtsp_transport_get_manager), (parse_mode), (parse_range),
4795         (range_as_text), (rtsp_transport_mode_as_text),
4796         (rtsp_transport_profile_as_text), (rtsp_transport_ltrans_as_text),
4797         (gst_rtsp_transport_parse), (gst_rtsp_transport_as_text),
4798         (gst_rtsp_transport_free):
4799         * gst-libs/gst/rtsp/gstrtsptransport.h:
4800         * gst-libs/gst/rtsp/gstrtspurl.c: (gst_rtsp_url_parse),
4801         (gst_rtsp_url_free), (gst_rtsp_url_set_port),
4802         (gst_rtsp_url_get_port), (gst_rtsp_url_get_request_uri):
4803         * gst-libs/gst/rtsp/gstrtspurl.h:
4804         * gst-libs/gst/sdp/Makefile.am:
4805         * gst-libs/gst/sdp/gstsdp.h:
4806         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_origin_init),
4807         (gst_sdp_connection_init), (gst_sdp_bandwidth_init),
4808         (gst_sdp_time_init), (gst_sdp_zone_init), (gst_sdp_key_init),
4809         (gst_sdp_attribute_init), (gst_sdp_message_new),
4810         (gst_sdp_message_init), (gst_sdp_message_uninit),
4811         (gst_sdp_message_free), (gst_sdp_media_new), (gst_sdp_media_init),
4812         (gst_sdp_media_uninit), (gst_sdp_media_free),
4813         (gst_sdp_message_set_origin), (gst_sdp_message_get_origin),
4814         (gst_sdp_message_set_connection), (gst_sdp_message_get_connection),
4815         (gst_sdp_message_add_bandwidth), (gst_sdp_message_add_time),
4816         (gst_sdp_message_add_zone), (gst_sdp_message_set_key),
4817         (gst_sdp_message_get_key), (gst_sdp_message_get_attribute_val_n),
4818         (gst_sdp_message_get_attribute_val),
4819         (gst_sdp_message_add_attribute), (gst_sdp_message_add_media),
4820         (gst_sdp_media_add_attribute), (gst_sdp_media_add_bandwidth),
4821         (gst_sdp_media_add_format), (gst_sdp_media_get_attribute),
4822         (gst_sdp_media_get_attribute_val_n),
4823         (gst_sdp_media_get_attribute_val), (gst_sdp_media_get_format),
4824         (read_string), (read_string_del), (gst_sdp_parse_line),
4825         (gst_sdp_message_parse_buffer), (print_media),
4826         (gst_sdp_message_dump):
4827         * gst-libs/gst/sdp/gstsdpmessage.h:
4828         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
4829         Move SDP and RTSP from helper objects in -good to a reusable library.
4830         Use a proper gst_ namespace.
4831
4832 2007-07-23  Sebastian Dröge  <slomo@circular-chaos.org>
4833
4834         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
4835         (vorbis_dec_flush_decode):
4836         Use the new buffer clipping function from gstaudio here.
4837
4838 2007-07-23  Sebastian Dröge  <slomo@circular-chaos.org>
4839
4840         * docs/libs/gst-plugins-base-libs-sections.txt:
4841         * gst-libs/gst/audio/audio.c: (gst_audio_buffer_clip):
4842         * gst-libs/gst/audio/audio.h:
4843         * tests/check/libs/audio.c: (GST_START_TEST), (audio_suite):
4844         API: Add buffer clipping function for raw audio buffers. Fixes #456656.
4845         Also add deprecation guards for gst_audio_structure_set_int() to the
4846         header.
4847
4848 2007-07-23  Stefan Kost  <ensonic@users.sf.net>
4849
4850         * docs/libs/gst-plugins-base-libs-sections.txt:
4851           Cleanup the docs.
4852
4853 2007-07-23  Wim Taymans  <wim.taymans@gmail.com>
4854
4855         Patch by: Dan Williams <dcbw at redhat dot com>
4856
4857         * gst/playback/gstplaybasebin.c:
4858         (gst_play_base_bin_get_streaminfo_value_array):
4859         Don't return NULL when querying the stream info value array but instead
4860         return an empty array. Fixes #459204.
4861
4862 2007-07-23  Tim-Philipp Müller  <tim at centricular dot net>
4863
4864         * gst/playback/gsturidecodebin.c:
4865           Init debug category before using it.
4866
4867 2007-07-21  Jan Schmidt  <thaytan@noraisin.net>
4868
4869         * gst-libs/gst/interfaces/mixer.h:
4870         Add padding vars in place of the signal pointers
4871         when building with DISABLE_DEPRECATED so that the
4872         interface structure doesn't change size.
4873
4874 2007-07-20  Jan Schmidt  <thaytan@noraisin.net>
4875
4876         * docs/libs/gst-plugins-base-libs-sections.txt:
4877         * ext/alsa/gstalsamixer.c:
4878         * ext/alsa/gstalsamixer.h:
4879         * ext/alsa/gstalsamixerelement.c:
4880         * ext/alsa/gstalsamixertrack.c:
4881         * gst-libs/gst/interfaces/mixer.c:
4882         * gst-libs/gst/interfaces/mixer.h:
4883         * gst-libs/gst/interfaces/mixeroptions.c:
4884         * gst-libs/gst/interfaces/mixeroptions.h:
4885         * gst-libs/gst/interfaces/mixertrack.c:
4886         * gst-libs/gst/interfaces/mixertrack.h:
4887         * tests/check/Makefile.am:
4888         * tests/check/libs/mixer.c:
4889
4890         Patch By: Marc-Andre Lureau <marcandre.lureau@gmail.com>
4891         Fixes: #152864 
4892
4893         Add support for notifying mixer changes on the message bus, and
4894         implement it in alsamixer.
4895
4896         API: gst_mixer_get_mixer_flags
4897         API: gst_mixer_message_parse_mute_toggled
4898         API: gst_mixer_message_parse_record_toggled
4899         API: gst_mixer_message_parse_volume_changed
4900         API: gst_mixer_message_parse_option_changed
4901         API: GstMixerMessageType
4902         API: GstMixerFlags
4903
4904 2007-07-20  Michael Smith <msmith@fluendo.com>
4905
4906         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
4907         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps):
4908           xcontext->im_format is only for testing XShm support (as the header
4909           file comments document). Use xvimage->im_format for everything else.
4910           Avoids spurious warnings on buffer allocation before setcaps.
4911
4912 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
4913
4914         * tests/examples/volume/Makefile.am:
4915         * tests/icles/Makefile.am:
4916           We should use $(LIBM).
4917
4918 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
4919
4920         * tests/icles/Makefile.am:
4921           This needs -lm.
4922
4923 2007-07-16  Wim Taymans  <wim.taymans@gmail.com>
4924
4925         * gst-libs/gst/rtp/gstbasertppayload.c:
4926         (gst_basertppayload_class_init), (gst_basertppayload_init),
4927         (gst_basertppayload_set_property),
4928         (gst_basertppayload_get_property):
4929         Don't break ABI, restore previous ranges. Keep the default random
4930         selection of timestamp and seqnum offset but as soon as the app sets a
4931         specific value, use that one.
4932
4933 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
4934
4935         Patch by: Bastien Nocera <hadess at hadess dot net>
4936
4937         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
4938         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
4939         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
4940         * sys/xvimage/xvimagesink.h:
4941         Add option to turn off double-buffering for debugging purposes.
4942         Fixes #437169.
4943
4944 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
4945
4946         Patch by: Jorn Baayen <jorn at openedhand dot com>
4947
4948         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
4949         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
4950         (gst_ximagesink_init), (gst_ximagesink_class_init):
4951         * sys/ximage/ximagesink.h:
4952         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
4953         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
4954         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
4955         * sys/xvimage/xvimagesink.h:
4956         add 'handle-expose' property. Useful for video widgets which may want to
4957         be in control of Expose behaviour. Fixes #380625
4958
4959 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
4960
4961         * gst-libs/gst/rtp/gstbasertppayload.c:
4962         (gst_basertppayload_class_init), (gst_basertppayload_init),
4963         (gst_basertppayload_event), (gst_basertppayload_push),
4964         (gst_basertppayload_set_property),
4965         (gst_basertppayload_get_property),
4966         (gst_basertppayload_change_state):
4967         * gst-libs/gst/rtp/gstbasertppayload.h:
4968         Fix ranges of rtp payloader properties so that the full range can be
4969         used in addition to -1 (random).
4970         Fix wrong seqnum reporting in caps.
4971         Fixes #420326.
4972
4973 2007-07-13  Wim Taymans  <wim.taymans@gmail.com>
4974
4975         * gst/videorate/gstvideorate.c: (gst_video_rate_init),
4976         (gst_video_rate_query):
4977         Use boilerplate.
4978         Add latency query, might not be perfect yet but already works a lot
4979         better. Fixes #442557.
4980
4981 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
4982
4983         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
4984         (gst_xvimagesink_setcaps):
4985         * sys/xvimage/xvimagesink.h:
4986         After a caps change, redraw our borders to avoid garbage left there
4987         when the image format changes to a smaller size, like 16:9 -> 4:3
4988         Also, hold the flow_lock a bit longer in the set_caps while we're
4989         fiddling with the xcontext.
4990
4991 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
4992
4993         * Makefile.am:
4994         * configure.ac:
4995         * tests/Makefile.am:
4996         Remove bogus check for libcheck, since we check for
4997         gstreamer-check and it pulls in the required info from there, and we
4998         weren't actually _using_ the information for libcheck ourselves
4999         anyway.
5000
5001 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
5002
5003         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
5004         (gst_ffmpeg_caps_to_pixfmt):
5005         Fix the r_mask test for RGBA32 on little-endian.
5006         Fix a stupid typo that would have obviously broken 
5007         compilation on big-endian, if anyone was testing.
5008
5009 2007-07-12  Wim Taymans  <wim.taymans@gmail.com>
5010
5011         * gst/videotestsrc/videotestsrc.c: (paint_hline_AYUV),
5012         (paint_hline_str4):
5013         * gst/videotestsrc/videotestsrc.h:
5014         Add alpha to the color struct.
5015         Use a default alpha value of 255 instead of 128.
5016
5017 2007-07-12  Wim Taymans  <wim.taymans@gmail.com>
5018
5019         * gst/playback/gstplaybasebin.c: (no_more_pads_full),
5020         (setup_source):
5021         Clear the dynamic pads counter when starting a new uri. This makes
5022         reusing playbin work again.
5023         Fixes #454264.
5024
5025 2007-07-12  Stefan Kost  <ensonic@users.sf.net>
5026
5027         * configure.ac:
5028           Use pkg-config to locate check.
5029
5030 2007-07-12  Tim-Philipp Müller  <tim at centricular dot net>
5031
5032         * configure.ac:
5033         * tests/check/elements/volume.c: (GST_START_TEST):
5034           Fix 'make check' build against core CVS.
5035
5036 2007-07-10  Stefan Kost  <ensonic@users.sf.net>
5037
5038         * gst-libs/gst/interfaces/propertyprobe.c:
5039         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
5040         * gst-libs/gst/tag/gstvorbistag.c:
5041           Make gtk-doc happy.
5042
5043 2007-07-08  Tim-Philipp Müller  <tim at centricular dot net>
5044
5045         * gst-libs/gst/audio/gstbaseaudiosink.c:
5046         (gst_base_audio_sink_callback):
5047           Quick hack to make audiosinks stop at EOS when operating in
5048           pull-mode; needs to be fixed properly some day.
5049
5050 2007-07-06  Stefan Kost  <ensonic@users.sf.net>
5051
5052         * docs/libs/gst-plugins-base-libs-sections.txt:
5053           Fix location of includes in the docs.
5054
5055 2007-07-06  Jan Schmidt  <thaytan@mad.scientist.com>
5056
5057         * gst/ffmpegcolorspace/avcodec.h:
5058         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
5059         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
5060         (gst_ffmpegcsp_avpicture_fill):
5061         * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
5062         (img_get_alpha_info):
5063         Add 2 new pixel formats - ABGR32 and ARGB32, which are reflections
5064         of the existing BGRA32 and RGBA32 formats with the alpha at the other
5065         end of the word. Partially fixes #451908
5066
5067 2007-07-05  Stefan Kost  <ensonic@users.sf.net>
5068
5069         * docs/libs/Makefile.am:
5070         * docs/plugins/Makefile.am:
5071           Simplify --extra-dir as gtkdoc scans recursively.
5072
5073 2007-07-03  Wim Taymans  <wim.taymans@gmail.com>
5074
5075         * gst/adder/gstadder.c: (gst_adder_sink_getcaps),
5076         (gst_adder_request_new_pad):
5077         Make getcaps more robust by not using the proxycaps function. This makes
5078         sure that we don't end up recursively calling getcaps upstream.
5079         See #316248.
5080
5081 2007-06-29  Wim Taymans  <wim.taymans@gmail.com>
5082
5083         * gst/audioconvert/audioconvert.c:
5084         Include math.h to fix compilation.
5085
5086 2007-06-29  Jan Schmidt  <thaytan@mad.scientist.com>
5087
5088         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
5089         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
5090         Add a mapping for YUV format "IYU1", which is a 4:1:1 packed pixel
5091         format, as produced by some dc1394 cameras like the iSight.
5092         See http://www.fourcc.org/yuv.php#IYU1
5093
5094 2007-06-28  Sebastian Dröge  <slomo@circular-chaos.org>
5095
5096         * gst/audioconvert/Makefile.am:
5097         * gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
5098         (check_default), (audio_convert_prepare_context),
5099         (audio_convert_clean_context), (audio_convert_convert):
5100         * gst/audioconvert/audioconvert.h:
5101         * gst/audioconvert/gstaudioconvert.c:
5102         (gst_audio_convert_dithering_get_type),
5103         (gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
5104         (gst_audio_convert_init), (gst_audio_convert_set_caps),
5105         (gst_audio_convert_set_property), (gst_audio_convert_get_property):
5106         * gst/audioconvert/gstaudioconvert.h:
5107         * gst/audioconvert/gstaudioquantize.c:
5108         (gst_audio_quantize_setup_noise_shaping),
5109         (gst_audio_quantize_free_noise_shaping),
5110         (gst_audio_quantize_setup_dither),
5111         (gst_audio_quantize_free_dither),
5112         (gst_audio_quantize_setup_quantize_func),
5113         (gst_audio_quantize_setup), (gst_audio_quantize_free):
5114         * gst/audioconvert/gstaudioquantize.h:
5115         Implement dithering and noise shaping in audioconvert. By default now
5116         TPDF dithering (and no noise shaping) will be used when converting
5117         from a higher bit depth to 20 bit depth or smaller, otherwise
5118         everything will be as it is now.
5119         For the last audioconvert in a pipeline it would make sense to
5120         use some kind of noise shaping, enabling it by default for all
5121         conversions would give undesired results though. Fixes #360246.
5122         * tests/check/elements/audioconvert.c: (setup_audioconvert),
5123         (GST_START_TEST):
5124         Adjust unit test for the new audioconvert.
5125
5126 2007-06-28  Wim Taymans  <wim@fluendo.com>
5127
5128         * gst/playback/gstqueue2.c: (apply_segment), (update_buffering):
5129         Use other metrics as well when estimating the buffer level.
5130
5131 2007-06-28  Wim Taymans  <wim@fluendo.com>
5132
5133         * gst/playback/gstplaybasebin.c: (make_decoder), (setup_source):
5134         Small debug improvement.
5135
5136         * gst/playback/gstqueue2.c: (apply_segment), (update_buffering),
5137         (plugin_init):
5138         Tweak the rate estimation period.
5139         When calculating the buffer filledness in rate estimation mode, don't
5140         mix it with other metrics.
5141
5142 2007-06-28  Wim Taymans  <wim@fluendo.com>
5143
5144         * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
5145         (gst_decode_group_expose), (gst_decode_group_free), (add_fakesink):
5146         When creating the groups, allow for a 5 second, unlimited buffers
5147         preroll phase after which we expose the group.
5148         When the group is exposed, use a small number of buffers up to a 2
5149         second limit. Also disconnect the overrun signal from multiqueue when we
5150         exposed the group because it is not needed anymore.
5151
5152 2007-06-27  Tim-Philipp Müller  <tim at centricular dot net>
5153
5154         * gst-libs/gst/tag/tags.c: (gst_tag_freeform_string_to_utf8):
5155           Don't pass trailing zeroes in fixed-size string arrays in ID3v1 tags
5156           to utf8-validate; fixes recognition of ID3v1 tags in UTF-8 encoding
5157           (#451707); also, output some debugging info when dealing with
5158           freeform strings.
5159
5160         * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite):
5161           Add unit test for the above.
5162
5163 2007-06-27  Tim-Philipp Müller  <tim at centricular dot net>
5164
5165         * gst-libs/gst/pbutils/descriptions.c: (caps_are_rtp_caps):
5166           Add description for Windows Media RTP caps.
5167
5168         * gst-libs/gst/pbutils/missing-plugins.c: (copy_and_clean_caps):
5169           Remove RTP fields that don't define the format from caps.
5170
5171 2007-06-27  Tim-Philipp Müller  <tim at centricular dot net>
5172
5173         * ext/vorbis/vorbisdec.c: (vorbis_dec_decode_buffer):
5174           Skip empty buffers, but not empty header buffers. That way the original
5175           vorbisdec unit test still passes (#451145); also, take into account
5176           that those empty packets might carry a granulepos.
5177
5178         * tests/check/Makefile.am:
5179         * tests/check/elements/vorbisdec.c:
5180         (_create_codebook_header_buffer), (_create_audio_buffer),
5181         (GST_START_TEST), (vorbisdec_suite):
5182           Add unit test that sends an empty packet.
5183
5184 2007-06-27  Wim Taymans  <wim@fluendo.com>
5185
5186         * ext/vorbis/vorbisdec.c: (vorbis_dec_decode_buffer):
5187         Don't error out on 0-sized packets, just emit a warning because this is
5188         not a fatal error. Fixes #451145.
5189
5190 2007-06-25  Stefan Kost  <ensonic@users.sf.net>
5191
5192         * docs/plugins/gst-plugins-base-plugins.args:
5193         * docs/plugins/gst-plugins-base-plugins.signals:
5194         * docs/plugins/inspect/plugin-adder.xml:
5195         * docs/plugins/inspect/plugin-alsa.xml:
5196         * docs/plugins/inspect/plugin-audioconvert.xml:
5197         * docs/plugins/inspect/plugin-audiorate.xml:
5198         * docs/plugins/inspect/plugin-audioresample.xml:
5199         * docs/plugins/inspect/plugin-audiotestsrc.xml:
5200         * docs/plugins/inspect/plugin-cdparanoia.xml:
5201         * docs/plugins/inspect/plugin-decodebin.xml:
5202         * docs/plugins/inspect/plugin-decodebin2.xml:
5203         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
5204         * docs/plugins/inspect/plugin-gdp.xml:
5205         * docs/plugins/inspect/plugin-gnomevfs.xml:
5206         * docs/plugins/inspect/plugin-libvisual.xml:
5207         * docs/plugins/inspect/plugin-ogg.xml:
5208         * docs/plugins/inspect/plugin-pango.xml:
5209         * docs/plugins/inspect/plugin-playbin.xml:
5210         * docs/plugins/inspect/plugin-subparse.xml:
5211         * docs/plugins/inspect/plugin-tcp.xml:
5212         * docs/plugins/inspect/plugin-theora.xml:
5213         * docs/plugins/inspect/plugin-typefindfunctions.xml:
5214         * docs/plugins/inspect/plugin-video4linux.xml:
5215         * docs/plugins/inspect/plugin-videorate.xml:
5216         * docs/plugins/inspect/plugin-videoscale.xml:
5217         * docs/plugins/inspect/plugin-videotestsrc.xml:
5218         * docs/plugins/inspect/plugin-volume.xml:
5219         * docs/plugins/inspect/plugin-vorbis.xml:
5220         * docs/plugins/inspect/plugin-ximagesink.xml:
5221         * docs/plugins/inspect/plugin-xvimagesink.xml:
5222           Update docs with caps info.
5223
5224 2007-06-25  Tim-Philipp Müller  <tim at centricular dot net>
5225
5226         * po/POTFILES.in:
5227           Add more files with translatable strings (#450875).
5228
5229 2007-06-23  Edward Hervey  <edward@fluendo.com>
5230
5231         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_find_chains):
5232         The chain should be freed if we error out here, else it will leak.
5233         * gst/playback/gstdecodebin.c: (disconnect_unlinked_signals),
5234         (cleanup_decodebin):
5235         Don't forget to *properly* remove the signals, else it will leak.
5236
5237 2007-06-22  Jan Schmidt  <thaytan@noraisin.net>
5238
5239         * MAINTAINERS:
5240         Updating all the maintainers files
5241
5242 2007-06-21  Stefan Kost  <ensonic@users.sf.net>
5243
5244         * tests/examples/seek/seek.c: (update_scale), (play_cb), (stop_cb),
5245         (main):
5246           Destroy and recreate parse-launch based pipeline after stop to be able
5247           to play again. Reorder some code and add more comments.
5248
5249 2007-06-20  Jan Schmidt  <thaytan@mad.scientist.com>
5250
5251         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
5252         When handling a delayed-caps notification case, mark
5253         the group as dynamic so that the nbdynamic count is
5254         incremented and decremented correctly. Fixes: #449156
5255         Patch by: Wim Taymans <wim@fluendo.com>
5256
5257 2007-06-19  Andy Wingo  <wingo@pobox.com>
5258
5259         * gst-libs/gst/audio/gstbaseaudiosink.c
5260         (gst_base_audio_sink_init): Enable pull-mode operation.
5261
5262 2007-06-19  Michael Smith <msmith@fluendo.com>
5263
5264         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
5265           Change minimum rate back to 1000 to allow low-sample-rate wav files
5266           to play back.
5267
5268 2007-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
5269
5270         * po/vi.po:
5271           Update translations.
5272
5273 2007-06-15  David Schleef  <ds@schleef.org>
5274
5275         * gst/playback/gstqueue2.c:
5276           Fix compile error from ignored return value.
5277
5278 2007-06-15  Michael Smith <msmith@fluendo.com>
5279
5280         * gst/videoscale/vs_4tap.c: (vs_image_scale_4tap_Y):
5281           Update tmpbuf for all neccesary rows, not just one, as is required
5282           when downscaling.
5283           Fixes #402076.
5284
5285 2007-06-15  Michael Smith <msmith@fluendo.com>
5286
5287         * tests/check/pipelines/oggmux.c: (validate_ogg_page), (is_video),
5288         (eos_buffer_probe):
5289           Add a test that ensures we set DELTA_UNIT on all non-header,
5290           non-video buffers, if we have a video stream.
5291         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
5292         (gst_ogg_mux_process_best_pad):
5293           Move setting delta_pad to earlier, where we inspect all pads, so
5294           that leading audio pages don't get DELTA_UNIT unset if they come
5295           before the first DELTA_UNIT from video pages. Fixes the newly-added
5296           test. Fixes #385527.
5297
5298 2007-06-14  Tim-Philipp Müller  <tim at centricular dot net>
5299
5300         * tests/check/pipelines/streamheader.c: (streamheader_suite):
5301           Disable test_multifdsink_gdp_vorbisenc() on ppc64 since it
5302           fails on the p5-ppc64 build bot and the failure looks like it is due
5303           to the same issue as #348114, ie. a compiler bug.
5304
5305 2007-06-13  Edward Hervey  <edward@fluendo.com>
5306
5307         * gst/playback/gstqueue2.c: (gst_queue_create_read):
5308         Fix build on MacOSX.
5309
5310 2007-06-13  Wim Taymans  <wim@fluendo.com>
5311
5312         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
5313         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain):
5314         Fix compilation on mingw. Fixes #446972.
5315
5316 2007-06-12  Wim Taymans  <wim@fluendo.com>
5317
5318         Patches by: Thiago Sousa Santos <thiagossantos at gmail dot com>
5319
5320         * gst/playback/gstqueue2.c: (update_buffering),
5321         (gst_queue_locked_enqueue):
5322         Fix a division by zero when the max percent is <= 0. Fixes #446572.
5323         also update the buffering status when receiving events. Fixes #446551.
5324
5325 2007-06-11  Wim Taymans  <wim@fluendo.com>
5326
5327         Based on patch by: Thiago Sousa Santos <thiagossantos at gmail dot com>
5328
5329         * gst/playback/gstqueue2.c: (gst_queue_peer_query),
5330         (gst_queue_handle_src_query):
5331         Wait for preroll before attempting to forward a duration query upstream.
5332         Fixes #445505.
5333
5334 2007-06-07  Sebastien Moutte  <sebastien@moutte.net>
5335
5336         * gst-libs/gst/rtp/gstbasertpdepayload.c: 
5337         (gst_base_rtp_depayload_set_gst_timestamp):
5338         Use G_GINT64_CONSTANT macro for int64 constant.
5339         * win32/common/libgstinterfaces.def:
5340         * win32/common/libgsttag.def:
5341         Add new exported functions.
5342
5343 2007-06-07  Tim-Philipp Müller  <tim at centricular dot net>
5344
5345         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
5346           The BOS page of the first Dirac video stream needs to come before
5347           the BOS page of any Vorbis streams or other audio streams, just like
5348           it is with Theora.
5349
5350 2007-06-07  Wim Taymans  <wim@fluendo.com>
5351
5352         * gst/playback/gstqueue2.c: (gst_queue_get_range):
5353         Fix compilation.
5354
5355 2007-06-06  Wim Taymans  <wim@fluendo.com>
5356
5357         Patch by: Thiago Sousa Santos <thiagossantos at gmail dot com>
5358
5359         * gst/playback/gstqueue2.c: (gst_queue_init),
5360         (gst_queue_handle_sink_event), (gst_queue_chain),
5361         (gst_queue_get_range), (gst_queue_src_checkgetrange_function),
5362         (gst_queue_sink_activate_push), (gst_queue_src_activate_push),
5363         (gst_queue_src_activate_pull):
5364         Add pull based scheduling and fix some deadlocks. Fixes #444523.
5365         Does not yet completely work because duration queries upstream won't
5366         block yet.
5367
5368 2007-06-06  Wim Taymans  <wim@fluendo.com>
5369
5370         * configure.ac:
5371         * gst/playback/gstqueue2.c: (gst_queue_create_read):
5372         Some more fseeko checks.
5373
5374 2007-06-06  Wim Taymans  <wim@fluendo.com>
5375
5376         * configure.ac:
5377         check for large file support.
5378
5379 2007-06-05  Sebastian Dröge  <slomo@circular-chaos.org>
5380
5381         Based on a patch by Sven Arvidsson <sa at whiz dot se>:
5382
5383         * gst/subparse/gstsubparse.c: (parse_subrip),
5384         (subviewer_unescape_newlines), (parse_subviewer),
5385         (gst_sub_parse_data_format_autodetect),
5386         (gst_sub_parse_format_autodetect), (gst_subparse_type_find):
5387         * gst/subparse/gstsubparse.h:
5388         Add support for SubViewer version 1 and 2 subtitles. Fixes #394061.
5389         * tests/check/elements/subparse.c: (GST_START_TEST),
5390         (subparse_suite):
5391         Add a unit test for both SubViewer formats.
5392
5393 2007-06-01  Michael Smith <msmith@fluendo.com>
5394
5395         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_do_seek):
5396           Don't overflow intermediate values when seeking to large time values
5397           in audiotestsrc.
5398
5399 2007-06-05  Wim Taymans  <wim@fluendo.com>
5400
5401         * gst/playback/gstqueue2.c: (gst_queue_have_data),
5402         (gst_queue_create_read), (gst_queue_read_item_from_file),
5403         (gst_queue_open_temp_location_file), (gst_queue_locked_enqueue):
5404         Include stdio to define fseeko.
5405
5406 2007-06-05  Wim Taymans  <wim@fluendo.com>
5407
5408         Patch by: Edward Hervey  <edward@fluendo.com>
5409
5410         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
5411         (gst_v4lsrc_query):
5412         Make v4lsrc output segments in GST_FORMAT_TIME. Fixes #442553.
5413
5414 2007-06-05  Tim-Philipp Müller  <tim at centricular dot net>
5415
5416         * gst-libs/gst/riff/Makefile.am:
5417         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_info):
5418           Use gst_tag_utf8_from_freeform_string() from libgsttag instead of
5419           our own implementation.
5420
5421 2007-06-05  Wim Taymans  <wim@fluendo.com>
5422
5423         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5424         (gst_base_rtp_depayload_setcaps),
5425         (gst_base_rtp_depayload_set_gst_timestamp),
5426         (gst_base_rtp_depayload_change_state):
5427         Handle timestamp wraparound.
5428
5429 2007-06-05  Wim Taymans  <wim@fluendo.com>
5430
5431         * gst/playback/gsturidecodebin.c: (no_more_pads_full),
5432         (new_decoded_pad), (remove_pads), (make_decoder), (setup_source),
5433         (gst_uri_decode_bin_change_state):
5434         Make sure we name srcpads uniquely even when using different internal
5435         decodebins.
5436         Signal no-more-pads when no more dynamic elements exist.
5437         Remove pads on cleanup.
5438
5439 2007-06-05  Wim Taymans  <wim@fluendo.com>
5440
5441         Based on patch by: Thiago Sousa Santos <thiagossantos at gmail dot com>
5442
5443         * gst/playback/gstqueue2.c: (gst_queue_class_init),
5444         (gst_queue_init), (gst_queue_finalize),
5445         (gst_queue_write_buffer_to_file), (gst_queue_have_data),
5446         (gst_queue_create_read), (gst_queue_read_item_from_file),
5447         (gst_queue_open_temp_location_file),
5448         (gst_queue_close_temp_location_file), (gst_queue_locked_flush),
5449         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
5450         (gst_queue_is_empty), (gst_queue_is_filled),
5451         (gst_queue_change_state), (gst_queue_set_temp_location),
5452         (gst_queue_set_property):
5453         Add support for filebased buffering. Fixes #441264.
5454
5455 2007-06-05  Wim Taymans  <wim@fluendo.com>
5456
5457         * gst/playback/gstdecodebin2.c: (gst_decode_bin_factory_filter),
5458         (analyze_new_pad), (connect_pad), (expose_pad), (caps_notify_cb),
5459         (caps_notify_group_cb), (gst_decode_group_new),
5460         (gst_decode_group_free):
5461         Add support for delayed caps fixation when autoplugging.
5462         Optimize cases where a multiqueue is not needed/wanted, like right after
5463         anything that is not a demuxer.
5464
5465 2007-06-05  Wim Taymans  <wim@fluendo.com>
5466
5467         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fisbone),
5468         (gst_ogg_pad_submit_packet), (gst_ogg_demux_perform_seek),
5469         (gst_ogg_demux_read_chain), (gst_ogg_demux_collect_chain_info):
5470         consideratly speedup ogg chain detection by not trying to find a base
5471         timestamp for skeleton streams. 
5472
5473 2007-06-05  Wim Taymans  <wim@fluendo.com>
5474
5475         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
5476         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_add_full),
5477         (gst_multi_fd_sink_remove_flush),
5478         (gst_multi_fd_sink_remove_client_link),
5479         (gst_multi_fd_sink_handle_client_write),
5480         (gst_multi_fd_sink_handle_clients):
5481         * gst/tcp/gstmultifdsink.h:
5482         Add support for remove_flush.
5483
5484 2007-06-05  Wim Taymans  <wim@fluendo.com>
5485
5486         * docs/design/draft-keyframe-force.txt:
5487         * ext/theora/theoraenc.c: (theora_enc_sink_event),
5488         (theora_enc_chain):
5489         Add draft design for forcing keyframes in encoders and implement in
5490         theoraenc.
5491
5492 2007-06-05  Jan Schmidt  <thaytan@mad.scientist.com>
5493
5494         * configure.ac:
5495           Back to CVS
5496
5497 === release 0.10.13 ===
5498
5499 2007-06-05  Jan Schmidt <thaytan@mad.scientist.com>
5500
5501         * configure.ac:
5502           releasing 0.10.13, "What's Going on?"
5503
5504 2007-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
5505
5506         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
5507         In riff, the depth is stored in the size field but it just means that
5508         the least significant bits are cleared. We can therefore just play
5509         the sample as if it had a depth == width. Fixes: #440997
5510
5511         Patch by: Wim Taymans <wim@fluendo.com> 
5512         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
5513
5514 2007-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
5515
5516         * gst-libs/gst/floatcast/floatcast.h:
5517         Define inline when needed on win32 builds. Fixes: #441295
5518         Patch by: Sebastien Moutte  <sebastien@moutte.net>
5519
5520 2007-05-29  Wim Taymans  <wim@fluendo.com>
5521
5522         * gst/playback/gstplaybasebin.c: (queue_overrun),
5523         (no_more_pads_full):
5524         Stop buffering when the group is commited because the queues filled up.
5525         Fixes #442024.
5526
5527 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
5528
5529         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
5530         (gst_alsa_mixer_free), (gst_alsa_mixer_update),
5531         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
5532         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
5533         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
5534         * ext/alsa/gstalsamixer.h:
5535         * ext/alsa/gstalsamixerelement.c:
5536         (gst_alsa_mixer_element_interface_supported),
5537         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
5538         (gst_alsa_mixer_element_set_property),
5539         (gst_alsa_mixer_element_get_property),
5540         (gst_alsa_mixer_element_change_state):
5541         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_update):
5542         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_volume_changed),
5543         (gst_mixer_option_changed):
5544         * gst-libs/gst/interfaces/mixer.h:
5545         Revert commits towards #152864 made so far. We'll pick it up again
5546         after the 0.10.13 release.
5547
5548 2007-05-24  Wim Taymans  <wim@fluendo.com>
5549
5550         * gst-libs/gst/audio/gstbaseaudiosink.c:
5551         (gst_base_audio_sink_render):
5552         After an interrupt (PAUSED/flush) assume that the next sample should not
5553         be aligned to the previous sample. Fixes #417992.
5554
5555 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
5556
5557         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
5558           Don't add channels and rate fields to the template caps for
5559           audio/x-dts, as wavparse might not always be able to set them,
5560           which would then lead to 'caps are not a real subset of the
5561           template caps' warnings.
5562
5563 2007-05-24  Jan Schmidt  <thaytan@mad.scientist.com>
5564
5565         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
5566         Handle unknown or invalid pads without crashing, as might occur if
5567         a media file like an mp3 is specified as a subtitle file.
5568         Fixes: #410039
5569
5570 2007-05-24  Jan Schmidt  <thaytan@mad.scientist.com>
5571
5572         * gst/playback/gstplaybin.c: (add_sink), (dummy_blocked_cb),
5573         (setup_sinks):
5574         Block the subtitle bin output queue before ghosting it and linking,
5575         then unblock after. This avoids spurious not-linked errors caused 
5576         by the queue starting up (because it gets linked when it is ghosted). 
5577         Fixes: #350299
5578
5579 2007-05-23  Jan Schmidt  <thaytan@mad.scientist.com>
5580
5581         * tests/check/elements/playbin.c: (test_suburi_error_unknowntype):
5582         Use /dev/zero instead of /dev/urandom to produce an invalid subtitle
5583         file. Avoids flukes where the input gets typefound to some valid but
5584         useless type.
5585
5586 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
5587
5588         * tests/check/Makefile.am:
5589         * tests/check/elements/.cvsignore:
5590         * tests/check/elements/gnomevfssink.c: (setup_gnomevfssink),
5591         (cleanup_gnomevfssink), (GST_START_TEST), (gnomevfssink_suite):
5592           Add unit test for gnomevfssink seeking and position reporting for
5593           file:// URIs.
5594
5595 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
5596
5597         Patch by: Mark Nauwelaerts <manauw at skynet be>
5598
5599         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_init),
5600         (gst_gnome_vfs_sink_open_file), (gst_gnome_vfs_sink_handle_event),
5601         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render):
5602         * ext/gnomevfs/gstgnomevfssink.h:
5603           Fix position reporting, especially after a seek (from upstream),
5604           see #412648.
5605
5606 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
5607
5608         * ext/cdparanoia/gstcdparanoiasrc.c:
5609           Repair umlaut.
5610
5611 2007-05-22  Jan Schmidt  <thaytan@mad.scientist.com>
5612
5613         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
5614         Specify the full valid range for MP3 samplerates. Fixes a regression
5615         caused by extra header checks since the last release.
5616
5617 2007-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
5618
5619         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
5620         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
5621         Fix a locking-order bug I introduced with my changes the other day.
5622         Patch by Mike Smith.
5623
5624 2007-05-21  Michael Smith <msmith@fluendo.com>
5625
5626         * ext/theora/theoradec.c: (theora_handle_data_packet):
5627           Don't look inside 0-length packets (which indicate duplicated
5628           frames)
5629
5630 2007-05-21  Wim Taymans  <wim@fluendo.com>
5631
5632         * ext/cdparanoia/gstcdparanoiasrc.c:
5633         (gst_cd_paranoia_src_read_sector):
5634         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5635         (gst_base_audio_src_create):
5636         Small cleanups.
5637
5638         * ext/theora/theoradec.c: (theora_dec_sink_event):
5639         Fix typo.
5640
5641         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5642         (gst_base_rtp_depayload_set_gst_timestamp):
5643         Add some FIXME
5644
5645         * gst/playback/gstdecodebin.c: (queue_underrun_cb):
5646         And some debug info when a FIXME path is hit.
5647
5648 2007-05-21  Wim Taymans  <wim@fluendo.com>
5649
5650         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
5651         (gst_base_rtp_audio_payload_class_init),
5652         (gst_base_rtp_audio_payload_init),
5653         (gst_base_rtp_audio_payload_finalize),
5654         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
5655         (gst_base_rtp_audio_payload_handle_sample_based_buffer),
5656         (gst_base_rtp_payload_audio_handle_event):
5657         Some cleanups, remove minptime property as it is now in the parent
5658         class.
5659         Override parent class event function.
5660
5661         * gst-libs/gst/rtp/gstbasertppayload.c:
5662         (gst_basertppayload_class_init), (gst_basertppayload_init),
5663         (gst_basertppayload_event), (gst_basertppayload_set_property),
5664         (gst_basertppayload_get_property):
5665         * gst-libs/gst/rtp/gstbasertppayload.h:
5666         Add min-ptime property.
5667         Add handle-event vmethod. Fixes #415001.
5668
5669 2007-05-18  Stefan Kost  <ensonic@users.sf.net>
5670
5671         * gst-libs/gst/audio/gstbaseaudiosink.c
5672           (gst_base_audio_sink_change_state):
5673           Fix typo in comment.
5674
5675         * gst/playback/gstdecodebin.c (gst_decode_bin_class_init,
5676           free_dynamics, pad_probe, close_pad_link, try_to_link_1,
5677           get_our_ghost_pad, remove_element_chain, queue_underrun_cb,
5678           close_link):
5679         * gst/playback/gstplaybin.c (gst_play_bin_set_property,
5680           gen_audio_element, remove_sinks, gst_play_bin_send_event_to_sink):
5681           Remove trailing whitespaces in comments.
5682
5683         * gst/volume/Makefile.am:
5684           Fix tabs.
5685
5686 2007-05-18  Stefan Kost  <ensonic@users.sf.net>
5687
5688         patch by: Marc-Andre Lureau <marcandre.lureau@gmail.com>
5689
5690         * gst-libs/gst/interfaces/mixer.h (mixer_type, option_changed,
5691           set_option, get_option, _gst_reserved):
5692           Revert reordering functions (keep ABI).
5693
5694 2007-05-17  Jan Schmidt  <thaytan@mad.scientist.com>
5695
5696         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
5697         (gst_ximagesink_xwindow_new), (gst_ximagesink_handle_xevents),
5698         (gst_ximagesink_show_frame):
5699         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
5700         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_handle_xevents),
5701         (gst_xvimagesink_show_frame):
5702         When we create our own window, indicate that we handle the 
5703         WM_DELETE client message from the window manager, so that it won't 
5704         kill our window (and our app) along with it. Handle ClientMessage,
5705         post an error on the bus, and close the window. Further buffers
5706         arriving will result in a FlowError because the window has been
5707         destroyed.
5708
5709         Fixes: #393975
5710
5711         Clean up the X event handling loop and make them the same for
5712         both xvimagesink and ximagesink while I'm at it.
5713
5714 2007-05-17  Wim Taymans  <wim@fluendo.com>
5715
5716         * gst/playback/gstdecodebin2.c: (gst_decode_bin_factory_filter):
5717         Make decodebin2 autoplug depayloaders too.
5718
5719         * gst/playback/gsturidecodebin.c: (source_new_pad):
5720         Set the newly created decoder in a usable state when autoplugging a
5721         dynamic source such as RTSP.
5722
5723 2007-05-17  Tim-Philipp Müller  <tim at centricular dot net>
5724
5725         * gst/playback/gststreaminfo.c: (cb_probe):
5726           Ignore video-codec tag for audio streams and ignore audio-codec tags
5727           for video streams. Should make codec name collection a bit more
5728           robust against sloppy demuxers that send tag events containing both
5729           tags down each pad.
5730
5731 2007-05-17  Wim Taymans  <wim@fluendo.com>
5732
5733         * gst/playback/gstqueue2.c: (update_rates):
5734         Tweak the buffering thresholds a little.
5735         Update the buffer size with the previously calculate rate instead of
5736         only when we calculate a new rate so that we get smoother buffering
5737         updates.
5738
5739         * gst/playback/Makefile.am:
5740         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_base_init),
5741         (gst_uri_decode_bin_class_init), (gst_uri_decode_bin_init),
5742         (gst_uri_decode_bin_finalize), (gst_uri_decode_bin_set_property),
5743         (gst_uri_decode_bin_get_property), (unknown_type),
5744         (add_element_stream), (no_more_pads_full), (no_more_pads),
5745         (source_no_more_pads), (new_decoded_pad), (array_has_value),
5746         (gen_source_element), (has_all_raw_caps), (analyse_source),
5747         (remove_decoders), (make_decoder), (remove_source),
5748         (source_new_pad), (setup_source), (decoder_query_init),
5749         (decoder_query_duration_fold), (decoder_query_duration_done),
5750         (decoder_query_position_fold), (decoder_query_position_done),
5751         (decoder_query_latency_fold), (decoder_query_latency_done),
5752         (decoder_query_seeking_fold), (decoder_query_seeking_done),
5753         (decoder_query_generic_fold), (gst_uri_decode_bin_query),
5754         (gst_uri_decode_bin_change_state), (plugin_init):
5755         New element that intergrates a source, optional buffering element and
5756         decodebin.
5757
5758 2007-05-17  Tim-Philipp Müller  <tim at centricular dot net>
5759
5760         * configure.ac:
5761           Bump libtheora requirement to 1.0alpha5 for the pixformat check
5762           (also has a .pc file, so we don't need the fallback check any
5763           longer). Fixes #438840.
5764
5765 2007-05-17  Wim Taymans  <wim@fluendo.com>
5766
5767         * gst/playback/gstqueue2.c: (gst_queue_get_type),
5768         (gst_queue_class_init), (gst_queue_finalize), (update_time_level),
5769         (apply_segment), (apply_buffer), (update_buffering),
5770         (reset_rate_timer), (update_rates), (gst_queue_locked_flush),
5771         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
5772         (gst_queue_handle_sink_event), (gst_queue_is_filled),
5773         (gst_queue_chain), (gst_queue_push_one), (gst_queue_loop),
5774         (plugin_init):
5775         fix build.
5776
5777 2007-05-17  Wim Taymans  <wim@fluendo.com>
5778
5779         * gst/playback/Makefile.am:
5780         * gst/playback/gstqueue2.c: (gst_queue_get_type),
5781         (gst_queue_class_init), (gst_queue_init), (gst_queue_finalize),
5782         (gst_queue_getcaps), (gst_queue_bufferalloc),
5783         (gst_queue_acceptcaps), (update_time_level), (apply_segment),
5784         (apply_buffer), (update_buffering), (reset_rate_timer),
5785         (update_rates), (gst_queue_locked_flush),
5786         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
5787         (gst_queue_handle_sink_event), (gst_queue_is_empty),
5788         (gst_queue_is_filled), (gst_queue_chain), (gst_queue_push_one),
5789         (gst_queue_loop), (gst_queue_handle_src_event),
5790         (gst_queue_handle_src_query), (gst_queue_sink_activate_push),
5791         (gst_queue_src_activate_push), (gst_queue_change_state),
5792         (gst_queue_set_property), (gst_queue_get_property), (plugin_init):
5793         On our way to playbin2 this is the new network queue that does buffering
5794         all by itself using high and low watermarks. It can also measure up and
5795         downstream bandwidth to optimally size the queue.
5796
5797 2007-05-17  Michael Smith <msmith@fluendo.com>
5798
5799         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_do_seek):
5800         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_do_seek):
5801           Use the segment->last_stop value to calculate the next timestamp to
5802           generate after a seek; not the segment->start value.
5803
5804 2007-05-15  David Schleef  <ds@schleef.org>
5805
5806         * docs/Makefile.am: Install docs even when --disable-gtk-doc
5807           is disabled.  This matches the behavior of gtk+.  Fixes #349099.
5808
5809 2007-05-15  Wim Taymans  <wim@fluendo.com>
5810
5811         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
5812         (gst_ogg_demux_perform_seek), (gst_ogg_demux_handle_page):
5813         Some more chained streaming ogg timestamp fixes.
5814
5815 2007-05-15  Wim Taymans  <wim@fluendo.com>
5816
5817         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
5818         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
5819         (gst_ogg_demux_handle_page):
5820         Add some FIXMEs.
5821         Fix chain start/stop segment handling based on patch by
5822         <ahalda at cs dot mcgill dot ca> see #320984.
5823
5824 2007-05-15  Michael Smith <msmith@fluendo.com>
5825
5826         * configure.ac:
5827           We don't require a C++ compiler. So don't require one.
5828
5829 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
5830
5831         * ext/alsa/gstalsamixer.c (source, n_poll_fds, poll_fds,
5832           gst_alsa_mixer_check, gst_alsa_mixer_dispatch,
5833           gst_alsa_mixer_finalize, gst_alsa_mixer_handle_source_callback,
5834           gst_alsa_mixer_handle_callback, gst_alsa_mixer_elem_handle_callback,
5835           gst_alsa_mixer_ensure_track_list, gst_alsa_mixer_update_option,
5836           gst_alsa_mixer_update_track):
5837           Apply some of the cleanup Tim suggested in #152864 afterwards.
5838
5839 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
5840
5841         patch by: Marc-Andre Lureau <marcandre.lureau@gmail.com>
5842
5843         * ext/alsa/gstalsamixer.c (main_context, GstAlsaMixerWatch,
5844           _GstAlsaMixerWatch, source, n_poll_fds, poll_fds,
5845           gst_alsa_mixer_watch_funcs, gst_alsa_mixer_prepare,
5846           gst_alsa_mixer_check, gst_alsa_mixer_dispatch,
5847           gst_alsa_mixer_finalize, gst_alsa_mixer_find_master_mixer,
5848           gst_alsa_mixer_handle_source_callback,
5849           gst_alsa_mixer_handle_callback, gst_alsa_mixer_elem_handle_callback,
5850           gst_alsa_mixer_ensure_track_list, gst_alsa_mixer_free,
5851           gst_alsa_mixer_get_volume, gst_alsa_mixer_set_volume,
5852           gst_alsa_mixer_set_mute, gst_alsa_mixer_set_record,
5853           gst_alsa_mixer_get_option, gst_alsa_mixer_update_option,
5854           gst_alsa_mixer_update_track, _gst_alsa_mixer_set_interface):
5855         * ext/alsa/gstalsamixer.h (handle_source, interface, dir):
5856         * ext/alsa/gstalsamixerelement.c (gst_alsa_mixer_element_details,
5857           gst_alsa_mixer_element_interface_supported,
5858           gst_alsa_mixer_element_finalize, gst_alsa_mixer_element_init,
5859           gst_alsa_mixer_element_set_property,
5860           gst_alsa_mixer_element_get_property,
5861           gst_alsa_mixer_element_change_state):
5862         * ext/alsa/gstalsamixertrack.c (gst_alsa_mixer_track_update):
5863         * gst-libs/gst/interfaces/mixer.c (gst_mixer_volume_changed,
5864           gst_mixer_option_changed):
5865         * gst-libs/gst/interfaces/mixer.h (set_option, get_option,
5866           volume_changed, option_changed, _gst_reserved):
5867           Implement notification for alsamixer. Fixes #152864
5868
5869 2007-05-14  David Schleef  <ds@schleef.org>
5870
5871         * gst/videotestsrc/videotestsrc.c:
5872         * gst/videotestsrc/videotestsrc.h:
5873           Add support for video/x-raw-bayer.
5874
5875 2007-05-12  David Schleef  <ds@schleef.org>
5876
5877         * sys/xvimage/xvimagesink.c:
5878           Add some sanity checking for the XVImage size returned by X.
5879           Related to #377400.
5880
5881 2007-05-12  Wim Taymans  <wim@fluendo.com>
5882
5883         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5884         (gst_base_rtp_depayload_setcaps),
5885         (gst_base_rtp_depayload_set_gst_timestamp):
5886         Parse and use additional caps fields as described in updated
5887         application/x-rtp caps spec.
5888
5889 2007-05-12  Wim Taymans  <wim@fluendo.com>
5890
5891         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
5892         (gst_ogg_demux_collect_chain_info):
5893         If there is a stream in a chain without any data packets, ignore the
5894         stream in the total length calculations. Might be related to #436820.
5895
5896 2007-05-11  Jan Schmidt  <thaytan@mad.scientist.com>
5897
5898         * gst/typefind/gsttypefindfunctions.c: (mpeg_sys_is_valid_pack),
5899         (mpeg_sys_is_valid_pes), (mpeg_sys_is_valid_sys),
5900         (mpeg_sys_type_find), (mpeg_ts_type_find), (mpeg4_video_type_find),
5901         (mpeg_video_type_find), (mpeg_video_stream_type_find),
5902         (plugin_init):
5903
5904         Consolidate and re-work our mpeg system stream detection to probe
5905         more packets and produce a higher confidence result. Fixes a
5906         regression caused by lowering the typefind probability last year
5907         - related to bug #397810. Remove the redundant MPEG-1 specific 
5908         typefind function, as the new one detects both MPEG-1 & MPEG-2
5909         happily.
5910
5911         Also cleanup the MPEG elementary and MPEG-TS detection functions a
5912         little. 
5913
5914         Tested against my media test directory, with some improvements and
5915         no regressions.
5916
5917 2007-05-10  Wim Taymans  <wim@fluendo.com>
5918
5919         * gst/playback/gstplaybasebin.c: (fill_buffer), (check_queue),
5920         (queue_out_of_data):
5921         Connect to the new queue "pushing" signal instead of the broken
5922         "running" one.
5923
5924 2007-05-09  Sebastien Moutte  <sebastien@moutte.net>
5925
5926         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
5927         (gst_base_rtp_audio_payload_handle_frame_based_buffer):
5928         Move variable declaration before the first instruction.
5929         * gst/videotestsrc/videotestsrc.c:
5930         Define M_PI if it's not defined yet.
5931         * win32/common/libgstrtp.def:
5932         Add new exported functions.
5933
5934 2007-05-09  Michael Smith <msmith@fluendo.com>
5935
5936         * ext/theora/theoradec.c: (theora_handle_type_packet):
5937           gst_pad_push_event() does not return a GstFlowReturn!
5938
5939 2007-05-09  Wim Taymans  <wim@fluendo.com>
5940
5941         * tests/examples/seek/scrubby.c: (stop_cb), (main):
5942         * tests/examples/seek/seek.c: (do_seek):
5943         Some small cosmetic changes.
5944
5945 2007-05-08  Stefan Kost  <ensonic@users.sf.net>
5946
5947         * gst/adder/gstadder.c (gst_adder_src_event, gst_adder_collected,
5948           gst_adder_change_state):
5949         * gst/adder/gstadder.h (bps, offset, collect_event, segment,
5950           segment_pending, segment_position, segment_rate):
5951           Handle playback-rate on adder.
5952
5953 2007-05-07  Michael Smith <msmith@fluendo.com>
5954
5955         * ext/theora/gsttheoradec.h:
5956         * ext/theora/theoradec.c: (gst_theora_dec_reset),
5957         (theora_dec_sink_event), (theora_handle_comment_packet),
5958         (theora_handle_type_packet), (theora_dec_change_state):
5959           Don't push events (newsegment, tags) before initialising the
5960           decoder.
5961           This is neccesary for seeking to work correctly in gnonlin.
5962
5963 2007-05-04  Stefan Kost  <ensonic@users.sf.net>
5964
5965         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
5966         * gst/adder/gstadder.c:
5967         * gst/audiotestsrc/gstaudiotestsrc.c
5968           (gst_audio_test_src_create_white_noise):
5969         * gst/videotestsrc/gstvideotestsrc.c:
5970         * gst/volume/gstvolume.c (VOLUME_UNITY_INT16,
5971           VOLUME_UNITY_INT16_BIT_SHIFT, VOLUME_MAX_DOUBLE,
5972           volume_sink_template, volume_src_template, gst_volume_init,
5973           volume_process_double, volume_process_int16,
5974           volume_process_int16_clamp):
5975           Doc fixes and formatting.
5976
5977 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
5978
5979         * tests/check/Makefile.am:
5980         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
5981           Minimal check for volume's GstController usability; also another
5982           test for #422295.
5983
5984 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
5985
5986         * gst-libs/gst/cdda/gstcddabasesrc.c:
5987         (gst_cdda_base_src_add_track):
5988           Fix it so that it (a) makes sense and (b) doesn't break
5989           everything cdda-related including the unit test.
5990
5991 2007-05-04  Stefan Kost  <ensonic@users.sf.net>
5992
5993         * gst-libs/gst/cdda/gstcddabasesrc.c:
5994         (gst_cdda_base_src_add_track):
5995           Fix build when disabling asserts.
5996
5997 2007-05-03  Tim-Philipp Müller  <tim at centricular dot net>
5998
5999         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
6000           When XShm is not available, we might get row strides that are not
6001           rounded up to multiples of four; this is bad, because virtually
6002           every RGB-processing element in GStreamer assumes rowstrides are
6003           rounded up to multiples of four, so let's allocate at least enough
6004           memory to avoid crashes in this case. The image will still be
6005           displayed distorted though if this happens, so that still needs
6006           fixing (maybe by allocating a bigger image with an 'even' width
6007           and then clipping it appropriately when rendering - something for
6008           Xlib aficionados in any case).
6009
6010 2007-05-03  Michael Smith <msmith@fluendo.com>
6011
6012         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
6013           If a buffer doesn't have a timestamp, assume it's contiguous with
6014           the previous buffer, and synthesise timestamps appropriately.
6015
6016 2007-05-03  Edward Hervey  <edward@fluendo.com>
6017
6018         * tests/check/elements/videorate.c: (GST_START_TEST):
6019         Set buffer timestamp to a valid value in order to test the buffer
6020         really does stay in videorate.
6021
6022 2007-05-03  Edward Hervey  <edward@fluendo.com>
6023
6024         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
6025         There is no sensible way to handle incoming buffers which don't have a
6026         valid timestamp. We therefore discard them and wait for the next one.
6027
6028 2007-05-01  Tim-Philipp Müller  <tim at centricular dot net>
6029
6030         * gst/playback/gstdecodebin.c: (type_found), (plugin_init):
6031         * gst/playback/gstdecodebin2.c: (plugin_init):
6032           Better error message for text files.
6033
6034 2007-04-29  Wim Taymans  <wim@fluendo.com>
6035
6036         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_add_rb):
6037         Fix offset bug in generation RR packets.
6038
6039 2007-04-27  Julien MOUTTE  <julien@moutte.net>
6040
6041         * ext/theora/theoradec.c: (_theora_granule_time),
6042         (theora_dec_push_forward), (theora_handle_data_packet),
6043         (theora_dec_decode_buffer): Calculate buffer duration correctly
6044         to generate a perfect stream (#433888).
6045         * gst/audioresample/gstaudioresample.c:
6046         (audioresample_check_discont): Glib provides ABS.
6047
6048 2007-04-27  Wim Taymans  <wim@fluendo.com>
6049
6050         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_get_rb),
6051         (gst_rtcp_packet_add_rb), (gst_rtcp_packet_sdes_add_item),
6052         (gst_rtcp_packet_sdes_add_entry), (gst_rtcp_packet_bye_add_ssrc),
6053         (gst_rtcp_packet_bye_add_ssrcs), (get_reason_offset),
6054         (gst_rtcp_packet_bye_set_reason):
6055         * gst-libs/gst/rtp/gstrtcpbuffer.h:
6056         Fix RB block parsing and writing.
6057         Add support for constructing BYE packets.
6058
6059 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
6060
6061         * gst-libs/gst/audio/gstbaseaudiosrc.c: (_do_init),
6062         (gst_base_audio_src_create):
6063         * po/POTFILES.in:
6064           When posting a warning message because samples were dropped, post
6065           something more intelligible than he default error message for clock
6066           errors which is just confusing in this context (#432984).
6067
6068 2007-04-25  Wim Taymans  <wim@fluendo.com>
6069
6070         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_buffer_new),
6071         (gst_rtcp_buffer_end), (gst_rtcp_buffer_get_packet_count),
6072         (read_packet_header), (gst_rtcp_packet_move_to_next),
6073         (gst_rtcp_buffer_add_packet), (gst_rtcp_packet_sr_set_sender_info),
6074         (gst_rtcp_packet_rr_set_ssrc), (gst_rtcp_packet_add_rb),
6075         (gst_rtcp_packet_sdes_get_item_count),
6076         (gst_rtcp_packet_sdes_first_item),
6077         (gst_rtcp_packet_sdes_next_item), (gst_rtcp_packet_sdes_get_ssrc),
6078         (gst_rtcp_packet_sdes_first_entry),
6079         (gst_rtcp_packet_sdes_next_entry),
6080         (gst_rtcp_packet_sdes_get_entry), (gst_rtcp_packet_sdes_add_item),
6081         (gst_rtcp_packet_sdes_add_entry):
6082         * gst-libs/gst/rtp/gstrtcpbuffer.h:
6083         Implement code to write SR, RR and SDES packets.
6084
6085 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
6086
6087         Patch by: Christian Kirbach <Christian dot Kirbach at googlemail com>
6088
6089         * sys/ximage/ximagesink.c:
6090           Fix build if XShm is not available (#432362).
6091
6092 2007-04-24  Sebastian Dröge  <slomo@circular-chaos.org>
6093
6094         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init):
6095         Initalize the AudioConvertCtx with zeroes, otherwise it will contain
6096         pointers to random memory which are passed to g_free() when
6097         audio_convert_prepare_context() is called the first time.
6098
6099 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
6100
6101         Patch by: Dan Williams <dcbw redhat com>
6102
6103         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
6104           Don't leak incoming buffer if gst_pad_push() returns a
6105           non-OK flow. Fixes #432755.
6106          
6107         * tests/check/elements/videorate.c: (GST_START_TEST),
6108         (videorate_suite):
6109           Unit test for the above by Yours Truly.
6110
6111 2007-04-23  Stefan Kost  <ensonic@users.sf.net>
6112
6113         * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
6114         (gst_adder_sink_event), (gst_adder_collected):
6115           Fix non-flushing segmented seeks, Fixes #340060 for me
6116
6117 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
6118
6119         Patch by: Olivier Crete  <tester at tester ca>
6120
6121         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
6122         (gst_base_rtp_audio_payload_class_init),
6123         (gst_base_rtp_audio_payload_init),
6124         (gst_base_rtp_audio_payload_dispose):
6125           Chain up to parent class in dispose function; get rid of
6126           unnecessary 'diposed' flag in private structure (#415001).
6127
6128 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
6129
6130         * docs/libs/gst-plugins-base-libs.types:
6131         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
6132         (gst_base_rtp_audio_payload_class_init):
6133         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6134         * gst-libs/gst/rtp/gstbasertppayload.c:
6135           Some minor docs fixes and additions; also add missing 'Since' bits.
6136
6137 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
6138
6139         Patch by: Zeeshan Ali  <zeenix gmail com>
6140
6141         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
6142         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
6143         (gst_base_rtp_audio_payload_handle_sample_based_buffer),
6144         (gst_base_rtp_audio_payload_push):
6145         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
6146           The recently-added gst_base_rtp_audio_payload_push() should take an
6147           object of type GstBaseRTPAudioPayload as first argument (#431672).
6148
6149 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
6150
6151         * gst/audioresample/gstaudioresample.c:
6152           Make more functions static, just because we can.
6153
6154 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
6155
6156         * tests/check/elements/audioresample.c:
6157           Add unit test for audioresample shutdown crasher (#420106).
6158
6159 2007-04-20  Stefan Kost  <ensonic@users.sf.net>
6160
6161         * gst/subparse/gstsubparse.c:
6162         * gst/subparse/samiparse.c:
6163           Use GST_DISABLE_XML here
6164
6165         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
6166         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_get_xv_support),
6167         (gst_xvimagesink_buffer_alloc),
6168         (gst_xvimagesink_navigation_send_event):
6169         * sys/xvimage/xvimagesink.h:
6170           Include stdlib.h when using atoi.
6171           
6172         * tests/check/elements/playbin.c: (playbin_suite):
6173           Use GST_DISABLE_REGISTRY here
6174
6175 2007-04-19  Michael Smith  <msmith@fluendo.com>
6176
6177         * ext/theora/gsttheoraenc.h:
6178         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
6179         (theora_enc_sink_event), (theora_enc_change_state):
6180           Track initialisation state; don't try to use encoder state if we're
6181           not initialised (it'll segfault).
6182
6183 2007-04-18  Stefan Kost  <ensonic@users.sf.net>
6184
6185         * tests/check/pipelines/.cvsignore:
6186         Fix build.
6187
6188 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
6189
6190         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
6191         Allow random depths between 1 and 32 instead of only multiplies of 8.
6192
6193 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
6194
6195         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
6196         Set the maximum number of channels for PCM and float in the correct
6197         place to have it also used when creating the template caps.
6198
6199 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
6200
6201         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
6202         Correctly support 4, 6 and 8 channels with normal PCM and float
6203         wav files.
6204
6205         Fix the depth and signedness calculation in extensible wav files and
6206         also handle 1, 2, 4, 6, 8 channels here when a file without channel
6207         mask is found.
6208
6209         Add support for float, alaw and mulaw in extensible wav files.
6210
6211         This allows correct playback of all but 5 files from
6212         http://www-mmsp.ece.mcgill.ca/Documents/AudioFormats/WAVE/Samples.html
6213         
6214         (gst_riff_create_audio_template_caps):
6215         Add voxware and float formats to the template caps.     
6216
6217 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
6218
6219         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
6220
6221         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
6222         Fix unused variable warning if HAVE_LOCALTIME_R is undefinied
6223
6224         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
6225         * gst/audioresample/gstaudioresample.c: (audioresample_do_output):
6226         Use the correct format strings for integer formats.
6227
6228 2007-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
6229
6230         * ext/theora/theoraenc.c (theora_buffer_from_packet, theora_enc_chain):
6231           Don't use pad_alloc_buffer_and_set_caps to create a small header
6232           packet, or, worse, to create a big temporary video buffer using the
6233           src pad.
6234
6235 2007-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
6236
6237         * gst/gdp/gstgdppay.c (gst_gdp_pay_chain):
6238         * tests/check/pipelines/streamheader.c (tag_event_probe_cb,
6239           GST_START_TEST, buffer_probe_cb, GST_START_TEST):
6240           Fix a bug where serialized IN_CAPS buffers needed to be set IN_CAPS.
6241
6242 2007-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
6243
6244         * tests/check/pipelines/streamheader.c (tag_event_probe_cb,
6245           GST_START_TEST, n_in_caps, buffer_probe_cb, GST_START_TEST,
6246           streamheader_suite):
6247           Add another test set up for failure
6248
6249 2007-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
6250
6251         * tests/check/Makefile.am:
6252         * tests/check/pipelines/streamheader.c (n_tags, tag_event_probe_cb,
6253           GST_START_TEST, streamheader_suite, main):
6254           Add a test for the streamheader bug Wim fixed.
6255
6256 2007-04-13  Jan Schmidt  <thaytan@mad.scientist.com>
6257
6258         * ext/theora/theoradec.c: (theora_dec_sink_event):
6259         Fix misleading comment.
6260
6261 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
6262
6263         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
6264           More sanity checks for the header fields.
6265
6266 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
6267
6268         * gst-libs/gst/tag/tags.c: (gst_tag_freeform_string_to_utf8):
6269           Try encodings from all environment variables, not just those in the
6270           first environment variable that is set.
6271
6272 2007-04-12  Wim Taymans  <wim@fluendo.com>
6273
6274         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps),
6275         (gst_video_rate_chain):
6276         Add some debug.
6277
6278         * tests/check/elements/videorate.c: (GST_START_TEST),
6279         (videorate_suite):
6280         Added check for videorate changing caps handling. Closes #421834.
6281
6282 2007-04-12  Michael Smith  <msmith@fluendo.com>
6283
6284         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
6285           Use scale functions to avoid overflow when calculating duration of 
6286           vorbis buffers.
6287
6288 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
6289
6290         * docs/libs/gst-plugins-base-libs-sections.txt:
6291         * gst-libs/gst/tag/tag.h:
6292         * gst-libs/gst/tag/tags.c: (gst_tag_freeform_string_to_utf8):
6293           API: add gst_tag_freeform_string_to_utf8() (#405072).
6294
6295         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_extract_id3v1_string):
6296           Use gst_tag_freeform_string_to_utf8() here.
6297
6298 2007-04-12  Wim Taymans  <wim@fluendo.com>
6299
6300         * gst/gdp/gstgdppay.c: (gst_gdp_pay_chain),
6301         (gst_gdp_pay_sink_event):
6302         Make sure we set the IN_CAPS flag correctly.
6303
6304         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
6305         Get the IN_CAPS flag before we call functions that mess with the flags.
6306
6307 2007-04-10  Thomas Vander Stichele  <thomas at apestaart dot org>
6308
6309         * gst/gdp/gstgdppay.c (gst_gdp_pay_reset_streamheader,
6310           gst_gdp_pay_chain, gst_gdp_pay_sink_event):
6311           Only stamp buffers with offset/offset_end right before they get
6312           pushed.  This ensures offset continuity, which was not the case
6313           before as shown by
6314           gst-launch -v -m audiotestsrc num-buffers=10 ! audioconvert ! vorbisenc ! gdppay ! identity check-imperfect-offset=TRUE ! fakesink silent=TRUE
6315
6316 2007-04-06  Wim Taymans  <wim@fluendo.com>
6317
6318         * gst/playback/gstplaybin.c: (add_sink),
6319         (gst_play_bin_change_state):
6320         Activate sync in playbin, we are ready to handle it for live streams.
6321
6322 2007-04-06  Tim-Philipp Müller  <tim at centricular dot net>
6323
6324         * tests/check/elements/playbin.c:
6325         (test_sink_usage_video_only_stream), (playbin_suite):
6326           Add small test for stream-info-value-array code paths.
6327
6328 2007-04-05  Wim Taymans  <wim@fluendo.com>
6329
6330         * gst-libs/gst/audio/gstbaseaudiosink.c:
6331         (gst_base_audio_sink_skew_slaving):
6332         Don't try to create invalid calibration parameters by making the
6333         internal time go backwards, instead make external time go forward.
6334
6335 2007-04-05  Wim Taymans  <wim@fluendo.com>
6336
6337         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
6338
6339         * gst/playback/gstplaybasebin.c: (add_stream):
6340         Fix leak in add_stream(), when g_value_set_object() increases the
6341         refcount of streaminfo object. Fixes #426250.
6342
6343 2007-04-03  David Schleef  <ds@schleef.org>
6344
6345         * gst/videotestsrc/gstvideotestsrc.c:
6346         * gst/videotestsrc/gstvideotestsrc.h:
6347         * gst/videotestsrc/videotestsrc.c:
6348         * gst/videotestsrc/videotestsrc.h:
6349           Add a test pattern called "circular", which has concentric
6350           rings with varying radial frequency.  The main purpose of this
6351           pattern is to test fidelity loss in a filter or scaler element.
6352           Notably, this pattern is scale invariant, and is optimally viewed
6353           with a width (and height) of 400.
6354
6355 2007-04-03  Wim Taymans  <wim@fluendo.com>
6356
6357         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
6358
6359         * gst/playback/gstdecodebin2.c: (connect_pad), (expose_pad),
6360         (deactivate_free_recursive):
6361         Decodebin2 doesn't unref pads it obtains in some occasions:
6362         - multiqueue src pads, when either connecting further or exposing
6363         - sink pads of new autoplugged elements
6364         - peer pads when recursively freeing elements
6365         Fixes #425455.
6366
6367 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
6368
6369         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
6370         Add audio/x-raw-float support, now that audioconvert support
6371         non-native endianness floats.
6372
6373 2007-03-30  Tim-Philipp Müller  <tim at centricular dot net>
6374
6375         * docs/libs/gst-plugins-base-libs-docs.sgml:
6376           gstreamer-plugins-base.pc doesn't exist, it's
6377           gstreamer-plugins-base-0.10.pc.
6378
6379 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
6380
6381         Patch by: René Stadler <mail at renestadler dot de>
6382         with some minor changes
6383
6384         * gst-libs/gst/floatcast/floatcast.h:
6385         Use more efficient float endianness conversion functions that don't
6386         involve 2 function calls per value.
6387         * gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
6388         (check_default), (audio_convert_prepare_context):
6389         * gst/audioconvert/gstaudioconvert.c:
6390         (gst_audio_convert_parse_caps), (make_lossless_changes):
6391         Support non-native endianness floats as input and output.
6392         Fixes #339838.
6393         * tests/check/elements/audioconvert.c: (verify_convert),
6394         (GST_START_TEST):
6395         Add unit tests for the non-native endianness float conversions.
6396
6397 2007-03-29  Wim Taymans  <wim@fluendo.com>
6398
6399         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6400         (gst_base_rtp_depayload_base_init),
6401         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
6402         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
6403         (gst_base_rtp_depayload_set_gst_timestamp),
6404         (gst_base_rtp_depayload_change_state),
6405         (gst_base_rtp_depayload_set_property),
6406         (gst_base_rtp_depayload_get_property):
6407         * gst-libs/gst/rtp/gstbasertpdepayload.h:
6408         Add Private structure.
6409         Bring element code to 2007.
6410         Parse clock-base caps param and use it when generating the
6411         newsegment.
6412         Reset variables before going to PAUSED.
6413         Fix some docs.
6414
6415 2007-03-29  Wim Taymans  <wim@fluendo.com>
6416
6417         * docs/libs/gst-plugins-base-libs-docs.sgml:
6418         * docs/libs/gst-plugins-base-libs-sections.txt:
6419         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
6420         (gst_base_rtp_audio_payload_get_adapter):
6421         Add RTCP docs.
6422         Fix some more docs.
6423
6424         * gst-libs/gst/rtp/Makefile.am:
6425         * gst-libs/gst/rtp/gstrtcpbuffer.c:
6426         (gst_rtcp_buffer_new_take_data), (gst_rtcp_buffer_new_copy_data),
6427         (gst_rtcp_buffer_validate_data), (gst_rtcp_buffer_validate),
6428         (gst_rtcp_buffer_get_packet_count), (read_packet_header),
6429         (gst_rtcp_buffer_get_first_packet), (gst_rtcp_packet_move_to_next),
6430         (gst_rtcp_buffer_add_packet), (gst_rtcp_packet_remove),
6431         (gst_rtcp_packet_get_padding), (gst_rtcp_packet_get_type),
6432         (gst_rtcp_packet_get_count), (gst_rtcp_packet_get_length),
6433         (gst_rtcp_packet_sr_get_sender_info),
6434         (gst_rtcp_packet_sr_set_sender_info),
6435         (gst_rtcp_packet_rr_get_ssrc), (gst_rtcp_packet_rr_set_ssrc),
6436         (gst_rtcp_packet_get_rb_count), (gst_rtcp_packet_get_rb),
6437         (gst_rtcp_packet_add_rb), (gst_rtcp_packet_set_rb),
6438         (gst_rtcp_packet_sdes_get_chunk_count),
6439         (gst_rtcp_packet_sdes_first_chunk),
6440         (gst_rtcp_packet_sdes_next_chunk), (gst_rtcp_packet_sdes_get_ssrc),
6441         (gst_rtcp_packet_sdes_first_item),
6442         (gst_rtcp_packet_sdes_next_item), (gst_rtcp_packet_sdes_get_item),
6443         (gst_rtcp_packet_bye_get_ssrc_count),
6444         (gst_rtcp_packet_bye_get_nth_ssrc), (gst_rtcp_packet_bye_add_ssrc),
6445         (gst_rtcp_packet_bye_add_ssrcs), (get_reason_offset),
6446         (gst_rtcp_packet_bye_get_reason_len),
6447         (gst_rtcp_packet_bye_get_reason), (gst_rtcp_packet_bye_set_reason):
6448         * gst-libs/gst/rtp/gstrtcpbuffer.h:
6449         Add new helper object for parsing and creating RTCP messages.
6450
6451 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
6452
6453         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
6454         PCM samples with width=8 must be always unsigned, no matter what
6455         depth they have.
6456
6457 2007-03-29  Andy Wingo  <wingo@pobox.com>
6458
6459         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev): Make
6460         perfect offsets also, not just timestamps.
6461
6462         * tests/check/elements/videorate.c (test_more): Test that given
6463         any incoming offsets, that videorate produces perfect offsets.
6464
6465 2007-03-29  Wim Taymans  <wim@fluendo.com>
6466
6467         * gst-libs/gst/riff/riff-ids.h:
6468         Add some more RIFF formats.
6469
6470 2007-03-29  Wim Taymans  <wim@fluendo.com>
6471
6472         * gst-libs/gst/rtp/gstrtpbuffer.c:
6473         (gst_rtp_buffer_default_clock_rate):
6474         * gst-libs/gst/rtp/gstrtpbuffer.h:
6475         Fix fixed payload names and docs.
6476         Added method to get the default clock rates of fixed payload types.
6477         API: GstRTPBuffer::gst_rtp_buffer_default_clock_rate()
6478
6479 2007-03-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6480
6481         * tests/check/pipelines/.cvsignore:
6482         Add new vorbisdec test to cvsignore.
6483
6484 2007-03-28  Wim Taymans  <wim@fluendo.com>
6485
6486         * gst-libs/gst/audio/gstbaseaudiosink.c: (slave_method_get_type),
6487         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
6488         (gst_base_audio_sink_query), (gst_base_audio_sink_get_time),
6489         (gst_base_audio_sink_set_property),
6490         (gst_base_audio_sink_get_property), (gst_base_audio_sink_event),
6491         (clock_convert_external), (gst_base_audio_sink_resample_slaving),
6492         (gst_base_audio_sink_skew_slaving),
6493         (gst_base_audio_sink_handle_slaving), (gst_base_audio_sink_render),
6494         (gst_base_audio_sink_async_play):
6495         * gst-libs/gst/audio/gstbaseaudiosink.h:
6496         Store private stuff in GstBaseAudioSinkPrivate.
6497         Add configurable clock slaving modes property.
6498         API:: GstBaseAudioSink::slave-method property
6499         Some more latency reporting tweaks.
6500         Added skew based clock slaving correction and make it the default until
6501         the resampling method is more robust.
6502
6503 2007-03-27  Sebastian Dröge  <slomo@circular-chaos.org>
6504
6505         * gst/audioconvert/audioconvert.c:
6506         Add docs to the integer pack functions and implement proper
6507         rounding. Before we had rounding towards negative infinity, i.e.
6508         always the smaller number was taken. Now we use natural rounding,
6509         i.e. rounding to the nearest integer and to the one with the largest
6510         absolute value for X.5. The old rounding introduced some minor
6511         distortions. Fixes #420079
6512         * tests/check/elements/audioconvert.c: (GST_START_TEST):
6513         Fix one unit test that assumed the old rounding and added unit tests
6514         for checking signed/unsigned int16 <-> signed/unsigned int16 with
6515         depth 8, one for signed int16 <-> unsigned int16 and one for the new
6516         rounding from signed int32 to signed/unsigned int16.
6517
6518 2007-03-27  Michael Smith  <msmith@fluendo.com>
6519
6520         * gst/audioconvert/gstaudioconvert.c: (strip_width_64),
6521         (gst_audio_convert_transform_caps):
6522           Fix typo in debug line introduced recently, as pointed out on irc.
6523
6524 2007-03-27  Tim-Philipp Müller  <tim at centricular dot net>
6525
6526         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
6527         * tests/check/libs/tag.c: (GST_START_TEST):
6528           Make sure we parse floating-point numbers in vorbis comments
6529           correctly with either '.' or ',' as separator, no matter what
6530           the current locale is. Add unit test for this too.
6531
6532 2007-03-26  Tim-Philipp Müller  <tim at centricular dot net>
6533
6534         Patch by: René Stadler  <mail at renestadler de>
6535
6536         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_to_vorbis_comments):
6537           When writing out floating-point numbers to vorbis comment tags, always
6538           use the same character as separator no matter what the current locale is
6539           (fixes #423051).
6540
6541         * tests/check/libs/tag.c: (GST_START_TEST):
6542           Add unit tests for replaygain tags in vorbis comments (closes #423055).
6543
6544 2007-03-26  Thomas Vander Stichele  <thomas at apestaart dot org>
6545
6546         * ext/vorbis/vorbisdec.c (vorbis_dec_push_forward,
6547           vorbis_handle_data_packet):
6548           Correctly set DURATION to generate a timestamp-continuous stream.
6549           One bug left at the end; see
6550           ihttp://bugzilla.gnome.org/show_bug.cgi?id=423086
6551         * tests/check/Makefile.am:
6552         * tests/check/pipelines/vorbisenc.c (GST_START_TEST):
6553           Add a test to check this.  Without the above patch this test fails.
6554
6555 2007-03-26  Jan Schmidt  <thaytan@mad.scientist.com>
6556
6557         * gst-libs/gst/rtp/Makefile.am:
6558         The base audio payloader uses GstAdapter - we need GST_BASE_LIBS.
6559
6560 2007-03-23  Michael Smith  <msmith@fluendo.com>
6561
6562         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps),
6563         (gst_video_rate_reset), (gst_video_rate_chain):
6564           If videorate changes caps, we can no longer use the old buffer
6565           (which may have a different size, incompatible with our caps).
6566           So don't do that; just duplicate the new frame more times.
6567
6568 2007-03-22  Jan Schmidt  <thaytan@mad.scientist.com>
6569
6570         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
6571         Remove playbin's override of the set_clock vmethod. It's irrelevant
6572         after Wim's commit on the 19th.
6573
6574 2007-03-22  Wim Taymans  <wim@fluendo.com>
6575
6576         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_size),
6577         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
6578         * ext/gnomevfs/gstgnomevfssrc.h:
6579         Don't cache file sizes. Fixes #341078.
6580
6581 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
6582
6583         * gst/playback/gstplaybin.c: (add_sink):
6584           Use GST_PTR_FORMAT to log caps. 
6585
6586 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
6587
6588         Patch by: Young-Ho Cha <ganadist at chollian net>
6589
6590         * gst/subparse/samiparse.c: (handle_start_font):
6591           Special-case some more colour names that pango doesn't handle by
6592           default. Fixes #420578.
6593
6594 2007-03-20  Michael Smith  <msmith@fluendo.com>
6595
6596         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
6597           If we get a zero-sized input buffer, don't pass it to libvorbis, as
6598           that marks EOS internally. After that, libvorbis will buffer all
6599           input data, and encode none of it, eventually leading to memory
6600           exhaustion.
6601
6602 2007-03-19  Wim Taymans  <wim@fluendo.com>
6603
6604         * gst/playback/gstdecodebin.c: (remove_fakesink):
6605         Don't post STATE_DIRTY anymore.
6606
6607         * gst/playback/gstplaybin.c: (add_sink), (gst_play_bin_send_event),
6608         (gst_play_bin_change_state):
6609         Remove stream_time reset in seek handling, core does that now.
6610         Disable clocking for live pipelines by forcing a NULL clock to the
6611         complete pipeline, core is too smart now for our previous hack.
6612         We can always autoplug in PAUSED now.
6613
6614 2007-03-17  David Schleef  <ds@schleef.org>
6615
6616         * REQUIREMENTS:  Update this file, change the formatting to make
6617         it more consistent, plus more machine readable.
6618
6619 2007-03-16  Michael Smith  <msmith@fluendo.com>
6620
6621         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
6622         (strip_width_64), (append_with_other_format):
6623           Previous fix was too simplistic, and broke the tests. Use a better
6624           approach; only strip 64 from widths for integer audio.
6625
6626 2007-03-16  Michael Smith  <msmith@fluendo.com>
6627
6628         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
6629         (gst_audio_convert_transform_caps):
6630           We don't support 64 bit integer audio, so don't try to claim we can.
6631           Stops us producing caps don't match our template caps.
6632           Update comments.
6633
6634 2007-03-15  Michael Smith  <msmith@fluendo.com>
6635
6636         * gst/audioresample/gstaudioresample.c:
6637         (audioresample_check_discont), (audioresample_transform):
6638           Don't trigger discontinuities for very small imperfections; a filter
6639           flush will sound bad, and many plugins have rounding errors leading
6640           to these.
6641
6642 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
6643
6644         Patch by: Olivier Crete <olivier.crete@collabora.co.uk>
6645
6646         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
6647         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
6648         API: add "min-ptime" property to RTP base audio payloader.
6649         API: add gst_base_rtp_audio_payload_push().
6650         API: add gst_base_rtp_audio_payload_get_adapter().
6651         Fixes #415001
6652         Indentation/whitespace/documentation fixes.
6653
6654 2007-03-14  Julien MOUTTE  <julien@moutte.net>
6655
6656         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
6657         (audioresample_transform_size), (audioresample_do_output),
6658         (audioresample_transform), (audioresample_pushthrough): Handle
6659         discontinuous streams.
6660         * gst/audioresample/gstaudioresample.h:
6661         * tests/check/elements/audioresample.c:
6662         (test_discont_stream_instance), (GST_START_TEST),
6663         (audioresample_suite): Add a test for discontinuous streams.
6664         * win32/common/config.h: Updated.
6665
6666 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
6667
6668         * po/af.po:
6669         * po/az.po:
6670         * po/cs.po:
6671         * po/en_GB.po:
6672         * po/it.po:
6673         * po/nb.po:
6674         * po/nl.po:
6675         * po/or.po:
6676         * po/sq.po:
6677         * po/sr.po:
6678         * po/sv.po:
6679         * po/uk.po:
6680         * po/vi.po:
6681           Update translations from translation project.
6682
6683 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
6684
6685         * gst/audioresample/debug.h:
6686         * gst/audioresample/resample.c: (resample_init):
6687           Since I really am not interested in a debug line for each sample
6688           being processed, move the library's debugging to its own category,
6689           libaudioresample
6690
6691 2007-03-13  Michael Smith  <msmith@fluendo.com>
6692
6693         * ext/theora/theoradec.c: (theora_handle_type_packet):
6694           Since the plugin doesn't support anything other than 4:2:0 right
6695           now, post an error and fail if we get something else. Won't matter
6696           until libtheora supports the other pixel formats, but hopefully
6697           that'll be soon...
6698
6699 2007-03-10  Sebastien Moutte  <sebastien@moutte.net>
6700
6701         * gst-libs/gst/audio/gstbaseaudiosink.c:(gst_base_audio_sink_render):
6702         Use gst_guint64_to_gdouble for conversion.
6703         * win32/MANIFEST:
6704         Add new files to the win32 MANIFEST.
6705         * win32/common/libgstaudio.def:
6706         * win32/common/libgstpbutils.def:
6707         Add new exported functions.
6708         * win32/vs6/gst_plugins_base.dsw:
6709         * win32/vs6/libgstdecodebin.dsp:
6710         * win32/vs6/libgstplaybin.dsp:
6711         Change the link to libgstpbutils.lib.
6712         * win32/vs6/libgstdecodebin2.dsp:
6713         Add a new project for decodebin2.
6714         * win32/vs6/libgstpbutils.dsp:
6715         Add a new project for pbutils.
6716
6717 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
6718
6719         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
6720           Also accept partial dates with only year and month,
6721           like 1999-12-00 (fixes #410396 even more).
6722
6723         * tests/check/libs/tag.c: (GST_START_TEST):
6724           Add unit test for the above.
6725
6726 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
6727
6728         * tests/check/elements/subparse.c: (GST_START_TEST),
6729         (subparse_suite):
6730           Add unit test for MPL2 subtitle format (#413799).
6731
6732 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
6733
6734         Patch by: Kamil Pawlowski  <kamilpe gmail com>
6735
6736         * gst/subparse/Makefile.am:
6737         * gst/subparse/gstsubparse.c:
6738         (gst_sub_parse_data_format_autodetect),
6739         (gst_sub_parse_format_autodetect), (gst_sub_parse_sink_event),
6740         (gst_subparse_type_find):
6741         * gst/subparse/gstsubparse.h:
6742         * gst/subparse/mpl2parse.c: (mpl2_parse_line), (parse_mpl2):
6743         * gst/subparse/mpl2parse.h:
6744           Add support for MPL2 subtitle format (#413799).
6745
6746 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
6747
6748         * configure.ac:
6749           We require core CVS for the new buffer metadata copy functions.
6750
6751 2007-03-09  Wim Taymans  <wim@fluendo.com>
6752
6753         * gst-libs/gst/tag/gstid3tag.c:
6754         Add read support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
6755         Fixes #414496.
6756
6757         Patch by: Alex Lancaster <alexl at users sourceforge net>
6758
6759 2007-03-09  Wim Taymans  <wim@fluendo.com>
6760
6761         * ext/libvisual/visual.c: (gst_visual_sink_setcaps),
6762         (gst_vis_src_negotiate), (get_buffer), (gst_visual_chain):
6763         Improve adapter usage and comments.
6764
6765 2007-03-09  Wim Taymans  <wim@fluendo.com>
6766
6767         * ext/pango/gsttextrender.c: (gst_text_render_chain):
6768         * ext/vorbis/vorbistag.c: (gst_vorbis_tag_parse_packet):
6769         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_copy):
6770         Use new metadata copy function.
6771
6772         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6773         (gst_ffmpegcsp_transform):
6774         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform):
6775         Basetransform copied the metadata for us.
6776
6777 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
6778
6779         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
6780         (gst_text_overlay_video_event):
6781           Some more logging. Only accept newsegment events in TIME format and
6782           send a WARNING message if they are not in TIME format.
6783
6784         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
6785         (gst_sub_parse_init), (gst_sub_parse_src_event), (handle_buffer),
6786         (gst_sub_parse_chain), (gst_sub_parse_sink_event):
6787         * gst/subparse/gstsubparse.h:
6788           No need to allocate GstSegment structure dynamically, just put it
6789           into the instance structure; ignore newsegment events in BYTE
6790           format and in particular don't let it overwrite our saved TIME
6791           segment from the last seek.
6792
6793 2007-03-09  Michael Smith  <msmith@fluendo.com>
6794
6795         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find):
6796           Replace AC3 typefinder with one that isn't terrible, and actually
6797           works usefully.
6798
6799 2007-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
6800
6801         * gst/audioconvert/gstaudioconvert.c:
6802         (gst_audio_convert_transform):
6803           fix error category and translatable string
6804           
6805
6806 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
6807
6808         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
6809         * pkgconfig/gstreamer-plugins-base.pc.in:
6810           Fix up utils => pbutils here too.
6811
6812 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
6813
6814         * gst/subparse/gstsubparse.c: (handle_buffer):
6815           Break out of loop in chain function as soon as possible if we get
6816           a non-OK flow return.
6817
6818 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
6819
6820         * tests/check/elements/alsa.c: (GST_START_TEST):
6821         Unref the mixer if the state change fails too (if the
6822         alsa devices are inaccessible, for example)
6823
6824 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
6825
6826         * tests/check/Makefile.am:
6827         Don't test libvisual elements in the states check, because libvisual
6828         seems to leak internally.
6829
6830         Re-enable the alsa and states tests now that there's new suppressions
6831         in gst.supp.
6832
6833         * tests/check/elements/alsa.c: (GST_START_TEST):
6834         Don't leak the alsamixer we instantiated.
6835
6836 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
6837
6838         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
6839         (gst_ximagesink_change_state), (gst_ximagesink_reset),
6840         (gst_ximagesink_finalize):
6841         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
6842         (gst_xvimagesink_reset), (gst_xvimagesink_finalize):
6843         Move some cleanup stuff from the state change handler into a _reset()
6844         function that can be called from _finalize(). This ensures that things
6845         get freed even if (for some reason) the NULL->READY state transition
6846         fails in the parent class.
6847         Even if a parent state change fails, process our downward state change
6848         logic instead of bailing out early.
6849         Free the correct xcontext pointer in ximagesink's xcontext_clear.
6850
6851 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
6852
6853         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
6854         Extra log line.
6855
6856         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_init):
6857         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_init):
6858         Use pango_font_description_set_family_static instead of 
6859         pango_font_description_set_family to save a string copy (it was
6860         leaking due to the strdup anyway)
6861
6862         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_finalize):
6863         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_finalize):
6864         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_finalize):
6865         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_finalize):
6866         Chain up in finalize.
6867
6868 2007-03-07  Tim-Philipp Müller  <tim at centricular dot net>
6869
6870         * gst-libs/gst/interfaces/mixertrack.c:
6871         (gst_mixer_track_class_init), (gst_mixer_track_get_property),
6872         (gst_mixer_track_set_property):
6873           API: add "untranslated-label" property which should be set by
6874           implementations at construct time (#414645).
6875
6876         * ext/alsa/gstalsamixeroptions.c: (gst_alsa_mixer_options_new):
6877         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
6878           Set "untranslated-label" when constructing mixer track objects.
6879
6880         * tests/check/elements/alsa.c: (GST_START_TEST), (alsa_suite):
6881           Unit test to check the above.
6882
6883 2007-03-07  Wim Taymans  <wim@fluendo.com>
6884
6885         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
6886         Fix confusing debug message.
6887
6888 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
6889
6890         * gst-plugins-base.doap:
6891         update doap file with new version
6892
6893 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
6894
6895         * configure.ac:
6896         Back to CVS
6897
6898 === release 0.10.12 ===
6899
6900 2007-03-07  Jan Schmidt <thaytan@mad.scientist.com>
6901
6902         * configure.ac:
6903           releasing 0.10.12, "Zombie Horde"
6904
6905 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
6906
6907         * configure.ac:
6908         Bump version to 0.10.11.4 pre-release
6909
6910 2007-03-06  Wim Taymans  <wim@fluendo.com>
6911
6912         * gst-libs/gst/audio/gstbaseaudiosink.c:
6913         (gst_base_audio_sink_async_play):
6914         Fix regression that made GStreamer skip the first samples of audio.
6915         Fixes #414684.
6916
6917 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
6918
6919         * configure.ac:
6920         Bump version to 0.10.11.3 pre-release
6921
6922 2007-03-05  Sebastian Dröge  <slomo@circular-chaos.org>
6923
6924         * po/POTFILES.in:
6925           Update paths for the rename from utils to pbutils to fix the build.
6926
6927 2007-03-05  Tim-Philipp Müller  <tim at centricular dot net>
6928
6929         * gst-libs/gst/pbutils/Makefile.am:
6930           Change directory to install headers in from gst/utils to gst/pbutils
6931           as well.
6932
6933 2007-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
6934
6935         * configure.ac:
6936         * docs/libs/gst-plugins-base-libs-docs.sgml:
6937         * docs/libs/gst-plugins-base-libs-sections.txt:
6938         * gst-libs/gst/Makefile.am:
6939         * gst-libs/gst/interfaces/mixer.c:
6940         * gst-libs/gst/pbutils/Makefile.am:
6941         * gst-libs/gst/pbutils/descriptions.c:
6942         (gst_pb_utils_get_source_description),
6943         (gst_pb_utils_get_sink_description),
6944         (gst_pb_utils_get_decoder_description),
6945         (gst_pb_utils_get_encoder_description),
6946         (gst_pb_utils_get_element_description),
6947         (gst_pb_utils_add_codec_description_to_tag_list),
6948         (gst_pb_utils_get_codec_description), (gst_pb_utils_list_all):
6949         * gst-libs/gst/pbutils/descriptions.h:
6950         * gst-libs/gst/pbutils/install-plugins.c:
6951         * gst-libs/gst/pbutils/install-plugins.h:
6952         * gst-libs/gst/pbutils/missing-plugins.c:
6953         (gst_missing_uri_source_message_new),
6954         (gst_missing_uri_sink_message_new),
6955         (gst_missing_element_message_new),
6956         (gst_missing_decoder_message_new),
6957         (gst_missing_encoder_message_new),
6958         (gst_missing_plugin_message_get_description):
6959         * gst-libs/gst/pbutils/missing-plugins.h:
6960         * gst-libs/gst/pbutils/pbutils.c: (gst_pb_utils_init):
6961         * gst-libs/gst/pbutils/pbutils.h:
6962         * gst-libs/gst/utils/Makefile.am:
6963         * gst-libs/gst/utils/base-utils.c:
6964         * gst-libs/gst/utils/base-utils.h:
6965         * gst-libs/gst/utils/descriptions.c:
6966         * gst-libs/gst/utils/descriptions.h:
6967         * gst-libs/gst/utils/install-plugins.c:
6968         * gst-libs/gst/utils/install-plugins.h:
6969         * gst-libs/gst/utils/missing-plugins.c:
6970         * gst-libs/gst/utils/missing-plugins.h:
6971         * gst-plugins-base.spec.in:
6972         * gst/playback/Makefile.am:
6973         * gst/playback/gstdecodebin.c:
6974         * gst/playback/gstdecodebin2.c:
6975         * gst/playback/gstplaybasebin.c: (setup_subtitle),
6976         (gen_source_element):
6977         * gst/playback/gstplaybin.c: (plugin_init):
6978         * tests/check/Makefile.am:
6979         * tests/check/libs/pbutils.c: (GST_START_TEST),
6980         (test_pb_utils_install_plugins_do_callout), (libgstpbutils_suite):
6981         * tests/check/libs/utils.c:
6982           rename utils to pbutils
6983
6984 2007-03-02  Jan Schmidt  <thaytan@mad.scientist.com>
6985
6986         * docs/plugins/Makefile.am:
6987         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6988         * docs/plugins/gst-plugins-base-plugins-sections.txt:
6989         * docs/plugins/inspect/plugin-decodebin2.xml:
6990         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
6991         Add documentation for decodebin2 that indicates that the API
6992         is still unstable.
6993
6994 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
6995
6996         * configure.ac:
6997         Update to 0.10.11.2 (0.10.12 pre-release)
6998
6999 2007-03-01  Wim Taymans  <wim@fluendo.com>
7000
7001         * gst-libs/gst/audio/gstbaseaudiosink.c:
7002         (gst_base_audio_sink_async_play):
7003         base time is irrelevant here.
7004
7005 2007-03-01  Wim Taymans  <wim@fluendo.com>
7006
7007         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
7008         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
7009         Improve debugging.
7010
7011         * gst-libs/gst/audio/gstbaseaudiosink.c:
7012         (gst_base_audio_sink_query), (gst_base_audio_sink_event),
7013         (gst_base_audio_sink_render), (gst_base_audio_sink_async_play):
7014         Improve latency and clock slaving calculations.
7015         Improve slave clock calibration.
7016
7017         * gst-libs/gst/audio/gstringbuffer.c:
7018         (gst_ring_buffer_commit_full):
7019         When we are asked to render N sample to 0 bytes, return N.
7020
7021 2007-03-01  Wim Taymans  <wim@fluendo.com>
7022
7023         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
7024         (gst_alsasink_write), (gst_alsasink_reset):
7025         * ext/alsa/gstalsasink.h:
7026         Remove unused dispose function.
7027         Rename lock to not interfere with alsasrc lock.
7028
7029         * ext/alsa/gstalsasrc.c: (gst_alsasrc_finalize),
7030         (gst_alsasrc_class_init), (gst_alsasrc_init), (set_swparams),
7031         (gst_alsasrc_read), (gst_alsasrc_reset):
7032         * ext/alsa/gstalsasrc.h:
7033         Implement finalize function.
7034         Use lock to protect alsa access.
7035         Implement _reset.
7036         Fine tune sw params.
7037
7038 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
7039
7040         * configure.ac:
7041           Convert to new AG_GST style.
7042
7043 2007-02-28  Wim Taymans  <wim@fluendo.com>
7044
7045         Patch by: Ed Catmur <ed at catmur dot co dot uk>
7046
7047         * gst/playback/gstplaybin.c: (gst_play_bin_vis_unblocked),
7048         (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
7049         Fix race condition when rapidly switching visualisations in playbin.
7050         Fixes #401029.
7051
7052 2007-02-28  Jan Schmidt  <thaytan@mad.scientist.com>
7053
7054         * tests/check/Makefile.am:
7055         Include local stuff before system installed things in LDFLAGS and
7056         CFLAGS.
7057
7058 2007-02-28  Wim Taymans  <wim@fluendo.com>
7059
7060         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_sink_activate):
7061         Improve debugging.
7062
7063 2007-02-28  Wim Taymans  <wim@fluendo.com>
7064
7065         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
7066         (gst_v4lsrc_fixate), (gst_v4lsrc_query):
7067         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_new):
7068         Fix duration and timestamping, taking latency into account.
7069         Implement latency query.
7070
7071 2007-02-28  Wim Taymans  <wim@fluendo.com>
7072
7073         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
7074         (gst_audio_clock_new):
7075         Fix clock name.
7076
7077         * gst-libs/gst/audio/gstbaseaudiosink.c:
7078         (gst_base_audio_sink_init), (gst_base_audio_sink_query):
7079         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
7080         (gst_base_audio_src_query), (gst_base_audio_src_get_offset),
7081         (gst_base_audio_src_create):
7082         Improve latency query code.
7083         Use proper clock names.
7084
7085 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
7086
7087         * tests/check/generic/states.c: (GST_START_TEST):
7088           Copy the states.c test from core again
7089         * tests/check/Makefile.am:
7090           ignore cdio and cdparanoiasrc
7091
7092 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
7093
7094         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
7095         (double_hq), (audio_convert_get_func_index), (check_default),
7096         (audio_convert_prepare_context), (audio_convert_convert):
7097           Also make valgrind happy and avoid copying data in some cases.
7098
7099 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
7100
7101         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
7102         (double_hq), (audio_convert_get_func_index),
7103         (audio_convert_prepare_context), (audio_convert_convert):
7104         * gst/audioconvert/gstaudioconvert.c:
7105         (gst_audio_convert_class_init), (gst_audio_convert_get_unit_size),
7106         (gst_audio_convert_transform_caps):
7107         * tests/check/elements/audioconvert.c: (GST_START_TEST),
7108         (audioconvert_suite):
7109           Don't run inplace if that overwrites source data as we go. Add more
7110           tests. Fixes #339837 even more.
7111
7112 2007-02-27  Julien MOUTTE  <julien@moutte.net>
7113
7114         * tests/examples/seek/seek.c: (do_seek), (set_update_scale),
7115         (msg_segment_done): Fix various seeking bugs (Slider was not
7116         updating when doing a non flushing seek, Reverse playback 
7117         on segment seek was wrong).
7118
7119 2007-02-26  Wim Taymans  <wim@fluendo.com>
7120
7121         * tests/examples/seek/seek.c: (stop_seek):
7122         When we stop scrubbing, don't leave the pipeline PLAYING when we
7123         requested a PAUSED state.
7124
7125 2007-02-25  Tim-Philipp Müller  <tim at centricular dot net>
7126
7127         Patch by: René Stadler <mail at renestadler de>
7128
7129         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
7130           Parse date strings in vorbis comments that have an invalid (zero)
7131           month or day (#410396).
7132
7133         * tests/check/libs/tag.c: (GST_START_TEST):
7134           Test case for the above.
7135
7136 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
7137
7138         Patch by: Loïc Minier <lool+gnome at via ecp fr>
7139
7140         * configure.ac:
7141         * ext/alsa/Makefile.am:
7142         * gst/audiotestsrc/Makefile.am:
7143           Fix compilation with LDFLAGS='-Wl,-z,defs' (#410963).
7144
7145 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
7146
7147         * gst/playback/gstplaybin.c:
7148           Improve docs: point out that the application needs to assist playbin
7149           with buffering.
7150
7151 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
7152
7153         * gst-libs/gst/utils/install-plugins.c:
7154         * gst-libs/gst/utils/missing-plugins.c:
7155         * tests/check/libs/utils.c: (missing_msg_check_getters):
7156           Change GStreamer marker prefix in detail string from 'gstreamer.net'
7157           to just 'gstreamer'. Document the caps string component of the
7158           decoder/encoder detail a bit better, since not everyone will be
7159           familiar with the GStreamer media type/caps system (but they better
7160           enjoy nested itemized lists).
7161
7162 2007-02-22  Tim-Philipp Müller  <tim at centricular dot net>
7163
7164         * gst-libs/gst/netbuffer/gstnetbuffer.c:
7165         (notgst_buffer_copy_fields_in_place), (gst_netbuffer_copy):
7166           Fix copying of GstNetBuffer (would crash before, or at least lead to
7167           invalid memory access, #410772), for now by copying the GstBuffer copy
7168           code from the core over here so we can copy the GstBuffer fields on a
7169           provided buffer instance (of type GstNetBuffer in this case). Would be
7170           better to fix this with some support by the core though (and in the long
7171           run change the broken GstBuffer/GstMiniObject copy semantics, #393099).
7172
7173         * tests/check/Makefile.am:
7174           Enable unit test for GstNetBuffer.
7175
7176 2007-02-22  Andy Wingo  <wingo@pobox.com>
7177
7178         * gst-libs/gst/audio/gstbaseaudiosink.c
7179         (gst_base_audio_sink_init): Disable pull-mode activation until we
7180         figure out how to make audio sinks go to PLAYING.
7181
7182 2007-02-22  Stefan Kost  <ensonic@users.sf.net>
7183
7184         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
7185         (double_hq), (audio_convert_get_func_index),
7186         (audio_convert_prepare_context), (audio_convert_convert):
7187         * gst/audioconvert/audioconvert.h:
7188         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_setup_matrix),
7189         (gst_channel_mix_mix_int), (gst_channel_mix_mix_float):
7190         * gst/audioconvert/gstchannelmix.h:
7191         * tests/check/elements/audioconvert.c: (GST_START_TEST):
7192           Add float as an intermediate format, as well as float mixing. Enable
7193           test that was failing before. Fixes #339837
7194
7195 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
7196
7197         * tests/examples/seek/seek.c: (do_seek):
7198         Undo the previous commit: -1 as a stop time implies that the stop
7199         time is the end of file, clearing any previously configured segment.
7200
7201 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
7202
7203         * tests/examples/seek/seek.c: (do_seek):
7204         Don't SEEK_SET with a stop time of -1, use SEEK_NONE instead.
7205
7206 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
7207
7208         * gst/volume/gstvolume.c: (volume_process_int16),
7209         (volume_process_int16_clamp), (volume_set_caps):
7210           Unbreak volume, value remains gint.
7211
7212 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
7213
7214         * gst/volume/gstvolume.c: (volume_choose_func),
7215         (volume_update_real_volume), (gst_volume_set_volume),
7216         (gst_volume_init), (volume_process_double), (volume_process_float),
7217         (volume_process_int16), (volume_process_int16_clamp),
7218         (volume_set_caps), (volume_transform_ip), (volume_update_volume):
7219         * gst/volume/gstvolume.h:
7220           Extend float audio support (double) and some int->uint cleanups.
7221
7222 2007-02-20  Edward Hervey  <edward@fluendo.com>
7223
7224         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
7225         (multi_queue_underrun_cb), (gst_decode_group_check_if_drained),
7226         (sort_end_pads), (gst_decode_group_expose),
7227         (gst_decode_group_hide):
7228         Don't free groups from the streaming threads. Just put them aside and
7229         free them in dispose.
7230
7231 2007-02-20  Edward Hervey  <edward@fluendo.com>
7232
7233         * gst/playback/gstdecodebin2.c: (connect_element),
7234         (pad_added_group_cb), (gst_decode_group_check_if_blocked),
7235         (sort_end_pads), (gst_decode_group_expose):
7236         Handle dynamic pads within groups.
7237         Sort pads before exposing them in order to make playbin happy.
7238         There still is a race with the multiqueue filling up. This should be
7239         solved separately.
7240         Fixes #398721
7241
7242 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
7243
7244         * gst-libs/gst/utils/base-utils.c:
7245         * gst-libs/gst/utils/descriptions.c:
7246         * gst-libs/gst/utils/install-plugins.c:
7247         * gst-libs/gst/utils/missing-plugins.c:
7248           Some more docs (and descriptions for two subtitle formats).
7249
7250 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
7251
7252         * gst-libs/gst/audio/audio.c:
7253           Fix documentation.
7254
7255 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
7256
7257         Patch by: Yves Lefebvre  <ivanohe abacom com>
7258
7259         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps):
7260           Don't leak caps. Fixes #408278.
7261
7262 2007-02-15  Stefan Kost  <ensonic@users.sf.net>
7263
7264         * ext/cdparanoia/gstcdparanoiasrc.h:
7265         * ext/ogg/gstoggdemux.h:
7266         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
7267         (gst_audio_frame_length), (gst_audio_duration_from_pad_buffer),
7268         (gst_audio_is_buffer_framed), (gst_audio_structure_set_int):
7269         * gst-libs/gst/audio/audio.h:
7270         * gst-libs/gst/audio/gstaudiofilter.h:
7271         * gst-libs/gst/interfaces/videoorientation.h:
7272         * gst/adder/gstadder.h:
7273           More docs coverage and some ChangeLog surgery (add missing names)
7274
7275 2007-02-15  Wim Taymans  <wim@fluendo.com>
7276
7277         * sys/ximage/ximagesink.c:
7278         (gst_ximagesink_calculate_pixel_aspect_ratio):
7279         * sys/xvimage/xvimagesink.c:
7280         (gst_xvimagesink_calculate_pixel_aspect_ratio):
7281         Small constifications.
7282
7283 2007-02-15  Wim Taymans  <wim@fluendo.com>
7284
7285         * gst-libs/gst/audio/gstbaseaudiosink.c:
7286         (gst_base_audio_sink_class_init), (gst_base_audio_sink_query),
7287         (gst_base_audio_sink_render), (gst_base_audio_sink_callback),
7288         (gst_base_audio_sink_async_play),
7289         (gst_base_audio_sink_change_state):
7290         Answer latency query.
7291         Use configured latency when syncing.
7292         Fix clock slaving.
7293
7294         * gst-libs/gst/audio/gstbaseaudiosrc.c:
7295         (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
7296         (gst_base_audio_src_query), (gst_base_audio_src_change_state):
7297         Fix possible memleak.
7298         Implement latency query.
7299         Small cleanups.
7300
7301 2007-02-15  Wim Taymans  <wim@fluendo.com>
7302
7303         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
7304         Ignore errors in reset, these are not fatal. They also grab the element
7305         lock which is already taking when this function is called. Fixes
7306         #405451.
7307
7308 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
7309
7310         * configure.ac:
7311           Remove 'tests/examples/xerror/Makefile' from output files again.
7312
7313 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
7314
7315         * configure.ac:
7316         * docs/plugins/Makefile.am:
7317           Also crossref against gst-plugins-base-libs.
7318
7319 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
7320
7321         * configure.ac:
7322         * docs/libs/Makefile.am:
7323         * docs/plugins/Makefile.am:
7324           Add crossreferences to glib/gobject/gstream docs.
7325
7326         * gst-libs/gst/audio/audio.h:
7327           Source formatting.
7328
7329         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
7330           Add own debug category.
7331
7332 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
7333
7334         Patch by: René Stadler <mail at renestadler de>
7335
7336         * gst-libs/gst/tag/gstvorbistag.c:
7337           Add vorbis/FLAC-tag mapping for new GST_TAG_REFERENCE_LEVEL
7338           (#403597).
7339
7340 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
7341
7342         * gst/playback/gstplaybasebin.c: (setup_source):
7343           When we have external subtitles and wait for the subtitle decodebin
7344           to get up and running, we set up a (sync) bus handler for the
7345           subtitle decodebin, so we can stop waiting when it posts an error
7346           message. However, we should do that before we set the subtitle
7347           decodebin's state to playing, otherwise things are racy and we might
7348           miss error messages posted before we had a chance to set up the bus.
7349           This should finally fix totem hanging on .txt pseudo-subtitle files.
7350           
7351 2007-02-10  Sébastien Moutte  <sebastien at moutte dot net>
7352
7353         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:(gst_base_rtp_audio_payload_handle_frame_based_buffer):
7354           Use gst_gdouble_to_guint64 for conversions.
7355         * win32/common/config.h.in:
7356           Add a define for GST_INSTALL_PLUGINS_HELPER
7357         * win32/common/libgstaudio.def:
7358         * win32/common/libgstcdda.def:
7359         * win32/common/libgstnetbuffer.def:
7360         * win32/common/libgstrtp.def:
7361         * win32/common/libgutils.def:
7362           Add new exported functions.
7363         * win32/vs6/gst_plugins_base.dsw:
7364         * win32/vs6/libgstdecodebin.dsp:
7365         * win32/vs6/libgstnetbuffer.dsp:
7366         * win32/vs6/libgstplaybin.dsp:
7367         * win32/vs6/libgstrtp.dsp:
7368         * win32/vs6/libgstvorbis.dsp:
7369         * win32/vs6/libgstcdda.dsp:
7370         * win32/vs6/libgstgdp.dsp:
7371         * win32/vs6/libgstutils.dsp:
7372           Update and add new project files.
7373
7374 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
7375
7376         * gst/subparse/gstsubparse.c: (subrip_remove_unhandled_tag),
7377         (subrip_remove_unhandled_tags), (parse_subrip):
7378           For SubRip (.srt) subtitles, ignore all markup tags we don't
7379           handle (like font tags, for example).
7380
7381         * tests/check/elements/subparse.c:
7382           Add test for this.
7383
7384 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
7385
7386         * gst/playback/gstdecodebin.c: (add_fakesink),
7387         (gst_decode_bin_change_state):
7388         * gst/playback/gstdecodebin2.c: (add_fakesink),
7389         (gst_decode_bin_change_state):
7390           Don't error out if there is no fakesink in the NULL to READY state
7391           change, since when decodebin is re-used, we're only adding the
7392           fakesink element in READY to PAUSED.
7393
7394         * tests/check/elements/decodebin.c:
7395         (new_decoded_pad_plug_fakesink_cb), (GST_START_TEST),
7396         (decodebin_suite):
7397           Minimal unit test to make sure we can use the same decodebin
7398           instance twice (at least with audiotestsrc input).
7399
7400 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
7401
7402         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name):
7403           Try to get devic-name from device string first, and from handle only
7404           as fallback (seems to yield better results and is more robust
7405           against buggy probing code on the application side).
7406
7407 2007-02-08  Tim-Philipp Müller  <tim at centricular dot net>
7408
7409         Based on patch by: Julien Puydt <julien.puydt at laposte net>
7410
7411         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name_no_handle),
7412         (gst_alsa_find_device_name):
7413         * ext/alsa/gstalsa.h:
7414         * ext/alsa/gstalsasink.c: (gst_alsasink_get_property):
7415         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_property):
7416           Improve device-name detection a bit, especially in the case where
7417           the device is not actually open (#405020, #405024). Move common code
7418           into gstalsa.c instead of duplicating it.
7419
7420 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
7421
7422         * gst/audioconvert/gstaudioconvert.c:
7423           Fix up docs chunk so that gtk-doc doesn't complain, and fix typo.
7424
7425 2007-02-06  Julien MOUTTE  <julien@moutte.net>
7426
7427         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
7428         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_clear),
7429         (gst_xvimagesink_interface_supported),
7430         (gst_xvimagesink_probe_get_properties),
7431         (gst_xvimagesink_probe_probe_property),
7432         (gst_xvimagesink_probe_needs_probe),
7433         (gst_xvimagesink_probe_get_values),
7434         (gst_xvimagesink_property_probe_interface_init),
7435         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
7436         (gst_xvimagesink_init), (gst_xvimagesink_class_init),
7437         (gst_xvimagesink_get_type):
7438         * sys/xvimage/xvimagesink.h: Implement PropertyProbe Interface
7439         for XVAdaptors so that one can choose the adaptor to use with 
7440         gstreamer-properties.
7441
7442 2007-02-06  Stefan Kost  <ensonic@users.sf.net>
7443
7444         * gst/audioconvert/gstaudioconvert.c:
7445           Also mention that a conversion from double to float is suboptimal still.
7446
7447 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
7448
7449         * gst-libs/gst/audio/gstaudiofilter.c:
7450         (gst_audio_filter_class_init), (gst_audio_filter_change_state):
7451           Clear our formats structure and free the caps contained in it when
7452           shutting down.
7453
7454 2007-02-05  Andy Wingo  <wingo@pobox.com>
7455
7456         * gst-libs/gst/audio/gstbaseaudiosink.c
7457         (gst_base_audio_sink_callback): Update basesink->offset so that we
7458         pull monotonically increasing offsets instead of, um, seeking back
7459         to 0 each time. Fixes alsasrc ! alsasink!
7460
7461 2007-02-05  Tim-Philipp Müller  <tim at centricular dot net>
7462
7463         * gst/videoscale/gstvideoscale.c:
7464           A width and height of 1 makes us crash, so increase minimum size to
7465           2x2 pixels until someone feels like fixing this (#404512).
7466
7467 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
7468
7469         * tests/check/pipelines/oggmux.c: (GST_START_TEST), (oggmux_suite):
7470           Add small test to make sure request pads are cleaned up properly
7471           even if oggmux never changes state out of NULL.
7472
7473 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
7474
7475         * tests/check/libs/utils.c: (GST_START_TEST):
7476           Fix unit test. Turns out things work much better when you
7477           NULL-terminate string arrays. Should make p5 build bot happy again.
7478
7479 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
7480
7481         * gst-libs/gst/audio/Makefile.am:
7482         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
7483         (gst_audio_filter_template_base_init),
7484         (gst_audio_filter_template_class_init),
7485         (gst_audio_filter_template_init),
7486         (gst_audio_filter_template_set_property),
7487         (gst_audio_filter_template_get_property),
7488         (gst_audio_filter_template_setup),
7489         (gst_audio_filter_template_filter),
7490         (gst_audio_filter_template_filter_inplace), (plugin_init):
7491           Oops, forgot to commit fixed-up example.
7492
7493 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
7494
7495         * docs/libs/gst-plugins-base-libs-sections.txt:
7496         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
7497         (gst_audio_filter_class_init), (gst_audio_filter_init),
7498         (gst_audio_filter_set_caps),
7499         (gst_audio_filter_class_add_pad_templates):
7500         * gst-libs/gst/audio/gstaudiofilter.h:
7501           Port GstAudioFilter to 0.10. This change technically breaks
7502           API and ABI (and thus also every library developer's heart),
7503           but seems justifiable on the grounds that the base class was
7504           completely unusable before (ie. would crash immediately when
7505           actually used). Fixes #403963 (and eventually also #403572).
7506           Also document all of this a bit.
7507
7508 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
7509
7510         * gst-libs/gst/utils/install-plugins.c:
7511         (gst_install_plugins_spawn_child):
7512         * tests/check/libs/utils.c:
7513         (test_base_utils_install_plugins_do_callout):
7514           Lowering log level to see why things fail on the p5 build bot;
7515           fix some typos in unit test messages.
7516
7517 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
7518
7519         * tests/check/libs/utils.c:
7520         (test_base_utils_install_plugins_do_callout):
7521           Don't hard-code temp directory for test helper; use GLib functions
7522           to write out file and do error checking etc.
7523
7524 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
7525
7526         * gst-libs/gst/utils/Makefile.am:
7527         * gst-libs/gst/utils/base-utils.h:
7528         * gst-libs/gst/utils/install-plugins.c:
7529         (gst_install_plugins_context_set_xid),
7530         (gst_install_plugins_context_new),
7531         (gst_install_plugins_context_free),
7532         (gst_install_plugins_get_helper),
7533         (gst_install_plugins_spawn_child),
7534         (gst_install_plugins_return_from_status),
7535         (gst_install_plugins_installer_exited),
7536         (gst_install_plugins_async), (gst_install_plugins_sync),
7537         (gst_install_plugins_return_get_name),
7538         (gst_install_plugins_installation_in_progress):
7539         * gst-libs/gst/utils/install-plugins.h:
7540           API: add API for applications to initiate installation of missing
7541           plugins, ie. gst_install_plugins_async() primarily.
7542           Based on libgimme-codec by Ryan Lortie.
7543
7544         * configure.ac:
7545           Add --with-install-plugins-helper configure option so distros can specify
7546           the path of the helper script or program to call when plugin installation
7547           is requested (distros: please do any argument munging in this helper
7548           script instead of patching GStreamer to pass arguments differently
7549           to another program directly).
7550
7551         * docs/libs/gst-plugins-base-libs-docs.sgml:
7552         * docs/libs/gst-plugins-base-libs-sections.txt:
7553           Build and document new API.
7554
7555         * tests/check/libs/utils.c: (result_cb),
7556         (test_base_utils_install_plugins_do_callout), (GST_START_TEST),
7557         (libgstbaseutils_suite):
7558           Some simple checks for the new API.
7559
7560 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
7561
7562         * tests/check/elements/audioconvert.c: (test_float_conversion):
7563           Add small test for 32bit float <=> 64bit float conversion (works
7564           only one way so far, 32=>64 produces structured noise).
7565
7566 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
7567
7568         * gst/audioconvert/gstaudioconvert.c:
7569         (set_structure_widths_32_and_64), (make_lossless_changes):
7570           We don't support floats with a width of 40, 48 or 56 bits.
7571
7572 2007-02-02  Stefan Kost  <ensonic@users.sf.net>
7573
7574         * gst/audioconvert/audioconvert.c: (float), (double),
7575         (audio_convert_get_func_index):
7576         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
7577         (make_lossless_changes):
7578           Support for 64-bit float audio in audioconvert (#339837)
7579
7580 2007-02-01  Tim-Philipp Müller  <tim at centricular dot net>
7581
7582         Patch by: Holger Wansing  <linux wansing-online de>
7583
7584         * po/LINGUAS:
7585         * po/de.po:
7586           Add German translation (#352069).
7587
7588 2007-02-01  Sebastian Dröge  <slomo@circular-chaos.org>
7589
7590         reviewed by: Wim Taymans <wim@fluendo.com>
7591
7592         * ext/ogg/gstoggmux.c: (gst_ogg_mux_ogg_pad_destroy_notify),
7593         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad):
7594         Use newly added GstCollectPads API to free the allocated resources in
7595         the GstOggPad structures (#402393).
7596
7597 2007-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
7598
7599         * gst/playback/gstplaybin.c: (gen_vis_element):
7600           Add audioresample+audioconvert in front of the visualisation
7601           element, so that elements like libvisual 0.4 that don't support all
7602           samplerates can work.
7603
7604           Fixes: #402505
7605
7606 2007-01-30  Tim-Philipp Müller  <tim at centricular dot net>
7607
7608         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property),
7609         (gst_play_base_bin_get_streaminfo_value_array):
7610           Take some locks and make a copy of the streaminfo value array we
7611           maintain while holding the lock, so that the application can
7612           retrieve the stream-info as a value array in a thread-safe way.
7613
7614 2007-01-30  Wim Taymans  <wim@fluendo.com>
7615
7616         * gst/audioconvert/gstaudioconvert.c:
7617         Don't fail on 0 sized buffers. Fixes #396835.
7618
7619 2007-01-29  David Schleef  <ds@schleef.org>
7620
7621         * gst/typefind/gsttypefindfunctions.c:
7622           Detect BBCD as video/x-dirac, so we can play raw dirac
7623           streams.
7624
7625 2007-01-29  Tim-Philipp Müller  <tim at centricular dot net>
7626
7627         * ext/theora/theoraenc.c: (theora_enc_chain):
7628           Check return value of theora_encode_header(), or we might try to
7629           allocate a random number of bytes. theora_encode_header() can fail
7630           if libtheora has been compiled with encoding support disabled.
7631           Fixes #398110.
7632
7633 2007-01-29  Wim Taymans  <wim@fluendo.com>
7634
7635         * tests/check/gst/.cvsignore:
7636         Do as buildbot says.
7637
7638 2007-01-29  Wim Taymans  <wim@fluendo.com>
7639
7640         * ext/libvisual/visual.c: (gst_visual_src_setcaps):
7641         Fix strides in libvisual. Gst uses X strides.
7642         Inspired by: <ed at catmur dot co dot uk> and 
7643         <tim at centricular dot net>
7644         Fixes #401118.
7645
7646 2007-01-27  Wim Taymans  <wim@fluendo.com>
7647
7648         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
7649         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
7650         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_do_seek),
7651         (gst_ogg_demux_perform_seek),
7652         (gst_ogg_demux_bisect_forward_serialno),
7653         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
7654         (gst_ogg_demux_find_chains), (gst_ogg_demux_handle_page),
7655         (gst_ogg_demux_chain), (gst_ogg_demux_combine_flows),
7656         (gst_ogg_demux_loop_reverse), (gst_ogg_demux_loop):
7657         * ext/ogg/gstoggdemux.h:
7658         Properly propagate streaming errors when we are scanning the file for
7659         chains so that we don't crash when shut down. Might fix some crashers
7660         when quickly switching oggs in RB such as #332503 and #378436.
7661
7662 2007-01-26  Tim-Philipp Müller  <tim at centricular dot net>
7663
7664         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
7665           Map a gnome-vfs HOST_NOT_FOUND error into a GStreamer NOT_FOUND
7666           error code as well.
7667
7668 2007-01-25  Wim Taymans  <wim@fluendo.com>
7669
7670         * gst/playback/gstplaybasebin.c: (remove_source):
7671         Don't try to disconnect a signal from a finalized object.
7672
7673 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
7674
7675         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose):
7676           Cast lock macro parameters to make sure we're actually accessing the
7677           lock member at the right class level. Free list itself in _dispose()
7678           as well and NULL it in case dispose gets called multiple times.
7679
7680 2007-01-25  Edward Hervey  <edward@fluendo.com>
7681
7682         * gst/playback/gstdecodebin2.c:
7683         (gst_decode_bin_dispose),(gst_decode_bin_finalize):
7684         Free GstDecodeGroups no longer used.
7685         (gst_decode_group_expose):
7686         Don't unlock too many times !
7687         (deactivate_free_recursive):
7688         Free iterator once we're done with it.
7689         Fix for recursively deactivating elements (stop at ghostpads).
7690
7691 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
7692
7693         * gst/playback/gstplaybin.c: (handoff):
7694           Fix up caps on the frame buffer before we save it and potentially
7695           make it accessible to other threads via g_object_get; also use
7696           gst_buffer_replace() instead of gst_mini_object_replace().
7697
7698 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
7699
7700         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
7701           Make getting the current frame thread-safe.
7702
7703 2007-01-25  Edward Hervey  <edward@fluendo.com>
7704
7705         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize),
7706         (gst_decode_group_new), (gst_decode_group_free):
7707         Set queues to bigger sizes to cope with HD contents.
7708         Fix some mutex freeing and add comment about MT safe methods.
7709
7710 2007-01-24  Tim-Philipp Müller  <tim at centricular dot net>
7711
7712         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
7713         (gst_text_overlay_text_event):
7714           Don't unnecessarily ref (and then leak) upstream events if the text
7715           pad is not linked. Fixes #399948.
7716
7717         * tests/check/gst-plugins-base.supp:
7718           Add suppression for pango on edgy/x86 for textoverlay test.
7719
7720 2007-01-24  Wim Taymans  <wim@fluendo.com>
7721
7722         * gst-libs/gst/rtp/gstrtpbuffer.h:
7723         Add some more fixed payloads.
7724
7725 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
7726
7727         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
7728           Error out properly if we get an error from libogg while reading the
7729           BOS page(s). Fixes crash parsing 'fuzzed' ogg file (#399340).
7730
7731 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
7732
7733         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize):
7734           Don't leak mutex.
7735
7736         * tests/check/elements/playbin.c:
7737         (test_sink_usage_video_only_stream),
7738         (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
7739         (test_suburi_error_wrongproto), (test_missing_urisource_handler),
7740         (test_missing_suburisource_handler),
7741         (test_missing_primary_decoder), (playbin_suite):
7742           Run all tests once with decodebin and once with decodebin2.
7743           One test does not pass yet with decodebin2.
7744
7745 2007-01-23  Edward Hervey  <edward@fluendo.com>
7746
7747         * ext/ogg/gstoggmux.c: (all_pads_eos), (gst_ogg_mux_collected):
7748         Fix the cases where oggmux doesn't properly figure out that all
7749         sinkpads have gone EOS, and therefore doesn't push out the remaining
7750         buffers and the final EOS event.
7751         Fixes #363379
7752
7753 2007-01-23  Julien MOUTTE  <julien@moutte.net>
7754
7755         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
7756         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
7757         Don't lock on navigation event push, just on keysym to string.
7758         Fixes #397673 again.
7759
7760 2007-01-22  Edward Hervey  <edward@fluendo.com>
7761
7762         * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
7763         (get_current_group), (group_demuxer_event_probe),
7764         (gst_decode_group_expose), (deactivate_free_recursive),
7765         (gst_decode_group_free):
7766         Cleanups.
7767         Don't forget to emit 'no-more-pads' once a group is exposed.
7768         Cleanup elements from a DecodeGroup once we remove it.
7769         Protect call to gst_decode_group_expose() with the decodebin lock.
7770
7771 2007-01-22  Julien MOUTTE  <julien@moutte.net>
7772
7773         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
7774         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
7775         Looking at Xorg code i can't figure out if that XKeysymToString
7776         function is thread sensible or not. Lock it just in case as
7777         recommended by Radek Doulik <rodo at ximian dot com>.
7778
7779 2007-01-22  Julien MOUTTE  <julien@moutte.net>
7780
7781         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
7782         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
7783         Lock that X Call as well. Fixes #397673.
7784
7785 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
7786
7787         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
7788           Don't go into an endless loop if the file starts with 00 00 01 2X,
7789           like quicktime redirect files might. Fixes #396042.
7790
7791         * tests/check/Makefile.am:
7792         * tests/check/gst/.cvsignore:
7793         * tests/check/gst/typefindfunctions.c: (GST_START_TEST),
7794         (typefindfunctions_suite):
7795           Add unit test for the above.
7796
7797 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
7798
7799         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7800           On second thought, use "depth" field rather than "bpp" field.
7801
7802 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
7803
7804         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7805           Camtasia caps apparently need a bpp field (#398875).
7806
7807 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
7808
7809         * gst/playback/gstplaybasebin.c: (setup_subtitle),
7810         (gen_source_element), (gst_play_base_bin_change_state):
7811           Attempt at a better error message in case we don't have the required
7812           URI handler installed; post missing-plugin message also when we're
7813           missing an URI handler for the subtitle URI; clean up properly also
7814           when an error occurs and we never made it to PAUSED state.
7815
7816         * tests/check/elements/playbin.c: (GST_START_TEST),
7817         (playbin_suite):
7818           Check that we're also getting a missing-plugin messsage for a
7819           missing subtitle URI handler (and clean up properly).
7820
7821 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
7822
7823         * gst/playback/gstplaybasebin.c: (analyse_source), (setup_source):
7824           Plug a few reference leaks.
7825
7826 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
7827
7828         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
7829           Lower probability a bit if the marker isn't right at the start,
7830           to decrease the chance of false positives.
7831
7832 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
7833
7834         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
7835           Small mpeg2 system stream typefinding improvement: make typefinder
7836           probe a bit into the stream instead of just looking for a marker
7837           at the beginning. Fixes #397810.
7838
7839 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
7840
7841         * gst/audioconvert/gstchannelmix.c:
7842           Remove compatibility cruft for prehistoric GLib versions.
7843
7844 2007-01-17  Tim-Philipp Müller  <tim at centricular dot net>
7845
7846         * gst/playback/Makefile.am:
7847         * gst/playback/gstdecodebin.c: (close_pad_link):
7848         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
7849         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
7850         (gst_play_base_bin_handle_message_func), (unknown_type):
7851           Let decodebin be the element to post missing-plugin messages for
7852           missing decoders (rather than playbin); make playbin implement
7853           GstBin::handle_message so we can suppress missing-plugin messages
7854           for types we're not handling on purpose (don't want to bring up an
7855           installer in those cases).
7856
7857 2007-01-16  Tim-Philipp Müller  <tim at centricular dot net>
7858
7859         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7860         * gst-libs/gst/tag/gstvorbistag.c:
7861         (gst_tag_list_to_vorbiscomment_buffer):
7862         * gst/typefind/gsttypefindfunctions.c: (vorbis_type_find):
7863           Fix potentially unaligned access (#397207).
7864
7865 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
7866
7867         * tests/examples/seek/seek.c: (set_scale), (update_scale),
7868         (do_seek), (stop_seek), (pause_cb), (stop_cb), (loop_toggle_cb),
7869         (rate_spinbutton_changed_cb), (msg_eos), (msg_segment_done),
7870         (main):
7871           Allow to toggle looping while it plays. Fix callback prototype. Clean
7872           up code a bit more. Add copyright header.
7873
7874 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
7875
7876         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
7877           Red and blue mask was swapped (spotted by Dan Williams).
7878
7879 2007-01-15  Stefan Kost  <ensonic@users.sf.net>
7880
7881         * gst-libs/gst/tag/gstid3tag.c:
7882         * gst-libs/gst/tag/gstvorbistag.c:
7883           Use new beats-per-minute tag from core.
7884
7885 2007-01-15  Tim-Philipp Müller  <tim at centricular dot net>
7886
7887         * po/POTFILES.in:
7888           Add new files with translatable strings, so they actually make it
7889           into the template file one day.
7890
7891 2007-01-12  Andy Wingo  <wingo@pobox.com>
7892
7893         * gst-libs/gst/audio/gstbaseaudiosink.c
7894         (gst_base_audio_sink_fixate): Implement, stolen from baseaudiosrc.
7895         (gst_base_audio_sink_activate_pull): Remove the handwavey nego
7896         stuff, as the base class handles this now. Actually tell the ring
7897         buffer to start.
7898         (gst_base_audio_sink_callback): Cast the ring buffer correctly.
7899         How did this work before? Maybe I'm not as awesome a programmer as
7900         I think.
7901
7902         * gst-libs/gst/audio/gstbaseaudiosrc.c
7903         (gst_base_audio_src_fixate): Rework as a basesrc vmethod instead
7904         of a pad function.
7905
7906 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
7907
7908         * gst-libs/gst/utils/missing-plugins.c: (copy_and_clean_caps):
7909           Remove more fields so that the application can better blacklist
7910           formats that have been tried before.
7911
7912 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
7913
7914         * gst-libs/gst/audio/mixerutils.h:
7915           Add G_BEGIN_DECLS and G_END_DECLS guards so these helpers can be
7916           used when compiling with c++ compilers as well.
7917
7918 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
7919
7920         * gst/typefind/gsttypefindfunctions.c:
7921           Fix comment.
7922
7923 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
7924
7925         * gst/playback/gstplaybin.c: (post_missing_element_message),
7926         (gen_video_element), (gen_text_element), (gen_audio_element),
7927         (gen_vis_element):
7928           Post missing-plugin messages also when we error out because
7929           converters, textoverlay or auto*sinks are missing (#161922).
7930
7931 2007-01-10  Wim Taymans  <wim@fluendo.com>
7932
7933         * gst/playback/gstdecodebin.c: (dynamic_add), (close_pad_link),
7934         (is_demuxer_element), (new_caps):
7935         * gst/playback/gstplaybasebin.c: (source_new_pad):
7936         Fix the case where we try to ref a NULL element when we delay a link
7937         because of unfixed caps.
7938         Set the state of autoplugged decodebins to PAUSED.
7939         RTSP now works in playbin, we can remove it from the blacklist.
7940
7941 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
7942
7943         * gst/playback/Makefile.am:
7944         * gst/playback/gstplaybasebin.c: (string_arr_has_str),
7945         (unknown_type), (setup_subtitle), (gen_source_element):
7946         * gst/playback/gstplaybin.c: (plugin_init):
7947           Post missing-plugin messages on the bus for missing sources and
7948           missing decoders/demuxers/depayloaders; fix error code used when
7949           we're missing an URI handler source; for media types that we are not
7950           handling on purpose at the moment, don't print "don't know how to
7951           handle xyz" messages to the terminal or post missing-plugin
7952           messages on the bus.
7953
7954         * tests/check/elements/playbin.c: (create_playbin),
7955         (GST_START_TEST), (gst_codec_src_uri_get_type),
7956         (gst_codec_src_uri_get_protocols), (gst_codec_src_uri_get_uri),
7957         (gst_codec_src_uri_set_uri), (gst_codec_src_uri_handler_init),
7958         (gst_codec_src_init_type), (gst_codec_src_base_init),
7959         (gst_codec_src_create), (gst_codec_src_class_init),
7960         (gst_codec_src_init), (plugin_init), (playbin_suite):
7961           Add some tests for the missing-plugin stuff.
7962
7963 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
7964
7965         * configure.ac:
7966         * gst-libs/gst/Makefile.am:
7967         * gst-libs/gst/utils/Makefile.am:
7968         * gst-libs/gst/utils/base-utils.c: (gst_base_utils_init):
7969         * gst-libs/gst/utils/base-utils.h:
7970         * gst-libs/gst/utils/descriptions.c: (format_info_get_desc),
7971         (find_format_info), (caps_are_rtp_caps),
7972         (gst_base_utils_get_source_description),
7973         (gst_base_utils_get_sink_description),
7974         (gst_base_utils_get_decoder_description),
7975         (gst_base_utils_get_encoder_description),
7976         (gst_base_utils_get_element_description),
7977         (gst_base_utils_add_codec_description_to_tag_list),
7978         (gst_base_utils_get_codec_description), (gst_base_utils_list_all):
7979         * gst-libs/gst/utils/descriptions.h:
7980         * gst-libs/gst/utils/missing-plugins.c:
7981         (missing_structure_get_type), (copy_and_clean_caps),
7982         (gst_missing_uri_source_message_new),
7983         (gst_missing_uri_sink_message_new),
7984         (gst_missing_element_message_new),
7985         (gst_missing_decoder_message_new),
7986         (gst_missing_encoder_message_new),
7987         (missing_structure_get_string_detail),
7988         (missing_structure_get_caps_detail),
7989         (gst_missing_plugin_message_get_installer_detail),
7990         (gst_missing_plugin_message_get_description),
7991         (gst_is_missing_plugin_message):
7992         * gst-libs/gst/utils/missing-plugins.h:
7993           API: add new libgstbaseutils library with functions
7994           - to create and parse missing-plugins messages
7995           - that provide (translated) descriptions for caps/decoders/sources/etc.
7996           Closes #392393.
7997
7998         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
7999         * pkgconfig/gstreamer-plugins-base.pc.in:
8000           Add new lib.
8001
8002         * docs/libs/gst-plugins-base-libs-docs.sgml:
8003         * docs/libs/gst-plugins-base-libs-sections.txt:
8004           Generate docs for new lib and API.
8005
8006         * tests/check/Makefile.am:
8007         * tests/check/libs/.cvsignore:
8008         * tests/check/libs/utils.c: (missing_msg_check_getters),
8009         (GST_START_TEST), (libgstbaseutils_suite):
8010           Add some basic unit tests.
8011
8012 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
8013
8014         * ext/ogg/Makefile.am:
8015           Dist gstoggdemux.h to fix 'make distcheck'.
8016
8017         * sys/v4l/Makefile.am:
8018           Fix 'make distcheck' even more.
8019
8020 2007-01-09  Wim Taymans  <wim@fluendo.com>
8021
8022         * docs/plugins/Makefile.am:
8023         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
8024         * docs/plugins/gst-plugins-base-plugins-sections.txt:
8025         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
8026         (gst_ogg_pad_query_types), (gst_ogg_pad_submit_page),
8027         (gst_ogg_chain_reset), (gst_ogg_chain_new_stream),
8028         (gst_ogg_demux_perform_seek):
8029         * ext/ogg/gstoggdemux.h:
8030         Added docs.
8031         Add some more comments.
8032         Small cleanups.
8033
8034 2007-01-09  Wim Taymans  <wim@fluendo.com>
8035
8036         * ext/theora/theoradec.c:
8037         * ext/vorbis/vorbisdec.c:
8038         * gst-libs/gst/audio/gstringbuffer.c:
8039         (gst_ring_buffer_commit_full):
8040         * gst-libs/gst/audio/gstringbuffer.h:
8041         * gst-libs/gst/rtp/gstrtpbuffer.c:
8042         * gst-libs/gst/tag/gstvorbistag.c:
8043         Small documentation updates/fixes
8044
8045 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
8046
8047         * configure.ac:
8048           Require core CVS HEAD for Andy's basesrc/sink API additions.
8049
8050 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
8051
8052         Patch by: Günter Thelen  <daedalus dot inc at gmx net>
8053
8054         * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
8055         (plugin_init):
8056           Add typefinder for flac-in-ogg in conformance with the ogg-mapping
8057           on flac.sf.net (there appear to be other versions of the first
8058           ogg page in the wild) (#391365).
8059
8060 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
8061
8062         * configure.ac:
8063           Check if localtime_r() is available.
8064
8065         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
8066           If localtime_r() is not available, fall back to localtime(). Should
8067           fix build on MingW (#393310).
8068
8069 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
8070
8071         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
8072         * gst/subparse/gstsubparse.h:
8073           Remove spurious 1000 subtrahend when calculating the timestamp from
8074           the frame number and the frame rate . Also, use the frames/second
8075           value specified in the first line of the file, if one is specified
8076           there. Should fix #357503.
8077
8078         * tests/check/elements/subparse.c: (do_test),
8079         (test_tmplayer_do_test), (test_microdvd_do_test), (GST_START_TEST),
8080         (subparse_suite):
8081           Add some basic unit tests for the microdvd subtitle format.
8082
8083 2007-01-07  Julien MOUTTE  <julien@moutte.net>
8084
8085         Patch by: Young-Ho Cha <ganadist at chollian dot net>
8086
8087         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
8088         (gst_xvimage_buffer_finalize), (gst_xvimagesink_xvimage_new),
8089         (gst_xvimagesink_xvimage_put), (gst_lookup_xv_port_from_adaptor),
8090         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps),
8091         (gst_xvimagesink_set_xwindow_id),
8092         (gst_xvimagesink_set_event_handling),
8093         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
8094         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
8095         Fixes: #390076.
8096         Add an adaptor property to select a specific XV adaptor.
8097         * sys/xvimage/xvimagesink.h:
8098
8099 2007-01-07  Julien MOUTTE  <julien@moutte.net>
8100
8101         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
8102         (gst_ximagesink_handle_xerror), (gst_ximagesink_ximage_new),
8103         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
8104         (gst_ximagesink_handle_xevents), (gst_ximagesink_setcaps),
8105         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
8106         (gst_ximagesink_expose), (gst_ximagesink_set_event_handling):
8107         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
8108         (gst_xvimage_buffer_finalize), (gst_xvimagesink_handle_xerror),
8109         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
8110         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_setcaps),
8111         (gst_xvimagesink_change_state), (gst_xvimagesink_set_xwindow_id),
8112         (gst_xvimagesink_expose), (gst_xvimagesink_set_event_handling):
8113         Use flow_lock much more to protect every access to xwindow.
8114         Try to catch erros while creating images in case some drivers are
8115         just generating an XError when the requested image is too big.
8116         Should fix : #354698, #384008, #384060.
8117         * tests/icles/stress-xoverlay.c: (cycle_window), (create_window):
8118         Implement some stress testing of setting window xid.
8119
8120 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
8121
8122         * win32/common/libgsaudio.def:
8123           Add new exported function.
8124         * win32/common/libgstogg.dsp:
8125           Add gstoggaviparse.c to the build.
8126         * win32/common/libgstvideoscale.dsp:
8127           Add vs_4tap.c to the build.
8128         * win32/common/libgstvorbis.dsp:
8129           Add vorbistag.c to the build.
8130         
8131 2007-01-06  Andy Wingo  <wingo@pobox.com>
8132
8133         * gst-libs/gst/audio/gstbaseaudiosink.c
8134         (gst_base_audio_sink_class_init)
8135         (gst_base_audio_sink_init): 
8136         (gst_base_audio_sink_activate_pull): Add an activate_pull function
8137         to baseaudiosink, and tell basesink that we can work in pull mode.
8138         This way the ring buffer thread drives the pipeline directly, if
8139         pull mode is possible. There is some lingering nastiness regarding
8140         capsnego, however.
8141         (gst_base_audio_sink_callback): Implement the callback to pull
8142         data. This interface is a bit light, though -- it should get a
8143         GstFlowReturn return value at least.
8144
8145 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
8146
8147         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_stream_out):
8148         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
8149         * gst/playback/gstdecodebin2.c:
8150         (gst_decode_group_check_if_blocked):
8151           Printf format and missing argument fixes.
8152
8153 2007-01-05  Jan Schmidt  <thaytan@mad.scientist.com>
8154
8155         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header),
8156         (gst_ogm_parse_change_state):
8157         Activate pads before adding them to the element.
8158
8159 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
8160
8161         * tests/examples/seek/scrubby.c: (main):
8162         * tests/examples/seek/seek.c: (main):
8163           Call g_thread_init() first thing in main() (see #391278).
8164
8165 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
8166
8167         * tests/check/Makefile.am:
8168         * tests/check/libs/.cvsignore:
8169         * tests/check/libs/netbuffer.c: (GST_START_TEST),
8170         (netbuffer_suite):
8171           Add test for GstNetBuffer + gst_buffer_copy(). Disabled
8172           for the time being, since it's broken, see #393099.
8173
8174 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
8175
8176         * tests/check/Makefile.am:
8177           Update to use GST_PLUGINS_BASE_CFLAGS as well.
8178
8179 2007-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
8180
8181         * configure.ac:
8182           split out GST_CFLAGS into GST_PLUGINS_BASE_CFLAGS and GST_CFLAGS
8183           so that GST_BASE_CFLAGS can go inbetween them, making sure
8184           we use uninstalled gst-libs headers
8185         * docs/libs/Makefile.am:
8186         * ext/alsa/Makefile.am:
8187         * ext/cdparanoia/Makefile.am:
8188         * ext/gnomevfs/Makefile.am:
8189         * ext/libvisual/Makefile.am:
8190         * ext/ogg/Makefile.am:
8191         * ext/theora/Makefile.am:
8192         * ext/vorbis/Makefile.am:
8193         * gst-libs/gst/audio/Makefile.am:
8194         * gst-libs/gst/cdda/Makefile.am:
8195         * gst-libs/gst/interfaces/Makefile.am:
8196         * gst-libs/gst/riff/Makefile.am:
8197         * gst-libs/gst/rtp/Makefile.am:
8198         * gst-libs/gst/tag/Makefile.am:
8199         * gst/adder/Makefile.am:
8200         * gst/audioconvert/Makefile.am:
8201         * gst/audiorate/Makefile.am:
8202         * gst/audioresample/Makefile.am:
8203         * gst/playback/Makefile.am:
8204         * gst/tcp/Makefile.am:
8205         * gst/videoscale/Makefile.am:
8206         * gst/volume/Makefile.am:
8207         * sys/ximage/Makefile.am:
8208         * sys/xvimage/Makefile.am:
8209         * tests/icles/Makefile.am:
8210           adapt
8211
8212 2007-01-04  Julien MOUTTE  <julien@moutte.net>
8213
8214         * gst-libs/gst/interfaces/xoverlay.c:
8215         (gst_x_overlay_handle_events):
8216         * gst-libs/gst/interfaces/xoverlay.h:
8217         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
8218         (gst_ximagesink_set_xwindow_id),
8219         (gst_ximagesink_set_event_handling),
8220         (gst_ximagesink_xoverlay_init), (gst_ximagesink_set_property),
8221         (gst_ximagesink_get_property), (gst_ximagesink_init),
8222         (gst_ximagesink_class_init):
8223         * sys/ximage/ximagesink.h:
8224         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new),
8225         (gst_xvimagesink_set_xwindow_id),
8226         (gst_xvimagesink_set_event_handling),
8227         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_set_property),
8228         (gst_xvimagesink_get_property), (gst_xvimagesink_init),
8229         (gst_xvimagesink_class_init):
8230         * sys/xvimage/xvimagesink.h:
8231         * tests/icles/stress-xoverlay.c: (toggle_events), (create_window):
8232         Add a method to the XOverlay interface to allow disabling of 
8233         event handling in x[v]imagesink elements. This will let X events
8234         propagate to parent windows which can be usefull in some cases.
8235         Be carefull that the application is then responsible of pushing
8236         navigation events and expose events to the video sink.
8237         Fixes: #387138.
8238
8239 2007-01-03  Tim-Philipp Müller  <tim at centricular dot net>
8240
8241         * gst-libs/gst/tag/gstvorbistag.c:
8242         * tests/check/libs/tag.c: (GST_START_TEST):
8243           Add vorbistag <=> GStreamer tag mapping for GST_TAG_LOCATION
8244           (fixes #392070).
8245
8246 2007-01-01  Tim-Philipp Müller  <tim at centricular dot net>
8247
8248         * configure.ac:
8249         * docs/Makefile.am:
8250         * docs/design/Makefile.am:
8251           Dist design docs.
8252
8253 2006-12-27  Julien MOUTTE  <julien@moutte.net>
8254
8255         * docs/libs/gst-plugins-base-libs-sections.txt: Fix a documentation
8256         typo. Fixes: #390063.
8257
8258 2006-12-27  Julien MOUTTE  <julien@moutte.net>
8259
8260         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
8261         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Plug a
8262         caps leak.
8263         * win32/common/config.h: Updated.
8264
8265 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
8266
8267         * tests/check/elements/gdpdepay.c: (cleanup_gdpdepay),
8268         (setup_gdpdepay_streamheader):
8269         * tests/check/elements/gdppay.c: (cleanup_gdppay),
8270         (setup_gdppay_streamheader):
8271           Fix the dp tests, but activating the pads for the streamheader tests
8272           too and cleaning up conditionaly
8273
8274 2006-12-22  Jan Schmidt  <thaytan@mad.scientist.com>
8275
8276         * gst/ffmpegcolorspace/avcodec.h:
8277         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8278         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
8279         (gst_ffmpegcsp_avpicture_fill):
8280         * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
8281         (img_get_alpha_info):
8282         Add 2 new caps arrangements, for 24-bit RGB and BGR in 32-bits, but at the
8283         other end of the word. Fixes: #387073.
8284
8285         Add some inconsequential branch hints in a couple of places.
8286
8287 2006-12-21  Tim-Philipp Müller  <tim at centricular dot net>
8288
8289         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8290         (gst_ffmpeg_caps_to_smpfmt):
8291           The "signed" field in raw audio caps is of boolean type, trying to
8292           extract the value with _get_int() will fail (fix to keep in sync with
8293           the copy in gst-ffmpeg)
8294
8295 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
8296
8297         * tests/check/elements/audioresample.c: (cleanup_audioresample):
8298         * tests/check/elements/audiotestsrc.c: (cleanup_audiotestsrc):
8299         * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
8300         (cleanup_gdpdepay):
8301         * tests/check/elements/gdppay.c: (setup_gdppay), (cleanup_gdppay):
8302         * tests/check/elements/subparse.c: (teardown_subparse):
8303         * tests/check/elements/textoverlay.c: (cleanup_textoverlay):
8304         * tests/check/elements/videorate.c: (cleanup_videorate):
8305         * tests/check/elements/videotestsrc.c: (cleanup_videotestsrc):
8306         * tests/check/elements/volume.c: (cleanup_volume):
8307         * tests/check/elements/vorbisdec.c: (setup_vorbisdec),
8308         (cleanup_vorbisdec):
8309         * tests/check/elements/vorbistag.c: (setup_vorbistag),
8310         (cleanup_vorbistag):
8311           consistent pad (de)activation
8312
8313 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
8314
8315         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
8316           Forgot to register the extensions.
8317
8318 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
8319
8320         * gst/typefind/gsttypefindfunctions.c: (vivo_type_find),
8321         (plugin_init):
8322           Add typefinder for VIVO files (my christmas present to the 90s).
8323
8324 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
8325
8326         * gst/playback/gstdecodebin.c: (type_found):
8327           Special-case the text/plain media type: we only want to recognise it
8328           as a 'raw' decoded media type if it comes from a demuxer or subtitle
8329           parser, but not if the entire stream is of text/plain type. If the
8330           entire stream is text/plain, we should just error out.
8331
8332           This fixes playback of audio files with lyrics in totem. Totem can't
8333           distinguish between text files and subtitle files and passes any
8334           .txt file with the same basename as the main file to playbin as
8335           suburi, and playbin will then throw a 'subtitle found, but no video
8336           stream' error, which isn't entirely helpful. See #380342.
8337
8338           Also, with this change we'll show a slightly more correct error
8339           message in case totem passes a playlist file to us (although a
8340           custom error message wording instead of the default text would
8341           probably not be a bad idea either).
8342
8343           Same problem also needs to be fixed for playbin+decodebin2.
8344
8345         * tests/check/Makefile.am:
8346         * tests/check/elements/decodebin.c: (src_handoff_cb),
8347         (decodebin_new_decoded_pad_cb), (GST_START_TEST),
8348         (decodebin_suite):
8349           Add simple unit test for decodebin for the above.
8350
8351 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
8352
8353         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
8354         * gst/playback/gstdecodebin2.c: (gst_decode_bin_change_state):
8355           Refuse to change state to READY when we failed to create any of the
8356           required elements in our instance init function.
8357
8358 2006-12-15  Tim-Philipp Müller  <tim at centricular dot net>
8359
8360         * docs/libs/gst-plugins-base-libs-sections.txt:
8361           Small docs fixes/updates.
8362
8363         * gst-libs/gst/video/gstvideosink.h:
8364           Remove nonfunctional GST_VIDEO_SINK_CLOCK macro which is a leftover
8365           from the 0.9 days (GST_BASE_SINK_CLOCK, which it points to, was
8366           removed from the base sink API between 0.9.6 and 0.9.7).
8367           API: add GST_VIDEO_SINK_CAST and use it for the height/width
8368           accessor macros, so we don't do a runtime GObject type check every
8369           time we use them.
8370
8371 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
8372
8373         * Makefile.am:
8374         * gst-plugins-base.doap:
8375         * gst-plugins-base.spec.in:
8376           add doap file
8377
8378 2006-12-09  Tim-Philipp Müller  <tim at centricular dot net>
8379
8380         Patch by: Jens Granseuer <jensgr at gmx net>
8381
8382         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
8383         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
8384         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
8385         (gst_base_rtp_audio_payload_handle_sample_based_buffer):
8386         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
8387           Declare variables at the beginning of a block. Fixes #383195.
8388
8389 2006-12-07  Jan Schmidt  <thaytan@mad.scientist.com>
8390
8391         * configure.ac:
8392         Bump version nano - back to CVS.
8393
8394
8395 === release 0.10.11 ===
8396
8397 2006-12-06  Jan Schmidt <thaytan@mad.scientist.com>
8398
8399         * configure.ac:
8400           releasing 0.10.11, "Dumb things"
8401
8402 2006-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
8403
8404         * gst/playback/gstdecodebin.c: (find_dynamic), (dynamic_add),
8405         (close_pad_link), (elem_is_dynamic), (unlinked), (close_link):
8406         Handle the case where an element has multiple pads with 
8407         unfixed caps as well as still possibly producing more dynamic 
8408         pads by storing each case as a distinct entry in the dynamic list.
8409         Fixes #38223 again.
8410
8411 2006-12-04  Wim Taymans  <wim@fluendo.com>
8412
8413         * gst/playback/gstdecodebin.c: (close_pad_link):
8414         Fix #382223, add more dynamic caps handling.
8415
8416 2006-12-04  Wim Taymans  <wim@fluendo.com>
8417
8418         * gst-libs/gst/audio/gstringbuffer.h:
8419         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_init),
8420         (gst_netaddress_set_ip4_interface),
8421         (gst_netaddress_set_ip6_interface), (gst_netaddress_set_loopback),
8422         (gst_netaddress_set_ttl), (gst_netaddress_get_ip4_interface),
8423         (gst_netaddress_get_ip6_interface), (gst_netaddress_get_loopback),
8424         (gst_netaddress_get_ttl):
8425         * gst-libs/gst/netbuffer/gstnetbuffer.h:
8426         * gst/playback/gstdecodebin.c: (close_pad_link):
8427         * tests/examples/seek/seek.c: (end_scrub), (end_seek), (do_seek),
8428         (seek_cb), (stop_seek), (rate_spinbutton_changed_cb):
8429         * win32/common/config.h:
8430
8431 2006-12-01  Michael Smith  <msmith@fluendo.com>
8432
8433         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
8434           Delete bad debug code.
8435           Fixes #381219
8436
8437 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
8438
8439         * gst/videoscale/vs_4tap.c:
8440         * win32/MANIFEST:
8441         * win32/common/config.h:
8442         * win32/vs8/libgstvideoscale.vcproj:
8443         Fix compilation on win32 under VS8
8444         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
8445         Partially fixes #381175
8446
8447 2006-11-30  Michael Smith  <msmith@fluendo.com>
8448
8449         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
8450         (GST_START_TEST):
8451           It would be very bad if, after a discont buffer, we thought every
8452           single following buffer was also discont. So, add to the test to
8453           ensure that this isn't the case.
8454           
8455         * ext/theora/theoraenc.c: (theora_enc_is_discontinuous):
8456           ... it was the case. So fix it.
8457
8458 2006-11-28  Wim Taymans  <wim@fluendo.com>
8459
8460         * gst/playback/gstplaybasebin.c: (check_queue_event):
8461         Improve debug.
8462
8463         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
8464         Fix width and height range from 16 - 4096 to 1 - MAXINT, just like the
8465         padtemplate caps. Refixes #357577.
8466
8467 2006-11-28  Wim Taymans  <wim@fluendo.com>
8468
8469         * gst/playback/gstplaybasebin.c: (check_queue_event),
8470         (queue_threshold_reached), (queue_out_of_data),
8471         (gen_preroll_element):
8472         Add event probe to see when EOS is in a queue and we can disable the
8473         underrun signals. Fixes #357577.
8474
8475 2006-11-28  Edward Hervey  <edward@fluendo.com>
8476
8477         * gst/playback/Makefile.am:
8478         * gst/playback/gstdecodebin2.c: (gst_decode_bin_get_type),
8479         (_gst_boolean_accumulator), (gst_decode_bin_class_init),
8480         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
8481         (gst_decode_bin_init), (gst_decode_bin_dispose),
8482         (gst_decode_bin_finalize), (gst_decode_bin_set_property),
8483         (gst_decode_bin_get_property), (gst_decode_bin_set_caps),
8484         (gst_decode_bin_get_caps), (gst_decode_bin_autoplug_continue),
8485         (gst_decode_bin_autoplug_sort), (analyze_new_pad), (connect_pad),
8486         (connect_element), (expose_pad), (type_found),
8487         (pad_added_group_cb), (pad_removed_group_cb),
8488         (no_more_pads_group_cb), (pad_added_cb), (pad_removed_cb),
8489         (no_more_pads_cb), (find_compatibles), (is_demuxer_element),
8490         (are_raw_caps), (multi_queue_overrun_cb),
8491         (multi_queue_underrun_cb), (gst_decode_group_new),
8492         (get_current_group), (group_demuxer_event_probe),
8493         (gst_decode_group_control_demuxer_pad),
8494         (gst_decode_group_control_source_pad),
8495         (gst_decode_group_check_if_blocked),
8496         (gst_decode_group_check_if_drained), (gst_decode_group_expose),
8497         (gst_decode_group_hide), (gst_decode_group_free),
8498         (gst_decode_group_set_complete), (source_pad_blocked_cb),
8499         (source_pad_event_probe), (gst_decode_pad_new), (add_fakesink),
8500         (remove_fakesink), (find_sink_pad), (gst_decode_bin_change_state),
8501         (plugin_init):
8502         New decodebin2 element.
8503         Closes #370092
8504         * gst/playback/gstplay-marshal.list:
8505         Added marshallers for new signals in decodebin2
8506         * gst/playback/gstplaybasebin.c: (setup_subtitle), (make_decoder):
8507         Use decodebin2 if *and only if* the USE_DECODEBIN2 environment variable
8508         is set.
8509
8510 2006-11-28  Wim Taymans  <wim@fluendo.com>
8511
8512         * gst/playback/gstplaybasebin.c: (setup_source),
8513         (gst_play_base_bin_change_state):
8514         Disable rtsp:// uris for the release, it's not good enough yet.
8515         Remove unused var.
8516
8517 2006-11-26  Wim Taymans  <wim@fluendo.com>
8518
8519         * ext/theora/theoradec.c: (gst_theora_dec_reset),
8520         (theora_dec_push_forward), (theora_dec_push_reverse),
8521         (theora_handle_data_packet), (theora_dec_decode_buffer),
8522         (theora_dec_flush_decode), (theora_dec_chain_reverse),
8523         (theora_dec_chain_forward), (theora_dec_chain):
8524         Implement reverse playback.
8525
8526         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
8527         (vorbis_dec_decode_buffer), (vorbis_dec_flush_decode),
8528         (vorbis_dec_chain_forward):
8529         Clear buffers used for reverse playback in _reset.
8530         No need to set the eos flag, we clip samples using the segment.
8531
8532 2006-11-24  Wim Taymans  <wim@fluendo.com>
8533
8534         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
8535         (gst_ogg_pad_init), (gst_ogg_pad_dispose), (gst_ogg_pad_reset),
8536         (gst_ogg_pad_stream_out), (gst_ogg_pad_submit_page),
8537         (gst_ogg_chain_reset), (gst_ogg_demux_perform_seek):
8538         Some cleanups.
8539         Handle continued pages in reverse mode.
8540
8541 2006-11-24  Wim Taymans  <wim@fluendo.com>
8542
8543         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
8544         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
8545         (vorbis_dec_flush_decode):
8546         Small cleanups.
8547         Don't try to add invalid timestamps.
8548         Clipping will unref the buffer.
8549
8550 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
8551
8552         * gst/adder/gstadder.h:
8553         * gst/audiotestsrc/gstaudiotestsrc.h:
8554           remove obsolete _factory_init protos
8555
8556 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
8557
8558         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
8559           Fix spacing in debug message.
8560
8561 2006-11-23  Wim Taymans  <wim@fluendo.com>
8562
8563         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
8564         (gst_ogg_demux_chain):
8565         Don't just ignore return values from _pad_push().
8566         Small debug improvements.
8567
8568 2006-11-23  Michael Smith  <msmith@fluendo.com>
8569
8570         * ext/ogg/gstoggmux.c: (gst_ogg_mux_process_best_pad):
8571           If our incoming buffer is marked as DISCONT, then increment the page
8572           number (so that the discontinuity is marked in the final ogg
8573           bitstream) and flush the previous page.
8574
8575 2006-11-22  Michael Smith  <msmith@fluendo.com>
8576
8577         * ext/theora/gsttheoraenc.h:
8578         * ext/theora/theoraenc.c: (gst_theora_enc_init),
8579         (theora_enc_reset), (theora_enc_clear), (theora_enc_sink_setcaps),
8580         (theora_buffer_from_packet), (theora_enc_is_discontinuous),
8581         (theora_enc_chain), (theora_enc_change_state):
8582           Mark discontinuities of > 3/4 of a frame, reinit encoder.
8583
8584         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
8585         (GST_START_TEST), (theoraenc_suite):
8586           Enable discontinuity test, fix it.
8587
8588 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
8589
8590         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
8591         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
8592         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
8593         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
8594         (gst_text_overlay_change_state):
8595         * ext/pango/gsttextoverlay.h:
8596           Some textoverlay fixes: for one, in the video chain function,
8597           actually wait for a text buffer to come in if there is none at the
8598           moment and there should be one; also, deal more gracefully with
8599           incoming buffers that do not have a timestamp or duration; discard
8600           text buffer when not needed any longer. Fixes #341681.
8601
8602         * tests/check/Makefile.am:
8603         * tests/check/elements/.cvsignore:
8604         * tests/check/elements/textoverlay.c:
8605         (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2),
8606         (setup_textoverlay), (buffer_is_all_black), (create_black_buffer),
8607         (create_text_buffer), (cleanup_textoverlay), (GST_START_TEST),
8608         (test_video_waits_for_text_send_text_newsegment_thread),
8609         (test_video_waits_for_text_shutdown_element),
8610         (test_render_continuity_push_video_buffers_thread),
8611         (textoverlay_suite):
8612           Add some unit tests for textoverlay.
8613
8614 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
8615
8616         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
8617           Avoid integer underflow when the found probability for mp3 is
8618           smaller than the 'penalty' we subtract if there's not a clean
8619           mp3 header sync at offset 0.
8620
8621 2006-11-21  Stefan Kost  <ensonic@users.sf.net>
8622
8623         * docs/libs/gst-plugins-base-libs-sections.txt:
8624           Add some new symbols to the docs
8625
8626 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
8627
8628         * tests/check/Makefile.am:
8629         * tests/check/elements/ffmpegcolorspace.c:
8630         (ffmpegcolorspace_suite):
8631           Enable ffmpegcolorspace test now that the RGBA32 issue is fixed
8632           (for now not for valgrinding though, since it takes too long).
8633
8634 2006-11-20  Wim Taymans  <wim@fluendo.com>
8635
8636         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8637         (gst_ffmpeg_pixfmt_to_caps):
8638         Fix RGBA32 caps. Fixes #357038.
8639
8640 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
8641
8642         * gst-libs/gst/interfaces/mixertrack.h:
8643           Add FIXME so we can add some padding here in 0.11
8644
8645 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
8646
8647         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
8648           Fix GstBaseRTPAudioPayload structure so the whole GObject
8649           inheritance business actually works (parent class instance structure
8650           must always come first in the derived class instance structure).
8651
8652 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
8653
8654         * gst/videotestsrc/Makefile.am:
8655         * tests/check/Makefile.am:
8656           Make sure our checks and the videotestsrc plugin link against the
8657           local uninstalled gst libs and not any installed gst libs that
8658           might happen to exist as well.
8659
8660         * tests/check/elements/adder.c: (message_received),
8661         (test_event_message_received), (test_play_twice_message_received):
8662         * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
8663           Fix compiler warnings when compiling against core with disabled
8664           debugging system.
8665
8666 2006-11-16  Michael Smith  <msmith@fluendo.com>
8667
8668         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
8669         (gst_audio_rate_sink_event), (gst_audio_rate_chain):
8670           Fix audiorate, so that it accurately sets offsets and timestamps.
8671           Doesn't change the fundamental algorithmic decisions; so should be
8672           safe.
8673
8674         * tests/check/Makefile.am:
8675           Enable audiorate test now that it passes.
8676
8677 2006-11-09  Stefan Kost  <ensonic@users.sf.net>
8678
8679         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
8680           clear xv when going to NULL, remove // commented non-existant proto
8681
8682         * tests/examples/seek/seek.c: (main):
8683           add missing tooltip description for scrub and play_scrub
8684
8685 2006-11-14  David Schleef  <ds@schleef.org>
8686
8687         * configure.ac:
8688           Bump liboil requirement to 0.3.8.
8689         * gst-libs/gst/riff/riff-media.c:
8690           Add Dirac fourcc.
8691         * gst/videoscale/vs_image.h:
8692         * gst/videoscale/vs_scanline.h:
8693           Use liboil's stdint.h.
8694         * gst/videotestsrc/videotestsrc.c:
8695           Remove liboil related ifdef's, since they aren't needed now, and
8696           won't work with future versions.
8697
8698 2006-11-14  David Schleef  <ds@schleef.org>
8699
8700         * gst/videoscale/Makefile.am:
8701         * gst/videoscale/gstvideoscale.c:
8702         * gst/videoscale/gstvideoscale.h:
8703         * gst/videoscale/vs_4tap.c:
8704         * gst/videoscale/vs_4tap.h:
8705         * gst/videoscale/vs_image.c:
8706         * gst/videoscale/vs_image.h:
8707         * gst/videoscale/vs_scanline.c:
8708         * gst/videoscale/vs_scanline.h:
8709           Add a 4-tap image scaler.  Theoretically looks much prettier.
8710           The tap calculation could use some improvement.
8711
8712 2006-11-14  Wim Taymans  <wim@fluendo.com>
8713
8714         Patch by: Jan David Mol <j dot j dot d dot mol at tudelft dot nl>
8715
8716         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds),
8717         (gst_riff_parse_strf_iavs):
8718         * gst/subparse/gstsubparse.c: (convert_encoding):
8719         * gst/tcp/gstmultifdsink.c:
8720         (gst_multi_fd_sink_handle_client_write):
8721         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
8722         (gst_tcp_read_buffer), (gst_tcp_gdp_read_caps),
8723         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
8724         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_render):
8725         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
8726         (gst_ximagesink_ximage_new):
8727         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
8728         Various gsize and gssize printf fixes. Fixes #372507.
8729
8730 2006-11-13  Wim Taymans  <wim@fluendo.com>
8731
8732         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
8733         (vorbis_dec_push_forward), (vorbis_dec_push_reverse),
8734         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
8735         (vorbis_dec_flush_decode), (vorbis_dec_chain_reverse),
8736         (vorbis_dec_chain_forward), (vorbis_dec_chain):
8737         * ext/vorbis/vorbisdec.h:
8738         First stab at vorbis reverse playback.
8739
8740 2006-11-13  Wim Taymans  <wim@fluendo.com>
8741
8742         * gst-libs/gst/audio/gstbaseaudiosink.c:
8743         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
8744         * gst-libs/gst/audio/gstbaseaudiosink.h:
8745         Make the clock sync code more accurate wrt resampling and playback
8746         at different rates.
8747         
8748         * gst-libs/gst/audio/gstringbuffer.c:
8749         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit):
8750         * gst-libs/gst/audio/gstringbuffer.h:
8751         Use better algorithm to interpolate sample rates. 
8752
8753 2006-11-13  Michael Smith  <msmith@fluendo.com>
8754
8755         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page):
8756           Improve a debug line slightly.
8757
8758         * ext/ogg/gstogmparse.c: (gst_ogm_parse_plugin_init):
8759           Call gst_riff_init() in plugin_init, to avoid getting errors from
8760           the debug system (unrelated changes to another plugin made this turn
8761           up; not sure why).
8762
8763 2006-11-10  Tim-Philipp Müller  <tim at centricular dot net>
8764
8765         Patch by: Sergey Scobich  <sergery.scobich at gmail com>
8766
8767         * win32/common/libgsttag.def:
8768           Add missing symbol (#366492).
8769
8770 2006-11-09  Tim-Philipp Müller  <tim at centricular dot net>
8771
8772         * gst/playback/gststreamselector.c: (gst_stream_selector_dispose):
8773           Don't unref a NULL pad.
8774
8775 2006-11-09  Wim Taymans  <wim@fluendo.com>
8776
8777         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
8778         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_perform_seek),
8779         (gst_ogg_demux_handle_page), (gst_ogg_demux_chain),
8780         (gst_ogg_demux_loop_forward), (gst_ogg_demux_loop_reverse),
8781         (gst_ogg_demux_loop):
8782         Implement first stab at reverse playback.
8783
8784 2006-11-07  Stefan Kost  <ensonic@users.sf.net>
8785
8786         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
8787         (gst_riff_create_video_template_caps):
8788           add h263/h264 variants to the caps, Fixes #363118
8789
8790 2006-11-06  Tim-Philipp Müller  <tim at centricular dot net>
8791
8792         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
8793         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
8794           Use g_strerror instead of strerror so we get UTF-8.
8795
8796 2006-11-03  David Schleef  <ds@schleef.org>
8797
8798         * ext/ogg/gstoggdemux.c:
8799         * ext/ogg/gstoggmux.c:
8800           Add/remove KW-DIRAC header here, since it is ogg-specific.
8801
8802 2006-11-03  Michael Smith  <msmith@fluendo.com>
8803
8804         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
8805           Recognise more mpeg4 elementary video streams.
8806
8807 2006-11-02  Edward Hervey  <edward@fluendo.com>
8808
8809         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
8810         Lower the probability of mp3 typefinding functions if we don't find a
8811         valid mp3 header at the start of the file.
8812         Closes #369482
8813
8814 2006-11-02  Wim Taymans  <wim@fluendo.com>
8815
8816         * ext/theora/gsttheoradec.h:
8817         * ext/theora/theoradec.c: (gst_theora_dec_init),
8818         (theora_dec_sink_event), (theora_dec_chain_forward),
8819         (theora_dec_flush_decode), (theora_dec_chain_reverse),
8820         (theora_dec_chain):
8821         Document and partially implement an algorithm for doing reverse playback
8822         of theora video.
8823
8824 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
8825
8826         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
8827
8828         * win32/common/config.h:
8829         * win32/common/interfaces-enumtypes.c:
8830         * win32/common/libgsttag.def:
8831         * win32/vs8/gst-plugins-base.sln:
8832         * win32/vs8/libgstaudioresample.vcproj:
8833         * win32/vs8/libgstinterfaces.vcproj:
8834         * win32/vs8/libgstogg.vcproj:
8835         * win32/vs8/libgstriff.vcproj:
8836         * win32/vs8/libgsttag.vcproj:
8837         * win32/vs8/libgsttheora.vcproj:
8838         * win32/vs8/libgstvideoscale.vcproj:
8839         * win32/vs8/libgstvorbis.vcproj:
8840           Misc. VS8 build fixes: fix syntax in config.h, add missing entries
8841           to libgsttag.def; add missing dependencies for some vs8 projects;
8842           re-arrange placement of .def files in vs8 projects (#366334).
8843
8844 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
8845
8846         * ext/ogg/gstogg.c:
8847           Remove unused variable.
8848
8849         * ext/ogg/gstoggdemux.c:
8850           Fix Wim's surname in plugin description.
8851
8852 2006-10-31  Wim Taymans  <wim@fluendo.com>
8853
8854         * gst-plugins-base.spec.in:
8855         spec new .h file. Fixes #368310.
8856
8857 2006-10-31  Michael Smith  <msmith@fluendo.com>
8858
8859         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
8860         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
8861         (gst_multi_fd_sink_get_stats),
8862         (gst_multi_fd_sink_remove_client_link),
8863         (gst_multi_fd_sink_queue_buffer),
8864         (gst_multi_fd_sink_handle_clients):
8865         * gst/tcp/gstmultifdsink.h:
8866           Make using the remove or clear signals threadsafe.
8867           Make calling get-stats with an invalid fd not segfault.
8868           Fixes 368273.
8869
8870 2006-10-31  Wim Taymans  <wim@fluendo.com>
8871
8872         * gst-libs/gst/rtp/Makefile.am:
8873         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
8874         (gst_base_rtp_audio_payload_init):
8875         Fix and activate base audio payloader.
8876
8877 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
8878
8879         * gst/typefind/gsttypefindfunctions.c: (qtif_type_find),
8880         (plugin_init):
8881           Add typefinder for QuickTime Image Files (see #366156).
8882
8883 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
8884
8885         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
8886           Another typo fix (#366212).
8887
8888 2006-10-27  Wim Taymans  <wim@fluendo.com>
8889
8890         * gst/volume/gstvolume.c: (volume_transform_ip):
8891         Use stream time to synchronize volume property instead of rather random
8892         timestamps. This is needed when gnonlin does its time shifting.
8893
8894 2006-10-27  Wim Taymans  <wim@fluendo.com>
8895
8896         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
8897
8898         * ext/ogg/gstoggmux.c: (gst_ogg_mux_release_pad):
8899         Remove the pad from the element in release_pad. Fixes #364812.
8900
8901 2006-10-27  Tim-Philipp Müller  <tim at centricular dot net>
8902
8903         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
8904         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
8905           Explicitly create our custom buffer classes at a thread-safe
8906           location as well, since g_type_class_ref() doesn't seem to be
8907           entirely thread-safe either (#365501; also see #349410).
8908
8909 2006-10-26  Tim-Philipp Müller  <tim at centricular dot net>
8910
8911         * gst-libs/gst/riff/riff-read.c: (freeform_string_to_utf8),
8912         (gst_riff_parse_info):
8913           If strings in INFO chunk are not UTF-8, do something similar to
8914           what we do for ID3v1 tags: check a number of environment variables
8915           (GST_AVI_TAG_ENCODING, GST_RIFF_TAG_ENCODING, GST_TAG_ENCODING) for
8916           character sets to try, otherwise try the current locale and/or fall
8917           back on ISO-8859-1. Fixes #360552.
8918
8919 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
8920
8921         * gst/videotestsrc/gstvideotestsrc.c:
8922         (gst_video_test_src_pattern_get_type),
8923         (gst_video_test_src_set_pattern):
8924         * gst/videotestsrc/gstvideotestsrc.h:
8925         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_checkers1),
8926         (gst_video_test_src_checkers2), (gst_video_test_src_checkers4),
8927         (gst_video_test_src_checkers8):
8928         * gst/videotestsrc/videotestsrc.h:
8929           Add a bunch of exciting new checkers patterns.
8930
8931 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
8932
8933         * gst/subparse/Makefile.am:
8934         * gst/subparse/gstsubparse.c:
8935         (gst_sub_parse_data_format_autodetect),
8936         (gst_sub_parse_format_autodetect), (handle_buffer),
8937         (gst_sub_parse_chain), (gst_subparse_type_find), (plugin_init):
8938         * gst/subparse/gstsubparse.h:
8939         * gst/subparse/tmplayerparse.c: (tmplayer_parse_line),
8940         (parse_tmplayer):
8941         * gst/subparse/tmplayerparse.h:
8942           Add support for TMPlayer-type subtitles (#362845).
8943
8944         * tests/check/elements/subparse.c: (test_tmplayer_do_test),
8945         (GST_START_TEST), (subparse_suite):
8946           Add some basic unit tests for the above.
8947
8948 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
8949
8950         * tests/check/elements/audiorate.c: (test_injector_base_init),
8951         (test_injector_class_init), (test_injector_chain),
8952         (test_injector_init), (probe_cb), (do_perfect_stream_test),
8953         (GST_START_TEST), (audiorate_suite):
8954           More tests for audiorate: inject buffers to check behaviour when
8955           buffers overlap.
8956
8957 2006-10-21  Tim-Philipp Müller  <tim at centricular dot net>
8958
8959         * tests/check/Makefile.am:
8960         * tests/check/elements/.cvsignore:
8961         * tests/check/elements/audiorate.c: (probe_cb), (got_buf),
8962         (do_perfect_stream_test), (GST_START_TEST), (audiorate_suite):
8963           Add some basic unit tests for audiorate. Disabled at the moment
8964           since it doesn't pass yet (see bug #363119).
8965
8966 2006-10-20  Tim-Philipp Müller  <tim at centricular dot net>
8967
8968         * gst/subparse/gstsubparse.c: (subrip_fix_up_markup),
8969         (parse_subrip), (handle_buffer):
8970           Add missing closing tags for markup and fix broken markup,
8971           otherwise pango won't render anything (fixes #357531). Also,
8972           make sure the text we send out is always NUL-terminated
8973           (better safe than sorry etc.).
8974
8975         * tests/check/elements/subparse.c: (test_srt_do_test),
8976         (test_srt):
8977           Some more tests for .srt incl. tests for the above stuff.
8978
8979 2006-10-20  Julien MOUTTE  <julien@moutte.net>
8980
8981         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
8982         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
8983         Patch by: Stefan Kost  <ensonic@users.sf.net>
8984         Try to redraw borders only when needed. Apparently this consumes
8985         resources on small devices... :-O (#363607)
8986
8987 2006-10-20  Michael Smith  <msmith@fluendo.com>
8988
8989         * gst/tcp/gstmultifdsink.c:
8990         (gst_multi_fd_sink_client_queue_buffer):
8991           If caps change, then update the client's idea of the caps so that we
8992           don't end up re-sending streamheaders for every single buffer after
8993           the caps change.
8994
8995 2006-10-20  Michael Smith  <msmith@fluendo.com>
8996
8997         * ext/ogg/gstoggparse.c: (gst_ogg_parse_dispose),
8998         (gst_ogg_parse_append_header), (gst_ogg_parse_chain):
8999           Set caps on pushed buffers; fix up refcounting of caps objects.
9000
9001 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
9002
9003         * gst/typefind/gsttypefindfunctions.c: (mmsh_type_find),
9004         (plugin_init):
9005           Typefind mmsh header data packet to application/x-mmsh (#362625).
9006
9007 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
9008
9009         * tests/check/Makefile.am:
9010         * tests/check/elements/.cvsignore:
9011         * tests/check/elements/subparse.c: (buffer_from_static_string),
9012         (setup_subparse), (teardown_subparse), (test_srt_do_test),
9013         (GST_START_TEST), (subparse_suite):
9014           Add very simple unit test for subparse.
9015
9016 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
9017
9018         * gst/subparse/gstsubparse.c: (strip_trailing_newlines),
9019         (parse_subrip):
9020           Strip trailing newlines from subtitle text output.
9021
9022 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
9023
9024         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
9025         (gst_sub_parse_change_state):
9026           Fix memleak; clear subparse->textbuf n state change function.
9027
9028 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
9029
9030         * gst/subparse/gstsubparse.c:
9031         (gst_sub_parse_data_format_autodetect):
9032           Don't require subrip (.srt) files to start with a chunk number of 1.
9033
9034 2006-10-18  Wim Taymans  <wim@fluendo.com>
9035
9036         * gst-libs/gst/audio/gstbaseaudiosink.c:
9037         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
9038         * gst-libs/gst/audio/gstbaseaudiosink.h:
9039         Extract rate from the NEWSEGMENT event.
9040         Use commit_full to also take rate adjustment into account when writing
9041         samples to the ringbuffer.
9042         
9043         * gst-libs/gst/audio/gstringbuffer.c:
9044         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit),
9045         (gst_ring_buffer_read):
9046         * gst-libs/gst/audio/gstringbuffer.h:
9047         Added _commit_full() to also take rate into account.
9048         Use simple interpolation algorithm to resample audio.
9049         API: gst_ring_buffer_commit_full()
9050
9051         * tests/examples/seek/scrubby.c: (speed_cb), (do_seek):
9052         * tests/examples/seek/seek.c: (segment_done):
9053         Don't try to seek with 0.0 rate, just pause instead.
9054         Remove bogus debug line.
9055
9056 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
9057
9058         * gst/playback/gstplaybasebin.c: (subbin_startup_sync_msg),
9059         (setup_source):
9060           Catch async errors when starting up the subtitle bin, so we can
9061           stop waiting and continue with the main film instead of hanging
9062           forever. Fixes #339366.
9063
9064         * tests/check/elements/playbin.c: (playbin_suite):
9065           Enable unit test for the above.
9066
9067 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
9068
9069         * tests/check/Makefile.am:
9070         * tests/check/elements/.cvsignore:
9071         * tests/check/elements/playbin.c: (GST_START_TEST),
9072         (gst_red_video_src_uri_get_type),
9073         (gst_red_video_src_uri_get_protocols),
9074         (gst_red_video_src_uri_get_uri), (gst_red_video_src_uri_set_uri),
9075         (gst_red_video_src_uri_handler_init),
9076         (gst_red_video_src_init_type), (gst_red_video_src_base_init),
9077         (gst_red_video_src_create), (gst_red_video_src_class_init),
9078         (gst_red_video_src_init), (plugin_init), (playbin_suite):
9079           Some small and basic unit tests for playbin; not very useful yet,
9080           but at least a start.
9081
9082 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
9083
9084         * gst/playback/gstplaybin.c: (setup_sinks):
9085           The old pad activation spiel.
9086
9087 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
9088
9089         * gst/playback/gstplaybasebin.c: (setup_source):
9090           Don't hang forever if the subbin already fails to start up in 
9091           the state change to PAUSED (#339366).
9092
9093 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
9094
9095         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_list_channels),
9096         (gst_tuner_set_channel), (gst_tuner_get_channel),
9097         (gst_tuner_list_norms), (gst_tuner_set_norm), (gst_tuner_get_norm),
9098         (gst_tuner_set_frequency), (gst_tuner_get_frequency),
9099         (gst_tuner_signal_strength), (gst_tuner_find_norm_by_name),
9100         (gst_tuner_find_channel_by_name):
9101           Fix some function guards, add some more function guards.
9102
9103 2006-10-17  Jan Schmidt  <thaytan@mad.scientist.com>
9104
9105         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
9106         (remove_element_chain):
9107         Don't return a pad from get_our_ghost_pad unless it is actually the
9108         one we want.
9109         Change a cast in remove_element_chain slightly.
9110
9111 2006-10-13  Julien MOUTTE  <julien@moutte.net>
9112
9113         * tests/examples/seek/seek.c: (do_seek), (start_seek),
9114         (rate_spinbutton_changed_cb), (segment_done), (msg_state_changed):
9115         Segment seeking needs to use the rate and set stop to -1.
9116
9117 2006-10-13  Wim Taymans  <wim@fluendo.com>
9118
9119         * gst-libs/gst/audio/gstbaseaudiosink.c:
9120         (gst_base_audio_sink_setcaps):
9121         Don't crash when ringbuffer is not yet created.
9122         Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
9123         Fixes #361634.
9124
9125         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
9126         * gst/playback/gststreamselector.c:
9127         (gst_stream_selector_request_new_pad):
9128         Activate pads befre adding them to running elements.
9129
9130 2006-10-13  Julien MOUTTE  <julien@moutte.net>
9131
9132         * tests/examples/seek/seek.c: (do_seek), (start_seek),
9133         (rate_spinbutton_changed_cb), (msg_state_changed): Stop the scale
9134         updater when we start grabing the slider. Don't wait for the
9135         pipeline to be PAUSED.
9136
9137 2006-10-13  Tim-Philipp Müller  <tim at centricular dot net>
9138
9139         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_list_tracks),
9140         (gst_mixer_set_volume), (gst_mixer_get_volume),
9141         (gst_mixer_set_mute), (gst_mixer_set_option),
9142         (gst_mixer_get_option), (gst_mixer_mute_toggled),
9143         (gst_mixer_record_toggled), (gst_mixer_volume_changed),
9144         (gst_mixer_option_changed):
9145           Guard mixer interface functions against bogus arguments.
9146
9147 2006-10-12  Julien MOUTTE  <julien@moutte.net>
9148
9149         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
9150         (play_cb), (pause_cb), (stop_cb), (rate_spinbutton_changed_cb),
9151         (msg_state_changed), (main): Use state-changed messages to trigger
9152         start/stop of scale update timer. Indeed the scale slider was
9153         jumping here and there because the update timer was activated 
9154         before seek completed. This fixes instant applying of rate changes
9155         by pressing the spinbutton like a crazy man !
9156
9157 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
9158
9159         Patch by: Sebastien Cote  <sebas642 at yahoo.ca>
9160
9161         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
9162         (gst_basertppayload_finalize):
9163           Fix two small memory leaks (#361456).
9164
9165 2006-10-10  Julien MOUTTE  <julien@moutte.net>
9166
9167         * tests/examples/seek/seek.c: (do_seek),
9168         (rate_spinbutton_changed_cb): When changing spinbutton we try
9169         to change the rate on the fly.
9170
9171 2006-10-10  Wim Taymans  <wim@fluendo.com>
9172
9173         * gst-libs/gst/riff/riff-ids.h:
9174         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
9175         (gst_riff_create_audio_template_caps):
9176         Add WMS caps.
9177
9178 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9179
9180         Patch by: Josep Torra Valles <josep@fluendo.com>
9181
9182         * ext/gnomevfs/gstgnomevfssink.c:
9183         * ext/gnomevfs/gstgnomevfssrc.c:
9184         Fix URI interface implementation return type.
9185         * ext/pango/gsttextoverlay.c: (gst_text_overlay_set_property):
9186         Fix what looks like a copy/paste issue when assigning values.
9187         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
9188         (gst_audio_filter_template_get_type):
9189         Cast to prevent Forte warnings.
9190         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
9191         Fix URI interface implementation return type.
9192         gst_pad_query_position requires a signed integer pointer as
9193         3rd parameter, GstClockTime is unsigned.
9194         * gst/audioconvert/audioconvert.c:
9195         Fix integer overflow when treated as signed.
9196         * gst/audioresample/resample.c: (resample_add_input_data):
9197         Cast to prevent warnings on Forte.
9198         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette):
9199         Fix integer overflow when treated as signed.
9200         * gst/ffmpegcolorspace/imgconvert_template.h:
9201         Fix integer overflow when treated as signed. RGBA_OUT shifts bits.
9202         * gst/playback/gstdecodebin.c: (queue_filled_cb),
9203         (cleanup_decodebin):
9204         Who initialises a guint to -1!
9205         Cast function pointers to prevent warnings on Forte.
9206         * gst/playback/gstplaybasebin.c: (queue_deadlock_check),
9207         (queue_threshold_reached):
9208         Cast function pointers correctly to prevent warnings on Forte.
9209         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
9210         Cast function pointers correctly to prevent warnings on Forte.
9211         * gst/subparse/gstssaparse.c: (gst_ssa_parse_setcaps):
9212         Obvious change to unsigned, 0xEF > max signed char.
9213         * gst/tcp/gstmultifdsink.c: (get_buffers_max), (count_burst_unit):
9214         GstClockTime is unsigned, initialise correctly.
9215         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
9216         Cast so pointer arithemetic doesn't cause warnings on Forte.
9217         * gst/videorate/gstvideorate.c:
9218         Use correct return value.
9219         * tests/examples/seek/scrubby.c:
9220         GstClockTime is unsigned, initialise correctly.
9221
9222 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
9223
9224         Patch by: Ferenc Gerlits  <fgerlits at gmail com>
9225
9226         * gst/typefind/gsttypefindfunctions.c:
9227           Recognise XML files and XML-like files shorter than 256 bytes as
9228           well (fixes #359237).
9229
9230 2006-10-09  Edgard Lima <edgard.lima@indt.org.br>
9231
9232         Patch by: Renato Filho <renato.filho@indt.org.br>
9233         
9234         * gst/typefind/gsttypefindfunctions.c:
9235         Added typefind functions to video/x-nuv media.
9236         
9237 2006-10-08  Tim-Philipp Müller  <tim at centricular dot net>
9238
9239         * gst-libs/gst/interfaces/xoverlay.c:
9240         (gst_x_overlay_set_xwindow_id), (gst_x_overlay_expose):
9241           Some more guards against invalid input.
9242
9243 2006-10-07  Julien MOUTTE  <julien@moutte.net>
9244
9245         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event): 
9246         Useless goto.
9247         * tests/examples/seek/seek.c: (do_seek),
9248         (rate_spinbutton_changed_cb), (main): Add a rate spinbutton in
9249         seek example to experiment with rates != 1.0 (reverse playback !)
9250
9251 2006-10-06  Stefan Kost  <ensonic@users.sf.net>
9252
9253         * gst-libs/gst/interfaces/xoverlay.c:
9254           Unref message in doc-example (spotted by Robert McQueen)
9255
9256 2006-10-06  Wim Taymans  <wim@fluendo.com>
9257
9258         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
9259         (mpeg1_parse_header), (mpeg1_sys_type_find):
9260         printf fix.
9261
9262 2006-10-06  Wim Taymans  <wim@fluendo.com>
9263
9264         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
9265         (close_pad_link):
9266         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
9267         Activate dynamic pads before adding them to the element.
9268
9269 2006-10-06  Michael Smith  <msmith@fluendo.com>
9270
9271         * gst-libs/gst/floatcast/floatcast.h:
9272           Fix obviously-bogus macros; use the correct types.
9273
9274 2006-10-06  Wim Taymans  <wim@fluendo.com>
9275
9276         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9277         (gst_base_rtp_depayload_change_state):
9278         Also call parent state change function to activate pads.
9279
9280         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
9281         (mpeg1_parse_header), (mpeg1_sys_type_find):
9282         Add some more debug info in mpeg typefinding.
9283
9284 2006-10-06  Michael Smith  <msmith@fluendo.com>
9285
9286         * ext/theora/theoradec.c: (theora_dec_chain):
9287           Zero byte theora packets are valid and well-defined; don't warn on
9288           them.
9289
9290 2006-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
9291
9292         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
9293         (gst_multi_fd_sink_get_stats), (find_limits),
9294         (gst_multi_fd_sink_queue_buffer):
9295           API: add dropped_buffers to the get-stats GValueArray
9296
9297 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
9298
9299         * ext/alsa/gstalsadeviceprobe.c:
9300         (gst_alsa_device_property_probe_get_values):
9301         * ext/alsa/gstalsasink.c: (set_hwparams):
9302         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_elem_pad),
9303         (gst_ogg_chain_new_stream), (gst_ogg_demux_read_chain):
9304         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers),
9305         (gst_ogg_mux_process_best_pad):
9306         * ext/ogg/gstoggparse.c: (gst_ogg_parse_new_stream),
9307         (gst_ogg_parse_chain):
9308         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
9309         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9310         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_setup),
9311         (gst_vorbis_enc_buffer_check_discontinuous):
9312         * ext/vorbis/vorbisparse.c: (vorbis_parse_src_query):
9313         * gst-libs/gst/audio/gstbaseaudiosink.c:
9314         (gst_base_audio_sink_render):
9315         * gst-libs/gst/cdda/gstcddabasesrc.c:
9316         (gst_cdda_base_src_handle_track_seek):
9317         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9318         (gst_base_rtp_depayload_push_full):
9319         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
9320         * gst/audioresample/resample.c: (resample_input_pushthrough):
9321         * gst/playback/gstplaybasebin.c: (queue_out_of_data):
9322         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
9323         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
9324         (wavpack_type_find):
9325         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
9326         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
9327         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
9328         * tests/check/elements/volume.c: (GST_START_TEST):
9329           Printf format fixes.
9330
9331 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
9332
9333         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_caps):
9334           Fix a simple mistake (see the docs)
9335           Fixes #359580
9336
9337 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
9338
9339         * docs/plugins/Makefile.am:
9340         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9341         * docs/plugins/gst-plugins-base-plugins-sections.txt:
9342         * docs/plugins/gst-plugins-base-plugins.args:
9343         * docs/plugins/gst-plugins-base-plugins.hierarchy:
9344         * docs/plugins/inspect/plugin-adder.xml:
9345         * docs/plugins/inspect/plugin-alsa.xml:
9346         * docs/plugins/inspect/plugin-audioconvert.xml:
9347         * docs/plugins/inspect/plugin-audiorate.xml:
9348         * docs/plugins/inspect/plugin-audioresample.xml:
9349         * docs/plugins/inspect/plugin-audiotestsrc.xml:
9350         * docs/plugins/inspect/plugin-cdparanoia.xml:
9351         * docs/plugins/inspect/plugin-decodebin.xml:
9352         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
9353         * docs/plugins/inspect/plugin-gdp.xml:
9354         * docs/plugins/inspect/plugin-gnomevfs.xml:
9355         * docs/plugins/inspect/plugin-libvisual.xml:
9356         * docs/plugins/inspect/plugin-ogg.xml:
9357         * docs/plugins/inspect/plugin-pango.xml:
9358         * docs/plugins/inspect/plugin-playbin.xml:
9359         * docs/plugins/inspect/plugin-subparse.xml:
9360         * docs/plugins/inspect/plugin-tcp.xml:
9361         * docs/plugins/inspect/plugin-theora.xml:
9362         * docs/plugins/inspect/plugin-typefindfunctions.xml:
9363         * docs/plugins/inspect/plugin-video4linux.xml:
9364         * docs/plugins/inspect/plugin-videorate.xml:
9365         * docs/plugins/inspect/plugin-videoscale.xml:
9366         * docs/plugins/inspect/plugin-videotestsrc.xml:
9367         * docs/plugins/inspect/plugin-volume.xml:
9368         * docs/plugins/inspect/plugin-vorbis.xml:
9369         * docs/plugins/inspect/plugin-ximagesink.xml:
9370         * docs/plugins/inspect/plugin-xvimagesink.xml:
9371           Add vorbistag element to docs; update version numbers to 0.10.10.1.
9372
9373 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
9374
9375         Patch by: James "Doc" Livingston <doclivingston at gmail com>
9376
9377         * ext/vorbis/Makefile.am:
9378         * ext/vorbis/vorbis.c: (plugin_init):
9379         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_class_init),
9380         (vorbis_parse_parse_packet), (vorbis_parse_chain):
9381         * ext/vorbis/vorbisparse.h:
9382         * ext/vorbis/vorbistag.c: (gst_vorbis_tag_base_init),
9383         (gst_vorbis_tag_class_init), (gst_vorbis_tag_init),
9384         (gst_vorbis_tag_parse_packet):
9385         * ext/vorbis/vorbistag.h:
9386           Add new vorbistag element which derives from vorbisparse
9387           and is essentially the same as well, only that it implements
9388           the GstTagSetter interface and can modify the stream's
9389           vorbiscomment on the fly (#335635).
9390
9391         * tests/check/Makefile.am:
9392         * tests/check/elements/.cvsignore:
9393         * tests/check/elements/vorbistag.c: (setup_vorbistag),
9394         (cleanup_vorbistag), (buffer_probe), (start_pipeline),
9395         (get_buffer), (stop_pipeline), (_create_codebook_header_buffer),
9396         (_create_audio_buffer), (GST_START_TEST), (vorbistag_suite):
9397           Add unit test for new vorbistag element.
9398
9399 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
9400
9401         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init),
9402         (vorbis_parse_push_headers), (vorbis_parse_chain):
9403           Set BOS flag in packet structure to fix 'jump depends
9404           on unitialized value' errors in valgrind; various minor
9405           clean-ups.
9406
9407 2006-09-30  Jan Schmidt  <thaytan@mad.scientist.com>
9408
9409         * gst/playback/gstdecodebin.c: (close_pad_link):
9410         Fix typo in a debug statement.
9411
9412         * gst/playback/gstplaybasebin.c: (probe_triggered),
9413         (new_decoded_pad_full), (new_decoded_pad), (subs_new_decoded_pad),
9414         (gen_source_element), (source_new_pad), (analyse_source),
9415         (setup_source):
9416         When handling no_more_pads in new_decoded_pad, make sure to treat
9417         subtitle pads correctly. Fixes playback with subtitle files.
9418
9419         Move a recurring message to LOG level.
9420
9421         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
9422         The maximum value for the Xv colorkey on this Radeon is 0xFFFFFFFF,
9423         which ends up as -1 when cast to an int. Make the logic handle the
9424         max value as an unsigned mask and only change the colorkey when it's
9425         a value we recognise.
9426
9427 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
9428
9429         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9430         Removed empty * between paragraphs
9431
9432 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
9433
9434         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9435         * gst-libs/gst/rtp/README:
9436         Moved some documentation into .c file
9437
9438 2006-09-29  Wim Taymans  <wim@fluendo.com>
9439
9440         * gst/playback/gstdecodebin.c: (no_more_pads):
9441         Fix compilation.
9442
9443 2006-09-29  Wim Taymans  <wim@fluendo.com>
9444
9445         * gst/playback/gstdecodebin.c: (new_caps):
9446         Remove g_print
9447
9448         * gst/playback/gstplaybin.c:
9449         Add some docs.
9450
9451 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
9452
9453         * tests/check/Makefile.am:
9454           Re-enable cddabasesrc test to see if it works again
9455           now.
9456
9457 2006-09-29  Wim Taymans  <wim@fluendo.com>
9458
9459         * gst/playback/gstplaybasebin.c: (setup_subtitle),
9460         (gen_source_element):
9461         Handle invalid URIs a bit more gracefully.
9462
9463 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
9464
9465         * tests/check/pipelines/oggmux.c:
9466           Remove obsolete comment.
9467
9468 2006-09-29  Michael Smith  <msmith@fluendo.com>
9469
9470         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
9471         (gst_ogg_mux_release_pad), (gst_ogg_mux_push_buffer),
9472         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
9473         (gst_ogg_mux_send_headers), (gst_ogg_mux_process_best_pad),
9474         (gst_ogg_mux_collected):
9475           Commit patch from James "Doc" Livingston, adds proper EOS handling
9476           in oggmux. GStreamer can, for the first time ever, create a valid
9477           Ogg file! Yay!
9478
9479         * tests/check/pipelines/oggmux.c: (check_chain_final_state),
9480         (oggmux_suite):
9481           Reenable tests now that they pass.
9482
9483 2006-09-29  Wim Taymans  <wim@fluendo.com>
9484
9485         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
9486         Stop reading commands when EOF (we read 0) as well.
9487
9488 2006-09-28  Wim Taymans  <wim@fluendo.com>
9489
9490         * gst/playback/gstdecodebin.c: (dynamic_create), (dynamic_free),
9491         (close_pad_link), (dynamic_remove), (no_more_pads), (new_caps),
9492         (find_dynamic), (unlinked), (close_link):
9493         Implement delayed caps linking needed for element with a lot of
9494         different caps on the src pads that get fixed at runtime.
9495         Improve management of dynamic elements.
9496
9497         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
9498         (group_destroy), (group_commit), (check_queue), (queue_overrun),
9499         (gen_preroll_element), (remove_groups), (unknown_type),
9500         (add_element_stream), (no_more_pads_full), (no_more_pads),
9501         (sub_no_more_pads), (source_no_more_pads), (preroll_unlinked),
9502         (new_decoded_pad), (setup_subtitle), (array_has_value),
9503         (gen_source_element), (source_new_pad), (has_all_raw_caps),
9504         (analyse_source), (remove_decoders), (make_decoder),
9505         (remove_source), (setup_source), (finish_source), (prepare_output),
9506         (gst_play_base_bin_change_state):
9507         * gst/playback/gstplaybasebin.h:
9508         Use more _CAST instead of full type checking casts.
9509         Small cleanups, plug some leaks.
9510         Handle dynamic sources.
9511         Add some helper functions to create lists of strings used for
9512         blacklisting and other stuff.
9513         Refactor some code dealing with analysing the source.
9514         Re-enable sources without pads (like cd:// or other selfcontained
9515         elements).
9516
9517 2006-09-28  Wim Taymans  <wim@fluendo.com>
9518
9519         * gst-libs/gst/audio/gstbaseaudiosink.c:
9520         (gst_base_audio_sink_render):
9521         When we have a timestamp, we can still perform clipping.
9522         When we have no clock, we must play the sample ASAP.
9523
9524 2006-09-28  Wim Taymans  <wim@fluendo.com>
9525
9526         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
9527         Set caps on outgoing buffers.
9528
9529         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
9530         (gst_video_rate_event), (gst_video_rate_chain):
9531         * gst/videorate/gstvideorate.h:
9532         Fix videorate some more. Fixes #357977
9533
9534 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
9535
9536         * tests/check/elements/adder.c: (adder_suite):
9537           Don't set timeout to 6 seconds when we're running
9538           in valgrind ... (and how is 6 seconds longer than
9539           the default anyway?)
9540
9541 2006-09-28  Wim Taymans  <wim@fluendo.com>
9542
9543         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
9544         (gst_audio_rate_sink_event), (gst_audio_rate_convert),
9545         (gst_audio_rate_convert_segments), (gst_audio_rate_chain):
9546         Keep sink and src segment to keep track of time and support more
9547         input formats.
9548         Fix bogus next_offset and run_time calculation, don't understand how
9549         this could have worked before. Fixes #357976.
9550         Remove some unneeded vars.
9551
9552 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
9553
9554         * gst/playback/gstplaybin.c: (remove_sinks):
9555           Only remove visualisation from visbin if there is a visbin (or:
9556           don't throw warnings when closing totem without playing a file).
9557
9558 2006-09-27  Wim Taymans  <wim@fluendo.com>
9559
9560         * gst-libs/gst/audio/gstbaseaudiosink.c:
9561         (gst_base_audio_sink_render):
9562         Add some more info in a WARNING.
9563
9564         * gst-libs/gst/audio/gstbaseaudiosrc.c:
9565         (gst_base_audio_src_create):
9566         Handle PAUSE in create function, use new -core addition to
9567         wait for playing. Fixes pausing and resuming capture from an
9568         audiosrc.
9569
9570         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
9571         (gst_ring_buffer_read):
9572         Constify some more.
9573         Caller supports interrupted reads now.
9574
9575 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
9576
9577         * tests/check/Makefile.am:
9578           Another attempt to make the gen64 buildbot happy.
9579
9580 2006-09-27  Stefan Kost  <ensonic@users.sf.net>
9581
9582         Patch by: Jonathan Matthew <jonathan@kaolin.wh9.net>
9583
9584         * ext/libvisual/visual.c: (gst_visual_clear_actors),
9585         (gst_visual_chain), (gst_visual_change_state):
9586           Libvisual plugin was not passing audio data to libvisual 0.4.0 
9587           correctly. Fixes #357800
9588
9589 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
9590
9591         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline):
9592           Add timeout to _get_state() so we see which pipeline it is
9593           that causes trouble on the gen64 build bot.
9594
9595 2006-09-27  Wim Taymans  <wim@fluendo.com>
9596
9597         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9598         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_push_full),
9599         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_process),
9600         (gst_base_rtp_depayload_set_gst_timestamp):
9601         the source pad always uses fixed caps.
9602
9603 2006-09-27  Wim Taymans  <wim@fluendo.com>
9604
9605         * docs/libs/gst-plugins-base-libs-docs.sgml:
9606         * docs/libs/gst-plugins-base-libs-sections.txt:
9607         * gst-libs/gst/audio/gstaudioclock.c:
9608         * gst-libs/gst/audio/gstaudioclock.h:
9609         * gst-libs/gst/audio/gstaudiosink.c:
9610         * gst-libs/gst/audio/gstaudiosink.h:
9611         * gst-libs/gst/audio/gstaudiosrc.c:
9612         * gst-libs/gst/audio/gstbaseaudiosink.c:
9613         (gst_base_audio_sink_render):
9614         * gst-libs/gst/audio/gstbaseaudiosink.h:
9615         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init):
9616         * gst-libs/gst/audio/gstbaseaudiosrc.h:
9617         * gst-libs/gst/audio/gstringbuffer.h:
9618         Added docs for the audio libs.
9619
9620 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
9621
9622         * tests/check/Makefile.am:
9623           Temporarily disable test that fails on the bots for unknown reasons.
9624
9625 2006-09-26 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
9626
9627         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9628         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
9629         Moved AudioCodecType into priv
9630         Renamed all gst_basertpaudiopayload to gst_base_rtp_audio_payload prefixes
9631
9632 2006-09-25  Wim Taymans  <wim@fluendo.com>
9633
9634         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
9635         (add_fakesink), (remove_fakesink), (pad_probe), (close_pad_link),
9636         (is_demuxer_element), (try_to_link_1), (get_our_ghost_pad),
9637         (new_pad):
9638         Cleanups and small leak fixes.
9639         Added Depayloaders to valid list of autopluggable elements.
9640
9641 2006-09-25  Wim Taymans  <wim@fluendo.com>
9642
9643         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
9644         (gst_play_bin_vis_blocked), (gst_play_bin_set_property),
9645         (gen_video_element), (gen_text_element), (gen_audio_element),
9646         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
9647         (gst_play_bin_set_clock_func), (gst_play_bin_change_state):
9648         Detect NO_PREROLL state change returns and disable clock distribution to
9649         the sinks so that sync is disabled.
9650         Avoid some type checking and do simple casts instead.
9651         Small cleanups, fix some FIXMEs.
9652         Be more robust when linking user specified elements, catch an report
9653         errors. Fixes #357404.
9654         Fix some leaks in the error paths.
9655
9656 2006-09-25  Stefan Kost  <ensonic@users.sf.net>
9657
9658         * ChangeLog:
9659           ChangeLog surgery for missing bug-number
9660
9661 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
9662
9663         Patch by: Peter Kjellerstedt  <pkj at axis com>
9664
9665         * gst/playback/test.c:
9666           Fix compilation with uClibc and -Werror (#357591).
9667
9668 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
9669
9670         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
9671           Parse dates that are followed by a time as well (#357532).
9672
9673         * tests/check/libs/tag.c: (test_vorbis_tags):
9674           Add unit test for this.
9675
9676 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
9677
9678         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
9679         (gst_audio_convert_transform_caps):
9680         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor):
9681         * gst/videotestsrc/videotestsrc.h:
9682           A few array const-ifications.
9683
9684 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
9685
9686         * tests/check/Makefile.am:
9687           See if this makes the build bots happy.
9688
9689         * tests/check/libs/cddabasesrc.c:
9690           UTF8-ise my name.
9691
9692 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
9693
9694         Patch by: Young-Ho Cha <ganadist at chollian dot net>
9695
9696         * gst/subparse/samiparse.c: (handle_start_font),
9697         (fix_invalid_entities):
9698           More case-insensitivity for certain tags; recognise entities with
9699           decimal codes as special entities as well (#357330).
9700
9701 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
9702
9703         * gst-libs/gst/Makefile.am:
9704           Need to build tag directory before cdda.
9705
9706 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
9707
9708         * docs/libs/gst-plugins-base-libs-sections.txt:
9709         * gst-libs/gst/cdda/Makefile.am:
9710         * gst-libs/gst/cdda/gstcddabasesrc.c:
9711         (gst_cdda_base_src_base_init):
9712         * gst-libs/gst/cdda/gstcddabasesrc.h:
9713         * gst-libs/gst/tag/tag.h:
9714         * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal),
9715         (gst_tag_register_musicbrainz_tags):
9716           Move GST_TAG_CDDA_* tags into libgsttag and make libgstcddabasesrc
9717           depend on libgsttag. This is required so we can extract/read tags like
9718           DISCID without depending on libgstcddabasesrc (which used to register
9719           them).
9720
9721         * gst-libs/gst/tag/gstvorbistag.c:
9722           Add vorbiscomment mapping for CDDB_DISCID and MUSICBRAINZ_DISCID
9723           tags (also see #347848).
9724
9725         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1):
9726           Log vorbis comments we are actually writing. Const-ify array.
9727
9728 2006-09-23  Wim Taymans  <wim@fluendo.com>
9729
9730         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
9731         Improve buffering a bit by avoiding a deadlock because we cannot assume
9732         the underrun is always called.
9733
9734 2006-09-23  Wim Taymans  <wim@fluendo.com>
9735
9736         Patch by: Young-Ho Cha <ganadist at chollian dot net>
9737
9738         * gst-libs/gst/riff/riff-ids.h:
9739         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
9740         (gst_riff_create_audio_template_caps):
9741         Added MPEG-4 AAC and id and caps. Fixes #357289
9742         Added WMA9 Lossless id.
9743
9744 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
9745
9746         * ext/gnomevfs/gstgnomevfssrc.c:
9747           Fix misleading docs addition.
9748
9749         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
9750           Get rid of compiler warning the right way.
9751
9752 2006-09-22  Wim Taymans  <wim@fluendo.com>
9753
9754         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9755         (gst_base_rtp_depayload_finalize),
9756         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
9757         (gst_base_rtp_depayload_push_full),
9758         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_push),
9759         (gst_base_rtp_depayload_process),
9760         (gst_base_rtp_depayload_set_gst_timestamp),
9761         (gst_base_rtp_depayload_queue_release):
9762         * gst-libs/gst/rtp/gstbasertpdepayload.h:
9763         Small cleanups.
9764         Fix some leaks.
9765         Refactored the process method and added methods to push from the process
9766         vmethod.
9767         Use _scale functions.
9768         API: gst_base_rtp_depayload_push_ts
9769         API: gst_base_rtp_depayload_push
9770
9771         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
9772         timestamps are uint.
9773
9774 2006-09-22  Stefan Kost  <ensonic@users.sf.net>
9775
9776         * gst-libs/gst/interfaces/xoverlay.c:
9777           Remove unused statement from doc example.
9778
9779 2006-09-21  Stefan Kost  <ensonic@users.sf.net>
9780
9781         * gst-libs/gst/interfaces/videoorientation.c:
9782         (gst_video_orientation_iface_init),
9783         (gst_video_orientation_get_hflip),
9784         (gst_video_orientation_get_vflip),
9785         (gst_video_orientation_get_hcenter),
9786         (gst_video_orientation_get_vcenter),
9787         (gst_video_orientation_set_hflip),
9788         (gst_video_orientation_set_vflip),
9789         (gst_video_orientation_set_hcenter),
9790         (gst_video_orientation_set_vcenter):
9791           Add since tags to new API docs, ChangeLog surgery (forgot API keyword
9792           in ChangeLog)
9793
9794 2006-09-21  Tim-Philipp Müller  <tim at centricular dot net>
9795
9796         * tests/check/Makefile.am:
9797         * tests/check/elements/.cvsignore:
9798         * tests/check/elements/ffmpegcolorspace.c: (rgb_format_to_caps),
9799         (create_rgb_conversions), (rgb_conversion_free),
9800         (right_shift_colour), (fix_expected_colour), (check_rgb_buf),
9801         (got_buf_cb), (GST_START_TEST), (ffmpegcolorspace_suite):
9802           Add unit test for ffmpegcolorspace (RGB <=> RGB only so far),
9803           but disable for now since it doesn't pass (something wrong with
9804           RGBA somewhere).
9805
9806 2006-09-21  Wim Taymans  <wim@fluendo.com>
9807
9808         * gst/playback/gstplaybasebin.c: (group_commit),
9809         (queue_deadlock_check), (queue_overrun), (queue_threshold_reached),
9810         (queue_out_of_data), (gen_preroll_element),
9811         (preroll_remove_overrun), (probe_triggered):
9812         Refactor handling of overrun detection.
9813         Separate handling of group completion and deadlock detection when doing
9814         network buffering. This should fix some deadlocks that were not detected
9815         because the group was completed.
9816         Add more comments, improve debugging.
9817
9818 2006-09-21  Wim Taymans  <wim@fluendo.com>
9819
9820         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
9821         * tests/check/libs/audio.c:
9822         Some more compilation fixes.
9823
9824 2006-09-21  Wim Taymans  <wim@fluendo.com>
9825
9826         * gst-libs/gst/audio/gstringbuffer.c:
9827         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
9828         (gst_ring_buffer_read):
9829         Early morning compilation fix.
9830
9831 2006-09-20  Wim Taymans  <wim@fluendo.com>
9832
9833         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
9834         * tests/check/elements/multifdsink.c: (GST_START_TEST):
9835         * tests/check/elements/videorate.c: (GST_START_TEST):
9836         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
9837         * tests/check/pipelines/oggmux.c: (eos_buffer_probe):
9838         Fix some warnings.
9839
9840 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
9841
9842         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
9843         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
9844         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
9845           Handcrafted merge to help CVS understanding what I changed and what
9846           not.
9847
9848 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
9849
9850         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
9851         (gst_xvimagesink_get_times):
9852           change colorkey behaviour back according to #354773 comment 6/7
9853
9854 2006-09-19  Michael Smith  <msmith@fluendo.com>
9855
9856         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
9857         (gst_multi_fd_sink_class_init), (get_buffers_max), (find_limits),
9858         (gst_multi_fd_sink_recover_client),
9859         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_set_property),
9860         (gst_multi_fd_sink_get_property):
9861         * gst/tcp/gstmultifdsink.h:
9862           Implement stubbed out properties unit-type, units-soft-max,
9863           units-max, to allow specifying maximum sizes in units other than
9864           buffers.
9865           Fixes #355935
9866
9867 2006-09-19  Wim Taymans  <wim@fluendo.com>
9868
9869         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
9870         (gst_riff_create_audio_template_caps):
9871         Reorder the audio formats a bit for clarity.
9872         Detect and create caps for MSGSM and MSN (WAV49).
9873         Fixes #356596.
9874
9875         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
9876         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
9877         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
9878         Small cleanups, move error handling out of normal flow for clarity.
9879
9880 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
9881
9882         * docs/libs/gst-plugins-base-libs-docs.sgml:
9883         * docs/libs/gst-plugins-base-libs.types:
9884         * gst-libs/gst/interfaces/Makefile.am:
9885         * gst-libs/gst/interfaces/videoorientation.c:
9886         (gst_video_orientation_get_type),
9887         (gst_video_orientation_iface_init),
9888         (gst_video_orientation_get_hflip),
9889         (gst_video_orientation_get_vflip),
9890         (gst_video_orientation_get_hcenter),
9891         (gst_video_orientation_get_vcenter),
9892         (gst_video_orientation_set_hflip),
9893         (gst_video_orientation_set_vflip),
9894         (gst_video_orientation_set_hcenter),
9895         (gst_video_orientation_set_vcenter):
9896         * gst-libs/gst/interfaces/videoorientation.h:
9897           API: Add new interface to control video orientation (fixes #354908)
9898
9899 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
9900
9901         * gst/videotestsrc/gstvideotestsrc.c:
9902           Use G_UNLIKELY in _create and log one more detail.
9903           
9904         (gst_video_test_src_get_times), (gst_video_test_src_create):
9905         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
9906           Use gst_util_uint64_scale_int in _get_times().
9907
9908 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
9909
9910         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support)
9911           Give better warning message (add object and detail).
9912
9913 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
9914
9915         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
9916         (gst_xvimagesink_get_times):
9917           xvimage assumed that XV_COLORKEY can be set in RGB888 format (fixes
9918           #354773), use gst_util_uint64_scale_int in _get_times()
9919
9920 2006-09-18  Michael Smith  <msmith@fluendo.com>
9921
9922         * ext/ogg/gstoggmux.c: (gst_ogg_mux_push_buffer):
9923           Timestamps are unsigned; comparision against GST_CLOCK_TIME_NONE was
9924           always true, leading to dropping all timestamps.
9925
9926 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
9927
9928         * ext/libvisual/visual.c: (gst_vis_src_negotiate),
9929         (gst_visual_chain), (gst_visual_change_state):
9930           update to work also with libvisual 0.4 API, fix double unref (#355914)
9931           
9932         * tools/gst-launch-ext.1.in:
9933         * tools/gst-visualise.1.in:
9934           remove references to old man-pages
9935
9936         * tests/examples/seek/seek.c: (main):
9937           add real meadi-buttons, add tool-tips for the seek-options, arrange
9938           seek options in a table
9939
9940 2006-09-18  Michael Smith  <msmith@fluendo.com>
9941
9942         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear),
9943         (gst_ogg_mux_push_buffer):
9944           Don't generate out-of-order timestamps from oggmux, instead clamp
9945           output timestamps to be >= the previously output ts.
9946           Fixes #355595
9947
9948 2006-09-18  Michael Smith  <msmith@fluendo.com>
9949
9950         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
9951         (gst_multi_fd_sink_class_init):
9952           Updates, fixes, and typo corrections for multifdsink. No functional
9953           changes.
9954
9955 2006-09-17  Michael Smith  <msmith@fluendo.com>
9956
9957         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find):
9958           Don't crash on truncated files - check that we got an 8 byte buffer
9959           before trying to memcmp it.
9960
9961 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
9962
9963         * gst/playback/gstplaybasebin.c: (get_active_source):
9964           Make stream-switching appear instant to the application
9965           (ie. make sure that a g_object_get on 'current-foo' returns
9966           the stream previously set with g_object_set(). Totem needs
9967           this to update stream-related meta-info (like audio-codec)
9968           correctly when switching streams.
9969
9970 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
9971
9972         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer),
9973         (gst_alsa_mixer_ensure_track_list):
9974           Try harder to guess which mixer track is the master mixer
9975           track (instead of just taking the first one that has a pvolume).
9976           Fixes #342228.
9977
9978 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
9979
9980         reviewed by: <delete if not using a buddy>
9981
9982         * gst-libs/gst/audio/audio.h:
9983         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
9984
9985 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
9986
9987         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
9988         (gst_audio_convert_transform_caps):
9989           Get structure-name just once.
9990
9991 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
9992
9993         * tests/check/elements/audioresample.c: (GST_START_TEST):
9994         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
9995         * tests/check/elements/volume.c: (GST_START_TEST):
9996         * tests/check/elements/vorbisdec.c: (GST_START_TEST):
9997         * tests/check/pipelines/oggmux.c: (validate_ogg_page), (eos_watch),
9998         (test_pipeline), (GST_START_TEST):
9999         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
10000         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
10001           Fix big batch of compiler warnings.
10002
10003 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
10004
10005         * ext/gnomevfs/gstgnomevfssrc.c:
10006           Add docs about icydemux usage in connection with gnomevfssrc
10007
10008         * ext/libvisual/visual.c:
10009         * ext/ogg/gstoggaviparse.c:
10010         * ext/ogg/gstoggdemux.c:
10011         * ext/ogg/gstoggmux.c:
10012         * ext/ogg/gstoggparse.c:
10013         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
10014         * gst-libs/gst/audio/gstaudiosink.c:
10015         * gst-libs/gst/audio/gstaudiosrc.c:
10016         * gst/audiorate/gstaudiorate.c:
10017           More G_OBJECT macro fixing.
10018
10019         * gst/audiotestsrc/gstaudiotestsrc.h:
10020           Fix wrong info in header due to copy & paste
10021
10022 2006-09-15  Wim Taymans  <wim@fluendo.com>
10023
10024         * gst-libs/gst/audio/gstbaseaudiosink.c:
10025         (gst_base_audio_sink_get_time), (gst_base_audio_sink_callback):
10026         * gst-libs/gst/audio/gstbaseaudiosrc.c:
10027         (gst_base_audio_src_get_time), (gst_base_audio_src_fixate),
10028         (gst_base_audio_src_get_times), (gst_base_audio_src_get_offset),
10029         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
10030         Do the delay calculation in the source/sink base classes as this is
10031         specific for the capture/playback mode.
10032         Try to fixate a bit better, like round depth up to a multiple of 8
10033         bigger than width.
10034         Handle underruns correctly by marking DISCONT on buffers and adjusting
10035         timestamps to handle the gap.
10036         Set offset/offset_end correctly on buffers.
10037
10038         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_pause),
10039         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
10040         (gst_ring_buffer_read):
10041         Remove resync and underrun recovery from the ringbuffer.
10042         Fix ringbuffer read code on under/overrun.
10043
10044 2006-09-15  Wim Taymans  <wim@fluendo.com>
10045
10046         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
10047         (gst_play_base_bin_init), (fill_buffer), (check_queue),
10048         (queue_threshold_reached), (gst_play_base_bin_set_property),
10049         (gst_play_base_bin_get_property):
10050         * gst/playback/gstplaybasebin.h:
10051         Don't use a 0 low watermark when buffering, it is catching starvation
10052         way too late. Instead, use a 3 second queue with 30 and 95
10053         percent low/high watermarks. 
10054         Added queue-min-threshold property to configure low watermark.
10055         Use new _buffering message API.
10056         Make queue_threshold variable big enough to store a uint64 time value.
10057         API: playbin::queue-min-threshold property.
10058
10059 2006-09-15  Wim Taymans  <wim@fluendo.com>
10060
10061         * configure.ac:
10062         We require 0.10.10.1 now because of _wait_preroll().
10063
10064         * gst-libs/gst/audio/gstbaseaudiosink.c:
10065         (gst_base_audio_sink_render):
10066         Use gst_base_sink_wait_preroll().
10067
10068 2006-09-15  Wim Taymans  <wim@fluendo.com>
10069
10070         * ext/alsa/gstalsasink.c: (xrun_recovery), (gst_alsasink_write):
10071         * ext/alsa/gstalsasrc.c: (xrun_recovery), (gst_alsasrc_read):
10072         Use DEBUG_OBJECT more.
10073
10074 === release 0.10.10 ===
10075
10076 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
10077
10078         patch by: Michael Smith <msmith at fluendo dot com>
10079
10080         * gst/tcp/gstmultifdsink.c: (is_sync_frame),
10081         (gst_multi_fd_sink_client_queue_buffer),
10082         (gst_multi_fd_sink_new_client):
10083         * tests/check/elements/multifdsink.c: (GST_START_TEST),
10084         (multifdsink_suite):
10085           Fix implementation of sync-method 'next-keyframe'
10086           Closes #354594
10087
10088 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
10089
10090         patch by: Wim Taymans <wim at fluendo dot com>
10091
10092         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
10093         This patch removes the RANDOM flag that was incorrectly introduced with
10094         revision 1.91.  Fixes #354590
10095
10096 2006-09-05  Tim-Philipp Müller  <tim at centricular dot net>
10097
10098         * tests/check/Makefile.am:
10099           Random variation in Makefile line to see if it makes the
10100           gen64-base-full bot any happier.
10101
10102 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
10103
10104         * tests/check/pipelines/oggmux.c: (oggmux_suite):
10105           Disable test that fails at the moment (killed after timeout).
10106
10107 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
10108
10109         Patch by: James Livingston  <doclivingston at gmail.com>
10110
10111         * tests/check/Makefile.am:
10112         * tests/check/pipelines/.cvsignore:
10113         * tests/check/pipelines/oggmux.c: (get_page_codec),
10114         (check_chain_final_state), (fail_if_audio), (validate_ogg_page),
10115         (eos_buffer_probe), (start_pipeline), (stop_pipeline), (eos_watch),
10116         (test_pipeline), (test_vorbis), (test_theora), (test_vorbis_theora),
10117         (test_theora_vorbis), (oggmux_suite):
10118           Add simple unit test for oggmux from #337026 with checking for the
10119           EOS flags disabled for the time being.
10120
10121 2006-09-04  Wim Taymans  <wim@fluendo.com>
10122
10123         patch by: Alessandro Dessina <alessandro nnva org>
10124
10125         * ext/ogg/gstoggmux.c:
10126         Add cmml caps to oggmux. Fixes #353912
10127
10128 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
10129
10130         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
10131           Returning a return value often helps. In this case, we
10132           don't need the return value anyway, so just get rid of it.
10133           Should make build bots much happier.
10134
10135 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
10136
10137         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure),
10138         (paint_get_structure), (gst_video_test_src_get_size),
10139         (gst_video_test_src_smpte), (gst_video_test_src_snow),
10140         (gst_video_test_src_unicolor), (paint_setup_AYUV),
10141         (paint_hline_AYUV), (paint_setup_ARGB8888), (paint_setup_ABGR8888),
10142         (paint_setup_RGBA8888), (paint_setup_BGRA8888), (paint_hline_str4):
10143         * gst/videotestsrc/videotestsrc.h:
10144           Add support for AYUV and the various RGBA formats. Initialise
10145           fields of paintinfo structs allocated on the stack.
10146
10147         * tests/check/elements/videotestsrc.c: (right_shift_colour),
10148         (fix_expected_colour), (check_rgb_buf), (got_buf_cb),
10149         (check_rgb_buf), (videotestsrc_suite):
10150           Add unit tests for videotestsrc's RGB output.
10151
10152 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
10153
10154         * gst/videotestsrc/gstvideotestsrc.c:
10155         (gst_video_test_src_pattern_get_type),
10156         (gst_video_test_src_set_pattern):
10157         * gst/videotestsrc/gstvideotestsrc.h:
10158         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor),
10159         (gst_video_test_src_black), (gst_video_test_src_white),
10160         (gst_video_test_src_red), (gst_video_test_src_green),
10161         (gst_video_test_src_blue):
10162         * gst/videotestsrc/videotestsrc.h:
10163           Add more uni-colour patterns ("white", "red", "green", and "blue").
10164
10165 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
10166
10167         * gst/videotestsrc/videotestsrc.c: (paint_setup_YVYU):
10168           Fix stride for YVYU, should be word-aligned (#353658).
10169
10170 2006-08-31  Tim-Philipp Müller  <tim at centricular dot net>
10171
10172         * gst/adder/gstadder.c: (gst_adder_src_event):
10173           Fix build.
10174
10175 2006-08-31  Edward Hervey  <edward@fluendo.com>
10176
10177         * gst/adder/gstadder.c: (forward_event_func),
10178         (gst_adder_src_event), (gst_adder_collected),
10179         (gst_adder_change_state):
10180         * gst/adder/gstadder.h:
10181         Remember the start position asked in the incoming seeks, so we can
10182         output GST_EVENT_NEW_SEGMENT with a correct position value (instead
10183         of assuming it will always be 0).
10184
10185 2006-08-31  Edward Hervey  <edward@fluendo.com>
10186
10187         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
10188         (gst_ogg_demux_finalize), (gst_ogg_demux_perform_seek),
10189         (gst_ogg_demux_loop):
10190         Send the GST_EVENT_NEW_SEGMENT from the streaming thread.
10191
10192 2006-08-30  Tim-Philipp Müller  <tim at centricular dot net>
10193
10194         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10195         (gst_ffmpegcsp_get_unit_size):
10196           Return FALSE instead of returning a random false unit
10197           size when the format isn't known/supported (even if
10198           this shouldn't happen under normal circumstances).
10199
10200 2006-08-29  Wim Taymans  <wim@fluendo.com>
10201
10202         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
10203
10204         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create),
10205         (gst_gnome_vfs_src_start):
10206         Try harder to get the size from a uri by using _info_uri() when
10207         _info_from_handle() does not give us enough info. 
10208         Also follow symlinks when getting the size.
10209         Partially Fixes #332864.
10210
10211 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
10212
10213         Patch by: Viktor Peters  <viktor dot peters at gmail dot com>
10214
10215         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
10216         (gst_alsa_mixer_update), (gst_alsa_mixer_get_volume),
10217         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
10218         (gst_alsa_mixer_set_record):
10219         * ext/alsa/gstalsamixertrack.c:
10220         (gst_alsa_mixer_track_update_alsa_capabilities),
10221         (alsa_track_has_cap), (gst_alsa_mixer_track_new),
10222         (gst_alsa_mixer_track_update):
10223         * ext/alsa/gstalsamixertrack.h:
10224           Improve and fix mixer track handling, in particular better handling
10225           of alsa's pvolume/pswitch/cvolume/cswitch capabilities; create
10226           separate track objects for tracks that have both capture and playback
10227           volume (and label them differently as well so they're not mistakenly
10228           assumed to be duplicates); classify mixer tracks that only affect
10229           the audible volume of something (rather than the capture volume)
10230           as playback tracks. Redefine/fix meaning of RECORD and MUTE flags
10231           for capture tracks to correspond to alsa-pswitch alsa-cswitch
10232           (following the meaning documented in the mixer interface header
10233           file); add support for alsa's exclusive cswitch groups; update/sync
10234           state/flags better if mixer settings are changed by another
10235           application. Fixes #336075.
10236
10237 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
10238
10239         * gst/playback/gstplaybin.c:
10240           Improve docs: add section about BUFFERING messages sent by playbin.
10241
10242 2006-08-29  Michael Smith  <msmith@fluendo.com>
10243
10244         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_push_buffer),
10245         (gst_vorbis_enc_buffer_check_discontinuous),
10246         (gst_vorbis_enc_chain):
10247           Ignore explicit DISCONT marked on buffers (which is often spurious,
10248           particularly when using multiple segments), in favour of solely
10249           using the timestamps/durations.
10250
10251 2006-08-29  Edward Hervey  <edward@fluendo.com>
10252
10253         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
10254         Don't rely on incoming buffers offset anymore, since it is completely
10255         broken when using multiple segments.
10256         Instead convert the incoming buffers timestamp to running time, and
10257         then convert that value to the offsets.
10258         Also inform GstSegment of the last outputted stop position, which is
10259         needed if we received several segments with an unknown stop value.
10260
10261 2006-08-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10262
10263         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
10264           fix buffer unreffing on a header push failure
10265
10266 2006-08-28  Wim Taymans  <wim@fluendo.com>
10267
10268         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_sink_event),
10269         (gst_audio_rate_chain):
10270         Make the metadata of the buffer writable before changing its
10271         flags.
10272
10273 2006-08-28  Wim Taymans  <wim@fluendo.com>
10274
10275         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
10276         (gst_audio_rate_setcaps), (gst_audio_rate_init),
10277         (gst_audio_rate_sink_event), (gst_audio_rate_src_event),
10278         (gst_audio_rate_chain), (gst_audio_rate_change_state):
10279         Fix audiorate some more.
10280         Reset and resync counters on flush and READY.
10281         Handle the DISCONT flag correctly.
10282         Use GstSegment to track position.
10283         Fail when not negotiated.
10284         Fixes #353234.
10285
10286 2006-08-25  Michael Smith  <msmith@fluendo.com>
10287
10288         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
10289           Fix spelling.
10290           Remove accidently included debug line.
10291
10292 2006-08-25  Wim Taymans  <wim@fluendo.com>
10293
10294         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
10295         Small cleanups.
10296         If a buffer is received with no caps, make the buffer metadata
10297         writable and set the caps, making sure that we don't screw up the
10298         refcounts.
10299
10300 2006-08-25  Michael Smith  <msmith@fluendo.com>
10301
10302         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset),
10303         (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_chain):
10304           Fix memory leaks and misleading debug messages, add a couple of
10305           comments.
10306
10307         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats),
10308         (gst_multi_fd_sink_render):
10309           Do not use gst_buffer_make_writable() in a basesink render method,
10310           as it may incorrectly unref the buffer. Instead, use convoluted
10311           dance to avoid copying the buffer except when we need to.
10312
10313 2006-08-25  Michael Smith  <msmith@fluendo.com>
10314
10315         * ext/vorbis/vorbisenc.c:
10316         (gst_vorbis_enc_buffer_check_discontinuous):
10317           Allow very small discontinuities in the timestamps. These we can't
10318           do anything useful with anyway (because vorbis's timestamps have
10319           only sample granularity), and are commonly produced by elements with
10320           minor bugs. Allow up to 1/2 a sample out.
10321           Fixes #351742.
10322
10323 2006-08-24  Wim Taymans  <wim@fluendo.com>
10324
10325         * tests/examples/seek/seek.c: (seek_cb), (start_seek), (stop_seek),
10326         (play_scrub_toggle_cb), (main):
10327         Add a checkbox to enable play scrubbing. Makes it possible to disable
10328         normal scrubbing.
10329
10330 2006-08-23  Stefan Kost  <ensonic@users.sf.net>
10331
10332         * tests/check/elements/.cvsignore:
10333           make buildbot happy
10334
10335 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
10336
10337         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
10338         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init),
10339         (gst_ogm_parse_class_init), (gst_ogm_parse_dispose),
10340         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
10341         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
10342         (gst_ogm_parse_stream_header), (gst_ogm_parse_comment_packet),
10343         (gst_ogm_text_parse_strip_trailing_zeroes),
10344         (gst_ogm_parse_data_packet), (gst_ogm_parse_chain),
10345         (gst_ogm_parse_sink_event), (gst_ogm_parse_change_state):
10346           Refactor ogm parse, do better input checking, misc. clean-ups.
10347           Cache incoming events and push them once the source pad has
10348           been created. Don't pass unterminated strings to sscanf().
10349           Strip trailing zeroes from subtitle text output, since they
10350           are not valid UTF-8. Don't push vorbiscomment packets on
10351           the subtitle text pad. Output perfect streams if possible.
10352
10353 2006-08-23  Wim Taymans  <wim@fluendo.com>
10354
10355         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
10356         Waits for tasks to settle down so that we clean up correctly for 
10357         valgrind.
10358
10359 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
10360
10361         * tests/check/libs/tag.c: (GST_START_TEST), (taglists_are_equal):
10362           Unit test fixes: \377 is more likely to fit into 8 bits than \777;
10363           actually return return value in taglists_are_equal.
10364
10365 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
10366
10367         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
10368           Fix crash due to broken bitstream parsing on x86-64: can't make
10369           any assumptions about sizeof(struct) due to alignment/packing
10370           differences on different architectures. Fixes #351790.
10371
10372 2006-08-22  Wim Taymans  <wim@fluendo.com>
10373
10374         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
10375         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
10376         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
10377         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
10378         (gst_riff_parse_info):
10379         Protect public functions against bad input.
10380         Do some cleanups.
10381         Fix documentation.
10382
10383 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
10384
10385         * gst-libs/gst/riff/riff-ids.h:
10386         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
10387           Add voxware audio IDs (even if we can't play it) (#351795).
10388
10389 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
10390
10391         * gst-libs/gst/riff/riff-media.c:
10392         (gst_riff_create_video_template_caps),
10393         (gst_riff_create_audio_template_caps),
10394         (gst_riff_create_iavs_template_caps):
10395           Const-ify some arrays and use G_N_ELEMENTS instead
10396           of wasting oodles of RAM on terminator bits.
10397
10398 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
10399
10400         * gst-libs/gst/tag/gstvorbistag.c:
10401         (gst_tag_list_to_vorbiscomment_buffer):
10402         * tests/check/libs/tag.c: (GST_START_TEST):
10403           And the same for _to_vorbiscomment_buffer(): allow
10404           id_data_len == 0 for speex.
10405
10406 2006-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
10407
10408         * configure.ac:
10409         * docs/plugins/Makefile.am:
10410         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10411         * docs/plugins/gst-plugins-base-plugins-sections.txt:
10412         * docs/plugins/inspect/plugin-gdp.xml:
10413         * gst/gdp/Makefile.am:
10414         * tests/check/Makefile.am:
10415           Move GDP plugin to -base from -bad.  Closes #347783.
10416
10417 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
10418
10419         * gst-libs/gst/tag/gstvorbistag.c:
10420         (gst_tag_list_from_vorbiscomment_buffer):
10421           Allow id_data_len == 0 (needed for vorbis comments in Speex files).
10422           Also add some checks to make sure we don't memcmp() beyond the end of
10423           vorbiscomment buffer if the ID to check for is larger than the buffer.
10424
10425         * tests/check/libs/tag.c: (GST_START_TEST):
10426           Some more tests for gst_tag_list_from_vorbiscomment_buffer().
10427
10428 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
10429
10430         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1),
10431         (gst_vorbis_enc_set_metadata):
10432           Use vorbis comment utility functions from libgsttag
10433           instead of re-inventing the wheel (partially fixes #347091).
10434
10435 2006-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
10436
10437         * tests/check/elements/audioconvert.c: (GST_START_TEST):
10438         Fix leaks. Wait for state transitions that might happen ASYNC, as well
10439         as some that won't.
10440
10441 2006-08-21  Wim Taymans  <wim@fluendo.com>
10442
10443         * docs/libs/Makefile.am:
10444         * docs/libs/gst-plugins-base-libs-sections.txt:
10445         * docs/libs/gst-plugins-base-libs.types:
10446         Don't try to GObject scan the netbuffer as it's not a GObject.
10447         Fixes #351308.
10448
10449         * gst-libs/gst/netbuffer/gstnetbuffer.c:
10450         * gst-libs/gst/netbuffer/gstnetbuffer.h:
10451         Document GstNetBuffer.
10452
10453 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
10454
10455         * tests/check/elements/audioconvert.c: (GST_START_TEST),
10456         (audioconvert_suite):
10457           Add testcase for caps-size-explosion
10458
10459 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
10460
10461         * gst/audioconvert/gstaudioconvert.c:
10462         (gst_audio_convert_get_unit_size), (set_structure_widths):
10463           Lower debug, use g_assert in _get_unit_size
10464
10465         * gst/audioresample/gstaudioresample.c:
10466         (audioresample_get_unit_size):
10467         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10468         (gst_ffmpegcsp_get_unit_size):
10469         * gst/videoscale/gstvideoscale.c: (gst_video_scale_get_unit_size):
10470           use g_assert in _get_unit_size
10471
10472 2006-08-18  Wim Taymans  <wim@fluendo.com>
10473
10474         * docs/libs/gst-plugins-base-libs-sections.txt:
10475         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_set_packet_len),
10476         (gst_rtp_buffer_pad_to), (gst_rtp_buffer_get_payload_subbuffer),
10477         (gst_rtp_buffer_get_payload_buffer):
10478         * gst-libs/gst/rtp/gstrtpbuffer.h:
10479         Document GstRTPBuffer.
10480         Added function to efficiently strip payload headers.
10481         API: gst_rtp_buffer_get_payload_subbuffer()
10482
10483 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
10484
10485         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
10486         (gst_tag_to_vorbis_comments):
10487           Serialise unknown vorbis comments into GST_TAG_EXTENDED_COMMENT
10488           tags and deserialise them properly as well (#347091).
10489           Add some more gtk-doc blurbs and also some g_return_if_fail().
10490
10491         * tests/check/libs/tag.c: (GST_START_TEST),
10492         (back_to_vorbis_comments), (taglists_are_equal), (tag_suite):
10493           More tests.
10494
10495 2006-08-17  Wim Taymans  <wim@fluendo.com>
10496
10497         * ext/ogg/Makefile.am:
10498         * ext/ogg/gstogg.c: (plugin_init):
10499         * ext/ogg/gstoggaviparse.c: (gst_ogg_avi_parse_get_type),
10500         (gst_ogg_avi_parse_base_init), (gst_ogg_avi_parse_class_init),
10501         (gst_ogg_avi_parse_init), (gst_ogg_avi_parse_finalize),
10502         (gst_ogg_avi_parse_setcaps), (gst_ogg_avi_parse_event),
10503         (gst_ogg_avi_parse_push_packet), (gst_ogg_avi_parse_chain),
10504         (gst_ogg_avi_parse_change_state), (gst_ogg_avi_parse_plugin_init):
10505         Added ogg-in-avi parser element. Fixes #140139.
10506
10507         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
10508         Fixed a bug in oggdemux debug code.
10509
10510         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
10511         (gst_riff_create_audio_template_caps):
10512         Recognise Ogg in the AVI extensible wave format.
10513
10514 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
10515
10516         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
10517           Make buffer durations add up (duration should be next_ts-ts for
10518           perfect streams). Fixes CD ripping to Ogg/Vorbis with vorbisenc
10519           from CVS.
10520
10521         * tests/check/libs/cddabasesrc.c: (gst_cd_foo_src_close),
10522         (test_buffer_timestamps), (cddabasesrc_suite):
10523           Add unit test for the above.
10524
10525         * tests/check/Makefile.am:
10526           Don't know why cddabasesrc test was in VALGRIND_TO_FIX, remove
10527           to see what happens.
10528
10529 2006-08-16  Wim Taymans  <wim@fluendo.com>
10530
10531         * ext/alsa/gstalsasink.c: (gst_alsasink_set_property),
10532         (gst_alsasink_open):
10533         * ext/alsa/gstalsasrc.c: (gst_alsasrc_set_property),
10534         (gst_alsasrc_open):
10535         Avoid setting and using a NULL device name.
10536         Print more info when we fail to open a device.
10537
10538 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
10539
10540         * docs/libs/gst-plugins-base-libs-sections.txt:
10541         * gst-libs/gst/tag/tag.h:
10542         * gst-libs/gst/tag/tags.c: (gst_tag_parse_extended_comment):
10543           API: add gst_tag_parse_extended_comment() (#351426).
10544
10545         * tests/check/Makefile.am:
10546         * tests/check/libs/.cvsignore:
10547         * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite), (main):
10548           Add unit test for gst_tag_parse_extended_comment().
10549
10550 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
10551
10552         * sys/ximage/ximagesink.c: (gst_ximagesink_get_property):
10553         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_property):
10554           Fix leak (#351502).
10555
10556 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
10557
10558         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10559         * docs/plugins/gst-plugins-base-plugins-sections.txt:
10560         * docs/plugins/gst-plugins-base-plugins.args:
10561         * gst/playback/gstplaybin.c:
10562           Document playbin.
10563           
10564         * docs/plugins/inspect/plugin-adder.xml:
10565         * docs/plugins/inspect/plugin-alsa.xml:
10566         * docs/plugins/inspect/plugin-audioconvert.xml:
10567         * docs/plugins/inspect/plugin-audiorate.xml:
10568         * docs/plugins/inspect/plugin-audioresample.xml:
10569         * docs/plugins/inspect/plugin-audiotestsrc.xml:
10570         * docs/plugins/inspect/plugin-cdparanoia.xml:
10571         * docs/plugins/inspect/plugin-decodebin.xml:
10572         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
10573         * docs/plugins/inspect/plugin-gnomevfs.xml:
10574         * docs/plugins/inspect/plugin-ogg.xml:
10575         * docs/plugins/inspect/plugin-pango.xml:
10576         * docs/plugins/inspect/plugin-playbin.xml:
10577         * docs/plugins/inspect/plugin-subparse.xml:
10578         * docs/plugins/inspect/plugin-tcp.xml:
10579         * docs/plugins/inspect/plugin-theora.xml:
10580         * docs/plugins/inspect/plugin-typefindfunctions.xml:
10581         * docs/plugins/inspect/plugin-video4linux.xml:
10582         * docs/plugins/inspect/plugin-videorate.xml:
10583         * docs/plugins/inspect/plugin-videoscale.xml:
10584         * docs/plugins/inspect/plugin-videotestsrc.xml:
10585         * docs/plugins/inspect/plugin-volume.xml:
10586         * docs/plugins/inspect/plugin-vorbis.xml:
10587         * docs/plugins/inspect/plugin-ximagesink.xml:
10588         * docs/plugins/inspect/plugin-xvimagesink.xml:
10589           Update to CVS version.
10590
10591 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
10592
10593         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
10594         (gst_play_bin_set_property), (gst_play_bin_get_property),
10595         (value_list_append_structure_list),
10596         (gst_play_bin_handle_redirect_message),
10597         (gst_play_bin_handle_message):
10598           API: GstPlayBin::connection-speed
10599           Add "connection-speed" property; re-order redirect messages with
10600           multiple redirect locations depending on the minimum bitrate if
10601           that information is available and a connection speed is set
10602           (#350399).
10603
10604 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
10605
10606         * gst/playback/gstplaybin.c:
10607           Update max volume to the same value that the volume element uses.
10608
10609 2006-08-14  Wim Taymans  <wim@fluendo.com>
10610
10611         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
10612         Less uglyness..
10613
10614 2006-08-14  Wim Taymans  <wim@fluendo.com>
10615
10616         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
10617         (gst_ogg_demux_get_next_page), (gst_ogg_demux_perform_seek),
10618         (gst_ogg_demux_read_chain), (gst_ogg_demux_loop):
10619         Add some more debug info.
10620         Don't crash when a seek failed.
10621         Actually return the result of the seek instead of TRUE.
10622         Ignore multiple BOS pages with the same serial so that we don't create
10623         the same stream multiple times.
10624         Post an error when we fail to do the initial seek.
10625
10626 2006-08-13  Wim Taymans  <wim@fluendo.com>
10627
10628         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
10629         (gst_alsa_detect_channels), (gst_alsa_probe_supported_formats):
10630         Small code cleanup.
10631
10632         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
10633         (gst_alsa_mixer_new):
10634         Remove hack that always set the device to hw:0*.
10635         Properly find the card name for whatever device was configured.
10636         Do some better debugging.
10637         Fixes #350784.
10638
10639         * ext/alsa/gstalsamixerelement.c:
10640         (gst_alsa_mixer_element_set_property),
10641         (gst_alsa_mixer_element_change_state):
10642         Cleanups.
10643         Handle setting of a NULL device name better.
10644
10645 2006-08-11  Wim Taymans  <wim@fluendo.com>
10646
10647         * gst/adder/gstadder.c:
10648         Don't clip float values. Fixes #350900.
10649
10650 2006-08-11  Andy Wingo  <wingo@pobox.com>
10651
10652         * gst/tcp/gsttcp.c: Really fix the build?
10653
10654         * gst/tcp/gsttcp.h: For now, always disable deprecation here --
10655         fixes the build.
10656
10657 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
10658
10659         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes):
10660           Float caps shouldn't have a "signed" field.
10661
10662 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
10663
10664         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query):
10665           Implement SEEKING query in its most basic form, so that we can
10666           at least check if we're seekable or not (#350655).
10667
10668 2006-08-09  Tim-Philipp Müller  <tim at centricular dot net>
10669
10670         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
10671           The checks here are not even close to anything that would
10672           justify MAXIMUM probability, lowering to POSSIBLE until someone
10673           fixes the checks (case at hand: quicktime redirection files
10674           might start with 00 00 01 XX and pass the checks here just
10675           fine, see #350399).
10676
10677 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
10678
10679         Patch by: Sjoerd Simons  <sjoerd at luon net>
10680
10681         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find):
10682           Better detection for multipart/x-mixed-replace: accept leading
10683           whitespaces before the boundary marker as well (as our very own
10684           multipartmux used to produce) (#349068).
10685
10686 2006-08-07  Tim-Philipp Müller  <tim at centricular dot net>
10687
10688         Patch by: Young-Ho Cha  <ganadist at chollian net>
10689
10690         * gst-libs/gst/riff/riff-ids.h:
10691         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
10692         (gst_riff_create_audio_template_caps):
10693           Detect DTS audio streams (#350157).
10694
10695 2006-08-05  Andy Wingo  <wingo@pobox.com>
10696
10697         * ext/theora/gsttheoraparse.h:
10698         * ext/theora/theoraparse.c (gst_theora_parse_class_init)
10699         (theora_parse_dispose, theora_parse_set_property)
10700         (theora_parse_get_property, theora_parse_munge_granulepos)
10701         (theora_parse_push_buffer, theora_parse_change_state):
10702         API: GstTheoraParse::synchronization-points
10703         Add a property 'synchronization-points' to fix badly synchronized oggs.
10704
10705 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
10706
10707         * tests/check/Makefile.am:
10708         * tests/check/libs/.cvsignore:
10709         * tests/check/libs/audio.c: (structure_contains_channel_positions),
10710         (fixed_caps_have_channel_positions), (GST_START_TEST),
10711         (audio_suite), (main):
10712           Add a few tests for the channel position stuff in libgstaudio.
10713
10714 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
10715
10716         * ext/alsa/gstalsa.c: (caps_add_channel_configuration),
10717         (gst_alsa_detect_channels):
10718         * ext/alsa/gstalsasink.c:
10719           Add support for cards that (only) do more than 8 channels,
10720           like the Delta 44 (#345188).
10721
10722         * gst-libs/gst/audio/multichannel.c:
10723         (gst_audio_check_channel_positions):
10724         * gst-libs/gst/audio/multichannel.h:
10725           API: add GST_AUDIO_CHANNEL_POSITION_NONE, which stands for an
10726           unspecified channel position and cannot be combined with any
10727           of the other audio channel positions; adjust position layout
10728           checks accordingly (#345188).
10729
10730 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
10731
10732         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
10733           Recognise ancient RealAudio files (see #349779).
10734
10735 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
10736
10737         Patch by: Jens Granseuer  <jensgr at gmx net>
10738
10739         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
10740           Add typefinder for Interplay's MVE format (#348973).
10741
10742 2006-08-02  Wim Taymans  <wim@fluendo.com>
10743
10744         Patch by: Marcel Moreaux <marcelm at luon dot net>
10745
10746         * gst-libs/gst/rtp/gstbasertpdepayload.c:
10747         (gst_base_rtp_depayload_add_to_queue):
10748         * gst-libs/gst/rtp/gstbasertpdepayload.h:
10749         Handle RTP sequence number rollover.
10750         Disable jitterbuffer by default.
10751
10752 2006-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
10753
10754         * gst/audioresample/gstaudioresample.c: (audioresample_stop),
10755         (audioresample_set_caps):
10756         Don't leak references to the incoming caps. Clean them up when
10757         stopping.
10758
10759         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
10760         (gst_video_scale_finalize):
10761         Don't leak our temporary pixel buffer.
10762
10763         * tests/check/Makefile.am:
10764         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline),
10765         (GST_START_TEST), (simple_launch_lines_suite):
10766
10767         Fix leaks and re-enable the test for valgrind checking.
10768
10769 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
10770
10771         Patch by: Sjoerd Simons  <sjoerd at luon net>
10772
10773         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find),
10774         (plugin_init):
10775           Add typefind function for multipart/x-mixed-replace (#348916).
10776
10777 2006-07-28  Wim Taymans  <wim@fluendo.com>
10778
10779         * gst/adder/gstadder.c: (gst_adder_setcaps),
10780         (gst_adder_query_duration):
10781         Fix leak in duration query.
10782         Reflow some docs and notes.
10783
10784 2006-07-28  Michael Smith  <msmith@fluendo.com>
10785
10786         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST),
10787         (vorbisenc_suite):
10788           Enable Andy's extra vorbisenc test, now that it passes. Also fix one
10789           aspect of it.
10790
10791 2006-07-28  Michael Smith  <msmith@fluendo.com>
10792
10793         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps),
10794         (gst_vorbis_enc_sink_getcaps), (gst_vorbis_enc_buffer_from_packet),
10795         (gst_vorbis_enc_push_buffer),
10796         (gst_vorbis_enc_buffer_check_discontinuous),
10797         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
10798         * ext/vorbis/vorbisenc.h:
10799           Handle discontinuities in the input vorbis stream correctly,
10800           so that the output is properly timestamped (and has good granulepos
10801           values). Needs some oggmux fixes too.
10802
10803 2006-07-27  Wim Taymans  <wim@fluendo.com>
10804
10805         patch by: Kai Vehmanen <kv2004 eca cx>
10806
10807         * gst-libs/gst/rtp/gstbasertpdepayload.c:
10808         (gst_base_rtp_depayload_chain),
10809         (gst_base_rtp_depayload_handle_sink_event),
10810         (gst_base_rtp_depayload_change_state):
10811         Don't send multiple newsegments with different formats.
10812         Fixes #348677.
10813
10814 2006-07-26  Wim Taymans  <wim@fluendo.com>
10815
10816         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
10817         (gst_ogg_demux_do_seek), (gst_ogg_demux_read_chain):
10818         Make seeking in ogg more accurate again by doing the more correct
10819         granuletime to stream time conversion.
10820
10821 2006-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
10822
10823         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
10824         (gst_multi_fd_sink_new_client):
10825           debug a little more understandably
10826           do not use goto as a substitute for break, especially if
10827           break is also being used
10828
10829 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
10830
10831         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
10832         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
10833           Remove GLib-2.6 compatibility cruft.
10834
10835 2006-07-24  Wim Taymans  <wim@fluendo.com>
10836
10837         * gst-libs/gst/audio/gstbaseaudiosink.c:
10838         (gst_base_audio_sink_render):
10839         Don't try to align a sample to an unknown value.
10840
10841 2006-07-24  Wim Taymans  <wim@fluendo.com>
10842
10843         * gst-libs/gst/audio/gstbaseaudiosink.c:
10844         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
10845         When the audio clock is slaved to another clock, never try to align
10846         samples but trust the rate interpolation algorithm.
10847
10848 2006-07-24  Wim Taymans  <wim@fluendo.com>
10849
10850         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
10851         Don't try to calculate silence samples, base class does this much
10852         better now.
10853
10854         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
10855         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps),
10856         (gst_ring_buffer_acquire):
10857         Calculate silence samples correctly.
10858
10859         * gst-libs/gst/audio/gstringbuffer.h:
10860         Add _CAST macro.
10861
10862 2006-07-22  Tim-Philipp Müller  <tim at centricular dot net>
10863
10864         * gst/typefind/gsttypefindfunctions.c: (xml_check_first_element):
10865           Limit search for the first markup tag to the first few kB of
10866           the file. If we don't find one there, it's highly unlikely that
10867           this is an XML(-ish) file.
10868
10869 2006-07-21  Andy Wingo  <wingo@pobox.com>
10870
10871         * tests/check/pipelines/theoraenc.c (test_discontinuity): Similar
10872         test to the one in vorbisenc. Also commented out.
10873
10874         * tests/check/pipelines/vorbisenc.c: 
10875         (test_discontinuity): New test, commented out until Mike lands
10876         some elite vorbisenc patches.
10877
10878         * tests/check/pipelines/theoraenc.c: Port to bufferstraw.
10879         Bufferstraw was actually factored out of these tests. Now we share
10880         code yay.
10881
10882         * configure.ac (GST_MAJORMINOR): Rev core requirements to 0.10.9.1
10883         for bufferstraw addition to gstcheck.
10884
10885 2006-07-21  Wim Taymans  <wim@fluendo.com>
10886
10887         * ext/theora/theoradec.c: (clip_buffer):
10888         Better clipping.
10889
10890 2006-07-21  Wim Taymans  <wim@fluendo.com>
10891
10892         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
10893         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
10894         (gst_audioringbuffer_release), (gst_audioringbuffer_stop):
10895         Fix leak.
10896         Avoid type casting when we can.
10897
10898         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_dispose):
10899         Fix mem leak.
10900
10901 2006-07-20  Tim-Philipp Müller  <tim at centricular dot net>
10902
10903         * ext/alsa/gstalsamixerelement.c:
10904         (gst_alsa_mixer_element_change_state):
10905           Make state change fail if the specified device can't be opened
10906           for some reason.
10907
10908 2006-07-20  Wim Taymans  <wim@fluendo.com>
10909
10910         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
10911         (cb_newpad), (main):
10912         Example of a small audio/video player using decodebin.
10913
10914 2006-07-20  Stefan Kost  <ensonic@users.sf.net>
10915
10916         * gst-libs/gst/riff/riff-ids.h:
10917           Add 'fact' chunk id
10918
10919 2006-07-19  Wim Taymans  <wim@fluendo.com>
10920
10921         * gst-libs/gst/rtp/gstbasertpdepayload.c:
10922         (gst_base_rtp_depayload_chain),
10923         (gst_base_rtp_depayload_change_state):
10924         Don't assert when not negotiated but post a meaningfull 
10925         error message. Fixes #347918.
10926
10927         * gst-libs/gst/rtp/gstbasertppayload.c:
10928         Add comment about better default MTU size.
10929
10930         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
10931         Small cleanups, start docs.
10932
10933 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
10934
10935         Patch by: Martin Szulecki
10936
10937         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_property):
10938           If "device-name" is requested and the device is not
10939           open, try to temporarily open it to obtain this
10940           information (#342494).
10941
10942 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
10943
10944         * gst-libs/gst/tag/gstid3tag.c:
10945           Add TSSE <=> GST_TAG_ENCODER mapping (see #347898).
10946
10947         * gst-libs/gst/tag/gsttageditingprivate.h:
10948         * gst-libs/gst/tag/gstvorbistag.c:
10949           Some more random const-ifications.
10950
10951 2006-07-18  Stefan Kost  <ensonic@users.sf.net>
10952
10953         * gst-libs/gst/riff/riff-ids.h:
10954         * gst-libs/gst/riff/riff-media.c:
10955         (gst_riff_create_video_template_caps):
10956           Add more FOURCCs (sort list to make stuff easier to find),
10957           add comment what those 16 bytes in struct _gst_riff_strh according to
10958           one avi-dumper are
10959
10960 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
10961
10962         * gst-libs/gst/audio/multichannel.c:
10963         (gst_audio_check_channel_positions),
10964         (gst_audio_fixate_channel_positions):
10965           Const-ify two arrays.
10966
10967 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
10968
10969         * ext/alsa/gstalsa.c: (caps_add_channel_configuration):
10970           Fix typo, so that alsasink also advertises 8 channels
10971           if that's supported (tags: can, worms, open, alsa, ph34r).
10972
10973 2006-07-17  Wim Taymans  <wim@fluendo.com>
10974
10975         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
10976         (gst_ogg_pad_submit_packet), (gst_ogg_demux_read_chain):
10977         *sigh*, when is the compiler going to warn when the comments
10978         are out-of-sync with the code.. Refix case of busted theora
10979         headers with 0 granule pos.
10980
10981 2006-07-14  Wim Taymans  <wim@fluendo.com>
10982
10983         * gst-libs/gst/rtp/gstbasertpdepayload.c:
10984         (gst_base_rtp_depayload_wait),
10985         (gst_base_rtp_depayload_change_state),
10986         (gst_base_rtp_depayload_set_property),
10987         (gst_base_rtp_depayload_get_property):
10988         Fix 99% cpu load by waiting for absolute times on the
10989         clock. Fixes #347300.
10990
10991 2006-07-14  Andy Wingo  <wingo@pobox.com>
10992
10993         * ext/theora/gsttheoraparse.h: 
10994         * ext/theora/theoraparse.c (theora_parse_drain_event_queue)
10995         (theora_parse_push_headers, theora_parse_clear_queue)
10996         (theora_parse_drain_queue_prematurely, )
10997         (theora_parse_sink_event, theora_parse_change_state): Queue events
10998         until we initialized our state, like in vorbisparse.
10999
11000         * ext/vorbis/vorbisparse.h: 
11001         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_event_queue)
11002         (vorbis_parse_push_headers, vorbis_parse_clear_queue)
11003         (vorbis_parse_drain_queue_prematurely, )
11004         (vorbis_parse_sink_event, vorbis_parse_change_state): Queue events
11005         until we have initialized our state. Fixes seeking after an
11006         initial pad block.
11007
11008 2006-07-14  Andy Wingo  <wingo@pobox.com>
11009
11010         Patch by: Iain Holmes <iaingnome@gmail.com>
11011         
11012         * ext/ogg/gstoggdemux.c (gst_ogg_demux_finalize): Fix memleak.
11013
11014 2006-07-14  Jan Schmidt  <thaytan@mad.scientist.com>
11015
11016         * configure.ac:
11017         Bump nano back to CVS
11018
11019 === release 0.10.9 ===
11020
11021 2006-07-13  Jan Schmidt <thaytan@mad.scientist.com>
11022
11023         * configure.ac:
11024           releasing 0.10.9, "I walk the line"
11025
11026 2006-07-14  Michael Smith  <msmith@fluendo.com>
11027
11028         * tests/check/pipelines/vorbisenc.c: (stop_pipeline):
11029           Move a g_cond_signal to earlier to avoid sometimes deadlocking
11030           (commonly happens when running this test under valgrind) when trying
11031           to remove the buffer probe.
11032
11033 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
11034
11035         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
11036         Fix missing g_unlock from the previous commit
11037
11038 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
11039
11040         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
11041         (gst_ximagesink_change_state):
11042         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
11043         (gst_xvimagesink_change_state):
11044         Implement a locking order to ensure we always take the object lock
11045         before the x_lock and never vice-versa.
11046
11047 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
11048
11049         * gst/playback/gstdecodebin.c: (find_compatibles):
11050         Fix a caps leak when linking (#347304)
11051
11052         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
11053         (gst_ximagesink_ximage_destroy), (gst_ximagesink_xcontext_clear),
11054         (gst_ximagesink_change_state):
11055         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
11056         (gst_xvimage_buffer_finalize), (gst_xvimagesink_check_xshm_calls),
11057         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
11058         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_change_state):
11059         Don't leak shared memory resources. Use the object lock to protect
11060         against the xcontext disappearing while returning a buffer from the
11061         pipeline. (#347304)
11062
11063 2006-07-12  Edward Hervey  <edward@fluendo.com>
11064
11065         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize),
11066         (vorbis_handle_comment_packet):
11067         gst_tag_list_merge() returns a new object. Take that into account when
11068         using it. This avoids memleak.
11069         Revert previous commit which is not needed.
11070
11071 2006-07-12  Edward Hervey  <edward@fluendo.com>
11072
11073         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize):
11074         Reset the decoder in finalize so that all fields get cleared.
11075
11076 2006-07-12  Wim Taymans  <wim@fluendo.com>
11077
11078         * gst-libs/gst/audio/gstbaseaudiosrc.c:
11079         (gst_base_audio_src_set_clock),
11080         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create):
11081         Don't try to post an error message when setting the clock fails
11082         as this can happen when adding an element to a bin which will then
11083         deadlock. Fixes #347296.
11084
11085 2006-07-12  Edward Hervey  <edward@fluendo.com>
11086
11087         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
11088         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
11089         (vorbis_handle_type_packet):
11090         Post tag messages on the bus even if we're not initialized.
11091         If we're not initialized, we still postpone the event pushing of tags.
11092
11093 2006-07-12  Wim Taymans  <wim@fluendo.com>
11094
11095         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
11096         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
11097         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
11098         Revert last two changes that broke the freeze.
11099
11100 2006-07-12  Wim Taymans  <wim@fluendo.com>
11101
11102         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
11103         basesink calculates silence sample correctly for us.
11104
11105 2006-07-12  Wim Taymans  <wim@fluendo.com>
11106
11107         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
11108         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
11109         Calculate correct silence samples so we don't fill our ringbuffer
11110         with noise.
11111
11112 2006-07-12  Edward Hervey  <edward@fluendo.com>
11113
11114         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
11115         (gst_vorbis_dec_reset), (vorbis_dec_sink_event),
11116         (vorbis_handle_comment_packet), (vorbis_handle_type_packet):
11117         * ext/vorbis/vorbisdec.h:
11118         Delay sending events (newsegment, tags) until the decoder is properly
11119         initialized.
11120         Fixes #347295
11121
11122 2006-07-11  Jan Schmidt  <thaytan@mad.scientist.com>
11123
11124         * tests/check/elements/audioconvert.c: (get_float_mc_caps),
11125         (get_int_mc_caps), (GST_START_TEST), (audioconvert_suite):
11126           Patch from #347221 adding a test for audioconvert
11127           channel remappings.
11128
11129 2006-07-11  Tim-Philipp Müller  <tim at centricular dot net>
11130
11131         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
11132         (gst_ssa_parse_parse_line):
11133           Don't include the terminating NUL in the buffer size,
11134           it's only there for extra paranoia (would add random
11135           '*' characters at the end of each subtitle since the
11136           terminator itself is not valid UTF-8 technically).
11137           Also fix indenting after boilerplate macro.
11138
11139 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
11140
11141         * gst/playback/gstdecodebin.c: (close_pad_link):
11142           Also emit 'unknown-type' signal (which should really be
11143           called unhandled-type) if we found potential decoders/demuxers
11144           in the registry but none of them worked in the end (as in the
11145           case where the plugins don't exist any longer but are still
11146           listed in the registry). Fixes #329798.
11147
11148 2006-07-08  Andy Wingo  <wingo@pobox.com>
11149
11150         * theoraparse.c (theora_parse_push_buffer)
11151         (theora_parse_drain_queue_prematurely, theora_parse_drain_queue):
11152         Add some more debugging. Fix granulepos reconstruction in the face
11153         of discontinuities.
11154
11155 2006-07-06  Wim Taymans  <wim@fluendo.com>
11156
11157         * gst-libs/gst/audio/gstbaseaudiosink.c:
11158         (gst_base_audio_sink_class_init),
11159         (gst_base_audio_sink_provide_clock):
11160         Use gobject_class instead of G_OBJECT_CLASS (klass)
11161
11162         * gst-libs/gst/audio/gstbaseaudiosrc.c:
11163         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
11164         (gst_base_audio_src_set_clock), (gst_base_audio_src_provide_clock),
11165         (gst_base_audio_src_get_time),
11166         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create),
11167         (gst_base_audio_src_create_ringbuffer):
11168         Fix latency and buffer-time constants and properties ala basesink.
11169         Implement pull based scheduling. Fixes #346527.
11170         Set default blocksize in GstBaseSrc to 0, we default to pushing out
11171         one segment.
11172         Refuse slaving to another clock instead of silently not working.
11173         Only provide a clock when we are actually able to do so.
11174         Various small cleanups and compiler hints.
11175
11176 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
11177
11178         Patch by: Lutz Mueller <lutz at topfrose de>
11179
11180         * gst/typefind/gsttypefindfunctions.c: (html_type_find),
11181         (plugin_init):
11182           Add typefinding for text/html (#346581).
11183
11184 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
11185
11186         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
11187         (xml_check_first_element), (xml_type_find), (smil_type_find):
11188           Fix SMIL typefinding, make xml_check_first_element() more
11189           useful.
11190
11191 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
11192
11193         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
11194         (gst_play_base_bin_finalize), (decodebin_element_added_cb),
11195         (decodebin_element_removed_cb), (gst_play_base_bin_set_property):
11196         * gst/playback/gstplaybasebin.h:
11197           Protect list of elements with a subtitle-encoding property and
11198           the subtitle encoding member itself with a lock of their own
11199           instead of using the object lock. This prevents a dead-lock in
11200           the element-remove callback in some circumstances when shutting
11201           down playbin.
11202
11203 2006-07-05  Sebastien Moutte  <sebastien@moutte.net>
11204
11205         * win32/common/libgsttag.def:
11206         Export some new functions.
11207         * win32/vs6/libgstogg.dsp:
11208         Add a link to libgsttag-0.10.lib.
11209
11210 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
11211
11212         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
11213           Some const-ification.
11214
11215 2006-07-04  Wim Taymans  <wim@fluendo.com>
11216
11217         * gst/playback/gstplaybasebin.c: (is_stream), (gen_source_element):
11218         Improve checking if we are dealing with a stream. Added some
11219         more uris that need buffering.
11220
11221 2006-07-03  Edward Hervey  <edward@fluendo.com>
11222
11223         * ext/vorbis/vorbisdec.c: (vorbis_do_clip):
11224         Remove unused variable.
11225
11226 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
11227
11228         * Makefile.am:
11229           include lcov.mak
11230         * configure.ac:
11231           add GCOV_LIBS to GST_LIBS
11232
11233 2006-07-02  Tim-Philipp Müller  <tim at centricular dot net>
11234
11235         Patch by: Michael Sheldon  <webmaster at mikeasoft com>
11236
11237         * ext/alsa/gstalsasrc.c:
11238           Add 32 bps to template caps and increase channels range
11239           from [1,2] to [1,MAX]. See #346326.
11240
11241 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
11242
11243         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
11244           Recognise 'WMVA' video codec fourcc (#345879).
11245           
11246 2006-06-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
11247          
11248         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
11249           Fixed nasty memory leak
11250
11251 2006-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
11252
11253         * gst/tcp/gsttcp.c: (gst_tcp_read_buffer),
11254         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps):
11255           fix logging
11256
11257 2006-06-23  Jan Schmidt  <thaytan@mad.scientist.com>
11258
11259         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
11260         (gst_decode_bin_init), (gst_decode_bin_finalize), (add_fakesink),
11261         (remove_fakesink), (pad_probe), (gst_decode_bin_change_state):
11262         Protect remove_fakesink using a mutex, so that we don't try and
11263         remove the fakesink simultaneously from multiple threads.
11264
11265         When going from READY to PAUSED, restore the fakesink, so that
11266         it is there when decodebin gets reused.
11267
11268 2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>
11269
11270         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
11271         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11272         * gst-libs/gst/rtp/gstbasertppayload.c:
11273         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11274         * gst/tcp/gstmultifdsink.c:
11275         * gst/tcp/gsttcpclientsink.c:
11276         * gst/tcp/gsttcpclientsrc.c:
11277         * gst/tcp/gsttcpserversink.c:
11278         * gst/tcp/gsttcpserversrc.c:
11279         * gst/videorate/gstvideorate.c:
11280         * gst/videotestsrc/gstvideotestsrc.c:
11281         * sys/v4l/gstv4ljpegsrc.c:
11282         * sys/v4l/gstv4lmjpegsink.c:
11283         * sys/v4l/gstv4lsrc.c:
11284         * tests/examples/seek/scrubby.c:
11285         * tests/examples/seek/seek.c:
11286           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503).
11287
11288 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
11289
11290         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
11291           Second field in GEnumValue shouldn't be a description,
11292           but a stringified version of the enum value.
11293
11294 2006-06-22  Wim Taymans  <wim@fluendo.com>
11295
11296         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
11297         (gst_ximage_buffer_free), (gst_ximagesink_ximage_put),
11298         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
11299         Avoid type checking in buffer casts.
11300         Avoid caps copy in buffer_alloc when we can.
11301         Use pad_peer_accept.
11302
11303 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
11304
11305         * gst-libs/gst/tag/tag.h:
11306           Oops, make that 'Since: 0.10.9'.
11307
11308 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
11309
11310         * docs/libs/gst-plugins-base-libs-sections.txt:
11311         * gst-libs/gst/tag/tag.h:
11312         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
11313         (gst_tag_image_type_get_type):
11314           API: add GstTagImageType enum to describe images contained
11315           in image tags (#345641).
11316
11317 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
11318
11319         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
11320           Fix warnings with gst-inspect: "buffers-min" property
11321           should be of G_TYPE_INT and not G_TYPE_INT64. Also fix
11322           typo in property description.
11323
11324 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
11325
11326         Patch by: Cody Russell <bratsche at gnome org>
11327
11328         * gst/audioresample/gstaudioresample.c:
11329         (gst_audioresample_class_init):
11330         * gst/playback/gststreamselector.c:
11331         (gst_stream_selector_class_init):
11332         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
11333         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
11334         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
11335         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
11336         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
11337         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
11338         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
11339         * gst/videotestsrc/gstvideotestsrc.c:
11340         (gst_video_test_src_class_init):
11341         * gst/volume/gstvolume.c: (gst_volume_class_init):
11342           Avoid unnecessary class cast check in class_init
11343           functions (#337747).
11344
11345 2006-06-21  Tim-Philipp Müller  <tim at centricular dot net>
11346
11347         * ext/pango/gsttextoverlay.c: (gst_text_overlay_make_utf8),
11348         (gst_text_overlay_video_chain):
11349           g_markup_escape_text() REALLY doesn't like non-UTF8 input
11350           and doesn't validate its input either (and neither did
11351           textoverlay it seems). Let's do that then and fix #345206.
11352
11353 2006-06-19  Wim Taymans  <wim@fluendo.com>
11354
11355         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
11356         (gst_unit_type_get_type), (gst_multi_fd_sink_class_init),
11357         (gst_multi_fd_sink_init), (gst_multi_fd_sink_add_full),
11358         (gst_multi_fd_sink_add), (gst_multi_fd_sink_handle_client_read),
11359         (find_syncframe), (find_limits), (assign_value),
11360         (count_burst_unit), (gst_multi_fd_sink_new_client),
11361         (gst_multi_fd_sink_handle_client_write),
11362         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_render),
11363         (gst_multi_fd_sink_set_property), (gst_multi_fd_sink_get_property),
11364         (gst_multi_fd_sink_change_state):
11365         * gst/tcp/gstmultifdsink.h:
11366         Added shiny new burst-on-connect methods.
11367         Add properties to control the minimal amount of data queued.
11368         Small cleanups.
11369         API: bytes-min property
11370         API: time-min property
11371         API: buffers-min property
11372         API: burst-unit property
11373         API: burst-value property
11374         API: add-full signal
11375
11376         * gst/tcp/gsttcp-marshal.list:
11377         Added new marshaller code for the new signal.
11378
11379         * tests/check/elements/multifdsink.c: (GST_START_TEST),
11380         (multifdsink_suite):
11381         Added testcases for new burst methods.
11382
11383 2006-06-19  Edward Hervey  <edward@fluendo.com>
11384
11385         * ext/theora/theoradec.c: (clip_buffer), (theora_dec_push):
11386         Implement clipping for accurate seeking.
11387         Closes #345225
11388
11389 2006-06-19  Wim Taymans  <wim@fluendo.com>
11390
11391         Patch by: Philip Jaegenstedt <philip at lysator dot liu dot se>
11392
11393         * gst/videoscale/gstvideoscale.c: (gst_video_scale_prepare_size),
11394         (gst_video_scale_transform):
11395         Make videoscale support RGBA, ARGB, BGRA and ABGR. Fixes #345131
11396
11397 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
11398
11399         * configure.ac:
11400           Fix --disable-external (can't set conditionals conditionally,
11401           #343602).
11402
11403 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
11404
11405         * tests/check/elements/audioresample.c: (test_reuse),
11406         (audioresample_suite):
11407           Add test case for bug #342789 fixed below.
11408
11409 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
11410
11411         * gst/audioresample/gstaudioresample.c:
11412         (gst_audioresample_class_init), (gst_audioresample_init),
11413         (audioresample_start), (audioresample_stop),
11414         (gst_audioresample_set_property), (gst_audioresample_get_property):
11415           Implement GstBaseTransform::start and ::stop so that audioresample
11416           can clear its internal state properly and be reused instead of
11417           causing non-negotiated errors with playbin under some circumstances
11418           (#342789).
11419
11420         * tests/check/elements/audioresample.c: (setup_audioresample),
11421         (cleanup_audioresample):
11422           Need to set element state here so that ::start and ::stop are
11423           called.
11424
11425 2006-06-16  Wim Taymans  <wim@fluendo.com>
11426
11427         Patch by: Young-Ho Cha <ganadist at chollian dot net>
11428
11429         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_vids):
11430         Parse extra data better, apparently it's right behind
11431         the normal strf header size. Fixes #343500.
11432
11433 2006-06-16  Wim Taymans  <wim@fluendo.com>
11434
11435         * ext/alsa/gstalsasink.c: (set_hwparams):
11436         If we fail to set the buffer_time and period_time alsa
11437         parameters, post a warning and leave alsa select a 
11438         default instead of failing. Fixes #342085
11439
11440 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
11441
11442         * docs/libs/gst-plugins-base-libs-sections.txt:
11443         * gst-libs/gst/cdda/gstcddabasesrc.h:
11444           Remove GST_CDDA_TAG_TRACK_TAGS again, it is #ifdef 0'ed
11445           out in the header file and shouldn't be listed in the docs.
11446
11447         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
11448           Must dereference pointer to fourcc in the debug statement.
11449
11450 2006-06-16  Stefan Kost  <ensonic@users.sf.net>
11451
11452         * docs/libs/Makefile.am:
11453         * docs/libs/gst-plugins-base-libs-docs.sgml:
11454         * docs/libs/gst-plugins-base-libs-sections.txt:
11455         * docs/libs/gst-plugins-base-libs.types:
11456         add remaining symbols into correct setions
11457         
11458         * gst-libs/gst/audio/gstringbuffer.c:
11459         fix incomplete docs
11460         
11461         * gst-libs/gst/audio/gstringbuffer.h:
11462         comment out not yet implemented function
11463         
11464         
11465         * gst-libs/gst/floatcast/floatcast.h:
11466         * gst-libs/gst/netbuffer/gstnetbuffer.c:
11467         add short descriptions
11468         
11469         
11470         * gst-libs/gst/interfaces/propertyprobe.c:
11471         fix return value docs   
11472         
11473         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
11474         simplify debug logging
11475         
11476         * gst-libs/gst/riff/riff-read.h:
11477         sync function prototype and docs
11478         
11479         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
11480         remove left over symbol
11481
11482 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
11483
11484         * autogen.sh:
11485         * configure.ac:
11486         * docs/Makefile.am:
11487           Use GST_PLUGIN_DOCS macro in configure.ac, add
11488           --enable-plugin-docs default to autogen.sh and use
11489           ENABLE_PLUGIN_DOCS conditional in Makefile.am (#344039).
11490
11491 2006-06-15  Wim Taymans  <wim@fluendo.com>
11492
11493         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
11494         (gst_ogg_demux_activate_chain), (gst_ogg_demux_combine_flows),
11495         (gst_ogg_demux_loop):
11496         Combine GstFlowReturn from the source pads to give a
11497         meaningfull result to the upstream peer or to stop the
11498         processing task in case of errors.
11499
11500 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
11501
11502         * gst/playback/gststreaminfo.c: (cb_probe):
11503           Try GST_TAG_CODEC as fallback when extracting the
11504           codec name; more debug info.
11505
11506 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
11507
11508         * ext/ogg/Makefile.am:
11509         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
11510           Extract language tags from ogm subtitle streams, so that
11511           the subtitle menu choices are labelled correctly in
11512           Totem (fixes #344708).
11513
11514 2006-06-14  Wim Taymans  <wim@fluendo.com>
11515
11516         Patch by: Alessandro Decina <alessandro at nnva dot org>
11517
11518         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_clear),
11519         (gst_ogg_mux_release_pad), (gst_ogg_mux_get_headers),
11520         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_init_collectpads),
11521         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
11522         Fix various leaks. Fixes #343699.
11523         Add x-smoke mime type.
11524
11525 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
11526
11527         * gst-libs/gst/riff/riff-ids.h:
11528           Add IDs for 'bext' chunks (see #343837).
11529
11530 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
11531
11532         Patch by: Young-Ho Cha  <ganadist at chollian net>
11533
11534         * gst/subparse/samiparse.c: (sami_context_pop_state),
11535         (handle_start_font), (end_sami_element):
11536           Honour font face tags in SAMI subtitles (#344503).
11537
11538 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
11539
11540         * po/POTFILES.in:
11541           add missing files containing translatable strings
11542
11543 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
11544
11545         * docs/libs/tmpl/.cvsignore:
11546           we don't want those *.sgml files in CVS either
11547
11548 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
11549
11550         * docs/libs/.cvsignore:
11551         * tests/check/elements/.cvsignore:
11552         * tests/check/libs/.cvsignore:
11553           ignore more
11554
11555 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
11556
11557         * docs/libs/Makefile.am:
11558           also commiting the changed Makefile.am (added more libs to the
11559           doc-build)
11560
11561 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
11562
11563         * docs/libs/gst-plugins-base-libs-docs.sgml:
11564         * docs/libs/gst-plugins-base-libs-sections.txt:
11565         * docs/libs/gst-plugins-base-libs.types:
11566           first batch of reordering things, add index & hierarchy
11567
11568 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
11569
11570         * configure.ac:
11571           use GST_PKG_CHECK_MODULES, cleans up output
11572
11573 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
11574
11575         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
11576           Add support for burn:// URIs (#343385); const-ify things a bit,
11577           use G_N_ELEMENTS instead of hard-coded array size.
11578
11579 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
11580
11581         Patch by: Young-Ho Cha  <ganadist at chollian net>
11582
11583         * gst/subparse/samiparse.c: (fix_invalid_entities), (parse_sami):
11584           Fix up broken entities before passing them to libxml *sigh*.
11585           (#343303).
11586           
11587 2006-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
11588
11589         * configure.ac:
11590           back to TRUNK
11591
11592 === release 0.10.8 ===
11593
11594 2006-06-09  Thomas Vander Stichele <thomas at apestaart dot org>
11595
11596         * configure.ac:
11597           releasing 0.10.8, "Moar gij ziet mij nie"
11598
11599 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
11600
11601         * configure.ac:
11602         * po/af.po:
11603         * po/az.po:
11604         * po/cs.po:
11605         * po/en_GB.po:
11606         * po/hu.po:
11607         * po/it.po:
11608         * po/nb.po:
11609         * po/nl.po:
11610         * po/or.po:
11611         * po/sq.po:
11612         * po/sr.po:
11613         * po/sv.po:
11614         * po/uk.po:
11615         * po/vi.po:
11616         * win32/common/config.h:
11617           0.10.7.2 prerelease
11618
11619 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
11620
11621         * docs/libs/tmpl/gstaudio.sgml:
11622         * docs/libs/tmpl/gstcolorbalance.sgml:
11623         * docs/libs/tmpl/gstmixer.sgml:
11624         * docs/libs/tmpl/gstringbuffer.sgml:
11625         * docs/libs/tmpl/gsttuner.sgml:
11626         * docs/libs/tmpl/gstxoverlay.sgml:
11627         * gst-libs/gst/audio/audio.c:
11628         * gst-libs/gst/audio/gstringbuffer.c:
11629         * gst-libs/gst/interfaces/colorbalance.c:
11630         * gst-libs/gst/interfaces/mixer.c:
11631         * gst-libs/gst/interfaces/tuner.c:
11632         * gst-libs/gst/interfaces/xoverlay.c:
11633           move last template doc snippets to source code and delete them
11634
11635 2006-06-06  Michael Smith  <msmith@fluendo.com>
11636
11637         * ext/theora/theoraparse.c: (theora_parse_drain_queue_prematurely),
11638         (theora_parse_drain_queue):
11639           Mark DELTA_UNIT on non-keyframes.
11640
11641 2006-06-03  Jan Schmidt  <thaytan@mad.scientist.com>
11642
11643         * gst-libs/gst/audio/gstbaseaudiosink.c:
11644         (gst_base_audio_sink_class_init), (gst_base_audio_sink_setcaps):
11645         * gst-libs/gst/audio/gstbaseaudiosink.h:
11646         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps),
11647         (gst_ring_buffer_samples_done):
11648         * gst-libs/gst/audio/gstringbuffer.h:
11649         Document better the fact that latency_time and buffer_time are values
11650         stored in microseconds, and not the usual GStreamer nanoseconds.
11651         Change the variables (compatibly) that store them from GstClockTime 
11652         to guint64 to make it more clear that they're not storing clock times.
11653         Also, remove the bogus property description that says the user can
11654         specify -1 to get the default value, since that's never been the case.
11655
11656         When computing the default segment size for the ring buffer, make it
11657         an integer number of samples.
11658
11659         When the sub-class indicates a delay greater than the number of
11660         samples we've written return 0 from the audio sink get_time method.
11661
11662 2006-06-02  Michael Smith  <msmith@fluendo.com>
11663
11664         * tests/check/elements/audioconvert.c: (set_channel_positions),
11665         (get_float_mc_caps), (get_int_mc_caps):
11666         * tests/check/elements/audioresample.c:
11667         * tests/check/elements/audiotestsrc.c: (GST_START_TEST):
11668         * tests/check/elements/videorate.c:
11669         * tests/check/elements/videotestsrc.c: (GST_START_TEST):
11670         * tests/check/elements/volume.c:
11671         * tests/check/elements/vorbisdec.c:
11672         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
11673           Don't busy-wait in tests; this was causing test timeouts very
11674           frequently when running under valgrind.
11675
11676 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
11677
11678         * gst/tcp/README:
11679         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_init),
11680         (gst_multi_fd_sink_remove_client_link),
11681         (gst_multi_fd_sink_client_queue_caps),
11682         (gst_multi_fd_sink_client_queue_buffer),
11683         (gst_multi_fd_sink_handle_client_write),
11684         (gst_multi_fd_sink_render):
11685         * gst/tcp/gstmultifdsink.h:
11686           make multifdsink properly deal with streamheader:
11687           - streamheader is taken from caps
11688           - buffers marked with IN_CAPS are not sent
11689           - streamheaders are sent, on connection, from the caps of the
11690             buffer where the client gets positioned to
11691           - further streamheader changes are done every time the client
11692             will receive a buffer with different caps
11693         * tests/check/elements/multifdsink.c: (GST_START_TEST),
11694         (gst_multifdsink_create_streamheader):
11695           add tests for this
11696
11697 2006-06-02  Michael Smith  <msmith@fluendo.com>
11698
11699         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
11700           Reinstate limit on channel count. Vorbis does not define the meaning
11701           of > 6 channels, so they're just independent channels. Gstreamer
11702           currently has no mechanism to represent N independent channels.
11703
11704 2006-06-02  Michael Smith  <msmith@fluendo.com>
11705
11706         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
11707           Don't arbitrarily restrict channel counts and rate in vorbis.
11708           In terms of effects likely on real-world files, this fixes 96kHz
11709           playback of vorbis.
11710
11711 2006-06-02  Michael Smith  <msmith@fluendo.com>
11712
11713         * gst/audioconvert/audioconvert.c: (float):
11714           More correct float->int conversion.
11715
11716 2006-06-02  Michael Smith  <msmith@fluendo.com>
11717
11718         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_perform_seek):
11719           Don't accidently send GST_CLOCK_TIME_NONE as a new segment start
11720           value. Fixes g-critical on trying to play back ogg containing
11721           unknown codec.
11722
11723 2006-06-02  Wim Taymans  <wim@fluendo.com>
11724
11725         * gst/playback/gstplaybasebin.c: (group_create), (group_commit),
11726         (setup_source):
11727         * gst/playback/gstplaybasebin.h:
11728         Make the subtitle detection work from any thread so we don't
11729         deadlock. Fixes #343397.
11730
11731 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
11732
11733         * gst/volume/Makefile.am:
11734           Seriously, it's not *that* hard to get compilation right.  Even
11735           a drunk can do it ! Add LIBOIL CFLAGS and LIBS
11736
11737 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
11738
11739         * gst/volume/gstvolume.c: (volume_choose_func),
11740         (volume_update_real_volume), (gst_volume_class_init),
11741         (gst_volume_init), (volume_process_float), (volume_process_int16),
11742         (volume_process_int16_clamp), (volume_set_caps),
11743         (volume_transform_ip), (plugin_init):
11744         * gst/volume/gstvolume.h:
11745         rewrite the passthrough check, split _int16 and _int16_clamp, fix
11746         another property desc., remove unused param from process function
11747         
11748         * tests/check/elements/volume.c: (volume_suite):
11749         reactivate the passthrough test
11750
11751 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
11752
11753         * ext/alsa/gstalsamixerelement.h:
11754         * ext/alsa/gstalsamixeroptions.h:
11755         * ext/alsa/gstalsamixertrack.h:
11756         * ext/gnomevfs/gstgnomevfssink.h:
11757         * ext/gnomevfs/gstgnomevfssrc.h:
11758         * ext/theora/gsttheoradec.h:
11759         * ext/theora/gsttheoraenc.h:
11760         * ext/theora/gsttheoraparse.h:
11761         * ext/vorbis/vorbisparse.h:
11762         * gst-libs/gst/audio/gstaudioclock.h:
11763         * gst-libs/gst/audio/gstaudiofilter.h:
11764         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
11765         * gst/audioconvert/gstaudioconvert.h:
11766         * gst/audioresample/gstaudioresample.h:
11767         * gst/audiotestsrc/gstaudiotestsrc.h:
11768         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
11769         * gst/playback/gststreamselector.h:
11770         * gst/tcp/gstmultifdsink.h:
11771         * gst/tcp/gsttcpclientsink.h:
11772         * gst/tcp/gsttcpclientsrc.h:
11773         * gst/tcp/gsttcpserversink.h:
11774         * gst/tcp/gsttcpserversrc.h:
11775         * gst/videorate/gstvideorate.h:
11776         * gst/videoscale/gstvideoscale.h:
11777         * gst/videotestsrc/gstvideotestsrc.h:
11778         * gst/volume/gstvolume.h:
11779         * sys/v4l/gstv4ljpegsrc.h:
11780         * sys/v4l/gstv4lmjpegsink.h:
11781         * sys/v4l/gstv4lmjpegsrc.h:
11782         * sys/v4l/gstv4lsrc.h:
11783         * sys/ximage/ximagesink.h:
11784         * sys/xvimage/xvimagesink.h:
11785         * tests/old/testsuite/alsa/sinesrc.h:
11786         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
11787
11788 2006-05-31  Wim Taymans  <wim@fluendo.com>
11789
11790         * ext/libvisual/visual.c: (gst_visual_reset),
11791         (gst_visual_sink_setcaps), (gst_visual_sink_event),
11792         (gst_visual_src_event), (get_buffer), (gst_visual_chain):
11793         Handle DISCONT.
11794         Use running time before doing QoS.
11795         Handle mono too.
11796
11797 2006-05-31  Thomas Vander Stichele  <thomas at apestaart dot org>
11798
11799         * docs/libs/Makefile.am:
11800           set a magic variable to indicate we know the docs are incomplete
11801
11802 2006-05-30  Sebastien Moutte  <sebastien@moutte.net>
11803
11804         * win32/common/libgstvideo.def:
11805           export gst_video_calculate_display_ratio
11806         * win32/vs6/libgstvideoscale.dsp:
11807           add link to libgstvideo-0.10.lib
11808
11809 2006-05-30  Tim-Philipp Müller  <tim at centricular dot net>
11810
11811         * gst/playback/gstplaybasebin.c: (gen_source_element):
11812           Throw a more comprehensible error for rtsp:// URIs (rather
11813           than erroring out with a negotiation error later on) until
11814           we fix playbin to handle rtspsrc etc.
11815
11816 2006-05-30  Wim Taymans  <wim@fluendo.com>
11817
11818         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
11819         (gst_text_overlay_text_event):
11820         Added some FIXMEs.
11821
11822 2006-05-30  Wim Taymans  <wim@fluendo.com>
11823
11824         * gst/adder/gstadder.c: (gst_adder_class_init), (gst_adder_init),
11825         (gst_adder_request_new_pad), (gst_adder_release_pad):
11826         * gst/adder/gstadder.h:
11827         Implement release_request_pad.
11828         Make padcounter atomic.
11829
11830         * tests/check/elements/adder.c: (GST_START_TEST), (adder_suite):
11831         Added check for release_pad in adder.
11832
11833 2006-05-30  Wim Taymans  <wim@fluendo.com>
11834
11835         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream):
11836         Fix build again.
11837
11838 2006-05-30  Thomas Vander Stichele  <thomas at apestaart dot org>
11839
11840         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
11841         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
11842         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
11843         (gst_ogg_pad_submit_page), (gst_ogg_chain_new_stream),
11844         (gst_ogg_demux_seek), (gst_ogg_demux_get_data),
11845         (gst_ogg_demux_get_next_page), (gst_ogg_demux_do_seek),
11846         (gst_ogg_demux_bisect_forward_serialno),
11847         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_chains),
11848         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
11849           add more debugging
11850           clean up printf formats for granulepos and serialno
11851
11852 2006-05-30  Michael Smith  <msmith@fluendo.com>
11853
11854         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
11855         (gst_vorbis_enc_class_init), (gst_vorbis_enc_dispose),
11856         (gst_vorbis_enc_generate_sink_caps), (gst_vorbis_enc_sink_getcaps),
11857         (gst_vorbis_enc_init), (gst_vorbis_enc_buffer_from_header_packet),
11858         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
11859         * ext/vorbis/vorbisenc.h:
11860           Multi-channel caps negotiation, so we can do proper multichannel
11861           vorbis encoding, negotiated through audioconvert.
11862
11863 2006-05-30  Wim Taymans  <wim@fluendo.com>
11864
11865         * tests/check/elements/adder.c: (test_event_message_received),
11866         (test_play_twice_message_received), (GST_START_TEST),
11867         (adder_suite):
11868         Added check to show that #339935 is fixed with ongoing
11869         adder and collectpads fixes.
11870
11871 2006-05-29  Wim Taymans  <wim@fluendo.com>
11872
11873         * gst/adder/gstadder.c: (gst_adder_request_new_pad):
11874         Don't leak pad name.
11875
11876 2006-05-29  Wim Taymans  <wim@fluendo.com>
11877
11878         * gst/adder/gstadder.c: (gst_adder_query_duration),
11879         (forward_event_func), (forward_event), (gst_adder_src_event):
11880         Fix adder seeking.
11881         Make query/seeking code threadsafe.
11882
11883         * tests/check/Makefile.am:
11884         * tests/check/elements/adder.c: (test_event_message_received),
11885         (GST_START_TEST), (test_play_twice_message_received):
11886         Fix adder test case.
11887
11888 2006-05-29  Tim-Philipp Müller  <tim at centricular dot net>
11889
11890         Patch by: Young-Ho Cha  <ganadist at chollian net>
11891
11892         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
11893         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
11894         (set_encoding_element), (decodebin_element_added_cb),
11895         (decodebin_element_removed_cb), (setup_subtitle), (setup_source),
11896         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
11897         * gst/playback/gstplaybasebin.h:
11898           Add 'subtitle-encoding' property to playbin, so applications can
11899           force a subtitle encoding for non-UTF8 subtitles (#342268).
11900
11901         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init),
11902         (gst_sub_parse_set_property):
11903           Rename recently-added 'encoding' property to 'subtitle-encoding'
11904           (so it can be proxied by playbin/decodebin in a generic way
11905           with less danger of false positives).
11906
11907 2006-05-29  Michael Smith  <msmith@fluendo.com>
11908
11909         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
11910         (append_with_other_format), (set_structure_widths),
11911         (gst_audio_convert_transform_caps):
11912           Patch from #341562: give more specific audio caps in get_caps, so
11913           that basetransform  can make better decisions on what caps to
11914           negotiate.
11915
11916 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
11917
11918         * tests/check/elements/volume.c:
11919         make it compile again
11920
11921 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
11922
11923         * tests/check/elements/volume.c: (volume_suite):
11924         disable test until #343196 gets resolved
11925
11926 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
11927
11928         * gst/adder/gstadder.c: (gst_adder_get_type):
11929         Make it easier to copy&paste
11930         
11931         * gst/volume/Makefile.am:
11932         * gst/volume/gstvolume.c: (volume_update_real_volume),
11933         (gst_volume_set_volume), (gst_volume_set_mute),
11934         (gst_volume_class_init), (volume_process_int16), (volume_set_caps),
11935         (volume_transform_ip), (volume_update_mute),
11936         (volume_update_volume):
11937         * gst/volume/gstvolume.h:
11938         Add own debug category, move duplicate code to helper function, fix
11939         property texts, add more comments and prepare ffor liboil-goodness
11940         
11941         * tests/check/Makefile.am:
11942         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
11943         add test for mute and passtrough case, be a bit more verbose to track
11944         failure
11945         
11946         * tests/check/generic/states.c: (GST_START_TEST):
11947         catch elements that fail to instantiate
11948
11949 2006-05-28  Edward Hervey  <edward@fluendo.com>
11950
11951         * tests/check/pipelines/simple-launch-lines.c:
11952         * tests/check/pipelines/theoraenc.c:
11953         * tests/check/pipelines/vorbisenc.c:
11954         Comment out tests using parse_launch() if core was built without
11955         parsing capabilities.
11956
11957 2006-05-27  Edward Hervey  <edward@fluendo.com>
11958
11959         * tests/check/Makefile.am:
11960         Extra bonus points for whoever explains to ensonic that you are meant
11961         to test unit tests thoroughly before commiting them, especially if
11962         you know it's going to break.
11963         De-activated element/adder tests.
11964
11965 2006-05-27  Edward Hervey  <edward@fluendo.com>
11966
11967         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11968         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps):
11969         Marking caps conversion issues as GST_WARNING is way too verbose,
11970         Moving them to GST_LOG.
11971
11972 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
11973
11974         * README:
11975           Replace current README (containing the release notes from
11976           some 0.9.x version) with a proper README taken from the core.
11977
11978 2006-05-26  Wim Taymans  <wim@fluendo.com>
11979
11980         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11981         (vorbis_dec_src_event), (vorbis_dec_sink_event), (vorbis_do_clip),
11982         (vorbis_dec_push), (vorbis_handle_data_packet), (vorbis_dec_chain),
11983         (vorbis_dec_change_state):
11984         Small cleanups.
11985         Add some FIXMEs
11986         Clip output samples to segment boundaries.
11987
11988 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
11989
11990         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
11991         (gst_ximagesink_xcontext_get), (gst_ximagesink_show_frame):
11992         Improve the errors produced on bad output, including some human
11993         readable description strings.
11994         Handle the (theoretical for ximagesink) case where the XServer 
11995         has a different idea about the size required for a particular 
11996         frame and gives us too small a memory allocation.
11997
11998 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
11999
12000         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
12001         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
12002         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
12003         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
12004         Improve the errors produced on bad output, including some human 
12005         readable description strings.
12006         Handle RGB Xv formats properly by transforming them into our 
12007         big-endian caps description.
12008         Use gst_caps_truncate to ensure that we never try and choose a
12009         non-fixed caps in buffer_alloc.
12010         Handle the case where the XServer has a different idea about the size
12011         required for a particular frame and gives us too small a memory
12012         allocation.
12013         Use -1 to indicate 'no image format', because 0 is a valid XServer
12014         image format number.
12015         Put RGB Xv formats at the end of the caps, so that we always prefer
12016         YUV format frames.
12017         Iterate the available Xv Encodings to determine the maximum width and
12018         height, and then return that in our caps.
12019         (Closes #315312, #337544)
12020
12021 2006-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
12022
12023         * gst/playback/gstdecodebin.c: (remove_fakesink), (pad_probe):
12024         When there is only one unfinished pad and it receives an event that
12025         doesn't match our requirements, we need to set alldone=FALSE so that
12026         the fakesink is not removed yet.
12027
12028 2006-05-25  Tim-Philipp Müller  <tim at centricular dot net>
12029
12030         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
12031           Use gst_type_find_helper_for_buffer() to find the type
12032           of stream from the first packet.
12033
12034         * configure.ac:
12035           Bump requirements to core CVS (needed for vorbis
12036           typefinding to work).
12037
12038 2006-05-24  Edward Hervey  <edward@fluendo.com>
12039
12040         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): 
12041         Added the 'prfl' atom type which MQV (no, it's not a typo) files
12042         contain.  Else they play perfectly fine with qtdemux.
12043
12044 2006-05-23  Stefan Kost  <ensonic@users.sf.net>
12045
12046         * ext/theora/theoradec.c:
12047         * ext/theora/theoraenc.c:
12048         * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
12049         * gst/audiorate/gstaudiorate.c:
12050           make more debug catagories static
12051         
12052         * tests/check/Makefile.am:
12053         * tests/check/elements/adder.c: (message_received),
12054         (test_event_message_received), (GST_START_TEST),
12055         (test_play_twice_message_received), (adder_suite):
12056           added test case for using element twice, extra bonus points for anyone
12057           who can make these test run reliably
12058
12059 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
12060
12061         * ext/theora/theoradec.c: (theora_dec_chain):
12062           Make work with time-stamped input buffers that do not
12063           have a granulepos in BUFFER_OFFSET_END (like theora
12064           buffers coming from matroskademux). Fixes #342448.
12065
12066 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
12067
12068         Patch by: Peter Kjellerstedt  <pkj at axis com>
12069
12070         * gst/tcp/Makefile.am:
12071           fdstresstest doesn't need Gtk+, fix compilation if 
12072           gtk is not available (#342566).
12073
12074 2006-05-19 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
12075          
12076         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
12077           80 line columns
12078           Removed redundant floor()
12079
12080 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
12081
12082         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
12083           On second thought, just skip JUNK chunks automatically, so
12084           the caller doesn't have to handle this. Fixes #342345.
12085           Also, return GST_FLOW_UNEXPECTED if we get a short read,
12086           not GST_FLOW_ERROR.
12087
12088 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
12089
12090         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
12091           Don't bail out on JUNK chunks with a size of 0 (would try to
12092           pull_range 0 bytes before, which sources don't like too much).
12093           See #342345.
12094
12095 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
12096
12097         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
12098         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
12099         Use the gstutil scaling function to preserve 64 bits while calculating
12100         output width and height from the display-aspect-ratio. (A continuation
12101         of #341542)
12102
12103 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
12104
12105         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
12106         (gst_xvimagesink_buffer_alloc):
12107         * sys/xvimage/xvimagesink.h:
12108         When performing buffer allocations, remember the caps and image format
12109         we return so that if the same caps are asked for next time we can
12110         return them immediately without doing any caps intersections.
12111
12112 2006-05-18 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
12113          
12114         * gst-libs/gst/rtp/README:
12115           Some new documentation
12116         * gst-libs/gst/rtp/gstrtpbuffer.h:       
12117           Added GST_RTP_PAYLOAD_DYNAMIC_STRING for use by children       
12118         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
12119         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:     
12120           New RTP audio base payloader class. Supports frame or sample based
12121           codecs.  Not enabled in Makefile.am until approved.
12122
12123 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
12124
12125         * tests/check/elements/alsa.c: (test_device_property_probe):
12126           Fix test case: don't try to free NULL GValueArray when there
12127           are no devices.
12128
12129 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
12130
12131         * tests/check/Makefile.am:
12132         * tests/check/elements/alsa.c: (test_device_property_probe),
12133         (alsa_suite), (main):
12134           Add simple test that runs a device property probe on alsasrc,
12135           alsasink and alsamixer. Disable valgrind check for now (too
12136           many leaks in libasound, and valgrind ignored my suppressions
12137           additions).
12138
12139 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
12140
12141         * ext/alsa/gstalsadeviceprobe.c: (gst_alsa_get_device_list),
12142         (gst_alsa_device_property_probe_probe_property),
12143         (gst_alsa_device_property_probe_needs_probe),
12144         (gst_alsa_device_property_probe_get_values),
12145         (gst_alsa_type_add_device_property_probe_interface):
12146         * ext/alsa/gstalsadeviceprobe.h:
12147         * ext/alsa/gstalsamixerelement.c:
12148         (gst_alsa_mixer_element_init_interfaces):
12149         * ext/alsa/gstalsamixerelement.h:
12150           Clean up and simplify alsa device probing. Make it actually work
12151           for multiple classes. Don't cache results any longer.
12152
12153         * ext/alsa/gstalsasink.c: (gst_alsasink_init_interfaces),
12154         (gst_alsasink_init):
12155         * ext/alsa/gstalsasrc.c: (gst_alsasrc_dispose),
12156         (gst_alsasrc_interface_supported), (gst_implements_interface_init),
12157         (gst_alsasrc_init_interfaces), (gst_alsasrc_set_property):
12158           Make alsasink and alsasrc implement the GstPropertyProbe interface
12159           for device probing (#342181).
12160           Patch by: Martin Szulecki  <gnomebugzilla at sukimashita com>
12161
12162 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
12163
12164         * gst/subparse/samiparse.c: (handle_start_font):
12165           Don't ignore return value of strtol (++compiler_happiness).
12166
12167 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
12168
12169         Patch by: Young-Ho Cha  <ganadist chollian net>
12170
12171         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
12172         (gst_sub_parse_class_init), (gst_sub_parse_init),
12173         (gst_sub_parse_set_property), (gst_sub_parse_get_property),
12174         (convert_encoding):
12175         * gst/subparse/gstsubparse.h:
12176           Add 'encoding' property (#341681).
12177
12178         * gst/subparse/samiparse.c: (characters_sami):
12179           Output is pango markup, so we need to escape text
12180           between tags (#342143).
12181
12182 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
12183
12184         * gst-libs/gst/audio/multichannel.c:
12185         (gst_audio_check_channel_positions):
12186           It's okay to have caps with channels=1 and a channel position
12187           different from GST_AUDIO_CHANNEL_POSITION_FRONT_MONO
12188           (deinterleavers might want to keep the position in the caps,
12189           so that they can be re-interleaved again properly later).
12190           Leave check for unexpected 2-channel layouts intact for now.
12191
12192 2006-05-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12193
12194         * gst/tcp/gsttcp.c: (gst_tcp_socket_read):
12195         Return GST_FLOW_UNEXPECTED when we have an eos on the socket so
12196         basesrc can do its job correctly.
12197
12198 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
12199
12200         * ext/alsa/Makefile.am:
12201         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
12202         (gst_alsa_detect_formats), (get_channel_free_structure),
12203         (caps_add_channel_configuration), (gst_alsa_detect_channels),
12204         (gst_alsa_probe_supported_formats):
12205         * ext/alsa/gstalsa.h:
12206         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
12207           Refactor and improve caps probing code: probe signedness
12208           when we probe the supported formats/widths; set endianness
12209           to the one we actually probed for (ie. cpu endianness).
12210           
12211         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (gst_alsasrc_getcaps),
12212         (gst_alsasrc_close):
12213         * ext/alsa/gstalsasrc.h:
12214           Implement caps probing for alsasrc.
12215
12216 2006-05-15  Wim Taymans  <wim@fluendo.com>
12217
12218         * ext/theora/theoradec.c: (gst_theora_dec_reset),
12219         (theora_dec_src_query), (theora_dec_src_event),
12220         (theora_dec_sink_event), (theora_handle_comment_packet),
12221         (theora_handle_data_packet), (theora_dec_change_state):
12222         Cleanups, add some G_LIKELY.
12223         Use segment helpers instead of our own wrong code.
12224         Clear queued buffers on seek and READY.
12225
12226         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
12227         (vorbis_dec_convert), (vorbis_dec_src_query),
12228         (vorbis_dec_src_event), (vorbis_dec_sink_event),
12229         (vorbis_handle_comment_packet), (vorbis_dec_push),
12230         (vorbis_handle_data_packet), (vorbis_dec_chain),
12231         (vorbis_dec_change_state):
12232         * ext/vorbis/vorbisdec.h:
12233         Remove old useless packetno variable.
12234         Do position query properly.
12235         Add some G_LIKELY.
12236         Do cleanup of queued buffers in new helper function
12237         and use it.
12238
12239 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
12240
12241         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
12242           Query supported sample rates. Fixes #341732.
12243
12244 2006-05-15  Julien MOUTTE  <julien@moutte.net>
12245
12246         * gst/playback/gstdecodebin.c: (cleanup_decodebin),
12247         (gst_decode_bin_change_state): Make decodebin reusable
12248         when going from PAUSE_TO_READY and then back to PAUSED.
12249         Fixes #331678.
12250
12251 2006-05-15  Wim Taymans  <wim@fluendo.com>
12252
12253         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types),
12254         (vorbis_dec_convert), (vorbis_dec_src_query),
12255         (vorbis_dec_sink_query), (vorbis_dec_src_event),
12256         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
12257         (vorbis_dec_clean_queued), (vorbis_dec_push),
12258         (vorbis_handle_data_packet), (vorbis_dec_change_state):
12259         Cleanups. Use refcounting and DEBUG_OBJECT.
12260         Reset segment on flush, use code methods instead of our
12261         own wrong version.
12262         Fix potential memleak.
12263
12264 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
12265
12266         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
12267         (gst_alsasink_init):
12268         * ext/alsa/gstalsasink.h:
12269           Don't leak allocated snd_output_t structure if there's
12270           more than one alsasink instance at a time (#341873).
12271           Also fix GObject macros in header file.
12272           
12273 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
12274
12275         * gst/subparse/gstsubparse.c:
12276         (gst_sub_parse_data_format_autodetect):
12277           Don't use libxml functions in the typefinding code.
12278
12279 2006-05-15  Wim Taymans  <wim@fluendo.com>
12280
12281         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
12282         Fix seeking performance in the case where a non-header 
12283         packet has a 0 granulepos (busted theora case). 
12284         Fixes #341719
12285         (nvdr: thanks Wim for not mentioning who spotted and fixed it in
12286          the first place, you limelight stealer you)
12287
12288 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
12289
12290         * gst/subparse/gstsubparse.c:
12291         (gst_sub_parse_data_format_autodetect):
12292           Improve SAMI typefinding: handle case where there are
12293           whitespaces or newlines in front of the first <SAMI>
12294           tag (#169936).
12295
12296 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
12297
12298         * configure.ac:
12299           Build video4linux plugin even if there's no XVIDEO, just
12300           without implementing the GstXOverlay interface (#334002).
12301          
12302 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
12303
12304         * configure.ac:
12305         * ext/libvisual/visual.c: (gst_visual_actor_plugin_is_gl),
12306         (plugin_init):
12307           Add tentative support for libvisual-0.4 (#336881).
12308
12309 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
12310
12311         Patch by: Young-Ho Cha <ganadist at chollian net>
12312
12313         * gst/subparse/samiparse.c: (handle_start_font):
12314           Need to map "silver" colour explicitly (#169936).
12315
12316 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
12317
12318         Patch by: Young-Ho Cha  <ganadist at chollian net>
12319
12320         * gst/subparse/Makefile.am:
12321         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
12322         (parser_state_dispose), (gst_sub_parse_data_format_autodetect),
12323         (gst_sub_parse_format_autodetect), (feed_textbuf),
12324         (gst_subparse_type_find), (plugin_init):
12325         * gst/subparse/gstsubparse.h:
12326         * gst/subparse/samiparse.c:
12327         * gst/subparse/samiparse.h:
12328           Add support for SAMI subtitles (#169936).
12329
12330 2006-05-14  Michael Smith  <msmith@fluendo.com>
12331
12332         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
12333           Fix #341696: crash when mixing L+R+C to mono or stereo.
12334         * tests/check/Makefile.am:
12335         * tests/check/elements/audioconvert.c: (set_channel_positions),
12336         (get_float_mc_caps), (get_int_mc_caps), (GST_START_TEST),
12337         (audioconvert_suite):
12338           Add test for the above, including some generic framework bits for
12339           testing multichannel things.
12340
12341 === release 0.10.7 ===
12342
12343 2006-05-14  Jan Schmidt <thaytan@mad.scientist.com>
12344
12345         * configure.ac:
12346           releasing 0.10.7, "Leave the gun"
12347
12348 2006-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
12349
12350         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
12351         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
12352         Fix the build.
12353
12354 2006-05-12  Jan Schmidt  <thaytan@mad.scientist.com>
12355
12356         * docs/libs/gst-plugins-base-libs-docs.sgml:
12357         * docs/libs/gst-plugins-base-libs-sections.txt:
12358         * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio):
12359         * gst-libs/gst/video/video.h:
12360         * gst/videoscale/Makefile.am:
12361         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
12362         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
12363         * tests/check/Makefile.am:
12364         * tests/check/libs/video.c: (GST_START_TEST), (video_suite),
12365         (main):
12366           Fix integer overflow problem with pixel-aspect-ratio calculations
12367           in videoscale and xvimagesink (#341542)
12368
12369 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
12370
12371         * gst-libs/gst/tag/gstid3tag.c:
12372           Map GST_IMAGE_TAG to and from ID2v2 APIC frames (#341557).
12373
12374 2006-05-12  Sebastien Moutte  <sebastien@moutte.net>
12375
12376         * win32/MANIFEST:
12377           update win32 files listing
12378
12379 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
12380
12381         patch by: Sjoerd Simons (sjoerd@luon.net)
12382
12383         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
12384         (group_create), (group_destroy), (add_stream),
12385         (gst_play_base_bin_get_property),
12386         (gst_play_base_bin_get_streaminfo_value_array):
12387         * gst/playback/gstplaybasebin.h:
12388           API: GstPlayBaseBin::stream-info-value-array property
12389           use a more bindings-friendly way of exposing streaminfo
12390           using a GValueArray.  Tested in ipython.
12391           Closes #341114
12392
12393 2006-05-11  Wim Taymans  <wim@fluendo.com>
12394
12395         * gst/playback/gstdecodebin.c: (try_to_link_1), (queue_enlarge),
12396         (queue_underrun_cb), (queue_filled_cb):
12397         Also catch queue underruns but don't do anything yet.
12398         Refactor and comment queue enlarging code a bit.
12399
12400         * gst/playback/gstplaybasebin.c: (queue_overrun),
12401         (queue_threshold_reached), (queue_out_of_data),
12402         (gen_preroll_element):
12403         If a queue over/underruns check that we don't create nasty
12404         deadlocks when the min-threshold is not reached but the
12405         max-bytes is. In those cases disable max-bytes when we
12406         know that the queue is fed timed data.
12407         Add more comments.
12408
12409 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
12410
12411         * gst/playback/gstplaybin.c: (gen_audio_element):
12412           Make playbin automatically plug an 'audioresample'
12413           element before the audio sink as well. This solves
12414           problems with sinks that only accept a very specific
12415           sample rate, like esdsink (e.g. #340379).
12416
12417 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
12418
12419         * gst/playback/gstplaybasebin.c: (gen_source_element):
12420           Make http sources send special headers so that we receive
12421           icecast metadata if the http stream is an icecast stream
12422           (otherwise the server will just ignore them). This also
12423           means that from now on users will need the 'icydemux'
12424           element from gst-plugins-good installed if they want to
12425           listen to icecast radio streams. (#341432, #333657).
12426
12427 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
12428
12429         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_remove_client_link),
12430         (gst_multi_fd_sink_new_client), (gst_multi_fd_sink_stop):
12431           remove stupid example from docs - it should come with a simple
12432           C program instead.
12433           Clean up/fix docs
12434         * tests/check/elements/multifdsink.c: (wait_bytes_served),
12435         (fail_if_can_read), (GST_START_TEST),
12436         (gst_multifdsink_create_streamheader), (multifdsink_suite):
12437           add a test for changing streamheader which exposes a bug in
12438           multifdsink
12439
12440 2006-05-11  Michael Smith  <msmith@fluendo.com>
12441
12442         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
12443         (gst_gnome_vfs_src_received_headers_callback):
12444         * ext/gnomevfs/gstgnomevfssrc.h:
12445           Don't set icy-caps unless we have a sane interval value. Move
12446           interval to a local variable; we never use it outside this function.
12447
12448 2006-05-11  Wim Taymans  <wim@fluendo.com>
12449
12450         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
12451         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
12452         Register special buffer types along with the objects so
12453         that they are not registered at runtime from N different
12454         streaming threads since they are not threadsafe.
12455
12456 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
12457
12458         * tests/check/elements/multifdsink.c: (wait_bytes_served),
12459         (GST_START_TEST), (fail_unless_read), (multifdsink_suite):
12460           add two more tests, one doing streamheader
12461
12462 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
12463
12464         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_stop):
12465           clean up the bufqueue when shutting down
12466         * tests/check/Makefile.am:
12467         * tests/check/elements/multifdsink.c: (setup_multifdsink),
12468         (cleanup_multifdsink), (GST_START_TEST), (multifdsink_suite),
12469         (main):
12470           add a test for the leak that was just fixed
12471
12472 2006-05-10  Wim Taymans  <wim@fluendo.com>
12473
12474         * gst/adder/gstadder.c: (gst_adder_setcaps),
12475         (gst_adder_query_duration), (gst_adder_query), (forward_event),
12476         (gst_adder_src_event), (gst_adder_sink_event),
12477         (gst_adder_class_init), (gst_adder_finalize),
12478         (gst_adder_request_new_pad), (gst_adder_collected):
12479         * gst/adder/gstadder.h:
12480         Updated some docs. Added comments and FIXMEs all over the place.
12481         Improve debugging info.
12482         Fix leak on finalize by not calling the parent.
12483         Implement duration query.
12484         Make event forwarding threadsafe.
12485         Correctly send NEWSEGMENT at start and after flush.
12486         Handle EOS correctly.
12487         Post error when not negotiated.
12488
12489         * tests/check/elements/adder.c: (GST_START_TEST):
12490         Added FIXME in the test.
12491
12492 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
12493
12494         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
12495         (gst_text_overlay_halign_get_type),
12496         (gst_text_overlay_wrap_mode_get_type):
12497         * ext/theora/theoradec.c: (theora_handle_type_packet),
12498         (theora_handle_data_packet):
12499         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
12500         (theora_enc_sink_setcaps), (theora_enc_chain):
12501         * gst-libs/gst/cdda/gstcddabasesrc.c:
12502         (gst_cdda_base_src_mode_get_type):
12503         * gst/audiotestsrc/gstaudiotestsrc.c:
12504         (gst_audiostestsrc_wave_get_type):
12505         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
12506         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
12507         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
12508         (gst_sync_method_get_type), (gst_unit_type_get_type),
12509         (gst_client_status_get_type):
12510         * gst/videoscale/gstvideoscale.c:
12511         (gst_video_scale_method_get_type):
12512         * gst/videotestsrc/gstvideotestsrc.c:
12513         (gst_video_test_src_pattern_get_type):
12514         * gst/videotestsrc/videotestsrc.c: (paint_setup_I420),
12515         (paint_setup_YV12), (paint_setup_YUY2), (paint_setup_UYVY),
12516         (paint_setup_YVYU), (paint_setup_IYU2), (paint_setup_Y41B),
12517         (paint_setup_Y42B), (paint_setup_Y800), (paint_setup_YVU9),
12518         (paint_setup_YUV9), (paint_setup_RGB888), (paint_setup_BGR888),
12519         (paint_setup_RGB565), (paint_setup_xRGB1555):
12520           Const-ify GEnumValue and GFlagsValue arrays. Use
12521           GST_ROUND_UP_* macros instead of home-made ones.
12522
12523 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
12524
12525         * configure.ac:
12526           Require core CVS for the new newsegment stuff.
12527
12528 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
12529
12530         Patch by: Sjoerd Simons  <sjoerd at luon net>
12531
12532         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type):
12533           Register nick for enum value (#341160).
12534
12535 2006-05-09  Stefan Kost  <ensonic@users.sf.net>
12536
12537         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find),
12538         (plugin_init):
12539          backout typefind patch #340375
12540          
12541         * tests/check/elements/adder.c: (message_received),
12542         (GST_START_TEST), (adder_suite):
12543           redo, signal-handling of test
12544
12545 2006-05-09  Wim Taymans  <wim@fluendo.com>
12546
12547         * gst/adder/gstadder.c: (gst_adder_request_new_pad),
12548         (gst_adder_collected):
12549         * gst/adder/gstadder.h:
12550         Remove bogus segment merging and forwarding, we don't
12551         care about timestamps anyway and we just produce a
12552         continuous stream. 
12553         Also create a nice NEWSEGMENT event when we start.
12554         Use _scale_int some more.
12555
12556 2006-05-09  Edward Hervey  <edward@fluendo.com>
12557
12558         * tests/icles/stress-xoverlay.c:
12559         Fix if core was built without parsing support.
12560
12561 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
12562
12563         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
12564           Add SEDG (Samsung MPEG-4) fourcc.
12565
12566 2006-05-09  Edward Hervey  <edward@fluendo.com>
12567
12568         * tests/icles/stress-xoverlay.c:
12569         * tests/examples/volume/volume.c:
12570         Fix if core was built without parsing support.
12571
12572         * tests/examples/seek/seek.c:
12573         Disable the parse_launch example if core was built without parsing
12574         support.
12575
12576 2006-05-08  Edward Hervey  <edward@fluendo.com>
12577
12578         * autogen.sh: (CONFIGURE_DEF_OPT): 
12579         libtoolize on Darwin/MacOSX is called glibtoolize
12580
12581 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
12582
12583         * tests/check/Makefile.am:
12584         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST):
12585           Disable the adder test, until the build-slaves posses the kindness to 
12586           either like it or to give valid reason for not doing so 
12587
12588 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
12589
12590         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
12591         (adder_suite):
12592           Shuffle NULL state change around and raise timeout more
12593
12594 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
12595
12596         * gst/typefind/gsttypefindfunctions.c: (mp4_find_box),
12597         (mp4_type_find), (plugin_init):
12598           Add typefind to distinguish between "audio/x-m4a" and new type
12599           "video/mp4". Fixes #340375
12600
12601         * tests/check/elements/adder.c: (adder_suite):
12602           Raise timeout to make buildbot happy
12603
12604 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
12605
12606         * gst/adder/gstadder.c: (gst_adder_sink_event),
12607         (gst_adder_request_new_pad), (gst_adder_change_state):
12608         * gst/adder/gstadder.h:
12609         * tests/check/Makefile.am:
12610         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
12611         (adder_suite), (main):
12612           Add sink-event handling to adder. It tries to merge incomming
12613           newsegment-events. Added test to check if segment_done is comming
12614           through. Fixes #340060
12615
12616 2006-05-05  Andy Wingo  <wingo@pobox.com>
12617
12618         * ext/theora/theoraparse.c (gst_theora_parse_init)
12619         (theora_parse_src_convert, theora_parse_src_query):
12620         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
12621         (vorbis_parse_convert, vorbis_parse_src_query): Add convert and
12622         query functions on the source pads of the theora and vorbis parse
12623         elements. Fixes position querying when doing a remux.
12624
12625 2006-05-05  Michael Smith  <msmith@fluendo.com>
12626
12627         * ext/theora/theoraparse.c: (parse_granulepos),
12628         (theora_parse_drain_queue_prematurely),
12629         (theora_parse_queue_buffer), (theora_parse_sink_event):
12630           Fix flushing.
12631           Fix invalid granulepos outputs when starting with a non-keyframe.
12632
12633 2006-05-05  Jan Schmidt  <thaytan@mad.scientist.com>
12634
12635         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find),
12636         (mpeg1_sys_type_find), (ogganx_type_find), (sw_data_destroy):
12637         Rearrange MPEG system stream detection, fixing some memleaks in the
12638         process.
12639         Constify the data for STARTS_WITH and RIFF helper handlers. Make sure
12640         they clean up their data correctly.
12641         Remove unused ogganx caps and move the 'is_annodex' check to inside
12642         the 'is_ogg' if statement.
12643
12644 2006-05-05  Wim Taymans  <wim@fluendo.com>
12645
12646         * gst/playback/gstdecodebin.c: (cleanup_decodebin):
12647         Properly remove ghostpads. Fixes #340392
12648
12649 2006-05-04  David Schleef  <ds@schleef.org>
12650
12651         * gst/typefind/gsttypefindfunctions.c:
12652
12653 2006-05-03  Jan Schmidt  <thaytan@mad.scientist.com>
12654
12655         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
12656         (mpeg_ts_probe_headers), (mpeg_ts_type_find):
12657
12658         When typefinding an MP3 in push-based mode, don't penalise the
12659         probability down to 74% when we found 5 valid frames just because we
12660         can't peek the end of the file.
12661
12662         Make the probability for detecting MPEG Transport Streams based on the
12663         number of sequential headers we successfully detected.
12664
12665 2006-05-03  Wim Taymans  <wim@fluendo.com>
12666
12667         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
12668         (vorbis_dec_push), (vorbis_dec_chain):
12669         Still produce an error when we receive an empty packet.
12670
12671 2006-05-03  Wim Taymans  <wim@fluendo.com>
12672
12673         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
12674         (gst_ogg_chain_mark_discont), (gst_ogg_chain_new_stream),
12675         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek):
12676         Mark buffers with DISCONT after seek and after activating new
12677         chains.
12678
12679         * ext/theora/gsttheoradec.h:
12680         * ext/theora/theoradec.c: (gst_theora_dec_reset),
12681         (theora_get_query_types), (theora_dec_sink_event),
12682         (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
12683         (theora_dec_change_state):
12684         Fix frame counter.
12685         Detect and mark DISCONT buffers.
12686
12687         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
12688         (vorbis_dec_sink_event), (vorbis_dec_push), (vorbis_dec_chain),
12689         (vorbis_dec_change_state):
12690         * ext/vorbis/vorbisdec.h:
12691         Use GstSegment.
12692         Detect and mark DISCONT buffers.
12693         Don't crash on 0 sized buffers.
12694
12695 2006-05-03  Wim Taymans  <wim@fluendo.com>
12696
12697         * gst/volume/gstvolume.c: (volume_funcfind), (volume_set_caps),
12698         (volume_transform_ip):
12699         Increase "volume" property to 10.0. Fixes #340369.
12700         Set the process function to NULL when capsnego fails so that
12701         we properly error out.
12702
12703 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
12704
12705         * gst/playback/gstplaybin.c: (add_sink):
12706         * gst/playback/test.c: (main):
12707         * gst/playback/test5.c: (dump_element_stats):
12708         * gst/playback/test6.c: (main):
12709           free caps using gst_caps_unref, don't leak caps-strings
12710
12711 2006-05-01  Tim-Philipp Müller  <tim at centricular dot net>
12712
12713         * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
12714         (plugin_init):
12715           Refine musepack typefinding a bit. Return MAXIMUM
12716           probability when we detect stream version 7 to make
12717           sure the mpeg audio typefinder doesn't trump us.
12718
12719 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
12720
12721         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
12722           Protect against unexpected NULL strf_data buffer.
12723
12724 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12725
12726         * tests/check/elements/audioconvert.c: (verify_convert),
12727         (GST_START_TEST):
12728           interpret the out[] buffer in the order the bytes are actually
12729           put in, which is LITTLE_ENDIAN, not BYTE_ORDER.
12730           Other tests should use BYTE_ORDER since the array is filled in
12731           with actual values
12732
12733 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12734
12735         * tests/check/elements/audioconvert.c: (verify_convert),
12736         (GST_START_TEST):
12737           when a test fails, give an indication of which it is
12738
12739 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12740
12741         * gst-libs/gst/cdda/gstcddabasesrc.c:
12742           compile fix; strtol() needs <stdlib.h>
12743
12744 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
12745
12746         * ext/alsa/gstalsamixerelement.c:
12747         * ext/alsa/gstalsasrc.c:
12748         * ext/cdparanoia/gstcdparanoiasrc.c:
12749         * ext/gnomevfs/gstgnomevfssink.c:
12750         * ext/gnomevfs/gstgnomevfssrc.c:
12751         * ext/ogg/gstoggdemux.c:
12752         * ext/ogg/gstoggmux.c:
12753         * ext/ogg/gstoggparse.c:
12754         * ext/ogg/gstogmparse.c:
12755         * ext/pango/gstclockoverlay.c:
12756         * ext/pango/gsttextoverlay.c:
12757         * ext/pango/gsttextrender.c:
12758         * ext/pango/gsttimeoverlay.c:
12759         * ext/theora/theoradec.c:
12760         * ext/theora/theoraenc.c:
12761         * ext/vorbis/vorbisdec.c:
12762         * ext/vorbis/vorbisenc.c:
12763         * gst-libs/gst/audio/gstaudiofilter.c:
12764         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
12765         * gst/audioconvert/gstaudioconvert.c:
12766         * gst/audiorate/gstaudiorate.c:
12767         * gst/audioresample/gstaudioresample.c:
12768         * gst/audiotestsrc/gstaudiotestsrc.c:
12769         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12770         * gst/playback/gstdecodebin.c:
12771         * gst/playback/gstplaybin.c:
12772         * gst/playback/gststreamselector.c:
12773         * gst/subparse/gstsubparse.c:
12774         * gst/tcp/gstmultifdsink.c:
12775         * gst/tcp/gsttcpclientsink.c:
12776         * gst/tcp/gsttcpclientsrc.c:
12777         * gst/tcp/gsttcpserversink.c:
12778         * gst/tcp/gsttcpserversrc.c:
12779         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
12780         * gst/videorate/gstvideorate.c:
12781         * gst/videoscale/gstvideoscale.c:
12782         * gst/videotestsrc/gstvideotestsrc.c:
12783         * gst/volume/gstvolume.c:
12784         * sys/v4l/gstv4ljpegsrc.c:
12785         * sys/v4l/gstv4lmjpegsink.c:
12786         * sys/v4l/gstv4lmjpegsrc.c:
12787         * sys/v4l/gstv4lsrc.c:
12788         * sys/ximage/ximagesink.c:
12789         * sys/xvimage/xvimagesink.c:
12790         * tests/check/libs/cddabasesrc.c:
12791           make GstElementDetails const
12792
12793 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
12794
12795         * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
12796         (gst_adder_init):
12797           send events from src-pad to all sink-pads fixes #338657
12798
12799 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
12800
12801         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps),
12802         (alsasink_parse_spec):
12803           query width capabilities from alsa, fixes #338919
12804
12805 2006-04-28  Wim Taymans  <wim@fluendo.com>
12806
12807         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
12808         (gst_multi_fd_sink_remove_client_link):
12809         * gst/tcp/gstmultifdsink.h:
12810         Fix race condition in multifdsink that can lead to spurious 
12811         duplicate clients. this patch adds a new signal that is fired when
12812         multifdsink has removed all references to the fd.
12813         Fixes #339574.
12814         Updated documentation.
12815         API: client-fd-removed signal added
12816
12817 2006-04-28  Michael Smith  <msmith@fluendo.com>
12818
12819         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats):
12820           When asking g_value_array_new to prealloc elements, we may as well
12821           ask for the right number of elements.
12822
12823 2006-04-28  Wim Taymans  <wim@fluendo.com>
12824
12825         * gst-libs/gst/audio/gstbaseaudiosink.c:
12826         (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
12827         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
12828         patch to make timestamp checking more tollerant to rounding 
12829         errors given that real discontinuities are to be marked on
12830         buffers. Fixes some asf files and #338778.
12831         Also avoid some crashers when we receive an event in the 
12832         NULL state.
12833
12834 2006-04-28  Michael Smith  <msmith@fluendo.com>
12835
12836         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
12837         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
12838         (gst_gnome_vfs_src_get_property),
12839         (gst_gnome_vfs_src_send_additional_headers_callback),
12840         (gst_gnome_vfs_src_received_headers_callback),
12841         (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_start),
12842         (gst_gnome_vfs_src_stop):
12843         * ext/gnomevfs/gstgnomevfssrc.h:
12844           Remove ICY handling (mostly) from gnomevfssrc, in favour of
12845           proper shared support within icydemux.
12846
12847 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
12848
12849         * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
12850         (gst_video_rate_swap_prev), (gst_video_rate_chain):
12851           fix up docs
12852           fix a leak when no caps negotiated
12853           fix counting of input frames
12854         * tests/check/elements/.cvsignore:
12855         * tests/check/elements/videorate.c: (assert_videorate_stats),
12856         (GST_START_TEST), (videorate_suite):
12857           add tests for these
12858
12859 2006-04-28  Wim Taymans  <wim@fluendo.com>
12860
12861         * gst-libs/gst/audio/gstringbuffer.c:
12862         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
12863         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
12864         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
12865         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
12866         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
12867         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
12868         (gst_ring_buffer_commit), (gst_ring_buffer_read),
12869         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
12870         (gst_ring_buffer_clear), (gst_ring_buffer_may_start):
12871         Check arguments passed to public functions instead of
12872         crashing.
12873
12874 2006-04-28  Wim Taymans  <wim@fluendo.com>
12875
12876         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
12877         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
12878         GstBaseAudioSrc must be live or it does not work.
12879
12880         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audio_src_init):
12881         Don't set live to TRUE as this is the default in the parentclass.
12882
12883 2006-04-28  Wim Taymans  <wim@fluendo.com>
12884
12885         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps),
12886         (gst_video_scale_fixate_caps), (gst_video_scale_src_event):
12887         Videoscale doesn't pass on pixel-aspect ratio. Handle all
12888         fixation cases better. Fixes #338991
12889
12890 2006-04-28  Wim Taymans  <wim@fluendo.com>
12891
12892         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
12893         Handle 0/1 framerate correctly Fixes #331901.
12894
12895 2006-04-28  Wim Taymans  <wim@fluendo.com>
12896
12897         * tests/check/elements/audioconvert.c: (get_float_caps),
12898         (GST_START_TEST), (audioconvert_suite):
12899         Added check for correct clipping when doing float samples
12900         in audioconvert.
12901
12902 2006-04-28  Wim Taymans  <wim@fluendo.com>
12903
12904         * gst/videorate/gstvideorate.c: (gst_video_rate_event),
12905         (gst_video_rate_chain):
12906         Print more debugging info.
12907
12908 2006-04-28  Wim Taymans  <wim@fluendo.com>
12909
12910         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
12911         (resample_set_state_from_caps):
12912         Add support for other formats audioresample can handle such as
12913         32 bits in and float and 64 bits float. Fixes #301759
12914
12915 2006-04-28  Wim Taymans  <wim@fluendo.com>
12916
12917         * gst/audioconvert/audioconvert.c: (float):
12918         correctly clip float samples > 1.0. Fixes #338718
12919
12920 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
12921
12922         Patch by: Young-Ho Cha  <ganadist at chollian net>
12923
12924         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
12925         (gst_text_overlay_render_text):
12926           Don't strip newlines from the text. Also, center lines
12927           within multi-line paragraphs (#339405).
12928
12929 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
12930
12931         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find):
12932           Fix wavpack typefinding to work in more cases (don't peek
12933           for chunks of multiple hundred kBs at once, but process
12934           things step-by-step in smaller units). Fixes #339786.
12935
12936 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
12937
12938         * configure.ac:
12939           back to HEAD
12940
12941 === release 0.10.6 ===
12942
12943 2006-04-28  Thomas Vander Stichele <thomas at apestaart dot org>
12944
12945         * configure.ac:
12946           releasing 0.10.6, "Chao"
12947
12948 2006-04-26  David Schleef  <ds@schleef.org>
12949
12950         * gst/videoscale/gstvideoscale.c: Add call to oil_init().
12951           Fixes #338897.
12952
12953 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
12954
12955         * configure.ac:
12956         * win32/common/config.h:
12957           new prerelease
12958
12959 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
12960
12961         patch by: Wim Taymans
12962
12963         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
12964         (gst_ogg_demux_perform_seek):
12965           make sure correct newsegments are sent, so that the decoder
12966           and the demuxer agree on timestamps.  Fixes playback of a lot
12967           of Ogg files that do not start from 0.  Fixes #339833.
12968
12969 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
12970
12971         Patch by: Edward Hervey  <edward@fluendo.com>
12972
12973         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
12974         * tests/check/Makefile.am:
12975         * tests/check/elements/videorate.c: (assert_videorate_stats),
12976         (setup_videorate), (cleanup_videorate), (GST_START_TEST),
12977         (videorate_suite), (main):
12978           Fix an infinite loop if frames are passed in with wrongly ordered
12979           timestamps.  Fixes #339013.
12980
12981 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
12982
12983         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
12984
12985         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
12986           fix typefinding on some ISO files.  Fixes #339212.
12987
12988 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
12989
12990         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
12991
12992         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
12993           add another H264 fourcc.  Fixes #339047.
12994
12995 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
12996
12997         Patch by: Jan Schmidt
12998
12999         * gst/playback/gststreamselector.c:
13000         (gst_stream_selector_bufferalloc):
13001           Restore old StreamSelector behaviour.
13002           Fixes #338419.
13003
13004 2006-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
13005
13006         * configure.ac:
13007         * win32/common/config.h:
13008           prerelease
13009
13010 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
13011
13012         Patch by: Antoine Tremblay  <hexa00 at gmail dot com>
13013
13014         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13015         (gst_base_rtp_depayload_finalize), (gst_base_rtp_depayload_push):
13016           Fix some memory leaks: on finalize, free buffers left in the queue
13017           before destroying the queue; in _push(), unref rtp_buf even if
13018           the process vfunc returned a NULL buffer as output buffer (#337548);
13019           demote some recuring debug messages to LOG level.
13020
13021 2006-04-11  Wim Taymans  <wim@fluendo.com>
13022
13023         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
13024         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13025         (gst_ogg_chain_free), (gst_ogg_demux_sink_event),
13026         (gst_ogg_demux_loop):
13027         More cleanups.
13028         Respect segment stop when emiting EOS or SEGMENT_DONE.
13029         Fixes (#337945).
13030
13031 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
13032
13033         * gst/playback/gststreamselector.c:
13034         (gst_stream_selector_get_property):
13035           Don't leak pad name.
13036
13037 2006-04-10  Michael Smith  <msmith@fluendo.com>
13038
13039         * tests/check/Makefile.am:
13040         * tests/check/gst-plugins-base.supp:
13041           Suppress an old libtheora bug (fixed in more recent versions), so 
13042           that FC4 buildslaves can pass.
13043
13044 2006-04-10  Wim Taymans  <wim@fluendo.com>
13045
13046         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
13047         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
13048         (gst_ogg_demux_init), (gst_ogg_demux_finalize),
13049         (gst_ogg_demux_sink_event), (gst_ogg_demux_get_data),
13050         (gst_ogg_demux_loop):
13051         Don't leak events.
13052         Remember what error we got when finding chains, if we
13053         were shutdown, that would not be an error.
13054
13055 2006-04-10  Wim Taymans  <wim@fluendo.com>
13056
13057         * gst-libs/gst/audio/gstbaseaudiosink.c:
13058         (gst_base_audio_sink_event):
13059         Starting the ringbuffer when we did not acquire it can cause
13060         a deadlock, is pointless and causes nasty things for
13061         subclasses. 
13062         Fixes gst-launch audiotestsrc num-buffers=0 ! alsasink.
13063
13064 2006-04-10  Wim Taymans  <wim@fluendo.com>
13065
13066         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
13067         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
13068         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13069         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
13070         (gst_ogg_demux_deactivate_current_chain),
13071         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
13072         (gst_ogg_demux_bisect_forward_serialno),
13073         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain):
13074         Add some more debugging.
13075
13076 2006-04-10  Wim Taymans  <wim@fluendo.com>
13077
13078         * ext/theora/theoradec.c: (theora_dec_src_event),
13079         (theora_handle_data_packet):
13080         Some more debug info.
13081
13082         * tests/examples/seek/seek.c: (start_seek), (main):
13083         Print element messages too.
13084
13085 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
13086
13087         * gst/audioresample/debug.h:
13088           replace debug macros with variable number of parameters
13089           by a simple alias to gstreamer standard debug macros 
13090          (#define RESAMPLE_ERROR GST_ERROR, __VA_ARGS__ is not
13091           supported by MSVC 6.0 and 7.1)
13092         * gst/audioresample/resample.h:
13093           define M_PI and rint for WIN32
13094         * win32/common/libgstaudio.def:
13095         * win32/common/libgstriff.def:
13096         * win32/common/libgsttag.def:
13097         * win32/common/libgstvideo.def:
13098           add new exported functions
13099         * win32/vs6:
13100           update project files
13101
13102 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
13103
13104         * ext/alsa/gstalsamixeroptions.c:
13105         (gst_alsa_mixer_options_class_init):
13106         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init):
13107         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init):
13108         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
13109         * ext/ogg/gstoggparse.c: (gst_ogg_parse_class_init):
13110         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_class_init):
13111         * gst-libs/gst/audio/gstaudiofilter.c:
13112         (gst_audio_filter_class_init):
13113         * gst-libs/gst/audio/gstaudiosink.c:
13114         (gst_audioringbuffer_class_init):
13115         * gst-libs/gst/audio/gstaudiosrc.c:
13116         (gst_audioringbuffer_class_init):
13117         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_class_init):
13118         * gst-libs/gst/interfaces/colorbalancechannel.c:
13119         (gst_color_balance_channel_class_init):
13120         * gst-libs/gst/interfaces/mixeroptions.c:
13121         (gst_mixer_options_class_init):
13122         * gst-libs/gst/interfaces/mixertrack.c:
13123         (gst_mixer_track_class_init):
13124         * gst-libs/gst/interfaces/tunerchannel.c:
13125         (gst_tuner_channel_class_init):
13126         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_class_init):
13127         * gst-libs/gst/netbuffer/gstnetbuffer.c:
13128         (gst_netbuffer_class_init):
13129         * gst-libs/gst/rtp/gstbasertppayload.c:
13130         (gst_basertppayload_class_init):
13131         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
13132         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
13133         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
13134         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
13135         * gst/playback/gststreamselector.c:
13136         (gst_stream_selector_class_init):
13137         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
13138         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
13139         * sys/v4l/gstv4lcolorbalance.c:
13140         (gst_v4l_color_balance_channel_class_init):
13141         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_class_init):
13142         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
13143         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
13144         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_channel_class_init),
13145         (gst_v4l_tuner_norm_class_init):
13146         * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
13147         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
13148         * tests/old/testsuite/alsa/sinesrc.c: (sinesrc_class_init):
13149         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
13150
13151 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
13152
13153         * ext/pango/gsttextrender.h:
13154         * gst-libs/gst/audio/gstaudiosink.h:
13155         * gst-libs/gst/audio/gstaudiosrc.h:
13156         * gst-libs/gst/audio/gstbaseaudiosink.h:
13157         * gst-libs/gst/audio/gstbaseaudiosrc.h:
13158         * gst-libs/gst/audio/gstringbuffer.h:
13159         * gst-libs/gst/rtp/gstbasertpdepayload.h:
13160         * gst-libs/gst/rtp/gstbasertppayload.h:
13161         * gst-libs/gst/video/gstvideofilter.h:
13162         * gst-libs/gst/video/gstvideosink.h:
13163         * gst/playback/gstplaybasebin.h:
13164         * gst/tcp/gstmultifdsink.h:
13165         * sys/v4l/gstv4lelement.h:
13166         Fix broken GObject macros
13167
13168 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
13169
13170         * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec):
13171         More debug to trace why my USB headset is not working with gst
13172
13173 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
13174
13175         * gst/playback/gstplaybasebin.c: (group_destroy):
13176         Clean up our group elements properly in the case where it never 
13177         got committed - it still got added unconditionally to the bin.
13178
13179 2006-04-07  Wim Taymans  <wim@fluendo.com>
13180
13181         * ext/theora/theoradec.c: (theora_dec_sink_event),
13182         (theora_handle_data_packet), (theora_dec_chain):
13183         Unref unhandled events.
13184         Protect against empty buffers.
13185         Perform QoS on running time.
13186
13187 2006-04-07  Michael Smith  <msmith@fluendo.com>
13188
13189         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_set_header_on_caps),
13190         (gst_vorbis_enc_chain):
13191           Remove leaks from vorbisenc.
13192           Mostly minor changes, the only significant one is that now the
13193           buffers we set as 'streamheader' on the caps are copies of the
13194           original buffers, to avoid circular refcounting problems.
13195
13196 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
13197
13198         * gst/playback/gstplaybasebin.c: (mute_stream), (setup_substreams):
13199           Don't remove our mute-probe if someone else already did so.
13200           Don't set a 2nd one if there is already one pending on the pad.
13201
13202         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
13203         (do_playbin_seek):
13204           When a seek fails, ensure that playbin is still set back to playing.
13205           
13206         * gst/typefind/gsttypefindfunctions.c: (mpeg_ts_probe_headers),
13207         (mpeg_ts_type_find), (plugin_init):
13208           Add a typefind function for mpeg-ts streams. (Closes: #336617)
13209
13210 2006-04-06  Andy Wingo  <wingo@pobox.com>
13211
13212         * gst/videorate/gstvideorate.c (gst_video_rate_reset) 
13213         (gst_video_rate_init): Caps-related parameters should not be reset
13214         by a flush -- move their inits to the instance init function.
13215         (gst_video_rate_flush_prev): Don't complain if gst_pad_push
13216         is not OK, just return the result.
13217
13218         * gst/audiotestsrc/gstaudiotestsrc.c
13219         (gst_audio_test_src_class_init)
13220         (gst_audio_test_src_get_times): Re-enable is-live=true, as was
13221         broken by Stefan's commit on 24 March.
13222
13223         * ext/ogg/gstoggmux.c (gst_ogg_mux_push_buffer): Set caps on
13224         buffers being pushed out. Fixes oggmux ! multifdsink.
13225
13226 2006-04-05  Tim-Philipp Müller  <tim at centricular dot net>
13227
13228         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
13229         (gst_vorbis_dec_init), (vorbis_dec_finalize):
13230         * ext/vorbis/vorbisdec.h:
13231         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_add_interfaces),
13232         (gst_vorbis_enc_base_init), (gst_vorbis_enc_class_init),
13233         (gst_vorbis_enc_sink_setcaps), (gst_vorbis_enc_convert_src),
13234         (gst_vorbis_enc_convert_sink), (gst_vorbis_enc_get_query_types),
13235         (gst_vorbis_enc_src_query), (gst_vorbis_enc_sink_query),
13236         (gst_vorbis_enc_init), (gst_vorbis_enc_get_tag_value),
13237         (gst_vorbis_enc_metadata_set1), (gst_vorbis_enc_set_metadata),
13238         (gst_vorbis_enc_setup), (gst_vorbis_enc_clear),
13239         (gst_vorbis_enc_buffer_from_packet),
13240         (gst_vorbis_enc_buffer_from_header_packet),
13241         (gst_vorbis_enc_push_buffer), (gst_vorbis_enc_push_packet),
13242         (gst_vorbis_enc_set_header_on_caps), (gst_vorbis_enc_sink_event),
13243         (gst_vorbis_enc_chain), (gst_vorbis_enc_output_buffers),
13244         (gst_vorbis_enc_get_property), (gst_vorbis_enc_set_property),
13245         (gst_vorbis_enc_change_state):
13246         * ext/vorbis/vorbisenc.h:
13247           Remove left-over 0.8 cruft; use GST_DEBUG_FUNCPTR; make
13248           vorbisenc adhere to the official nomenclature; use boilerplate
13249           macro.
13250
13251 2006-04-04  Andy Wingo  <wingo@pobox.com>
13252
13253         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
13254         Whoops, fix bug introduced. Bad hacker!
13255         
13256         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
13257         Properly handle the case where you get EOS before any buffers are
13258         received. Use gst_buffer_make_metadata_writable where appropriate.
13259
13260         * ext/theora/theoradec.c (theora_handle_data_packet): This value
13261         is often negative -- make it signed so as not to wrap around.
13262         Fixes segfaults introduced on 9 March.
13263
13264 2006-04-03  Wim Taymans  <wim@fluendo.com>
13265
13266         * ext/theora/gsttheoradec.h:
13267         * ext/theora/theoradec.c: (theora_dec_src_event):
13268         Don't try to store a gdouble in a gboolean.
13269         Small cleanups.
13270
13271 2006-04-03  Michael Smith  <msmith@fluendo.com>
13272
13273         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads):
13274           Oggmux sucks.
13275           Make it suck slightly less by writing out the final page.
13276           Still can't encode a vorbis-in-ogg file correctly, though.
13277
13278 2006-04-03  Andy Wingo  <wingo@pobox.com>
13279
13280         * ext/theora/theoraparse.c (theora_parse_drain_queue): Um, remove
13281         a g_print.
13282
13283         * ext/theora/theora.c (plugin_init): Register theoraparse.
13284
13285         * ext/theora/gsttheoraparse.h: 
13286         * ext/theora/theoraparse.c: New files implementing a theora
13287         parser. Now we can properly remux ogg/theora+vorbis, yay.
13288
13289         * ext/vorbis/vorbisparse.c: Add some docs and a copyright.
13290
13291 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
13292
13293         * gst/audiotestsrc/gstaudiotestsrc.c:
13294           Fixed the sample pipeline (see #323798)
13295
13296 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
13297
13298         * configure.ac:
13299         * win32/common/config.h:
13300         * win32/common/config.h.in:
13301           use AS_VERSION and AS_NANO
13302           more cleanups
13303
13304 2006-03-31  Andy Wingo  <wingo@pobox.com>
13305
13306         * ext/vorbis/vorbisparse.c (vorbis_parse_sink_event): Fix
13307         uninitialized variable return that would happen.
13308         
13309         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_queue): Fix
13310         uninitialized variable return that would never happen.
13311
13312         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init) 
13313         (vorbis_parse_sink_event): Add an event function to flush our
13314         state on a seek, and to drain buffers on a premature EOS.
13315         (vorbis_parse_push_headers, vorbis_parse_clear_queue) 
13316         (vorbis_parse_push_buffer, vorbis_parse_drain_queue_prematurely) 
13317         (vorbis_parse_chain, vorbis_parse_queue_buffer) 
13318         (vorbis_parse_drain_queue): Queue up buffers until we can set
13319         their timestamps and granulepos values.
13320
13321         * ext/vorbis/vorbisparse.h: Include the vorbis decoder headers,
13322         and keep track of data needed for deriving granulepos and
13323         timestamps for buffers.
13324
13325 2006-03-29  Wim Taymans  <wim@fluendo.com>
13326
13327         Patch by: j^ <j at bootlab dot org>
13328
13329         * ext/alsa/gstalsamixerelement.c:
13330         (gst_alsa_mixer_element_class_init):
13331         * ext/alsa/gstalsasink.c:
13332         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
13333         * ext/ogg/gstoggdemux.c:
13334         * ext/ogg/gstoggmux.c:
13335         * ext/ogg/gstoggparse.c:
13336         * ext/pango/gstclockoverlay.c:
13337         * ext/pango/gsttextoverlay.c:
13338         * ext/pango/gsttextrender.c:
13339         * ext/pango/gsttimeoverlay.c:
13340         * ext/theora/theoradec.c:
13341         * ext/theora/theoraenc.c:
13342         * ext/vorbis/vorbisdec.c:
13343         * ext/vorbis/vorbisenc.c:
13344         * gst/audioconvert/gstaudioconvert.c:
13345         * gst/subparse/gstsubparse.c:
13346         * gst/tcp/gstmultifdsink.c:
13347         * gst/tcp/gsttcpclientsink.c:
13348         * gst/tcp/gsttcpclientsrc.c:
13349         * gst/tcp/gsttcpserversink.c:
13350         * gst/tcp/gsttcpserversrc.c:
13351           better/unified long descriptions
13352           Fixes #336477
13353
13354 2006-03-29  Wim Taymans  <wim@fluendo.com>
13355
13356         * tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
13357         (stop_seek):
13358         Don't let double and triple clicks mess up our state.
13359
13360 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
13361
13362         * gst/playback/gstplaybin.c: (gen_video_element),
13363         (gen_text_element), (gen_audio_element), (gen_vis_element):
13364           Error out gracefully when we can't create any of the usual
13365           conversion elements for some reason. Also, don't try to
13366           create an audioscale (sic) element that's not used anyway.
13367
13368 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
13369
13370         * gst/playback/gstplaybasebin.c: (setup_source):
13371           Don't post RESOURCE_NOT_FOUND error when we can't find a source
13372           element for a particular protocol, that's confusing for users.
13373           Instead, post a RESOURCE_FAILED error, so that our own error
13374           message is actually shown in totem etc. (#336303).
13375
13376 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
13377
13378         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
13379
13380         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_finalize),
13381         (gst_gnome_vfs_src_get_icy_metadata):
13382           Fix some minor memory leaks (#336194).
13383
13384 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
13385
13386         * ext/gnomevfs/gstgnomevfs.c:
13387         (gst_gnome_vfs_location_to_uri_string):
13388         * ext/gnomevfs/gstgnomevfs.h:
13389         * ext/gnomevfs/gstgnomevfssink.c:
13390         (gst_gnome_vfs_sink_set_property):
13391         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_set_property):
13392           Make gnomevfssink accept filenames as well as URIs for the
13393           "location" property, just like gnomevfssrc does (and
13394           filesrc/filesink do) (#336190).
13395
13396 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
13397
13398         * tests/check/generic/clock-selection.c: (GST_START_TEST):
13399           set to NULL before unreffing, fixes a valgrind leak.
13400           Why was this not triggering the error that an object needs to
13401           be NULL before unreffing ?
13402         * win32/common/config.h:
13403           update
13404
13405 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
13406
13407         * gst/subparse/gstsubparse.c: (convert_encoding),
13408         (gst_sub_parse_change_state):
13409         * gst/subparse/gstsubparse.h:
13410           Text subtitle files may or may not be UTF-8. If it's not, we
13411           don't really want to see '?' characters in place of non-ASCII
13412           characters like accented characters. So let's assume the input
13413           is UTF-8 until we come across text that is clearly not. If it's
13414           not UTF-8, we don't really know what it is, so try the following:
13415           (a) see whether the GST_SUBTITLE_ENCODING environment variable
13416           is set; if not, check (b) if the current locale encoding is
13417           non-UTF-8 and use that if it is, or (c) assume ISO-8859-15 if
13418           the current locale encoding is UTF-8 and the environment variable
13419           was not set to any particular encoding. Not perfect, but better
13420           than nothing (and better than before, I think) (fixes #172848).
13421
13422 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
13423
13424         * configure.ac:
13425           update core requirement to 0.10.4.1 because of async_playback
13426           vmethod on GstBaseSink
13427
13428 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
13429
13430         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
13431         * gst/adder/gstadder.c: (gst_adder_init):
13432         use DEBUG_FUNCPTR for collectpads
13433
13434 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
13435
13436         * docs/plugins/Makefile.am:
13437         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13438         * docs/plugins/gst-plugins-base-plugins-sections.txt:
13439         * ext/cdparanoia/gstcdparanoiasrc.c:
13440         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_base_init),
13441         (gst_gnome_vfs_sink_class_init):
13442         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_base_init):
13443         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_base_init):
13444         * ext/ogg/gstoggmux.c:
13445         * ext/ogg/gstoggparse.c: (gst_ogg_parse_base_init):
13446         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
13447         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init):
13448         * ext/pango/gsttextoverlay.c:
13449         * ext/pango/gsttextrender.c:
13450         * ext/theora/theoradec.c:
13451         * ext/theora/theoraenc.c:
13452         * ext/vorbis/vorbisdec.c:
13453         * ext/vorbis/vorbisenc.c:
13454         * gst-libs/gst/audio/gstaudiofilter.c:
13455         (gst_audio_filter_base_init):
13456         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
13457         (gst_audio_filter_template_base_init):
13458         * gst/adder/gstadder.c: (gst_adder_get_type):
13459         * gst/adder/gstadder.h:
13460         * gst/audioconvert/gstaudioconvert.c:
13461         * gst/audiotestsrc/gstaudiotestsrc.c:
13462         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
13463         (gst_audio_test_src_create):
13464         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13465         * gst/playback/gstdecodebin.c:
13466         * gst/playback/gstplaybin.c:
13467         * gst/playback/gststreamselector.c:
13468         (gst_stream_selector_base_init):
13469         * gst/subparse/gstsubparse.c: (gst_sub_parse_base_init):
13470         * gst/volume/gstvolume.c:
13471         * sys/v4l/gstv4lmjpegsink.c:
13472         * sys/v4l/gstv4lmjpegsrc.c:
13473         * tests/check/libs/cddabasesrc.c:
13474         * tests/old/examples/gob/gst-identity2.gob:
13475           Add docs for adder, use GST_ELEMENT_DETAILS macro,
13476           define GstElementDetails at the top
13477
13478 2006-03-23  Sebastien Moutte  <sebastien@moutte.net>
13479
13480         * win32/common/libgstinterfaces.def:
13481         Add a lot of export functions for gst-python
13482         * win32/vs6/libgstinterfaces.dsp:
13483         Add a missing include folder in the project configuration
13484         
13485 2006-03-23  Wim Taymans  <wim@fluendo.com>
13486
13487         * gst-libs/gst/audio/gstbaseaudiosrc.c:
13488         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
13489         (gst_base_audio_src_change_state):
13490         Fix audio sources, forgot to make the ringbuffer
13491         startable...
13492
13493 2006-03-23  Wim Taymans  <wim@fluendo.com>
13494
13495         * gst-libs/gst/audio/gstbaseaudiosrc.c:
13496         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
13497         (gst_base_audio_src_change_state):
13498         unparent instead of unref the ringbuffer.
13499
13500 2006-03-23  Wim Taymans  <wim@fluendo.com>
13501
13502         * gst-libs/gst/audio/gstbaseaudiosink.c:
13503         (gst_base_audio_sink_class_init), (gst_base_audio_sink_async_play),
13504         (gst_base_audio_sink_do_play), (gst_base_audio_sink_change_state):
13505         Implement new async_play vmethod to start slaving and allow
13506         playback start in case of async PLAY state changes. 
13507
13508         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
13509         Enable QoS with new method in base class.
13510
13511 2006-03-23  Wim Taymans  <wim@fluendo.com>
13512
13513         Patch by: Julien MOUTTE <julien at moutte dot net>
13514
13515         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_query),
13516         (gst_video_test_src_do_seek), (gst_video_test_src_create):
13517         Partially handle 0 framerate, only EOS after the first frame
13518         is missing.
13519
13520 2006-03-23  Wim Taymans  <wim@fluendo.com>
13521
13522         Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
13523
13524         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
13525         (gst_riff_create_video_template_caps):
13526         * gst/ffmpegcolorspace/avcodec.h:
13527         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
13528         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
13529         (gst_ffmpegcsp_avpicture_fill):
13530         * gst/ffmpegcolorspace/imgconvert.c:
13531         Patch for support of YVU9 AVI files (#334822)
13532
13533 2006-03-22  Edward Hervey  <edward@fluendo.com>
13534
13535         * docs/design/design-decodebin.txt:
13536         Added design document for new decodebin
13537         (Target Caps): text/x-pango-markup is also a default target caps.
13538
13539 2006-03-22  Wim Taymans  <wim@fluendo.com>
13540
13541         * gst-libs/gst/audio/gstbaseaudiosink.c:
13542         (gst_base_audio_sink_dispose):
13543         Since we _parent the ringbuffer, we also need to
13544         _unparent instead of a plain _unref.
13545
13546 2006-03-22  Wim Taymans  <wim@fluendo.com>
13547
13548         * tests/examples/seek/seek.c: (end_scrub), (do_seek), (seek_cb),
13549         (stop_seek), (scrub_toggle_cb), (main):
13550         Add scrub checkbox.
13551
13552 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
13553
13554         * ext/ogg/gstoggparse.c: (gst_ogg_parse_find_stream),
13555         (gst_ogg_parse_chain):
13556           Fix very inefficient usage of linked lists (#335365).
13557
13558 2006-03-21  Edward Hervey  <edward@fluendo.com>
13559
13560         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
13561         * gst/playback/gstplaybin.c: (handoff):
13562         * gst/playback/gststreamselector.c:
13563         (gst_stream_selector_set_property):
13564         gcc 4.1 unreferenced pointer fixes.
13565         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
13566         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
13567         gst_buffer_ref() now takes a GstBuffer*.
13568
13569 2006-03-20  Julien MOUTTE  <julien@moutte.net>
13570
13571         * sys/xvimage/xvimagesink.c:
13572         (gst_xvimagesink_get_format_from_caps): Fix a memleak reported
13573         by Jan Schmidt.
13574
13575 2006-03-19  Tim-Philipp Müller  <tim at centricular dot net>
13576
13577         * gst/typefind/gsttypefindfunctions.c: (id3v2_type_find),
13578         (id3v1_type_find), (apetag_type_find), (plugin_init):
13579           Can't do tag preferences via probability, as tags would then
13580           lose against types that are recognised with MAXIMUM probability
13581           (like .wav); so let all tag typefinders return MAXIMUM themselves
13582           and order them via the rank. Split ID3v1 and ID3v2 typefinders so
13583           that we can prefer APE to ID3v1 (fixes #335028).
13584           
13585 2006-03-17  Wim Taymans  <wim@fluendo.com>
13586
13587         * gst-libs/gst/audio/gstbaseaudiosink.c:
13588         (gst_base_audio_sink_change_state):
13589         * gst-libs/gst/audio/gstringbuffer.c: (wait_segment),
13590         (gst_ring_buffer_may_start):
13591         * gst-libs/gst/audio/gstringbuffer.h:
13592         Only start playback if we are playing.
13593         should fix #330748.
13594
13595 2006-03-17  Jan Schmidt  <thaytan@mad.scientist.com>
13596
13597         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
13598         * win32/common/config.h:
13599           Revert accidental commits to these files.
13600
13601 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
13602
13603         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
13604
13605         * tests/Makefile.am:
13606           Don't try to build tests in tests/icles if we
13607           don't have X (#323852)
13608
13609 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
13610
13611         * gst-libs/gst/tag/gstid3tag.c:
13612           Add TXXX frame identifiers for replaygain stuff as used
13613           by some taggers (see #323721).
13614
13615 2006-03-16  Jan Schmidt  <thaytan@mad.scientist.com>
13616
13617         * gst/playback/gststreamselector.c:
13618         (gst_stream_selector_set_property),
13619         (gst_stream_selector_bufferalloc):
13620           Preserve the existing buggy streamselector behaviour by performing
13621           a fallback buffer allocation when downstream isn't linked yet.
13622           This should really be fixed in playbin by blocking pads until it's
13623           linked them.
13624           Also, use gst_pad_alloc_buffer instead of
13625           gst_pad_alloc_buffer_and_set.
13626
13627 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
13628
13629         * gst-libs/gst/tag/gstid3tag.c:
13630           Don't crash on unknown ID3v2 TXXX frames.
13631           
13632 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
13633
13634         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise):
13635           Chain up to the parent finalize method.
13636           Add 32-bit sample size to the template caps.
13637
13638         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
13639         (gst_riff_create_video_template_caps):
13640           Add the fourcc that the VMWare codec uses.
13641           
13642         * gst/playback/gststreamselector.c:
13643         (gst_stream_selector_set_property),
13644         (gst_stream_selector_bufferalloc),
13645         (gst_stream_selector_request_new_pad):
13646           For the active pad, forward buffer-alloc requests, otherwise
13647           return GST_FLOW_NOT_LINKED. This also prevents xvimagesink
13648           having to memcpy every frame when used by playbin.
13649
13650         * gst/tcp/gstmultifdsink.c:
13651         (gst_multi_fd_sink_handle_client_write):
13652           Get negotiated caps from the sink pad, rather than the sink
13653           pad's peer.
13654
13655 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
13656
13657         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
13658         
13659         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_pop_callbacks):
13660           Don't forget to set src->callbacks_pushed to FALSE again when
13661           popping them, otherwise re-activation in a different mode won't
13662           work (#334620).
13663
13664 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
13665
13666         Patch by: Sebastien Moutte  <sebastien moutte net>
13667
13668         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ff_vid_caps_new),
13669         (gst_ff_aud_caps_new), (gst_ffmpeg_pixfmt_to_caps),
13670         (gst_ffmpeg_smpfmt_to_caps):
13671           Replace __VA_ARGS__ caps creation macros with varargs functions.
13672           Makes things compile on MSVC (#320765), looks nicer, and we can
13673           tell the compiler to check for the NULL terminator.
13674
13675 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
13676
13677         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
13678
13679         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
13680           Make sure the buffer we copy into is really always big
13681           enough, this time for real (#333488).
13682           
13683 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
13684
13685         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
13686           Add support for 24bpp DIB (#305279).
13687
13688 2006-03-14  Wim Taymans  <wim@fluendo.com>
13689
13690         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_init):
13691         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
13692         * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcsp_init):
13693         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
13694         (gst_video_scale_init), (gst_video_scale_src_event):
13695         Re-enable QoS after the release.
13696         Rework videoscale to use the base class src_event handler.
13697
13698 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
13699
13700         * configure.ac:
13701           back to CVS.
13702
13703 === release 0.10.5 ===
13704
13705 2006-03-13  Thomas Vander Stichele <thomas at apestaart dot org>
13706
13707         * configure.ac:
13708           releasing 0.10.5, "Net"
13709
13710 2006-03-13  Tim-Philipp Müller  <tim at centricular dot net>
13711
13712         * docs/plugins/Makefile.am:
13713           Part of previous cdparanoiasrc docs fixes, forgot to commit.
13714           
13715 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
13716
13717         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13718         * docs/plugins/gst-plugins-base-plugins-sections.txt:
13719         * docs/plugins/gst-plugins-base-plugins.hierarchy:
13720           Add cdparanoiasrc to docs.
13721
13722         * gst-libs/gst/cdda/gstcddabasesrc.c:
13723           More GstCddaBaseSrc docs.
13724
13725 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
13726
13727         * docs/libs/gst-plugins-base-libs-sections.txt:
13728         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_user_tag):
13729         * gst-libs/gst/tag/tag.h:
13730           API: libgsttag: new method gst_tag_from_id3_user_tag().
13731
13732 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
13733
13734         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
13735           NULL-terminate array of mpeg4 video file extensions.
13736           Fixes crash on PPC (#334226).
13737
13738 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
13739
13740         * ext/gnomevfs/gstgnomevfssrc.c:
13741         (gst_gnome_vfs_src_check_get_range):
13742           gnome_vfs_uri_is_local() alone is not a good indicator
13743           whether we can operate in pull-mode with a specific URI,
13744           as it returns FALSE for file:// URIs that point to an
13745           NFS-mounted path. Be more conservative here: whitelist
13746           local files, blacklist http URIs and use the old
13747           mechanism for anything else (fixes #334216).
13748
13749 2006-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
13750
13751         * configure.ac:
13752           back to trunk
13753
13754 === release 0.10.4 ===
13755
13756 2006-03-10  Thomas Vander Stichele <thomas at apestaart dot org>
13757
13758         * configure.ac:
13759           releasing 0.10.4, "Power"
13760
13761 2006-03-10  Jan Schmidt  <thaytan@mad.scientist.com>
13762
13763         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
13764         Disable max-lateness by setting it to -1 for now, so that 
13765         we can bed QoS stuff in thoroughly between now and the next
13766         release.
13767
13768 2006-03-10  Tim-Philipp Müller  <tim at centricular dot net>
13769
13770         Patch by: Fabrizio Gennari
13771
13772         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
13773           Make sure we don't read beyond the palette buffer in case of
13774           broken or manipulated files (#333488)
13775
13776 2006-03-10  Edward Hervey  <edward@fluendo.com>
13777
13778         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
13779         Fix for variable not initialized.
13780
13781 2006-03-09  Wim Taymans  <wim@fluendo.com>
13782
13783         * ext/libvisual/visual.c: (gst_visual_get_type),
13784         (gst_visual_src_setcaps), (gst_vis_src_negotiate),
13785         (gst_visual_chain):
13786         Small cleanups.
13787
13788         * ext/theora/gsttheoradec.h:
13789         * ext/theora/theoradec.c: (gst_theora_dec_init),
13790         (gst_theora_dec_reset), (_theora_granule_time),
13791         (theora_dec_src_convert), (theora_dec_sink_convert),
13792         (theora_dec_src_query), (theora_dec_src_event),
13793         (theora_dec_sink_event), (theora_handle_comment_packet),
13794         (theora_handle_header_packet), (theora_dec_push),
13795         (theora_handle_data_packet), (theora_dec_chain),
13796         (theora_dec_change_state):
13797         Add simple QoS.
13798
13799 2006-03-09  Wim Taymans  <wim@fluendo.com>
13800
13801         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
13802         (audiocast_register_listener), (gst_gnome_vfs_src_start):
13803         Some cleanups.
13804
13805 2006-03-09  Wim Taymans  <wim@fluendo.com>
13806
13807         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
13808         Don't try to activate NULL chains.
13809
13810 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
13811
13812         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
13813           Fix invalid memory access to region before peek'd data (#332964).
13814
13815 2006-03-09  Wim Taymans  <wim@fluendo.com>
13816
13817         Patch by: Christophe Fergeau
13818
13819         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
13820         * ext/pango/gsttextrender.c: (gst_text_render_init):
13821         * gst/adder/gstadder.c: (gst_adder_init):
13822         Don't leak padtemplates, closes #333510.
13823
13824 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
13825
13826         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
13827           Fix invalid memory access: make sure string passed to
13828           regexec() is NUL-termianted.
13829
13830 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
13831
13832         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
13833         (mp3_type_find):
13834           Refactor mpeg/audio typefinding to make it more maintainable
13835           and easier to fine-tune. Make probing into middle of the file
13836           work properly (fixes #333900, also see #152688).
13837
13838 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
13839
13840         * gst/typefind/gsttypefindfunctions.c:
13841         (utf8_type_find_have_valid_utf8_at_offset):
13842           Remove part from previous commit that was bogus:
13843           g_utf8_validate() does in fact not accept embedded
13844           zeroes, so we don't need to check for those (thanks
13845           to Mike for the hint).
13846
13847 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
13848
13849         * gst/typefind/gsttypefindfunctions.c:
13850         (utf8_type_find_count_embedded_zeroes),
13851         (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
13852           Make plain/text typefinder more conservative: firstly, check
13853           for embedded zeroes, which are perfectly valid UTF-8 characters,
13854           but also a fairly good sign that something is not a plain text
13855           file; secondly, probe into the middle of the file if possible.
13856           If we can't probe into the middle, limit the probability value
13857           to be returned to TYPE_FIND_POSSIBLE (see #333900).
13858
13859 2006-03-08  Michael Smith  <msmith@fluendo.com>
13860
13861         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
13862           Make typefind function name for mpeg4 video unique.
13863
13864 2006-03-08  Wim Taymans  <wim@fluendo.com>
13865
13866         * ext/libvisual/visual.c: (gst_visual_init),
13867         (gst_visual_clear_actors), (gst_visual_dispose),
13868         (gst_visual_reset), (gst_visual_src_setcaps),
13869         (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
13870         (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
13871         (gst_visual_chain), (gst_visual_change_state):
13872         Cleanups, post nice errors.
13873         Handle sink and src events.
13874         Implement simple QoS.
13875
13876         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
13877         Use new basesink methods to configure max-lateness.
13878         Small doc update.
13879
13880         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13881         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
13882         Debug statement cleanups.
13883
13884         * gst/volume/gstvolume.c: (gst_volume_class_init):
13885         Simple cleanup.
13886
13887 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
13888
13889         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
13890         (gst_text_overlay_init), (gst_text_overlay_set_property),
13891         (gst_text_overlay_get_property):
13892           Revert API/ABI break from March 1. Keep 'halign' and 'valign'
13893           as string type properties, but mark them deprecated. Add
13894           'halignment' and 'valignment' properties that use enums
13895           instead of strings.
13896
13897 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
13898
13899         Patch by: Fabrizio Gennari
13900
13901         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
13902           Allow palettes with less than 256 colours in AVI files
13903           (#333488)
13904
13905 2006-03-07  Julien MOUTTE  <julien@moutte.net>
13906
13907         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
13908         (gst_text_overlay_video_event): Fix wrong EOS handling on text
13909         pad. We were releasing the queued text buffer when we should keep
13910         it until video pad gets EOS or discard the text buffer because it's
13911         too old. That was eating the last subtitle buffer. Add some more
13912         debug.
13913
13914 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
13915
13916         * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
13917         (gst_text_overlay_video_chain):
13918           Fix invalid memory access (we can't access a buffer after it's been
13919           pushed downstream without taking a reference); fix memory leak (if
13920           there's no text to render, bail out before allocating stuff).
13921
13922 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
13923
13924         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
13925         (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
13926         * ext/pango/gsttextoverlay.h:
13927           If input is plain text, escape it before passing it to
13928           pango_layout_set_markup().
13929
13930 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
13931
13932         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
13933           Don't ignore flow return from gst_pad_push().
13934
13935 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
13936
13937         Patch by: Fabrizio Gennari
13938
13939         * ext/libvisual/visual.c: (gst_visual_getcaps),
13940         (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
13941         * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
13942         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
13943         (gst_vorbisenc_convert_sink):
13944         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
13945         (gst_audio_duration_from_pad_buffer):
13946         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
13947         (gst_audio_filter_chain):
13948         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13949         (gst_base_rtp_depayload_setcaps):
13950         * gst-libs/gst/video/video.c: (gst_video_frame_rate),
13951         (gst_video_get_size):
13952         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
13953           Don't leak references returned by gst_pad_get_parent()
13954           (#333663)
13955
13956 2006-03-06  Stefan Kost  <ensonic@users.sf.net>
13957
13958         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
13959           change location param details
13960         * gst/volume/gstvolume.c: (plugin_init):
13961           correct plugin description
13962
13963 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
13964
13965         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
13966         (gst_gnome_vfs_src_check_get_range):
13967           Override GstBaseSrc::check_get_range() in order to avoid opening
13968           the resource just to check whether we can operate in pull-mode or
13969           not - we can predict that pretty well from the URI alone. Should
13970           fix problems with last.fm (#331690). (Requires latest core CVS).
13971
13972 2006-03-06  Wim Taymans  <wim@fluendo.com>
13973
13974         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
13975         (gst_video_sink_class_init):
13976         Throw away frames that are later than 20 ms.
13977
13978 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
13979
13980         Patch by: Fabrizio Gennari
13981
13982         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
13983           Set depth on WMA caps (#333545)
13984
13985 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
13986
13987         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
13988         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
13989           put Theora BOS pages before others.  This hardcodes
13990           the Ogg/Theora I profile, but hey.
13991
13992 2006-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
13993
13994         * ext/ogg/README:
13995           updated with some examples
13996         * ext/theora/theoraenc.c: (granulepos_to_timestamp),
13997         (granulepos_add), (theora_buffer_from_packet):
13998         * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
13999         (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
14000         (gst_vorbisenc_chain):
14001           implement strategy from ext/ogg/README
14002         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
14003         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
14004         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
14005         (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
14006           Fix muxer so that oggz-validate is happy with all streams;
14007           except for no eos mark, and the BOS page ordering
14008         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
14009         (check_buffer_granulepos):
14010         * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
14011           update tests to check for OFFSET being set as requested
14012           fixed type of granulepos, it's not a ClockTime
14013
14014 2006-03-05  Julien MOUTTE  <julien@moutte.net>
14015
14016         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
14017         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
14018         Check that the xvimage we are creating has a correct size
14019         before returning it. (#314897)
14020
14021 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
14022
14023         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
14024           Give id3 and ape tag typefinders a rank slightly higher
14025           than PRIMARY to ensure they're always run before any of
14026           the other typefinders (in particular wav and mp3) (#324186).
14027
14028 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
14029
14030         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
14031           Add support for '3IVD' fourcc (#333403).
14032
14033 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
14034
14035         * configure.ac:
14036           Bump requirements to GStreamer CVS for the new error enum.
14037
14038         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
14039           Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
14040           space left on the device (fixes #333352).
14041
14042 2006-03-04  Sebastien Moutte  <sebastien@moutte.net>
14043
14044         * win32/vs6:
14045           add a project file for libgstvolume
14046           update the workspace
14047
14048 2006-03-03  Thomas Vander Stichele  <thomas at apestaart dot org>
14049
14050         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
14051         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
14052         (GST_START_TEST):
14053           Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
14054           Set IN_CAPS on header buffers
14055
14056 2006-03-02  Wim Taymans  <wim@fluendo.com>
14057
14058         * docs/plugins/Makefile.am:
14059         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
14060         * docs/plugins/gst-plugins-base-plugins-sections.txt:
14061         Add audioresample to docs.
14062
14063         * gst/audioconvert/gstaudioconvert.c:
14064         Add revision date.
14065
14066         * gst/audioresample/gstaudioresample.c:
14067         (gst_audioresample_base_init), (gst_audioresample_class_init),
14068         (gst_audioresample_init), (gst_audioresample_dispose),
14069         (audioresample_get_unit_size), (audioresample_transform_caps),
14070         (resample_set_state_from_caps), (audioresample_transform_size),
14071         (audioresample_set_caps), (audioresample_event),
14072         (audioresample_do_output), (audioresample_transform),
14073         (audioresample_pushthrough), (gst_audioresample_set_property),
14074         (gst_audioresample_get_property), (plugin_init):
14075         * gst/audioresample/gstaudioresample.h:
14076         Added docs.
14077         Small code cleanups.
14078
14079 2006-03-02  Wim Taymans  <wim@fluendo.com>
14080
14081         * docs/plugins/Makefile.am:
14082         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
14083         * docs/plugins/gst-plugins-base-plugins-sections.txt:
14084         Added videoscale to docs.
14085
14086         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
14087         (gst_video_rate_swap_prev), (gst_video_rate_event),
14088         (gst_video_rate_chain):
14089         Fix typo in docs.
14090
14091         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
14092         (gst_video_scale_init), (gst_video_scale_prepare_size),
14093         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
14094         (gst_video_scale_fixate_caps), (gst_video_scale_transform):
14095         * gst/videoscale/gstvideoscale.h:
14096         Added docs, examples.
14097         Some code cleanups.
14098         Post errors instead of g_warning.
14099
14100 2006-03-02  Wim Taymans  <wim@fluendo.com>
14101
14102         * docs/libs/gst-plugins-base-libs-docs.sgml:
14103         * docs/libs/gst-plugins-base-libs-sections.txt:
14104         * docs/libs/gst-plugins-base-libs.types:
14105         * docs/plugins/Makefile.am:
14106         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
14107         * docs/plugins/gst-plugins-base-plugins-sections.txt:
14108         Added some more docs to libs and plugins.
14109
14110         * gst-libs/gst/audio/gstringbuffer.c:
14111         (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
14112         * gst-libs/gst/audio/gstringbuffer.h:
14113         Document ringbuffer some more.
14114
14115         * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
14116         (gst_video_rate_setcaps), (gst_video_rate_reset),
14117         (gst_video_rate_init), (gst_video_rate_flush_prev),
14118         (gst_video_rate_swap_prev), (gst_video_rate_event),
14119         (gst_video_rate_chain), (gst_video_rate_change_state):
14120         * gst/videorate/gstvideorate.h:
14121         Fix videorate to use segments.
14122         Make it work with 0/1 framerates (closes #331903)
14123         Handle EOS correctly.
14124         Added docs.
14125
14126 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
14127
14128         * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
14129         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
14130         (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
14131           In state change function, first chain up to parent class,
14132           then handle downwards state change stuff. Remove some
14133           commented out cruft from 0.8 code.
14134
14135 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
14136
14137         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
14138         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
14139         (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
14140         (gst_ogm_parse_chain):
14141           Don't remove/re-add source pad if the new caps are the same as
14142           the old caps anyway (#333042). When removing source pad, don't
14143           unref it afterwards - we didn't ref it when adding. Sprinkle some
14144           GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
14145           after using gst_pad_get_parent(). Return downstream flow return
14146           value in chain function.
14147
14148 2006-03-02  Wim Taymans  <wim@fluendo.com>
14149
14150         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
14151         * docs/plugins/gst-plugins-base-plugins.args:
14152         * docs/plugins/gst-plugins-base-plugins.hierarchy:
14153         * docs/plugins/gst-plugins-base-plugins.interfaces:
14154         * docs/plugins/gst-plugins-base-plugins.signals:
14155         Fix hierarchy, added some more elements to the docs.
14156
14157         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14158         (gst_ffmpegcsp_get_type):
14159         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
14160         Fix docs for ffmpegcolorspace.
14161
14162 2006-03-01  Tim-Philipp Müller  <tim at centricular dot net>
14163
14164         * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
14165         (apetag_type_find), (ape_type_find), (plugin_init):
14166           Some typefinding fine-tuning:
14167           - rank ID3/APE tags in order of preference via probabilities, so that
14168             ID3v2 > APEv2 > APEv1 > ID3v1.
14169           - three or four bytes don't really justify MAXIMUM probability,
14170             change those to 'very likely' (musepack and monkeysaudio).
14171
14172 2006-03-01  Wim Taymans  <wim@fluendo.com>
14173
14174         * docs/plugins/Makefile.am:
14175         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
14176         * docs/plugins/gst-plugins-base-plugins-sections.txt:
14177         * ext/alsa/gstalsamixer.c:
14178         * ext/alsa/gstalsamixer.h:
14179         * ext/alsa/gstalsamixerelement.c:
14180         (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
14181         * ext/alsa/gstalsamixerelement.h:
14182         * ext/alsa/gstalsasink.c:
14183         * ext/alsa/gstalsasink.h:
14184         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
14185         (gst_alsasrc_init):
14186         * ext/alsa/gstalsasrc.h:
14187         Added alsa docs.
14188         Small code cleanups.
14189
14190 2006-03-01  Wim Taymans  <wim@fluendo.com>
14191
14192         * ext/theora/Makefile.am:
14193         Dist new header too,
14194
14195 2006-03-01  Wim Taymans  <wim@fluendo.com>
14196
14197         * docs/plugins/Makefile.am:
14198         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
14199         * docs/plugins/gst-plugins-base-plugins-sections.txt:
14200         * ext/gnomevfs/gstgnomevfssink.h:
14201         * ext/gnomevfs/gstgnomevfssrc.h:
14202         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
14203         * ext/vorbis/vorbisdec.h:
14204         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
14205         * ext/vorbis/vorbisenc.h:
14206         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
14207         (vorbis_parse_chain), (vorbis_parse_change_state):
14208         * ext/vorbis/vorbisparse.h:
14209         * gst/audioconvert/gstaudioconvert.h:
14210         * gst/tcp/gsttcpserversink.h:
14211         * gst/videotestsrc/gstvideotestsrc.c:
14212         * gst/videotestsrc/gstvideotestsrc.h:
14213         * gst/volume/gstvolume.c:
14214         * gst/volume/gstvolume.h:
14215         Fix some more docs.
14216         Added docs for vorbisdec and vorbisparse.
14217         Fix vorbisparse.
14218
14219 2006-03-01  Wim Taymans  <wim@fluendo.com>
14220
14221         * docs/plugins/Makefile.am:
14222         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
14223         * docs/plugins/gst-plugins-base-plugins-sections.txt:
14224         * ext/pango/gstclockoverlay.h:
14225         * ext/pango/gsttextoverlay.h:
14226         * ext/pango/gsttextrender.h:
14227         * ext/pango/gsttimeoverlay.h:
14228         * ext/theora/gsttheoradec.h:
14229         * ext/theora/gsttheoraenc.h:
14230         * ext/theora/theoradec.c:
14231         * ext/theora/theoraenc.c:
14232         * gst/audioconvert/gstaudioconvert.h:
14233         * gst/audiotestsrc/gstaudiotestsrc.h:
14234         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
14235         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
14236         * gst/tcp/gstmultifdsink.h:
14237         Updated/added documentation.
14238
14239         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
14240         (gst_text_overlay_halign_get_type),
14241         (gst_text_overlay_wrap_mode_get_type),
14242         (gst_text_overlay_base_init), (gst_text_overlay_class_init),
14243         (gst_text_overlay_init), (gst_text_overlay_set_property),
14244         (gst_text_overlay_get_property):
14245         Fix up properties to be enums instead of string to make bindings,
14246         introspection and automatic GUI creation possible.
14247         Add getters for the properties.
14248
14249 2006-02-28  Sebastien Moutte  <sebastien@moutte.net>
14250
14251         * gst/audiotestsrc/gstaudiotestsrc.c:
14252           added defines of M_PI and M_PI_2
14253         * gst/ffmpegcolorspace/avcodec.h:
14254           removed #include "stdint.h" for win32 as _stdint.h is 
14255           autogenerated to win32/common
14256         * win32/common/libgstaudio.def:
14257         * win32/common/libgsttag.def:
14258           added some exports
14259         * win32/vs6:
14260           some project files bugs corrected
14261         * win32/vs7:
14262           project files are reset to the default vs7 configuration 
14263           (they link to msvcr71.dll using default optimizations)
14264           
14265 2006-02-28  Wim Taymans  <wim@fluendo.com>
14266
14267         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
14268         Fix some docs.
14269
14270 2006-02-28  Edward Hervey  <edward@fluendo.com>
14271
14272         * ext/alsa/gstalsasrc.c:
14273         Set proper class on the ElementDetails:
14274         Source/Audio instead of Src/Audio/
14275
14276 2006-02-28  Edward Hervey  <edward@fluendo.com>
14277
14278         * gst/videoscale/vs_scanline.c:
14279         (vs_scanline_resample_nearest_RGBA):
14280         Revert optimization in videoscale. It should go in liboil and have
14281         an appropriate liboil function.
14282
14283 2006-02-28  Wim Taymans  <wim@fluendo.com>
14284
14285         * gst-libs/gst/audio/gstbaseaudiosink.c:
14286         (gst_base_audio_sink_provide_clock):
14287         Don't try to provide a clock in the NULL state.
14288
14289 2006-02-28  Wim Taymans  <wim@fluendo.com>
14290
14291         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
14292         (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
14293         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
14294         (gst_ogg_demux_deactivate_current_chain),
14295         (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
14296         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
14297         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
14298         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
14299         Use GstSegment infrastructure to remove duplicated code
14300         and handle more seek cases correctly.
14301
14302 2006-02-28  Wim Taymans  <wim@fluendo.com>
14303
14304         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14305         (gst_ffmpegcsp_transform):
14306         Don't ignore return code from ffmpeg convert function.
14307
14308         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
14309         Split out some long statements to ease debugging.
14310
14311 2006-02-27  Jan Schmidt  <thaytan@mad.scientist.com>
14312
14313         * ext/libvisual/visual.c: (gst_visual_init),
14314         (gst_vis_src_negotiate), (get_buffer), (plugin_init):
14315         Don't use gst_pad_use_fixed_caps, because it prevents downstream from
14316         being able to renegotiate the size. Instead, use the negotiation
14317         algorithm from the goom plugin to pick an initial output caps. 
14318
14319         Also, allow theoretical libvisual plugins that might support non-GL 
14320         output even if they also do GL.
14321
14322 2006-02-26  Julien MOUTTE  <julien@moutte.net>
14323
14324         * ext/libvisual/visual.c: (gst_visual_init),
14325         (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
14326         (plugin_init): Load only non GL plugins. Fix some memleaks and 
14327         possible negotiation issues.
14328
14329 2006-02-25  Julien MOUTTE  <julien@moutte.net>
14330
14331         * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
14332
14333 2006-02-24  Michael Smith  <msmith@fluendo.com>
14334
14335         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
14336         (cmml_type_find), (plugin_init):
14337           Fix CMML type find function to not require a specific minor version
14338           of the CMML header.
14339
14340           Add an MPEG4 video elementary stream typefind function.
14341
14342 2006-02-04  Michael Smith  <msmith@fluendo.com>
14343
14344         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
14345         (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
14346         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
14347         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
14348         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
14349         (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
14350           Annodex support in ogg demuxer. Doesn't do very much without the
14351           other annodex patches (to come).
14352
14353 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
14354
14355         Patch by: Fabrizio Gennari <fabrizio dot get at tiscali dot it>
14356
14357         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
14358           Pick up palette for MS video v1 (#327028)
14359
14360 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
14361
14362         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14363         (gst_ffmpegcsp_caps_remove_format_info),
14364         (gst_ffmpegcsp_get_unit_size):
14365           The 'palette_data' field from incoming RGB caps shouldn't be
14366           proxied on outgoing YUV caps; also, restrict unit size
14367           adjustment in case of paletted data only to the unit that
14368           actually has a palette. Fixes #330711.
14369
14370 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
14371
14372         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14373         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
14374         (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
14375         (gst_ffmpegcsp_get_unit_size):
14376           Plug some memory leaks.
14377
14378 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
14379
14380         * sys/ximage/Makefile.am:
14381         * sys/xvimage/Makefile.am:
14382           Add some _CFLAGS and _LIBS that seem to be missing
14383           and/or required for Cygwin (see #317048).
14384
14385 2006-02-22  Wim Taymans  <wim@fluendo.com>
14386
14387         * ext/alsa/gstalsasrc.c:
14388         Fix description as pointed out by caugier.
14389
14390 2006-02-22  Tommi Myöhänen  <ext-tommi do myohanen at nokia dot com>
14391
14392         Reviewed by : Edward Hervey  <edward@fluendo.com>
14393
14394         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
14395         (qt_type_find):
14396         Better 3gp typefinding (#331526).
14397
14398 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
14399
14400         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
14401           Don't send EOS event here, the base class will send one for us.
14402
14403         * gst/playback/gstplaybasebin.c: (prepare_output):
14404           Subpictures without video stream aren't allowed either.
14405         
14406         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
14407           Fix debug statement copy'n'paste-o.
14408
14409 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
14410
14411         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
14412           Fix issues with mixer keeping state when muting/unmuting
14413           and when changing the volume whilst muted (see #331763
14414           and #331765).
14415
14416 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
14417
14418         * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
14419         (parse_subrip), (gst_sub_parse_format_autodetect):
14420           Set right caps given that we send escaped text. Also,
14421           honour <i></i>, <b></b> and <u></u> markers that can be found
14422           in .srt files (fixes #310202).
14423
14424 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
14425
14426         * gst-libs/gst/audio/mixerutils.c:
14427         (element_factory_rank_compare_func):
14428           Make order in which elements are tried more determinable.
14429
14430 2006-02-20  Julien MOUTTE  <julien@moutte.net>
14431
14432         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
14433         (remove_element_chain), (cleanup_decodebin),
14434         (gst_decode_bin_change_state): Make decodebin reusable by
14435         fixing remove_element_chain first and then introduce a
14436         cleaner in state change to ->NULL. (Closes #331678)
14437
14438 2006-02-19  Wim Taymans  <wim@fluendo.com>
14439
14440         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
14441         use 0666 mask when creating files so umask gets applied
14442         correctly. Fixes #331295.
14443
14444 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
14445
14446         * gst/subparse/Makefile.am:
14447         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
14448         (gst_ssa_parse_dispose), (gst_ssa_parse_init),
14449         (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
14450         (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
14451         (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
14452         (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
14453         * gst/subparse/gstssaparse.h:
14454         * gst/subparse/gstsubparse.c: (plugin_init):
14455           Add very basic parser for SSA subtitle streams (as often
14456           found in matroska files).
14457
14458 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
14459
14460         * gst/playback/gstdecodebin.c: (mimetype_is_raw):
14461           That should be text/x-pango-markup, not text/x-pango-layout.
14462
14463 2006-02-19  Julien MOUTTE  <julien@moutte.net>
14464
14465         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
14466         Polishing.
14467
14468 2006-02-19  Julien MOUTTE  <julien@moutte.net>
14469
14470         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
14471         (gst_text_overlay_finalize), (gst_text_overlay_init),
14472         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
14473         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
14474         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
14475         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
14476         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
14477         Fix state change deadlock.
14478
14479 2006-02-19  Julien MOUTTE  <julien@moutte.net>
14480
14481         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
14482         (gst_text_overlay_finalize), (gst_text_overlay_init),
14483         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
14484         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
14485         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
14486         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
14487         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
14488         * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
14489         and subtitles files.
14490
14491 2006-02-19  Julien MOUTTE  <julien@moutte.net>
14492
14493         * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
14494         should be considered as raw.
14495
14496 2006-02-19  Julien MOUTTE  <julien@moutte.net>
14497
14498         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
14499         (cb_probe):
14500         * gst/playback/gststreaminfo.h: Introduce language informations.
14501
14502 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
14503
14504         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
14505         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
14506         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
14507         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
14508         Set shared memory segments to be deleted as soon as we have attached,
14509         that way they get cleaned up automatically if we crash.
14510
14511 2006-02-18  Julien MOUTTE  <julien@moutte.net>
14512
14513         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text): 
14514         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
14515         functions are called with lock held.
14516
14517 2006-02-18  Julien MOUTTE  <julien@moutte.net>
14518
14519         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
14520         (gst_text_overlay_finalize), (gst_text_overlay_init),
14521         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
14522         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
14523         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
14524         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
14525         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
14526         (gst_text_overlay_change_state): Refactoring of textoverlay
14527         without collectpads. This now supports sparse subtitles coming
14528         from a demuxer instead of a sub file. Seeking is still broken 
14529         though. Need to discuss with wtay some more on how to handle
14530         seeking correctly.
14531         * ext/pango/gsttextoverlay.h:
14532         * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
14533         subtitles coming from the demuxer.
14534
14535 2006-02-17  Wim Taymans  <wim@fluendo.com>
14536
14537         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
14538         (gst_vorbisenc_convert_sink):
14539         Use some more scaling functions.
14540
14541 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
14542
14543         * ext/cdparanoia/gstcdparanoiasrc.c:
14544         (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
14545         (gst_cd_paranoia_paranoia_callback),
14546         (gst_cd_paranoia_src_signal_is_being_watched),
14547         (gst_cd_paranoia_src_read_sector):
14548         * ext/cdparanoia/gstcdparanoiasrc.h:
14549           Add back 'transport-error' and 'uncorrected-error' signals and
14550           make them actually be fired when bad stuff happens (#319340).
14551
14552 2006-02-17  Wim Taymans  <wim@fluendo.com>
14553
14554         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
14555         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
14556         (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
14557         (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
14558         (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
14559         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
14560         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
14561         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
14562         (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
14563         (gst_ring_buffer_clear):
14564         Small cleanups.
14565         Added some G_LIKELY.
14566
14567 2006-02-17  Wim Taymans  <wim@fluendo.com>
14568
14569         * gst-libs/gst/audio/TODO:
14570         Update TODO
14571
14572         * gst-libs/gst/audio/gstbaseaudiosink.c:
14573         (gst_base_audio_sink_get_offset):
14574         When trying to play samples ASAP and we don't have a
14575         previous sample, try to play at position 0 instead of
14576         an invalid position.
14577
14578 2006-02-17  Wim Taymans  <wim@fluendo.com>
14579
14580         * ext/alsa/gstalsasink.c: (gst_alsasink_open),
14581         (gst_alsasink_reset):
14582         Also release lock when we get an error in _reset();
14583         fix an error message.
14584
14585 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
14586
14587         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
14588         (gst_alsasink_init), (get_channel_free_structure),
14589         (caps_add_channel_configuration), (gst_alsasink_getcaps),
14590         (gst_alsasink_close):
14591         * ext/alsa/gstalsasink.h:
14592           Add support for more than 2 channels (#326720).
14593
14594 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
14595
14596         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
14597           Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
14598           with 4 or 6 channels, assume a default channel layout to make things
14599           work (not sure there's anything else we can do in those cases).
14600
14601 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
14602
14603         * gst-libs/gst/audio/multichannel.c:
14604           Minor docs fix.
14605
14606         * gst-libs/gst/riff/Makefile.am:
14607         * gst-libs/gst/riff/riff-ids.h:
14608         * gst-libs/gst/riff/riff-media.c:
14609         (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
14610           Add support for WAVEFORMATEX, eg. PCM audio with more than two
14611           channels and a channel layout map.
14612           
14613 2006-02-16  Mathieu Garcia <b0nk at free dot fr>
14614
14615         Reviewed by Edward Hervey  <edward@fluendo.com>
14616
14617         * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA): 
14618         C-level optimization of the RGBA nearest neighbour function.
14619         Eventually this might end up in liboil with vectorized versions.
14620
14621 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
14622
14623         * gst-libs/gst/audio/multichannel.c:
14624         (gst_audio_get_channel_positions):
14625           When we have more than 2 channels, but no channel layout is
14626           specified in the caps, return some default channel layout
14627           to the caller and warn about about a possibly buggy element
14628           (could be buggy filtercaps as well of course) (#317038).
14629
14630 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
14631
14632         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
14633           Add gst-libs/gst/cdda to list of lib search paths.
14634
14635 2006-02-15  Andy Wingo  <wingo@pobox.com>
14636
14637         * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
14638         timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
14639         to the Lord Jesus that I do not have to touch the ogg muxer ever
14640         again.
14641
14642 2006-02-15  Edward Hervey  <edward@fluendo.com>
14643
14644         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
14645         quicktime movie files can also contain 'uuid' atoms.
14646
14647 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
14648
14649         * gst/audioconvert/plugin.c: (plugin_init):
14650           Register the GstAudioChannelPosition enum type with the type
14651           system in the plugin_init function, so that it is known before
14652           any element actually makes use of multi-channel stuff. This is
14653           required for example if one wants to be able to deserialise/use
14654           a caps string with channel positions before any pipeline has
14655           been setup and started, like with gst-launch.
14656
14657 2006-02-14  Wim Taymans  <wim@fluendo.com>
14658
14659         * gst-libs/gst/audio/gstringbuffer.c:
14660         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
14661         (gst_ring_buffer_samples_done), (wait_segment),
14662         (gst_ring_buffer_commit), (gst_ring_buffer_clear):
14663         Add some compiler G_(UN_)LIKELY help.
14664         SIGNAL the ringbuffer waiters when going to PAUSED as well to
14665         make sure they can exit their functions. Should fix #330748
14666
14667 2006-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
14668
14669         * Makefile.am:
14670         * configure.ac:
14671         * win32/MANIFEST:
14672         * win32/common/_stdint.h:
14673           Windows does not have long long; copy the generated _stdint.h
14674         * win32/common/interfaces-enumtypes.c:
14675         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
14676         (gst_mixer_track_flags_get_type),
14677         (gst_tuner_channel_flags_get_type):
14678         * win32/common/multichannel-enumtypes.c:
14679         (gst_audio_channel_position_get_type):
14680           update
14681
14682 2006-02-13  Wim Taymans  <wim@fluendo.com>
14683
14684         * gst-libs/gst/audio/gstbaseaudiosink.c:
14685         (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
14686         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
14687         Always sync on first sample we receive when starting.
14688
14689 2006-02-13  Wim Taymans  <wim@fluendo.com>
14690
14691         * gst/playback/gstplaybin.c: (gen_vis_element):
14692         Update vis bin docs.
14693         Move queue after tee so we don't queue video buffers but
14694         audio samples instead. Fixes problems where the video queue
14695         is filled and the audio queue empty.
14696
14697 2006-02-13  Tim-Philipp Müller  <tim at centricular dot net>
14698
14699         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
14700           No need to push an EOS event here, GstBaseSrc will do that for us
14701           when we return FLOW_UNEXPECTED.
14702           
14703 2006-02-12  Wim Taymans  <wim@fluendo.com>
14704
14705         * gst-libs/gst/audio/gstbaseaudiosink.c:
14706         (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
14707         (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
14708         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
14709         Use scale functions when possible.
14710         Fix error messages.
14711         Free clockid when after waiting for EOS.
14712         Use G_(UN_)LIKLY when it makes sense.
14713         Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
14714
14715 2006-02-12  Edward Hervey  <edward@fluendo.com>
14716
14717         * gst/playback/gstplaybasebin.c: (prepare_output): 
14718         Remove stray semi-colon (fixes #330888).
14719
14720 2006-02-12  Jan Schmidt  <thaytan@mad.scientist.com>
14721
14722         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
14723         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
14724         Fix up the XShm call testing so that we catch errors, and don't
14725         cause new ones by attempting to detach from a segment we failed
14726         to attach to. Fixes #312439.
14727
14728 2006-02-10  Edward Hervey  <edward@fluendo.com>
14729
14730         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
14731         Added flv file typefind (video/x-flv).
14732
14733 2006-02-10  Edward Hervey  <edward@fluendo.com>
14734
14735         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
14736         (gst_riff_create_video_template_caps):
14737         Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
14738         Also added the caps to the default set of riff video caps.
14739
14740 2006-02-09  Andy Wingo  <wingo@pobox.com>
14741
14742         * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
14743         time and the end time of the last packet in the page.
14744         (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
14745         on the pages in our queue, set the duration as well. Reflow a
14746         debug statement.
14747         (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
14748         Fixes bad muxing order.
14749
14750 2006-02-09  Thomas Vander Stichele  <thomas at apestaart dot org>
14751
14752         * gst-libs/gst/rtp/gstbasertppayload.c:
14753         (gst_basertppayload_setcaps), (gst_basertppayload_push):
14754           update seqnum before setting it on the packet; this makes sure
14755           that the timestamp and seqnum properties match after pushing
14756           a buffer
14757
14758 2006-02-09  Andy Wingo  <wingo@pobox.com>
14759
14760         * gst-libs/gst/audio/gstringbuffer.c
14761         (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
14762         overflow after 13.5 hours of recording. Kapow!
14763
14764         * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
14765         the buffer size -- we don't care about underrun/overrun reporting
14766         right now, just need to return a useful value.
14767
14768 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
14769
14770         * configure.ac:
14771           Back to CVS
14772
14773 === release 0.10.3 ===
14774
14775 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
14776
14777         * configure.ac:
14778           releasing 0.10.3, "Under Pressure"
14779
14780 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
14781
14782         * configure.ac:
14783         Drat. Bump libtool version number for new API.
14784         Prelease 0.10.2.3 (of 0.10.3)
14785
14786 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
14787
14788         * configure.ac:
14789         * win32/common/config.h:
14790         0.10.2.2 prerelease (of 0.10.3).
14791
14792 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
14793
14794         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
14795           Revert Andy's newsegment change pending a more correct
14796           fix.
14797
14798 2006-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
14799
14800         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
14801         (qt_type_find), (plugin_init):
14802           detect more files as 3gp
14803           group and reorder the iso file formats
14804
14805 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
14806
14807         * ext/vorbis/vorbis.c: (plugin_init):
14808           Register musicbrainz tags, so apps don't have to.
14809
14810 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
14811
14812         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
14813         (gst_tag_to_vorbis_tag):
14814           Make sure we called gst_tag_register_musicbrainz_tags()
14815           before possibly mapping a vorbiscomment string from/to a
14816           musicbrainz tag.
14817
14818 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
14819
14820         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
14821           In case we can't find the required number of consecutive
14822           mpeg audio frames to positively identify an MPEG audio
14823           stream, check if there's at least a valid mpeg audio
14824           frame right at offset 0 and if so suggest mpeg/audio
14825           caps with a very low probability (#153004).
14826
14827 2006-02-07  Andy Wingo  <wingo@pobox.com>
14828
14829         * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
14830         a TIME segment if we get timestamped buffers. Requires recent
14831         fixes in core to work properly.
14832
14833 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
14834
14835         * gst/playback/gstplaybasebin.c: (prepare_output):
14836           Don't print the URI as part of the error message, it
14837           makes error dialogs look rather ugly, especially if
14838           the URI is very long or has characters in it that
14839           need escaping.
14840
14841 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
14842
14843         * gst/playback/gstplaybasebin.c: (prepare_output):
14844           Error out if we have only text or subtitles, but nothing
14845           else. Also error out if we have subtitles but no video
14846           stream.
14847
14848 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
14849
14850         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
14851           Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
14852           Post an error message on the bus when we encounter an
14853           error, which will hopefully be more meaningful than the
14854           'Internal Flow Error' message users get to see if we
14855           just return GST_FLOW_ERROR.
14856
14857 2006-02-07  Andy Wingo  <wingo@pobox.com>
14858
14859         * configure.ac (GST_MAJORMINOR): Update core version req to
14860         0.10.2.2, for the collectpads API addition (#330244).
14861
14862 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
14863
14864         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
14865           Return FALSE from plugin_init() when GnomeVFS can't
14866           be initialised for some reason (#328423).
14867
14868 2006-02-06  Julien MOUTTE  <julien@moutte.net>
14869
14870         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event): 
14871         Stick to seeking theory until i find the bug.
14872         * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
14873
14874 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
14875
14876         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
14877         (theora_enc_finalize), (theora_enc_sink_setcaps),
14878         (theora_set_header_on_caps), (theora_enc_chain),
14879         (theora_enc_change_state):
14880         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
14881           Make theoraenc and the tests leak free. Like, really.
14882
14883 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
14884
14885         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
14886         (theora_enc_finalize), (theora_enc_sink_setcaps):
14887           Add a finalize method to ensure we clean up state even if
14888           someone omitted the state change back to NULL.
14889
14890         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
14891         (gst_vorbisenc_chain):
14892           Free some more leaked bits.
14893
14894         * tests/check/pipelines/theoraenc.c: (start_pipeline),
14895         (stop_pipeline):
14896           Wait for state changes to happen if they're ASYNC.
14897
14898           This ought to teach those fancy pants buildbots a lesson.
14899
14900 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
14901
14902         * gst-libs/gst/tag/gstid3tag.c:
14903           Add mapping for ID3 International Standard Recording Code
14904           tag "TSRC"
14905
14906 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
14907
14908         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
14909           Don't leak tag names.
14910
14911 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
14912
14913         * docs/libs/gst-plugins-base-libs-docs.sgml:
14914         * docs/libs/gst-plugins-base-libs-sections.txt:
14915         * gst-libs/gst/tag/gstid3tag.c:
14916         * gst-libs/gst/tag/gstvorbistag.c:
14917         * gst-libs/gst/tag/tags.c:
14918           Split libgsttag docs into multiple sections.
14919
14920 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
14921
14922         * docs/libs/Makefile.am:
14923         * docs/libs/gst-plugins-base-libs-docs.sgml:
14924         * docs/libs/gst-plugins-base-libs-sections.txt:
14925         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
14926         * gst-libs/gst/tag/gstvorbistag.c:
14927         * gst-libs/gst/tag/tag.h:
14928         * gst-libs/gst/tag/tags.c:
14929           Add libgsttag to the docs.
14930
14931 2006-02-05  Julien MOUTTE  <julien@moutte.net>
14932
14933         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
14934         (gst_text_overlay_init), (gst_text_overlay_src_event),
14935         (gst_text_overlay_collected): Fix clockoverlay.
14936
14937 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
14938
14939         * docs/libs/compiling.sgml:
14940           Fix typo: it's pkg-config, not pkg-gconfig
14941
14942         * docs/libs/gst-plugins-base-libs-docs.sgml:
14943         * docs/libs/gst-plugins-base-libs-sections.txt:
14944         * docs/libs/tmpl/gstgconf.sgml:
14945           There is no libgstgconf in 0.10, remove it
14946           from the docs.
14947
14948 2006-02-05  Julien MOUTTE  <julien@moutte.net>
14949
14950         * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
14951         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
14952         (gst_text_overlay_src_event), (gst_text_overlay_collected):
14953         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
14954         (gst_sub_parse_class_init), (gst_sub_parse_init),
14955         (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
14956         (parse_mpsub), (parser_state_init), (handle_buffer),
14957         (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
14958         * gst/subparse/gstsubparse.h: Introduce seeking code.
14959
14960 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
14961
14962         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
14963           Add comment about LANGUAGE tag inconsistency (we want
14964           ISO-639-1, but extract three-letter identifiers?)
14965
14966         * po/POTFILES.in:
14967           Add two translatable files.
14968
14969 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
14970
14971         * gst-libs/gst/tag/Makefile.am:
14972         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
14973         * gst-libs/gst/tag/tag.h:
14974         * gst-libs/gst/tag/tags.c:
14975         (gst_tag_register_musicbrainz_tags_internal),
14976         (gst_tag_register_musicbrainz_tags):
14977           Forward-port some tags stuff from the 0.8 branch. This is
14978           mostly the addition of musicbrainz tags and their mapping
14979           to vorbistags, and a vorbistag mapping of the language tag.
14980
14981 2006-02-05  Julien MOUTTE  <julien@moutte.net>
14982
14983         * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
14984         refactoring.
14985
14986 2006-02-04  David Schleef  <ds@schleef.org>
14987
14988         * ext/ogg/gstoggmux.c:
14989         * gst/typefind/gsttypefindfunctions.c:
14990           Add Dirac typefinding and add dirac format to oggmux.
14991
14992 2006-02-03  Tim-Philipp Müller  <tim at centricular dot net>
14993
14994         * gst/playback/gstdecodebin.c: (try_to_link_1):
14995           Don't put essential function call into
14996           g_return_*() macro, otherwise it'll all be
14997           replaced by NOOPs when compiling with
14998           G_DISABLE_CHECKS defined.
14999
15000 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
15001
15002         * ext/ogg/gstoggdemux.c:
15003         * ext/ogg/gstoggparse.c:
15004         * gst/tcp/gsttcpserversink.c:
15005         * sys/v4l/v4lsrc_calls.c:
15006         * sys/v4l/v4lsrc_calls.h:
15007         Just make it compile with --disable-gst-debug.
15008
15009 2006-02-03  Wim Taymans  <wim@fluendo.com>
15010
15011         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
15012         (gst_alsasink_class_init), (gst_alsasink_init),
15013         (gst_alsasink_write), (gst_alsasink_reset):
15014         * ext/alsa/gstalsasink.h:
15015         Add lock to protect alsa calls.
15016         Implement reset to flush samples ASAP, does not work
15017         with dmix though.
15018
15019 2006-02-02  Wim Taymans  <wim@fluendo.com>
15020
15021         * gst-libs/gst/audio/gstbaseaudiosink.c:
15022         (gst_base_audio_sink_provide_clock):
15023         Ugh.. getting late I guess...
15024
15025 2006-02-02  Wim Taymans  <wim@fluendo.com>
15026
15027         * gst-libs/gst/audio/gstbaseaudiosink.c:
15028         (gst_base_audio_sink_provide_clock),
15029         (gst_base_audio_sink_set_property),
15030         (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
15031         Don't try to provide a clock when we are not negotiated since
15032         we might not be able to make it run.
15033
15034 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
15035
15036         * gst/playback/gstdecodebin.c: (try_to_link_1):
15037           Unlinking two source pads is ... hard.
15038
15039 2006-02-02  Wim Taymans  <wim@fluendo.com>
15040
15041         * gst-libs/gst/audio/TODO:
15042         Updated.
15043
15044         * gst-libs/gst/audio/gstbaseaudiosink.c:
15045         (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
15046         On EOS, wait till the last sample is played before posting EOS.
15047
15048 2006-02-01  Philippe Kalaf <burger at speedy dot org>
15049
15050         Patch by: Kai Vehmanen
15051         * gst-libs/gst/rtp/gstbasertpdepayload.c:
15052           Adds ability to enable newsegment bypass by setting queue_delay to
15053           zero. Also avoid thread being started if queue_delay is zero.
15054
15055 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
15056
15057         * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
15058           Make test work again by connecting fakesinks to each decoded pad,
15059           which makes the pipeline wait until each fakesink has a buffer
15060           queued before going to PAUSED state. At that point we know the
15061           decodebin pads are negotiated.
15062
15063 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
15064
15065         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
15066         (gst_cdda_base_src_handle_event):
15067         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
15068           Pass unhandled queries to the parent class's query function.
15069
15070 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
15071
15072         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
15073         (gst_ogg_pad_src_query):
15074         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
15075         * ext/theora/theoradec.c: (theora_dec_src_query),
15076         (theora_dec_sink_query):
15077         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
15078         (vorbis_dec_sink_query):
15079         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
15080         (gst_vorbisenc_sink_query):
15081         * gst/adder/gstadder.c: (gst_adder_query):
15082           Pass unhandled queries upstream instead of just
15083           dropping them (#326447). Also, fix supported
15084           query types list for some elements.
15085
15086 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
15087
15088         * gst/typefind/gsttypefindfunctions.c: (au_type_find),
15089         (paris_type_find), (ilbc_type_find), (plugin_init):
15090           Fix typefinding for audio/x-au, audio/x-paris and
15091           audio/iLBC-sh. We cannot use the START_WITH macros
15092           here, because there can only be one typefind factory
15093           with the same name (caps), so the second one would
15094           replace the first one and the first one would never
15095           be called when doing typefinding (see #161712).
15096           
15097
15098 2006-01-31  Wim Taymans  <wim@fluendo.com>
15099
15100         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
15101         (vorbis_handle_header_packet), (vorbis_dec_push),
15102         (vorbis_handle_data_packet):
15103         Use scale_int when we can, add some more scaling.
15104         Check packettype before parsing it.
15105
15106 2006-01-31  Wim Taymans  <wim@fluendo.com>
15107
15108         * ext/theora/theoradec.c: (_theora_granule_time),
15109         (theora_dec_src_convert), (theora_dec_sink_convert):
15110         Call right _scale functions.
15111         Use parameter instead of some other random value.
15112
15113 2006-01-31  Wim Taymans  <wim@fluendo.com>
15114
15115         * ext/theora/theoradec.c: (_theora_granule_frame),
15116         (_theora_granule_time), (_inc_granulepos),
15117         (theora_dec_src_convert), (theora_dec_sink_convert),
15118         (theora_handle_type_packet), (theora_handle_data_packet),
15119         (theora_dec_chain):
15120         Use higher precision timestamps calculation.
15121         Convert some other conversions to _scale.
15122
15123 2006-01-31  Stefan Kost  <ensonic@users.sf.net>
15124
15125         * gst/audiotestsrc/gstaudiotestsrc.c:
15126         (gst_audio_test_src_create_sine_table), (plugin_init):
15127         * gst/volume/gstvolume.c: (plugin_init):
15128           initialize gst_controller before using
15129
15130 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
15131
15132         * tests/check/pipelines/theoraenc.c:
15133         * tests/check/pipelines/vorbisenc.c:
15134         Define constant using G_GINT64_CONSTANT to avoid errors when
15135         passing it around - otherwise it gets truncated to 32 bits.
15136
15137         Fixes failing tests.
15138
15139 2006-01-31  Andy Wingo  <wingo@pobox.com>
15140
15141         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
15142         caps being set doesn't have a framerate value. Basically a stopgap
15143         measure.
15144
15145         * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
15146         technically correct enough to put into core though.
15147         (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
15148         DURATION. Fixes theoraenc ! oggmux.
15149
15150         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
15151         fraction, not double.
15152
15153 2006-01-31  Sebastien Moutte  <sebastien@moutte.net>
15154
15155         * win32/vs7:
15156         add vs7 project files created by Sergey Scobich
15157
15158 2006-01-30  Sebastien Moutte  <sebastien@moutte.net>
15159
15160         * win32/vs8:
15161         add vs8 project files created by Sergey Scobich
15162         
15163 2006-01-30  Andy Wingo  <wingo@pobox.com>
15164
15165         * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
15166         timestamp + duration, not just timestamp -- ogg pages should be
15167         ordered by stop time. Necessary fix given the change in vorbis
15168         timestamps.
15169
15170         * ext/theora/theoraenc.c (theora_enc_sink_setcaps) 
15171         (gst_theora_enc_init): Pull the granule shift out of the encoder.
15172         (granulepos_add): New function, handles the messiness of adjusting
15173         granulepos values.
15174         (theora_buffer_from_packet):
15175         (theora_enc_chain):
15176         (theora_enc_sink_event): Use granulepos_add, not +.
15177
15178         * tests/check/pipelines/theoraenc.c
15179         (check_buffer_granulepos_from_starttime): Just check the frame
15180         count, not the actual granulepos -- we can't dictate to the
15181         encoder when it should be placing keyframes.
15182
15183 2006-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
15184
15185         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
15186           SERVICE_NOT_AVAILABLE happens for example when you're trying to
15187           play an http:// stream from a server that's not serving
15188
15189 2006-01-30  Andy Wingo  <wingo@pobox.com>
15190
15191         * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET): 
15192         * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
15193         remove the UINT64_CONSTANT macro, doesn't appear to be needed or
15194         available.
15195
15196         * ext/theora/gsttheoraenc.h:
15197         * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
15198         although theoraenc was timestamping correctly. Added handling of
15199         streams that start with nonzero timestamps.
15200
15201         * tests/check/Makefile.am:
15202         * tests/check/pipelines/theoraenc.c: New file, basically does same
15203         tests as vorbisenc.
15204
15205         * tests/check/pipelines/vorbisenc.c: I claim these bugs.
15206
15207 2006-01-30  Wim Taymans  <wim@fluendo.com>
15208
15209         * gst-libs/gst/audio/gstaudiosink.c:
15210         (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
15211         (gst_audioringbuffer_pause):
15212         Implement pause that does not wait for completion.
15213
15214         * gst-libs/gst/audio/gstbaseaudiosink.c:
15215         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
15216         Don't drop buffers when going to PAUSED but perform preroll on
15217         remaining samples now that core base class supports this.
15218
15219         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
15220         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
15221         (gst_ring_buffer_commit):
15222         Pause should not signal waiters.
15223         Implement return value of _commit correctly.
15224
15225 2006-01-30  Andy Wingo  <wingo@pobox.com>
15226
15227         * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
15228
15229         * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
15230         updated to timestamp from the first sample, not the last.
15231         (gst_vorbisenc_buffer_from_header_packet): New function, takes
15232         special care of granulepos and timestamp for header packets.
15233         (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
15234         when the first buffer has a nonzero timestamp.
15235
15236         * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
15237         (GstVorbisEnc.subgranule_offset): New members. Take care of the
15238         case when the first audio buffer we get has a nonzero timestamp.
15239         (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
15240         properly timestamp vorbis buffers with the time of the first
15241         sample, not the last.
15242         
15243         * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
15244         vorbis_granule_time_copy -- now it takes the granule/subgranule
15245         offset into account.
15246
15247         * tests/check/pipelines/vorbisenc.c: New test for correctness of
15248         timestamps, durations, and granulepos on buffers produced by
15249         vorbisenc.
15250
15251 2006-01-30  Jan Schmidt  <thaytan@mad.scientist.com>
15252
15253         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
15254         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
15255           Patch from Eric Jonas to support conversions to/from UYVY 
15256           (Fixes: #324626)
15257
15258 2006-01-30  Julien MOUTTE  <julien@moutte.net>
15259
15260         * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
15261         (setup_subtitle), (setup_source), (set_active_source):
15262         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
15263         (gen_text_element), (gen_audio_element), (gen_vis_element),
15264         (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
15265
15266 2006-01-29  Sebastien Moutte  <sebastien@moutte.net>
15267
15268         * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
15269         * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
15270                 use gst_guint64_to_gdouble to be compliant with vs6
15271         * gst/playback/gstdecodebin.c: (try_to_link_1)
15272         * gst/videorate/videorate.c: (gst_video_rate_blank_data)
15273                 use G_GINT64_CONSTANT for int64 constants
15274         * win32/common/libgstinterfaces.def:
15275                 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
15276         * win32/vs6:
15277                 update and add new project files
15278                 
15279 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
15280
15281         * Makefile.am:
15282         * win32/MANIFEST:
15283         * win32/common/interfaces-enumtypes.c:
15284         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
15285         (gst_mixer_track_flags_get_type),
15286         (gst_tuner_channel_flags_get_type):
15287         * win32/common/interfaces-enumtypes.h:
15288         * win32/common/multichannel-enumtypes.c:
15289         (gst_audio_channel_position_get_type):
15290         * win32/common/multichannel-enumtypes.h:
15291           add a win32-update rule like in core, and copy over enumtypes files
15292
15293 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
15294
15295         * win32/MANIFEST:
15296         * win32/common/config.h:
15297         * win32/common/config.h.in:
15298           add config files just like in core
15299
15300 2006-01-28  Tim-Philipp Müller  <tim at centricular dot net>
15301
15302         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
15303           Make gcc-4.1 happy (part of #327357).
15304
15305 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
15306
15307         * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
15308         (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
15309         (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
15310         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
15311         (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
15312         (gst_alsasrc_unprepare), (gst_alsasrc_read):
15313           Update all error messages.  All of them should either use
15314           the default translated message, or actually provide a
15315           translatable string.
15316           Make the string for channel count problems meaningful.
15317
15318 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
15319
15320         * sys/v4l/v4l_calls.c: (gst_v4l_open):
15321           check for and throw RESOURCE_BUSY
15322
15323 2006-01-27  David Schleef  <ds@schleef.org>
15324
15325         * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
15326           checked in this change -- it requires liboil features not
15327           in 0.3.6.  Revert parts.
15328
15329 2006-01-27  David Schleef  <ds@schleef.org>
15330
15331         * REQUIREMENTS:
15332         * configure.ac: update liboil requirement to 0.3.6
15333         * gst/videoscale/Makefile.am:
15334         * gst/videoscale/vs_scanline.c: liboilify
15335
15336 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
15337
15338         * ext/libvisual/visual.c: (get_buffer):
15339           When pad_alloc returns a GstFlowReturn other
15340           than GST_FLOW_OK, make sure it is passed upstream.
15341
15342 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
15343
15344         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
15345         (gst_alsasink_class_init):
15346           Free the device name string.
15347
15348         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
15349         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
15350         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
15351           Don't remove a pad from the collectpads structure until it
15352           is released - it's a request pad, and may receive data again
15353           if the element gets moved back to PLAYING state.
15354
15355         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
15356           Ensure we turn on double buffering on the Xv port, and
15357           set the colour key to something dark and mysterious that
15358           isn't black.
15359
15360 2006-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
15361
15362         * ext/alsa/gstalsaplugin.c: (plugin_init):
15363         * ext/cdparanoia/gstcdparanoiasrc.c:
15364         (gst_cd_paranoia_src_base_init), (plugin_init):
15365         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
15366         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
15367           - a library should not call setlocale. see "Libraries" node in
15368             gettext manual
15369           - make sure all plugins that use translation do bindtextdomain
15370             to point to the localedir
15371         * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
15372         (setup_sinks), (plugin_init):
15373           all this, and check for NULL when creating sinks
15374
15375 2006-01-27  Julien MOUTTE  <julien@moutte.net>
15376
15377         * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
15378         (plugin_init): Make typefinding of subtitles work again.
15379
15380 2006-01-26  Tim-Philipp Müller  <tim at centricular dot net>
15381
15382         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
15383         (mp3_type_frame_length_from_header), (mp3_type_find),
15384         (wavpack_type_find), (m4a_type_find), (ircam_type_find),
15385         (plugin_init):
15386           Backport a bunch of typefinding fixes from the 0.8 branch.
15387           Also, improve wavpack typefinding: if we can't peek the
15388           entire wavpack block, try to parse the bits we can get and
15389           see if we find what we're looking for in those.
15390
15391 2006-01-26  Julien MOUTTE  <julien@moutte.net>
15392
15393         * sys/ximage/ximagesink.c:
15394         (gst_ximagesink_calculate_pixel_aspect_ratio):
15395         * sys/xvimage/xvimagesink.c:
15396         (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
15397         more cases of pixel aspect ratio.
15398
15399 2006-01-26  Edward Hervey  <edward@fluendo.com>
15400
15401         * gst/playback/gstdecodebin.c: (pad_probe):
15402         Also consider the flush-start and tag events as unblockers
15403         for the pad probes.
15404
15405 2006-01-26  Julien MOUTTE  <julien@moutte.net>
15406
15407         * gst/playback/gstplaybin.c: (gst_play_bin_init),
15408         (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
15409         (gst_play_bin_vis_blocked), (gst_play_bin_set_property): 
15410         On the fly visualisation switch, works disabling, enabling as
15411         well but it won't be able to enable vis in a playbin that was
15412         created with no visualisation.
15413
15414 2006-01-25  Wim Taymans  <wim@fluendo.com>
15415
15416         * gst-libs/gst/audio/gstbaseaudiosink.c:
15417         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
15418         Undo previous commit that returned WRONG_STATE sooner, it breaks 
15419         resume after pause.
15420
15421 2006-01-25  Wim Taymans  <wim@fluendo.com>
15422
15423         * gst-libs/gst/audio/gstbaseaudiosink.c:
15424         (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
15425         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
15426         Improve debugging.
15427         Post error when caps cannot be parsed.
15428         Resync on discontinuity in the stream.
15429         Clip samples to segment boundaries.
15430         return WRONG_STATE sooner when we are flushing.
15431
15432         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
15433         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
15434         Make audiosrc operate in TIME.
15435         Set TIMESTAMP and DURATION on buffers.
15436
15437 2006-01-24  Tim-Philipp Müller  <tim at centricular dot net>
15438
15439         * tests/examples/seek/seek.c: (main):
15440           Output tag messages as well.
15441
15442 2006-01-23  Edward Hervey  <edward@fluendo.com>
15443
15444         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
15445         (free_pad_probes), (remove_fakesink), (pad_probe),
15446         (close_pad_link), (gst_decode_bin_change_state):
15447         Replace GstPadBlockCallback with pad probes that detect
15448         first buffer AND eos before removing fakesink.
15449         Fixes hang with demuxers doing EOS while pre-rolling.
15450         Solves #328279
15451
15452 2006-01-23  Andy Wingo  <wingo@pobox.com>
15453
15454         * ext/alsa/gstalsasink.c:
15455         * gst-libs/gst/rtp/gstbasertpdepayload.c:
15456         (gst_base_rtp_depayload_setcaps),
15457         (gst_base_rtp_depayload_add_to_queue),
15458         (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
15459         
15460         Patch by: Jens Granseuer <jensgr at gmx dot net>
15461
15462 2006-01-22  Julien MOUTTE  <julien@moutte.net>
15463
15464         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
15465         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
15466         (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some 
15467         frames. We might get a frame destroyed after changing state to
15468         NULL, adding a safety check on xcontext.
15469
15470 2006-01-22  Tim-Philipp Müller  <tim at centricular dot net>
15471
15472         * gst-libs/gst/interfaces/xoverlay.c:
15473           Fix prepare-xwindow-id code example in the docs - we need to
15474           ignore all messages that aren't element messages as well.
15475           
15476 2006-01-21  Julien MOUTTE  <julien@moutte.net>
15477
15478         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
15479           I think one day i'll completely undestand how caps negotiation
15480           is supposed to work. This refactoring handles buffer_alloc
15481           called with caps we can't handle. We definitely don't want a
15482           set_caps with those caps, so we define and allocate a buffer
15483           we would like to receive.
15484
15485 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
15486
15487         * gst/playback/gstplaybasebin.c: (setup_source):
15488           Free iterator when done.
15489
15490 2006-01-17  Jan Schmidt  <thaytan@mad.scientist.com>
15491
15492         * gst-libs/gst/audio/gstbaseaudiosink.c:
15493         (gst_base_audio_sink_render):
15494           Fix playback of non-synchronised streams by assuming a rate
15495           of 1.0 instead of a random one.
15496
15497           Makes this work again:
15498
15499           gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
15500           endianness=(int)4321, signed=(boolean)true, width=(int)16,
15501           depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
15502           audioresample ! alsasink
15503
15504 === release 0.10.2 ===
15505
15506 2006-01-16  Thomas Vander Stichele <thomas at apestaart dot org>
15507
15508         * configure.ac:
15509           releasing 0.10.2, "Then the devil is six"
15510
15511 2006-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
15512
15513         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
15514         * gst/playback/gststreamselector.c:
15515         (gst_stream_selector_set_property):
15516           Comment out broken code that connects to the state-changed signal.
15517           At this point, changing current stream selection is broken, but 
15518           stuff like gst-launch playbin current-audio=1 works and filters
15519           to the chosen stream.
15520
15521 2006-01-16  Thomas Vander Stichele  <thomas at apestaart dot org>
15522
15523         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
15524           Fix #327216 (null dereference in vorbisdec)
15525
15526 2006-01-16  Tim-Philipp Müller  <tim at centricular dot net>
15527
15528         * ext/theora/theoradec.c: (theora_handle_comment_packet):
15529           Post taglist actually on bus instead of just freeing it
15530           (fixes #327114 and totem bug #327080).
15531
15532         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
15533           Use gst_element_found_tags_for_pad(), so that the tags
15534           are sent downstream as an event as well.
15535
15536 2006-01-15  Thomas Vander Stichele  <thomas at apestaart dot org>
15537
15538         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
15539         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
15540         (gst_ximagesink_buffer_alloc):
15541         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
15542         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
15543         (gst_xvimagesink_buffer_alloc):
15544           move all regularly occurring messages to GST_LOG level
15545           add some more object logs
15546
15547 2006-01-14  Thomas Vander Stichele  <thomas at apestaart dot org>
15548
15549         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
15550           fix a silly segfault
15551
15552 2006-01-14  Tim-Philipp Müller  <tim at centricular dot net>
15553
15554         * docs/libs/gst-plugins-base-libs-docs.sgml:
15555         * docs/libs/gst-plugins-base-libs-sections.txt:
15556         * gst-libs/gst/audio/mixerutils.c:
15557         * gst-libs/gst/audio/mixerutils.h:
15558           Add docs for mixerutils stuff.
15559
15560 2006-01-13  Tim-Philipp Müller  <tim at centricular dot net>
15561
15562         * gst/playback/gstplaybasebin.c: (setup_source):
15563           Fix playback for sources that emit raw audio or
15564           raw video streams (e.g.: cd audio sources) (#325984).
15565
15566 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
15567
15568         * gst-libs/gst/audio/mixerutils.c:
15569         (gst_audio_mixer_filter_do_filter):
15570           actually save the element we create
15571
15572 2006-01-12  Tim-Philipp Müller  <tim at centricular dot net>
15573
15574         * gst-libs/gst/cdda/gstcddabasesrc.c:
15575         (gst_cdda_base_src_handle_track_seek):
15576           No need to post a tag message on the bus when seeking
15577           within the same track, only post it when the current
15578           track changes.
15579
15580 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
15581
15582         * gst/playback/gstplaybasebin.c: (group_destroy),
15583         (probe_triggered), (new_decoded_pad), (mute_group_type),
15584         (set_active_source):
15585         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
15586         * gst/playback/gststreamselector.c:
15587         (gst_stream_selector_base_init),
15588         (gst_stream_selector_set_property),
15589         (gst_stream_selector_request_new_pad):
15590           Reenable stream selection. These mechanisms need a complete overhaul
15591           in the face of 0.8->0.10 changes though.
15592
15593 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
15594
15595         * ext/ogg/gstoggdemux.c:
15596           Change the pad template to src_%d to match the pads that 
15597           are created from it. decodebin needs this information in order
15598           to decide that oggdemux is capable of producing multiple pads
15599           (and hence needs queues inserted).
15600
15601         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
15602         (gst_ogg_mux_collected):
15603           Make debug output more useful by using GST_PTR_FORMAT.
15604
15605 2006-01-11  Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
15606
15607         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
15608
15609         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
15610           Set depth and width for alaw/mulaw (fixes #326601).
15611
15612 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15613
15614         * tests/icles/Makefile.am:
15615           don't build the tests if we don't have the libs
15616
15617 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
15618
15619         * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
15620         (gst_cd_paranoia_paranoia_callback):
15621           Don't try to free NULL pointers.
15622
15623 2006-01-10  Edward Hervey  <edward@fluendo.com>
15624
15625         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
15626         (gst_audio_rate_change_state), (plugin_init):
15627         Add debugging category.
15628         Fix type issues.
15629         Add case for incoming buffers without valid offset/offset_end.
15630
15631 2006-01-10  Michael Smith  <msmith@fluendo.com>
15632
15633         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
15634           Don't leak GCond in audio sources.
15635
15636 2006-01-10  Jan Schmidt  <thaytan@mad.scientist.com>
15637
15638         * gst/playback/gstplaybin.c: (gen_audio_element):
15639           Don't leak an autoaudiosink/alsasink when we generate
15640           a new audio element. (old code, I guess)
15641
15642 2006-01-10  Michael Smith  <msmith@fluendo.com>
15643
15644         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
15645           Support float audio in audiorate.
15646           Use width rather than depth for selecting sample width.
15647
15648 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
15649
15650         * gst/videotestsrc/videotestsrc.h:
15651           Use GLib types here (that way we don't have to include the
15652           generated _stdint.h header, which makes life easier for win32
15653           folks that don't use autotools for the build) (#325990, patch
15654           by: Sergey Scobich).
15655
15656 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
15657
15658         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
15659         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
15660         (gst_ring_buffer_pause), (wait_segment):
15661         * gst-libs/gst/audio/gstringbuffer.h:
15662           Name (private) union, makes Forte compiler happy (this time
15663           for real) (#324900).
15664
15665 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
15666
15667         * gst-libs/gst/audio/Makefile.am:
15668           Link against libgstinterfaces, needed for mixer
15669           and property probe stuff.
15670
15671 2006-01-09  Edward Hervey  <edward@fluendo.com>
15672
15673         * gst-libs/gst/Makefile.am:
15674
15675 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
15676
15677         * gst-libs/gst/audio/Makefile.am:
15678         * gst-libs/gst/audio/mixerutils.c:
15679         (gst_audio_mixer_filter_do_filter),
15680         (gst_audio_mixer_filter_check_element),
15681         (gst_audio_mixer_filter_probe_feature),
15682         (element_factory_rank_compare_func),
15683         (gst_audio_default_registry_mixer_filter):
15684         * gst-libs/gst/audio/mixerutils.h:
15685           Add gst_audio_default_registry_mixer_filter() utility
15686           function.
15687
15688 2006-01-03  Michael Smith  <msmith@fluendo.com>
15689
15690         * gst/audioresample/resample.h:
15691           As before, but for o_buf
15692
15693 2006-01-03  Michael Smith  <msmith@fluendo.com>
15694
15695         * gst/audioresample/resample.h:
15696           Declare struct _ResampleState.buffer as unsigned char *, not void *,
15697           since we do arithmetic on it.
15698
15699 2006-01-02  Tim-Philipp Müller  <tim at centricular dot net>
15700
15701         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
15702         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
15703         (gst_ring_buffer_pause), (wait_segment):
15704         * gst-libs/gst/audio/gstringbuffer.h:
15705           Sun's Forte compiler doesn't seem to like anonymous structs,
15706           so use same setup as in GstBaseSrc (fixes #324900).
15707
15708 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
15709
15710         * configure.ac:
15711         * gst/volume/Makefile.am:
15712         * gst/volume/demo.c:
15713           move old example to tests/examples/volume/volune.c
15714         * tests/examples/Makefile.am:
15715         * tests/examples/seek/seek.c: (main):
15716           change window-close event from "delete-event" to "destroy"
15717         * tests/examples/volume/Makefile.am:
15718         * tests/examples/volume/volume.c: (value_changed_callback),
15719         (setup_gui), (message_received), (eos_message_received), (main):
15720           fix event handling and bus usage
15721
15722 2005-12-29  Stefan Kost  <ensonic@users.sf.net>
15723
15724         * gst/audiotestsrc/gstaudiotestsrc.c:
15725         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
15726         (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
15727         (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
15728         (gst_audio_test_src_create_square),
15729         (gst_audio_test_src_create_saw),
15730         (gst_audio_test_src_create_triangle),
15731         (gst_audio_test_src_create_silence),
15732         (gst_audio_test_src_create_white_noise),
15733         (gst_audio_test_src_create_pink_noise),
15734         (gst_audio_test_src_init_sine_table),
15735         (gst_audio_test_src_create_sine_table),
15736         (gst_audio_test_src_change_wave),
15737         (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
15738         (gst_audio_test_src_create), (gst_audio_test_src_set_property):
15739         * gst/audiotestsrc/gstaudiotestsrc.h:
15740           update to basesrc changes, implement segmented seeking and eos
15741           handling, add a 'sine-tab' waveform for performance critical playback
15742
15743 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
15744
15745         * po/POTFILES.in:
15746           ... and this time the other modified file that I missed last time.
15747
15748 2005-12-29  Michael Smith  <msmith@fluendo.com>
15749
15750         * gst/playback/gstdecodebin.c: (new_pad):
15751           Fix non-C89 variable declaration not at the start of a block. Should
15752           help some compilers.
15753
15754 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
15755
15756         * tests/check/Makefile.am:
15757           And now fix 'make distcheck' (builddir != srcdir)
15758
15759 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
15760
15761         * configure.ac:
15762         * ext/cdparanoia/Makefile.am:
15763         * ext/cdparanoia/gstcdparanoia.c:
15764         * ext/cdparanoia/gstcdparanoia.h:
15765         * ext/cdparanoia/gstcdparanoiasrc.c:
15766         (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
15767         (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
15768         (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
15769         (gst_cd_paranoia_paranoia_callback),
15770         (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
15771         (gst_cd_paranoia_src_set_property),
15772         (gst_cd_paranoia_src_get_property), (plugin_init):
15773         * ext/cdparanoia/gstcdparanoiasrc.h:
15774           New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
15775           plugin again (there are still fixes required to playbin to make
15776           cdda:// uris work there).
15777
15778 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
15779
15780         * tests/check/Makefile.am:
15781           Fix test case compilation.
15782
15783 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
15784
15785         * gst-libs/gst/cdda/gstcddabasesrc.c:
15786         (gst_cdda_base_src_update_duration),
15787         (gst_cdda_base_src_calculate_cddb_id):
15788           An integer is not a string. Fix access to uninitialised variable.
15789
15790         * tests/check/Makefile.am:
15791           Add cddabasesrc unit test; also actually enable the vorbis test.
15792
15793         * tests/check/generic/states.c:
15794           Blacklist new cd audio elements as well.
15795
15796         * tests/check/libs/cddabasesrc.c:
15797           Unit test for GstCddaBaseSrc (discid calculation mostly).
15798
15799 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
15800
15801         * docs/libs/Makefile.am:
15802         * docs/libs/gst-plugins-base-libs-docs.sgml:
15803         * docs/libs/gst-plugins-base-libs-sections.txt:
15804         * docs/libs/gst-plugins-base-libs.types:
15805           Add docs for libgstcdda/GstCddaBaseSrc.
15806
15807         * gst-libs/gst/interfaces/mixertrack.h:
15808           Do one struct member per line with a semicolon at the end, that way
15809           even gtk-doc might parse it without complaining.
15810
15811 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
15812
15813         * configure.ac:
15814         * gst-libs/gst/Makefile.am:
15815         * gst-libs/gst/cdda/Makefile.am:
15816         * gst-libs/gst/cdda/base64.c:
15817         * gst-libs/gst/cdda/base64.h:
15818         * gst-libs/gst/cdda/gstcddabasesrc.c:
15819         (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
15820         (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
15821         (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
15822         (gst_cdda_base_src_get_property),
15823         (gst_cdda_base_src_get_track_from_sector),
15824         (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
15825         (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
15826         (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
15827         (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
15828         (gst_cdda_base_src_uri_get_protocols),
15829         (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
15830         (gst_cdda_base_src_uri_handler_init),
15831         (gst_cdda_base_src_setup_interfaces),
15832         (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
15833         (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
15834         (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
15835         (gst_cdda_base_src_add_tags),
15836         (gst_cdda_base_src_add_index_associations),
15837         (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
15838         (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
15839         (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
15840         (gst_cdda_base_src_create):
15841         * gst-libs/gst/cdda/gstcddabasesrc.h:
15842         * gst-libs/gst/cdda/sha1.c:
15843         * gst-libs/gst/cdda/sha1.h:
15844           Add new libgstcdda with GstCddaBaseSrc class.
15845
15846 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
15847
15848         * ext/gnomevfs/gstgnomevfssink.h:
15849           Use GstBaseSinkClass as parent_class member for class struct, not
15850           GstBaseSink.
15851
15852 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
15853
15854         Patch by: Michael Benes
15855
15856         * gst/videotestsrc/gstvideotestsrc.c:
15857         (gst_video_test_src_class_init), (gst_video_test_src_start):
15858           Add start method to reset running time and number of frames sent
15859           when starting up (fixes #324696)
15860
15861 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
15862
15863         * docs/plugins/Makefile.am:
15864         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
15865         * docs/plugins/gst-plugins-base-plugins-sections.txt:
15866         * docs/plugins/gst-plugins-base-plugins.args:
15867         * docs/plugins/gst-plugins-base-plugins.hierarchy:
15868         * docs/plugins/gst-plugins-base-plugins.signals:
15869           Add docs stuff for gnomevfssrc and gnomevfssink.
15870
15871         * ext/gnomevfs/gstgnomevfssrc.c:
15872           Fix example pipeline in gtk-doc blurb.
15873
15874 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
15875
15876         * ext/gnomevfs/Makefile.am:
15877         * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
15878         (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
15879         (gst_gnome_vfs_handle_get_type), (plugin_init):
15880         * ext/gnomevfs/gstgnomevfs.h:
15881         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
15882         (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
15883         (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
15884         (gst_gnome_vfs_sink_set_property),
15885         (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
15886         (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
15887         (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
15888         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
15889         (gst_gnome_vfs_sink_uri_get_type),
15890         (gst_gnome_vfs_sink_uri_get_protocols),
15891         (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
15892         (gst_gnome_vfs_sink_uri_handler_init):
15893         * ext/gnomevfs/gstgnomevfssink.h:
15894           Port gnomevfssink; add gtk-doc blurb.
15895
15896         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
15897         (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
15898         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
15899         (gst_gnome_vfs_src_uri_get_type),
15900         (gst_gnome_vfs_src_uri_get_protocols),
15901         (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
15902         (gst_gnome_vfs_src_uri_handler_init),
15903         (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
15904         (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
15905         (gst_gnome_vfs_src_send_additional_headers_callback),
15906         (gst_gnome_vfs_src_received_headers_callback),
15907         (gst_gnome_vfs_src_push_callbacks),
15908         (gst_gnome_vfs_src_pop_callbacks),
15909         (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
15910         (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
15911         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
15912         * ext/gnomevfs/gstgnomevfssrc.h:
15913           s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
15914           file; add gtk-doc blurb with example pipelines.
15915
15916 === release 0.10.1 ===
15917
15918 2005-12-23  Thomas Vander Stichele <thomas at apestaart dot org>
15919
15920         * configure.ac:
15921           releasing 0.10.1, "Dobro Dedek"
15922
15923 2005-12-21  Edgard Lima <edgard.lima@indt.org.br>
15924
15925         * gst/typefind/gsttypefindfunctions.c:
15926         iLBC30 and iLBC20 added to typefind.
15927
15928 2005-12-20  Thomas Vander Stichele  <thomas at apestaart dot org>
15929
15930         * gst-libs/gst/audio/gstbaseaudiosink.c:
15931         (gst_base_audio_sink_class_init):
15932         * gst-libs/gst/audio/gstbaseaudiosrc.c:
15933         (gst_base_audio_src_class_init):
15934           update strings, values are in microseconds
15935           change the default sink buffer time to something that is smaller
15936           (to help software volume mixing have a slightly lower delay) but
15937           still be acceptable on Wim's laptop
15938
15939 2005-12-20  Edward Hervey  <edward@fluendo.com>
15940
15941         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
15942         Made a quack, forgot to add DUCK to the riff video template.
15943
15944 2005-12-19  Edward Hervey  <edward@fluendo.com>
15945
15946         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
15947         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
15948         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
15949         (gst_ogm_parse_chain):
15950         Make sure pads are initialized correctly.
15951         * gst-libs/gst/riff/riff-ids.h:
15952         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
15953         (gst_riff_create_video_template_caps):
15954         Add a whole bunch of FOURCC <=> MimeType.
15955         Extend the riff video pad template to support the newly added fourcc.
15956
15957 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
15958
15959         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
15960         (gst_ogg_demux_activate_chain):
15961           Extra debug output when activating/deactivating chains.
15962
15963         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
15964         (is_demuxer_element), (try_to_link_1), (remove_element_chain),
15965         (unlinked):
15966           Remove a queue from our list when it becomes unlinked.
15967           Don't add queues to elements in class 'Demux' if they
15968           can only produce one pad 
15969
15970 2005-12-18  Julien MOUTTE  <julien@moutte.net>
15971
15972         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
15973         (gst_video_sink_get_type): Add a debug category.
15974
15975 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
15976
15977         * gst-libs/gst/rtp/gstbasertpdepayload.c:
15978         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
15979           Handle downstream newsegment by sending our own newsegment before the
15980           next buffer to be released. (#323900)
15981
15982 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
15983
15984         * gst-libs/gst/rtp/gstbasertpdepayload.c:
15985         (gst_base_rtp_depayload_set_gst_timestamp):
15986           add queue delay to new segment as well (as opposed to just the first
15987           buffer). (bug #322347)
15988
15989 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
15990
15991         * ext/libvisual/visual.c: (make_valid_name):
15992           change some char* into char[]
15993         * gst/audiotestsrc/gstaudiotestsrc.c:
15994         (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
15995         (gst_audio_test_src_create):
15996         * gst/audiotestsrc/gstaudiotestsrc.h:
15997           prepare to handle EOS and SEGMENT_DONE
15998
15999 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
16000
16001         * tests/check/generic/states.c: (GST_START_TEST):
16002           Blacklist cdparanoia element in state test.
16003
16004 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
16005
16006           Patch by: Benjamin Pineau
16007
16008         * gst/tcp/gsttcp.c:
16009         * gst/tcp/gsttcpclientsink.c:
16010         * gst/tcp/gsttcpserversink.c:
16011         * gst/tcp/gsttcpserversrc.c:
16012           Add <string.h> includes for memset and FD_ZERO (fixes #323878)
16013
16014 2005-12-15  Michael Smith  <msmith@fluendo.com>
16015
16016         * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
16017         (gst_video_rate_chain):
16018           Fix timestamping for videorate when the first buffer it sees has a
16019           non-zero timestamp. Fix some misleading debug output.
16020
16021 2005-12-15  Michael Smith  <msmith@fluendo.com>
16022
16023         * gst/audioresample/gstaudioresample.c:
16024           Don't leak all input buffers to audioresample.
16025
16026 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
16027
16028         * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
16029           Don't operate on empty text buffers. Strip newlines and
16030           tabs only from the end of the text, but leave them intact
16031           in the middle. Fix typo in gtk-doc description.
16032
16033 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
16034
16035         * gst/playback/gstplaybasebin.c:
16036         * gst/playback/gstplaybin.c: (handoff):
16037           Make sure the video frame buffer we return to apps via the
16038           "frame" property always has caps set on it. Modify
16039           _gst_gvalue_set_object() macro to handle NULL objects
16040           gracefully too.
16041
16042 2005-12-14  Stefan Kost  <ensonic@users.sf.net>
16043
16044         * gst/audiotestsrc/gstaudiotestsrc.c:
16045         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
16046         (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
16047         (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
16048         (gst_audio_test_src_create):
16049         * gst/audiotestsrc/gstaudiotestsrc.h:
16050         Adjust to some recent api changes and add wtays new cool seeking
16051         capabillities
16052
16053 2005-12-14  Tim-Philipp Müller  <tim at centricular dot net>
16054
16055         * ext/alsa/Makefile.am:
16056         * ext/alsa/gstalsadeviceprobe.c:
16057         * ext/alsa/gstalsadeviceprobe.h:
16058           Helper functions to add device probing via the GstPropertyProbe
16059           interface to a class.
16060
16061         * ext/alsa/gstalsamixer.h:
16062           Comment out GST_ALSA_MIXER, it returns a struct that's not
16063           used.
16064
16065         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
16066           Add some debug info. 
16067
16068         * ext/alsa/gstalsamixerelement.c:
16069         (gst_alsa_mixer_element_interface_supported),
16070         (gst_implements_interface_init),
16071         (gst_alsa_mixer_element_init_interfaces),
16072         (gst_alsa_mixer_element_class_init),
16073         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
16074         (gst_alsa_mixer_element_set_property),
16075         (gst_alsa_mixer_element_get_property),
16076         (gst_alsa_mixer_element_change_state):
16077         * ext/alsa/gstalsamixerelement.h:
16078           Add 'device' and 'device-name' properties. Add GstPropertyProbe
16079           for device handling (gnome-volume-control will need that).
16080
16081 2005-12-12  Christian Schaller  <uraeus@gnome.org>
16082
16083         * ext/Makefile.am: fix cdparanoia entry
16084         * gst-plugins-base.spec.in: add cdparanoia
16085
16086 2005-12-12  Michael Smith  <msmith@fluendo.com>
16087
16088         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
16089           Use the correct function to free list of typefind factories.
16090
16091 2005-12-12  Wim Taymans  <wim@fluendo.com>
16092
16093         * gst/videotestsrc/gstvideotestsrc.c:
16094         (gst_video_test_src_class_init), (gst_video_test_src_init),
16095         (gst_video_test_src_parse_caps), (gst_video_test_src_query),
16096         (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
16097         (gst_video_test_src_create):
16098         * gst/videotestsrc/gstvideotestsrc.h:
16099         Implement seeking in videotestsrc.
16100         Small cleanups.
16101
16102 2005-12-12  Wim Taymans  <wim@fluendo.com>
16103
16104         * ext/cdparanoia/Makefile.am:
16105         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
16106         (gst_paranoia_endian_get_type), (_do_init),
16107         (cdparanoia_class_init), (cdparanoia_init),
16108         (cdparanoia_set_property), (cdparanoia_get_property),
16109         (cdparanoia_do_seek), (cdparanoia_is_seekable),
16110         (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
16111         (cdparanoia_convert), (cdparanoia_get_query_types),
16112         (cdparanoia_query), (cdparanoia_set_index),
16113         (cdparanoia_uri_set_uri):
16114         * ext/cdparanoia/gstcdparanoia.h:
16115         Partially ported cdparanoia now that basesrc can support a
16116         plugin like this..
16117
16118 2005-12-12  Wim Taymans  <wim@fluendo.com>
16119
16120         * tests/examples/seek/scrubby.c: (main):
16121         Set higher priority for bus events so they don't get reordered with
16122         gtk gui events.
16123
16124         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
16125         (flush_toggle_cb), (main):
16126         Added checkbox to disable flushing seeks. 
16127         Disable scrubbing when doing non flushing seeks.
16128
16129 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
16130
16131         * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
16132         (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
16133         (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
16134         (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
16135           Implement some sort of event handling that doesn't rely on
16136           g_return_if_fail; make sure we always push the last chunk of an 
16137           .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
16138           state change function; remove some old cruft. Seeking is still
16139           rather unlikely to work though.
16140
16141         * tools/.cvsignore:
16142           Ignore more.
16143
16144 2005-12-11  Julien MOUTTE  <julien@moutte.net>
16145
16146         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): 
16147         Fixed a leak of the current image reference when cleaning up.
16148         Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
16149
16150 2005-12-09  Michael Smith  <msmith@fluendo.com>
16151
16152         * tools/Makefile.am:
16153         * tools/gst-launch-ext-m.m:
16154           Remove gst-launch-ext. It doesn't work, and is no longer
16155           particularly useful.
16156
16157 2005-12-08  Luca Ognibene  <luogni@tin.it>
16158
16159         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
16160           don't pass random values to ogmparse convert function.
16161           Make seeking possible in the exile1.ogm file.
16162
16163 2005-12-07  Tim-Philipp Müller  <tim at centricular dot net>
16164
16165         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
16166         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
16167           Work around refcount problem with g_value_set_object() that occur
16168           if the core has been compiled against GLib-2.6 (g_value_set_object()
16169           will only g_object_ref() the element, but the caller will
16170           gst_object_unref() it and bad things will happen due to the way
16171           GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
16172           totem for people on FC4 using Thomas's 0.10 RPMs.
16173           
16174 2005-12-07  Edward Hervey  <edward@fluendo.com>
16175
16176         Time to welcome ogm to 0.10 :)
16177         
16178         * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
16179         (gst_ogg_pad_typefind):
16180         Oggdemux can now properly typefind elements with dynamic pads.
16181         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
16182         Properly set caps on src pad, and set caps on outgoing buffers.
16183
16184 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
16185
16186         * ext/alsa/gstalsamixer.h:
16187         * ext/alsa/gstalsamixerelement.h:
16188         * ext/alsa/gstalsamixeroptions.h:
16189         * ext/alsa/gstalsamixertrack.h:
16190         * ext/alsa/gstalsasink.c:
16191         * ext/alsa/gstalsasink.h:
16192         * ext/alsa/gstalsasrc.c:
16193         * ext/alsa/gstalsasrc.h:
16194         * ext/cdparanoia/gstcdparanoia.h:
16195         * ext/gnomevfs/gstgnomevfsuri.h:
16196         * ext/ogg/gstoggdemux.c:
16197         * ext/ogg/gstoggmux.c:
16198         * ext/pango/gsttextoverlay.h:
16199         * ext/theora/theoradec.c:
16200         * ext/theora/theoraenc.c:
16201         * ext/vorbis/vorbisdec.h:
16202         * ext/vorbis/vorbisenc.c:
16203         * ext/vorbis/vorbisenc.h:
16204         * ext/vorbis/vorbisparse.h:
16205         * gst-libs/gst/audio/gstaudioclock.h:
16206         * gst-libs/gst/audio/gstaudiosink.c:
16207         * gst-libs/gst/audio/gstaudiosink.h:
16208         * gst-libs/gst/audio/gstaudiosrc.c:
16209         * gst-libs/gst/audio/gstaudiosrc.h:
16210         * gst-libs/gst/audio/gstbaseaudiosink.c:
16211         * gst-libs/gst/audio/gstbaseaudiosink.h:
16212         * gst-libs/gst/audio/gstbaseaudiosrc.c:
16213         * gst-libs/gst/audio/gstbaseaudiosrc.h:
16214         * gst-libs/gst/audio/gstringbuffer.h:
16215         * gst-libs/gst/audio/multichannel.h:
16216         * gst-libs/gst/floatcast/floatcast.h:
16217         * gst-libs/gst/interfaces/colorbalance.c:
16218         * gst-libs/gst/interfaces/colorbalance.h:
16219         * gst-libs/gst/interfaces/colorbalancechannel.h:
16220         * gst-libs/gst/interfaces/mixer.h:
16221         * gst-libs/gst/interfaces/mixeroptions.h:
16222         * gst-libs/gst/interfaces/mixertrack.h:
16223         * gst-libs/gst/interfaces/navigation.h:
16224         * gst-libs/gst/interfaces/propertyprobe.h:
16225         * gst-libs/gst/interfaces/tuner.h:
16226         * gst-libs/gst/interfaces/tunerchannel.h:
16227         * gst-libs/gst/interfaces/tunernorm.h:
16228         * gst-libs/gst/interfaces/xoverlay.h:
16229         * gst-libs/gst/netbuffer/gstnetbuffer.h:
16230         * gst-libs/gst/riff/riff-ids.h:
16231         * gst-libs/gst/riff/riff-media.h:
16232         * gst-libs/gst/riff/riff-read.h:
16233         * gst-libs/gst/rtp/gstbasertpdepayload.h:
16234         * gst-libs/gst/rtp/gstbasertppayload.c:
16235         * gst-libs/gst/rtp/gstbasertppayload.h:
16236         * gst-libs/gst/rtp/gstrtpbuffer.c:
16237         * gst-libs/gst/rtp/gstrtpbuffer.h:
16238         * gst-libs/gst/tag/gsttageditingprivate.h:
16239         * gst-libs/gst/tag/gstvorbistag.c:
16240         (gst_tag_list_from_vorbiscomment_buffer):
16241         * gst-libs/gst/tag/tag.h:
16242         * gst-libs/gst/video/video.h:
16243         * gst/adder/gstadder.c:
16244         * gst/adder/gstadder.h:
16245         * gst/audioconvert/audioconvert.c:
16246         * gst/audioconvert/audioconvert.h:
16247         * gst/audioconvert/gstaudioconvert.c:
16248         * gst/audioconvert/gstchannelmix.c:
16249         * gst/audioconvert/gstchannelmix.h:
16250         * gst/audiorate/gstaudiorate.c:
16251         * gst/audioresample/buffer.h:
16252         * gst/audioresample/functable.h:
16253         * gst/audioresample/gstaudioresample.c:
16254         * gst/audioresample/resample.h:
16255         * gst/ffmpegcolorspace/avcodec.h:
16256         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16257         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
16258         * gst/ffmpegcolorspace/imgconvert.c:
16259         * gst/ffmpegcolorspace/imgconvert_template.h:
16260         * gst/playback/gstdecodebin.c:
16261         * gst/playback/gstplaybasebin.h:
16262         * gst/playback/gstplaybin.c:
16263         * gst/playback/gststreaminfo.h:
16264         * gst/tcp/gstfdset.c:
16265         * gst/tcp/gstfdset.h:
16266         * gst/tcp/gstmultifdsink.c:
16267         * gst/tcp/gstmultifdsink.h:
16268         * gst/tcp/gsttcp.h:
16269         * gst/tcp/gsttcpclientsrc.c:
16270         * gst/tcp/gsttcpclientsrc.h:
16271         * gst/tcp/gsttcpplugin.h:
16272         * gst/tcp/gsttcpserversink.c:
16273         * gst/tcp/gsttcpserversrc.c:
16274         * gst/typefind/gsttypefindfunctions.c:
16275         * gst/videorate/gstvideorate.c:
16276         * gst/videotestsrc/gstvideotestsrc.h:
16277         * gst/videotestsrc/videotestsrc.h:
16278         * sys/v4l/gstv4lcolorbalance.h:
16279         * sys/v4l/gstv4ltuner.h:
16280         * sys/v4l/gstv4lxoverlay.h:
16281         * sys/v4l/v4l_calls.h:
16282         * sys/v4l/videodev_mjpeg.h:
16283         * tests/check/elements/audioconvert.c:
16284         * tests/check/elements/audioresample.c:
16285         * tests/check/elements/audiotestsrc.c:
16286         * tests/check/elements/videotestsrc.c:
16287         * tests/check/elements/volume.c:
16288         * tests/examples/seek/scrubby.c:
16289         * tests/examples/seek/seek.c:
16290           expand tabs
16291
16292 === release 0.10.0 ===
16293
16294 2005-12-05 Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16295
16296         * configure.ac:
16297           releasing 0.10.0, "Mont-d'or"
16298
16299 2005-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
16300
16301         * tests/examples/seek/Makefile.am:
16302         Build fix for when gtk is not available.
16303
16304 2005-12-05  Andy Wingo  <wingo@pobox.com>
16305
16306         * ext/libvisual/visual.c: (get_buffer):
16307         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
16308         * ext/pango/gsttextrender.c: (gst_text_render_chain):
16309         * ext/theora/theoradec.c: (theora_handle_data_packet):
16310         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
16311         (theora_enc_chain):
16312         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
16313         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
16314         Update for alloc_buffer changes.
16315
16316 2005-12-05  Andy Wingo  <wingo@pobox.com>
16317
16318         patch by: Kai Vehmanen <kv2004 eca cx>
16319         
16320         * gst-libs/gst/rtp/gstbasertpdepayload.c
16321         (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
16322
16323 2005-12-04  Andy Wingo  <wingo@pobox.com>
16324
16325         patch by: Sebastien Cote <sebas642 yahoo ca>
16326         
16327         * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
16328         Fixes #319172.
16329
16330 2005-12-02  Tim-Philipp Müller  <tim at centricular dot net>
16331
16332         * docs/plugins/Makefile.am:
16333         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16334         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16335         * docs/plugins/gst-plugins-base-plugins.hierarchy:
16336         * ext/pango/gstclockoverlay.c:
16337         * ext/pango/gsttextoverlay.c: 
16338         * ext/pango/gsttextrender.c:
16339         * ext/pango/gsttimeoverlay.c:
16340           Add gtk-doc blurbs to pango elements.
16341
16342 2005-12-02  Wim Taymans  <wim@fluendo.com>
16343
16344         * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
16345         * gst/audioresample/buffer.h:
16346         * gst/audioresample/gstaudioresample.c:
16347         * gst/audioresample/gstaudioresample.h:
16348         * gst/audioresample/resample.c: (resample_input_flush),
16349         (resample_input_pushthrough), (resample_input_eos),
16350         (resample_get_output_size_for_input),
16351         (resample_get_input_size_for_output), (resample_get_output_size),
16352         (resample_get_output_data):
16353         * gst/audioresample/resample.h:
16354         * gst/audioresample/resample_ref.c: (resample_scale_ref):
16355         Fix audioresample, seek torture, new segments, reverse negotiation
16356         etc.. work fine.
16357
16358 2005-12-02  Wim Taymans  <wim@fluendo.com>
16359
16360         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
16361         Small cleanups.
16362
16363 2005-12-02  Wim Taymans  <wim@fluendo.com>
16364
16365         * gst/audioconvert/gstaudioconvert.c:
16366         (gst_audio_convert_transform):
16367         Post errors.
16368
16369 === release 0.9.7 ===
16370
16371 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16372
16373         * configure.ac:
16374           releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
16375
16376 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
16377
16378         * Makefile.am:
16379         * po/hu.po:
16380         * win32/MANIFEST:
16381         * win32/gst.sln:
16382           add win32 MANIFEST file
16383           do something to the hungarian translation
16384
16385 2005-12-01  Tim-Philipp Müller  <tim at centricular dot net>
16386
16387         * ext/Makefile.am:
16388           Add $(PANGO_DIR) to SUBDIRS
16389
16390         * ext/pango/gstclockoverlay.c:
16391         * ext/pango/gsttimeoverlay.c:
16392           Fix and improve element descriptions.
16393
16394 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16395
16396         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16397         * docs/plugins/inspect/plugin-libvisual.xml:
16398         * docs/plugins/inspect/plugin-pango.xml:
16399           add pango plugin to docs
16400
16401 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16402
16403         * configure.ac:
16404         * ext/Makefile.am:
16405           moved pango to base
16406
16407 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
16408
16409         * configure.ac:
16410         * tests/Makefile.am:
16411         * tests/icles/.cvsignore:
16412         * tests/icles/Makefile.am:
16413         * tests/icles/stress-xoverlay.c: (myclock), (open_display),
16414         (close_display), (resize_window), (move_window), (create_window),
16415         (terminate_playback), (pause_playback), (start_playback), (main):
16416           add stress test for xoverlay from Julien
16417
16418 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16419
16420         * docs/libs/tmpl/gstcolorbalance.sgml:
16421         * gst-libs/gst/rtp/gstbasertpdepayload.c:
16422         * gst-libs/gst/rtp/gstbasertppayload.c:
16423         * gst-libs/gst/rtp/gstrtpbuffer.c:
16424         * gst-libs/gst/rtp/gstrtpbuffer.h:
16425           Do burger's rename for rtp payloaders and depayloaders
16426
16427 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
16428
16429         * win32/:
16430           add Visual Studio 6 build files
16431
16432 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
16433
16434         * docs/libs/gst-plugins-base-libs-docs.sgml:
16435         * docs/libs/gst-plugins-base-libs-sections.txt:
16436         * docs/libs/tmpl/gstaudio.sgml:
16437         * docs/libs/tmpl/gstringbuffer.sgml:
16438         * gst-libs/gst/interfaces/xoverlay.c:
16439         * gst-libs/gst/video/gstvideofilter.c:
16440         * gst-libs/gst/video/gstvideosink.c:
16441           update documentation
16442
16443 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
16444
16445         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
16446         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
16447         (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
16448         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
16449         (gst_multi_fd_sink_get_stats),
16450         (gst_multi_fd_sink_remove_client_link),
16451         (gst_multi_fd_sink_handle_client_read),
16452         (gst_multi_fd_sink_client_queue_data),
16453         (gst_multi_fd_sink_client_queue_caps),
16454         (gst_multi_fd_sink_client_queue_buffer),
16455         (gst_multi_fd_sink_new_client),
16456         (gst_multi_fd_sink_handle_client_write),
16457         (gst_multi_fd_sink_recover_client),
16458         (gst_multi_fd_sink_queue_buffer),
16459         (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
16460         (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
16461         (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
16462         (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
16463         * gst/tcp/gstmultifdsink.h:
16464         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
16465         (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
16466         (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
16467         (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
16468         (gst_tcp_client_sink_set_property),
16469         (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
16470         (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
16471         * gst/tcp/gsttcpclientsink.h:
16472         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
16473         (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
16474         (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
16475         (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
16476         (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
16477         (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
16478         * gst/tcp/gsttcpclientsrc.h:
16479         * gst/tcp/gsttcpplugin.c: (plugin_init):
16480         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
16481         (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
16482         (gst_tcp_server_sink_finalize),
16483         (gst_tcp_server_sink_handle_server_read),
16484         (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
16485         (gst_tcp_server_sink_set_property),
16486         (gst_tcp_server_sink_get_property),
16487         (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
16488         * gst/tcp/gsttcpserversink.h:
16489         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
16490         (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
16491         (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
16492         (gst_tcp_server_src_set_property),
16493         (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
16494         (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
16495         * gst/tcp/gsttcpserversrc.h:
16496           more borgifying
16497
16498 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
16499
16500         * docs/plugins/Makefile.am:
16501         * docs/plugins/gst-plugins-base-plugins.args:
16502         * docs/plugins/inspect/plugin-libvisual.xml:
16503         * gst/audioconvert/plugin.h:
16504         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
16505         (gst_audio_rate_base_init), (gst_audio_rate_class_init),
16506         (gst_audio_rate_setcaps), (gst_audio_rate_init),
16507         (gst_audio_rate_chain), (gst_audio_rate_set_property),
16508         (gst_audio_rate_get_property), (gst_audio_rate_change_state),
16509         (plugin_init):
16510         * gst/audiotestsrc/gstaudiotestsrc.c:
16511         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
16512         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
16513         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
16514         (gst_audio_test_src_get_query_types),
16515         (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
16516         (gst_audio_test_src_create_square),
16517         (gst_audio_test_src_create_saw),
16518         (gst_audio_test_src_create_triangle),
16519         (gst_audio_test_src_create_silence),
16520         (gst_audio_test_src_create_white_noise),
16521         (gst_audio_test_src_init_pink_noise),
16522         (gst_audio_test_src_generate_pink_noise_value),
16523         (gst_audio_test_src_create_pink_noise),
16524         (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
16525         (gst_audio_test_src_create), (gst_audio_test_src_set_property),
16526         (gst_audio_test_src_get_property), (gst_audio_test_src_start),
16527         (plugin_init):
16528         * gst/audiotestsrc/gstaudiotestsrc.h:
16529         * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
16530         (gst_sub_parse_base_init), (gst_sub_parse_class_init),
16531         (gst_sub_parse_init), (gst_sub_parse_formats),
16532         (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
16533         (convert_encoding), (get_next_line),
16534         (gst_sub_parse_data_format_autodetect),
16535         (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
16536         (gst_sub_parse_loop), (gst_sub_parse_chain),
16537         (gst_sub_parse_change_state), (gst_sub_parse_type_find),
16538         (plugin_init):
16539         * gst/subparse/gstsubparse.h:
16540         * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
16541         (gst_video_rate_base_init), (gst_video_rate_class_init),
16542         (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
16543         (gst_video_rate_setcaps), (gst_video_rate_blank_data),
16544         (gst_video_rate_init), (gst_video_rate_event),
16545         (gst_video_rate_chain), (gst_video_rate_set_property),
16546         (gst_video_rate_get_property), (gst_video_rate_change_state),
16547         (plugin_init):
16548         * gst/videoscale/gstvideoscale.c:
16549         (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
16550         (gst_video_scale_src_template_factory),
16551         (gst_video_scale_sink_template_factory),
16552         (gst_video_scale_get_type), (gst_video_scale_base_init),
16553         (gst_video_scale_class_init), (gst_video_scale_init),
16554         (gst_video_scale_set_property), (gst_video_scale_get_property),
16555         (gst_video_scale_transform_caps), (gst_video_scale_get_format),
16556         (gst_video_scale_prepare_size), (parse_caps),
16557         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
16558         (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
16559         (gst_video_scale_transform), (gst_video_scale_handle_src_event),
16560         (plugin_init):
16561         * gst/videoscale/gstvideoscale.h:
16562         * gst/videotestsrc/gstvideotestsrc.c:
16563         (gst_video_test_src_pattern_get_type),
16564         (gst_video_test_src_base_init), (gst_video_test_src_class_init),
16565         (gst_video_test_src_init), (gst_video_test_src_src_fixate),
16566         (gst_video_test_src_set_pattern),
16567         (gst_video_test_src_set_property),
16568         (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
16569         (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
16570         (gst_video_test_src_event), (gst_video_test_src_get_times),
16571         (gst_video_test_src_create), (plugin_init):
16572         * gst/videotestsrc/gstvideotestsrc.h:
16573         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
16574         (gst_video_test_src_smpte), (gst_video_test_src_snow),
16575         (gst_video_test_src_black):
16576         * gst/videotestsrc/videotestsrc.h:
16577           borgify further
16578           clean up docs a little
16579
16580 2005-11-30  Wim Taymans  <wim@fluendo.com>
16581
16582         * gst-libs/gst/rtp/gstbasertpdepayload.h:
16583         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
16584         (gst_basertppayload_event), (gst_basertppayload_push),
16585         (gst_basertppayload_change_state):
16586         * gst-libs/gst/rtp/gstbasertppayload.h:
16587         closed #320644.
16588
16589 2005-11-30  Julien MOUTTE  <julien@moutte.net>
16590
16591         * docs/libs/gst-plugins-base-libs-docs.sgml:
16592         * docs/libs/gst-plugins-base-libs-sections.txt:
16593         * gst-libs/gst/video/gstvideofilter.c:
16594         * gst-libs/gst/video/gstvideosink.c:
16595         * gst-libs/gst/video/gstvideosink.h: Adding docs.
16596
16597 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16598
16599         * LICENSE:
16600           move
16601         * po/af.po:
16602         * po/az.po:
16603         * po/cs.po:
16604         * po/en_GB.po:
16605         * po/hu.po:
16606         * po/it.po:
16607         * po/nb.po:
16608         * po/nl.po:
16609         * po/or.po:
16610         * po/sq.po:
16611         * po/sr.po:
16612         * po/sv.po:
16613         * po/uk.po:
16614         * po/vi.po:
16615         * Makefile.am:
16616           update
16617         * scripts/autoplugins.sh:
16618           remove
16619
16620 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16621
16622         * Makefile.am:
16623         * configure.ac:
16624         * examples/Makefile.am:
16625         * examples/capsfilter/Makefile.am:
16626         * examples/capsfilter/capsfilter1.c:
16627         * examples/gob/Makefile.am:
16628         * examples/gob/gst-identity2.gob:
16629         * examples/indexing/.cvsignore:
16630         * examples/indexing/Makefile.am:
16631         * examples/indexing/indexmpeg.c:
16632         * examples/seeking/.cvsignore:
16633         * examples/seeking/Makefile.am:
16634         * examples/seeking/cdparanoia.c:
16635         * examples/seeking/cdplayer.c:
16636         * examples/seeking/chained.c:
16637         * examples/seeking/scrubby.c:
16638         * examples/seeking/seek.c:
16639         * examples/stats/Makefile.am:
16640         * examples/stats/mp2ogg.c:
16641         * examples/switch/.cvsignore:
16642         * examples/switch/Makefile.am:
16643         * examples/switch/switcher.c:
16644         * tests/Makefile.am:
16645         * tests/check/generic/.cvsignore:
16646         * tests/check/pipelines/.cvsignore:
16647         * tests/examples/Makefile.am:
16648         * tests/examples/seek/Makefile.am:
16649           reorganize stuff under tests/
16650
16651 2005-11-30  Edward Hervey  <edward@fluendo.com>
16652
16653         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
16654         Go away you stupid GstStaticPadTemplate memleak.
16655
16656 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
16657
16658         * gst-libs/gst/net/Makefile.am:
16659         * gst-libs/gst/net/README:
16660         * gst-libs/gst/net/gstnetbuffer.c:
16661         * gst-libs/gst/net/gstnetbuffer.h:
16662           this was moved to "netbuffer"
16663
16664 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
16665
16666         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
16667         (gst_video_filter_class_init), (gst_video_filter_init):
16668         * gst-libs/gst/video/gstvideofilter.h:
16669           borgify name to bring in line with other classes
16670
16671 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
16672
16673         * gst/audioscale/.cvsignore:
16674         * gst/audioscale/Makefile.am:
16675         * gst/audioscale/README:
16676         * gst/audioscale/audioscale.vcproj:
16677         * gst/audioscale/dtof.c:
16678         * gst/audioscale/dtos.c:
16679         * gst/audioscale/functable.c:
16680         * gst/audioscale/gstaudioscale.c:
16681         * gst/audioscale/gstaudioscale.h:
16682         * gst/audioscale/private.h:
16683         * gst/audioscale/resample.c:
16684         * gst/audioscale/resample.h:
16685         * gst/audioscale/test.c:
16686           remove
16687
16688 2005-11-30  Edward Hervey  <edward@fluendo.com>
16689
16690         * gst-libs/gst/netbuffer/Makefile.am:
16691         really, really tired
16692
16693 2005-11-30  Edward Hervey  <edward@fluendo.com>
16694
16695         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16696         Update for new GstTypeFindFactory _register()
16697
16698 2005-11-30  Edward Hervey  <edward@fluendo.com>
16699
16700         * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir): 
16701         Let's not override libgstnet from core for no reason...
16702         (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
16703         Ok, maybe not so quick next time.
16704
16705 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
16706
16707         * configure.ac:
16708         * gst-libs/gst/Makefile.am:
16709           moved gst-libs/gst/net to netbuffer through CVS surgery
16710           remove old directory
16711           updating build to accomodate
16712           (#322257)
16713
16714 2005-11-29  Andy Wingo  <wingo@pobox.com>
16715
16716         * pkgconfig/gstreamer-plugins-base.pc.in:
16717         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
16718         * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
16719         (#322257).
16720
16721 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
16722
16723         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
16724         3rd time's the charm. Correct ref-counting for discarded buffers.
16725
16726 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
16727
16728         * gst/playback/gststreamselector.c:
16729         (gst_stream_selector_class_init),
16730         (gst_stream_selector_set_property),
16731         (gst_stream_selector_get_property),
16732         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
16733         Fix ref-counting
16734
16735 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
16736
16737         * gst/subparse/gstsubparse.c: (feed_textbuf):
16738           Don't access already unref'ed buffer.
16739
16740 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
16741
16742         * gst/playback/gststreamselector.c:
16743         (gst_stream_selector_class_init), (gst_stream_selector_init),
16744         (gst_stream_selector_dispose), (gst_stream_selector_set_property),
16745         (gst_stream_selector_get_property),
16746         (gst_stream_selector_get_linked_pad),
16747         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
16748         * gst/playback/gststreamselector.h:
16749         Add the active-pad property for playbin to use shortly. Ignore buffers
16750         from any other pad, returning GST_FLOW_NOT_LINKED
16751
16752 2005-11-29  Julien MOUTTE  <julien@moutte.net>
16753
16754         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
16755         patch from bug #322704 (Alessandro Decina).
16756
16757 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
16758
16759         * gst-libs/gst/audio/Makefile.am:
16760           folded audiofilter into the audio library
16761
16762 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
16763
16764         * gst/videoscale/gstvideoscale.h:
16765         * gst/videoscale/gstvideoscale.c:
16766           remove unimplemented scale methods
16767
16768 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
16769
16770         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
16771           Don't leak caps.
16772
16773 2005-11-28  Julien MOUTTE  <julien@moutte.net>
16774
16775         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
16776         (gst_ximagesink_setcaps):
16777         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
16778         (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
16779         happens (only visible on ximagesink but bug is in xv too) set_caps was
16780         destroying the internal x[v]image used to memcpy non locally alloced
16781         buffers so that it got renewed on next _chain. The issue is that 
16782         _expose will try to put that image as it reffed it in _put.
16783         Using gst_buffer_unref instead of destroy fixes it !
16784
16785 2005-11-28  Edward Hervey  <edward@fluendo.com>
16786
16787         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
16788         (try_to_link_1), (queue_filled_cb):
16789         Better use of the queues. Start with a small size queue and only increase
16790         the size of the queues when the other queues are empty.
16791
16792 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
16793
16794         * gst-libs/gst/video/Makefile.am:
16795           compile in copied-over videofilter into the video library
16796         * gst-libs/gst/video/videosink.h:
16797           rename the header to gstvideosink.h since it's a base GstObject class
16798         * sys/ximage/ximagesink.h:
16799         * sys/xvimage/xvimagesink.h:
16800           use the new header
16801
16802 2005-11-28  Wim Taymans  <wim@fluendo.com>
16803
16804         * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
16805         * gst/playback/gstplaybasebin.h:
16806         Prepare to handle errors betters.
16807
16808         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
16809         Set sinks to PAUSED first before adding and linking them so that
16810         we don't interrupt dataflow.
16811
16812 2005-11-28  Wim Taymans  <wim@fluendo.com>
16813
16814         * gst-libs/gst/audio/TODO:
16815         Updated TODO
16816
16817         * gst-libs/gst/audio/gstaudiosink.c:
16818         (gst_audioringbuffer_open_device),
16819         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
16820         (gst_audioringbuffer_release):
16821         Small cleanups.
16822
16823         * gst-libs/gst/audio/gstbaseaudiosink.c:
16824         (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
16825         (gst_base_audio_sink_change_state):
16826         Slave to the master clock when going to PLAYING and unslave when
16827         going to PAUSED.
16828
16829         * gst-libs/gst/audio/gstringbuffer.c:
16830         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
16831         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
16832         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
16833         (gst_ring_buffer_clear_all), (wait_segment),
16834         (gst_ring_buffer_commit), (gst_ring_buffer_read),
16835         (gst_ring_buffer_advance):
16836         * gst-libs/gst/audio/gstringbuffer.h:
16837         Add some docs and cleanups.
16838
16839 2005-11-28  Julien MOUTTE  <julien@moutte.net>
16840
16841         * sys/xvimage/xvimagesink.c:
16842         (gst_xvimagesink_navigation_send_event): Fix navigation events
16843         coordinates translation with pixel aspect ratios.
16844
16845 2005-11-28  Julien MOUTTE  <julien@moutte.net>
16846
16847         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
16848         Use calculated video geometry from _setcaps instead of buffer
16849         caps to respect pixel aspect ratio. (fixes #322388)
16850
16851 2005-11-28  Julien MOUTTE  <julien@moutte.net>
16852
16853         * docs/libs/tmpl/gstcolorbalance.sgml:
16854         * docs/libs/tmpl/gstmixer.sgml:
16855         * docs/libs/tmpl/gstxoverlay.sgml:
16856         * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
16857         interface.
16858
16859 2005-11-28  Julien MOUTTE  <julien@moutte.net>
16860
16861         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
16862         Refuse to create an XvImage if we can't find the format.
16863
16864 2005-11-28  Edward Hervey  <edward@fluendo.com>
16865
16866         * gst-libs/gst/riff/riff-media.c:
16867         (gst_riff_create_audio_template_caps):
16868         Add ATRAC3 to the list of riff-possible audio caps.
16869         I know we still don't have a plugin for atrac3, but it's saner to output
16870         that than a cryptic mimetype.
16871
16872 2005-11-27  Edward Hervey  <edward@fluendo.com>
16873
16874         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
16875         Don't try to create a zero-sized subbuffer.
16876
16877 2005-11-27  Julien MOUTTE  <julien@moutte.net>
16878
16879         * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
16880         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
16881         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
16882         (gst_ximagesink_expose): Fixed a tricky race.
16883         * sys/ximage/ximagesink.h:
16884         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
16885         (gst_xvimagesink_expose): Fixed a tricky race.
16886         * sys/xvimage/xvimagesink.h:
16887
16888 2005-11-27  Edward Hervey  <edward@fluendo.com>
16889
16890         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
16891         (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
16892         Remove unused properties, and add queues between demuxers and decoders
16893         so that a lot more files can preroll properly.
16894
16895 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
16896
16897         * gst-libs/gst/net/Makefile.am:
16898         * gst-libs/gst/rtp/Makefile.am:
16899         * gst-libs/gst/tag/Makefile.am:
16900           remove silly include
16901         * gst/tags/Makefile.am:
16902         * gst/tags/gsttagediting.c:
16903         * gst/tags/gsttageditingprivate.h:
16904         * gst/tags/tagedit.vcproj:
16905           remove directory, is as good as empty
16906
16907 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
16908
16909         * configure.ac:
16910           added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
16911         * gst-libs/Makefile.am:
16912         * gst-libs/gst/audio/Makefile.am:
16913         * gst-libs/gst/interfaces/Makefile.am:
16914         * gst-libs/gst/net/Makefile.am:
16915         * gst-libs/gst/riff/Makefile.am:
16916         * gst-libs/gst/rtp/Makefile.am:
16917         * gst-libs/gst/tag/Makefile.am:
16918         * gst-libs/gst/video/Makefile.am:
16919           and use them
16920
16921 2005-11-27  Julien MOUTTE  <julien@moutte.net>
16922
16923         * docs/libs/tmpl/gstcolorbalance.sgml:
16924         * docs/libs/tmpl/gstmixer.sgml:
16925         * docs/libs/tmpl/gstxoverlay.sgml:
16926         * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
16927         * sys/ximage/ximagesink.h:
16928         * sys/xvimage/xvimagesink.h: More and more documentation.
16929
16930 2005-11-26  Julien MOUTTE  <julien@moutte.net>
16931
16932         * docs/libs/gst-plugins-base-libs-docs.sgml:
16933         * docs/libs/gst-plugins-base-libs-sections.txt:
16934         * docs/libs/tmpl/gstcolorbalance.sgml:
16935         * docs/libs/tmpl/gstmixer.sgml:
16936         * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
16937         to documentation.
16938
16939 2005-11-26  Julien MOUTTE  <julien@moutte.net>
16940
16941         * docs/plugins/Makefile.am:
16942         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16943         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16944         * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
16945
16946 2005-11-26  Julien MOUTTE  <julien@moutte.net>
16947
16948         * docs/plugins/Makefile.am:
16949         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16950         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16951         * docs/plugins/inspect/plugin-adder.xml:
16952         * docs/plugins/inspect/plugin-alsa.xml:
16953         * docs/plugins/inspect/plugin-audioconvert.xml:
16954         * docs/plugins/inspect/plugin-audiorate.xml:
16955         * docs/plugins/inspect/plugin-audioresample.xml:
16956         * docs/plugins/inspect/plugin-audiotestsrc.xml:
16957         * docs/plugins/inspect/plugin-decodebin.xml:
16958         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
16959         * docs/plugins/inspect/plugin-gnomevfs.xml:
16960         * docs/plugins/inspect/plugin-ogg.xml:
16961         * docs/plugins/inspect/plugin-playbin.xml:
16962         * docs/plugins/inspect/plugin-subparse.xml:
16963         * docs/plugins/inspect/plugin-tcp.xml:
16964         * docs/plugins/inspect/plugin-theora.xml:
16965         * docs/plugins/inspect/plugin-typefindfunctions.xml:
16966         * docs/plugins/inspect/plugin-video4linux.xml:
16967         * docs/plugins/inspect/plugin-videorate.xml:
16968         * docs/plugins/inspect/plugin-videoscale.xml:
16969         * docs/plugins/inspect/plugin-videotestsrc.xml:
16970         * docs/plugins/inspect/plugin-volume.xml:
16971         * docs/plugins/inspect/plugin-vorbis.xml:
16972         * docs/plugins/inspect/plugin-ximagesink.xml:
16973         * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
16974         * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
16975
16976 2005-11-26  Edward Hervey  <edward@fluendo.com>
16977
16978         * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
16979         Properly return GstFlowReturn from gst_pad_push in chain functions.
16980
16981 2005-11-25  Michael Smith  <msmith@fluendo.com>
16982
16983         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
16984         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
16985         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
16986         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
16987           Handle various conditions better when we don't understand a stream.
16988           Removes a heap of CRITICALs on ogg streams containing unknown data.
16989
16990 2005-11-24  Andy Wingo  <wingo@pobox.com>
16991
16992         * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
16993         Be threadsafe.
16994
16995 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
16996
16997         * configure.ac: back to HEAD
16998
16999 === release 0.9.6 ===
17000
17001 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
17002
17003         * configure.ac:
17004           releasing 0.9.6, "White Eight"
17005
17006 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
17007
17008         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
17009         * docs/plugins/inspect/plugin-sine.xml:
17010           remove sinesrc some more
17011
17012 2005-11-23  Wim Taymans  <wim@fluendo.com>
17013
17014         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
17015         If we are reading too slowly, jump forward in the ringbuffer
17016         instead of blocking.
17017
17018 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
17019
17020         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
17021         (gst_visual_chain):
17022         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
17023         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
17024         (gst_videorate_chain):
17025         * gst/videotestsrc/gstvideotestsrc.c:
17026         (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
17027         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
17028         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
17029         (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
17030         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
17031         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
17032           Updates for API changes
17033
17034 2005-11-23  Wim Taymans  <wim@fluendo.com>
17035
17036         * gst-libs/gst/audio/gstbaseaudiosink.c:
17037         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
17038         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
17039         Fix for calibration API change.
17040
17041 2005-11-23  Michael Smith <msmith@fluendo.com>
17042
17043         * gst-libs/gst/audio/multichannel.c:
17044         (gst_audio_get_channel_positions),
17045         (gst_audio_set_channel_positions),
17046         (gst_audio_set_structure_channel_positions_list),
17047         (gst_audio_fixate_channel_positions):
17048           Use gst_value_array_*() functions on value arrays, not
17049           gst_value_list_*().
17050
17051 2005-11-23  Edward Hervey  <edward@fluendo.com>
17052
17053         * autogen.sh:
17054         eheh, sinesrc is gone. Replacing sample srcfile by existing one.
17055         Fixes autogen
17056
17057 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
17058
17059         * check/Makefile.am:
17060         * check/elements/videotestsrc.c: (setup_videotestsrc),
17061         (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
17062         (main):
17063           add a test for videotestsrc
17064
17065 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
17066
17067         * gst/sine/.cvsignore:
17068         * gst/sine/Makefile.am:
17069         * gst/sine/gstsinesrc.c:
17070         * gst/sine/gstsinesrc.h:
17071         * gst/sine/sinesrc.vcproj:
17072           and remove sinesrc from the repository.  Closes #321446
17073
17074 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
17075
17076         * configure.ac:
17077         * gst-plugins-base.spec.in:
17078           remove sinesrc from the build
17079
17080 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
17081
17082         * check/Makefile.am:
17083         * check/elements/audiotestsrc.c: (setup_audiotestsrc),
17084         (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
17085         (main):
17086           add a test for audiotestsrc, testing all waves.  Even seems
17087           leak-free at first glance, nice job Stefan
17088
17089 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
17090
17091         * po/af.po:
17092         * po/az.po:
17093         * po/cs.po:
17094         * po/en_GB.po:
17095         * po/hu.po:
17096         * po/it.po:
17097         * po/nb.po:
17098         * po/nl.po:
17099         * po/or.po:
17100         * po/sq.po:
17101         * po/sr.po:
17102         * po/sv.po:
17103         * po/uk.po:
17104         * po/vi.po:
17105           Translation string updates
17106
17107         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
17108         (gst_v4lsrc_set_caps):
17109         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
17110         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
17111         * sys/v4l/v4lsrc_calls.h:
17112           Improve v4lsrc, by making it work again.
17113
17114 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
17115
17116         * ext/libvisual/visual.c: (gst_visual_chain):
17117           Fix the fps calculations.
17118
17119         * gst/ffmpegcolorspace/avcodec.h:
17120           Move structure element for clarity
17121
17122         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
17123         * gst-libs/gst/interfaces/tunernorm.h:
17124         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
17125         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
17126         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
17127         (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
17128         (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
17129         (gst_v4lmjpegsrc_getcaps):
17130         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
17131         (gst_v4lsrc_set_caps):
17132         * sys/v4l/gstv4lsrc.h:
17133         * sys/v4l/v4l_calls.c: (gst_v4l_open):
17134         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
17135         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
17136         * sys/v4l/v4lsrc_calls.h:
17137           Fractional framerates...
17138
17139 2005-11-22  Wim Taymans  <wim@fluendo.com>
17140
17141         * gst-libs/gst/audio/gstbaseaudiosink.c:
17142         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
17143         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
17144         And we provide a clock by default, of course...
17145
17146 2005-11-22  Wim Taymans  <wim@fluendo.com>
17147
17148         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
17149         This clock can be slaved to a master clock now.
17150
17151         * gst-libs/gst/audio/gstbaseaudiosink.c:
17152         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
17153         (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
17154         (gst_base_audio_sink_set_clock),
17155         (gst_base_audio_sink_set_property),
17156         (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
17157         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
17158         * gst-libs/gst/audio/gstbaseaudiosink.h:
17159         Handle slaving the internal clock to the clock selected in the
17160         pipeline.
17161         Add property to make the basesink not provide a clock.
17162
17163         * gst-libs/gst/rtp/gstbasertpdepayload.c:
17164         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
17165         (gst_base_rtp_depayload_wait):
17166         * gst-libs/gst/rtp/gstbasertpdepayload.h:
17167         We can use the clock in GstElement, no need to store it ourselves.
17168
17169 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
17170
17171         * docs/libs/tmpl/gstaudio.sgml:
17172           update
17173         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
17174         (gst_paranoia_endian_get_type):
17175         * ext/theora/theoraenc.c: (gst_border_mode_get_type):
17176         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
17177         * gst/audiotestsrc/gstaudiotestsrc.c:
17178         (gst_audiostestsrc_wave_get_type):
17179         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
17180         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
17181         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
17182         (gst_sync_method_get_type), (gst_unit_type_get_type),
17183         (gst_client_status_get_type), (gst_multifdsink_class_init),
17184         (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
17185         (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
17186         (gst_multifdsink_get_property):
17187         * gst/tcp/gstmultifdsink.h:
17188         * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
17189         * gst/videotestsrc/gstvideotestsrc.c:
17190         (gst_videotestsrc_pattern_get_type):
17191           remove deprecated properties
17192           fix up enums to correctly have short lowercase dashed nicks
17193
17194 2005-11-22  Michael Smith <msmith@fluendo.com>
17195
17196         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
17197         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
17198           Add underscore.
17199
17200 2005-11-22  Michael Smith <msmith@fluendo.com>
17201
17202         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
17203         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
17204           Use utility method for scaling clocktime for fractional framerates.
17205
17206 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
17207
17208         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
17209         (gst_visual_chain):
17210         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
17211         * ext/theora/theoradec.c: (theora_handle_type_packet):
17212         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
17213         (theora_enc_chain):
17214         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
17215         * gst-libs/gst/video/video.c: (gst_video_frame_rate):
17216         * gst-libs/gst/video/video.h:
17217         * gst/ffmpegcolorspace/avcodec.h:
17218         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17219         (gst_ffmpeg_caps_to_pixfmt):
17220         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17221         (gst_ffmpegcsp_set_caps):
17222         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
17223         (gst_videorate_setcaps), (gst_videorate_blank_data),
17224         (gst_videorate_chain):
17225         * gst/videotestsrc/gstvideotestsrc.c:
17226         (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
17227         (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
17228         (gst_videotestsrc_event), (gst_videotestsrc_create):
17229         * gst/videotestsrc/gstvideotestsrc.h:
17230         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
17231         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
17232         (gst_ximagesink_get_times), (gst_ximagesink_init):
17233         * sys/ximage/ximagesink.h:
17234         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
17235         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
17236         (gst_xvimagesink_get_times), (gst_xvimagesink_init):
17237         * sys/xvimage/xvimagesink.h:
17238           Convert elements to use fractions for their framerate.
17239           V4L elements to come later tonight.
17240
17241 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
17242
17243         * gst-libs/gst/audio/audio.c:
17244         * gst-libs/gst/audio/audio.h:
17245           remove some deprecated functions
17246
17247 2005-11-22  Andy Wingo  <wingo@pobox.com>
17248
17249         * Update for gst_tag_setter API changes.
17250
17251 2005-11-22  Andy Wingo  <wingo@pobox.com>
17252
17253         * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
17254         (gst_ogg_demux_perform_seek):
17255         * ext/theora/theoradec.c (theora_dec_sink_event):
17256         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
17257         update-funcnames.
17258
17259 2005-11-22  Wim Taymans  <wim@fluendo.com>
17260
17261         * examples/seeking/seek.c: (main):
17262         Give higher priority to bus signals than the gtk events
17263         to fix a race condition in the segment looping.
17264
17265 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
17266
17267         * ext/theora/Makefile.am:
17268         * ext/vorbis/Makefile.am:
17269         * gst-libs/gst/tag/Makefile.am:
17270         * gst-plugins-base.spec.in:
17271           Rename libgsttagedit to libgsttag (#322117).
17272
17273 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
17274
17275         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
17276         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
17277           Call gst_x_overlay_prepare_xwindow_id() to give applications
17278           a final chance to set their own xwindow id before the video
17279           sink creates its own window.
17280
17281 2005-11-22  Julien MOUTTE  <julien@moutte.net>
17282
17283         * sys/xvimage/xvimagesink.c:
17284         (gst_xvimagesink_navigation_send_event): Handle navigation
17285         events correcly with borders if applicable.
17286
17287 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
17288
17289         Patch by: Luca Ognibene
17290
17291         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17292         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
17293         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17294         (gst_ffmpegcsp_caps_remove_format_info):
17295         * gst/ffmpegcolorspace/imgconvert.c:
17296         * gst/ffmpegcolorspace/imgconvert_template.h:
17297           Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
17298           #318353); use gst_structure_has_name().
17299
17300 2005-11-22  Julien MOUTTE  <julien@moutte.net>
17301
17302         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
17303         (gst_ximagesink_class_init): Add debug macros on functions.
17304         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
17305         (gst_xvimagesink_xwindow_draw_borders),
17306         (gst_xvimagesink_xvimage_put),
17307         (gst_xvimagesink_xwindow_update_geometry),
17308         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
17309         (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
17310         (gst_xvimagesink_xcontext_clear),
17311         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
17312         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
17313         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
17314         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
17315         (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
17316         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
17317         * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
17318         expose while being PAUSED, out of data flow navigation events, etc..
17319
17320 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
17321
17322         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
17323         * gst-libs/gst/audio/audio.h:
17324           fix prototype - wondering why the test worked regardless
17325
17326 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
17327
17328         * check/Makefile.am:
17329         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
17330         * gst-libs/gst/audio/audio.h:
17331           add a method that returns a proper GstClockTime
17332
17333 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
17334
17335         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
17336         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
17337         * gst-libs/gst/interfaces/xoverlay.h:
17338           Remove everything having to do with the desired size; add 
17339           gst_x_overlay_prepare_xwindow_id() function; remove the
17340           'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
17341           post a message on the bus instead (#321816).
17342
17343         * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
17344         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
17345         (gst_xvimagesink_xoverlay_init):
17346           Remove desired size stuff (#321816).
17347
17348 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
17349
17350         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
17351         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
17352         (mpeg_video_type_find), (mpeg_video_stream_type_find):
17353           Terminate vararg functions with NULL instead of 0 to 
17354           make gcc4 happy.
17355
17356 2005-11-21  Andy Wingo  <wingo@pobox.com>
17357
17358         patch by: Sebastien Cote <sebas642@yahoo.ca>
17359         
17360         * gst-libs/gst/rtp/gstrtpbuffer.h: 
17361         * gst-libs/gst/rtp/gstrtpbuffer.c
17362         (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
17363
17364 2005-11-21  Andy Wingo  <wingo@pobox.com>
17365
17366         * gst/playback/gstplaybin.c (gen_audio_element) 
17367         (gen_video_element): Use the new MISSING_PLUGIN core error
17368         category. Closes #320060.
17369
17370         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): 
17371         * gst/videorate/gstvideorate.c (gst_videorate_event):
17372         * ext/theora/theoradec.c (theora_dec_sink_event): 
17373         * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
17374         stream lock.
17375
17376         * gst/subparse/gstsubparse.c (gst_subparse_src_event):
17377         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
17378         stream lock changes.
17379
17380 2005-11-21  Wim Taymans  <wim@fluendo.com>
17381
17382         * gst-libs/gst/audio/gstbaseaudiosink.c:
17383         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
17384         (gst_base_audio_sink_provide_clock),
17385         (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
17386         (gst_base_audio_sink_change_state):
17387         * gst/audioresample/gstaudioresample.c:
17388         Segment update fix.
17389
17390 2005-11-21  Andy Wingo  <wingo@pobox.com>
17391
17392         * *.h:
17393         * *.c: Ran scripts/update-macros. Oh yes.
17394
17395 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
17396
17397         * sys/ximage/Makefile.am:
17398         * sys/ximage/ximage.c:
17399           Rename ximage plugin to ximagesink (#321426) (Don't forget to
17400           remove your old libgstximage.* manually if necessary).
17401
17402 2005-11-21  Michael Smith <msmith@fluendo.com>
17403
17404         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
17405           Minimal fix for bug #320200: set the min/max bitrate in the correct
17406           units. A better fix would be to upgrade to the RATEMANAGE2
17407           interface, rather than using the deprecated interface used here, but
17408           that would require an update in our libvorbis dependency (to 1.1),
17409           which is probably undesirable.
17410
17411 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
17412
17413         * ext/libvisual/visual.c: (get_buffer):
17414         * gst-libs/gst/audio/gstbaseaudiosrc.c:
17415         (gst_base_audio_src_fixate):
17416         * gst/audioconvert/gstaudioconvert.c:
17417         (gst_audio_convert_fixate_caps):
17418         * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
17419         * gst/audiotestsrc/gstaudiotestsrc.c:
17420         (gst_audiotestsrc_src_fixate):
17421         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
17422         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
17423         * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
17424         * gst/videotestsrc/gstvideotestsrc.c:
17425         (gst_videotestsrc_src_fixate):
17426         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
17427         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
17428           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
17429           (#322027)
17430
17431
17432 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
17433
17434         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
17435         (gst_riff_create_iavs_caps):
17436         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
17437         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
17438         (gst_riff_parse_info):
17439         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
17440         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
17441         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
17442           Fixes for GST_FOURCC_FORMAT API change.
17443
17444 2005-11-21  Andy Wingo  <wingo@pobox.com>
17445
17446         patch by: Alessandro Dessina <alessandro nnva org>
17447
17448         * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
17449         * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
17450         (gst_ogg_parse_chain):
17451         * ext/theora/theoraenc.c (theora_set_header_on_caps):
17452         * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
17453         * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
17454         gst_value_list calls on arrays. Fixes #321962.
17455
17456 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
17457
17458         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
17459         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
17460         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
17461         * gst/adder/gstadder.c: (gst_adder_init),
17462         (gst_adder_request_new_pad), (gst_adder_collected),
17463         (gst_adder_change_state):
17464           Update for gst_collectpads_foo() to gst_collect_pads_foo()
17465           API change.
17466
17467 2005-11-21  Michael Smith <msmith@fluendo.com>
17468
17469         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
17470         (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
17471           Properly handle pad_push return values.
17472
17473 2005-11-20  Jan Schmidt  <thaytan@mad.scientist.com>
17474
17475         * gst-libs/gst/tag/Makefile.am:
17476         * gst-libs/gst/tag/gstvorbistag.c:
17477         (gst_tag_list_to_vorbiscomment_buffer):
17478           Remove obsolete vorbistag element and debug category.
17479
17480         * gst/playback/gstplaybasebin.c: (check_queue):
17481           Don't divide by 0 when queue-threshold is 0.
17482
17483         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
17484           Don't modify an existing pixel-aspect-ratio if we fail to read
17485           a new one.
17486
17487 2005-11-20  Wim Taymans  <wim@fluendo.com>
17488
17489         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
17490         (gst_vorbisenc_push_packet):
17491         GST_PAD_IS_USABLE is gone, use the return value of
17492         the push or pad_alloc_buffer instead.
17493
17494 2005-11-18  Julien MOUTTE  <julien@moutte.net>
17495
17496         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
17497         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
17498         (gst_ximagesink_ximage_destroy),
17499         (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
17500         (gst_ximagesink_xwindow_new),
17501         (gst_ximagesink_xwindow_update_geometry),
17502         (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
17503         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
17504         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
17505         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
17506         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
17507         (gst_ximagesink_navigation_send_event),
17508         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
17509         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
17510         (gst_ximagesink_finalize), (gst_ximagesink_init),
17511         (gst_ximagesink_class_init):
17512         * sys/ximage/ximagesink.h: Refactoring of ximagesink.
17513         This new version brings correct software scaling, non flickering
17514         window while resizing, pixel aspect ratio handling, usage of
17515         hardware buffer pools, out of data flow event thread for 
17516         navigation and handling of expose events even when being PAUSED,
17517         a new property to keep video aspect ratio when resizing, etc...
17518
17519 2005-11-18  Julien MOUTTE  <julien@moutte.net>
17520
17521         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
17522         (gst_videoscale_fixate_caps): Introduce back caps fixate with
17523         handling of PAR.
17524
17525 2005-11-18  Edward Hervey  <bilboed@dvdsrc.fluendo.com>
17526
17527         * gst/playback/gstdecodebin.c: (gst_decode_bin_init): 
17528         Unsetting IS_SINK flag from the fakesink, so decodebin
17529         never behaves as a sink.
17530
17531 2005-11-17  Wim Taymans  <wim@fluendo.com>
17532
17533         * gst-libs/gst/audio/gstbaseaudiosrc.c:
17534         (gst_base_audio_src_change_state):
17535         Fix the audiosrc base class again, we did not unflush.
17536
17537 2005-11-17  Julien MOUTTE  <julien@moutte.net>
17538
17539         * examples/seeking/seek.c: (make_dv_pipeline),
17540         (make_vorbis_theora_pipeline), (make_avi_pipeline),
17541         (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
17542         to ogg/vorbis/theora pipeline.
17543
17544 2005-11-17  Wim Taymans  <wim@fluendo.com>
17545
17546         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
17547         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
17548         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
17549         Fix EOS on multiple streams.
17550         More debugging.
17551
17552 2005-11-16  Wim Taymans  <wim@fluendo.com>
17553
17554         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
17555         (gst_ogg_demux_perform_seek):
17556         Segment done must include stream time.
17557
17558         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
17559         (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
17560         (gst_ogg_mux_change_state):
17561         Fix ogg muxer again.
17562
17563 2005-11-16  Wim Taymans  <wim@fluendo.com>
17564
17565         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
17566         Fix compile again.
17567
17568 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
17569
17570         * ext/libvisual/visual.c: (gst_visual_init):
17571         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
17572         * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
17573         (gst_ogg_parse_chain):
17574         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
17575         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
17576         * ext/theora/theoradec.c: (gst_theora_dec_init):
17577         * ext/theora/theoraenc.c: (gst_theora_enc_init):
17578         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
17579         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
17580         * gst/adder/gstadder.c: (gst_adder_class_init),
17581         (gst_adder_dispose):
17582         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
17583         * gst/subparse/gstsubparse.c: (gst_subparse_init):
17584         * gst/videorate/gstvideorate.c: (gst_videorate_init):
17585           Fix a whole set of pad template leaks
17586
17587 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
17588
17589         * check/generic/states.c: (GST_START_TEST):
17590           fix the test so that it only checks for elements that are part of
17591           this source module
17592
17593 2005-11-16  Michael Smith <msmith@fluendo.com>
17594
17595         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
17596         (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
17597         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
17598         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
17599         (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
17600         (gst_ogg_mux_change_state):
17601           Fix leaking collectpads.
17602
17603 2005-11-16  Edward Hervey  <edward@fluendo.com>
17604
17605         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
17606         (gst_videorate_event), (gst_videorate_chain):
17607         Handle segment seeks
17608
17609 2005-11-16  Wim Taymans  <wim@fluendo.com>
17610
17611         * gst-libs/gst/audio/gstbaseaudiosink.c:
17612         (gst_base_audio_sink_provide_clock),
17613         (gst_base_audio_sink_change_state):
17614         Set ringbuffer to non-flushing when going to PAUSED, set to
17615         flushing again when going to READY.
17616
17617         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
17618         (gst_ring_buffer_stop):
17619         Start in flushing mode by default.
17620         Don't set flushing in the _stop method, let the app call
17621         this explicitly.
17622
17623 2005-11-16  Julien MOUTTE  <julien@moutte.net>
17624
17625         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
17626         * gst-libs/gst/video/videosink.h: Add helper function needed
17627         for video sinks.
17628
17629 2005-11-16  Tim-Philipp Müller  <tim at centricular dot net>
17630
17631         * gst/videoscale/gstvideoscale.c:
17632         (gst_videoscale_handle_src_event):
17633           Don't leak reference to pad parent.
17634
17635 2005-11-16  Wim Taymans  <wim@fluendo.com>
17636
17637         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
17638         Set ringbuffer to flushing when stopping so that we don't
17639         block on wait_segment anymore and livelock.
17640
17641 2005-11-16  Wim Taymans  <wim@fluendo.com>
17642
17643         * examples/seeking/seek.c: (send_event), (do_seek),
17644         (loop_toggle_cb), (segment_done), (main):
17645         Added looping checkbox.
17646
17647 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
17648
17649         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
17650         (gst_ogg_demux_init):
17651         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
17652         (gst_vorbis_dec_init):
17653           revert unrefs, they don't pass make check
17654
17655 2005-11-15  Johan Dahlin  <johan@gnome.org>
17656
17657         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
17658         (gst_ogg_demux_init), (gst_ogg_demux_finalize):
17659         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
17660         (gst_vorbis_dec_init):
17661         Fix pad template leaks. 
17662
17663 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
17664
17665         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
17666           Make state change function thread safe.
17667
17668 2005-11-15  Edward Hervey  <edward@fluendo.com>
17669
17670         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
17671         (gst_ogg_demux_class_init):
17672         Implement GstElement::send_event, so we can send seek events
17673         in GST_STATE_READY
17674
17675 2005-11-14  Julien MOUTTE  <julien@moutte.net>
17676
17677         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
17678         Discovered how to take away flickering while resizing the
17679         window. Please don't put that in ximagesink, refactoring in
17680         progress.
17681
17682 2005-11-14  Michael Smith <msmith@fluendo.com>
17683
17684         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
17685         (gst_multifdsink_render):
17686           Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
17687
17688 2005-11-14  Tim-Philipp Müller  <tim at centricular dot net>
17689
17690         * gst/playback/gstplaybin.c: (gen_audio_element):
17691           Use autoaudiosink, it tends to be more widely available than
17692           autoaudiiosink.
17693           
17694 2005-11-14  Andy Wingo  <wingo@pobox.com>
17695
17696         * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
17697         as well if it is available. Fixes #316442.
17698
17699 2005-11-14  Michael Smith <msmith@fluendo.com>
17700
17701         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
17702         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
17703         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
17704         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
17705         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
17706         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
17707         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
17708         (gst_vorbisenc_change_state):
17709           Fix a small memory leak in vorbisenc.
17710           Fix large memory leaks in oggmux, also fix lots of state change
17711           bugs in oggmux.
17712
17713 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
17714
17715         * gst/videotestsrc/gstvideotestsrc.c:
17716         (gst_videotestsrc_class_init), (gst_videotestsrc_init),
17717         (gst_videotestsrc_src_fixate):
17718           move fixation to a fixate function
17719           remove negotiate function, basesrc's is good enough
17720           fixes a bug for check when using the element alone
17721
17722 2005-11-13  Edward Hervey  <edward@fluendo.com>
17723
17724         * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
17725         (key_toggle_cb), (main):
17726         Added checkboxes for adding/removing the accurate and key_unit seek
17727         flags.
17728
17729 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
17730
17731         * configure.ac: back to HEAD
17732
17733 === release 0.9.5 ===
17734
17735 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
17736
17737         * configure.ac:
17738           releasing 0.9.5, "No No Kia"
17739
17740 2005-11-11  Edward Hervey  <edward@fluendo.com>
17741
17742         * examples/seeking/seek.c: (make_parselaunch_pipeline):
17743         Added parse-launch syntax seeking mode for the seeking example.
17744         This should help stress-test even more cases.
17745         Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
17746
17747 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
17748
17749         * sys/xvimage/xvimagesink.c:
17750         (gst_xvimagesink_navigation_send_event):
17751           Check whether peer pad exists before sending navigation events
17752           to it.
17753
17754 2005-11-11  Michael Smith <msmith@fluendo.com>
17755
17756         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
17757         (gst_vorbisenc_buffer_from_packet):
17758         * ext/vorbis/vorbisenc.h:
17759           Set duration on encoded buffers. This allows oggmux's
17760           max_page_delay parameter to actually work.
17761
17762 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
17763
17764         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17765         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
17766         (gst_ffmpegcsp_avpicture_fill):
17767         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17768         (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
17769           Make palettes work again (see #132341). Use our own macros
17770           for rounding up.
17771
17772 2005-11-10  Andy Wingo  <wingo@pobox.com>
17773
17774         * gst/playback/gstplaybasebin.c (prepare_output): Fix format
17775         string doober.
17776
17777 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
17778
17779         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17780         (gst_ffmpegcsp_transform_caps):
17781           Prefer passthrough in transform_caps
17782
17783 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
17784
17785         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
17786           check for ALSA errors properly, instead of relying on ALSA's
17787           error strings to serve to the user.
17788
17789 2005-11-10  Wim Taymans  <wim@fluendo.com>
17790
17791         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
17792         (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
17793         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
17794         Modernise the seek code.
17795
17796 2005-11-10  Michael Smith <msmith@fluendo.com>
17797         
17798         * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
17799         (setup_substreams), (set_active_source):
17800           Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
17801           trying to go to NULL if we failed to read a file.
17802
17803 2005-11-10  Wim Taymans  <wim@fluendo.com>
17804
17805         * gst/audiotestsrc/gstaudiotestsrc.c:
17806         (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
17807         (gst_audiotestsrc_create):
17808         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
17809         (gst_sinesrc_get_times), (gst_sinesrc_create):
17810         * gst/videotestsrc/gstvideotestsrc.c:
17811         (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
17812         (gst_videotestsrc_create):
17813         The base class can now sync for us.
17814
17815 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
17816
17817         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
17818           a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
17819           name=source autoprobe=false autoprobe-fps=false copy-mode=1
17820           device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
17821           format=(fourcc)I420" ! xvimagesink
17822
17823 2005-11-10  Tim-Philipp Müller  <tim at centricular dot net>
17824
17825         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
17826         (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
17827         (gst_sinesrc_newsegment):
17828           Send newsegment event in TIME format, set duration if
17829           num-buffers is set, fix duration querying.
17830
17831 2005-11-10  Michael Smith <msmith@fluendo.com>
17832
17833         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
17834         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
17835         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
17836         (gst_ogg_mux_collected):
17837          Fix EOS handling, partially. Now forwarding an EOS event once we have
17838          EOS on all pads works correctly. However, we still don't properly set
17839          EOS on the actual ogg stream pages.
17840
17841 2005-11-09  Tim-Philipp Müller  <tim at centricular dot net>
17842
17843         * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
17844           Set elements to NULL state before disposing of them.
17845
17846 2005-11-08  Sebastien Cote  <sebas642 at yahoo dot ca>
17847
17848         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
17849
17850         * gst-libs/gst/rtp/gstbasertpdepayload.c:
17851         (gst_base_rtp_depayload_init),
17852         (gst_base_rtp_depayload_set_gst_timestamp):
17853         * gst-libs/gst/rtp/gstbasertpdepayload.h:
17854           We need to send a newsegment event for each instance, not
17855           just for the first instance of this class (get rid of
17856           static variable in function). (#321011).
17857           
17858 2005-11-08  Michael Smith <msmith@fluendo.com>
17859
17860         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
17861         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
17862         (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
17863         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
17864           Forward port rewrite of muxing strategy to 0.9 version of oggmux.
17865           This makes us mux things correctly according to the ogg muxing
17866           rules. Still not handling EOS correctly right now, though.
17867
17868 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
17869
17870         * gst/audioconvert/gstaudioconvert.c:
17871           Fix typo in docs. 
17872
17873 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
17874
17875         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
17876         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
17877           Initialise segment_stop to GST_CLOCK_TIME_NONE when
17878           creating a new chain; should fix live streaming. Also
17879           add more debug output and fix a typo.
17880
17881 2005-11-08  Brian Cameron  <brian dot cameron at sun dot com>
17882
17883         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
17884
17885         * gst/volume/gstvolume.c: (volume_set_caps):
17886           Fix compilation on Solaris with Forte. (#320923)
17887
17888 2005-11-08  Wim Taymans  <wim@fluendo.com>
17889
17890         * gst-libs/gst/audio/gstbaseaudiosink.c:
17891         (gst_base_audio_sink_render):
17892         No need to do a typecheck.
17893
17894 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
17895
17896         * ext/alsa/gstalsa.h:
17897           We register a debug category, so let's use it.
17898
17899 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
17900
17901         * gst-libs/gst/rtp/gstbasertpdepayload.c:
17902         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
17903         Fixed a small problem.
17904
17905 2005-11-04  Wim Taymans  <wim@fluendo.com>
17906
17907         * examples/seeking/Makefile.am:
17908         * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
17909         (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
17910         (make_playerbin_pipeline), (format_value), (update_scale),
17911         (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
17912         (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
17913         (print_usage), (main):
17914         Added app for playback speed testing.
17915
17916         * examples/seeking/seek.c: (dynamic_link),
17917         (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
17918         (make_mpeg_pipeline), (do_seek), (set_update_scale),
17919         (message_received), (main):
17920         Updated seek example.
17921
17922 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
17923
17924         * gst-libs/gst/rtp/gstbasertpdepayload.c:
17925         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
17926         (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
17927         (gst_base_rtp_depayload_set_clock):
17928         * gst-libs/gst/rtp/gstbasertpdepayload.h:
17929         Don't sleep on the bench (system clock) when you have a nice 
17930         comfortable bed (Gstreamer clock) to sleep on.
17931
17932 2005-11-03  Wim Taymans  <wim@fluendo.com>
17933
17934         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
17935         (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
17936         (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
17937         Handle the case where a pad_block failed.
17938
17939 2005-11-02  Sebastien Cote  <sebas642@yahoo.ca> 
17940
17941         reviewed by: Zeeshan Ali  <zeenix@gmail.com>
17942
17943         * gst-libs/gst/rtp/gstbasertpdepayload.c:
17944         (gst_base_rtp_depayload_add_to_queue),
17945         (gst_base_rtp_depayload_push),
17946         (gst_base_rtp_depayload_set_gst_timestamp),
17947         (gst_base_rtp_depayload_queue_release):
17948           Fixes some bugs in the depayloader's queuing/de-queueing code.
17949
17950 2005-10-31  Michael Smith <msmith@fluendo.com>
17951
17952         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
17953         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
17954         (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
17955           Patch from Alessandro Decina <alessandro@nnva.org>.
17956           Make oggdemux only find the final time in a chain, not per-pad,
17957           since the per-pad information can be very expensive to locate, and
17958           it isn't used anywhere. This makes reading a file containing
17959           OggSkeleton reasonably fast.
17960           Also, make chain finding work when there are logical bitstreams that
17961           can't be decoded. Fixes #319110.
17962
17963 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
17964
17965         * gst-libs/gst/rtp/gstbasertpdepayload.c:
17966         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
17967         (gst_base_rtp_depayload_chain),
17968         (gst_base_rtp_depayload_add_to_queue),
17969         (gst_base_rtp_depayload_push),
17970         (gst_base_rtp_depayload_set_gst_timestamp),
17971         (gst_base_rtp_depayload_queue_release),
17972         (gst_base_rtp_depayload_start_thread),
17973         (gst_base_rtp_depayload_set_property),
17974         (gst_base_rtp_depayload_get_property):
17975         * gst-libs/gst/rtp/gstbasertpdepayload.h:
17976         Some random fixes, to fullfill the desires of thomas.
17977
17978 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
17979
17980         * gst-libs/gst/rtp/gstbasertpdepayload.c:
17981         (gst_base_rtp_depayload_add_to_queue),
17982         (gst_base_rtp_depayload_push):
17983         Fixed the queueing algorithm.
17984
17985 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
17986
17987         * gst-libs/gst/rtp/gstbasertpdepayload.c:
17988         (gst_base_rtp_depayload_push):
17989         A small fix
17990
17991 2005-10-31  Wim Taymans  <wim@fluendo.com>
17992
17993         * gst-libs/gst/audio/gstringbuffer.h:
17994         Don't break ABI.
17995
17996         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17997         (gst_ffmpeg_caps_to_pixfmt):
17998         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17999         (gst_ffmpegcsp_set_caps):
18000         Some more comments.
18001         Handle missing required caps fields better.
18002
18003 2005-10-31  Wim Taymans  <wim@fluendo.com>
18004
18005         * gst-libs/gst/audio/gstbaseaudiosink.c:
18006         (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
18007         (gst_base_audio_sink_render):
18008         * gst-libs/gst/audio/gstringbuffer.c:
18009         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
18010         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
18011         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
18012         (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
18013         (gst_ring_buffer_read):
18014         * gst-libs/gst/audio/gstringbuffer.h:
18015         Add flushing mode to the ringbuffer so that it in all cases does
18016         not try to handle more audio. This makes sure it does not try to
18017         block anymore when flushing and fixes a livelock.
18018
18019 2005-10-29  Tim-Philipp Müller  <tim at centricular dot net>
18020
18021         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
18022         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
18023         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
18024           Explicitly check for -1 values before doing a conversion
18025           and always map them to -1. (#315545)
18026
18027 2005-10-28  Thomas Vander Stichele  <thomas at apestaart dot org>
18028
18029         * gst/playback/gstplaybin.c: (gen_video_element):
18030           first try autovideosink, then xvimagesink, then error out
18031         * po/POTFILES.in:
18032           add translatable file
18033         * po/af.po:
18034         * po/az.po:
18035         * po/cs.po:
18036         * po/en_GB.po:
18037         * po/hu.po:
18038         * po/it.po:
18039         * po/nb.po:
18040         * po/nl.po:
18041         * po/or.po:
18042         * po/sq.po:
18043         * po/sr.po:
18044         * po/sv.po:
18045         * po/uk.po:
18046         * po/vi.po:
18047           update translations
18048
18049 2005-10-27  Philippe Khalaf <burger at speedy dot org> 
18050
18051         * gst-libs/gst/rtp/gstbasedepayload.c:
18052         * gst-libs/gst/rtp/gstbasedepayload.h:
18053           Minor cleanups
18054
18055 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
18056
18057         * gst/playback/.cvsignore:
18058         * gst/playback/decodetest.c:
18059         * gst/playback/test3.c:
18060           Port these two tests as well.
18061
18062 2005-10-27  Wim Taymans  <wim@fluendo.com>
18063
18064         * ext/theora/theoradec.c: (theora_dec_src_query),
18065         (theora_dec_sink_event):
18066         * ext/theora/theoraenc.c: (theora_enc_sink_event),
18067         (theora_enc_change_state):
18068         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
18069         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
18070         Take proper locks when handling events.
18071
18072 2005-10-27  Wim Taymans  <wim@fluendo.com>
18073
18074         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
18075         (gst_adder_change_state):
18076         Fix timestamps and fix deadlock when stopping the collectpads.
18077
18078 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
18079
18080         * gst-libs/gst/rtp/gstrtpbuffer.h:
18081         Declaring the payload types as strings too so that they can be used
18082         in the padtemplate inialization.
18083
18084 2005-10-26  Andre Magalhaes  <andrunko@gmail.com>
18085
18086         reviewed by: Zeeshan Ali   <zeenix@gmail.com>
18087
18088         * gst-libs/gst/rtp/gstbasertpdepayload.c:
18089         (gst_base_rtp_depayload_class_init):
18090         Fixes a small but nasty bug. The derived elements no longer segfaults
18091         on finalization.
18092
18093 2005-10-26  Michael Smith <msmith@fluendo.com>
18094
18095         * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
18096           When clearing an audioconvert context, set tmpbufsize to zero, so
18097           we'll allocate it again later if required.
18098           This fixes audioconvert re-negotiating formats, which previously
18099           segfaulted with a NULL destination buffer.
18100
18101 2005-10-26  Zeeshan Ali <zeenix@gmail.com>
18102
18103         * gst-libs/gst/rtp/gstbasertpdepayload.c:
18104         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
18105         (gst_base_rtp_depayload_set_gst_timestamp),
18106         (gst_base_rtp_depayload_queue_release):
18107         Fixed a smalll memleak.
18108
18109 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
18110         * gst-libs/gst/rtp/gstbasertpdepayload.c:
18111         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
18112         (gst_base_rtp_depayload_finalize),
18113         (gst_base_rtp_depayload_setcaps),
18114         (gst_base_rtp_depayload_add_to_queue),
18115         (gst_base_rtp_depayload_push),
18116         (gst_base_rtp_depayload_set_gst_timestamp),
18117         (gst_base_rtp_depayload_queue_release),
18118         (gst_base_rtp_depayload_thread),
18119         (gst_base_rtp_depayload_change_state):
18120         * gst-libs/gst/rtp/gstbasertpdepayload.h:
18121         Changed the C++ comments to C comments
18122
18123 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
18124
18125         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
18126         * gst/tcp/gsttcpclientsrc.h:
18127         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
18128         * gst/tcp/gsttcpserversrc.h:
18129           Remove unused 'curoffset' structure member.
18130
18131 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
18132
18133         * gst-libs/gst/rtp/gstbasertpdepayload.c:
18134         (gst_base_rtp_depayload_base_init),
18135         (gst_base_rtp_depayload_finalize):
18136         * gst-libs/gst/rtp/gstbasertpdepayload.h:
18137         * gst-libs/gst/rtp/gstbasertppayload.h:
18138           The pad-template on the sinkpad should be set by the derived classes.
18139           Also added some useful macros.
18140
18141 2005-10-24  Wim Taymans  <wim@fluendo.com>
18142
18143         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
18144         Correctly flush decoder samples even if we could not
18145         copy them to an output buffer. Fixes #319618.
18146
18147 2005-10-24  Julien MOUTTE  <julien@moutte.net>
18148
18149         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
18150         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
18151         the caps against our xcontext caps.
18152
18153 2005-10-24  Wim Taymans  <wim@fluendo.com>
18154
18155         * gst-libs/gst/audio/gstbaseaudiosink.c:
18156         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
18157         Remove g_print
18158         Use sync property from baseclass to disable sync.
18159
18160 2005-10-24  Wim Taymans  <wim@fluendo.com>
18161
18162         * gst-libs/gst/audio/gstbaseaudiosink.c:
18163         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
18164         Buffers with no timestamps get aligned with previous buffers or
18165         on underrun, played ASAP.
18166
18167 2005-10-24  Julien MOUTTE  <julien@moutte.net>
18168
18169         * gst-libs/gst/video/video.h:
18170         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18171         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
18172         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
18173         here comes my change on caps for framerate and geometry range.
18174         We are now accepting 1 to MAXINT for width and height, and from
18175         0.0 to MAXDOUBLE for framerate. That allows duration less png frames
18176         to be blended correctly in videomixer.
18177
18178 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
18179
18180         * configure.ac:
18181           back to HEAD
18182
18183 === release 0.9.4 ===
18184
18185 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18186
18187         * NEWS:
18188         * RELEASE:
18189         * configure.ac:
18190           releasing 0.9.4, "Velociraptor"
18191
18192 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18193
18194         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
18195         * po/POTFILES.in:
18196           STOPPED -> FAILED
18197
18198 2005-10-21  Wim Taymans  <wim@fluendo.com>
18199
18200         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
18201         (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
18202         (pad_blocked), (close_pad_link), (new_pad):
18203         Don't try to remove elements twice.
18204
18205 2005-10-21  Wim Taymans  <wim@fluendo.com>
18206
18207         * ext/theora/theoradec.c: (theora_dec_src_query),
18208         (theora_dec_sink_event):
18209         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
18210         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
18211         (vorbis_handle_data_packet):
18212         * ext/vorbis/vorbisdec.h:
18213         Fix old naming.
18214
18215         * gst-libs/gst/audio/gstbaseaudiosink.c:
18216         (gst_base_audio_sink_render):
18217         Don't try to sync on buffers without a timestamp.
18218
18219 2005-10-21  Wim Taymans  <wim@fluendo.com>
18220
18221         * ext/theora/theoradec.c: (theora_dec_src_query),
18222         (theora_dec_sink_event):
18223         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
18224         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
18225         (vorbis_handle_data_packet):
18226         * ext/vorbis/vorbisdec.h:
18227         Fix old naming.
18228
18229 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
18230
18231         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
18232         (gst_vorbisenc_src_query):
18233           Implement position and duration queries.
18234
18235         * gst/playback/test3.c: (update_scale), (main):
18236           Fix for async state changes and print nicer output.
18237
18238 2005-10-20  Wim Taymans  <wim@fluendo.com>
18239
18240         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
18241         (dump_element_stats), (main):
18242         * gst/playback/test6.c: (main):
18243         Fix tests again
18244
18245 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
18246
18247         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
18248         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
18249           Don't use functions for position queries when handling
18250           duration queries.
18251
18252 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
18253
18254         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
18255         (vorbis_handle_data_packet), (vorbis_dec_chain),
18256         (vorbis_dec_change_state):
18257         * ext/vorbis/vorbisdec.h:
18258           Vorbis streams can be embedded in other container formats
18259           than ogg, container formats where the demuxer might set 
18260           timestamps on encoded vorbis buffers instead of those silly 
18261           granulepos thingies. In short: make vorbisdec handle 
18262           timestamps on incoming buffers as well.
18263
18264 2005-10-20  Wim Taymans  <wim@fluendo.com>
18265
18266         * gst/playback/gstplaybasebin.c: (group_destroy),
18267         (gst_play_base_bin_change_state):
18268         Fix leak.
18269         Handle case where playbasebin is now ASYNC because
18270         decodebin is.
18271
18272 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
18273
18274         * gst/audioconvert/Makefile.am:
18275         * gst/audioconvert/bufferframesconvert.c:
18276         * gst/audioconvert/plugin.c: (plugin_init):
18277         * gst/audioconvert/plugin.h:
18278           And bye bye buffer-frames-convert
18279
18280 2005-10-19  Wim Taymans  <wim@fluendo.com>
18281
18282         * check/elements/audioconvert.c:
18283         * docs/libs/tmpl/gstaudio.sgml:
18284         * docs/libs/tmpl/gstcolorbalance.sgml:
18285         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
18286         (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
18287         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
18288         * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
18289         * gst-libs/gst/audio/audio.h:
18290         * gst/audioconvert/audioconvert.h:
18291         * gst/audioconvert/gstaudioconvert.c:
18292         (gst_audio_convert_parse_caps):
18293         * gst/volume/gstvolume.c:
18294         Bye bye buffer-frames.
18295
18296 2005-10-19  Wim Taymans  <wim@fluendo.com>
18297
18298         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
18299         (query_positions_elems), (query_positions_pads), (update_scale),
18300         (do_seek), (set_update_scale), (message_received), (main):
18301         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
18302         (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
18303         (gst_ogg_demux_loop):
18304         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
18305         * ext/theora/theoradec.c: (theora_dec_src_query),
18306         (theora_dec_sink_event):
18307         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
18308         (vorbis_dec_sink_event), (vorbis_handle_data_packet):
18309         * gst/adder/gstadder.c: (gst_adder_query):
18310         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
18311         * gst/playback/test3.c: (update_scale):
18312         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
18313         (dump_element_stats), (main):
18314         * gst/playback/test6.c: (main):
18315         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
18316         Query API update.
18317
18318 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
18319
18320         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
18321         (xml_check_first_element), (xml_type_find), (smil_type_find),
18322         (plugin_init):
18323           Add typefinding for SMIL and for generic XML. Based on patch by
18324           Akos Maroy (#308663).
18325
18326 2005-10-18  Wim Taymans  <wim@fluendo.com>
18327
18328         * gst/playback/Makefile.am:
18329         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
18330         (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
18331         (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
18332         (try_to_link_1), (new_pad), (no_more_pads), (type_found),
18333         (gst_decode_bin_change_state):
18334         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
18335         (gst_play_bin_send_event_to_sink):
18336         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
18337         (dump_element_stats), (main):
18338         * gst/playback/test6.c: (main):
18339         Make playbin async, it'll commit state to paused when all streams
18340         are detected.
18341         Remove ugly hack.
18342         Added test6.c to show async behaviour.
18343
18344 2005-10-18  Wim Taymans  <wim@fluendo.com>
18345
18346         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
18347         (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
18348         Fix for segment-start/stop API change.
18349
18350 2005-10-18  Wim Taymans  <wim@fluendo.com>
18351
18352         * check/Makefile.am:
18353         * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
18354         (main):
18355         Add future test for clock selection.
18356
18357 2005-10-18  Wim Taymans  <wim@fluendo.com>
18358
18359         * ext/alsa/gstalsasink.c: (gst_alsasink_init),
18360         (gst_alsasink_close):
18361         Set handle to NULL.
18362
18363         * gst-libs/gst/audio/gstringbuffer.c:
18364         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
18365         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
18366         (gst_ring_buffer_start), (gst_ring_buffer_pause),
18367         (gst_ring_buffer_stop), (gst_ring_buffer_commit),
18368         (gst_ring_buffer_read):
18369         More debug info.
18370
18371 2005-10-17  Stefan Kost  <ensonic@users.sf.net>
18372
18373         * gst/audiotestsrc/Makefile.am:
18374         * gst/sine/Makefile.am:
18375         * gst/volume/Makefile.am:
18376           fix broken build of controllerized plugins
18377
18378 2005-10-17  Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
18379
18380         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
18381
18382         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
18383         (gst_riff_create_video_template_caps):
18384           Add support for Indeo-3 (IV32).
18385
18386 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
18387
18388         * configure.ac:
18389           rewrite
18390
18391 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
18392
18393         * gst-libs/gst/video/video.c: (gst_video_get_size):
18394         * gst/audiotestsrc/gstaudiotestsrc.c:
18395           doc updates
18396
18397 2005-10-17  Andy Wingo  <wingo@pobox.com>
18398
18399         * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
18400         with the collectpads change.
18401         (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
18402
18403         * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
18404
18405         * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
18406
18407         * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
18408         alloc_buffer flow return to callers.
18409         (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
18410         change. Fix some memleaks in theoraenc.
18411
18412         * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
18413         in strange circumstance.
18414
18415 2005-10-17  Julien MOUTTE  <julien@moutte.net>
18416
18417         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18418         (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
18419         from caps, let's use the caps...
18420
18421 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
18422
18423         * configure.ac:
18424           put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
18425
18426 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
18427
18428         * gst-libs/gst/interfaces/Makefile.am:
18429           fix silly typo
18430
18431 2005-10-16  Andy Wingo  <wingo@pobox.com>
18432
18433         * gst/playback/gstdecodebin.c
18434         (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
18435         function!
18436         (try_to_link_1): Increase kraziness level.
18437
18438 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
18439
18440         * configure.ac:
18441           restructure like the core one
18442         * gst-libs/gst/audio/Makefile.am:
18443         * gst-libs/gst/interfaces/Makefile.am:
18444         * gst-libs/gst/net/Makefile.am:
18445         * gst-libs/gst/riff/Makefile.am:
18446         * gst-libs/gst/rtp/Makefile.am:
18447         * gst-libs/gst/tag/Makefile.am:
18448         * gst-libs/gst/video/Makefile.am:
18449           use correct linker flags, now the libs are properly versioned
18450         * check/elements/audioconvert.c: (verify_convert):
18451         * ext/alsa/gstalsaplugin.c:
18452         * ext/cdparanoia/gstcdparanoia.c:
18453         * ext/gnomevfs/gstgnomevfs.c:
18454         * ext/libvisual/visual.c:
18455         * ext/ogg/gstogg.c:
18456         * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
18457         * ext/theora/theora.c:
18458         * ext/vorbis/vorbis.c:
18459         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
18460         * gst-libs/gst/tag/gsttagediting.c:
18461         * gst-libs/gst/video/video.c:
18462         * gst/adder/gstadder.c:
18463         * gst/audioconvert/plugin.c:
18464         * gst/audiorate/gstaudiorate.c:
18465         * gst/audioresample/gstaudioresample.c:
18466         * gst/audioresample/resample_ref.c: (resample_scale_ref):
18467         * gst/audioscale/gstaudioscale.c:
18468         * gst/audioscale/resample.c:
18469         * gst/audiotestsrc/gstaudiotestsrc.c:
18470         * gst/ffmpegcolorspace/gstffmpeg.c:
18471         * gst/playback/gstdecodebin.c: (close_pad_link):
18472         * gst/playback/gstplaybin.c: (gen_video_element),
18473         (gen_audio_element):
18474         * gst/sine/gstsinesrc.c:
18475         * gst/subparse/gstsubparse.c:
18476         * gst/tags/gsttagediting.c:
18477         * gst/tcp/gsttcpplugin.c:
18478         * gst/typefind/gsttypefindfunctions.c:
18479         * gst/videorate/gstvideorate.c:
18480         * gst/videoscale/gstvideoscale.c:
18481         * gst/videotestsrc/gstvideotestsrc.c:
18482         * gst/volume/gstvolume.c:
18483         * sys/v4l/gstv4l.c:
18484         * sys/ximage/ximage.c:
18485         * sys/xvimage/xvimagesink.c:
18486           fix up defines
18487
18488 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
18489
18490         * ext/vorbis/vorbisenc.c:
18491         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
18492         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
18493         (gst_tag_to_vorbis_comments):
18494           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
18495
18496 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
18497
18498         * examples/stats/mp2ogg.c:
18499         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18500           typo fixes
18501
18502 2005-10-13  Michael Smith <msmith@fluendo.com>
18503
18504         * ext/ogg/gstoggmux.c:
18505           Use magic glib macros to define constants as 64 bit, to ensure
18506           appropriate vararg passing.
18507
18508 2005-10-13  Michael Smith <msmith@fluendo.com>
18509
18510         * ext/ogg/gstoggmux.c:
18511         * gst/audioconvert/audioconvert.c: (float):
18512           Don't use LL suffix, as it's not portable, and neither of these
18513           uses required it anyway.
18514
18515 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
18516
18517         * examples/indexing/indexmpeg.c: (main):
18518         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
18519         (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
18520         (cdparanoia_convert), (cdparanoia_query):
18521         * ext/cdparanoia/gstcdparanoia.h:
18522         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
18523         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
18524         (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
18525         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
18526         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
18527         * gst/playback/gststreamselector.c: (gst_stream_selector_init):
18528         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
18529         (gst_multifdsink_render), (gst_multifdsink_start),
18530         (gst_multifdsink_stop):
18531         * gst/tcp/gstmultifdsink.h:
18532         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
18533         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
18534         (gst_tcpclientsink_stop):
18535         * gst/tcp/gsttcpclientsink.h:
18536         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
18537         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
18538         (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
18539         * gst/tcp/gsttcpclientsrc.h:
18540         * gst/tcp/gsttcpserversink.h:
18541         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
18542         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
18543         (gst_tcpserversrc_stop):
18544         * gst/tcp/gsttcpserversrc.h:
18545         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
18546         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
18547         * sys/ximage/ximagesink.c: (gst_ximagesink_init):
18548           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
18549           moved bitshift from macro to enum definition
18550
18551 2005-10-12  Wim Taymans  <wim@fluendo.com>
18552
18553         * examples/seeking/Makefile.am:
18554         Oops.
18555
18556 2005-10-12  Wim Taymans  <wim@fluendo.com>
18557
18558         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
18559         (gst_ring_buffer_read), (gst_ring_buffer_clear):
18560         Don't assert on normal stuff.
18561
18562         * gst/playback/gstplaybin.c: (do_playbin_seek):
18563         API fix.
18564
18565 2005-10-12  Wim Taymans  <wim@fluendo.com>
18566
18567         * check/pipelines/simple_launch_lines.c: (run_pipeline):
18568         * examples/seeking/Makefile.am:
18569         * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
18570         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
18571         (do_seek), (set_update_scale), (message_received), (main):
18572         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
18573         (gst_ring_buffer_read), (gst_ring_buffer_clear):
18574         Update for _get_state() API change.
18575
18576 2005-10-11  Wim Taymans  <wim@fluendo.com>
18577
18578         * gst-libs/gst/audio/gstbaseaudiosink.c:
18579         (gst_base_audio_sink_render):
18580         * gst-libs/gst/audio/gstbaseaudiosrc.c:
18581         (gst_base_audio_src_create):
18582         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
18583         (gst_ring_buffer_read):
18584         Cleanups.
18585         Commit and read from ringbuffer in samples rather than bytes.
18586
18587 2005-10-11  Wim Taymans  <wim@fluendo.com>
18588
18589         * gst-libs/gst/audio/gstbaseaudiosink.c:
18590         (gst_base_audio_sink_render):
18591         Respect segment rate and accum when scheduling samples.
18592
18593 2005-10-11  Julien MOUTTE  <julien@moutte.net>
18594
18595         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
18596         (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
18597         EOS correctly, that needs more work.
18598
18599 2005-10-11  Wim Taymans  <wim@fluendo.com>
18600
18601         * check/generic/states.c: (GST_START_TEST):
18602         remove old property.
18603
18604         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
18605         (gst_ogg_demux_perform_seek):
18606         * ext/theora/theoradec.c: (theora_dec_sink_event):
18607         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
18608         (vorbis_handle_data_packet):
18609         * gst-libs/gst/rtp/gstbasertpdepayload.c:
18610         (gst_base_rtp_depayload_set_gst_timestamp):
18611         * gst/videorate/gstvideorate.c: (gst_videorate_event):
18612         Update for newsegment API change.
18613
18614 2005-10-11  Michael Smith <msmith@fluendo.com>
18615
18616         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
18617         (do_playbin_seek), (gst_play_bin_send_event):
18618           Override send_event differently, so that we can takes bits of
18619           functionality from GstPipeline (special handling for seeks,
18620           including pausing/resuming, and resetting stream time) and still get
18621           the appropriate behaviour of only forwarding event to a single sink,
18622           rather than all of them.
18623           Unfortunately requires a lot of code duplication, but the
18624           alternatives are equally ugly in the end.
18625
18626 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
18627
18628         * check/elements/audioconvert.c: (setup_audioconvert),
18629         (cleanup_audioconvert), (get_int_caps), (verify_convert),
18630         (GST_START_TEST), (audioconvert_suite):
18631           clean up tests a little, fix some leaks.
18632
18633 2005-10-10  Wim Taymans  <wim@fluendo.com>
18634
18635         * ext/alsa/gstalsasink.c:
18636         Also allow unsigned int.
18637
18638         * gst-libs/gst/audio/gstbaseaudiosrc.c:
18639         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
18640         Small cleanup
18641
18642 2005-10-10  Wim Taymans  <wim@fluendo.com>
18643
18644         * check/pipelines/simple_launch_lines.c: (run_pipeline):
18645         Small update, use API as stated in design docs.
18646
18647         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
18648         (update_scale), (do_seek), (seek_cb), (set_update_scale),
18649         (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
18650         (message_received), (main):
18651         Updated seek example for GOption. Some usability improvements.
18652
18653 2005-10-10  Wim Taymans  <wim@fluendo.com>
18654
18655         * gst/audioconvert/audioconvert.h:
18656         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
18657         (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
18658         Alloc temp storage somewhere else where we can do it more
18659         portable.
18660
18661 2005-10-10  Wim Taymans  <wim@fluendo.com>
18662
18663         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
18664         (gst_tcpserversrc_start):
18665         Don't block in accept while doing the state change, move
18666         to poll and make cancellable.
18667
18668 2005-10-09  Philippe Khalaf <burger@speedy.org>
18669
18670         * gst-libs/gst/rtp/rtpbasedepayload.c:
18671         Set timestamp and add queue delay to timestamp
18672         * gst-libs/gst/rtp/rtpbuffer.h:
18673         Set correct payload type for h263
18674
18675 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
18676
18677         * gst/audiotestsrc/gstaudiotestsrc.c:
18678         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
18679         (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
18680         (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
18681         (gst_audiotestsrc_create_triangle),
18682         (gst_audiotestsrc_create_silence),
18683         (gst_audiotestsrc_create_white_noise),
18684         (gst_audiotestsrc_init_pink_noise),
18685         (gst_audiotestsrc_generate_pink_noise_value),
18686         (gst_audiotestsrc_create_pink_noise),
18687         (gst_audiotestsrc_change_wave):
18688         * gst/audiotestsrc/gstaudiotestsrc.h:
18689           fixed typo, added pink noise
18690
18691 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
18692
18693         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
18694         (plugin_init):
18695           Add wavpack and spc typefind functions from 0.8 branch.
18696
18697 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
18698
18699         * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
18700         (ar_type_find), (msdos_type_find), (plugin_init):
18701           Add typefind functions for tar archives, ar archives,
18702           RAR archives, and msdos-executables (dlls, exe, etc.).
18703           Some of those would be wrongly identified as mpeg
18704           streams of some sort before (#315550).
18705
18706 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
18707
18708         * configure.ac:
18709         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
18710         * docs/plugins/gst-plugins-base-plugins-sections.txt:
18711         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
18712         * gst/audiotestsrc/Makefile.am:
18713         * gst/audiotestsrc/gstaudiotestsrc.c:
18714         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
18715         (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
18716         (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
18717         (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
18718         (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
18719         (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
18720         (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
18721         (gst_audiotestsrc_create_silence),
18722         (gst_audiotestsrc_create_white_noise),
18723         (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
18724         (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
18725         (gst_audiotestsrc_start), (plugin_init):
18726         * gst/audiotestsrc/gstaudiotestsrc.h:
18727           add new plugin and element
18728         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
18729           use gobject_class
18730
18731 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
18732
18733         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
18734         (gst_adder_init), (gst_adder_request_new_pad),
18735         (gst_adder_change_state):
18736           Add query function to source pad, so adder reports the correct
18737           time/sample position when queried (#315457); fix state change
18738           function; use GST_DEBUG_FUNCPTR() for pad functions.
18739
18740 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
18741
18742         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
18743           Fix leaks in typefind registration
18744           Clean up the gratuitous commenting and whitespacing a little
18745
18746 2005-10-08  Wim Taymans  <wim@fluendo.com>
18747
18748         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
18749         Only actually wait for the thread to be stopped if it's 
18750         running.
18751
18752 2005-10-08  Wim Taymans  <wim@fluendo.com>
18753
18754         * gst-libs/gst/audio/gstbaseaudiosink.c:
18755         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
18756         If we receive EOS we can start playback of what we had.
18757
18758 2005-10-08  Wim Taymans  <wim@fluendo.com>
18759
18760         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
18761         (gst_multifdsink_finalize), (multifdsink_hash_remove),
18762         (gst_multifdsink_stop):
18763         Fix crasher when going to NULL multiple times.
18764
18765 2005-10-06  Wim Taymans  <wim@fluendo.com>
18766
18767         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
18768         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
18769         * gst-libs/gst/audio/gstbaseaudiosrc.h:
18770         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
18771         patch from Edgard Lima <edgard.lima@indt.org.br>
18772         Fixed gstbaseaudiosrc adding ring buffer sync to it.
18773
18774 2005-10-06  Wim Taymans  <wim@fluendo.com>
18775
18776         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
18777         Report the FLOW_RETURN as string in the error message.
18778
18779         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
18780         Don't assert when clearing an unnegotiated buffer.
18781
18782 2005-10-04  Michael Smith <msmith@fluendo.com>
18783
18784         * gst/playback/gstplaybasebin.c: (group_destroy),
18785         (gen_preroll_element), (remove_groups), (setup_source):
18786         * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
18787         (setup_sinks), (gst_play_bin_send_event),
18788         (gst_play_bin_change_state):
18789           Set state to NULL before removing from bin. Fix refcounting.
18790
18791 2005-10-04  Michael Smith <msmith@fluendo.com>
18792
18793         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
18794           Correct refcounting in send_event() function. Previously was wrong
18795           if the first sink was unable to handle the event.
18796
18797 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
18798
18799         * configure.ac:
18800           back to development
18801
18802 === release 0.9.3 ===
18803
18804 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
18805
18806         * configure.ac:
18807           Releasing 0.9.3, "De Facto"
18808
18809 2005-10-03  Andy Wingo  <wingo@pobox.com>
18810
18811         * gst/playback/gstdecodebin.c (try_to_link_1)
18812         (remove_element_chain): set element to NULL before removing it.
18813
18814 2005-10-02  Johan Dahlin  <johan@gnome.org>
18815
18816         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols): 
18817         protect gst_gnomevfs_get_supported_uris by a mutex, to make it
18818         MT safe.
18819
18820 2005-10-02  Andy Wingo  <wingo@pobox.com>
18821
18822         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear) 
18823         (gst_ring_buffer_prepare_read): 
18824         * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
18825         Demote to LOG.
18826
18827 2005-09-29  Wim Taymans  <wim@fluendo.com>
18828
18829         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
18830         * ext/theora/theoradec.c: (theora_handle_data_packet):
18831         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
18832         Propagate error codes from alloc_buffer too.
18833
18834 2005-09-29  Wim Taymans  <wim@fluendo.com>
18835
18836         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
18837         We use fixed caps.
18838
18839         * gst/playback/Makefile.am:
18840         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
18841         (dump_element_stats), (main):
18842         Added example stream introspection code.
18843
18844 2005-09-28  Stefan Kost  <ensonic@users.sf.net>
18845
18846         * gst/adder/gstadder.c: (gst_adder_collected):
18847           fix adder for float elements
18848
18849 2005-09-28  Wim Taymans  <wim@fluendo.com>
18850
18851         * gst-libs/gst/audio/gstbaseaudiosink.c:
18852         (gst_base_audio_sink_class_init),
18853         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
18854         * gst-libs/gst/audio/gstbaseaudiosrc.c:
18855         (gst_base_audio_src_class_init),
18856         (gst_base_audio_src_provide_clock):
18857         get_clock -> provide_clock
18858
18859 2005-09-28  Andy Wingo  <wingo@pobox.com>
18860
18861         * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
18862         and unlocking.
18863
18864         * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
18865         unlocking.
18866
18867         * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
18868         Actually add the pad template.
18869         (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
18870
18871         * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
18872         I'm at it...
18873
18874         * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
18875         from fdsrc. Get caps in create() instead of start() so it can be
18876         interrupted. Interruption somewhat untested.
18877
18878         * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
18879         Proper EOS handling.
18880
18881 2005-09-27  Andy Wingo  <wingo@pobox.com>
18882
18883         * gst/tcp/gsttcpclientsrc.c: Cleaned up.
18884
18885         * gst/tcp/gsttcpserversrc.c: Cleaned up.
18886
18887         * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
18888
18889         * gst/tcp/gsttcp.h: 
18890         * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
18891         out of tcpclientsrc.c. Cancellable.
18892         (gst_tcp_socket_read): Made private, cancellable, with better
18893         diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
18894         (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
18895         whole buffer, and better diagnostics.
18896         (gst_tcp_gdp_read_caps): Same.
18897
18898         * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
18899
18900 2005-09-26  Andy Wingo  <wingo@pobox.com>
18901
18902         * gst/sine/gstsinesrc.h:
18903         * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
18904         change the 'sync' property to 'is-live' and implement it halfway,
18905         update for controller api change.
18906
18907         * gst/volume/gstvolume.c (volume_transform_ip): Update for
18908         controller api change.
18909
18910 2005-09-24  Wim Taymans  <wim@fluendo.com>
18911
18912         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
18913         * gst-libs/gst/audio/gstaudiosink.c:
18914         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
18915         (gst_audioringbuffer_stop):
18916         * gst-libs/gst/audio/gstbaseaudiosink.c:
18917         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
18918         (gst_base_audio_sink_change_state):
18919         * gst-libs/gst/audio/gstbaseaudiosink.h:
18920         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
18921         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
18922         (gst_ring_buffer_commit), (gst_ring_buffer_read):
18923         * gst-libs/gst/audio/gstringbuffer.h:
18924         Fix sync again. Moved sample alignment to basesink.
18925
18926 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18927
18928         * docs/plugins/Makefile.am:
18929         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
18930         * docs/plugins/gst-plugins-base-plugins-sections.txt:
18931         * gst/volume/gstvolume.c:
18932           add/fix docs
18933         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
18934         * gst-libs/gst/audio/audio.h:
18935           add conversion macros for frames <-> clocktime
18936
18937 2005-09-23  David Schleef  <ds@schleef.org>
18938
18939         * gst/audioresample/Makefile.am:
18940         * gst/audioresample/debug.h:
18941         * gst/audioresample/gstaudioresample.c:
18942         * gst/audioresample/resample.c: Convert to using gst debugging
18943
18944 2005-09-22  Wim Taymans  <wim@fluendo.com>
18945
18946         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
18947         (gst_play_bin_send_event):
18948         Only seek on one sink, the first one that succeeds.
18949
18950 2005-09-22  Michael Smith <msmith@fluendo.com>
18951
18952         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
18953         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
18954         Don't flush encoder state unless we have an initialised encoder.
18955         Clear out encoder state on PAUSED_TO_READY.
18956
18957 2005-09-22  Wim Taymans  <wim@fluendo.com>
18958
18959         * gst-libs/gst/rtp/gstbasertppayload.c:
18960         (gst_basertppayload_class_init), (gst_basertppayload_init),
18961         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
18962         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
18963         (gst_basertppayload_is_filled), (gst_basertppayload_push),
18964         (gst_basertppayload_set_property),
18965         (gst_basertppayload_get_property),
18966         (gst_basertppayload_change_state):
18967         * gst-libs/gst/rtp/gstbasertppayload.h:
18968         Added max-ptime to control amount of data in the rtp packets.
18969
18970 2005-09-21  Andy Wingo  <wingo@pobox.com>
18971
18972         * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
18973         thingies.
18974
18975         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
18976         can be called multiple times, dogs.
18977
18978 2005-09-21  Wim Taymans  <wim@fluendo.com>
18979
18980         * gst-libs/gst/rtp/gstbasertppayload.c:
18981         (gst_basertppayload_class_init), (gst_basertppayload_init),
18982         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
18983         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
18984         (gst_basertppayload_push), (gst_basertppayload_get_property),
18985         (gst_basertppayload_change_state):
18986         Allow 0 ssrc too.
18987
18988 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
18989
18990         * docs/libs/compiling.sgml:
18991           fixing typos
18992
18993 2005-09-20  Wim Taymans  <wim@fluendo.com>
18994
18995         * gst-libs/gst/rtp/gstbasertppayload.c:
18996         (gst_basertppayload_class_init), (gst_basertppayload_init),
18997         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
18998         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
18999         (gst_basertppayload_push), (gst_basertppayload_set_property),
19000         (gst_basertppayload_get_property),
19001         (gst_basertppayload_change_state):
19002         * gst-libs/gst/rtp/gstbasertppayload.h:
19003         Added property to configure sequence number offsets.
19004
19005 2005-09-20  Wim Taymans  <wim@fluendo.com>
19006
19007         * gst-libs/gst/rtp/gstbasertppayload.c:
19008         (gst_basertppayload_class_init), (gst_basertppayload_init),
19009         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
19010         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
19011         (gst_basertppayload_push), (gst_basertppayload_set_property),
19012         (gst_basertppayload_get_property),
19013         (gst_basertppayload_change_state):
19014         * gst-libs/gst/rtp/gstbasertppayload.h:
19015         Make timestamp offset configurable.
19016
19017 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
19018
19019         * check/pipelines/simple_launch_lines.c: (run_pipeline):
19020           fix wrong pop/unref
19021
19022 2005-09-19  Torsten Schoenfeld  <kaffeetisch at gmx dot net>
19023
19024         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
19025
19026         * gst-libs/gst/interfaces/propertyprobe.c:
19027         (gst_property_probe_probe_property_name),
19028         (gst_property_probe_needs_probe_name),
19029         (gst_property_probe_get_values_name),
19030         (gst_property_probe_probe_and_get_values_name):
19031           Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
19032           G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
19033
19034 2005-09-19  Thomas Vander Stichele  <thomas at apestaart dot org>
19035
19036         * check/Makefile.am:
19037           have some tests be disabled for valgrinding
19038         * check/elements/vorbisdec.c: (cleanup_vorbisdec),
19039         (GST_START_TEST):
19040         * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
19041           Fix A Leak.  Chain To Parent Finalize.
19042
19043 2005-09-19  Wim Taymans  <wim@fluendo.com>
19044
19045         * examples/seeking/seek.c: (make_wav_pipeline), (main):
19046         Fixed wav pipeline.
19047
19048 2005-09-19  Wim Taymans  <wim@fluendo.com>
19049
19050         * gst-libs/gst/rtp/gstbasertppayload.c:
19051         (gst_basertppayload_class_init), (gst_basertppayload_init),
19052         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
19053         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
19054         (gst_basertppayload_push), (gst_basertppayload_get_property),
19055         (gst_basertppayload_change_state):
19056         Posting ERROR and WARNING messages is good.
19057
19058 2005-09-19  Wim Taymans  <wim@fluendo.com>
19059
19060         * gst-libs/gst/rtp/gstbasertpdepayload.c:
19061         (gst_base_rtp_depayload_add_to_queue),
19062         (gst_base_rtp_depayload_push),
19063         (gst_base_rtp_depayload_set_gst_timestamp),
19064         (gst_base_rtp_depayload_queue_release):
19065         This one was not supposed to go in.
19066
19067 2005-09-19  Wim Taymans  <wim@fluendo.com>
19068
19069         * check/pipelines/simple_launch_lines.c: (run_pipeline):
19070         Fix for bus API.
19071
19072         * gst-libs/gst/rtp/gstbasertpdepayload.c:
19073         (gst_base_rtp_depayload_chain),
19074         (gst_base_rtp_depayload_add_to_queue),
19075         (gst_base_rtp_depayload_push),
19076         (gst_base_rtp_depayload_set_gst_timestamp),
19077         (gst_base_rtp_depayload_queue_release):
19078         Some cleanups.
19079
19080         * gst-libs/gst/rtp/gstbasertppayload.c:
19081         (gst_basertppayload_class_init), (gst_basertppayload_init),
19082         (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
19083         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
19084         (gst_basertppayload_get_property),
19085         (gst_basertppayload_change_state):
19086         Added debugging category.
19087
19088 2005-09-18  David Schleef  <ds@schleef.org>
19089
19090         * gst/playback/gstdecodebin.c: free plugin list correctly
19091         * gst/playback/gstplaybin.c: emit warning if autovideosink
19092           and autoaudiosink can't be found (instead of segfaulting)
19093
19094 2005-09-17  Thomas Vander Stichele  <thomas at apestaart dot org>
19095
19096         * check/elements/audioconvert.c: (GST_START_TEST):
19097           try out 24 bit conversion
19098
19099 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
19100
19101         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
19102         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
19103         (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
19104         * ext/vorbis/vorbisenc.h:
19105           Fix EOS handling.  Still needs a fix in the ogg muxer to
19106           mark the last page as eos.
19107
19108 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
19109
19110         * common/gtk-doc-plugins.mak:
19111         * docs/plugins/Makefile.am:
19112         * docs/plugins/gst-plugins-base-plugins-sections.txt:
19113         * gst/ffmpegcolorspace/Makefile.am:
19114         * gst/ffmpegcolorspace/avcodec.h:
19115         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19116         * gst/tcp/gstmultifdsink.c:
19117           fix up ffmpegcolorspace docs; extract header
19118
19119 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
19120
19121         * common/gtk-doc-plugins.mak:
19122         * docs/plugins/Makefile.am:
19123         * docs/plugins/gst-plugins-base-plugins-sections.txt:
19124         * ext/theora/Makefile.am:
19125         * ext/theora/gsttheoraenc.h:
19126         * ext/theora/theoraenc.c:
19127         * ext/vorbis/vorbisenc.c:
19128           pick up signals and args for vorbis; add some docs for vorbis
19129
19130 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
19131
19132         * common/gstdoc-scangobj:
19133         * common/gtk-doc-plugins.mak:
19134         * docs/libs/Makefile.am:
19135         * docs/plugins/gst-plugins-base-plugins.args:
19136         * docs/plugins/gst-plugins-base-plugins.hierarchy:
19137         * docs/plugins/gst-plugins-base-plugins.interfaces:
19138         * docs/plugins/gst-plugins-base-plugins.prerequisites:
19139         * docs/plugins/gst-plugins-base-plugins.signals:
19140           only scanobj stuff from our source module.  Not sure yet
19141           if that's correct, given the hierarchy stuff :)
19142
19143 2005-09-15  Wim Taymans  <wim@fluendo.com>
19144
19145         * gst/audioconvert/gstaudioconvert.c:
19146         And enable 24 bits mode as well..
19147
19148 2005-09-15  Wim Taymans  <wim@fluendo.com>
19149
19150         * gst-libs/gst/rtp/Makefile.am:
19151         * gst-libs/gst/rtp/gstbasertppayload.c:
19152         (gst_basertppayload_get_type), (gst_basertppayload_base_init),
19153         (gst_basertppayload_class_init), (gst_basertppayload_init),
19154         (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
19155         (gst_basertppayload_chain), (gst_basertppayload_set_options),
19156         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
19157         (gst_basertppayload_set_property),
19158         (gst_basertppayload_get_property),
19159         (gst_basertppayload_change_state):
19160         * gst-libs/gst/rtp/gstbasertppayload.h:
19161         Added rtp payloader base class.
19162
19163 2005-09-15  Andy Wingo  <wingo@pobox.com>
19164
19165         * configure.ac (plugindir): Remove the EOL matcher from the
19166         regexp, as it causes me problems. Libtool? Make? Who knows?
19167
19168 2005-09-14  David Schleef  <ds@schleef.org>
19169
19170         * check/generic/states.c: 
19171         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
19172         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
19173           Fixes for changes in registry API.
19174
19175         * configure.ac: Only export gst_plugins_desc.  Add -no-undefined
19176           to GST_PLUGIN_LDFLAGS.
19177         * ext/libvisual/visual.c: Make the library shut up.
19178         * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
19179         * gst-libs/gst/audio/gstaudiofilter.c: same
19180
19181 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
19182
19183         * docs/plugins/Makefile.am:
19184         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
19185         * docs/plugins/inspect/plugin-libvisual.xml:
19186         * docs/plugins/tmpl/element-tcpserversink.sgml:
19187         * ext/theora/theoraenc.c:
19188           add libvisual plugin and theoraenc element to docs
19189
19190 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
19191
19192         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
19193         * docs/plugins/gst-plugins-base-plugins-sections.txt:
19194         * ext/theora/theoraenc.c:
19195           add theoraenc
19196
19197 2005-09-13  Tim-Philipp Müller  <tim at centricular dot net>
19198
19199         * gst/audioconvert/Makefile.am:
19200           Audioconvert derives from GstBaseTransform and should
19201           link to the library with our base elements to avoid
19202           unresolved symbols. Makes things work with MinGW (#316160)
19203
19204         * gst/playback/test4.c: (main):
19205           Fix MinGW build problem and use g_usleep() instead of 
19206           sleep() (#316162)
19207
19208 2005-09-12  Wim Taymans  <wim@fluendo.com>
19209
19210         * gst/audioconvert/audioconvert.c: (float),
19211         (audio_convert_prepare_context), (audio_convert_convert):
19212         * gst/audioconvert/audioconvert.h:
19213         Cleanups, speedups, simplifications, added back support
19214         for 24 bits.
19215
19216 2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>
19217
19218         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
19219         * docs/plugins/gst-plugins-base-plugins-sections.txt:
19220         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
19221         * docs/plugins/tmpl/element-tcpserversink.sgml:
19222         * gst/ffmpegcolorspace/gstffmpeg.c:
19223         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19224         * gst/videotestsrc/gstvideotestsrc.c:
19225         * gst/volume/gstvolume.c:
19226           add more elements to the docs
19227
19228 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
19229
19230         * check/Makefile.am:
19231         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
19232         (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
19233           Add extra tests for basetransform based components. 
19234           Comment out the test_element_negotiation test until we decide
19235           if it's testing correct behaviour.
19236         * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
19237         (gst_visual_chain), (gst_visual_change_state):
19238           Slightly more correct but still bogus timestamping.
19239           Fix state change function.
19240         * gst/audioconvert/gstaudioconvert.c:
19241         (gst_audio_convert_class_init):
19242         * gst/audioresample/gstaudioresample.c:
19243         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19244         (gst_ffmpegcsp_class_init):
19245         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
19246         (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
19247         (gst_videoscale_prepare_image):
19248         * gst/volume/gstvolume.c: (gst_volume_class_init),
19249         (volume_transform_ip):
19250           Basetransform updates. Enable passthrough modes.
19251         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
19252         (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
19253         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
19254           Negotiation fix that allows the window to return to the original
19255           size and renegotiate passthrough upstream. Extra debug output.
19256
19257 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
19258
19259         * gst/sine/gstsinesrc.c:
19260         * gst/volume/gstvolume.c:
19261           fix up header include
19262
19263 2005-09-09  Stefan Kost  <ensonic@users.sf.net>
19264
19265         * gst-libs/gst/audio/gstbaseaudiosink.c:
19266         (gst_base_audio_sink_render):
19267         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
19268         * gst/volume/gstvolume.c: (gst_volume_class_init),
19269         (volume_transform):
19270           fixing lost sync, some more debugging
19271
19272 2005-09-08  Jan Schmidt  <thaytan@mad.scientist.com>
19273
19274         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
19275         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
19276         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
19277         (gst_xvimagesink_check_xshm_calls):
19278           Fix compilation when XShm is not available.
19279
19280 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
19281
19282         * ext/libvisual/visual.c: (gst_visual_dispose),
19283         (gst_visual_getcaps), (gst_visual_src_setcaps),
19284         (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
19285         (gst_visual_change_state):
19286           Finish fixing up libvisual plugin so that it runs. 
19287
19288 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
19289
19290         * ext/vorbis/vorbisenc.c:
19291         * gst-libs/gst/tag/gstvorbistag.c:
19292           gsttaginterface.h -> gsttagsetter.h
19293
19294 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
19295
19296         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
19297           added another test that failes for me (test is not active by default)
19298
19299 2005-09-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
19300
19301         * configure.ac:
19302           v4l2 is no longer in gst-plugins-base
19303
19304 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
19305
19306         * configure.ac:
19307           In the output at the end, don't show the first plugin on the same
19308           line as "Core plug-ins, always built:".
19309           Indent the output as for other plugin categories
19310         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
19311           #define that can be used to not use peer buffer_alloc functions for
19312           test purposes.
19313         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
19314         (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
19315         (gst_ximagesink_show_frame):
19316         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
19317         (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
19318         (gst_xvimagesink_show_frame):
19319           Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
19320           fails gracefully instead of XError aborting or deadlocking.
19321
19322 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
19323
19324         * ext/libvisual/Makefile.am:
19325           link against gst-base-libs
19326
19327 2005-09-06  David Schleef  <ds@schleef.org>
19328
19329         * configure.ac: Enable libvisual plugin.
19330         * ext/libvisual/Makefile.am:
19331         * ext/libvisual/visual.c: Fixes to make it compile.
19332
19333 === release 0.9.2 ===
19334
19335 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
19336
19337         * NEWS:
19338         * RELEASE:
19339         * configure.ac:
19340         * docs/random/ChangeLog-0.8:
19341           releasing 0.9.2, "Spoon"
19342
19343 2005-09-05  Michael Smith <msmith@fluendo.com>
19344
19345         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
19346           libvorbis accepts quality as low as -0.1, not just 0.0. So accept
19347           that in the vorbisenc element.
19348
19349 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
19350
19351         * common/gtk-doc-plugins.mak:
19352         * docs/plugins/Makefile.am:
19353           fix distcheck
19354         * gst/audioresample/resample.c:
19355           fix wrong docstring
19356
19357 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
19358
19359         * common/gst-xmlinspect.py:
19360         * common/gtk-doc-plugins.mak:
19361           only inspect plugins for this given package
19362           require gst-python 0.9
19363
19364 2005-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
19365
19366         * Makefile.am:
19367         * autogen.sh:
19368         * common/gst-xmlinspect.py:
19369         * configure.ac:
19370         * docs/Makefile.am:
19371         * docs/plugins/inspect/plugin-alsa.xml:
19372         * docs/plugins/inspect/plugin-audioresample.xml:
19373         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
19374         * docs/plugins/inspect/plugin-ogg.xml:
19375         * docs/plugins/tmpl/element-gnomevfssink.sgml:
19376         * docs/plugins/tmpl/element-multifdsink.sgml:
19377         * docs/plugins/tmpl/element-tcpserversink.sgml:
19378         * docs/plugins/tmpl/element-vorbisenc.sgml:
19379         * gst-plugins-base.spec.in:
19380           various doc-related updates
19381
19382 2005-08-31  Wim Taymans  <wim@fluendo.com>
19383
19384         * gst-libs/gst/audio/gstbaseaudiosink.c:
19385         (gst_base_audio_sink_render):
19386         Resync if the buffer timestamps drift more than a 10th 
19387         of a second.
19388
19389 2005-08-31  Tim-Philipp Müller  <tim at centricular dot net>
19390
19391         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
19392         (gst_v4lsrc_get_property):
19393           The 'timestamp-offset' property is registered as an int64, so
19394           let's use g_value_{set|get}_int64() in our setter and getter
19395           functions (makes it work and fixes warnings with gst-inspect).
19396
19397 2005-08-30  Wim Taymans  <wim@fluendo.com>
19398
19399         * check/elements/audioconvert.c: (setup_audioconvert):
19400         * check/elements/audioresample.c: (setup_audioresample):
19401         * check/elements/volume.c: (setup_volume):
19402         Fix checks.
19403
19404 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
19405
19406         * common/gtk-doc-plugins.mak:
19407         * common/plugins.xsl:
19408         * docs/plugins/Makefile.am:
19409           make module a param
19410
19411 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
19412
19413         * examples/seeking/seek.c: (make_mp3_pipeline),
19414         (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
19415         (play_cb), (pause_cb), (stop_cb):
19416           update the example
19417
19418 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
19419
19420         * gst/volume/gstvolume.c: (gst_volume_class_init),
19421         (volume_transform):
19422           do not update controlled params, if buffer has no timestamp
19423
19424 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
19425
19426         * configure.ac:
19427         * gst/sine/Makefile.am:
19428         * gst/volume/Makefile.am:
19429           controllerized elements also need to link against controller-libs ;)
19430
19431 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
19432
19433         * docs/libs/tmpl/gstcolorbalance.sgml:
19434         * docs/libs/tmpl/gstgconf.sgml:
19435         * docs/libs/tmpl/gstmixer.sgml:
19436         * docs/libs/tmpl/gstringbuffer.sgml:
19437         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
19438         (gst_sinesrc_create):
19439         * gst/volume/gstvolume.c: (gst_volume_class_init),
19440         (volume_transform):
19441           controllerized two audio plugins
19442
19443 2005-08-29  Andy Wingo  <wingo@pobox.com>
19444
19445         * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push) 
19446         (vorbis_handle_data_packet): Fix some int overflow errors.
19447
19448         * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
19449         -1.
19450         (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
19451         valid.
19452         (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
19453         if it's valid. Fixed streaming-mode playback.
19454
19455         * check/elements/volume.c (cleanup_volume): Fix for running
19456         CK_FORK=no.
19457
19458         * check/elements/audioconvert.c: Convert from native endian, not
19459         little endian.
19460
19461 2005-08-29  Michael Smith <msmith@fluendo.com>
19462
19463         * ext/ogg/Makefile.am:
19464         * ext/ogg/gstogg.c: (plugin_init):
19465         * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
19466         (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
19467         (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
19468         (gst_ogg_parse_class_init), (gst_ogg_parse_init),
19469         (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
19470         (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
19471         (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
19472         (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
19473         Add an ogg parser element.
19474
19475 2005-08-28  Andy Wingo  <wingo@pobox.com>
19476
19477         * Updates for two-arg init from GST_BOILERPLATE_FULL.
19478
19479 2005-08-26  Wim Taymans  <wim@fluendo.com>
19480
19481         * gst/audioconvert/audioconvert.c: (if), (float),
19482         (audio_convert_get_func_index), (check_default),
19483         (audio_convert_clean_fmt), (audio_convert_prepare_context),
19484         (audio_convert_clean_context), (audio_convert_get_sizes),
19485         (audio_convert_convert):
19486         Cleanups.
19487
19488 2005-08-26  Wim Taymans  <wim@fluendo.com>
19489
19490         * gst/audioconvert/audioconvert.c: (if), (float),
19491         (audio_convert_get_func_index), (check_default),
19492         (audio_convert_clean_fmt), (audio_convert_prepare_context),
19493         (audio_convert_clean_context), (audio_convert_get_sizes),
19494         (audio_convert_convert):
19495         More elegant and working temp buffer selection algo.
19496
19497 2005-08-26  Wim Taymans  <wim@fluendo.com>
19498
19499         * gst/audioconvert/audioconvert.c: (if), (float),
19500         (audio_convert_get_func_index), (check_default),
19501         (audio_convert_clean_fmt), (audio_convert_prepare_context),
19502         (audio_convert_clean_context), (audio_convert_get_sizes),
19503         (get_temp_buffer), (audio_convert_convert):
19504         Use realloc else we lose our original data.
19505
19506 2005-08-26  Thomas Vander Stichele  <thomas at apestaart dot org>
19507
19508         * gst/audioresample/gstaudioresample.c:
19509           use base class' newsegment to properly timestamp
19510
19511 2005-08-26  Wim Taymans  <wim@fluendo.com>
19512
19513         * gst/audioconvert/audioconvert.c: (if), (float),
19514         (audio_convert_get_func_index), (check_default),
19515         (audio_convert_clean_fmt), (audio_convert_prepare_context),
19516         (audio_convert_clean_context), (audio_convert_get_sizes),
19517         (get_temp_buffer), (audio_convert_convert):
19518         * gst/audioconvert/gstaudioconvert.c:
19519         (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
19520         (gst_audio_convert_transform_caps),
19521         (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
19522         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
19523         Oops, allocate enough space to perform the channel mix.
19524
19525 2005-08-26  Wim Taymans  <wim@fluendo.com>
19526
19527         * gst/audioconvert/Makefile.am:
19528         * gst/audioconvert/audioconvert.c: (if), (float),
19529         (audio_convert_get_func_index), (check_default),
19530         (audio_convert_clean_fmt), (audio_convert_prepare_context),
19531         (audio_convert_clean_context), (audio_convert_get_sizes),
19532         (get_temp_buffer), (audio_convert_convert):
19533         * gst/audioconvert/audioconvert.h:
19534         * gst/audioconvert/gstaudioconvert.c:
19535         (gst_audio_convert_class_init), (gst_audio_convert_init),
19536         (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
19537         (gst_audio_convert_get_unit_size),
19538         (gst_audio_convert_transform_caps),
19539         (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
19540         (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
19541         * gst/audioconvert/gstaudioconvert.h:
19542         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
19543         (gst_channel_mix_fill_identical),
19544         (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
19545         (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
19546         (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
19547         (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
19548         (gst_channel_mix_mix):
19549         * gst/audioconvert/gstchannelmix.h:
19550         Cleanups, librarify a bit, optimize, better negotiation and more.
19551
19552 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
19553
19554         * ext/ogg/gstoggdemux.c: (ogg_find_peek):
19555         Another from MikeS:
19556         During typefinding, don't support negative offsets
19557         (offsets from the end of the stream) in our typefind->peek() function
19558         - nothing embedded in ogg ever needs them. However, we need to recognise
19559         those requests and reject them, otherwise we return invalid pointers.
19560
19561 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
19562
19563         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
19564         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
19565         (vorbisdec_finalize), (vorbis_handle_type_packet):
19566           Big shout-out to MikeS for fixing this giant memory leak.
19567           Huzzah!
19568
19569 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
19570
19571         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
19572         (audio_convert_get_unit_size):
19573           plug some leaks
19574
19575 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
19576
19577         * check/Makefile.am:
19578         * check/elements/audioconvert.c: (setup_audioconvert),
19579         (cleanup_audioconvert), (get_int_caps), (verify_convert),
19580         (GST_START_TEST), (audioconvert_suite), (main):
19581           add a test for audioconvert
19582         * gst/audioresample/gstaudioresample.c:
19583         * gst/audioresample/gstaudioresample.h:
19584           set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
19585           note that for buffers of 1/3 sec this means DURATION(c) is 
19586           one nanosecond more than for a and b
19587
19588 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
19589
19590         * check/Makefile.am:
19591         * check/elements/audioresample.c: (setup_audioresample),
19592         (cleanup_audioresample), (fail_unless_perfect_stream),
19593         (test_perfect_stream_instance), (GST_START_TEST),
19594           add a check for audioresample
19595         (audioresample_suite), (main):
19596         * check/elements/volume.c: (GST_START_TEST):
19597           remove unused method
19598         * gst/audioresample/gstaudioresample.c:
19599           set correct buffer parameters since we're changing them
19600         * gst/audioresample/resample_ref.c: (resample_scale_ref):
19601           add some debug
19602
19603 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
19604
19605         * gst/audioresample/debug.c:
19606         * gst/audioresample/gstaudioresample.c:
19607           add room for extra overlap samples when asked to transform size
19608           protect against possible mem corruption and check for discrepancies
19609           between written size and outbuffer's size so we can warn for
19610           potential problems
19611         * gst/audioresample/resample.c: (resample_init),
19612         (resample_get_output_size_for_input), (resample_get_output_size),
19613         (resample_set_n_channels), (resample_set_format):
19614           set debug level based on RESAMPLE_DEBUG env var
19615           make sure that get_output_size* returns a whole number of
19616           sample_size
19617           set sample_size each time either channel or format is set
19618         * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
19619         * gst/audioresample/resample_functable.c:
19620         (resample_scale_functable):
19621         * gst/audioresample/resample_ref.c: (resample_scale_ref):
19622           remove r->sample_size, it's done in resample.c now
19623           add some debugging to the ref implementation
19624           make sure we only give back bytes that are wholes of the sample
19625           size
19626
19627 2005-08-25  Jan Schmidt  <thaytan@mad.scientist.com>
19628         * gst/playback/gstplaybasebin.c: (fill_buffer):
19629         Revert unpopular change for GST_MESSAGE_SRC to GObject.
19630
19631 2005-08-25  Stefan Kost  <ensonic@users.sf.net>
19632
19633         * gst/volume/gstvolume.c:
19634           made set_caps function static
19635
19636 2005-08-24  Wim Taymans  <wim@fluendo.com>
19637
19638         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
19639         (gst_vorbisenc_change_state):
19640         Stop leaking taglists.
19641
19642 2005-08-24  Wim Taymans  <wim@fluendo.com>
19643
19644         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
19645         (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
19646         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
19647         (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
19648         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
19649         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
19650         Parse seeking events better.
19651         Unref static caps.
19652         Generate correct newsegment events, fixes seeking in live oggs.
19653
19654         * ext/theora/theoradec.c: (theora_dec_src_query),
19655         (theora_dec_src_event), (theora_dec_src_getcaps),
19656         (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
19657         Use newsegment values to report correct play time.
19658
19659         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
19660         (vorbis_dec_src_event), (vorbis_dec_sink_event):
19661         * ext/vorbis/vorbisdec.h:
19662         Parse and use newsegment values to report correct play time.
19663
19664         * gst-libs/gst/audio/gstbaseaudiosink.c:
19665         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
19666         Clear ringbuffer on flush.
19667         Use newsegment values to calculate playback time.
19668
19669         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
19670         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
19671         Basesink does newsegment calculations for us now.
19672
19673 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
19674
19675         * check/Makefile.am:
19676         * configure.ac:
19677           add core's plugins to the mix so that playbin works
19678         * check/generic/states.c: (GST_START_TEST):
19679           set a 0 timeout on pipelines, so they don't force the next
19680           state change
19681         * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
19682         (gst_play_base_bin_change_state):
19683           remove the crappy error handling and do GST error handling
19684
19685 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
19686
19687         * check/Makefile.am:
19688         * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
19689           add same test as to core, it bitches out on playbin atm.
19690
19691 2005-08-24  Wim Taymans  <wim@fluendo.com>
19692
19693         * configure.ac:
19694         Remove audioscale.
19695
19696 2005-08-24  Wim Taymans  <wim@fluendo.com>
19697
19698         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
19699         (gst_videoscale_prepare_size), (parse_caps),
19700         (gst_videoscale_set_caps), (gst_videoscale_get_size),
19701         (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
19702         (gst_videoscale_transform):
19703         * gst/videoscale/gstvideoscale.h:
19704         Refactor, make use of BaseTranform really well.
19705
19706 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
19707
19708         * configure.ac:
19709           compile audioresample
19710         * gst/audioresample/Makefile.am:
19711         * gst/audioresample/buffer.c:
19712         * gst/audioresample/functable.c:
19713         * gst/audioresample/gstaudioresample.c:
19714         * gst/audioresample/gstaudioresample.h:
19715         * gst/audioresample/resample.c:
19716         (resample_get_output_size_for_input):
19717         * gst/audioresample/resample.h:
19718         * gst/audioresample/resample_chunk.c:
19719         * gst/audioresample/resample_functable.c:
19720         * gst/audioresample/resample_ref.c:
19721           port to use basetransform; doesn't work in all cases yet
19722
19723 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
19724
19725         * gst/audioconvert/gstaudioconvert.c:
19726         (gst_audio_convert_class_init), (gst_audio_convert_init),
19727         (audio_convert_get_unit_size), (audio_convert_transform_caps),
19728         (audio_convert_fixate_caps), (audio_convert_set_caps),
19729         (audio_convert_transform),
19730         (gst_audio_convert_buffer_to_default_format),
19731         (gst_audio_convert_buffer_from_default_format),
19732         (gst_audio_convert_channels):
19733         * gst/audioconvert/gstchannelmix.c:
19734         * gst/audioconvert/gstchannelmix.h:
19735           port to basetransform
19736         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19737         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
19738         (gst_ffmpegcsp_get_unit_size):
19739         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
19740         (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
19741           fix for basetransform changes
19742
19743 2005-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
19744
19745         * check/Makefile.am:
19746           Add CHECK_CFLAGS and LDFLAGS
19747
19748         * gst/playback/gstplaybasebin.c: (fill_buffer):
19749           GST_MESSAGE_SRC became a GObject
19750
19751 2005-08-24  Wim Taymans  <wim@fluendo.com>
19752
19753         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
19754         (gst_ring_buffer_clear_all):
19755         * gst-libs/gst/audio/gstringbuffer.h:
19756         Added function to clear the ringbuffer.
19757
19758 2005-08-24  Andy Wingo  <wingo@pobox.com>
19759
19760         * sys/v4l/gstv4lelement.c (gst_v4lelement_start) 
19761         (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
19762         of _open and _close.
19763
19764         * sys/v4l/gstv4lxoverlay.h:
19765         * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
19766         an Xv connection here, instead of all the time. Make Xv only be
19767         loaded if you axe for it. Kindof a workaround for buggy behaviour
19768         of Xv when using remote xservers (XvQueryExtension would block).
19769         (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
19770         replace the _open and _close public API. Only start the xv
19771         connection if necessary.
19772         (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
19773
19774 2005-08-23  David Schleef  <ds@schleef.org>
19775
19776         * gst/audioresample/Makefile.am: Leet audioresampling code
19777         * gst/audioresample/buffer.c:
19778         * gst/audioresample/buffer.h:
19779         * gst/audioresample/debug.c:
19780         * gst/audioresample/debug.h:
19781         * gst/audioresample/functable.c:
19782         * gst/audioresample/functable.h:
19783         * gst/audioresample/gstaudioresample.c:
19784         * gst/audioresample/gstaudioresample.h:
19785         * gst/audioresample/resample.c:
19786         * gst/audioresample/resample.h:
19787         * gst/audioresample/resample_chunk.c:
19788         * gst/audioresample/resample_functable.c:
19789         * gst/audioresample/resample_ref.c:
19790
19791 2005-08-23  Wim Taymans  <wim@fluendo.com>
19792
19793         * examples/seeking/seek.c: (make_vorbis_pipeline),
19794         (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
19795         Small seek updates.
19796
19797 2005-08-23  Andy Wingo  <wingo@pobox.com>
19798
19799         * gst-libs/gst/audio/gstbaseaudiosrc.c
19800         (gst_base_audio_src_fixate): Only fixate endianness if it is
19801         present in the caps.
19802
19803 2005-08-22  Andy Wingo  <wingo@pobox.com>
19804
19805         * ext/alsa/gstalsasink.c (gst_alsasink_get_property): 
19806         * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
19807         device-name property.
19808
19809         * gst-libs/gst/audio/gstaudiosrc.h:
19810         * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
19811         close_device in the ring buffer, like gstaudiosink.
19812
19813         * ext/alsa/gstalsamixer.h:
19814         * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
19815         macro to implement the interface without much code. Cleanups. 
19816
19817         * ext/alsa/gstalsasrc.h:
19818         * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
19819         READY.
19820
19821         * ext/alsa/Makefile.am: Add new files.
19822         * ext/alsa/gstalsamixerelement.c: 
19823         * ext/alsa/gstalsamixerelement.c: Split element code out from
19824         mixer code so that alsasrc can be a mixer too.
19825
19826 2005-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
19827
19828         * check/elements/volume.c: (setup_volume), (cleanup_volume),
19829         (GST_START_TEST):
19830         * check/elements/vorbisdec.c: (setup_vorbisdec),
19831         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
19832         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
19833         (vorbis_handle_identification_packet),
19834         (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
19835         (vorbis_handle_header_packet), (vorbis_dec_push),
19836         (vorbis_dec_chain):
19837           use the setup/teardown methods to save code.  save code is good.
19838
19839 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
19840
19841         * check/Makefile.am:
19842           add ext dir for plugins
19843           add vorbisdec test conditionally
19844         * check/elements/volume.c: (setup_volume), (cleanup_volume),
19845         (GST_START_TEST), (volume_suite):
19846           add a test with wrong caps
19847         * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
19848         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
19849           add a vorbisdec test
19850         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
19851         (gst_ogg_demux_chain), (gst_ogg_demux_loop):
19852           clean up debug output
19853         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
19854           yay, fix a segfault/security issue in vorbisdec
19855           gst-launch fakesrc ! vorbisdec wasn't happy
19856         * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
19857         (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
19858         (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
19859         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
19860         (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
19861         (gst_vorbisenc_set_metadata), (get_constraints_string),
19862         (update_start_message), (gst_vorbisenc_setup),
19863         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
19864         (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
19865         (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
19866         (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
19867         * ext/vorbis/vorbisenc.h:
19868           march in line
19869         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19870         (gst_ffmpegcsp_transform):
19871           have the kow come home
19872         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
19873           debug my func ptr
19874         * gst/volume/gstvolume.c: (volume_set_caps):
19875           add a debug
19876
19877 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
19878
19879         * Makefile.am:
19880         * check/.cvsignore:
19881         * check/Makefile.am:
19882         * check/elements/.cvsignore:
19883         * check/elements/volume.c: (chain_func), (event_func),
19884         (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
19885         (main):
19886         * configure.ac:
19887           add unit test structure for gst-plugins-base
19888           add a test for volume
19889         * gst/volume/gstvolume.c: (gst_volume_list_tracks),
19890         (gst_volume_set_volume), (gst_volume_get_volume),
19891         (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
19892         (volume_funcfind), (volume_process_float), (volume_process_int16),
19893         (volume_set_caps), (volume_transform), (volume_update_mute),
19894         (volume_update_volume), (volume_set_property),
19895         (volume_get_property):
19896           document a little; use basetransform vmethod _set_caps
19897
19898 2005-08-19  Andy Wingo  <wingo@pobox.com>
19899
19900         * ext/alsa/gstalsamixertrack.h:
19901         * ext/alsa/gstalsamixertrack.c:
19902         * ext/alsa/gstalsamixeroptions.h:
19903         * ext/alsa/gstalsamixeroptions.c:
19904         * ext/alsa/gstalsamixer.h:
19905         * ext/alsa/gstalsamixer.c: Port to 0.9.
19906
19907         * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
19908         Remove gstalsa.c and alsaclock. No more cruft here.
19909         
19910 2005-08-18  Wim Taymans  <wim@fluendo.com>
19911
19912         * gst-libs/gst/rtp/gstbasertpdepayload.c:
19913         (gst_base_rtp_depayload_chain),
19914         (gst_base_rtp_depayload_add_to_queue),
19915         (gst_base_rtp_depayload_push),
19916         (gst_base_rtp_depayload_queue_release):
19917         * gst-libs/gst/rtp/gstbasertpdepayload.h:
19918         Fix for RTPBuffer changes.
19919
19920         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
19921         (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
19922         (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
19923         (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
19924         (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
19925         (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
19926         (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
19927         (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
19928         (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
19929         (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
19930         (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
19931         (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
19932         (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
19933         (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
19934         (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
19935         (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
19936         (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
19937         (gst_rtpbuffer_get_payload):
19938         * gst-libs/gst/rtp/gstrtpbuffer.h:
19939         Don't subclass GstBuffer but add methods and helper functions
19940         to construct and manipulate RTP packets in regular GstBuffers.
19941
19942 2005-08-18  Stefan Kost  <ensonic@users.sf.net>
19943
19944         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
19945           moved statement below switch
19946         * gst/volume/gstvolume.c: (gst_volume_class_init):
19947           added debug ptr
19948
19949 2005-08-16  Wim Taymans  <wim@fluendo.com>
19950
19951         * gst-libs/gst/audio/gstbaseaudiosrc.c:
19952         (gst_base_audio_src_change_state):
19953         Open and close device in READY<->NULL state change.
19954
19955 2005-08-16  Andy Wingo  <wingo@pobox.com>
19956
19957         * examples/seeking/Makefile.am: Don't compile non-compiling
19958         compiled objects with the compiler.
19959
19960         * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
19961         elements.
19962
19963 2005-08-12  Philippe Khalaf <burger@speedy.org>
19964         * gst-libs/gst/rtp/gstbasertpdepayload.c:
19965         * gst-libs/gst/rtp/gstbasertpdepayload.h:
19966           Made a thread to release the queue.
19967           Removed timestamp conversion for now.
19968
19969 2005-08-10  Philippe Khalaf <burger@speedy.org>
19970         * gst-libs/gst/rtp/gstbasertpdepayload.c:
19971         * gst-libs/gst/rtp/gstbasertpdepayload.h:
19972           Added rtp timestamp -> gst timestamp conversion.
19973           Fixed several problems with queue.
19974
19975 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
19976
19977         * gst-libs/gst/audio/gstaudioclock.h:
19978         * gst-libs/gst/audio/gstaudiofilter.h:
19979         * gst-libs/gst/audio/gstaudiosink.h:
19980         * gst-libs/gst/audio/gstaudiosrc.h:
19981         * gst-libs/gst/audio/gstbaseaudiosink.h:
19982         * gst-libs/gst/audio/gstbaseaudiosrc.h:
19983         * gst-libs/gst/audio/gstringbuffer.h:
19984         * gst-libs/gst/net/gstnetbuffer.h:
19985         * gst-libs/gst/rtp/gstbasertpdepayload.h:
19986         * gst-libs/gst/rtp/gstrtpbuffer.h:
19987           Add padding (you will need to rebuild gst-plugins-base,
19988           gst-plugins and all applications afterwards!)
19989
19990 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
19991
19992         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
19993         (gst_riff_parse_chunk):
19994           Fix bug in debug message and add some more debug messages.
19995
19996 2005-08-08  Edward Hervey  <edward@fluendo.com>
19997
19998         * gst-libs/gst/riff/riff-media.c:
19999         backported updates since branch
20000
20001 2005-08-08  Andy Wingo  <wingo@pobox.com>
20002
20003         * gst-libs/gst/audio/gstbaseaudiosink.c
20004         (gst_base_audio_sink_change_state): Open the device in NULL->READY
20005         like good elements should. Close on READY->NULL too.
20006
20007         * gst-libs/gst/audio/gstaudiosink.c
20008         (gst_audioringbuffer_open_device,
20009         (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
20010         (gst_audioringbuffer_release): Updates for new ring buffer API,
20011         hook into the new audio sink api.
20012
20013         * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
20014         (GstAudioSinkClass.close): Just open and close the device -- no
20015         resource allocation or configuration.
20016         (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
20017         vmethods, handle device setup and resource allocation.
20018
20019         * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
20020         (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
20021         base class API.
20022
20023         * gst-libs/gst/audio/gstringbuffer.h
20024         (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
20025         New vmethods.
20026
20027         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
20028         (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
20029         New API functions. The device should be opened before acquiring
20030         and closed after releasing.
20031
20032 2005-08-08  Tim-Philipp Müller  <tim at centricular dot net>
20033
20034         * gst-libs/gst/interfaces/mixer.h:
20035           Reset padding to GST_PADDING.
20036
20037 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20038
20039         * gst/playback/gstplaybin.c: (remove_sinks):
20040           Remove visualization from parent explicitely; works around some
20041           apparent refcount issue that I haven't tracked down yet.
20042
20043 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20044
20045         * ext/alsa/gstalsasink.c: (set_hwparams):
20046           Assign debug category, add negotiation debug msgs.
20047
20048 2005-08-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20049
20050         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
20051           Fix error code for file-not-found to NOT_FOUND.
20052
20053 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
20054
20055         * common/gtk-doc-plugins.mak:
20056         * docs/plugins/Makefile.am:
20057         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
20058         * docs/plugins/gst-plugins-base-plugins-sections.txt:
20059           renamed to actual element names, so much nicer to look at
20060         * docs/plugins/tmpl/gstmultifdsink.sgml:
20061           remove
20062         * docs/plugins/tmpl/multifdsink.sgml:
20063         * docs/plugins/tmpl/tcpserversink.sgml:
20064           add
20065         * ext/alsa/gstalsa.c:
20066         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
20067         * ext/ogg/gstoggmux.c:
20068         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
20069         * gst/playback/gstdecodebin.c:
20070         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
20071         * gst/tcp/gsttcpserversink.c:
20072           various fixes and documentation additions
20073
20074 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
20075
20076         * common/Makefile.am:
20077         * common/gstdoc-scangobj:
20078         * common/gtk-doc-plugins.mak:
20079         * common/gtk-doc.mak:
20080           add a custom scangobj that uses the registry
20081           add a custom gtk-doc-plugins.mak that uses it
20082           some doc build fixes
20083         * configure.ac:
20084         * docs/Makefile.am:
20085         * docs/plugins/Makefile.am:
20086         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
20087         * docs/plugins/gst-plugins-base-plugins-sections.txt:
20088         * docs/plugins/gst-plugins-base-plugins.types:
20089         * docs/plugins/tmpl/gstmultifdsink.sgml:
20090           add docs for one element, multifdsink
20091         * gst/adder/gstadder.h:
20092         * gst/volume/gstvolume.h:
20093           don't privatize enum
20094         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
20095         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
20096         (gst_sync_method_get_type), (gst_client_status_get_type),
20097         (gst_multifdsink_class_init),
20098         (gst_multifdsink_client_queue_buffer),
20099         (gst_multifdsink_handle_client_write):
20100         * gst/tcp/gstmultifdsink.h:
20101         * gst/tcp/gsttcp.h:
20102         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
20103         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
20104         (gst_tcpclientsink_render):
20105         * gst/tcp/gsttcpclientsink.h:
20106         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
20107         (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
20108         (gst_tcpclientsrc_start):
20109         * gst/tcp/gsttcpclientsrc.h:
20110         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
20111         (gst_tcpserversrc_init), (gst_tcpserversrc_create):
20112         * gst/tcp/gsttcpserversrc.h:
20113         * gst/typefind/gsttypefindfunctions.c:
20114           remove superfluous Type stuff
20115
20116 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20117
20118         * gst/playback/gstplaybin.c: (gen_video_element):
20119           Enable videoscale.
20120
20121 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20122
20123         * gst-libs/gst/gconf/gconf.c:
20124         * gst-libs/gst/gconf/gconf.h:
20125           Fix some Andy Problem [tm].
20126
20127 2005-08-04  Andy Wingo  <wingo@pobox.com>
20128
20129         * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
20130         * gst/ffmpegcolorspace/gstffmpegcolorspace.c
20131         (gst_ffmpegcsp_get_size): Adapt to API changes.
20132
20133         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
20134         Implement an in-place do-nothing transform.
20135
20136 2005-08-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20137
20138         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
20139         (gst_ximagesink_renegotiate_size):
20140           Do not set new window sizes yet if we prepare a new buffer size
20141           for upstream renegotiation (software scaling) at some point in the
20142           future, because this new size waqs not actually accepted yet. Once
20143           accepted, renegotiation later on will set the new sizes just fine.
20144           Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
20145           embedding testcase.
20146
20147 2005-08-03  Andy Wingo  <wingo@pobox.com>
20148
20149         * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
20150         (gst_ximagesink_buffer_alloc): 
20151         Protect the height, width, and desired_caps with the pool_lock.
20152         Fixes videotestsrc ! queue ! ximagesink.
20153
20154 2005-08-02  Edward Hervey  <edward@fluendo.com>
20155
20156         * gst/volume/gstvolume.c:
20157         include left from controller cleanup
20158
20159 2005-08-02  Jan Schmidt  <thaytan@mad.scientist.com>
20160         * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
20161           Stop collectpads before calling the parent state
20162           change function on PAUSED->READY.
20163
20164 2005-08-01  Jan Schmidt  <thaytan@mad.scientist.com>
20165         * configure.ac:
20166           When testing for X libs, use the X CFlags 
20167         * gst/adder/gstadder.c: (gst_adder_change_state):
20168           Stop the collectpads before calling parent state change function
20169           on PAUSED->READY, otherwise we deadlock deactivating pads.
20170
20171 2005-08-01  Stefan Kost  <ensonic@users.sf.net>
20172
20173         * configure.ac:
20174         * docs/libs/tmpl/gstcolorbalance.sgml:
20175         * docs/libs/tmpl/gstmixer.sgml:
20176         * examples/Makefile.am:
20177         * gst/sine/Makefile.am:
20178         * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
20179         (gst_sinesrc_set_property), (plugin_init):
20180         * gst/sine/gstsinesrc.h:
20181         * gst/volume/Makefile.am:
20182         * gst/volume/gstvolume.c: (gst_volume_set_volume),
20183         (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
20184         (volume_process_float), (volume_process_int16),
20185         (volume_set_property), (plugin_init):
20186         * gst/volume/gstvolume.h:
20187           deactivate and remove dparams (libgstcontrol)
20188
20189 2005-07-29  Wim Taymans  <wim@fluendo.com>
20190
20191         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
20192         Convert me to BaseTransform!! help..
20193
20194 2005-07-29  Andy Wingo  <wingo@pobox.com>
20195
20196         * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
20197         sinks.
20198
20199         * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
20200         support of both endiannesses.
20201
20202 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
20203
20204         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
20205           Fix confusing debug message (s/event/query/)
20206
20207 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
20208
20209         * gst/videotestsrc/videotestsrc.h:
20210           Use "_stdint.h" instead of <stdint.h>
20211
20212 2005-07-27  Wim Taymans  <wim@fluendo.com>
20213
20214         * ext/vorbis/Makefile.am:
20215         Revert wrong commit.
20216
20217 2005-07-27  Wim Taymans  <wim@fluendo.com>
20218
20219         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
20220         More compilation fixen.
20221
20222 2005-07-27  Wim Taymans  <wim@fluendo.com>
20223
20224         * gst-libs/gst/audio/gstbaseaudiosink.c:
20225         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
20226         (gst_base_audio_sink_create_ringbuffer),
20227         (gst_base_audio_sink_change_state):
20228         Fix compilation.
20229
20230 2005-07-27  Wim Taymans  <wim@fluendo.com>
20231
20232         * examples/seeking/seek.c: (setup_dynamic_link),
20233         (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
20234         (query_positions_elems), (query_positions_pads), (do_seek):
20235         Update seek example.
20236
20237         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
20238         (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
20239         (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
20240         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
20241         (gst_ogg_demux_handle_event),
20242         (gst_ogg_demux_deactivate_current_chain),
20243         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
20244         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
20245         (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
20246         (gst_ogg_demux_loop):
20247         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
20248         * ext/theora/theoradec.c: (theora_dec_src_event),
20249         (theora_dec_src_getcaps), (theora_dec_sink_event),
20250         (theora_dec_push), (theora_dec_chain):
20251         * ext/vorbis/Makefile.am:
20252         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
20253         (vorbis_dec_sink_event), (vorbis_dec_push),
20254         (vorbis_handle_data_packet):
20255         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
20256         (gst_vorbisenc_chain):
20257         * gst/playback/gststreaminfo.c: (cb_probe):
20258         * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
20259         * gst/videorate/gstvideorate.c: (gst_videorate_event):
20260         * gst/videoscale/gstvideoscale.c:
20261         (gst_videoscale_handle_src_event):
20262         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
20263         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
20264         (gst_ximagesink_navigation_send_event):
20265         * sys/xvimage/xvimagesink.c:
20266         (gst_xvimagesink_navigation_send_event):
20267         Various event updates and cleanups
20268
20269 2005-07-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20270
20271         * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
20272           Fix segfault for I420/YV12.
20273
20274 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20275
20276         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
20277           Report bitrate.
20278
20279 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20280
20281         * gst/playback/gstplaybin.c: (gen_video_element),
20282         (gen_audio_element):
20283           Switch to auto*sink elements as default sinks; add volume element
20284           so that volume control in totem works.
20285
20286 2005-07-21  Wim Taymans  <wim@fluendo.com>
20287
20288         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
20289         * gst/playback/gstplaybin.c: (setup_sinks),
20290         (gst_play_bin_change_state):
20291         Refcount fix and more comments.
20292
20293 2005-07-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
20294
20295         * sys/ximage/Makefile.am:
20296         * sys/ximage/ximage.c: (plugin_init):
20297         * sys/ximage/ximagesink.c:
20298         Prepare for adding ximagesrc, rename of plugin to ximage etc.
20299         
20300
20301 2005-07-21  Wim Taymans  <wim@fluendo.com>
20302
20303         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
20304         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
20305         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
20306         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
20307         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
20308         (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
20309         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
20310         (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
20311         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
20312         Generate correct disconts for live chained oggs.
20313
20314         * gst-libs/gst/audio/gstbaseaudiosink.c:
20315         (gst_base_audio_sink_render),
20316         (gst_base_audio_sink_create_ringbuffer),
20317         (gst_base_audio_sink_change_state):
20318         Handle discont math correctly.
20319
20320         * gst/playback/gstplaybin.c: (add_sink):
20321         Some small debug cleanup.
20322
20323 2005-07-21  Wim Taymans  <wim@fluendo.com>
20324
20325         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
20326         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
20327         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
20328         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
20329         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
20330         (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
20331         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
20332         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
20333         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
20334         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
20335         (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
20336         (gst_ogg_demux_change_state), (gst_ogg_print):
20337         Reorganize code to send the right disconts when in streaming
20338         mode.
20339
20340 2005-07-20  Andy Wingo  <wingo@pobox.com>
20341
20342         * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
20343         fix (?), fixes a seggie mcfalterson (#310894).
20344
20345 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20346
20347         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
20348         (gst_ogg_mux_set_header_on_caps):
20349         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
20350         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
20351         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
20352         * gst-libs/gst/audio/multichannel.c:
20353         (gst_audio_set_channel_positions),
20354         (gst_audio_set_structure_channel_positions_list):
20355         * gst/playback/gstdecodebin.c: (dynamic_create):
20356         * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
20357         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
20358           Fixes for API changes in core.
20359
20360 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20361
20362         * gst/playback/gstplaybasebin.c: (fill_buffer):
20363           Use _new_custom() so we can set custom message types for buffering
20364           messages.
20365
20366 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20367
20368         * configure.ac:
20369         * gst-libs/gst/Makefile.am:
20370         * gst-libs/gst/gconf/.cvsignore:
20371         * gst-libs/gst/gconf/Makefile.am:
20372         * gst-libs/gst/gconf/test-gconf.c:
20373         * pkgconfig/Makefile.am:
20374         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
20375         * pkgconfig/gstreamer-gconf.pc.in:
20376           Remove gconf stuff, use gconf elements instead from now on.
20377
20378 2005-07-20  Wim Taymans  <wim@fluendo.com>
20379
20380         * gst-libs/gst/audio/TODO:
20381         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
20382         (gst_audio_clock_get_internal_time):
20383         * gst-libs/gst/audio/gstaudioclock.h:
20384         * gst-libs/gst/audio/gstbaseaudiosink.c:
20385         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
20386         (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
20387         (gst_base_audio_sink_render),
20388         (gst_base_audio_sink_create_ringbuffer),
20389         (gst_base_audio_sink_change_state):
20390         Make sure the audio clock always returns an increasing value.
20391
20392 2005-07-19  Andy Wingo  <wingo@pobox.com>
20393
20394         * gst/videotestsrc/: Cleanups.
20395
20396 2005-07-19  Wim Taymans  <wim@fluendo.com>
20397
20398         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
20399         Better debugging.
20400
20401 2005-07-19  Wim Taymans  <wim@fluendo.com>
20402
20403         * examples/seeking/seek.c: (make_dv_pipeline),
20404         (make_vorbis_theora_pipeline), (query_rates),
20405         (query_positions_elems), (query_positions_pads), (do_seek):
20406         Make correct DV pipeline.
20407
20408 2005-07-18  Andy Wingo  <wingo@pobox.com>
20409
20410         * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
20411         default. Also because it's the only thing that really works. (This
20412         is used in the GConf elements).
20413         Use AS_LIBTOOL_TAGS.
20414
20415 2005-07-18  Wim Taymans  <wim@fluendo.com>
20416
20417         * gst/playback/gstdecodebin.c: (remove_element_chain):
20418         * gst/playback/gstplaybin.c: (add_sink):
20419         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
20420         (gst_stream_info_set_mute):
20421         * gst/playback/gststreamselector.c:
20422         (gst_stream_selector_get_linked_pad),
20423         (gst_stream_selector_getcaps), (gst_stream_selector_chain):
20424         More leak and compile fixes.
20425
20426 2005-07-18  Wim Taymans  <wim@fluendo.com>
20427
20428         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
20429         (query_rates), (query_positions_elems), (query_positions_pads),
20430         (do_seek), (seek_cb), (stop_seek):
20431         Updated seek example. 
20432
20433         * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
20434         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
20435         (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
20436         * gst/playback/gstplaybin.c: (add_sink):
20437         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
20438         (gst_stream_info_set_mute):
20439         Some refcount leak fixes.
20440
20441 2005-07-16  Wim Taymans  <wim@fluendo.com>
20442
20443         * gst-libs/gst/audio/gstbaseaudiosink.c:
20444         (gst_base_audio_sink_render):
20445         Align samples even if we have roundoff errors in the 
20446         timestamp conversion.
20447
20448 2005-07-16  Wim Taymans  <wim@fluendo.com>
20449
20450         * docs/libs/tmpl/gstringbuffer.sgml:
20451         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
20452         (query_rates), (query_positions_elems), (query_positions_pads),
20453         (update_scale), (do_seek):
20454         Updated seek example.
20455
20456         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
20457         (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
20458         (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
20459         (gst_ogg_demux_loop):
20460         Push out correct discont values.
20461
20462         * ext/theora/theoradec.c: (theora_dec_src_convert),
20463         (theora_dec_sink_convert), (theora_dec_src_getcaps),
20464         (theora_dec_sink_event), (theora_handle_type_packet),
20465         (theora_handle_header_packet), (theora_dec_push),
20466         (theora_handle_data_packet), (theora_dec_chain),
20467         (theora_dec_change_state):
20468         Better timestamping.
20469
20470         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
20471         (vorbis_dec_sink_event), (vorbis_dec_push),
20472         (vorbis_handle_data_packet), (vorbis_dec_chain):
20473         * ext/vorbis/vorbisdec.h:
20474         Better timestamping.
20475
20476         * gst-libs/gst/audio/gstbaseaudiosink.c:
20477         (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
20478         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
20479         Handle syncing on timestamps instead of sample offsets. Make
20480         use of DISCONT values as described in design docs.
20481
20482         * gst-libs/gst/audio/gstbaseaudiosrc.c:
20483         (gst_base_audio_src_get_time):
20484         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
20485         (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
20486         (gst_ring_buffer_read):
20487         * gst-libs/gst/audio/gstringbuffer.h:
20488         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
20489         (gst_ximagesink_show_frame):
20490         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
20491         Correcly convert buffer timestamp to stream time.
20492
20493 2005-07-16  Wim Taymans  <wim@fluendo.com>
20494
20495         * gst/audioconvert/gstaudioconvert.c:
20496         (gst_audio_convert_get_buffer):
20497         Timestamp buffers correctly.
20498
20499         * gst/playback/gstplaybin.c: (gen_video_element):
20500         Make internal fakesink silent.
20501
20502 2005-07-15  Wim Taymans  <wim@fluendo.com>
20503
20504         * gst/ffmpegcolorspace/Makefile.am:
20505         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20506         (gst_ffmpegcsp_caps_remove_format_info),
20507         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
20508         (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
20509         (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
20510         (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
20511         Ported ffmpegcolorspace to basetransform.
20512
20513         * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
20514         * gst/volume/gstvolume.c: (volume_transform):
20515         Ported to new API.
20516
20517 2005-07-14  Wim Taymans  <wim@fluendo.com>
20518
20519         * gst/videotestsrc/Makefile.am:
20520         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
20521         (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
20522         (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
20523         (gst_videotestsrc_init), (gst_videotestsrc_event),
20524         (gst_videotestsrc_create), (gst_videotestsrc_start),
20525         (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
20526         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
20527         (gst_videotestsrc_get_property):
20528         * gst/videotestsrc/gstvideotestsrc.h:
20529         Make videotestsrc a pushsrc.
20530
20531 2005-07-14  Wim Taymans  <wim@fluendo.com>
20532
20533         * gst/tcp/gstfdset.c: (gst_fdset_free):
20534         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
20535         (gst_multifdsink_add), (gst_multifdsink_remove),
20536         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
20537         (gst_multifdsink_remove_client_link),
20538         (gst_multifdsink_client_queue_data),
20539         (gst_multifdsink_client_queue_caps),
20540         (gst_multifdsink_client_queue_buffer),
20541         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
20542         (gst_multifdsink_stop):
20543         * gst/tcp/gstmultifdsink.h:
20544         0.8 backporting.
20545
20546         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
20547         Also draw image when not from a pool.
20548
20549 2005-07-14  Wim Taymans  <wim@fluendo.com>
20550
20551         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
20552         (mute_stream), (silence_stream):
20553         Small debug additions.
20554
20555 2005-07-14  Wim Taymans  <wim@fluendo.com>
20556
20557         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
20558         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
20559         (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
20560         Better error recovery, ignore unconnected pads and
20561         non-fatal errors.
20562
20563 2005-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
20564
20565         * docs/libs/tmpl/gstaudio.sgml:
20566         * docs/libs/tmpl/gstcolorbalance.sgml:
20567         * docs/libs/tmpl/gstgconf.sgml:
20568         * docs/libs/tmpl/gstmixer.sgml:
20569         * docs/libs/tmpl/gstringbuffer.sgml:
20570         * docs/libs/tmpl/gsttuner.sgml:
20571         * gst-libs/gst/audio/gstbaseaudiosrc.c:
20572         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
20573         (gst_tcpclientsrc_class_init):
20574         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
20575         (gst_tcpserversrc_class_init):
20576         * sys/v4l/gstv4lelement.c:
20577           more autistic cleanliness in functions/names/defines
20578
20579 2005-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
20580
20581         * configure.ac:
20582           make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
20583           added manually to each Makefile.am so we are sure it goes
20584           *last* and doesn't add -L flags before linking in libs of our
20585           own, like, say, internal .la libs, that then accidentally pick
20586           up the installed copy.
20587         * docs/libs/Makefile.am:
20588         * ext/alsa/Makefile.am:
20589         * ext/cdparanoia/Makefile.am:
20590         * ext/gnomevfs/Makefile.am:
20591         * ext/libvisual/Makefile.am:
20592         * ext/ogg/Makefile.am:
20593         * ext/theora/Makefile.am:
20594         * ext/vorbis/Makefile.am:
20595         * gst-libs/gst/video/Makefile.am:
20596         * gst/adder/Makefile.am:
20597         * gst/audioconvert/Makefile.am:
20598         * gst/audiorate/Makefile.am:
20599         * gst/audioscale/Makefile.am:
20600         * gst/ffmpegcolorspace/Makefile.am:
20601         * gst/playback/Makefile.am:
20602         * gst/sine/Makefile.am:
20603         * gst/subparse/Makefile.am:
20604         * gst/tags/Makefile.am:
20605         * gst/tcp/Makefile.am:
20606         * gst/typefind/Makefile.am:
20607         * gst/videorate/Makefile.am:
20608         * gst/videoscale/Makefile.am:
20609         * gst/videotestsrc/Makefile.am:
20610         * gst/volume/Makefile.am:
20611         * sys/v4l/Makefile.am:
20612         * sys/ximage/Makefile.am:
20613         * sys/xvimage/Makefile.am:
20614           adapt properly to this change. This should make sure that
20615           plugins and libs properly link to the as-yet-uninstalled
20616           copies of stuff like libgstinterfaces and libgstvideo
20617
20618 2005-07-13  Andy Wingo  <wingo@pobox.com>
20619
20620         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
20621         (gst_v4lsrc_fixate): Fixate on format as well.
20622
20623         * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy) 
20624         (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
20625         buffer points to it.
20626         (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
20627         rather just doing X calls ourselves. Also fixes a memleak.
20628
20629 2005-07-12  Andy Wingo  <wingo@pobox.com>
20630
20631         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property) 
20632         (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init) 
20633         (gst_v4lsrc_create): Re-add the copy-mode property, default to
20634         TRUE to avoid deadlocks if an element holds on to our buffers.
20635
20636 2005-07-11  Thomas Vander Stichele  <thomas at apestaart dot org>
20637
20638         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
20639         (gst_sinesrc_init), (gst_sinesrc_create),
20640         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
20641         (gst_sinesrc_start):
20642         * gst/sine/gstsinesrc.h:
20643           removing num-buffers property before moving it
20644
20645 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
20646
20647         * configure.ac:
20648           use overridable ERROR_CFLAGS
20649         * docs/libs/gst-plugins-base-libs.types:
20650         * docs/libs/tmpl/gstringbuffer.sgml:
20651         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
20652         (gst_alsasink_class_init):
20653         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
20654         (gst_alsasrc_class_init):
20655         * gst-libs/gst/audio/audio.h:
20656         * gst-libs/gst/audio/gstaudioclock.h:
20657         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
20658         (gst_audio_filter_base_init), (gst_audio_filter_class_init),
20659         (gst_audio_filter_link), (gst_audio_filter_init),
20660         (gst_audio_filter_chain), (gst_audio_filter_set_property),
20661         (gst_audio_filter_get_property),
20662         (gst_audio_filter_class_add_pad_templates):
20663         * gst-libs/gst/audio/gstaudiofilter.h:
20664         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
20665         (gst_audio_filter_template_get_type),
20666         (gst_audio_filter_template_base_init),
20667         (gst_audio_filter_template_class_init),
20668         (gst_audio_filter_template_init),
20669         (gst_audio_filter_template_set_property),
20670         (gst_audio_filter_template_get_property), (plugin_init),
20671         (gst_audio_filter_template_setup),
20672         (gst_audio_filter_template_filter),
20673         (gst_audio_filter_template_filter_inplace):
20674         * gst-libs/gst/audio/gstaudiosink.c:
20675         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
20676         (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
20677         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
20678         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
20679         (gst_audio_sink_base_init), (gst_audio_sink_class_init),
20680         (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
20681         * gst-libs/gst/audio/gstaudiosink.h:
20682         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
20683         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
20684         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
20685         (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
20686         (gst_audioringbuffer_delay), (gst_audio_src_base_init),
20687         (gst_audio_src_class_init), (gst_audio_src_init),
20688         (gst_audio_src_create_ringbuffer):
20689         * gst-libs/gst/audio/gstaudiosrc.h:
20690         * gst-libs/gst/audio/gstbaseaudiosink.c:
20691         (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
20692         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
20693         (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
20694         (gst_base_audio_sink_set_property),
20695         (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
20696         (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
20697         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
20698         (gst_base_audio_sink_create_ringbuffer),
20699         (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
20700         * gst-libs/gst/audio/gstbaseaudiosink.h:
20701         * gst-libs/gst/audio/gstbaseaudiosrc.c:
20702         (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
20703         (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
20704         (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
20705         (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
20706         (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
20707         (gst_base_audio_src_event), (gst_base_audio_src_create),
20708         (gst_base_audio_src_create_ringbuffer),
20709         (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
20710         * gst-libs/gst/audio/gstbaseaudiosrc.h:
20711         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
20712         (gst_ring_buffer_class_init), (gst_ring_buffer_init),
20713         (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
20714         (gst_ring_buffer_debug_spec_caps),
20715         (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
20716         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
20717         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
20718         (gst_ring_buffer_start), (gst_ring_buffer_pause),
20719         (gst_ring_buffer_stop), (gst_ring_buffer_delay),
20720         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
20721         (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
20722         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
20723         (gst_ring_buffer_clear):
20724         * gst-libs/gst/audio/gstringbuffer.h:
20725         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
20726         (gst_video_sink_class_init), (gst_video_sink_get_type):
20727         * gst-libs/gst/video/videosink.h:
20728         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
20729         (gst_multifdsink_class_init),
20730         (gst_multifdsink_handle_client_write),
20731         (gst_multifdsink_change_state):
20732         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
20733         (gst_tcpclientsink_setcaps):
20734         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
20735         (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
20736         (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
20737         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
20738         (gst_ximagesink_send_pending_navigation),
20739         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
20740         (gst_ximagesink_class_init), (gst_ximagesink_get_type):
20741         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
20742         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
20743         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
20744         (gst_xvimagesink_send_pending_navigation),
20745         (gst_xvimagesink_navigation_send_event),
20746         (gst_xvimagesink_set_xwindow_id),
20747         (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
20748         (gst_xvimagesink_get_type):
20749         more macro splitting
20750
20751 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
20752
20753         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
20754           plug a memleak, allows me to import 1479 albums in one go
20755           in jamboree
20756         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
20757         (vorbis_handle_type_packet), (vorbis_dec_chain),
20758         (vorbis_dec_change_state):
20759           fix some format strings
20760
20761 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
20762
20763         * docs/libs/tmpl/gstcolorbalance.sgml:
20764         * docs/libs/tmpl/gstmixer.sgml:
20765         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
20766         (gst_alsasink_set_property), (gst_alsasink_get_property):
20767         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
20768         (gst_alsasrc_set_property), (gst_alsasrc_get_property):
20769           add device property
20770
20771 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
20772
20773         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
20774         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
20775         (audiocast_register_listener), (audiocast_thread_run),
20776         (gst_gnomevfssrc_send_additional_headers_callback),
20777         (gst_gnomevfssrc_received_headers_callback),
20778         (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
20779         (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
20780         (gst_gnomevfssrc_get_size):
20781           add/clean up debugging
20782         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
20783           cleanups
20784
20785 2005-07-07  Andy Wingo  <wingo@pobox.com>
20786
20787         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
20788         framerate. Need to get a handle on when exactly this function is
20789         called, tho.
20790
20791         * sys/v4l/v4lsrc_calls.h:
20792         * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
20793         (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
20794         (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
20795
20796         * sys/v4l/v4l_calls.h: Cast to V4lElement.
20797         * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
20798         v4lelements are sources.
20799
20800         * sys/v4l/gstv4lxoverlay.h:
20801         * sys/v4l/gstv4lxoverlay.c:
20802         * sys/v4l/gstv4ltuner.h:
20803         * sys/v4l/gstv4ltuner.c: Header loc fixen.
20804         
20805         * sys/v4l/gstv4lsrc.h:
20806         * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
20807         PushSrc/BaseSrc. Removed most sync-related properties, videorate
20808         or something should handle that. Made a live source.
20809
20810         * sys/v4l/gstv4lelement.h:
20811         * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
20812         signals. Some cleanups.
20813
20814         * sys/v4l/gstv4lcolorbalance.h: Interface header update.
20815
20816         * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
20817         stuff.
20818
20819         * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
20820         stuff.
20821
20822         * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
20823
20824 2005-07-07  Wim Taymans  <wim@fluendo.com>
20825
20826         * ext/theora/theoradec.c: (theora_get_query_types),
20827         (theora_dec_src_getcaps), (theora_dec_push):
20828         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
20829         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
20830         Remove deprecated/unused query types.
20831
20832 2005-07-06  Wim Taymans  <wim@fluendo.com>
20833
20834         * ext/alsa/Makefile.am:
20835         * ext/alsa/gstalsaplugin.c: (plugin_init):
20836         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
20837         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
20838         (gst_alsasrc_dispose), (gst_alsasrc_base_init),
20839         (gst_alsasrc_class_init), (gst_alsasrc_init),
20840         (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
20841         (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
20842         (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
20843         (gst_alsasrc_reset):
20844         * ext/alsa/gstalsasrc.h:
20845         * gst-libs/gst/audio/Makefile.am:
20846         * gst-libs/gst/audio/gstaudiosink.c:
20847         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
20848         (gst_audioringbuffer_start):
20849         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
20850         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
20851         (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
20852         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
20853         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
20854         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
20855         (gst_audiosrc_base_init), (gst_audiosrc_class_init),
20856         (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
20857         * gst-libs/gst/audio/gstaudiosrc.h:
20858         * gst-libs/gst/audio/gstbaseaudiosink.c:
20859         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
20860         (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
20861         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
20862         * gst-libs/gst/audio/gstbaseaudiosrc.c:
20863         (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
20864         (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
20865         (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
20866         (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
20867         (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
20868         (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
20869         (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
20870         (gst_baseaudiosrc_change_state):
20871         * gst-libs/gst/audio/gstbaseaudiosrc.h:
20872         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
20873         (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
20874         (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
20875         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
20876         (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
20877         (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
20878         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
20879         * gst-libs/gst/audio/gstringbuffer.h:
20880         Added audiosource base classes.
20881         Ported alsasrc, still very basic.
20882
20883 2005-07-06  Wim Taymans  <wim@fluendo.com>
20884
20885         * ext/theora/theoradec.c: (theora_dec_src_getcaps),
20886         (theora_dec_push), (theora_handle_data_packet):
20887         Prepare for better timestamp fix later.
20888
20889         * gst/audioconvert/gstaudioconvert.c:
20890         List most accurate caps first
20891
20892         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
20893         Use proper pad task function.
20894
20895         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
20896         (gst_xvimagesink_show_frame):
20897         Fix deadlock when alloc failed.
20898
20899 2005-07-05  Andy Wingo  <wingo@pobox.com>
20900
20901         * ext/gnomevfs/gstgnomevfssrc.c:
20902         * gst/sine/gstsinesrc.c:
20903         * gst/tcp/gsttcpserversrc.c:
20904         * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
20905
20906         * sys/v4l/: Port from 0.8.
20907
20908         * Many files: Null if we got it....
20909
20910 2005-07-05  Andy Wingo  <wingo@pobox.com>
20911
20912         * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read): 
20913         * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
20914         Signedness fixes.
20915
20916 2005-07-05  Wim Taymans  <wim@fluendo.com>
20917
20918         * configure.ac:
20919         * gst/tcp/Makefile.am:
20920         * gst/tcp/README:
20921         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
20922         (gst_multifdsink_base_init), (gst_multifdsink_class_init),
20923         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
20924         (is_sync_frame), (gst_multifdsink_handle_client_write),
20925         (gst_multifdsink_render), (gst_multifdsink_start),
20926         (gst_multifdsink_stop), (gst_multifdsink_change_state):
20927         * gst/tcp/gstmultifdsink.h:
20928         * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
20929         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
20930         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
20931         * gst/tcp/gsttcp.h:
20932         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
20933         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
20934         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
20935         (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
20936         * gst/tcp/gsttcpclientsink.h:
20937         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
20938         (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
20939         (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
20940         (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
20941         (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
20942         * gst/tcp/gsttcpclientsrc.h:
20943         * gst/tcp/gsttcpplugin.c: (plugin_init):
20944         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
20945         * gst/tcp/gsttcpserversink.h:
20946         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
20947         (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
20948         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
20949         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
20950         (gst_tcpserversrc_stop):
20951         * gst/tcp/gsttcpserversrc.h:
20952         * gst/tcp/gsttcpsink.c:
20953         * gst/tcp/gsttcpsink.h:
20954         * gst/tcp/gsttcpsrc.c:
20955         * gst/tcp/gsttcpsrc.h:
20956         Ported tcp plugins to 0.9. 
20957         
20958
20959 2005-07-05  Andy Wingo  <wingo@pobox.com>
20960
20961         * gst/playback/gstplaybasebin.c (fill_buffer):
20962         message_new_application fixen.
20963
20964         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
20965         Style fix.
20966
20967 2005-07-04  Wim Taymans  <wim@fluendo.com>
20968
20969         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
20970         Set caps on output buffer.
20971
20972 2005-07-04  Andy Wingo  <wingo@pobox.com>
20973
20974         * ext/gnomevfs/gstgnomevfssrc.c
20975         (gst_gnomevfssrc_received_headers_callback) 
20976         (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
20977         hopefully.
20978
20979         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
20980         No refcount leakage.
20981
20982         * configure.ac: Enable -Werror.
20983         
20984         * ext/theora/theoradec.c (theora_dec_src_getcaps):
20985         * gst/audioconvert/bufferframesconvert.c
20986         (buffer_frames_convert_fixate):
20987         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
20988         (gst_audio_convert_fixate):
20989         * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
20990         (gst_sinesrc_create): Fixate func changes.
20991         
20992         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
20993         (gst_ximagesink_buffer_alloc): Unused var.
20994
20995 2005-07-01  Andy Wingo  <wingo@pobox.com>
20996
20997         * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
20998         getcaps to do explicit caps. Needs to be done in all decoders,
20999         possibly via a base class.
21000
21001         * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
21002
21003         * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
21004         caps on the sink pad, just rely on the pad template. Also, setting
21005         ANY caps on a pad is not valid because the caps are not fixed.
21006
21007         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
21008         caps on the buffer, and get the width from the desired_caps if
21009         they're set.
21010         (gst_ximagesink_renegotiate_size): Implement via setting the
21011         desired_caps on the ximagesink.
21012         (gst_ximagesink_setcaps): Only reset the width of the player if it
21013         wasn't already set. Not sure if this is right.
21014         (gst_ximagesink_show_frame): Memcpy only for normal buffers.
21015
21016         * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
21017         that the user wants. NULL unless the window has been resized.
21018
21019         * gst/volume/gstvolume.c (volume_transform): Adapt to
21020         basetransform refcount changes.
21021         
21022 2005-07-01  Andy Wingo  <wingo@pobox.com>
21023
21024         * gst/videoscale/gstvideoscale.c:
21025         * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
21026         from BaseTransform, implements a transform_caps. Removed dead code
21027         including some PAR stuff that was never reached -- should probably
21028         be added back somehow.
21029
21030 2005-07-01  Andy Wingo  <wingo@pobox.com>
21031
21032         * gst/videoscale: Merge David's work from 0.8 branch. Changes to
21033         come later.
21034
21035 2005-06-30  Thomas Vander Stichele  <thomas at apestaart dot org>
21036
21037         * configure.ac:
21038         * docs/libs/Makefile.am:
21039         * docs/libs/gst-plugins-libs.types:
21040         * ext/alsa/Makefile.am:
21041         * ext/alsa/gstalsamixer.h:
21042         * ext/alsa/gstalsamixeroptions.h:
21043         * ext/alsa/gstalsamixertrack.h:
21044         * gst-libs/gst/Makefile.am:
21045         * gst-libs/gst/colorbalance/.cvsignore:
21046         * gst-libs/gst/colorbalance/Makefile.am:
21047         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
21048         * gst-libs/gst/colorbalance/colorbalance.c:
21049         * gst-libs/gst/colorbalance/colorbalance.h:
21050         * gst-libs/gst/colorbalance/colorbalance.vcproj:
21051         * gst-libs/gst/colorbalance/colorbalancechannel.c:
21052         * gst-libs/gst/colorbalance/colorbalancechannel.h:
21053         * gst-libs/gst/interfaces/Makefile.am:
21054         * gst-libs/gst/interfaces/colorbalance.c:
21055         (gst_color_balance_class_init):
21056         * gst-libs/gst/interfaces/colorbalance.h:
21057         * gst-libs/gst/interfaces/interfaces-marshal.list:
21058         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
21059         * gst-libs/gst/interfaces/mixer.h:
21060         * gst-libs/gst/interfaces/mixeroptions.h:
21061         * gst-libs/gst/interfaces/navigation.c:
21062         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
21063         * gst-libs/gst/interfaces/tuner.h:
21064         * gst/volume/Makefile.am:
21065         * gst/volume/gstvolume.c:
21066         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
21067         * sys/ximage/Makefile.am:
21068         * sys/ximage/ximagesink.c:
21069         * sys/xvimage/Makefile.am:
21070         * sys/xvimage/xvimagesink.c:
21071           fold in all interfaces into an interfaces dir, preserving CVS
21072           history
21073
21074 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21075
21076         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
21077           Fix build after riff changes.
21078
21079 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21080
21081         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
21082         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
21083         (gst_riff_create_video_template_caps),
21084         (gst_riff_create_audio_template_caps),
21085         (gst_riff_create_iavs_template_caps):
21086         * gst-libs/gst/riff/riff-media.h:
21087         * gst-libs/gst/riff/riff-read.h:
21088         * gst-libs/gst/riff/riff.c: (gst_riff_init):
21089           Add gst_riff_init() to initialize the debug category, instead
21090           of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
21091
21092 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21093
21094         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
21095           Oops, I shouldn't apply hacks.
21096
21097 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21098
21099         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
21100           Remove pad_loop function which doesn't work.
21101
21102 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21103
21104         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
21105           Send EOS when deactivating.
21106         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
21107         (check_queue), (queue_threshold_reached), (queue_out_of_data),
21108         (gen_preroll_element), (probe_triggered), (mute_stream),
21109         (silence_stream), (new_decoded_pad), (setup_substreams),
21110         (set_active_source):
21111         * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
21112         (remove_sinks), (add_sink):
21113         * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
21114           Change for new probe API.
21115
21116 2005-06-29  Wim Taymans  <wim@fluendo.com>
21117
21118         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
21119         * gst-libs/gst/audio/gstbaseaudiosink.c:
21120         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
21121         (gst_baseaudiosink_change_state):
21122         * gst-libs/gst/audio/gstbaseaudiosink.h:
21123         * gst-libs/gst/audio/gstringbuffer.c:
21124         (gst_ringbuffer_set_callback):
21125         Fix compilation error.
21126         Ringbuffer starts out as not running.
21127         Free our clock in dispose.
21128         When releasing the ringbuffer we need to renegotiate so
21129         clear the pad caps.
21130
21131 2005-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
21132
21133         * autogen.sh:
21134         * configure.ac:
21135         * docs/Makefile.am:
21136         * docs/libs/Makefile.am:
21137         * docs/libs/gst-plugins-libs-docs.sgml:
21138         * docs/libs/gst-plugins-libs-sections.txt:
21139         * docs/libs/gst-plugins-libs.types:
21140         * docs/libs/tmpl/gstaudio.sgml:
21141         * docs/libs/tmpl/gstcolorbalance.sgml:
21142         * docs/libs/tmpl/gstringbuffer.sgml:
21143         * gst-libs/gst/audio/gstringbuffer.c:
21144         (gst_ringbuffer_set_callback):
21145           reinstate gtk-doc docs for plugin libs
21146
21147 2005-06-28  Wim Taymans  <wim@fluendo.com>
21148
21149         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
21150         (gst_ogg_demux_init):
21151         Removed pad loop function.
21152
21153 2005-06-28  Wim Taymans  <wim@fluendo.com>
21154
21155         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
21156         If we're building a chain we are not in an error case
21157         when we queue a buffer.
21158
21159 2005-06-28  Andy Wingo  <wingo@pobox.com>
21160
21161         * *.c: Don't cast to GstObject before reffing/unreffing.
21162
21163 2005-06-27  Andy Wingo  <wingo@pobox.com>
21164
21165         * gst/videotestsrc/gstvideotestsrc.c
21166         (gst_videotestsrc_activate_push): Activation API changes.
21167
21168         * gst/playback/gstdecodebin.c (gst_decode_bin_change_state) 
21169         (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
21170         they have refs on the decodebin.
21171
21172         * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
21173         parent class.
21174         (gst_ogg_pad_typefind): Don't leak a pad ref.
21175         (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
21176         (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push) 
21177         (gst_ogg_demux_sink_activate_pull): Changes for activation API.
21178
21179 2005-06-27  Edward Hervey  <edward@fluendo.com>
21180
21181         * ext/theora/theoradec.c: (theora_dec_change_state): 
21182         re-arranged call to parent's state change in order to avoid locks (or
21183         worse).
21184
21185 2005-06-26  Edward Hervey  <edward@fluendo.com>
21186
21187         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
21188         2nd argument of 'unknow-type' signal is a GstCaps and not a
21189         GstMiniObject
21190
21191 2005-06-25  Jan Schmidt  <thaytan@mad.scientist.com>
21192         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
21193           Set the worker thread's running flag to TRUE before starting the
21194           thread.
21195         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
21196           Catch a failure to add typefind to the bin.
21197
21198 2005-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21199
21200         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
21201         (gst_sinesrc_init), (gst_sinesrc_create),
21202         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
21203         (gst_sinesrc_start):
21204         * gst/sine/gstsinesrc.h:
21205           add num-buffers and timestamp-offset properties
21206         * gst/videotestsrc/gstvideotestsrc.c:
21207         (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
21208         (gst_videotestsrc_get_property):
21209           add timestamp-offset property
21210
21211 2005-06-23  Christian Schaller  <uraeus@gnome.org>
21212
21213         * configure.ac: add videorate
21214         * gst-plugins-base.spec.in: add videorate
21215
21216 2005-06-23  Wim Taymans  <wim@fluendo.com>
21217
21218         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
21219         (gst_videorate_getcaps), (gst_videorate_setcaps),
21220         (gst_videorate_event), (gst_videorate_chain):
21221         Fixed videorate, fixating an already fixated caps is not
21222         an error.
21223
21224 2005-06-23  Wim Taymans  <wim@fluendo.com>
21225
21226         * ext/ogg/README:
21227         * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
21228         Buffer on caps is not boxed anymore.
21229
21230 2005-06-22  Wim Taymans  <wim@fluendo.com>
21231
21232         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
21233         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
21234         Set buffers on caps as miniobjects and not as boxed.
21235
21236 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
21237
21238         * configure.ac:
21239           back to HEAD
21240
21241 === release 0.9.1 ===
21242
21243 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
21244
21245         * .cvsignore:
21246         * NEWS:
21247         * README:
21248         * RELEASE:
21249         * configure.ac:
21250         * po/af.po:
21251         * po/az.po:
21252         * po/cs.po:
21253         * po/en_GB.po:
21254         * po/hu.po:
21255         * po/it.po:
21256         * po/nb.po:
21257         * po/nl.po:
21258         * po/or.po:
21259         * po/sq.po:
21260         * po/sr.po:
21261         * po/sv.po:
21262         * po/uk.po:
21263         * po/vi.po:
21264           updates for release
21265
21266 2005-06-09  Andy Wingo  <wingo@pobox.com>
21267
21268         * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
21269         
21270 2005-06-09  Andy Wingo  <wingo@pobox.com>
21271
21272         * configure.ac:
21273         * gst-libs/gst/Makefile.am:
21274         * gst-libs/gst/net/Makefile.am:
21275         Add gstnet to build.
21276
21277 2005-06-09  Andy Wingo  <wingo@pobox.com>
21278
21279         * gst-libs/gst/gconf/gconf.c:
21280         * gst/playback/test.c:
21281         * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
21282         fixes.
21283
21284         * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
21285
21286         * ext/theora/theoraenc.c (theora_enc_chain): 
21287         * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
21288
21289         * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
21290         RealPad.
21291
21292 2005-06-02  Wim Taymans  <wim@fluendo.com>
21293
21294         * gst-libs/gst/net/Makefile.am:
21295         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
21296         * pkgconfig/gstreamer-libs.pc.in:
21297         Added net stuff, version net lib.
21298
21299 2005-06-02  Wim Taymans  <wim@fluendo.com>
21300
21301         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
21302         (query_rates), (query_positions_elems), (query_positions_pads),
21303         (do_seek):
21304         Updated seek example.
21305
21306 2005-06-02  Andy Wingo  <wingo@pobox.com>
21307
21308         * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
21309         * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
21310         list.
21311
21312         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
21313         remove the typefind, the bin dispose will do it for us. When it's
21314         removed and unreffed, the signal handler will be disconnected,
21315         too.
21316         (unlinked): It's too difficult to disconnect from unlinked
21317         handlers, as they are on pads not elements. Just punt if the pads
21318         aren't grandkids of the bin.
21319
21320 2005-06-02  Wim Taymans  <wim@fluendo.com>
21321
21322         * ext/ogg/README:
21323         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
21324         (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
21325         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
21326         * ext/theora/theoradec.c: (theora_dec_src_query),
21327         (theora_handle_data_packet):
21328         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
21329         (theora_enc_chain):
21330         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
21331         (vorbis_handle_data_packet):
21332         * gst/audioconvert/bufferframesconvert.c:
21333         (buffer_frames_convert_chain):
21334         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21335         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
21336         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
21337         (gst_ffmpegcsp_chain):
21338         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
21339         (gst_videorate_getcaps), (gst_videorate_setcaps),
21340         (gst_videorate_event), (gst_videorate_chain):
21341         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
21342         (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
21343         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
21344         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
21345         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
21346         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
21347         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
21348         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
21349         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
21350         Cleanups and buffer alloc.
21351
21352 2005-05-31  Wim Taymans  <wim@fluendo.com>
21353
21354         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
21355         Don't try to call the delay method when the device is not
21356         opened.
21357
21358 2005-05-31  Wim Taymans  <wim@fluendo.com>
21359
21360         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
21361         Get actual segment size and buffer size after opening
21362         the device.
21363
21364 2005-05-30  Wim Taymans  <wim@fluendo.com>
21365
21366         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
21367         (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
21368         Also FLUSH upstream, makes the loop function exit faster.
21369         
21370         * ext/theora/theoradec.c: (theora_dec_src_query):
21371         Some more debug info in the query.
21372         
21373         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
21374         (gst_ximagesink_setcaps):
21375         Release lock on par error, better error reporting.
21376
21377 2005-05-26  Wim Taymans  <wim@fluendo.com>
21378
21379         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
21380         (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
21381         (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
21382         Clear chains in READY
21383         Queue packets until the chain is activated.
21384
21385 2005-05-25  Wim Taymans  <wim@fluendo.com>
21386
21387         * gst-libs/gst/audio/gstaudiosink.c:
21388         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
21389         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
21390         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
21391         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
21392         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
21393         (gst_audiosink_create_ringbuffer):
21394         * gst-libs/gst/audio/gstbaseaudiosink.c:
21395         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
21396         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
21397         (gst_baseaudiosink_set_property), (build_linear_format),
21398         (debug_spec_caps), (debug_spec_buffer),
21399         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
21400         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
21401         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
21402         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
21403         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
21404         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
21405         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
21406         (gst_ringbuffer_play), (gst_ringbuffer_pause),
21407         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
21408         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
21409         (wait_segment), (gst_ringbuffer_commit),
21410         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
21411         (gst_ringbuffer_clear):
21412         Various small cleanups.
21413
21414         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
21415         (gst_audio_convert_change_state):
21416         * gst/subparse/gstsubparse.c: (gst_subparse_chain):
21417         No need to take the locks anymore.
21418
21419 2005-05-25  Wim Taymans  <wim@fluendo.com>
21420
21421         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
21422         (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
21423         (remove_element_chain), (no_more_pads), (unlinked), (close_link),
21424         (type_found):
21425         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
21426         (group_destroy), (group_commit), (queue_overrun),
21427         (gen_preroll_element), (no_more_pads), (preroll_unlinked),
21428         (mute_stream), (new_decoded_pad), (setup_substreams),
21429         (setup_source), (mute_group_type), (set_active_source),
21430         (gst_play_base_bin_change_state):
21431         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
21432         (gen_video_element), (gen_text_element), (gen_audio_element),
21433         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
21434         * gst/playback/gststreaminfo.c: (gst_stream_info_new),
21435         (gst_stream_info_dispose), (gst_stream_info_set_mute):
21436         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
21437         Some playbin cleanups mostly refcounting sloppyness.
21438
21439 2005-05-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21440
21441         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
21442           Work with streaming input.
21443
21444 2005-05-25  Wim Taymans  <wim@fluendo.com>
21445
21446         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21447         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
21448         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
21449         (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
21450         No need to take the STREAM lock anymore.
21451
21452 2005-05-25  Wim Taymans  <wim@fluendo.com>
21453
21454         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
21455         (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
21456         (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
21457         (gst_ogg_demux_chain), (gst_ogg_demux_loop),
21458         (gst_ogg_demux_sink_activate):
21459         * ext/theora/theoradec.c: (theora_dec_src_event),
21460         (theora_handle_comment_packet), (theora_dec_chain),
21461         (theora_dec_change_state):
21462         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
21463         (vorbis_handle_data_packet), (vorbis_dec_chain),
21464         (vorbis_dec_change_state):
21465         Remove STREAM locks as they are taken in core now.
21466         Never set bogus granulepos on vorbis/theora.
21467         Fix leaks in theoradec tag parsing.
21468
21469 2005-05-25  Wim Taymans  <wim@fluendo.com>
21470
21471         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
21472         Fix memleaks, GST_BUFFER_DATA() is not freed.
21473
21474 2005-05-25  Wim Taymans  <wim@fluendo.com>
21475
21476         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
21477         Open non-blocking, set to blocking mode afterwards to avoid
21478         lockups when audio device is busy.
21479
21480 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21481
21482         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
21483           This can't be good.
21484
21485 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21486
21487         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
21488         (gst_audio_convert_chain), (gst_audio_convert_link_src),
21489         (gst_audio_convert_setcaps):
21490           Implement instant setup switching.
21491
21492 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21493
21494         * gst/playback/gstplaybasebin.c: (probe_triggered):
21495           Fix missing unlock.
21496         * gst/playback/gstplaybin.c: (add_sink):
21497           First add, then link (otherwise pad link fails).
21498
21499 2005-05-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21500
21501         * examples/Makefile.am:
21502         fix buildbot (make distcheck)
21503
21504 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21505
21506         * gst/playback/gstplaybin.c: (gen_vis_element):
21507           Remove some wrong code. Doesn't work yet.
21508
21509 2005-05-19  Wim Taymans  <wim@fluendo.com>
21510
21511         * gst-libs/gst/net/Makefile.am:
21512         * gst-libs/gst/net/README:
21513         * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
21514         (gst_netbuffer_class_init), (gst_netbuffer_init),
21515         (gst_netbuffer_finalize), (gst_netbuffer_copy),
21516         (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
21517         (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
21518         (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
21519         * gst-libs/gst/net/gstnetbuffer.h:
21520         Added buffer subclass to store extra to/from addresses for
21521         network sources/sinks.
21522
21523 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21524
21525         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
21526           Don't lock an unassigned variable.
21527
21528 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21529
21530         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
21531           Increase buffer for video, decrease buffer for other media types.
21532         * gst/playback/gstplaybin.c: (gen_video_element),
21533         (gen_audio_element):
21534           Change names for debugging purposes.
21535
21536 2005-05-18  Wim Taymans  <wim@fluendo.com>
21537
21538         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21539         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
21540         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
21541         (gst_ffmpegcsp_chain):
21542         Enable buffer alloc passthrough if the source and dest
21543         formats are the same.
21544
21545 2005-05-17  Wim Taymans  <wim@fluendo.com>
21546
21547         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
21548         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
21549         (gst_ogg_demux_chain_unlocked):
21550         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
21551         (gst_audio_convert_caps_remove_format_info),
21552         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
21553         (gst_audio_convert_fixate), (gst_audio_convert_change_state):
21554         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21555         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
21556         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
21557         (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
21558         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
21559         (gst_ffmpegcsp_get_property):
21560         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
21561         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
21562         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
21563         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
21564         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
21565         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
21566         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
21567         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
21568         Leak fixes in oggdemux.
21569         Some cleanups in audioconvert.
21570         Make passthrough work along with buffer_alloc etc.
21571         Make buffer_alloc and buffer recycling actually work in
21572         xvimagesink.
21573
21574 2005-05-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21575
21576         * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
21577           make the compiler happy
21578
21579 2005-05-17  Wim Taymans  <wim@fluendo.com>
21580
21581         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
21582         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
21583         (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
21584         (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
21585         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
21586         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
21587         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
21588         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
21589         (gst_xvimagesink_set_xwindow_id):
21590         * sys/xvimage/xvimagesink.h:
21591         Port xvimagesink to new MiniObject.
21592
21593 2005-05-17  Wim Taymans  <wim@fluendo.com>
21594
21595         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
21596         (gst_audiofilter_chain):
21597         * gst-libs/gst/audio/gstaudiosink.c:
21598         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
21599         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
21600         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
21601         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
21602         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
21603         (gst_audiosink_create_ringbuffer):
21604         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
21605         (gst_audio_convert_caps_remove_format_info),
21606         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
21607         (gst_audio_convert_fixate), (gst_audio_convert_channels):
21608         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21609         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
21610         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
21611         Fix passthrough in ffmpegcolorspace.
21612         Fix memset in audiosink on wrong memory.
21613
21614 2005-05-16  David Schleef  <ds@schleef.org>
21615
21616         * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
21617         to GstMiniObject.
21618
21619 2005-05-16  David Schleef  <ds@schleef.org>
21620
21621         Port from GstData to GstMiniObject.
21622         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
21623         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
21624         (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
21625         (gst_ogg_mux_collected):
21626         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
21627         * ext/theora/theoradec.c: (theora_handle_comment_packet),
21628         (theora_handle_data_packet):
21629         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
21630         (theora_set_header_on_caps), (theora_enc_chain):
21631         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
21632         (vorbis_handle_comment_packet):
21633         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
21634         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
21635         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
21636         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
21637         * gst/audioconvert/gstaudioconvert.c:
21638         (gst_audio_convert_get_buffer):
21639         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
21640         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
21641         (mute_stream), (silence_stream):
21642         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
21643         * gst/volume/gstvolume.c: (volume_transform):
21644         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
21645         (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
21646         (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
21647         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
21648         (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
21649         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
21650         (gst_ximagesink_buffer_alloc):
21651         * sys/ximage/ximagesink.h:
21652
21653 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21654
21655         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
21656         (fill_buffer), (check_queue), (queue_threshold_reached),
21657         (queue_out_of_data):
21658         * gst/playback/gstplaybasebin.h:
21659           Post buffer-fullness on the bus.
21660
21661 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21662
21663         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
21664         (try_to_link_1):
21665         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
21666         (group_commit), (probe_triggered), (setup_source),
21667         (gst_play_base_bin_change_state):
21668         * gst/playback/gstplaybasebin.h:
21669         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
21670         (gst_play_bin_init), (remove_sinks), (setup_sinks),
21671         (gst_play_bin_change_state):
21672           Move setup_output_pads into a virtual function, remove
21673           group-switch (no longer needed) and redirect (handled by bus
21674           now) signals.
21675
21676 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21677
21678         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
21679         (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
21680         (get_active_group), (get_building_group), (group_destroy),
21681         (group_commit), (check_queue), (queue_overrun),
21682         (queue_threshold_reached), (queue_out_of_data),
21683         (gen_preroll_element), (remove_groups), (unknown_type),
21684         (add_element_stream), (no_more_pads), (probe_triggered),
21685         (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
21686         (setup_substreams), (setup_source), (finish_source),
21687         (prepare_output), (muted_group_change_state),
21688         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
21689         (gst_play_base_bin_change_state):
21690         * gst/playback/gstplaybasebin.h:
21691         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
21692         (gst_play_bin_init), (gst_play_bin_set_property),
21693         (gen_video_element), (gen_text_element), (gen_audio_element),
21694         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
21695         (gst_play_bin_change_state):
21696         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
21697         (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
21698         (stream_info_change_state), (gst_stream_info_set_mute),
21699         (gst_stream_info_get_property):
21700         * gst/playback/gststreaminfo.h:
21701         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
21702         (gst_stream_selector_get_linked_pad),
21703         (gst_stream_selector_getcaps),
21704         (gst_stream_selector_get_linked_pads),
21705         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
21706         * gst/playback/gststreamselector.h:
21707           Rough port of playbin. Needs some more work, but is mostly done,
21708           and uses a few locks in important places, which should make stuff
21709           like chain-switches clean. Still uses GST_STATE() in a few places,
21710           which isn't all that good an idea, subtitles/elements disabled
21711           because no elements to test with and thus probably broken, query
21712           and event handling moved to GstBin, internal thread removed
21713           alltogether because the pipeline does that for us now. Can play
21714           Ogg/Vorbis files. Haven't tested anything else yet.
21715
21716 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21717
21718         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
21719           Do no-more-pads (needed for autoplugging).
21720
21721 2005-05-10  Andy Wingo  <wingo@pobox.com>
21722
21723         * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
21724         message to the bus with the tags. Still not sent downstream tho.
21725
21726         * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
21727         get_parent.
21728         (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
21729         avoid refcounting hassles.
21730
21731 2005-05-09  Andy Wingo  <wingo@pobox.com>
21732
21733         * gst/volume/Makefile.am:
21734         * gst/volume/demo.c
21735         * gst/volume/gstvolume.h
21736         * gst/volume/gstvolume.c: Port to 0.9 API, derive from
21737         basetransform. Probably need an audio filter base class.
21738
21739 2005-05-09  Wim Taymans  <wim@fluendo.com>
21740
21741         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
21742         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
21743         (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
21744         (gst_vorbisenc_chain):
21745         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
21746         (gst_audio_convert_caps_remove_format_info),
21747         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
21748         (gst_audio_convert_fixate), (gst_audio_convert_channels):
21749         Make caps writable before writing to it.
21750         Fix negotiation in audioconvert some more.
21751
21752 2005-05-09  Wim Taymans  <wim@fluendo.com>
21753
21754         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
21755         (gst_videorate_getcaps), (gst_videorate_setcaps),
21756         (gst_videorate_event), (gst_videorate_chain):
21757         Better negotiation.
21758
21759 2005-05-09  Wim Taymans  <wim@fluendo.com>
21760
21761         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
21762         (gst_videorate_getcaps), (gst_videorate_setcaps),
21763         (gst_videorate_blank_data), (gst_videorate_init),
21764         (gst_videorate_event), (gst_videorate_chain),
21765         (gst_videorate_change_state):
21766         Port videorate, do a better job at negotiation while we're at
21767         it.
21768
21769 2005-05-09  Jan Schmidt  <thaytan@mad.scientist.com>
21770
21771         * configure.ac:
21772           Disable libvisual
21773
21774         * examples/Makefile.am:
21775         * gst-libs/gst/audio/Makefile.am:
21776         * gst-libs/gst/riff/Makefile.am:
21777         * gst-libs/gst/tag/Makefile.am:
21778         * gst-libs/gst/video/Makefile.am:
21779           Fixups for missing variables.
21780
21781 2005-05-09  Wim Taymans  <wim@fluendo.com>
21782
21783         * examples/seeking/seek.c: (make_theora_pipeline),
21784         (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
21785         (query_rates), (query_positions_elems), (query_positions_pads),
21786         (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
21787         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
21788         (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
21789         (gst_ogg_pad_typefind), (gst_ogg_demux_init),
21790         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
21791         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
21792         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
21793         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
21794         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
21795         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
21796         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
21797         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
21798         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
21799         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
21800         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
21801         (theora_dec_src_convert), (theora_dec_sink_convert),
21802         (theora_dec_src_query), (theora_dec_sink_query),
21803         (theora_dec_src_event), (theora_dec_sink_event),
21804         (theora_handle_comment_packet), (theora_handle_type_packet),
21805         (theora_handle_header_packet), (theora_handle_data_packet),
21806         (theora_dec_chain):
21807         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
21808         (vorbis_dec_convert), (vorbis_dec_src_query),
21809         (vorbis_dec_sink_query), (vorbis_dec_src_event),
21810         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
21811         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
21812         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
21813         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
21814         (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
21815         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
21816         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
21817         (gst_play_bin_query):
21818         * gst/playback/test3.c: (update_scale):
21819         * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
21820         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
21821         * gst/subparse/gstsubparse.c: (gst_subparse_init):
21822         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
21823         (gst_videotestsrc_src_query):
21824         * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
21825         (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
21826         (paint_hline_YUV9):
21827         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
21828         Port to new query API.
21829         Updated seek.
21830         Cleanups in x[v]imagesink
21831
21832 2005-05-09  Andy Wingo  <wingo@pobox.com>
21833
21834         * ext/alsa/gstalsasink.h:
21835         * ext/gnomevfs/gstgnomevfssrc.c:
21836         (gst_gnomevfssrc_get_icy_metadata):
21837         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
21838         (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
21839         * ext/theora/theoradec.c (theora_dec_src_query)
21840         (theora_dec_src_event, theora_dec_sink_event)
21841         (theora_handle_comment_packet, theora_handle_data_packet):
21842         * ext/theora/theoraenc.c (theora_enc_chain):
21843         * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
21844         (vorbis_dec_sink_event, vorbis_handle_comment_packet):
21845         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
21846         * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
21847         (qt_type_find):
21848         * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
21849         (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
21850         (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
21851         (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
21852         (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
21853         (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
21854         (paint_setup_xBGR8888, paint_setup_RGBx8888)
21855         (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
21856         (paint_setup_RGB565, paint_setup_xRGB1555):
21857         * gst/videotestsrc/videotestsrc.h:
21858         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
21859         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
21860         (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
21861         GCC4 fixes.
21862         
21863         * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
21864         gst_pad_query_position. Fixes oggdemux.
21865
21866 2005-05-08  David Schleef  <ds@schleef.org>
21867
21868         * configure.ac: Require liboil.
21869         * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
21870         a few more.
21871         * gst/videotestsrc/videotestsrc.c:
21872         * gst/videotestsrc/videotestsrc.h:
21873
21874 2005-05-06  Wim Taymans  <wim@fluendo.com>
21875
21876         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21877         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
21878         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
21879         Well, unreffing a buffer right before pushing it is asking
21880         for trouble..
21881
21882 2005-05-06  Christian Schaller  <uraeus@gnome.org>
21883
21884         * pkgconfig/gstreamer-libs.pc.in: add missing library calls
21885
21886 2005-05-06  Wim Taymans  <wim@fluendo.com>
21887
21888         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
21889         (gst_audio_convert_caps_remove_format_info),
21890         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
21891         (gst_audio_convert_fixate), (gst_audio_convert_channels):
21892         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21893         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
21894         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
21895         * gst/sine/Makefile.am:
21896         * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
21897         (gst_sinesrc_class_init), (gst_sinesrc_init),
21898         (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
21899         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
21900         (gst_sinesrc_update_freq):
21901         * gst/sine/gstsinesrc.h:
21902         * gst/tcp/gstmultifdsink.c:
21903         * sys/xvimage/xvimagesink.c:
21904         Fixed negotiation wrt _peer_get_caps()
21905         Some cleanups.
21906
21907
21908 2005-05-06  Wim Taymans  <wim@fluendo.com>
21909
21910         * gst-libs/gst/audio/gstaudiosink.c:
21911         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
21912         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
21913         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
21914         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
21915         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
21916         (gst_audiosink_create_ringbuffer):
21917         * gst-libs/gst/audio/gstbaseaudiosink.c:
21918         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
21919         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
21920         (gst_baseaudiosink_set_property), (build_linear_format),
21921         (debug_spec_caps), (debug_spec_buffer),
21922         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
21923         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
21924         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
21925         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
21926         * gst-libs/gst/audio/gstbaseaudiosink.h:
21927         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
21928         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
21929         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
21930         (gst_ringbuffer_play), (gst_ringbuffer_pause),
21931         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
21932         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
21933         (wait_segment), (gst_ringbuffer_commit),
21934         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
21935         (gst_ringbuffer_clear):
21936         * gst-libs/gst/audio/gstringbuffer.h:
21937         Make the base audiosink return an error when there is no
21938         audiobuffer negotiated.
21939
21940 2005-05-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21941
21942         * ext/Makefile.am:
21943         Disable cdparanoia until someone ports it!
21944
21945 2005-05-06  Wim Taymans  <wim@fluendo.com>
21946
21947         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
21948         (gst_ogg_demux_sink_activate):
21949         And revert after wingo's revert.. sigh..
21950
21951 2005-05-05  Andy Wingo  <wingo@pobox.com>
21952
21953         * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
21954         GObject.
21955         * configure.ac: Return audiorate and subparse from the ghetto.
21956         Re-enable -Wall -Werror.
21957         * gst/subparse/gstsubparse.c:
21958         * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
21959         or chain-based. Cleaned up a bit. Not tested.
21960         
21961 2005-05-05  Christian Schaller <christian@fluendo.com> 
21962
21963         * Makefile.am: remove stuff that is not building
21964         * configure.ac: remove stuff that is not building
21965         * examples/Makefile.am: remove stuff that is not building
21966         * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
21967         * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
21968         * sys/Makefile.am: remove stuff that is not building
21969         * testsuite/Makefile.am: remove stuff that is not building
21970
21971 2005-05-05  Andy Wingo  <wingo@pobox.com>
21972
21973         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
21974         * gst-libs/gst/tag/gstvorbistag.c:
21975         (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
21976         * gst/adder/gstadder.h:
21977         * gst/audioconvert/gstchannelmix.c:
21978         (gst_audio_convert_fill_one_other):
21979         * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
21980         (gst_audiorate_init), (gst_audiorate_chain):
21981         * gst/playback/gstplaybasebin.c: (setup_source):
21982         * gst/playback/test3.c: (update_scale):
21983         Some GCC4 fixes
21984         
21985         * po/af.po:
21986         * po/az.po:
21987         * po/cs.po:
21988         * po/en_GB.po:
21989         * po/hu.po:
21990         * po/it.po:
21991         * po/nb.po:
21992         * po/nl.po:
21993         * po/or.po:
21994         * po/sq.po:
21995         * po/sr.po:
21996         * po/sv.po:
21997         * po/uk.po:
21998         * po/vi.po: Foo
21999
22000 2005-05-05  Wim Taymans  <wim@fluendo.com>
22001
22002         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
22003         (gst_audio_convert_caps_remove_format_info),
22004         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
22005         (gst_audio_convert_change_state), (gst_audio_convert_channels):
22006         * gst/videotestsrc/gstvideotestsrc.c:
22007         (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
22008         (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
22009         (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
22010         (gst_videotestsrc_init), (gst_videotestsrc_loop):
22011         Don't ignore _push() return values.
22012         Make sure no processing is done when shutting down.
22013         Videotestsrc pad activation fix.
22014
22015 2005-05-05  Wim Taymans  <wim@fluendo.com>
22016
22017         * gst/adder/Makefile.am:
22018         * gst/adder/gstadder.c: (gst_adder_setcaps),
22019         (gst_adder_class_init), (gst_adder_init),
22020         (gst_adder_request_new_pad), (gst_adder_collected),
22021         (gst_adder_change_state):
22022         * gst/adder/gstadder.h:
22023         Ported adder as an example of a mixer element using
22024         collect pads. Needs more negotiation work.
22025
22026 2005-05-05  Wim Taymans  <wim@fluendo.com>
22027
22028         * ext/theora/theoradec.c: (_inc_granulepos),
22029         (theora_dec_src_event), (theora_dec_sink_event),
22030         (theora_handle_comment_packet), (theora_handle_type_packet),
22031         (theora_handle_header_packet), (theora_handle_data_packet),
22032         (theora_dec_chain):
22033         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
22034         (gst_theora_enc_init), (theora_enc_sink_setcaps),
22035         (theora_push_buffer), (theora_push_packet),
22036         (theora_enc_sink_event), (theora_enc_chain),
22037         (theora_enc_change_state), (theora_enc_set_property),
22038         (theora_enc_get_property):
22039         Added stream lock to decoder so that we can serialize
22040         the discont event.
22041         More theoraenc porting, recover from errors, do clean
22042         shutdown.
22043
22044 2005-05-05  Wim Taymans  <wim@fluendo.com>
22045
22046         * ext/ogg/Makefile.am:
22047         * ext/ogg/README:
22048         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
22049         (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
22050         (gst_ogg_print):
22051         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
22052         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
22053         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
22054         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
22055         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
22056         (gst_ogg_mux_change_state):
22057         Ported ogg muxer.
22058
22059 2005-05-05  Wim Taymans  <wim@fluendo.com>
22060
22061         * docs/design-audiosinks.txt:
22062         * gst-libs/gst/audio/TODO:
22063         * gst-libs/gst/audio/gstaudiosink.c:
22064         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
22065         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
22066         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
22067         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
22068         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
22069         (gst_audiosink_create_ringbuffer):
22070         * gst-libs/gst/audio/gstbaseaudiosink.c:
22071         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
22072         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
22073         (gst_baseaudiosink_set_property), (build_linear_format),
22074         (debug_spec_caps), (debug_spec_buffer),
22075         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
22076         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
22077         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
22078         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
22079         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
22080         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
22081         (gst_ringbuffer_release), (gst_ringbuffer_play),
22082         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
22083         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
22084         (gst_ringbuffer_set_sample), (wait_segment),
22085         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
22086         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
22087         More work on the audiosink, mostly debugging and a race in
22088         shutdown.
22089
22090 2005-04-28  Wim Taymans  <wim@fluendo.com>
22091
22092         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
22093         (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
22094         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
22095         (vorbis_dec_src_query), (vorbis_dec_src_event),
22096         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
22097         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
22098         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
22099         Don't crap out when seeking back to position 0.
22100
22101 2005-04-28  Wim Taymans  <wim@fluendo.com>
22102
22103         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
22104         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
22105         (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
22106         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
22107         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
22108         Make audio sink configurable, use alsasink as default.
22109
22110 2005-04-28  Wim Taymans  <wim@fluendo.com>
22111
22112         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
22113         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
22114         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
22115         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
22116         (vorbis_dec_change_state):
22117         * ext/vorbis/vorbisdec.h:
22118         Refactor, use STREAM_LOCK.
22119
22120 2005-04-28  Wim Taymans  <wim@fluendo.com>
22121
22122         * ext/theora/theoradec.c: (_inc_granulepos),
22123         (theora_dec_sink_event), (theora_handle_comment_packet),
22124         (theora_handle_type_packet), (theora_handle_header_packet),
22125         (theora_handle_data_packet), (theora_dec_chain),
22126         (theora_dec_change_state):
22127         Refactor a bit, use STREAM_LOCK.
22128
22129 2005-04-28  Wim Taymans  <wim@fluendo.com>
22130
22131         * ext/alsa/Makefile.am:
22132         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
22133         (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
22134         (gst_alsa_link), (gst_alsa_close_audio):
22135         * ext/alsa/gstalsaplugin.c: (plugin_init):
22136         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
22137         (gst_alsasink_dispose), (gst_alsasink_base_init),
22138         (gst_alsasink_class_init), (gst_alsasink_init),
22139         (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
22140         (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
22141         (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
22142         (gst_alsasink_reset):
22143         * ext/alsa/gstalsasink.h:
22144         Implement alsasink with simple open/write/close API. 
22145         Make alsa dir build by disabling compilation of code.
22146
22147 2005-04-28  Wim Taymans  <wim@fluendo.com>
22148
22149         * gst-libs/gst/audio/Makefile.am:
22150         * gst-libs/gst/audio/audio.h:
22151         * gst-libs/gst/audio/audioclock.c:
22152         * gst-libs/gst/audio/audioclock.h:
22153         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
22154         (gst_audio_clock_class_init), (gst_audio_clock_init),
22155         (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
22156         * gst-libs/gst/audio/gstaudioclock.h:
22157         * gst-libs/gst/audio/gstaudiosink.c:
22158         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
22159         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
22160         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
22161         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
22162         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
22163         (gst_audiosink_create_ringbuffer):
22164         * gst-libs/gst/audio/gstbaseaudiosink.c:
22165         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
22166         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
22167         (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
22168         (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
22169         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
22170         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
22171         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
22172         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
22173         * gst-libs/gst/audio/gstbaseaudiosink.h:
22174         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
22175         (gst_ringbuffer_init), (gst_ringbuffer_finalize),
22176         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
22177         (gst_ringbuffer_release), (gst_ringbuffer_play),
22178         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
22179         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
22180         (gst_ringbuffer_set_sample), (wait_segment),
22181         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
22182         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
22183         * gst-libs/gst/audio/gstringbuffer.h:
22184         Make ringbuffer faster and more simple by removing the locks
22185         in the playback thread.
22186         Add sample accurate playback based on buffer sample offsets.
22187         Make the baseaudiosink provide a clock.
22188         Parse caps in the base class.
22189         Correctly handle seeking, flushing and state changes.
22190
22191 2005-04-25  Thomas Vander Stichele  <thomas at apestaart dot org>
22192
22193         * configure.ac:
22194         * gst/audioconvert/Makefile.am:
22195         * gst/audioscale/Makefile.am:
22196           Fix part of the build.  Come on guys, autogen didn't even work :)
22197
22198 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22199
22200         * configure.ac:
22201         * gst-libs/gst/Makefile.am:
22202         * gst-libs/gst/media-info/.cvsignore:
22203         * gst-libs/gst/media-info/Makefile.am:
22204         * gst-libs/gst/media-info/README:
22205         * gst-libs/gst/media-info/media-info-priv.c:
22206         * gst-libs/gst/media-info/media-info-priv.h:
22207         * gst-libs/gst/media-info/media-info-test.c:
22208         * gst-libs/gst/media-info/media-info.c:
22209         * gst-libs/gst/media-info/media-info.h:
22210         * gst-libs/gst/media-info/media-info.vcproj:
22211         * pkgconfig/Makefile.am:
22212         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
22213         * pkgconfig/gstreamer-media-info.pc.in:
22214           Remove media-info, which is also successed by playbin (see Totem
22215           implementation).
22216
22217 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22218
22219         * configure.ac:
22220         * examples/Makefile.am:
22221         * examples/gstplay/.cvsignore:
22222         * examples/gstplay/Makefile.am:
22223         * examples/gstplay/player.c:
22224         * gst-libs/gst/Makefile.am:
22225         * gst-libs/gst/play/.cvsignore:
22226         * gst-libs/gst/play/Makefile.am:
22227         * gst-libs/gst/play/play.c:
22228         * gst-libs/gst/play/play.h:
22229         * gst-libs/gst/play/play.vcproj:
22230         * pkgconfig/Makefile.am:
22231         * pkgconfig/gstreamer-play-uninstalled.pc.in:
22232         * pkgconfig/gstreamer-play.pc.in:
22233           Remove libgstplay, playbin is now the official successor.
22234
22235 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22236
22237         * configure.ac:
22238         * gst-libs/gst/Makefile.am:
22239         * gst-libs/gst/xwindowlistener/Makefile.am:
22240         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
22241         * gst-libs/gst/xwindowlistener/xwindowlistener.h:
22242           Remove deprecated xwindowlistener (I've moved xwindowlistening
22243           in the v4l/v4l2 plugins over to serverside).
22244
22245 2005-04-25  David Schleef  <ds@schleef.org>
22246
22247         * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
22248         to examples/dynparams.  Examples do not belong interspersed with
22249         source code.
22250         * examples/dynparams/demo-dparams.c:
22251         * gst/sine/Makefile.am:
22252         * gst/sine/demo-dparams.c:
22253
22254 2005-04-25  David Schleef  <ds@schleef.org>
22255
22256         Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
22257         * gst-libs/gst/audio/Makefile.am:
22258         * gst-libs/gst/riff/Makefile.am:
22259         * gst-libs/gst/tag/Makefile.am:
22260         * gst-libs/gst/video/Makefile.am:
22261         * gst-libs/gst/xwindowlistener/Makefile.am:
22262
22263         Convert to 0.9 API, seems to work:
22264         * sys/ximage/Makefile.am:
22265         * sys/ximage/ximagesink.c:
22266
22267 2005-04-24  David Schleef  <ds@schleef.org>
22268
22269         Link plugins against libraries:
22270         * ext/alsa/Makefile.am:
22271         * gst/tcp/Makefile.am:
22272
22273         Remove asm code that should be in liboil
22274         * gst/videoscale/Makefile.am:
22275         * gst/videoscale/videoscale_x86_asm.s:
22276
22277         gettext wants these checked in:
22278         * po/af.po:
22279         * po/az.po:
22280         * po/cs.po:
22281         * po/en_GB.po:
22282         * po/hu.po:
22283         * po/it.po:
22284         * po/nb.po:
22285         * po/nl.po:
22286         * po/or.po:
22287         * po/sq.po:
22288         * po/sr.po:
22289         * po/sv.po:
22290         * po/uk.po:
22291         * po/vi.po:
22292
22293 2005-04-24  David Schleef  <ds@schleef.org>
22294
22295         Convert gst_main() to g_main_loop_run()
22296         * gst/playback/decodetest.c: (main):
22297         * gst/playback/test2.c: (main):
22298         * gst/playback/test3.c: (main):
22299         * gst/playback/test4.c: (main):
22300
22301         Link plugins against libraries:
22302         * ext/libvisual/Makefile.am:
22303         * sys/xvimage/Makefile.am:
22304
22305 2005-04-24  David Schleef  <ds@schleef.org>
22306
22307         * configure.ac: Remove idct and resample libs
22308         * gst-libs/gst/Makefile.am: same
22309
22310         Remove usage of gst_library_load():
22311         * ext/alsa/gstalsaplugin.c: (plugin_init):
22312         * ext/libvisual/visual.c: (plugin_init):
22313         * ext/ogg/gstogg.c: (plugin_init):
22314         * ext/theora/theora.c: (plugin_init):
22315         * ext/vorbis/vorbis.c: (plugin_init):
22316         * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
22317         * gst/audioscale/gstaudioscale.c:
22318         * gst/adder/gstadder.c: (plugin_init):
22319         * gst/audioconvert/plugin.c: (plugin_init):
22320         * sys/ximage/ximagesink.c: (plugin_init):
22321         * sys/xvimage/xvimagesink.c: (plugin_init):
22322         * gst/tcp/gsttcpplugin.c: (plugin_init):
22323
22324         Link plugins against libraries:
22325         * ext/ogg/Makefile.am:
22326         * ext/theora/Makefile.am:
22327         * ext/vorbis/Makefile.am:
22328         * gst/audioconvert/Makefile.am:
22329
22330         Create proper libraries:
22331         * gst-libs/gst/riff/Makefile.am:
22332         * gst-libs/gst/audio/Makefile.am:
22333         * gst-libs/gst/video/Makefile.am:
22334
22335         Move resample library to audioscale plugin directory:
22336         * gst-libs/gst/resample/Makefile.am:
22337         * gst-libs/gst/resample/README:
22338         * gst-libs/gst/resample/dtof.c:
22339         * gst-libs/gst/resample/dtos.c:
22340         * gst-libs/gst/resample/functable.c:
22341         * gst-libs/gst/resample/private.h:
22342         * gst-libs/gst/resample/resample.c:
22343         * gst-libs/gst/resample/resample.h:
22344         * gst-libs/gst/resample/resample.vcproj:
22345         * gst-libs/gst/resample/test.c:
22346         * gst/audioscale/Makefile.am:
22347         * gst/audioscale/README:
22348         * gst/audioscale/dtof.c:
22349         * gst/audioscale/dtos.c:
22350         * gst/audioscale/functable.c:
22351         * gst/audioscale/private.h:
22352         * gst/audioscale/resample.c:
22353         * gst/audioscale/resample.h:
22354         * gst/audioscale/test.c:
22355
22356         Move tagedit library to gst-libs:
22357         * gst-libs/gst/tag/Makefile.am:
22358         * gst-libs/gst/tag/gstid3tag.c:
22359         * gst-libs/gst/tag/gsttagediting.c:
22360         * gst-libs/gst/tag/gsttageditingprivate.h:
22361         * gst-libs/gst/tag/gstvorbistag.c:
22362         * gst/tags/Makefile.am:
22363         * gst/tags/gstid3tag.c:
22364         * gst/tags/gstvorbistag.c:
22365
22366         Fix for core changes:
22367         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
22368         (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
22369         (gst_sinesrc_getrange):
22370
22371 2005-04-23  David Schleef  <ds@schleef.org>
22372
22373         * gst-libs/gst/Makefile.am: Remove idct.  It hasn't been used
22374         in gst-plugins in a long time, and properly belongs in liboil.
22375         * gst-libs/gst/idct/Makefile.am:
22376         * gst-libs/gst/idct/README:
22377         * gst-libs/gst/idct/dct.h:
22378         * gst-libs/gst/idct/doieee:
22379         * gst-libs/gst/idct/fastintidct.c:
22380         * gst-libs/gst/idct/floatidct.c:
22381         * gst-libs/gst/idct/idct.c:
22382         * gst-libs/gst/idct/idct.h:
22383         * gst-libs/gst/idct/idtc.vcproj:
22384         * gst-libs/gst/idct/ieeetest.c:
22385         * gst-libs/gst/idct/intidct.c:
22386
22387 2005-04-20  Wim Taymans  <wim@fluendo.com>
22388
22389         * docs/design-audiosinks.txt:
22390         * gst-libs/gst/audio/Makefile.am:
22391         * gst-libs/gst/audio/TODO:
22392         * gst-libs/gst/audio/gstaudiosink.c:
22393         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
22394         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
22395         (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
22396         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
22397         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
22398         (gst_audioringbuffer_delay), (gst_audiosink_base_init),
22399         (gst_audiosink_class_init), (gst_audiosink_init),
22400         (gst_audiosink_create_ringbuffer):
22401         * gst-libs/gst/audio/gstaudiosink.h:
22402         * gst-libs/gst/audio/gstbaseaudiosink.c:
22403         (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
22404         (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
22405         (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
22406         (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
22407         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
22408         (gst_baseaudiosink_create_ringbuffer),
22409         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
22410         * gst-libs/gst/audio/gstbaseaudiosink.h:
22411         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
22412         (gst_ringbuffer_class_init), (gst_ringbuffer_init),
22413         (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
22414         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
22415         (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
22416         (gst_ringbuffer_play), (gst_ringbuffer_pause),
22417         (gst_ringbuffer_resume), (gst_ringbuffer_stop),
22418         (gst_ringbuffer_callback), (gst_ringbuffer_delay),
22419         (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
22420         (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
22421         * gst-libs/gst/audio/gstringbuffer.h:
22422         An attempt at a set of audio base classes together with some
22423         design docs.
22424
22425 2005-04-20  Wim Taymans  <wim@fluendo.com>
22426
22427         * gst/audioconvert/Makefile.am:
22428         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
22429         (gst_audio_convert_caps_remove_format_info),
22430         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
22431         (gst_audio_convert_channels):
22432         Link against audio libs.
22433         Fix audio convert plugin.
22434
22435 2005-04-20  Wim Taymans  <wim@fluendo.com>
22436
22437         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
22438         (gst_ogg_demux_sink_activate):
22439         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
22440         (theora_set_header_on_caps), (theora_enc_sink_event),
22441         (theora_enc_chain):
22442         Fix theora encoder.
22443
22444 2005-04-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22445
22446         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
22447         * gst/playback/gstdecodebin.c: (find_compatibles):
22448           Work with staticpadtemplates in elementfactories.
22449
22450 2005-04-12  Wim Taymans  <wim@fluendo.com>
22451
22452         * gst/playback/README:
22453         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
22454         (compare_ranks), (print_feature), (gst_decode_bin_init),
22455         (dynamic_create), (dynamic_free), (find_compatibles),
22456         (mimetype_is_raw), (close_pad_link), (got_redirect),
22457         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
22458         (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
22459         (gst_decode_bin_change_state):
22460         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
22461         (gst_play_base_bin_init), (group_destroy), (group_commit),
22462         (check_queue), (queue_overrun), (queue_threshold_reached),
22463         (queue_out_of_data), (gen_preroll_element), (unknown_type),
22464         (new_decoded_pad), (setup_subtitle), (gen_source_element),
22465         (got_redirect), (setup_source), (play_base_eos),
22466         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
22467         (gst_play_base_bin_remove_element):
22468         * gst/playback/gstplaybasebin.h:
22469         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
22470         (gst_play_bin_init), (gst_play_bin_dispose),
22471         (gst_play_bin_set_property), (gen_video_element),
22472         (gen_text_element), (gen_audio_element), (remove_sinks),
22473         (gst_play_bin_send_event):
22474         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
22475         (stream_info_change_state), (gst_stream_info_set_mute):
22476         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
22477         (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
22478         (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
22479         (gst_stream_selector_chain):
22480         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
22481         (main):
22482         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
22483         (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
22484         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
22485         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
22486         Raw and crude port of decodebin. 
22487         Make playbin compile.
22488
22489 2005-04-06  Wim Taymans  <wim@fluendo.com>
22490
22491         * ext/gnomevfs/Makefile.am:
22492         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
22493         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
22494         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
22495         (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
22496         (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
22497         (gst_gnomevfssrc_stop):
22498         * ext/ogg/Makefile.am:
22499         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
22500         (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
22501         * ext/theora/Makefile.am:
22502         * ext/theora/theoradec.c: (_inc_granulepos),
22503         (theora_dec_sink_event), (theora_dec_chain):
22504         * ext/vorbis/Makefile.am:
22505         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
22506         (vorbis_dec_sink_event), (vorbis_dec_chain):
22507         * gst-libs/gst/audio/Makefile.am:
22508         * sys/xvimage/Makefile.am:
22509         Make gnomevfssrc extend the source base class.
22510         Fix linking against libs in various plugins.
22511
22512 2005-04-06  Andy Wingo  <wingo@pobox.com>
22513
22514         * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
22515         GST_BASE_LIBS.
22516
22517         * configure.ac: Add check and AC_SUBST for libgstbase.
22518
22519 2005-03-31  Wim Taymans  <wim@fluendo.com>
22520
22521         * examples/seeking/Makefile.am:
22522         * examples/seeking/cdparanoia.c: (main):
22523         * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
22524         (play_cb), (pause_cb), (stop_cb), (main):
22525         * examples/seeking/playbin.c:
22526         * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
22527         (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
22528         (make_sid_pipeline), (make_vorbis_pipeline),
22529         (make_theora_pipeline), (make_vorbis_theora_pipeline),
22530         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
22531         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
22532         (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
22533         (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
22534         (stop_cb), (main):
22535         * examples/seeking/spider_seek.c:
22536         * examples/seeking/vorbisfile.c:
22537         * ext/gnomevfs/Makefile.am:
22538         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
22539         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
22540         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
22541         (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
22542         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
22543         (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
22544         (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
22545         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
22546         * ext/ogg/README:
22547         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
22548         (gst_ogg_pad_class_init), (gst_ogg_pad_init),
22549         (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
22550         (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
22551         (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
22552         (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
22553         (gst_ogg_pad_event), (gst_ogg_pad_reset),
22554         (gst_ogg_demux_factory_filter), (compare_ranks),
22555         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
22556         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
22557         (gst_ogg_chain_new), (gst_ogg_chain_free),
22558         (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
22559         (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
22560         (gst_ogg_demux_class_init), (gst_ogg_demux_init),
22561         (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
22562         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
22563         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
22564         (gst_ogg_demux_get_prev_page),
22565         (gst_ogg_demux_deactivate_current_chain),
22566         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
22567         (gst_ogg_demux_bisect_forward_serialno),
22568         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
22569         (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
22570         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
22571         (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
22572         (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
22573         (gst_ogg_demux_change_state), (gst_ogg_print):
22574         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
22575         (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
22576         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
22577         (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
22578         (gst_ogg_mux_loop):
22579         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
22580         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
22581         (theora_dec_src_convert), (theora_dec_sink_convert),
22582         (theora_dec_src_query), (theora_dec_src_event),
22583         (theora_dec_sink_event), (theora_dec_chain),
22584         (theora_dec_change_state):
22585         * ext/theora/theoraenc.c: (gst_theora_enc_init),
22586         (theora_enc_sink_setcaps), (theora_buffer_from_packet),
22587         (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
22588         (theora_enc_change_state):
22589         * ext/vorbis/Makefile.am:
22590         * ext/vorbis/oggvorbisenc.c:
22591         * ext/vorbis/oggvorbisenc.h:
22592         * ext/vorbis/vorbis.c: (plugin_init):
22593         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
22594         (vorbis_dec_src_query), (vorbis_dec_src_event),
22595         (vorbis_dec_sink_event), (vorbis_dec_chain),
22596         (vorbis_dec_change_state):
22597         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
22598         (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
22599         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
22600         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
22601         (gst_vorbisenc_change_state):
22602         * ext/vorbis/vorbisenc.h:
22603         * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
22604         * gst-libs/gst/audio/audioclock.c:
22605         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
22606         (gst_audiofilter_init), (gst_audiofilter_chain):
22607         * gst-libs/gst/audio/testchannels.c: (main):
22608         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
22609         * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
22610         (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
22611         (gmip_find_track_streaminfo), (gmip_find_track_format):
22612         * gst-libs/gst/media-info/media-info.c:
22613         (gst_media_info_read_idler):
22614         * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
22615         (gst_play_get_all_by_interface):
22616         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
22617         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
22618         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
22619         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
22620         (gst_riff_parse_info):
22621         * gst-libs/gst/riff/riff-read.h:
22622         * gst-libs/gst/riff/riff.c: (plugin_init):
22623         * gst-libs/gst/video/Makefile.am:
22624         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
22625         (gst_videosink_class_init), (gst_videosink_get_type):
22626         * gst-libs/gst/video/videosink.h:
22627         * gst/audioconvert/bufferframesconvert.c:
22628         (buffer_frames_convert_init), (buffer_frames_convert_fixate),
22629         (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
22630         * gst/audioconvert/channelmixtest.c: (main):
22631         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
22632         (gst_audio_convert_chain),
22633         (gst_audio_convert_caps_remove_format_info),
22634         (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
22635         (gst_audio_convert_setcaps), (_fixate_caps_to_int),
22636         (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
22637         (gst_audio_convert_buffer_to_default_format),
22638         (gst_audio_convert_buffer_from_default_format),
22639         (gst_audio_convert_channels):
22640         * gst/audioconvert/gstchannelmix.h:
22641         * gst/ffmpegcolorspace/avcodec.h:
22642         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22643         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
22644         (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
22645         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
22646         * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
22647         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
22648         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
22649         (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
22650         (mpeg_video_type_find), (mpeg_video_stream_type_find),
22651         (dv_type_find):
22652         * gst/videotestsrc/gstvideotestsrc.c:
22653         (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
22654         (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
22655         (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
22656         (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
22657         (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
22658         (gst_videotestsrc_init), (gst_videotestsrc_src_query),
22659         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
22660         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
22661         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
22662         (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
22663         (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
22664         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
22665         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
22666         (gst_xvimagesink_navigation_send_event),
22667         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
22668         (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
22669         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
22670         * sys/xvimage/xvimagesink.h:
22671         Plugin port to 0.9, ogg/theora playback should work in the seek
22672         example now.
22673         Removed old examples.
22674         Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
22675         explained in 0.9 TODO doc.
22676
22677
22678 2005-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
22679
22680         * autogen.sh:
22681         * configure.ac:
22682         * ext/Makefile.am:
22683         * gst/Makefile.am:
22684         * po/POTFILES.in:
22685         * po/af.po:
22686         * po/az.po:
22687         * po/cs.po:
22688         * po/en_GB.po:
22689         * po/hu.po:
22690         * po/it.po:
22691         * po/nb.po:
22692         * po/nl.po:
22693         * po/or.po:
22694         * po/sq.po:
22695         * po/sr.po:
22696         * po/sv.po:
22697         * po/uk.po:
22698         * po/vi.po:
22699         * sys/Makefile.am:
22700         * testsuite/Makefile.am:
22701           remove a whole bunch of plugins.  This module now contains a set
22702           of free reference plugins/elements as agreed.
22703
22704 2005-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
22705
22706         * configure.ac:
22707           hunting season on 0.9 is now OPEN
22708
22709 2005-02-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22710
22711         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
22712           Kick the hell out of gcc for not warning me about a symbol conflict.
22713
22714 2005-02-22  Luca Ognibene  <luogni@tin.it>
22715
22716         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
22717
22718         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
22719           Don't leak caps string (fixes #168134)
22720
22721         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
22722         (gst_jpegenc_init), (gst_jpegenc_finalize),
22723         (gst_jpegenc_change_state):
22724           Don't leak line buffers and context struct (fixes #168133).
22725
22726 2005-02-21  Tim-Philipp Müller  <tim at centricular dot net>
22727
22728         * configure.ac:
22729         * ext/dirac/gstdiracdec.cc:
22730         (gst_diracdec_chain):
22731           Since dirac 0.5.0 the framerate in dirac is expressed as a
22732           rational number. Fix build and up requirement to 0.5.0, and
22733           also pass parameters to gst_diracdec_link in the right order
22734           (fixes #167959).
22735
22736 2005-02-21  Maciej Katafiasz  <mathrick@freedesktop.org>
22737
22738         * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
22739         * ext/faad/gstfaad.h:
22740         TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with 
22741         certain invalid muxed streams, where some packets will contain 
22742         junk after decoder data. Partially fixes #149158.
22743
22744 2005-02-21  Jan Schmidt <thaytan@mad.scientist.com>
22745         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
22746           Make sure we only write to writable buffers
22747
22748 2005-02-20  Tim-Philipp Müller  <tim at centricular dot net>
22749
22750         * gst-libs/gst/riff/riff-media.c:
22751         (gst_riff_create_audio_caps_with_data):
22752           Do actually fix invalid RIFF fmt header values for alaw
22753           and mulaw audio instead of just saying so.
22754
22755         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
22756           Give gst_riff_create_audio_caps_with_data() a chance to
22757           fix up broken format header fields before extracting any
22758           parameters from the header. (fixes #167633)
22759
22760 2005-02-19  Martin Holters  <martin.holters@gmx.de>
22761
22762         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
22763
22764         * gst/audioconvert/bufferframesconvert.c:
22765         (buffer_frames_convert_link):
22766           Don't leak othercaps. (fixes #167878)
22767
22768 2005-02-19  Arwed v. Merkatz  <v.merkatz@gmx.net>
22769
22770         * configure.ac:
22771         * ext/libvisual/visual.c: (gst_visual_srclink),
22772         (gst_visual_change_state):
22773           Support libvisual 0.2.0.
22774
22775 2005-02-18  Tim-Philipp Müller  <tim at centricular dot net>
22776
22777         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
22778         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
22779           Use same rowstrides for I420 as used everywhere else.
22780
22781 2005-02-17  Tim-Philipp Müller  <tim at centricular dot net>
22782
22783         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
22784           Declare variables at beginning of block and make gcc-2.95 happy
22785           (fixes # 167482, patch by Gergely Nagy).
22786           
22787         * gst/tcp/gsttcpclientsrc.c:
22788         * gst/tcp/gsttcpclientsrc.h:
22789           Move some includes into the header, so that struct sockaddr_in is
22790           defined when it should be defined on FreeBSD as well (fixes
22791           #167483).
22792           
22793         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
22794           Don't pass uninitialised values to setsockopt() here either.
22795
22796 2005-02-17  Luca Ognibene  <luogni at tin dot it>
22797
22798         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
22799
22800         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
22801           Don't pass uninitialised values to setsockopt(). (fixes #167704)
22802
22803 2005-02-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22804
22805         * gst/playback/gstplaybin.c: (add_sink):
22806           Invert bin_add/link order to workaround deadlock in opt.
22807
22808 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22809
22810         * gst/modplug/gstmodplug.cc:
22811           Add missing break causing position queries to fail.
22812
22813 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22814
22815         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
22816           Granpos can apparently be -1, which screws up calculations...
22817
22818 2005-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
22819
22820         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
22821         (gst_ximagesink_send_pending_navigation),
22822         (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
22823         (gst_ximagesink_init):
22824         * sys/ximage/ximagesink.h:
22825         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
22826         (gst_xvimagesink_send_pending_navigation),
22827         (gst_xvimagesink_navigation_send_event),
22828         (gst_xvimagesink_finalize), (gst_xvimagesink_init):
22829         * sys/xvimage/xvimagesink.h:
22830           Use a mutex protected list to marshal navigation
22831           events into the stream thread from whichever thread
22832           sends them.
22833
22834 2005-02-15  Tim-Philipp Müller  <tim at centricular dot net>
22835
22836         * gst/speed/demo-mp3.c: (time_tick_cb), (main):
22837           Display current position and track length; misc. clean-ups.
22838           
22839         * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
22840         (speed_init), (speed_chain):
22841           Add query function, so that the stream length and current position
22842           get adjusted when queried (note that current position queries may
22843           still be wrong if the audio sink returns values based on buffer
22844           timestamps instead of passing on the query).
22845
22846 2005-02-13  Benjamin Otte  <otte@gnome.org>
22847
22848         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
22849         (gst_audio_convert_channels):
22850           create channel conversion matrix when linking
22851         * gst/audioconvert/.cvsignore:
22852         * gst/audioconvert/Makefile.am:
22853         * gst/audioconvert/channelmixtest.c: (main):
22854           add (ugly) test that ensures stereo <=> mono conversion works
22855           correctly
22856
22857 2005-02-13  Benjamin Otte  <otte@gnome.org>
22858
22859         * gst/audioconvert/gstchannelmix.h:
22860           include missing header file
22861         * gst/audioconvert/gstchannelmix.c:
22862         (gst_audio_convert_fill_compatible):
22863           use same sign for both channels when converting to/from compatible
22864           channel. Previously used different signs made the signals cancel
22865           each other out and appear like silence. (fixes #167269)
22866
22867 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
22868
22869         * gst/ffmpegcolorspace/avcodec.h:
22870         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
22871         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
22872         (gst_ffmpegcsp_avpicture_fill):
22873         * gst/ffmpegcolorspace/imgconvert.c:
22874           Convert to and from YV12 (fixes #156379).
22875
22876 2005-02-12  Julien MOUTTE  <julien@moutte.net>
22877
22878         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
22879         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
22880         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
22881         (gst_ximagesink_expose), (gst_ximagesink_set_property),
22882         (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
22883         methods from chain and negotiation and vice versa (Fixes #166142).
22884         * sys/ximage/ximagesink.h: Add stream_lock.
22885         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
22886         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
22887         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
22888         (gst_xvimagesink_expose): Check for xcontext before trying to link.
22889
22890 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
22891
22892         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
22893           Don't send "Hey! You gave me a NULL pointer you naughty person" as
22894           error message when we can't open the DVD device (when dvdnav_open()
22895           fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
22896           the above). Send something more useful instead (fixes #167117).
22897
22898 2005-02-11  Julien MOUTTE  <julien@moutte.net>
22899
22900         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
22901         (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
22902         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
22903         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
22904         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
22905         (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
22906         methods from chain and negotiation and vice versa (Fixes #166142).
22907         Fix a possible bug of images in the buffer pool being discarded because
22908         we are looking at the wrong geometry.
22909         * sys/xvimage/xvimagesink.h: Add stream_lock.
22910
22911 2005-02-11  David Schleef  <ds@schleef.org>
22912
22913         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
22914         unsigned int. (fixes #167128)
22915
22916 2005-02-11  David Schleef  <ds@schleef.org>
22917
22918         * gst/librfb/Makefile.am: Testing stuff before committing is
22919           for wimps... and people with fast machines.  Fix stupid
22920           mistake.
22921
22922 2005-02-11  David Schleef  <ds@schleef.org>
22923
22924         * configure.ac: Pull in librfb from my CVS tree, because it is
22925           too small and annoying to be separate.  Move rfbsrc plugin
22926           to gst/.
22927         * ext/Makefile.am:
22928         * ext/librfb/Makefile.am:
22929         * ext/librfb/gstrfbsrc.c:
22930         * gst/librfb/Makefile.am:
22931         * gst/librfb/gstrfbsrc.c:
22932         * gst/librfb/rfb.c:
22933         * gst/librfb/rfb.h:
22934         * gst/librfb/rfbbuffer.c:
22935         * gst/librfb/rfbbuffer.h:
22936         * gst/librfb/rfbbytestream.c:
22937         * gst/librfb/rfbbytestream.h:
22938         * gst/librfb/rfbcontext.h:
22939         * gst/librfb/rfbdecoder.c:
22940         * gst/librfb/rfbdecoder.h:
22941         * gst/librfb/rfbutil.h:
22942
22943 2005-02-10  Tim-Philipp Müller  <tim at centricular dot net>
22944
22945         * gst/speed/Makefile.am:
22946         * gst/speed/demo-mp3.c: (main):
22947         * gst/speed/filter.func:
22948         * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
22949         (speed_class_init), (speed_init), (speed_chain_int16),
22950         (speed_chain_float32), (speed_chain), (speed_set_property),
22951         (speed_get_property), (speed_change_state):
22952         * gst/speed/gstspeed.h:
22953           Fix speed element and make it chain-based (fixes #156467),
22954           and make it handle more than one channel.
22955
22956 2005-02-10  Jan Schmidt  <thaytan@mad.scientist.com>
22957
22958         * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
22959         (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
22960         (gst_dtsdec_chain), (gst_dtsdec_change_state):
22961         * ext/dts/gstdtsdec.h:
22962           Don't clobber the stack constructing the channels array.
22963           Make the element chain-based. DTS tracks can now be played.
22964           
22965 2005-02-09  Tim-Philipp Müller  <tim at centricular dot net>
22966
22967         * gst-libs/gst/audio/multichannel.h:
22968         * gst-libs/gst/gconf/gconf.h:
22969         * gst-libs/gst/idct/idct.h:
22970         * gst-libs/gst/media-info/media-info-priv.h:
22971         * gst-libs/gst/play/play.h:
22972         * gst-libs/gst/resample/private.h:
22973         * gst-libs/gst/resample/resample.h:
22974         * gst-libs/gst/riff/riff-ids.h:
22975         * gst-libs/gst/video/video.h:
22976         * gst-libs/gst/video/videosink.h:
22977           Add G_BEGIN_DECLS and G_END_DECLS around headers where
22978           missing, so that they work when included from C++ code.
22979
22980 2005-02-09  David Schleef  <ds@schleef.org>
22981
22982         * testsuite/gst-lint: Check for non-statically scoped
22983           parent_class variables.  This won't be a problem once
22984           plugins are loaded with RTLD_LOCAL.
22985
22986 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22987
22988         * ext/mplex/gstmplexibitstream.cc:
22989           gcc madness.
22990
22991 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22992
22993         * ext/ogg/gstogmparse.c:
22994         * gst/debug/gstnavigationtest.c:
22995           Die, thou faulty symbol pollutors (non-static parent_class).
22996
22997 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22998
22999         * ext/mplex/gstmplexibitstream.cc:
23000           Fix event handling (#165525).
23001
23002 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23003
23004         * ext/mikmod/gstmikmod.c:
23005         * gst/modplug/gstmodplug.cc:
23006           Add missing endianness to template (fixes #165509).
23007
23008 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23009
23010         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
23011           Fix wrong order of reading of optional bytes (#165290).
23012
23013 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23014
23015         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
23016           Implement FILLER event awareness.
23017
23018 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23019
23020         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
23021           Fix track calculations (#166208).
23022
23023 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
23024
23025         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23026
23027         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
23028         * ext/libpng/gstpngenc.c:
23029           Fix byte-order, use proper fixed caps. Fixes #164197.
23030
23031 2005-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
23032
23033         * configure.ac:
23034           Add dvdlpcmdec 
23035
23036         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
23037         (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
23038           Don't push buffers if the src pad isn't negotiated yet.
23039           
23040         * gst/audioconvert/gstaudioconvert.c:
23041         (gst_audio_convert_buffer_to_default_format),
23042         (gst_audio_convert_buffer_from_default_format):
23043           Add support for 24-bit width.
23044
23045         * gst/dvdlpcmdec/.cvsignore:
23046         * gst/dvdlpcmdec/Makefile.am:
23047         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
23048         (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
23049         (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
23050         (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
23051         (plugin_init):
23052         * gst/dvdlpcmdec/gstdvdlpcmdec.h:
23053           New decoder for rearranging DVD LPCM into our audio/x-raw-int
23054           format. Needs support for the channels maps if someone can find 
23055           a DVD LPCM track with > 2 channels.
23056
23057         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
23058         (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
23059         (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
23060         * gst/mpegstream/gstdvddemux.h:
23061         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
23062         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
23063         (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
23064         * gst/mpegstream/gstmpegdemux.h:
23065         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
23066         (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
23067         (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
23068         (gst_mpeg_parse_handle_src_query),
23069         (gst_mpeg_parse_handle_src_event):
23070           Use audio/x-dvd-lpcm for LPCM output.
23071           Add DTS output.
23072
23073 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
23074
23075         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23076
23077         * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
23078         (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
23079           Add BGRA handling (#165736).
23080
23081 2005-02-08  Francis Labonte  <francis_labonte@hotmail.com>
23082
23083         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23084
23085         * gst/law/alaw-decode.c: (alawdec_link):
23086         * gst/law/alaw-encode.c: (alawenc_link):
23087         * gst/law/mulaw-decode.c: (mulawdec_link):
23088         * gst/law/mulaw-encode.c: (mulawenc_link):
23089           Fix caps memleaks (#166600).
23090
23091 2005-02-08  Tim-Philipp Müller  <tim at centricular dot net>
23092
23093         * ext/tarkin/mem.h:
23094         * ext/tarkin/wavelet.h:
23095         * ext/tarkin/yuv.h:
23096         * gst/ffmpegcolorspace/avcodec.h:
23097           Include "_stdint.h" instead of <stdint.h>. Fixes build on
23098           systems that don't have stdint.h, like Solaris9 (fixes #166631).
23099
23100 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23101
23102         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
23103         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
23104         (gst_xvimagesink_change_state):
23105           Clear window on PAUSED->READY instead of READY->PAUSED. Stop
23106           Xv video (and thereby regenerate Xv colourkey) in clear() so
23107           that PLAY -> READY -> PLAY works (fixes #162504).
23108
23109 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23110
23111         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
23112           Switch to list instead of range, since MJPEG-devices really just
23113           support decimations, not any size.
23114
23115 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
23116         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
23117         (gst_mpeg2dec_reset), (free_all_buffers),
23118         (gst_mpeg2dec_alloc_buffer), (handle_sequence):
23119         * ext/mpeg2dec/gstmpeg2dec.h:
23120           The libmpeg2 user-allocated buffer management is awkward, 
23121           to say the least. Hopefully this fixes things.
23122
23123 2005-02-04  Andy Wingo  <wingo@pobox.com>
23124
23125         * gst/audioconvert/bufferframesconvert.c
23126         (buffer_frames_convert_fixate): New function, fixates to 256
23127         frames per buffer by default. (Much better than 1.)
23128         (buffer_frames_convert_init): Set the fixate function for both src
23129         and sink pad.
23130         (buffer_frames_convert_link): After success setting nonfixed caps,
23131         get the negotiated caps so we can know how many buffer-frames it
23132         will be. No idea how this worked at all before.
23133
23134 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
23135
23136         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
23137         (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
23138         (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
23139         (handle_sequence), (handle_picture):
23140         * ext/mpeg2dec/gstmpeg2dec.h:
23141           Rearrange buffer tracking and refcounting and refactor
23142           a little for readability. 
23143
23144 2005-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
23145         * sys/v4l/gstv4l.c: (plugin_init):
23146         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
23147         (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
23148         (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
23149         (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
23150         * sys/v4l/gstv4ljpegsrc.h:
23151         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
23152         * sys/v4l/v4l_calls.h:
23153         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
23154         (gst_v4lsrc_get_fps):
23155         * sys/v4l/v4lsrc_calls.h:
23156           Add new v4ljpegsrc for handling the ov51x hacky "I'll give
23157           you jpeg inside rgb frames" driver.
23158           Don't error in the v4lsrc link function, just return 
23159           REFUSED.
23160
23161 2005-02-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23162
23163         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
23164         (gst_qcamsrc_open):
23165           Use GST_ELEMENT_ERROR, not g_warning, if open failed.
23166
23167 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23168
23169         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
23170           Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
23171
23172 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23173
23174         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
23175           Reset negotiated state on PAUSED->READY.
23176
23177 2005-02-02  David Schleef  <ds@schleef.org>
23178
23179         * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
23180         whereever possible.  (Fixes #165997)
23181         * examples/capsfilter/capsfilter1.c: (main):
23182         * examples/dynparams/filter.c: (create_ui):
23183         * examples/seeking/cdparanoia.c: (get_track_info), (main):
23184         * examples/seeking/chained.c: (main):
23185         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
23186         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
23187         (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
23188         (make_mpeg_pipeline), (make_mpegnt_pipeline):
23189         * examples/seeking/spider_seek.c: (make_spider_pipeline):
23190         * examples/switch/switcher.c: (main):
23191         * ext/dv/demo-play.c: (main):
23192         * ext/faad/gstfaad.c: (gst_faad_change_state):
23193         * ext/mad/gstmad.c: (gst_mad_chain):
23194         * ext/smoothwave/demo-osssrc.c: (main):
23195         * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
23196         (gst_gconf_render_bin_from_description),
23197         (gst_gconf_get_default_audio_sink),
23198         (gst_gconf_get_default_video_sink),
23199         (gst_gconf_get_default_audio_src),
23200         (gst_gconf_get_default_video_src),
23201         (gst_gconf_get_default_visualization_element):
23202         * gst/level/demo.c: (main):
23203         * gst/level/plot.c: (main):
23204         * gst/playback/gstplaybin.c: (gen_video_element),
23205         (gen_audio_element):
23206         * gst/playback/test.c: (gen_video_element), (gen_audio_element):
23207         * gst/playondemand/demo-mp3.c: (setup_pipeline):
23208         * gst/sine/demo-dparams.c: (main):
23209         * gst/spectrum/demo-osssrc.c: (main):
23210         * gst/speed/demo-mp3.c: (main):
23211         * gst/volume/demo.c: (main):
23212         * testsuite/embed/embed.c: (main):
23213
23214 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
23215
23216         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
23217         (gst_tcpclientsink_finalize):
23218         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
23219         (gst_tcpclientsrc_finalize):
23220         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
23221         (gst_tcpserversink_init), (gst_tcpserversink_finalize):
23222         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
23223         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
23224           Don't leak the hostname when shutting down.
23225           In tcpserversrc, take a copy of the default hostname.
23226
23227 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23228
23229         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
23230           Set caps to systemstream=TRUE.
23231
23232 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23233
23234         * testsuite/Makefile.am:
23235           Fix more OSX buildbots.
23236
23237 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
23238
23239         * ext/mpeg2dec/gstmpeg2dec.c:
23240           Don't send things to NULL PAD_PEERs
23241
23242         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
23243           Copy-on-write the incoming buffer.
23244
23245         * gst/mpegstream/gstdvddemux.h:
23246         * gst/mpegstream/gstmpegclock.h:
23247         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
23248         (normal_seek), (gst_mpeg_demux_handle_src_event):
23249         * gst/mpegstream/gstmpegdemux.h:
23250         * gst/mpegstream/gstmpegpacketize.h:
23251         * gst/mpegstream/gstmpegparse.c:
23252         (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
23253         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
23254         (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
23255         (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
23256         (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
23257         * gst/mpegstream/gstmpegparse.h:
23258         * gst/mpegstream/gstrfc2250enc.h:
23259           Various changes to the way time is computed that make seeking and
23260           total time estimation much better here.
23261           Use G_BEGIN/END_DECLS instead of __cplusplus
23262
23263         * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
23264           Use gst_buffer_stamp instead of only copying the TIMESTAMP
23265
23266 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23267
23268         * gst/subparse/gstsubparse.c:
23269           Fix OSX buildbot.
23270
23271 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
23272
23273         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
23274         (theora_enc_chain), (theora_enc_change_state):
23275         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
23276         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
23277         (gst_vorbisenc_change_state):
23278         * ext/vorbis/vorbisenc.h:
23279           Set granulepos and timestamp correctly for streams not
23280           starting at 0, taking into account the initial delay.
23281
23282 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
23283
23284         * gst/mpegstream/gstdvddemux.c:
23285           Add audio/x-dts to audio pad template caps
23286
23287 2005-01-30  David Schleef  <ds@schleef.org>
23288
23289         * ext/polyp/polypsink.c: (gst_polypsink_base_init),
23290         (create_context), (gst_polypsink_link): Fix silly endianness
23291         bug.  Add some debugging.  Remove float from caps; it doesn't
23292         work.  Attempt to get remote audio working.
23293
23294 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23295
23296         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
23297           Add 3IV2 fourcc.
23298
23299 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23300
23301         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
23302         (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
23303         (gst_avi_demux_stream_data):
23304         * gst/avi/gstavidemux.h:
23305           Invert DIB images. Fixes #132341.
23306
23307 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23308
23309         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23310         (gst_ffmpegcsp_chain):
23311           D'oh, reference the palette data, not the palette structure.
23312           Fixes color distortion in #132341.
23313
23314 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23315
23316         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
23317           PAR can be non-fixed when not provided as argument (#162626).
23318
23319 2005-01-29  David Moore  <dcm@acm.org>
23320
23321         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23322
23323         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
23324         (gst_qtdemux_loop_header):
23325           Re-apply patch from #142272 that allows non-seekable sources,
23326           re-proposed by Daniel Drake <dsd@gentoo.org>.
23327
23328 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23329
23330         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
23331           Use the src template for creating the src pad (#162330).
23332
23333 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23334
23335         * configure.ac:
23336         * ext/musepack/Makefile.am:
23337         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
23338         (gst_musepackdec_init), (gst_musepackdec_dispose),
23339         (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
23340         (gst_musepack_stream_init), (gst_musepackdec_loop),
23341         (gst_musepackdec_change_state):
23342         * ext/musepack/gstmusepackdec.cpp:
23343         * ext/musepack/gstmusepackdec.h:
23344         * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
23345         (gst_musepack_reader_read), (gst_musepack_reader_seek),
23346         (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
23347         (gst_musepack_reader_canseek), (gst_musepack_init_reader):
23348         * ext/musepack/gstmusepackreader.cpp:
23349         * ext/musepack/gstmusepackreader.h:
23350           Update to 1.1 API (#165446).
23351
23352 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23353
23354         * ext/Makefile.am:
23355           Unbreak buildbot.
23356
23357 2005-01-28  Andy Wingo  <wingo@pobox.com>
23358
23359         * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
23360         to reflect a different dubious internet source. Add a reference
23361         and some commentary.
23362
23363 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23364
23365         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
23366         (gst_stream_selector_get_caps), (gst_stream_selector_chain):
23367         * gst/playback/gststreamselector.h:
23368           Be more selective when we're redoing caps negotiation from
23369           within the chain function on a stream change.
23370
23371 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23372
23373         * configure.ac:
23374         * ext/Makefile.am:
23375         * ext/amrnb/Makefile.am:
23376         * ext/amrnb/amrnb.c: (plugin_init):
23377         * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
23378         (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
23379         (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
23380         (gst_amrnbdec_state_change):
23381         * ext/amrnb/amrnbdec.h:
23382         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
23383         (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
23384         (gst_amrnbparse_init), (gst_amrnbparse_formats),
23385         (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
23386         (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
23387         (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
23388         * ext/amrnb/amrnbparse.h:
23389           Add support for AMR-NB (mobile phone audio format; #155163, #163286).
23390         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
23391           Add AMR-NB/-WB raw formats.
23392         * ext/alsa/gstalsa.c: (gst_alsa_link):
23393           Keep valid time when changing format.
23394         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
23395         (qtdemux_parse_trak):
23396           Add some more format-specific options (#140141, #143555, #155163).
23397
23398 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23399
23400         * gst/matroska/matroska-demux.c:
23401         (gst_matroska_demux_parse_blockgroup):
23402           Fix logic error in timing of subtitle stream synchronization.
23403         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
23404           Add skip-chunk, which is found in kodak-camera streams.
23405
23406 2005-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
23407
23408         * po/LINGUAS:
23409         * po/vi.po:
23410           Adding Vietnamese translation (submitted by Clytie Siddall)
23411
23412 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23413
23414         * gst/playback/gstdecodebin.c: (try_to_link_1):
23415           Use realpad for signal.
23416
23417 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23418
23419         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
23420           Fix category so decodebin picks it up.
23421
23422 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23423
23424         * ext/mad/Makefile.am:
23425         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
23426         (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
23427         (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
23428         (found_type), (gst_id3demux_bin_change_state):
23429         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
23430         (gst_id3_tag_init), (gst_id3_tag_handle_event),
23431         (gst_id3_tag_src_link), (gst_id3_tag_chain),
23432         (gst_id3_tag_change_state), (plugin_init):
23433         * ext/mad/gstmad.h:
23434           Add id3demuxbin (which is a simple bin consisting of id3demux
23435           and typefind), take over rank from id3demux, remove typefind
23436           code from id3demux. Makes all broken mp3s that I know of work,
23437           and thereby fixes #152688.
23438
23439 2005-01-27  Edward Hervey  <bilboed@bilboed.com>
23440
23441         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23442
23443         * ext/mad/gstmad.c: (gst_mad_src_event):
23444         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
23445           Allow seeks on audio pad, make mad forward those (#164826).
23446         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
23447           Set duration (#165335).
23448
23449 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23450
23451         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
23452         (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
23453         (gst_asf_demux_process_ext_content_desc),
23454         (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
23455         (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
23456         * gst/asfdemux/gstasfdemux.h:
23457           Improve metadata display, e.g. if the metadata comes before the
23458           streams are loaded (which is perfectly valid).
23459
23460 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23461
23462         * tools/gst-launch-ext-m.m:
23463           Fix AVI/ASF pipelines (#165340).
23464
23465 2005-01-26  Amaury Jacquot  <sxpert@esitcom.org>
23466         * ext/cairo/gsttextoverlay.c: include  string.h and strings.h to fix
23467         build failure on amd64
23468
23469 2005-01-26  Tim-Philipp Müller  <tim at centricular dot net>
23470
23471         * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
23472         (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
23473           Check environment variables GST_ID3V2_TAG_ENCODING,
23474           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
23475           list of character encodings to force interpretation of non-unicode
23476           strings stored in an ID3v2 tag to a particular encoding. If none
23477           is specified, try to use current locale's encoding, then fall back
23478           to ISO-8859-1 (which will always succeed). (Resolves #149274)
23479         * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
23480         (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
23481           Check environment variables GST_ID3V1_TAG_ENCODING,
23482           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
23483           list of character encodings to use in case a string encountered
23484           in an ID3v1 tag is not valid UTF-8 already. If no encoding is
23485           specified, try to use the current locale's encoding, then fall
23486           back to ISO-8859-1 (which will always succeed).
23487
23488 2005-01-25  Benjamin Otte  <otte@gnome.org>
23489
23490         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
23491           - on half framerate, compute the rate in advance so the comparisons
23492             don't compare wrong values
23493           - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
23494             behaviour
23495           - don't use mad_header_decode anymore, mad_frame_decode does that
23496             automatically
23497           - when getting rid of consumed bytes, reset the stream's skiplen
23498           (fixes #163867)
23499
23500 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
23501
23502         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
23503           Use 1/2 a second for default max_discont, as PES streams from DVB
23504           seem to have larger spacings in the SCR. 
23505           Fix a typo.
23506
23507 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23508
23509         * gst/playback/gstplaybasebin.c: (group_commit):
23510           Notify delayed stream-info availability.
23511
23512 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
23513         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
23514         (gst_a52dec_handle_event), (gst_a52dec_chain):
23515         Add some debug output. Check that a discont has a valid
23516         time associated.
23517         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
23518         (gst_alsa_sink_loop):
23519         Ignore TAG events. A little extra debug for broken timestamps.
23520         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
23521         (dvdnavsrc_change_state):
23522         Ensure we send a discont to engage the link before we send any
23523         other events.
23524         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
23525         (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
23526         (_seek_chapter), (seek_sector), (dvdreadsrc_get),
23527         (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
23528         Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
23529         dvd://title works in totem because typefinding sends a seek that ends
23530         up going back to chapter 1 regardless.
23531         * ext/mpeg2dec/gstmpeg2dec.c:
23532         * ext/mpeg2dec/gstmpeg2dec.h:
23533         Output correct timestamps and handle disconts.
23534         * ext/ogg/gstoggdemux.c: (get_relative):
23535         Small guard against a null dereference.
23536         * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
23537         (gst_textoverlay_set_property):
23538         Free memory when done. Don't call gst_event_filler_get_duration on
23539         EOS events. Use GST_LOG and GST_WARNING instead of g_message and
23540         g_warning.
23541         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
23542         (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
23543         (gst_sw_srclink), (gst_smoothwave_chain):
23544         Draw solid lines, prettier colours.
23545         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
23546         Add a default palette that'll work for some movies.
23547         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
23548         (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
23549         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
23550         * gst/mpegstream/gstdvddemux.h:
23551         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
23552         (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
23553         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
23554         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
23555         * gst/mpegstream/gstmpegparse.h:
23556         Use PTM/NAV events when for timestamp adjustment when connected to 
23557         dvdnavsrc. Don't use many discont events where one suffices.
23558         * gst/playback/gstplaybasebin.c: (group_destroy),
23559         (gen_preroll_element), (gst_play_base_bin_add_element):
23560         * gst/playback/gstplaybasebin.h:
23561         Make sure we remove subtitles from the same bin we put them in.
23562         * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
23563         (gst_subparse_buffer_format_autodetect),
23564         (gst_subparse_change_state):
23565         Fix some memleaks and invalid accesses.
23566         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
23567         (oggskel_type_find), (cmml_type_find), (plugin_init):
23568         Some typefind functions for Annodex v3.0 files
23569         * gst/wavparse/gstwavparse.h:
23570         GstRiffReadClass is the correct parent class.
23571
23572 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23573
23574         * gst-libs/gst/riff/riff-media.c:
23575         (gst_riff_create_video_caps_with_data):
23576           Add extradata to huffyuv (fixes #165013).
23577         * gst-libs/gst/riff/riff-read.c:
23578         (gst_riff_read_strf_vids_with_data):
23579           Fix extradata extraction if it is in the chunk size.
23580
23581 2005-01-25  Edward Hervey  <bilboed@bilboed.com>
23582
23583         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23584
23585         * gst/effectv/gstquark.c: (gst_quarktv_class_init),
23586         (gst_quarktv_change_state), (gst_quarktv_dispose):
23587           Memory free'ing location fix (#164708).
23588
23589 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23590
23591         * gst/playback/gstplaybasebin.c: (group_commit),
23592         (gen_preroll_element), (probe_triggered), (gen_source_element),
23593         (setup_source), (gst_play_base_bin_change_state),
23594         (gst_play_base_bin_add_element):
23595           Don't block for streams.
23596         * gst/playback/gststreaminfo.c: (stream_info_change_state),
23597         (gst_stream_info_set_mute):
23598           Use gst_pad_set_active_recursive.
23599
23600 2005-01-25  Andy Wingo  <wingo@pobox.com>
23601
23602         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
23603         for #ifndef HAVE_XVIDEO.
23604
23605 2005-01-24  Jeffrey C. Ollie
23606
23607         reviewed by: Maciej Katafiasz  <mathrick@freedesktop.org>
23608
23609         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
23610         * ext/gsm/gstgsmdec.h:
23611         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
23612         * ext/gsm/gstgsmenc.h:
23613         Fix rate to 8kHz as per spec, removes obscure errors when no rate
23614         was given by property. Add proper buffer timestamps and offsets.
23615
23616 2005-01-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23617
23618         * gst-libs/gst/riff/riff-media.c:
23619         (gst_riff_create_audio_caps_with_data):
23620           Audio can be <8000Hz.
23621
23622 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23623
23624         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
23625           Explicit state change to workaround refcount bugs.
23626
23627 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23628
23629         * gst/avi/gstavimux.c: (gst_avimux_write_tag),
23630         (gst_avimux_riff_get_avi_header):
23631           Fix...
23632
23633 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23634
23635         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
23636         (gst_riff_read_element_data):
23637         * gst-libs/gst/riff/riff-read.h:
23638           Add _peek version (req'ed in CDXA).
23639         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
23640         (gst_cdxaparse_loop):
23641           Fix parsing in playbin.
23642         * gst/playback/gstdecodebin.c: (close_pad_link):
23643           Ignore current_ pads, they cause major annoyance.
23644
23645 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23646
23647         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
23648           Safety guard.
23649
23650 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23651
23652         * gst/avi/gstavimux.c: (gst_avimux_write_tag):
23653           Fix padding...
23654
23655 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23656
23657         * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
23658           Allow for 0-sized buffers. Fixes length query problems in
23659           starwars.mkv from the testsuite.
23660
23661 2005-01-19  Tim-Philipp Müller  <tim at centricular dot net>
23662
23663         * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
23664         (gst_video_box_i420), (gst_video_box_chain):
23665           Fix row strides for I420 (fixes #163159)
23666           
23667 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23668
23669         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
23670           MPEG2 has a useful rate property, so we can actually use that.
23671           For MPEG-1, continue using the bytes/time properties.
23672
23673 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23674
23675         * gst-libs/gst/riff/riff-media.c:
23676         (gst_riff_create_video_caps_with_data),
23677         (gst_riff_create_video_template_caps):
23678           Add intel-h263.
23679
23680 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23681
23682         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
23683           Fail if caps negotiation fails. Should fix #162184, and should
23684           definately be in there regardless of it fixing the actual bug.
23685         * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
23686         (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
23687         (gst_avimux_riff_get_avix_header),
23688         (gst_avimux_riff_get_video_header),
23689         (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
23690         (gst_avimux_start_file), (gst_avimux_handle_event),
23691         (gst_avimux_change_state):
23692         * gst/avi/gstavimux.h:
23693           Refactor structure writing to use GST_WRITE_UINT macros, add
23694           metadata writing support.
23695
23696 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23697
23698         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
23699           Elements may already be destroyed when this function is called.
23700
23701 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23702
23703         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
23704         (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
23705           More memory leak fixes (#149162).
23706
23707 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23708
23709         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
23710         (gst_qtdemux_add_stream):
23711           Fix two memleaks.
23712
23713 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23714
23715         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
23716           Argh...
23717
23718 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23719
23720         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
23721           Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
23722           when fixating to six channels in Totem.
23723
23724 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
23725
23726         * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
23727           Fix compile warnings on Solaris 10 buildbot
23728
23729 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
23730
23731         * ext/dvdread/dvdreadsrc.c: (_read):
23732           Don't read beyond the last cell in a chapter (fixes 
23733           invalid memory access)
23734
23735 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
23736
23737         * ext/dvdread/stream_labels.c:
23738         (dvdreadsrc_get_audio_stream_labels):
23739           Use NULL for an empty GList instead of g_list_alloc(); fix 
23740           memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead 
23741           of GString (easier to bulk free later)
23742
23743 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
23744
23745         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23746
23747         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
23748         (gst_ffmpeg_pixfmt_to_caps):
23749           Fix BGRA32 caps (#164209).
23750
23751 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
23752
23753         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23754
23755         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
23756         (gst_ffmpeg_caps_to_pixfmt):
23757           alpha_mask can be RGBA/ABGR. Fixes #164265.
23758
23759 2005-01-17  Francis Labonte  <francis_labonte@hotmail.com>
23760
23761         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23762
23763         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
23764         (gst_mpeg2dec_alloc_buffer):
23765         * ext/mpeg2dec/gstmpeg2dec.h:
23766           Crop if decoding size is not the actual image size (#163676).
23767
23768 2005-01-17  Steve Baker  <steve@stevebaker.org>
23769
23770         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23771
23772         * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
23773         (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
23774           Add libsndfile typefind functions (#163309).
23775
23776 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23777
23778         * tools/gst-launch-ext-m.m:
23779           Add .aac, fix .m1v/.m2v (#163891).
23780
23781 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23782
23783         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
23784           Sanity check, don't wait endlessly since the clock might not
23785           actually run at this point (which is a deadlock). Fixes #164069.
23786
23787 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23788
23789         * gst/playback/gstplaybasebin.c: (probe_triggered):
23790           Of course, only pause if group is done...
23791
23792 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23793
23794         * gst/playback/gstplaybasebin.c: (probe_triggered):
23795           Thread safety.
23796
23797 2005-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
23798
23799         * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
23800           Don't return state change success when the parent
23801           failed.
23802
23803 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23804
23805         * gst/avi/gstavimux.c: (gst_avimux_handle_event):
23806           Free events (fix memleak in #162905).
23807
23808 2005-01-15  Gergely Nagy  <algernon@bonehunter.rulez.org>
23809
23810         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23811
23812         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
23813         (gst_ffmpeg_caps_to_pixfmt):
23814           Fix for depth = 15. Fixes #161675.
23815
23816 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23817
23818         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
23819           Set FPS correctly, even for webcams and the like.
23820         * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
23821           Don error on setting while capturing.
23822
23823 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
23824
23825         * ext/dv/gstdvdec.c:
23826         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
23827         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
23828           I'm a bad boy. using /1001. to force C to do float division
23829           and not integer division (as it did in my last commit)
23830           Thanks to David I. Lehn for pointing this mistake.
23831
23832 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23833
23834         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
23835           Revert Johan's 1.35->1.36 since it breaks compat.
23836
23837 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
23838
23839         * ext/dv/gstdvdec.c:
23840         * ext/libfame/gstlibfame.c:
23841         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
23842         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
23843           replace framerate aproximations by their real value
23844           (24000/1001, 30000/1001, 60000/1001)
23845           Finish fixing bug #164049
23846
23847 2005-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
23848
23849         * ext/ogg/gstoggmux.c:
23850           eos/bos debugging
23851         * gst/tcp/gstmultifdsink.c:
23852         * gst/tcp/gstmultifdsink.h:
23853         * gst/tcp/gsttcp.c:
23854         * gst/tcp/gsttcp.h:
23855         * gst/tcp/gsttcpclientsink.c:
23856         * gst/tcp/gsttcpclientsrc.c:
23857         * gst/tcp/gsttcpserversink.c:
23858         * gst/tcp/gsttcpserversrc.c:
23859           improve reusability of elements after state changes and errors
23860           make multifdsink throw away streamheaders when receiving new ones
23861
23862 2005-01-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23863
23864         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
23865           Fix for if items are already in list...
23866
23867 2005-01-12  Benjamin Otte  <otte@gnome.org>
23868
23869         * gst/adder/gstadder.c: (gst_adder_loop):
23870           fix adder a bit so it doesn't screw up with events as much anymore
23871
23872 2005-01-12  Jan Schmidt  <thaytan@mad.scientist.com>
23873
23874         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
23875         (pixbufscale_scale), (gst_pixbufscale_chain):
23876         * ext/gdk_pixbuf/pixbufscale.h:
23877           Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
23878           to ensure rowstrides are calculated the same way as 
23879           ffmpegcolorspace
23880           Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
23881           that we pick up duration and offset also.
23882
23883 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23884
23885         * gst/avi/gstavimux.c: (gst_avimux_class_init),
23886         (gst_avimux_pad_unlink), (gst_avimux_release_pad):
23887           Reusability fixes.
23888
23889 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23890
23891         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
23892         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
23893         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
23894         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
23895           Update flags when requested.
23896
23897 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23898
23899         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
23900           Fix dmix.
23901
23902 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23903
23904         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
23905         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
23906         (probe_triggered), (new_decoded_pad), (gen_source_element),
23907         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
23908         * gst/playback/gstplaybasebin.h:
23909         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
23910         (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
23911         (gst_play_bin_change_state):
23912           Implement group-switch signal for use in apps to clear metadata
23913           cache, clean up subtitle, add suburi property instead of # hack,
23914           some error-out fixes.
23915
23916 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23917
23918         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
23919           Debug.
23920         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
23921           If we got a state change in the _get handler, don't return success.
23922
23923 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
23924
23925         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
23926         (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
23927           Make jpegdec quiet on MJPEG decoding
23928         * gst/asfdemux/README:
23929           Fix mimetypes for MJPEG and H263
23930
23931 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23932
23933         * ext/theora/theoradec.c: (theora_dec_chain):
23934           Fix broken code generation by gcc by swapping arguments.
23935         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
23936           Fix \n in debug.
23937
23938 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
23939
23940         * TODO:
23941           delete this file, it is by far outdated
23942         * ext/alsa/gstalsa.1: remove
23943         * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
23944         (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
23945         (gst_alsa_get_caps):
23946           Add HW probing for supported sample rates. Fixes #161704
23947
23948 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23949
23950         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
23951           Don't crash, biatch! :).
23952
23953 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23954
23955         * ext/musepack/gstmusepackreader.cpp:
23956         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
23957           Some work on tags - still doesn't work in playbin...
23958         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
23959           Handle events...
23960
23961 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23962
23963         * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
23964           Also shove tags on kid pads.
23965
23966 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23967
23968         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
23969           Don't bail on unknown events.
23970         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
23971           Don't crash on events before negotiation.
23972         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
23973           Send tags on pads, too.
23974         * gst/playback/gststreamselector.c:
23975         (gst_stream_selector_request_new_pad):
23976           Forward events on first pad if no input was selected yet.
23977
23978 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23979
23980         * gst/playback/gstplaybasebin.c: (setup_substreams):
23981           Don't disable streamtype if the stream doesn't exist, since
23982           then playing a video after audio will disable both and nothing
23983           will happen. Fixes the testsuite.
23984
23985 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23986
23987         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
23988         (gst_v4l_xoverlay_set_xwindow_id):
23989         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
23990         (gst_v4l2_xoverlay_set_xwindow_id):
23991           Add debug categories, fix overlay disabling.
23992
23993 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
23994
23995         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
23996         * ext/alsa/gstalsa.h:
23997           Add HW probing for period_count/size and buffer_size MIX/MAX
23998           Adjust default/user defined value if out of bounds
23999           Should fix bug #162024
24000
24001 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24002
24003         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
24004           Fix warning (#161191).
24005
24006 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
24007
24008         * ext/dvdread/stream_labels.c:
24009         (dvdreadsrc_get_audio_stream_labels):
24010           Fix warning (init the good variable in switch default)
24011
24012 2005-01-09  Koop Mast  <kwm@rainbow-runner.nl>
24013
24014         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24015
24016         * gst/tta/gstttaparse.c: (gst_tta_src_event):
24017           Fix gcc-2.95 compile (#163485).
24018
24019 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24020
24021         * configure.ac:
24022         * ext/flac/gstflacenc.c: (gst_flacenc_init),
24023         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
24024         (gst_flacenc_tell_callback), (gst_flacenc_chain),
24025         (gst_flacenc_change_state):
24026         * ext/flac/gstflacenc.h:
24027           Update for API change in flac-1.1.1. Update requirement in
24028           configure.ac. Fixes #162974.
24029
24030 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24031
24032         * gst/playback/gstplaybasebin.c: (group_destroy):
24033           Remove hack to get rid of assert and get rid of unlinked
24034           signals properly.
24035
24036 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24037
24038         * gst/playback/gstplaybasebin.c: (setup_source):
24039           Set source to NULL so that resources are free'ed. Fixes issues
24040           with playback of CDDA and similar device-accessing things.
24041
24042 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24043
24044         * testsuite/embed/Makefile.am:
24045           test->noinst, fix make test in buildbot.
24046
24047 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
24048
24049         * ext/dvdread/stream_labels.c: new file
24050         * ext/dvdread/stream_labels.h: new file
24051         * ext/dvdread/Makefile.am:
24052         * ext/dvdread/dvdreadsrc.c: (_seek_title):
24053           Extract audio stream label from DVD IFO files.
24054           It only dump them on the console for now, still have to
24055           make playbin aware of them.
24056
24057 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24058
24059         * gst/playback/gstplaybasebin.c: (setup_source):
24060           Fix hanging subs.
24061
24062 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24063
24064         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
24065         (gen_preroll_element), (remove_groups), (setup_subtitle),
24066         (gen_source_element), (setup_source):
24067         * gst/playback/gstplaybasebin.h:
24068           Multiple .sub files is just a stupid idea... Fix some threading
24069           mistakes. Interestingly, external .sub files cause playbin to
24070           hang, I don't know why... Parsing fixes contributed by Fran??ois
24071           Kooman <fkooman@tuxed.net>.
24072
24073 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24074
24075         * testsuite/embed/Makefile.am:
24076           Fix buildbot.
24077
24078 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
24079
24080         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24081
24082         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
24083         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
24084         (gst_pngenc_set_property):
24085         * ext/libpng/gstpngenc.h:
24086           Add compression level property (#163323).
24087
24088 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24089
24090         * configure.ac:
24091         * examples/capsfilter/capsfilter1.c: (main):
24092         * examples/seeking/spider_seek.c: (make_spider_pipeline):
24093         * ext/dvdread/Makefile.am:
24094         * ext/dvdread/demo-play:
24095         * ext/dvdread/demo-play.c:
24096         * gconf/gstreamer.schemas.in:
24097         * gst-libs/gst/gconf/gconf.c:
24098         * sys/v4l/TODO:
24099         * testsuite/Makefile.am:
24100         * testsuite/embed/Makefile.am:
24101         * testsuite/embed/embed.c: (cb_expose), (main):
24102           Remove all references to xvideosink, fix examples (#140845).
24103         * gst/playback/gstplaybasebin.c: (group_destroy):
24104           Apparently, disposal does not unlink - so do explicitely.
24105         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24106           Add debug.
24107
24108 2005-01-09  Maciej Katafiasz <mathrick@freedesktop.org>
24109
24110         * README: fix PKG_CONFIG_PATH instructions, what was there
24111         previously was breaking default search path, not nice. 
24112         Fixes #163358
24113
24114 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24115
24116         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
24117         (gst_audioscale_chain):
24118           %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
24119           when resampling - how the ^@$^!@^! is this possible?!?
24120
24121 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24122
24123         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
24124           Reset variables on READY.
24125         * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
24126         (gst_matroska_mux_loop):
24127           Require data before writing header.
24128
24129 2005-01-09  Francis Labonte  <francis_labonte@hotmail.com>
24130
24131         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24132
24133         * ext/mad/gstmad.c: (gst_mad_chain):
24134           Don't call mad_stream_sync() directly after recovering sync.
24135           Fixes #151661.
24136
24137 2005-01-09  Martin Eikermann  <meiker@upb.de>
24138
24139         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24140
24141         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
24142         (snapshot_handler), (gst_snapshot_sinkconnect),
24143         (gst_snapshot_chain):
24144           Allocate resources when required, fix recursive signal emission
24145           and fix caps. Fixes #161667.
24146
24147 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
24148
24149         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24150
24151         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
24152         (gst_pngdec_chain):
24153           Handle only 8-bppc (bits-per-pixel-component) images, better
24154           error handling and correct strides. Fixes #163177.
24155         * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
24156         (gst_pngenc_chain):
24157           Better error handling. Fixes #163348.
24158
24159 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24160
24161         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
24162         (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
24163         (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
24164         (dvdnavsrc_uri_handler_init):
24165           Add DVD-nav URI (dvdnav://) for Totem testing purposes.
24166         * gst/playback/gstplaybasebin.c: (gen_source_element):
24167           Add MMS to streaming URIs.
24168
24169 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24170
24171         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
24172         * sys/xvimage/xvimagesink.c:
24173         (gst_xvimagesink_navigation_send_event):
24174           Check for pad availability before sending event.
24175
24176 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24177
24178         * gst-plugins.spec.in:
24179           Add subparse.
24180
24181 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24182
24183         * configure.ac:
24184           Since we use functions from CVS, up requirement.
24185
24186 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24187
24188         * gst/playback/Makefile.am:
24189         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
24190         (group_destroy), (group_commit), (group_is_muted),
24191         (gen_preroll_element), (add_stream), (unknown_type),
24192         (probe_triggered), (preroll_unlinked), (mute_stream),
24193         (silence_stream), (new_decoded_pad), (setup_substreams),
24194         (setup_source), (get_active_source), (mute_group_type),
24195         (muted_group_change_state), (set_active_source),
24196         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
24197         (play_base_eos), (gst_play_base_bin_change_state):
24198         * gst/playback/gstplaybasebin.h:
24199         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
24200         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
24201         (gst_stream_info_dispose), (stream_info_mute_pad),
24202         (stream_info_change_state), (gst_stream_info_set_mute):
24203         * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
24204         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
24205         (gst_stream_selector_init), (gst_stream_selector_dispose),
24206         (gst_stream_selector_get_linked_pad),
24207         (gst_stream_selector_get_caps), (gst_stream_selector_link),
24208         (gst_stream_selector_get_linked_pads),
24209         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
24210         * gst/playback/gststreamselector.h:
24211           Adding stream selection support plus required properties for
24212           applications to use this. Fully fixes #100931.
24213
24214 2005-01-08  Benjamin Otte  <otte@gnome.org>
24215
24216         * gst/games/gstpuzzle.c: (nav_event_handler):
24217           - handle nav events differently: forward every event no matter if it
24218             was handled or not.
24219           - translate events
24220           You can now cheat by using navigationtest ! puzzle and moving the
24221           mouse close to the edge of a tile. ;)
24222
24223 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24224
24225         * configure.ac:
24226         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
24227         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
24228         (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
24229         (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
24230         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
24231         (gst_ogm_parse_plugin_init):
24232         * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
24233         (gst_textoverlay_link), (gst_textoverlay_getcaps),
24234         (gst_textoverlay_event), (gst_textoverlay_video_chain),
24235         (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
24236         * ext/pango/gsttextoverlay.h:
24237         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
24238         (gst_matroska_demux_handle_seek_event),
24239         (gst_matroska_demux_sync_streams),
24240         (gst_matroska_demux_parse_blockgroup),
24241         (gst_matroska_demux_subtitle_caps),
24242         (gst_matroska_demux_plugin_init):
24243         * gst/matroska/matroska-ids.h:
24244         * gst/playback/gstdecodebin.c: (close_pad_link):
24245         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
24246         (gen_preroll_element), (remove_groups), (add_stream),
24247         (new_decoded_pad), (setup_subtitles), (gen_source_element),
24248         (setup_source):
24249         * gst/playback/gstplaybasebin.h:
24250         * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
24251         * gst/subparse/Makefile.am:
24252         * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
24253         (gst_subparse_base_init), (gst_subparse_class_init),
24254         (gst_subparse_init), (gst_subparse_formats),
24255         (gst_subparse_eventmask), (gst_subparse_event),
24256         (gst_subparse_handle_event), (convert_encoding), (get_next_line),
24257         (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
24258         (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
24259         (parse_mpsub_deinit), (parse_mpsub_init),
24260         (gst_subparse_buffer_format_autodetect),
24261         (gst_subparse_format_autodetect), (gst_subparse_loop),
24262         (gst_subparse_change_state), (gst_subparse_type_find),
24263         (plugin_init):
24264         * gst/subparse/gstsubparse.h:
24265         * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
24266         (plugin_init):
24267           Add subtitle support, .sub parser (supports SRT and MPsub),
24268           OGM text support, Matroska UTF-8 text support, deadlock fixes
24269           all over the place, subtitle awareness in decodebin/playbin
24270           and some fixes to textoverlay to handle subtitles in a stream
24271           correctly. Fixes #100931.
24272
24273 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24274
24275         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
24276           Check for pad availability before doing a query on it.
24277
24278 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
24279
24280         * ext/dv/gstdvdec.c:
24281           really fix bpp24/32 dvdec caps (classic rgba indeed)
24282         * gst/asfdemux/gstasfdemux.c:
24283         (gst_asf_demux_process_ext_content_desc):
24284           don't send text tags if they are empty (bis repetita)
24285
24286 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
24287
24288         * ext/dv/gstdvdec.c:
24289          remove unneeded comment from dvdec
24290           (related to DV 4CC codes in AVI files)
24291           moved them in gstreamer/docs/random/mimetypes
24292         * gst/asfdemux/gstasfdemux.c:
24293         (gst_asf_demux_process_ext_content_desc):
24294          don't send text tags if they are empty
24295          fix mem leak on error path
24296         * gst/ffmpegcolorspace/avcodec.h:
24297         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
24298         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
24299         (gst_ffmpegcsp_avpicture_fill):
24300         * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
24301         * gst/ffmpegcolorspace/imgconvert_template.h:
24302          adds BGR32 and BGRA32 to ffmpegcolorspace
24303           (still bad colors, fixing it on next commit)
24304           helps with dvdec outputing BGR32
24305
24306 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
24307
24308         * ext/dv/gstdvdec.c:
24309          Fix audio caps i just broke (missing ',')
24310         * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
24311         (gst_matroska_mux_reset):
24312          Fix typo + add FIXME about old "x-gst-metadata" crap
24313
24314 2005-01-07  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
24315
24316         * ext/dv/demo-play.c: (main):
24317          xvideosink -> xvimagesink
24318         * ext/dv/gstdvdec.c:
24319          change rgb 32/32 caps to 24/32 (no alpha)
24320          change nb of channels to be a list (2 or 4, not 2)
24321          change sample rate to be a list (32, 44.1, 48 kHz) not a range
24322         * gst/asfdemux/gstasfdemux.c:
24323         (gst_asf_demux_process_ext_content_desc):
24324          Add 'date/year' to extracted metadata list
24325
24326 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24327
24328         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
24329           The return value of fixate_to does not imply that the requested
24330           value was set, so don't assume.
24331
24332 2005-01-07  Gergely Nagy  <algernon@bonehunter.rulez.org>
24333
24334         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24335
24336         * ext/libpng/gstpngdec.c:
24337         * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
24338         (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
24339         * ext/libpng/gstpngenc.h:
24340           Alpha support (encoder; #163161), mime fixage.
24341
24342 2005-01-07  Sebastien Cote  <sc5@hermes.usherb.ca>
24343
24344         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24345
24346         * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
24347         (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
24348         (gst_faac_set_property), (gst_faac_get_property):
24349         * ext/faac/gstfaac.h:
24350           Allow for ADTS output (#153434).
24351
24352 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24353
24354         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
24355           Fix against template (#150576).
24356
24357 2005-01-06  Benjamin Otte  <otte@gnome.org>
24358
24359         * gst/games/gstpuzzle.c: (draw_puzzle):
24360           don't draw a puzzle if either width or height of tiles would be 0.
24361
24362 2005-01-06  Benjamin Otte  <otte@gnome.org>
24363
24364         * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
24365         (gst_puzzle_class_init), (gst_puzzle_finalize):
24366           no memleaks, please
24367         (gst_puzzle_create), (gst_puzzle_init),
24368         (gst_puzzle_set_property), (gst_puzzle_setup):
24369           change initialization code around so we don't reshuffle on resize
24370         (draw_puzzle):
24371           fix another stupid typo
24372
24373 2005-01-06  Benjamin Otte  <otte@gnome.org>
24374
24375         * gst/games/gstvideoimage.c: (copy_hline_YUY2):
24376           fix stupid typo that borked copying on YUY2
24377
24378 2005-01-06  Benjamin Otte  <otte@gnome.org>
24379
24380         * gst/games/gstpuzzle.c: (draw_puzzle):
24381           fix edges when image sizes aren't multiples of tile sizes
24382
24383 2005-01-06  Benjamin Otte  <otte@gnome.org>
24384
24385         * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
24386           make RGB endianness work correctly
24387         (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
24388           refactor and fix race with initial shuffling
24389         (nav_event_handler):
24390           allow using the mouse to puzzle
24391         (draw_puzzle):
24392           insist on tiles having width and height as multiples of 4 to get
24393           clean YUV image handling
24394         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
24395         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
24396           s/DEBUG/LOG/ for common messages
24397         (gst_xvimagesink_navigation_send_event):
24398           fix mouse event translation to not include screen PAR
24399         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
24400           fix mouse event translation to actually work
24401
24402 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
24403
24404         * gst/asfdemux/gstasfdemux.c:
24405         (gst_asf_demux_process_ext_content_desc):
24406          Extract TrackNumber metadata + clean up code
24407         * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
24408          Hope this is the good fix (var used unitialised)
24409
24410 2005-01-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24411
24412         * ext/faad/gstfaad.c: (gst_faad_chain):
24413           Only increment timestamp if it's valid. Fixes raw AAC streams.
24414
24415 2005-01-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24416
24417         * configure.ac:
24418         * gst/games/Makefile.am:
24419         * gst/games/gstpuzzle.c:
24420           add a puzzle game with...
24421         * gst/games/gstvideoimage.c:
24422         * gst/games/gstvideoimage.h:
24423           ... full colorspace support (that includes YUV9 and RGB16)) stolen
24424           from videotestsrc and made into something that would be a nice
24425           library for a lot of other plugins.
24426
24427 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
24428
24429         * configure.ac:
24430          don't compile faad plugin if a RC of 2.0 is found
24431          Fixes #155346 (and FC1 buildbot)
24432         * gst/asfdemux/gstasfdemux.c:
24433         (gst_asf_demux_process_ext_content_desc):
24434          try to make Solaris compiler happier
24435
24436 2005-01-06  Paul Jack  <pjack@sfaf.org>
24437
24438         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24439
24440         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
24441           Fix segfault (#161667).
24442
24443 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24444
24445         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
24446           Fix framerate reporting.
24447
24448 2005-01-05  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
24449
24450         * gst-libs/gst/riff/riff-ids.h:
24451         * gst/wavenc/riff.h:
24452          Add AMR (VBR and CBR) ids to riff.h audio codec list
24453         * gst/asfdemux/gstasfdemux.c:
24454         (gst_asf_demux_process_ext_content_desc),
24455         (gst_asf_demux_process_object):
24456           Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
24457
24458 2005-01-05  Martin Eikermann  <meiker@upb.de>
24459
24460         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24461
24462         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
24463         (gst_dvd_demux_handle_discont):
24464         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
24465         (gst_mpeg_demux_handle_discont):
24466           Recreate pads on new-media (#160730).
24467         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
24468           Send discont even if manager changes timestamps (#161929).
24469
24470 2005-01-05  Sebastien Cote  <sc5@hermes.usherb.ca>
24471
24472         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24473
24474         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
24475           Fix invalid memory access (#159211).
24476
24477 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24478
24479         * examples/gstplay/player.c: (main):
24480           Don't iterate.
24481         * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
24482           Add visualizations.
24483         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
24484         (gst_a52dec_handle_frame):
24485           Set duration.
24486         * ext/dvdnav/gst-dvd:
24487           Add audioconvert. Fixes #161325.
24488         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
24489           Explicitely case to gint64. Possible valgrind error.
24490         * gst-libs/gst/play/play.c: (caps_set), (setup_size),
24491         (gst_play_tick_callback), (gst_play_change_state),
24492         (gst_play_dispose), (gst_play_init), (gst_play_class_init),
24493         (gst_play_set_location), (gst_play_get_location),
24494         (gst_play_seek_to_time), (gst_play_set_data_src),
24495         (gst_play_set_video_sink), (gst_play_set_audio_sink),
24496         (gst_play_set_visualization), (gst_play_connect_visualization),
24497         (gst_play_get_framerate), (gst_play_get_all_by_interface),
24498         (gst_play_new):
24499           Use playbin. Fixes #139749 and #147744.
24500         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
24501           Add genre tag.
24502         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
24503         (audioscale_get_type), (gst_audioscale_base_init),
24504         (gst_audioscale_class_init), (gst_audioscale_expand_caps),
24505         (gst_audioscale_getcaps), (gst_audioscale_fixate),
24506         (gst_audioscale_link), (gst_audioscale_get_buffer),
24507         (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
24508         (gst_audioscale_init), (gst_audioscale_dispose),
24509         (gst_audioscale_chain), (gst_audioscale_set_property),
24510         (gst_audioscale_get_property), (plugin_init):
24511           Indent properly.
24512         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
24513           Fix LPCM.
24514         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
24515         (qtdemux_tag_add_str), (qtdemux_tag_add_num),
24516         (qtdemux_tag_add_gnre), (qtdemux_video_caps):
24517           Add more metadata (fixes #162656).
24518
24519 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
24520
24521         * configure.ac:
24522           back to cvs
24523
24524 === release 0.8.7 ===
24525
24526 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
24527
24528         * NEWS:
24529         * RELEASE:
24530         * configure.ac:
24531           releasing 0.8.7, "Hyperspace"
24532
24533 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
24534
24535         patch by: Tim-Philipp Müller  <t.i.m@zen.co.uk>
24536
24537         * gst/playback/gstplaybasebin.c:
24538          Fix for #162924 - free caps after use, not before
24539
24540 2005-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
24541
24542         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
24543
24544         * gst/playback/gstplaybasebin.c:
24545         * gst/wavparse/gstwavparse.c:
24546           Fix for #154773 - fixes playback of small .wav files
24547
24548 2005-01-03  Thomas Vander Stichele  <thomas at apestaart dot org>
24549
24550         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
24551
24552         * gst/audioscale/gstaudioscale.c:
24553           Fix for #162819 - make audioscale reusable
24554           Fixes playback of more than one file with playbin/totem
24555
24556 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
24557
24558         * gst/ffmpegcolorspace/avcodec.h:
24559         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
24560         * gst/ffmpegcolorspace/imgconvert.c:
24561           clean up the mess that made me cry and avoid needless duplication
24562
24563 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
24564
24565         * gst/ffmpegcolorspace/imgconvert.c:
24566           give some indication of why we're segfaulting
24567
24568 2004-12-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24569
24570         * configure.ac:
24571           Fix indentation, fix v4l2 plugin detection.
24572         * ext/Makefile.am:
24573           Fix libmms location (Maciej, use diff -u!).
24574         * ext/alsa/gstalsa.c: (gst_alsa_init):
24575           Initialize caps cache to NULL.
24576         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
24577           Only change state on audiosink if it exists.
24578
24579 2004-12-28  Maciej Katafiasz  <mathrick@mathrick.org>
24580
24581         * gst/matroska/matroska-demux.c:
24582         * gst/matroska/matroska-ids.h:
24583         * gst/matroska/matroska-demux.h:
24584         Fix Vorbis streams failing to decode in some files, where cluster_time
24585         isn't 0, because then it doesn't send codec_priv before actual data.
24586         Remove time-based test and replace it with marker set on beginning of
24587         new stream
24588
24589 2004-12-28  David Schleef  <ds@schleef.org>
24590
24591         Merge patch from Ronald fixing problems with streaming
24592         text.
24593         * ext/cairo/gstcairo.c: (plugin_init):
24594         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
24595         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
24596         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
24597         (gst_textoverlay_font_init), (gst_textoverlay_init),
24598         (gst_textoverlay_set_property):
24599         * ext/cairo/gsttextoverlay.h:
24600
24601 2004-12-27  David Schleef  <ds@schleef.org>
24602
24603         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
24604         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
24605         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
24606         (gst_textoverlay_font_init), (gst_textoverlay_init),
24607         (gst_textoverlay_set_property): Improvements to actually
24608         render text as white on black outline on video, including
24609         font selection and horizontal/vertical alignment.  (Ronald's
24610         christmas present)
24611         * ext/cairo/gsttextoverlay.h:
24612
24613 2004-12-26  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
24614
24615         * ext/ogg/gstogg.c:
24616         * ext/ogg/gstogmparse.c:
24617           fix ogm[audio/video]parse plugin registration
24618           (riff won't load if bytestream is already loaded)
24619
24620 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
24621
24622         * gst/audioconvert/gstchannelmix.c:
24623           fix for GLIB < 2.4
24624
24625 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
24626
24627         * Makefile.am:
24628         * configure.ac:
24629           disable docs again until it actually passes make distcheck.
24630
24631 2004-12-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24632
24633         * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
24634         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
24635         (plugin_init):
24636           Add 3GP (variables name Q3GP because they can't start with a
24637           number). Add samr audio fourcc (used in .3gp files), decoder
24638           is work in progress. Also do a GST_WARNING instead of ERROR
24639           in case of unknown nodes, to decrease output.
24640
24641 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
24642
24643         * Makefile.am:
24644           really fix dist
24645
24646 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
24647
24648         * configure.ac:
24649         * ext/speex/gstspeexdec.h:
24650         * ext/speex/gstspeexenc.h:
24651           Fixes #158382.  Make speex plugin compatible with both 1.0 and 1.1.
24652           Fix detection code in configure.ac
24653
24654 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24655
24656         * gst/matroska/matroska-demux.c:
24657         (gst_matroska_demux_parse_blockgroup):
24658           Save position, so that queries give proper return values. Don't
24659           know how this could ever have worked before...
24660
24661 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
24662
24663         * configure.ac:
24664           Put additional LAME check inside the conditional.  Fixes #152339
24665
24666 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24667
24668         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
24669         (gst_avi_demux_stream_scan):
24670           Add some more debug. Fix logic error when setting movi offset
24671           while reading index.
24672
24673 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24674
24675         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
24676         (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
24677         (gst_avi_demux_process_next_entry):
24678           Add some debugging. Better detection of broken indexes and the
24679           accompanying index recovery. No infinite loops on state changes
24680           when we're still in our loopfunction.
24681
24682 2004-12-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24683
24684         * configure.ac:
24685           Fix up.
24686
24687 2004-12-22  Archana Shah  <archana.shah@wipro.com>
24688
24689         Reviewed by:  Ronald S. Bultje <rbultje@ronald.bitfreak.net>
24690
24691         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
24692           Normalizing the value before setting
24693         (gst_sunaudiomixer_get_volume):
24694           Normalizing the value after getting. Fixes bug# 161980
24695
24696 2004-12-22  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
24697
24698         * Makefile.am: Make sure docs gets disted
24699         * docs/Makefile.am: Make sure all needed files get disted
24700         * gst-plugins.spec.in: latest updates
24701
24702 2004-12-22  Wim Taymans  <wim@fluendo.com>
24703
24704         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
24705         Revert patch 1.38 as clock distribution over schedulers does
24706         not work correcly in the core yet.
24707
24708 2004-12-21  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
24709
24710         * sys/oss/README: remove this file, which predates my birth
24711           (and which content is by far outdated)
24712
24713 2004-12-20  Stefan Kost  <ensonic@users.sf.net>
24714
24715         * Makefile.am:
24716         * configure.ac:
24717         * docs/Makefile.am:
24718         * docs/libs/Makefile.am:
24719         * docs/libs/gst-plugins-libs-docs.sgml:
24720         * docs/libs/gst-plugins-libs-sections.txt:
24721         * docs/libs/tmpl/gstgconf.sgml:
24722         * docs/upload.mak:
24723         * docs/version.entities.in:
24724           Added boilerplate gtk-doc files for plugin-libs documentation.
24725
24726 2004-12-19  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
24727
24728         * gst/auparse/gstauparse.c: fix int and float audio caps
24729
24730 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24731
24732         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
24733         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
24734           g_assert() can be a macro, don't use #ifdef inside it.
24735
24736 2004-12-19  Edward Hervey  <bilboed@bilboed.com>
24737
24738         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24739
24740         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
24741         (gst_videorate_init), (gst_videorate_chain),
24742         (gst_videorate_change_state):
24743           Event handling (fixes #159986).
24744
24745 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24746
24747         * gst-libs/gst/riff/riff-media.c:
24748         (gst_riff_create_video_caps_with_data):
24749           Add BLZ0 (Blizzard's version of DivX) fourcc.
24750
24751 2004-12-18  David Schleef  <ds@schleef.org>
24752
24753         * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
24754         portability fix.
24755
24756 2004-12-18  David Schleef  <ds@schleef.org>
24757
24758         * gst/tta/ttadec.h: Disable some header code that isn't used
24759         and clearly isn't portable.
24760
24761 2004-12-18  David Schleef  <ds@schleef.org>
24762
24763         * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
24764         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
24765         (avcodec_get_pix_fmt), (avpicture_layout),
24766         (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
24767         (get_convert_table_entry), (img_convert), (img_get_alpha_info):
24768         Fix code to not use GCC extensions (and c99 extensions that
24769         Forte does not like.)
24770
24771 2004-12-19  Tim-Philipp Müller  <t.i.m@zen.co.uk>
24772
24773         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24774
24775         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
24776         (gst_deinterlace_chain):
24777           Rowstride fixes. Fixes #161039.
24778         * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
24779         (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
24780         (gst_video_crop_getcaps), (gst_video_crop_link),
24781         (gst_video_crop_i420), (gst_video_crop_chain),
24782         (gst_video_crop_change_state):
24783           Rework of negotiation. Actually works now. Fixes #158650.
24784
24785 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24786
24787         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
24788           That was very stupid.
24789
24790 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24791
24792         * gst/matroska/matroska-demux.c:
24793         (gst_matroska_demux_parse_blockgroup):
24794           Fix possible crasher.
24795
24796 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24797
24798         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
24799         (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
24800           Lace sizes can be zero.
24801
24802 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24803
24804         * ext/musepack/gstmusepackdec.cpp:
24805           Fetch error return values. Fixes #161624.
24806         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
24807           Really EOS.
24808
24809 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24810
24811         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
24812           Work for truncated (unfinished download etc.) files. Fixes #160514.
24813
24814 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24815
24816         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
24817           Fix for integer overflow. Makes #156001 not crash. Probably masks
24818           the real bug.
24819
24820 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24821
24822         * gst/ac3parse/gstac3parse.c: (plugin_init):
24823           Parsers never have ranks. Fixes #159651.
24824
24825 2004-12-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24826
24827         * gst/playback/gstdecodebin.c: (compare_ranks):
24828           make sure the facotries are ordered the same every time even if they
24829           have the same rank by using the name
24830         * gst/playback/gstdecodebin.c: (find_compatibles):
24831           make sure we don't add factories to the list twice
24832
24833 2004-12-16  David Schleef  <ds@schleef.org>
24834
24835         * configure.ac: look for musepack headers as musepack/*.h
24836         (fixes #159847)
24837         * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
24838         * ext/musepack/gstmusepackreader.h: same
24839
24840 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24841
24842         * gst-libs/gst/riff/riff-read.c:
24843         (gst_riff_read_strf_auds_with_data):
24844           Read extradata correctly (fixes #155879).
24845
24846 2004-12-16  David Schleef  <ds@schleef.org>
24847
24848         * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
24849         audio.  does _not_ attempt or allow conversion unless channels
24850         is 1 or 2.
24851
24852 2004-12-16  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
24853
24854         * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
24855
24856 2004-12-16  David Schleef  <ds@schleef.org>
24857
24858         * gst/audioscale/gstaudioscale.c: the resample library only
24859         handles 1 or 2 channels.  Change caps to compensate.
24860
24861 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24862
24863         * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
24864         (gst_matroska_demux_audio_caps):
24865           Some MPEG-AAC hacks, because else it doesn't work...
24866
24867 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24868
24869         * gst-libs/gst/riff/riff-media.c:
24870         (gst_riff_create_video_caps_with_data),
24871         (gst_riff_create_video_template_caps):
24872           Add h264.
24873
24874 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24875
24876         * gst-libs/gst/audio/Makefile.am:
24877           Try to fix buildbot.
24878
24879 2004-12-16  Thomas Vander Stichele  <thomas at apestaart dot org>
24880
24881         * gst/tcp/gstmultifdsink.c:
24882           Clean up and uniformize debugging.
24883
24884 2004-12-16  Edward Hervey  <bilboed@bilboed.com>
24885
24886         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24887
24888         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
24889         (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
24890         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
24891         (gst_mpeg_demux_change_state):
24892           Reset on ready. Fixes 160276.
24893
24894 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
24895
24896         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24897
24898         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24899         (gst_ffmpegcsp_pad_link):
24900           Fix memleak (#154815).
24901
24902 2004-12-16  James Bowes  <bowes@cs.dal.ca>
24903
24904         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24905
24906         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
24907         (gst_musicbrainz_init), (gst_musicbrainz_chain),
24908         (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
24909         * ext/musicbrainz/gsttrm.h:
24910           Add support for using a proxy server when getting a trm id from
24911           the MusicBrainz database (#149613).
24912
24913 2004-12-16  Christophe Fergeau  <teuf@gnome.org>
24914
24915         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24916
24917         * gst/playback/gstdecodebin.c: (new_pad), (close_link):
24918         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
24919           Fix memleaks (#157233).
24920
24921 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
24922
24923         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24924
24925         * gst-libs/gst/resample/resample.c: (gst_resample_close):
24926         * gst-libs/gst/resample/resample.h:
24927         * gst/audioscale/gstaudioscale.c:
24928           Fix memleak (#159215).
24929
24930 2004-12-16  Toni Willberg  <toniw@iki.fi>
24931
24932         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24933
24934         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
24935         * sys/oss/oss_probe.c: (main):
24936           Check for mono/stereo support (similar to samplerate probing),
24937           fixes #159433. Also add missing copyright header to oss_probe.c.
24938
24939 2004-12-15  David Schleef  <ds@schleef.org>
24940
24941         * configure.ac: add audioresample and cairo plugins.  Remove
24942         HAVE_MMX stuff, because it's not used.
24943         * ext/Makefile.am: same
24944         * ext/audioresample/Makefile.am: You are not ready for an
24945         audio resampling element based on audioresample.
24946         * ext/audioresample/gstaudioresample.c:
24947         * ext/audioresample/gstaudioresample.h:
24948         * ext/cairo/Makefile.am: You are not ready for overlay elements
24949         based on cairo.  Don't look too closely, these elements kinda
24950         suck right now.
24951         * ext/cairo/gstcairo.c: new
24952         * ext/cairo/gsttextoverlay.c: new
24953         * ext/cairo/gsttextoverlay.h: new
24954         * ext/cairo/gsttimeoverlay.c: new
24955         * ext/cairo/gsttimeoverlay.h: new
24956         * gst-libs/gst/media-info/media-info-priv.h: fix compile
24957         problem with compilers that don't support variadic macros.
24958
24959 2004-12-15  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
24960
24961         Reviewed by:  David Schleef  <ds@schleef.org>
24962
24963         * sys/sunaudio/gstsunaudio.c: (plugin_init):  Apply patch from
24964         Bala, registering sunaudiosrc (oops!), and cleaning up code a
24965         bit.  Also ran indent-gst.
24966         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
24967         (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
24968         (gst_sunaudiosrc_setparams):
24969
24970 2004-12-14  David Schleef  <ds@schleef.org>
24971
24972         * gst/festival/gstfestival.c: (gst_festival_chain): Set the
24973         output rate to 16000.  Should fix #160235.
24974
24975 2004-12-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24976
24977         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
24978         Add typefinding for mpeg2 pes streams
24979
24980 2004-12-13  David Schleef  <ds@schleef.org>
24981
24982         * configure.ac:  Applied patch from bug #143659, making default
24983         sources and sinks OS-dependent (for Solaris), and added code
24984         for OS/X.
24985         * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
24986
24987 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
24988
24989         * gst-libs/gst/riff/riff-media.c:
24990           forgot to add h2.64 to avidemux template caps
24991
24992 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
24993
24994         * gst/wavenc/riff.h:
24995         * gst-libs/gst/riff/riff-media.c:
24996         * gst-libs/gst/riff/riff-ids.h:
24997         * gst/avi/gstavimux.c
24998         add 4CC code for VideoSoft h264 in AVI (VSSH)
24999           fixes bug #160655
25000         remove s323 from riff, it's quicktime specific :(
25001
25002 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
25003
25004         * gst/asfdemux/README
25005         * gst/wavenc/riff.h
25006         * gst-libs/gst/riff/riff-ids.h
25007         * gst-libs/gst/riff/riff-media.c
25008         * gst/qtdemux/qtdemux.c:
25009           add new 4CC codes for h263 related codecs
25010           fixes partially bug #155163
25011
25012 2004-12-12  Christian Fredrik Kalager Schaller  <christian at fluendo dot com>
25013
25014         * configure.ac: Update polyaudio requirement to 0.7
25015         * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
25016
25017 2004-12-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
25018
25019         * gst/interleave/deinterleave.c:
25020         fix my name's spelling! :)
25021
25022 2004-12-11  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
25023
25024         * AUTHORS ChangeLog
25025         * gst/auparse/gstauparse.c
25026         * gst/interleave/deinterleave.c
25027         * gst/law/:
25028                 alaw-decode.c alaw-encode.c
25029                 mulaw-decode.c mulaw-encode.c
25030         * gst/oneton/gstoneton.c
25031         * sys/osxaudio/:
25032                 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
25033         * sys/osxvideo/:
25034                 cocoawindow.h cocoawindow.m
25035                 osxvideosink.h osxvideosink.m
25036
25037         put the same mail address for Zaheer Abbas Merali everywhere
25038
25039 2004-12-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25040
25041         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
25042           Align by packetsize, and assert that we a packet available before
25043           playing. The first makes webstreams work (they often include
25044           trailing padding data in a packet), the second allows pausing a
25045           ASF stream in totem without getting demux errors afterwards.
25046
25047 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25048
25049         * ext/ogg/gstoggdemux.c: (get_relative):
25050           Check for non-NULL before accessing member (end-of-chain).
25051
25052 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25053
25054         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
25055         (cdparanoia_set_property), (cdparanoia_get_property):
25056         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
25057         (dvdnavsrc_set_property), (dvdnavsrc_get_property):
25058         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
25059         (dvdreadsrc_init), (dvdreadsrc_set_property),
25060         (dvdreadsrc_get_property):
25061         * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
25062         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
25063           Synchronize property names where not yet the case. Devices are
25064           now device=X, other versions are deprecated (but still exist).
25065           Also use g_free() unconditionally.
25066         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
25067         (setup_source), (gst_play_base_bin_get_property):
25068           Expose source.
25069
25070 2004-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
25071
25072         * configure.ac: move GCONF macro outside conditional for the am
25073           conditional. Fixes #160439
25074
25075 2004-12-08  David Schleef  <ds@schleef.org>
25076
25077         * tools/gst-visualise-m.m: Switch to elements that currently
25078         exist.
25079
25080 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25081
25082         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
25083           We love wrong commas.
25084
25085 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25086
25087         * gst/matroska/matroska-demux.c:
25088         (gst_matroska_demux_handle_src_query):
25089           Don't set DEFAULT, unsupported - makes length display incorrectly
25090           in some cases.
25091
25092 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
25093
25094         * gst/monoscope/README: remove blurb about files being GPL
25095         * gst/monoscope/gstmonoscope.c: Change license field to LGPL
25096         * gst/monoscope/monoscope.c: Change license to BSD with explanation
25097           monoscope is now effectively LGPL licensed
25098
25099 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
25100
25101         * gst/monoscope/README: Update information to be more correct
25102         * gst/monoscope/convolve.c: Relicense to LGPL
25103         * gst/monoscope/convolve.h: Relicense to LGPL
25104
25105 2004-12-06  Arwed v. Merkatz <v.merkatz@gmx.net>
25106
25107         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
25108           set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
25109         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
25110           set default_duration for mpeg1 audio
25111
25112 2004-12-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25113
25114         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
25115         * ext/alsa/gstalsa.h:
25116           refactor big chunks of the core caps negotiation code to make it
25117           a lot faster, because people claim it's really slow
25118           (actually, just cache the getcaps when the device is opened)
25119
25120 2004-12-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25121
25122         * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
25123         (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
25124         (gst_a52dec_handle_frame), (gst_a52dec_chain),
25125         (gst_a52dec_change_state), (plugin_init):
25126         * ext/a52dec/gsta52dec.h:
25127           Do something useful with timestamps. Make chain-based (since
25128           there's really no reason to be loopbased).
25129         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
25130           Update current_byte/frame correctly.
25131
25132 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25133
25134         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
25135         (gst_ape_demux_stream_init):
25136           Forward tags, too.
25137
25138 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25139
25140         * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
25141           Let's make sure we're done typefinding when detecting tags.
25142
25143 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25144
25145         * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
25146         (gst_ebml_read_init), (gst_ebml_read_use_event),
25147         (gst_ebml_read_element_id), (gst_ebml_peek_id),
25148         (gst_ebml_read_seek), (gst_ebml_read_skip),
25149         (gst_ebml_read_reserve), (gst_ebml_read_buffer),
25150         (gst_ebml_read_master):
25151         * gst/matroska/ebml-read.h:
25152         * gst/matroska/matroska-demux.c:
25153         (gst_matroska_demux_parse_contents),
25154         (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
25155           Disgustingly evil hack for working around INTERRUPT events and
25156           their extremely annoying habit of being a pain in the ass. We
25157           simply peek a cluster before reading any of it.
25158
25159 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25160
25161         * ext/musepack/gstmusepackdec.cpp:
25162           There's also floating point libmusepacks.
25163
25164 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25165
25166         * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
25167         (gst_faad_chanpos_to_gst), (gst_faad_chain):
25168           Set DURATION even if source buffer didn't. Also use increasing
25169           timestamps.
25170         * gst-libs/gst/riff/riff-media.c:
25171         (gst_riff_create_audio_caps_with_data):
25172           Block_align can have larger values than 8192.
25173
25174 2004-12-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25175
25176         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
25177         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
25178         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
25179         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
25180           Fix caps.
25181
25182 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25183
25184         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
25185           Fix logic bug.
25186
25187 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25188
25189         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
25190           Yay, another one.
25191
25192 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25193
25194         * ext/esd/esdsink.c: (gst_esdsink_chain):
25195           Make error actually say something useful (fixes #156798).
25196         * gst-libs/gst/riff/riff-media.c:
25197         (gst_riff_create_video_caps_with_data),
25198         (gst_riff_create_video_template_caps):
25199           Add Intel Video 5.0 fourcc (IV50).
25200
25201 2004-12-01  Christophe Fergeau  <teuf@gnome.org>
25202
25203         * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
25204         detection on mono and stereo mp3 files.
25205
25206 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25207
25208         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
25209           Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
25210           the contained stream).
25211
25212 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25213
25214         * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
25215           Oops, remove debug.
25216
25217 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
25218
25219         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25220
25221         * gst/law/alaw-decode.c: (alawdec_getcaps):
25222         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
25223           Prevent warnings when negotiating caps (fixes #159338).
25224
25225 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25226
25227         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
25228         (gst_ffmpegcsp_chain):
25229           Remove old leftover that shouldn't be there...
25230
25231 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
25232
25233         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25234
25235         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
25236           Don't forward DISCONT events (fixes #159684).
25237
25238 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25239
25240         * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
25241           Unlink manually since sometimes bin disposal (and therefore
25242           pad unlinking) is delayed, which will cause a new media file
25243           to not be able to start playing instantly.
25244
25245 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25246
25247         * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
25248           On mute of an unlinked stream, check for pad availability so
25249           we don't crash on unlinked pad.
25250
25251 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25252
25253         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
25254         (gst_avi_demux_massage_index):
25255           Fix quite humiliating bug in omitting 0-sized index chunks but
25256           forgetting to count them for timestamps.
25257
25258 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25259
25260         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
25261           Actually leave the loop if we failed to sync. Don't crash.
25262
25263 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25264
25265         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
25266         (gst_dvd_demux_process_private):
25267         * gst/mpegstream/gstdvddemux.h:
25268           Fix crash (#159759). Doesn't work, though. :-(.
25269
25270 2004-11-28  Benjamin Otte  <otte@gnome.org>
25271
25272         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
25273           more overwriting protection due to modifying channels one by one
25274           instead of all at once
25275
25276 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25277
25278         * gst/audioconvert/gstchannelmix.c:
25279         (gst_audio_convert_fill_normalize):
25280           Normalize using absolute values.
25281
25282 2004-11-28  Julien MOUTTE  <julien@moutte.net>
25283
25284         * configure.ac:
25285         * ext/Makefile.am:
25286         * ext/directfb/Makefile.am:
25287         * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
25288         (gst_directfbvideosink_get_pixel_format),
25289         (gst_directfbvideosink_get_format_from_fourcc),
25290         (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
25291         (gst_directfbvideosink_sink_link),
25292         (gst_directfbvideosink_change_state),
25293         (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
25294         (gst_directfbvideosink_buffer_alloc),
25295         (gst_directfbvideosink_interface_supported),
25296         (gst_directfbvideosink_interface_init),
25297         (gst_directfbvideosink_navigation_send_event),
25298         (gst_directfbvideosink_navigation_init),
25299         (gst_directfbvideosink_set_property),
25300         (gst_directfbvideosink_get_property),
25301         (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
25302         (gst_directfbvideosink_base_init),
25303         (gst_directfbvideosink_class_init),
25304         (gst_directfbvideosink_get_type), (plugin_init):
25305         * ext/directfb/directfbvideosink.h: Adding a first version of
25306         directfbvideosink.
25307         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
25308         more.
25309
25310 2004-11-28  Benjamin Otte  <otte@gnome.org>
25311
25312         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
25313           walk the samples backwards if out_channels > in_channels so we don't
25314           overwrite data
25315
25316 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25317
25318         * gst/audioconvert/Makefile.am:
25319         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
25320         (gst_audio_convert_link), (gst_audio_convert_change_state),
25321         (gst_audio_convert_channels):
25322         * gst/audioconvert/gstchannelmix.c:
25323         (gst_audio_convert_unset_matrix),
25324         (gst_audio_convert_fill_identical),
25325         (gst_audio_convert_fill_compatible),
25326         (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
25327         (gst_audio_convert_fill_others),
25328         (gst_audio_convert_fill_normalize),
25329         (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
25330         (gst_audio_convert_passthrough), (gst_audio_convert_mix):
25331         * gst/audioconvert/gstchannelmix.h:
25332           Implement a channel mixer.
25333
25334 2004-11-28  Martin Soto  <martinsoto@users.sourceforge.net>
25335
25336         * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
25337         * ext/alsa/gstalsa.h:
25338         * ext/alsa/gstalsa.c (gst_alsa_set_clock):
25339         Make alsasink actually honor gst_element_set_clock and use that
25340         clock instead of its internal one.
25341
25342 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
25343
25344         * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
25345         (gst_play_base_bin_change_state): nullify source and decoder when
25346         going from READY to NULL so that we don't try to do weird stuff with
25347         them when going from NULL to READY
25348         * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
25349         instead of g_object_unref
25350         (gen_video_element), (gen_audio_element): more refcounting fixes, now
25351         it should be correct
25352         (gst_play_bin_change_state): don't call remove_sinks if we are
25353         currently disposing the object
25354
25355 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25356
25357         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
25358           Don't forget bass if it's there. Else left channel is silent...
25359
25360 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25361
25362         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
25363         (gst_a52dec_change_state):
25364           Don't do sample adjusting anymore, we use float audio now.
25365         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
25366           Don't fixate to non-existing properties.
25367
25368 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25369
25370         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
25371         (gst_a52dec_change_state):
25372           Advertise that we can do surround sound.
25373
25374 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25375
25376         * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
25377           Add buffer-frames=0.
25378         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
25379         (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
25380         (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
25381         (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
25382         (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
25383         (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
25384         (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
25385         (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
25386         (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
25387         * ext/dvdread/dvdreadsrc.h:
25388           Add seeking, querying for bytes, sectors, title, angle and
25389           chapter. Handle multiple chapters. Relicense to LGPL because
25390           Billy agreed on that (thanks Billy!).
25391
25392 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
25393
25394         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
25395         call parent dispose method
25396
25397 2004-11-27  Martin Soto  <martinsoto@users.sourceforge.net>
25398
25399         * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
25400         (gst_audio_clock_get_internal_time):
25401         Fix active <-> inactive transitions: ensure time value always
25402         grows and avoid abrupt value changes.
25403
25404 2004-11-27  Arwed v. Merkatz <v.merkatz@gmx.net>
25405
25406         * configure.ac:
25407         * gst/tta/Makefile.am:
25408         * gst/tta/crc32.h:
25409         * gst/tta/filters.h:
25410         * gst/tta/gsttta.c:
25411         * gst/tta/gstttadec.c:
25412         * gst/tta/gstttadec.h:
25413         * gst/tta/gstttaparse.c:
25414         * gst/tta/gstttaparse.h:
25415         * gst/tta/ttadec.h:
25416           added TTA parser and decoder
25417
25418 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25419
25420         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
25421         (probe_triggered), (check_queue), (buffer_underrun),
25422         (buffer_running), (buffer_overrun), (gen_source_element),
25423         (setup_source):
25424         * gst/playback/gstplaybasebin.h:
25425           Implement buffering. Needs some more work.
25426
25427 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25428
25429         * ext/theora/theoradec.c: (theora_dec_chain):
25430           Fix ilog mask range overflow.
25431
25432 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25433
25434         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
25435           Don't omit the last (which in case of dmix is the only :) )
25436           channel count. Don't set channels if <= 2.
25437
25438 2004-11-26  Christophe Fergeau  <teuf@gnome.org>
25439
25440         * gst/playback/gstplaybin.c: (gen_video_element),
25441         (gen_audio_element): Removed 2 obsolete comments
25442
25443 2004-11-26  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25444
25445         * ext/vorbis/oggvorbisenc.c
25446         * ext/vorbis/vorbisenc.c :
25447           change description fields of those plugins to differentiate them
25448           (pitivi show Encoders by description, they had the same one)
25449
25450 2004-11-25  Christophe Fergeau  <teuf@gnome.org>
25451
25452         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25453
25454         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
25455         (gst_play_bin_set_property), (gen_video_element),
25456         (gen_audio_element):
25457           Refcounting fixes for provided audio-/videosinks.
25458
25459 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25460
25461         * gst/playback/gstplaybin.c: (gen_video_element),
25462         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
25463           Don't reference all sinks, but only the video- and audiosinks.
25464           The vis. element should be disposed when we're done with it.
25465           We don't have any reason to keep it around. This fixes warnings
25466           when reusing playbin for playing multiple audio files with
25467           vis. enabled. Also release audio device on pause - idea stolen
25468           from Rhythmbox.
25469
25470 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25471
25472         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
25473         (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
25474         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
25475         * ext/alsa/gstalsaplugin.c: (plugin_init):
25476         * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
25477         (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
25478         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
25479         (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
25480         (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
25481         (gst_faad_change_state), (plugin_init):
25482         * ext/faad/gstfaad.h:
25483         * ext/vorbis/vorbis.c: (plugin_init):
25484         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
25485         * gst-libs/gst/audio/Makefile.am:
25486         * gst-libs/gst/audio/audio.c: (plugin_init):
25487         * gst-libs/gst/audio/multichannel.c:
25488         (gst_audio_check_channel_positions),
25489         (gst_audio_get_channel_positions),
25490         (gst_audio_set_channel_positions),
25491         (gst_audio_set_structure_channel_positions_list),
25492         (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
25493         (gst_audio_fixate_channel_positions):
25494         * gst-libs/gst/audio/multichannel.h:
25495         * gst-libs/gst/audio/testchannels.c: (main):
25496         * gst/audioconvert/gstaudioconvert.c:
25497         (gst_audio_convert_class_init), (gst_audio_convert_init),
25498         (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
25499         (gst_audio_convert_parse_caps), (gst_audio_convert_link),
25500         (gst_audio_convert_fixate), (gst_audio_convert_channels):
25501         * gst/audioconvert/plugin.c: (plugin_init):
25502           Surround sound support.
25503
25504 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25505
25506         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
25507           Fix position for discont if we're close as well. Nitpicking, but
25508           saves a few milliseconds of extra waiting or skipping.
25509
25510 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25511
25512         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
25513           We sometimes need parsers for playback, so add those too.
25514
25515 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25516
25517         * configure.ac:
25518         * gst/apetag/Makefile.am:
25519         * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
25520         (gst_ape_demux_base_init), (gst_ape_demux_class_init),
25521         (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
25522         (gst_ape_demux_get_src_query_types),
25523         (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
25524         (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
25525         (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
25526         (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
25527         (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
25528         (gst_ape_demux_stream_data), (gst_ape_demux_loop),
25529         (gst_ape_demux_change_state):
25530         * gst/apetag/apedemux.h:
25531         * gst/apetag/apetag.c: (plugin_init):
25532         * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
25533         (plugin_init):
25534           APE v1/2 tag reader plus typefind function.
25535
25536 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25537
25538         * configure.ac:
25539         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
25540         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
25541           Remove hacks for older core. Require newer core version
25542           accordingly.
25543
25544 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25545
25546         * gst/cdxaparse/Makefile.am:
25547         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
25548         (gst_cdxaparse_class_init), (gst_cdxaparse_init),
25549         (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
25550         * gst/cdxaparse/gstcdxaparse.h:
25551         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
25552         (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
25553         (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
25554         (gst_cdxastrip_get_src_query_types),
25555         (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
25556         (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
25557         (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
25558         (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
25559         * gst/cdxaparse/gstcdxastrip.h:
25560           SVCD/VCD header stripping separated from CDXA image parsing.
25561         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
25562         (plugin_init):
25563           Add VCD/SVCD header typefinding for VCD/SVCD.
25564         * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
25565         (gst_vcdsrc_class_init), (gst_vcdsrc_init),
25566         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
25567         (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
25568         (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
25569         (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
25570         (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
25571         (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
25572         (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
25573         (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
25574         (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
25575         * sys/vcd/vcdsrc.h:
25576           Fix up, add seeking, querying, URI interface. Works in totem now.
25577
25578 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
25579
25580         * configure.ac:
25581           back to CVS
25582
25583 === release 0.8.6 ===
25584
25585 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
25586
25587         * NEWS:
25588         * RELEASE:
25589         * configure.ac:
25590         * po/af.po:
25591         * po/az.po:
25592         * po/cs.po:
25593         * po/en_GB.po:
25594         * po/hu.po:
25595         * po/it.po:
25596         * po/nb.po:
25597         * po/nl.po:
25598         * po/or.po:
25599         * po/sq.po:
25600         * po/sr.po:
25601         * po/sv.po:
25602         * po/uk.po:
25603           releasing 0.8.6, "IOU Love"
25604
25605 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
25606
25607         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
25608
25609         * gst/playback/gstplaybasebin.c:
25610           Fix unplayable files error handling.  Fixes #158365
25611
25612 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
25613
25614         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
25615
25616         * gst/typefind/gsttypefindfunctions.c:
25617           Fix broken mp3 typefinding.  Fixes #158375
25618
25619 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
25620
25621         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
25622
25623         * ext/ogg/gstoggdemux.c:
25624           Fix sync on broken files.  Fixes #158976
25625
25626 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
25627
25628         patch by: Edward Hervey <bilboed@bilboed.com>
25629
25630         * ext/libpng/gstpngenc.c:
25631           Copy over buffer properties.  Fixes #158832
25632
25633 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
25634
25635         patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
25636
25637         * ext/dvdread/dvdreadsrc.c:
25638           Fixes invalid reads (#158462)
25639
25640 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
25641
25642         * sys/v4l/gstv4lsrc.c:
25643         * sys/v4l/gstv4lsrc.h:
25644         * sys/v4l/v4lsrc_calls.c:
25645           Probe less and cache it.  Fixes #159187.
25646
25647 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
25648
25649         * gst/videorate/gstvideorate.c:
25650           Handle all video formats. Fixes #159186.
25651
25652 2004-11-16  Jan Schmidt  <thaytan@mad.scientist.com>
25653         * gst/synaesthesia/gstsynaesthesia.c:
25654         (gst_synaesthesia_class_init), (gst_synaesthesia_init),
25655         (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
25656         (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
25657         (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
25658         (gst_synaesthesia_change_state), (plugin_init):
25659         Fix up synaesthesia to work under different samplerates/ buffer sizes.
25660         Force 320x200 output, as that's the only thing the underlying
25661         synaesthesia implementation supports. Still needs to be made
25662         re-entrant.
25663
25664 2004-11-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25665
25666         * configure.ac:
25667           Fix mpeg2enc configure check (similar to mplex check below).
25668
25669 2004-11-14  Koop Mast  <kwm@rainbow-runner.nl>
25670
25671         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25672
25673         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
25674           Fix for gcc-2.95 (fixes #158221).
25675
25676 2004-11-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25677
25678         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
25679           Re-add clock distribution hack (until new core is released).
25680           Fixes #158125.
25681
25682 2004-11-13  Arwed v. Merkatz  <v.merkatz@gmx.net>
25683         * configure.ac:
25684           fix mplex configure check segfaulting on some systems (bug #140994)
25685
25686 2004-11-13  Benjamin Otte  <otte@gnome.org>
25687
25688         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
25689           add debugging
25690         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25691           do a wait when we enter the loop func with no data available to
25692           write instead of getting into an 100% CPU loop by just returning and
25693           being called again by the scheduler
25694
25695 2004-11-13  Jan Schmidt  <thaytan@mad.scientist.com>
25696
25697         * configure.ac:
25698         * ext/libvisual/visual.c: (gst_visual_get_type),
25699         (libvisual_log_handler), (gst_visual_getcaps),
25700         (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
25701         (plugin_init):
25702           Update libvisual to 0.1.7. Link in the debug handling to gstreamer
25703         * ext/smoothwave/Makefile.am:
25704         * ext/smoothwave/demo-osssrc.c: (main):
25705         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
25706         (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
25707         (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
25708         (plugin_init):
25709         * ext/smoothwave/gstsmoothwave.h:
25710           Make gstsmoothwave a working element in the 20th century.
25711
25712         * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
25713           Fix incorrect link function
25714
25715 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25716
25717         * gst/volume/gstvolume.c:
25718           Allow buffer-frames=0.
25719
25720 2004-11-12 Iain <iaingnome@gmail.com>
25721
25722         * configure.ac: Check for polypaudio
25723
25724         * ext/Makefile.am: Build the polyp dir
25725
25726         * ext/polyp: The polypsink sources.
25727
25728 2004-10-30 Iain <iaingnome@gmail.com>
25729
25730         * gst/interleave/interleave.c (interleave_unlink): Change the src pads
25731         caps to reflect the new number of channels.
25732
25733 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25734
25735         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25736           Fix for negotiation order problem. This would show when the
25737           ALSA loopfuction was called before any other function. ALSA
25738           wouldn't do anything because we're not negotiated yet, leading
25739           to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
25740
25741 2004-11-11  Tim-Philipp Müller  <t.i.m@zen.co.uk>
25742
25743         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25744
25745         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
25746           No warnings (#157986).
25747
25748 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25749
25750         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
25751           Prefer apev1/2 and id3v1 (at end of file) over musepack.
25752
25753 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25754
25755         * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
25756           Signal no-more-pads (so it works in playbin).
25757
25758 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25759
25760         * ext/musepack/gstmusepackreader.cpp:
25761           Workaround for older core.
25762
25763 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25764
25765         * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
25766           Actually test for odd width/height rather than testing whether
25767           a temporary variable that was 0 before we subtracted 1 is now
25768           not equal to zero (which it always is).
25769
25770 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
25771
25772         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
25773         Fix compilation if HAVE_XVIDEO is not defined
25774
25775 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
25776
25777         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
25778         Fix compilation if HAVE_XVIDEO is not defined
25779
25780 2004-11-11  Jan Schmidt  <thaytan@mad.scientist.com>
25781
25782         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
25783         (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
25784         (gst_goom_change_state), (plugin_init):
25785         Use the bytestream adapter so goom doesn't depend on the input
25786         buffer size.
25787         Add a debug category
25788
25789 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25790
25791         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
25792           Only set hardware parameters *after* negotiation. Before
25793           negotiation, it will set ANY and that seems to cause crashes
25794           (see e.g. #151288, #153227).
25795
25796 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25797
25798         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
25799           This seems to be antique leftover. It needs to pass error
25800           checking.
25801         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
25802         (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
25803         (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
25804         (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
25805           Fix GstXOverlay implementation (#151059).
25806
25807 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25808
25809         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
25810           Don't assert (#157853).
25811
25812 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25813
25814         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
25815           Fix bytes/samples confustion.
25816         (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
25817           Fix for underrun (#144389).
25818
25819 2004-11-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25820
25821         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
25822           Disable halfway-seek for pending release (since it needs a new
25823           core release).
25824
25825 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
25826
25827         * sys/v4l/gstv4lsrc.c:
25828         * sys/v4l/gstv4lsrc.h:
25829         * sys/v4l/v4lsrc_calls.c:
25830           add autoprobe-fps property so we can separate autoprobing parts
25831
25832 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
25833
25834         * sys/v4l/gstv4lsrc.c:
25835         * sys/v4l/v4lsrc_calls.c:
25836         initialise fourcc to catch unset fourcc's, and debug
25837
25838 2004-11-09  Wim Taymans  <wim@fluendo.com>
25839
25840         * gst/playback/README:
25841         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
25842         * gst/playback/gstplaybin.c: (gst_play_bin_init),
25843         (gst_play_bin_dispose), (gst_play_bin_set_property),
25844         (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
25845         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
25846         (gst_play_bin_get_formats), (gst_play_bin_convert),
25847         (gst_play_bin_get_query_types), (gst_play_bin_query):
25848         Cleanups and some more documentation.
25849
25850 2004-11-09  Jan Schmidt  <thaytan@mad.scientist.com>
25851
25852         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
25853         (gst_cacasink_init), (gst_cacasink_chain):
25854         * ext/libcaca/gstcacasink.h:
25855         Cacasink inherits from VideoSink, so let that store the clock.
25856
25857 2004-11-09  Wim Taymans  <wim@fluendo.com>
25858
25859         * gst/playback/README:
25860         * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
25861         (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
25862         (probe_triggered), (preroll_unlinked), (new_decoded_pad),
25863         (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
25864         * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
25865         (setup_sinks):
25866         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
25867         (gst_stream_info_is_mute), (gst_stream_info_set_property):
25868         * gst/playback/gststreaminfo.h:
25869         Updated README.
25870         Only switch groups if all streams have muted (EOSed).
25871         Send Tags in sync with the stream playback instead of in
25872         the playback/preroll phase.
25873         Some cleanups, free the fakesrc elements.
25874
25875 2004-11-09  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25876
25877         * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
25878           buffer-frames property was missing
25879         * ext/arts/gst_arts.c:
25880           rate missing from sinkcaps
25881         * ext/audiofile/gstafparse.c:
25882         * ext/audiofile/gstafsink.c:
25883         * ext/audiofile/gstafsrc.c:
25884         * ext/swfdec/gstswfdec.c:
25885           int audio doesn't know buffer-frames
25886         * ext/cdparanoia/gstcdparanoia.c:
25887           int audio doesn't know chunksize either
25888         * ext/nas/nassink.c:
25889           it's endianness, not endianess
25890         * gst-libs/gst/audio/audio.h:
25891           make float standard pad template caps really describe float
25892         * gst/law/mulaw.c: (linear_factory):
25893           signed only, please
25894         * gst/mpegstream/gstdvddemux.c:
25895           widths of 20 are not valid
25896
25897 2004-11-08  Thomas Vander Stichele  <thomas at apestaart dot org>
25898
25899         Submitted by: Luca Ferretti <elle.uca@infinito.it>
25900
25901         * po/LINGUAS:
25902         * po/it.po:
25903           Add Italian
25904
25905 2004-11-08  Wim Taymans  <wim@fluendo.com>
25906
25907         * gst/playback/README:
25908         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
25909         * gst/playback/gstplaybasebin.c: (probe_triggered),
25910         (gst_play_base_bin_change_state):
25911         Updated README, added more comments for fixmes etc..
25912
25913 2004-11-08  Wim Taymans  <wim@fluendo.com>
25914
25915         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
25916         We can remove this hack now.
25917
25918 2004-11-08  Wim Taymans  <wim@fluendo.com>
25919
25920         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
25921         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
25922         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
25923         Only mix AYUV for maximum quality.
25924
25925 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25926
25927         * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
25928         (gst_ogg_demux_push), (gst_ogg_pad_push):
25929           Let's act as if we're synchronized now! :).
25930         * ext/theora/theoradec.c: (theora_dec_chain):
25931           Add some debug.
25932
25933 2004-11-08  Wim Taymans  <wim@fluendo.com>
25934
25935         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
25936         (gst_alpha_set_property), (gst_alpha_sink_link),
25937         (gst_alpha_set_ayuv), (gst_alpha_set_i420),
25938         (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
25939         (gst_alpha_init_params), (gst_alpha_chain):
25940         Implement alpha functions for AYUV too, this increases
25941         accuracy quite a bit.
25942
25943 2004-11-08  Wim Taymans  <wim@fluendo.com>
25944
25945         * gst/ffmpegcolorspace/avcodec.h:
25946         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
25947         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
25948         (gst_ffmpegcsp_avpicture_fill):
25949         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
25950         (gst_ffmpegcsp_caps_remove_format_info):
25951         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
25952         (shrink12), (img_get_alpha_info), (deinterlace_line),
25953         (deinterlace_line_inplace):
25954         * gst/ffmpegcolorspace/imgconvert_template.h:
25955         Added AYUV colorspace and handle RGBA a bit more respectful.
25956
25957 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25958
25959         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
25960           Actually always send a discont (cornercase when resending the
25961           same serial-tagged chain twice).
25962
25963 2004-11-08  Julien MOUTTE  <julien@moutte.net>
25964
25965         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
25966         (gst_ximagesink_finalize):
25967         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
25968         (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
25969
25970 2004-11-08  Wim Taymans  <wim@fluendo.com>
25971
25972         * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
25973         Don't segfault on NULL data.
25974
25975 2004-11-08  Wim Taymans  <wim@fluendo.com>
25976
25977         * gst/playback/gstdecodebin.c: (unlinked):
25978         * gst/playback/gstplay-marshal.list:
25979         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
25980         (gst_play_base_bin_init), (group_create), (get_active_group),
25981         (get_building_group), (group_destroy), (group_commit),
25982         (queue_overrun), (remove_groups), (add_stream), (unknown_type),
25983         (add_element_stream), (no_more_pads), (probe_triggered),
25984         (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
25985         (state_change), (setup_source), (gst_play_base_bin_get_property),
25986         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
25987         (gst_play_base_bin_link_stream),
25988         (gst_play_base_bin_get_streaminfo):
25989         * gst/playback/gstplaybasebin.h:
25990         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
25991         (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
25992         Add support for chained ogg files. Prepare for playlist
25993         support. This patch introduces the concept of pad groups, which
25994         together compose one playable media file.
25995
25996 2004-11-07  David Schleef  <ds@schleef.org>
25997
25998         * testsuite/gst-lint: Check for pad templates that aren't statically
25999         scoped.
26000
26001 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26002
26003         * configure.ac:
26004         * ext/Makefile.am:
26005         * ext/musepack/Makefile.am:
26006         * ext/musepack/gstmusepackdec.cpp:
26007         * ext/musepack/gstmusepackdec.h:
26008         * ext/musepack/gstmusepackreader.cpp:
26009         * ext/musepack/gstmusepackreader.h:
26010           Add musepack decoder.
26011         * ext/faad/gstfaad.c: (gst_faad_base_init):
26012           Make pad templates static.
26013         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
26014         (plugin_init):
26015           Add musepack typefinder, make mp3 typefinding work halfway stream,
26016           which doesn't actually work yet because id3demux doesn't implement
26017           _get_length().
26018
26019 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26020
26021         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
26022         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
26023           Fix interrupt event handling (#144436).
26024
26025 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26026
26027         * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
26028           Hide unused glory.
26029
26030 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
26031
26032         reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26033
26034         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
26035           Fix weird caps (#157548).
26036
26037 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
26038
26039         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26040
26041         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
26042           Add missing NULL terminator (#157543).
26043
26044 2004-11-05  Thomas Vander Stichele  <thomas at apestaart dot org>
26045
26046         * gst/tcp/gsttcp.h:
26047         * gst/tcp/gsttcpclientsink.c:
26048         * gst/tcp/gsttcpclientsrc.c:
26049         * gst/tcp/gsttcpserversink.c:
26050         * gst/tcp/gsttcpserversrc.c:
26051           ports can go up to 65535.  Move common defines to gsttcp.h
26052
26053 2004-11-05  Wim Taymans  <wim@fluendo.com>
26054
26055         * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
26056         (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
26057         Added two more colorspaces.
26058
26059 2004-11-05  Wim Taymans  <wim@fluendo.com>
26060
26061         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
26062         (gst_ffmpegcsp_avpicture_fill):
26063         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
26064         (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
26065         (img_convert), (deinterlace_line), (deinterlace_line_inplace):
26066         More stride fixes.
26067
26068 2004-11-05  Wim Taymans  <wim@fluendo.com>
26069
26070         * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
26071         (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
26072         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
26073         (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
26074         (gst_videomixer_loop):
26075         More stride fixes.
26076
26077 2004-11-05  Benjamin Otte  <otte@gnome.org>
26078
26079         * ext/mad/gstmad.c: (gst_mad_chain):
26080           don't overflow data buffer. Flush not needed sync data when syncing
26081           failed.
26082
26083 2004-11-04  Wim Taymans  <wim@fluendo.com>
26084
26085         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
26086         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
26087         (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
26088         (gst_alpha_init_params), (gst_alpha_chain),
26089         (gst_alpha_change_state):
26090         Updated the chroma keying algorithm with something more
26091         sophisticated.
26092
26093 2004-11-03  Wim Taymans  <wim@fluendo.com>
26094
26095         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
26096         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
26097         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
26098         Fix stride issues. Does not completely work for odd
26099         heights.
26100
26101 2004-11-03  Wim Taymans  <wim@fluendo.com>
26102
26103         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
26104         (gst_alpha_chroma_key), (gst_alpha_chain):
26105         Fix stride issues. Does not completely work for odd
26106         heights.
26107
26108 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
26109
26110         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
26111         * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
26112         leak fixes
26113
26114 2004-11-03  Wim Taymans  <wim@fluendo.com>
26115
26116         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
26117         (gst_ffmpegcsp_avpicture_fill):
26118         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
26119         (avpicture_alloc):
26120         * gst/ffmpegcolorspace/imgconvert_template.h:
26121         Use correct _fill function to get correct strides.
26122
26123 2004-11-02  David Schleef  <ds@schleef.org>
26124
26125         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
26126         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
26127         (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
26128         Change all g_print()s to debugging.  Add a bunch of consistency
26129         checks.
26130
26131 2004-11-02  Wim Taymans  <wim@fluendo.com>
26132
26133         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
26134         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
26135         (unlinked), (no_more_pads), (close_link):
26136         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
26137         (unknown_type), (add_element_stream), (new_decoded_pad),
26138         (removed_decoded_pad), (setup_source):
26139         * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
26140         (gst_stream_info_class_init), (gst_stream_info_init),
26141         (gst_stream_info_new), (gst_stream_info_dispose),
26142         (stream_info_mute_pad), (gst_stream_info_set_property),
26143         (gst_stream_info_get_property):
26144         * gst/playback/gststreaminfo.h:
26145         Fix playback of multiple files.
26146         a slightly different approach to handling dynamic pad removals.
26147         This one only looks at pads that we have linked.
26148
26149 2004-11-01  Christophe Fergeau  <teuf@gnome.org>
26150
26151         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
26152         free" warning from libc.
26153
26154 2004-11-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26155
26156         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
26157         (get_unconnected_element), (remove_starting_from), (pad_removed),
26158         (close_link):
26159           Implement support for dynamic pad changing. We listen to "live"
26160           pad removals (i.e. while playing) and re-setup autoplugging
26161           after that. Playbasebin/playbin need some more work for this
26162           to finally work, but decodebin supports (and replugs) chained
26163           ogg now.
26164
26165 2004-11-02  Jan Schmidt  <thaytan@mad.scientist.com>
26166
26167         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
26168         (gst_alsa_finalize):
26169         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
26170         (gst_cdaudio_finalize):
26171         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
26172         (cdparanoia_finalize):
26173         * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
26174         * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
26175         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
26176         (dvdreadsrc_finalize):
26177         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
26178         (gst_flacdec_finalize):
26179         * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
26180         (gst_flacenc_finalize):
26181         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
26182         (gst_gnomevfssink_finalize):
26183         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
26184         (gst_gnomevfssrc_finalize):
26185         * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
26186         (gst_fameenc_finalize):
26187         * ext/nas/nassink.c: (gst_nassink_class_init),
26188         (gst_nassink_finalize):
26189         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
26190         (gst_sdlvideosink_class_init):
26191         * ext/sndfile/gstsf.c: (gst_sf_dispose):
26192         * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
26193         * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
26194         * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
26195         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
26196         (gst_x_window_listener_dispose):
26197         * gst/audioscale/gstaudioscale.c:
26198         * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
26199         (play_on_demand_finalize):
26200         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
26201         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
26202         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
26203         (cdplayer_finalize):
26204         * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
26205         (gst_glimagesink_class_init):
26206         * sys/oss/gstosselement.c: (gst_osselement_class_init),
26207         (gst_osselement_finalize):
26208         * sys/oss/gstosssink.c: (gst_osssink_dispose):
26209         * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
26210         * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
26211           Fixes a bunch of problems with finalize and dispose functions,
26212           either assumptions that dispose is only called once, or not calling
26213           the parent class dispose/finalize function
26214
26215 2004-11-01  Stefan Kost  <ensonic@users.sf.net>
26216
26217         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
26218           added two api precondition guards
26219           use g_strdup with getenv to fix crash when using ENVVAR
26220
26221 2004-11-01  Jan Schmidt  <thaytan@mad.scientist.com>
26222         * ext/esd/esdsink.c: (gst_esdsink_class_init),
26223         (gst_esdsink_finalize):
26224         Use a finalize function, not dispose, and more importantly,
26225         call the parent class finalize function too
26226
26227 2004-11-01  Johan Dahlin  <johan@gnome.org>
26228
26229         * ext/ogg/gstoggdemux.c:
26230         * gst/tags/gstvorbistag.c:
26231         Plug leaks.
26232
26233 2004-10-31  Benjamin Otte  <otte@gnome.org>
26234
26235         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
26236           lotsa memleaks today. But they're all small...
26237
26238 2004-10-31  Benjamin Otte  <otte@gnome.org>
26239
26240         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
26241           another memleak crushed
26242
26243 2004-10-31  Benjamin Otte  <otte@gnome.org>
26244
26245         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
26246           fix memleak
26247
26248 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26249
26250         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
26251           Hack to prevent crash when going to READY inside signal handler
26252           while this function is active.
26253
26254 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26255
26256         * gst/ffmpegcolorspace/Makefile.am:
26257         * gst/ffmpegcolorspace/avcodec.h:
26258         * gst/ffmpegcolorspace/common.h:
26259         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
26260         * gst/ffmpegcolorspace/dsputil.h:
26261         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
26262         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
26263         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
26264         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
26265         (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
26266         (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
26267         (gst_ffmpegcsp_avpicture_fill):
26268         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
26269         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26270         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
26271         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
26272         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
26273         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
26274         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
26275         (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
26276         * gst/ffmpegcolorspace/imgconvert.c:
26277         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
26278         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
26279         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
26280         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
26281         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
26282         (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
26283         (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
26284         (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
26285         (img_convert_init), (img_apply_table), (shrink41), (shrink21),
26286         (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
26287         (grow21), (grow22), (grow41), (grow44), (conv411),
26288         (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
26289         (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
26290         (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
26291         (avpicture_free), (is_yuv_planar), (img_convert),
26292         (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
26293         (deinterlace_line_inplace), (deinterlace_bottom_field),
26294         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
26295         * gst/ffmpegcolorspace/imgconvert_template.h:
26296         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
26297         * gst/ffmpegcolorspace/mmx.h:
26298         * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
26299         (av_fast_realloc), (av_mallocz_static), (av_free_static),
26300         (av_freep), (avcodec_get_context_defaults),
26301         (avcodec_alloc_context), (avcodec_init):
26302           Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
26303           handling plus update from ffmpeg CVS. Large clean-up.
26304
26305 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26306
26307         * gst/playback/Makefile.am:
26308           We need the marshallers for decodebin, too.
26309
26310 2004-10-30  David Schleef  <ds@schleef.org>
26311
26312         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
26313           quicktime typefinding work with 64-bit offsets.
26314
26315 2004-10-30  Jan Schmidt  <thaytan@mad.scientist.com>
26316
26317         * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
26318           Set EOS on the element when processing an EOS event.
26319         * ext/speex/gstspeexdec.h:
26320         * ext/speex/gstspeexenc.h:
26321           Only keep a const ptr to the mode
26322         * gst-libs/gst/riff/riff-media.c:
26323         (gst_riff_create_audio_caps_with_data),
26324         (gst_riff_create_audio_template_caps):
26325           Allow WMAV3, with up to 6 channels.
26326         * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
26327           Don't call gst_pad_set_event_function on a sink pad.
26328         * gst/mpegstream/gstdvddemux.c:
26329         (gst_dvd_demux_get_subpicture_stream),
26330         (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
26331           Copy the explicit caps that were set across to the cur_* pads,
26332           instead of trying to use a possibly non-existent negotiated caps.
26333           Reset the type of subpicture pads to UNKNOWN after calling
26334           init_stream, so that the caps get set.
26335
26336 2004-10-29  Martin Pitt  <martin.pitt@canonical.com>
26337
26338         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26339
26340         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
26341           Don't touch buffer if it is of size 0 (fixes #151064).
26342
26343 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26344
26345         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
26346           Synchronized discont handling.
26347
26348 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26349
26350         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
26351         (gst_ogg_demux_push):
26352           Make seeking sort-of exact again (fixes #156387).
26353
26354 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26355
26356         * gst/playback/gstplaybasebin.c: (unknown_type),
26357         (add_element_stream), (new_decoded_pad),
26358         (gst_play_base_bin_change_state):
26359         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
26360         (gst_stream_info_init), (gst_stream_info_new),
26361         (gst_stream_info_dispose), (gst_stream_info_get_property):
26362         * gst/playback/gststreaminfo.h:
26363           Make caps explicitely available. Makes testing for unsupported
26364           types possible. Improves error reporting.
26365
26366 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26367
26368         * gst/audioconvert/gstaudioconvert.c:
26369         (gst_audio_convert_buffer_to_default_format):
26370           Really don't touch read-only buffers (#156563).
26371
26372 2004-10-29  Sebastien Cote  <sc5@hermes.usherb.ca>
26373
26374         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26375
26376         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
26377           Fix memleak (#155223).
26378
26379 2004-10-29  Wim Taymans  <wim@fluendo.com>
26380
26381         * gst/tcp/.cvsignore:
26382         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
26383         (gst_multifdsink_class_init), (gst_multifdsink_init),
26384         (gst_multifdsink_add), (gst_multifdsink_remove),
26385         (gst_multifdsink_remove_client_link), (is_sync_frame),
26386         (gst_multifdsink_new_client),
26387         (gst_multifdsink_handle_client_write),
26388         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
26389         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
26390         (gst_multifdsink_get_property):
26391         * gst/tcp/gstmultifdsink.h:
26392         Added burst on connect sync_method, deprecated sync_clients,
26393         streamlined the sync code some more.
26394
26395 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26396
26397         * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
26398         (gst_play_base_bin_change_state):
26399           Improve error reporting.
26400
26401 2004-10-28  Wim Taymans  <wim@fluendo.com>
26402
26403         * gst/tcp/Makefile.am:
26404         * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
26405         * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
26406         (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
26407         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
26408         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
26409         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
26410         (gst_fdset_wait):
26411         Added more locks around fdset structures. Fixed/reworked
26412         the poll array resizing code.
26413         Added stress test for fdset.
26414
26415 2004-10-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
26416
26417         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
26418         fix build
26419
26420 2004-10-28  Benjamin Otte  <otte@gnome.org>
26421
26422         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
26423           fix link function to always query channels and query width for
26424           floats
26425         * configure.ac:
26426           add equalizer dir
26427         * gst/equalizer/Makefile.am:
26428         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
26429         (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
26430         (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
26431         (arg_to_scale), (setup_filter),
26432         (gst_iir_equalizer_compute_frequencies),
26433         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
26434         (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
26435         (plugin_init):
26436           add an equalizer
26437
26438 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
26439
26440         Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
26441
26442         * po/LINGUAS:
26443         * po/nb.po:
26444           Added Norwegian Bokmaal translation
26445
26446 2004-10-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26447
26448         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
26449           Don't break on options (fixes #156488).
26450
26451 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
26452
26453         * configure.ac:
26454         * ext/cdaudio/Makefile.am:
26455         * sys/Makefile.am:
26456           fix build on older automake
26457
26458 2004-10-26  Wim Taymans  <wim@fluendo.com>
26459
26460         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
26461         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
26462         Allow a little margin when negotiating the framerate.
26463
26464 2004-10-26  Stefan Kost  <ensonic@users.sf.net>
26465
26466         * gst/level/gstlevel.c:
26467           synchonised naming of pads and pad-templates
26468
26469 2004-10-26  Wim Taymans  <wim@fluendo.com>
26470
26471         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
26472         (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
26473         (_find_streams_check), (gst_ogg_demux_push):
26474         Fix EOS again. Needs to be done in a better way. We should not
26475         remove the pad if there is no new chained stream.
26476
26477 2004-10-26 Iain <iaingnome@gmail.com>
26478
26479         * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
26480         * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
26481         of the caps.
26482         * gst/interleave/interleave.c (interleave_class_init): Hook up release
26483         pad.
26484         (interleave_release_pad): Remove the pad.
26485         * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
26486         * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
26487         the set device.
26488         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
26489         attrs
26490         (gst_xvimagesink_xcontext_clear): Free the xcontext.
26491         (gst_xvimagesink_finalize): Free the par.
26492
26493 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26494
26495         * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
26496         (gst_avimux_stop_file):
26497           First calculate the rate, and only then use it. Hdr.rate is a
26498           multiple and not a derivative of hdr.scale. Scale is not the
26499           same as blockalign but is solely related to rate.
26500
26501 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26502
26503         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
26504         (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
26505           Implement seeking.
26506
26507 2004-10-25  James Henstridge  <james@jamesh.id.au>
26508
26509         Reviewed by:  David Schleef  <ds@schleef.org>
26510
26511         * examples/gstplay/player.c: (got_stream_length), (main):
26512         * examples/seeking/cdplayer.c: (update_scale):
26513         * examples/seeking/seek.c: (format_value), (update_scale):
26514         * examples/seeking/spider_seek.c: (format_value), (update_scale),
26515         (stop_seek):
26516         Build fixes on AMD64.
26517
26518 2004-10-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
26519
26520         reviewed by: Ronald Bultje <rbultje at gnome dot org>
26521
26522         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
26523         Fix for some v4l cards which hang in v4lsrc
26524
26525 2004-10-25  Wim Taymans  <wim@fluendo.com>
26526
26527         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
26528         (gst_ogg_demux_push), (gst_ogg_chains_clear):
26529         Make sure to remove the pad when a new chain is
26530         encountered. Set some vars to NULL so we don't try
26531         to reference freed memory.
26532
26533 2004-10-25  Wim Taymans  <wim@fluendo.com>
26534
26535         * examples/seeking/Makefile.am:
26536         * examples/seeking/cdplayer.c: (update_scale):
26537         * examples/seeking/chained.c: (unlinked), (new_pad), (main):
26538         * examples/seeking/playbin.c: (make_playerbin_pipeline),
26539         (format_value), (update_scale), (iterate), (start_seek),
26540         (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
26541         (print_usage), (main):
26542         Added some more examples, update others.
26543
26544 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26545
26546         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
26547         * ext/speex/gstspeexdec.c: (speex_dec_chain):
26548         * ext/theora/theoradec.c: (theora_dec_chain):
26549         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
26550           Add codec-name metadata.
26551
26552 2004-10-25  Takao Fujiwara  <Takao.Fujiwara@Sun.COM>
26553
26554         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26555
26556         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
26557         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
26558         * ext/alsa/gstalsamixertrack.h:
26559         * po/POTFILES.in:
26560           ALSA mixer track label internationalization (#154054).
26561
26562 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26563
26564         * ext/theora/theoradec.c: (theora_dec_chain):
26565           Export bitrate as metadata.
26566
26567 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26568
26569         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
26570         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
26571         * ext/alsa/gstalsamixertrack.h:
26572           Fix names, fix loop.
26573
26574 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26575
26576         * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
26577         (speex_dec_convert):
26578           sinkconvert function so oggdemux can get the file length (totem).
26579
26580 2004-10-25  James Morrison  <ja2morri@csclub.uwaterloo.ca>
26581
26582         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26583
26584         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
26585           Don't push incomplete packets.
26586         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
26587           Fix MPEG-4 audio typefinding.
26588
26589 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26590
26591         * sys/v4l/Makefile.am:
26592         * sys/v4l/gstv4l.c: (plugin_init):
26593         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
26594         (gst_v4lelement_init), (gst_v4lelement_dispose),
26595         (gst_v4lelement_change_state):
26596         * sys/v4l/gstv4lelement.h:
26597         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
26598         (gst_v4l_xoverlay_close), (idle_refresh),
26599         (gst_v4l_xoverlay_set_xwindow_id):
26600         * sys/v4l/gstv4lxoverlay.h:
26601         * sys/v4l/v4l-overlay_calls.c:
26602         * sys/v4l/v4l_calls.h:
26603         * sys/v4l2/Makefile.am:
26604         * sys/v4l2/gstv4l2.c: (plugin_init):
26605         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
26606         (gst_v4l2element_init), (gst_v4l2element_dispose),
26607         (gst_v4l2element_change_state):
26608         * sys/v4l2/gstv4l2element.h:
26609         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
26610         (gst_v4l2_xoverlay_close), (idle_refresh),
26611         (gst_v4l2_xoverlay_set_xwindow_id):
26612         * sys/v4l2/gstv4l2xoverlay.h:
26613         * sys/v4l2/v4l2-overlay_calls.c:
26614         * sys/v4l2/v4l2_calls.h:
26615           Remove client-side overlay handling, use the X-server v4l plugin
26616           for that. Nicer overlay, less code. Also make the plugin
26617           compileable without X (but then without overlay, obviously).
26618           Makes xwindowlistener obsolete, should we remove that?
26619
26620 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26621
26622         * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
26623         (gst_osssrc_src_query):
26624         * sys/oss/gstosssrc.h:
26625           OK, so people want offset in DEFAULT. This time, actually fix all
26626           cases.
26627         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
26628           Add FPS properly.
26629
26630 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26631
26632         * gst/asfdemux/gstasfmux.c:
26633         * gst/avi/gstavimux.c:
26634           Framerate.
26635
26636 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26637
26638         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
26639           Fix properties (channel, norm, frequency).
26640
26641 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26642
26643         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
26644           Flag typo.
26645         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
26646           No warnings.
26647
26648 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26649
26650         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
26651           Fix hang.
26652
26653 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26654
26655         * sys/v4l2/gstv4l2element.h:
26656           Yet Another Hack (tm) for kernel header borkedness.
26657         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
26658         (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
26659         (gst_v4l2src_link), (gst_v4l2src_getcaps),
26660         (gst_v4l2src_change_state):
26661         * sys/v4l2/gstv4l2src.h:
26662         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
26663         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
26664           Fix caps, keep track of state, work.
26665
26666 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26667
26668         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
26669           Quiet.
26670
26671 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26672
26673         * sys/oss/gstosssrc.c: (gst_osssrc_get):
26674           Don't mix bytes and samples.
26675
26676 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26677
26678         * ext/ogg/gstoggmux.c:
26679           Basic pad template which accepts OGM tracks, speex, flac, vorbis
26680           and theora. Any is incorrect.
26681         * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
26682           Fix caps.
26683         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
26684         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
26685         (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
26686         (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
26687         * sys/v4l/gstv4lmjpegsrc.h:
26688         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
26689         (gst_v4lsrc_change_state):
26690         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
26691         (gst_v4lmjpegsrc_capture_stop):
26692           Fix caps. Keep track of internal state. Work.
26693
26694 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26695
26696         * ext/Makefile.am:
26697           Fix the build fixes.
26698
26699 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26700
26701         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
26702         (gst_ogg_demux_src_event), (_find_chain_seek),
26703         (gst_ogg_pad_push):
26704           Check for pad availability before using it.
26705         * ext/ogg/gstoggdemux.c: (_find_chain_process):
26706           Fix parsing of chained ogg. Needs more work on the decoder side.
26707
26708 2004-10-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26709
26710         * gst/spectrum/Makefile.am:
26711         * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
26712         (idle_func):
26713           Fix demo and reenable it. Yes, I'm currently playing with audio
26714           analysis tools
26715
26716 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26717
26718         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
26719           We love it if files that start at zero work too...
26720
26721 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26722
26723         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
26724           Handle files with missing EOS headers.
26725
26726 2004-10-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
26727
26728         * gst/tcp/gsttcpserversink.c:
26729         (gst_tcpserversink_handle_server_read),
26730         (gst_tcpserversink_init_send):
26731         Zero some variables first (need for accept not to return EINVAL)
26732
26733 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26734
26735         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
26736         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
26737         * ext/theora/theoradec.c: (theora_dec_sink_convert),
26738         (theora_dec_chain):
26739         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
26740         (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
26741           Seeking and querying finetune.
26742
26743 2004-10-20  Thomas Vander Stichele  <thomas at apestaart dot org>
26744
26745         * configure.ac:
26746         * ext/Makefile.am:
26747         * ext/raw1394/Makefile.am:
26748           fix the build
26749
26750 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26751
26752         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
26753           Wrong return.
26754         * gst/playback/Makefile.am:
26755         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
26756         * gst/playback/gstplay-marshal.list:
26757         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
26758           Fix marshallers.
26759
26760 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26761
26762         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
26763           Silence.
26764
26765 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26766
26767         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
26768         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
26769         (gst_ogg_pad_push):
26770           Yay for non-lineair granulepos in theora.
26771
26772 2004-10-18  Wim Taymans  <wim@fluendo.com>
26773
26774         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
26775         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
26776         * ext/dv/gstdvdec.h:
26777         Make sure we renegotiate aspect ratio when the camera switches.
26778
26779 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26780
26781         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
26782         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
26783           Start at zero.
26784         * ext/theora/theoradec.c: (theora_dec_chain):
26785           Skip headers. Bad idea for chained ogg, but fixes seeking.
26786
26787 2004-10-18  Wim Taymans  <wim@fluendo.com>
26788
26789         * configure.ac:
26790         I swear, this is the last time I touch this.
26791
26792 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26793
26794         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
26795         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
26796         (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
26797           Faster seeking.
26798         * ext/theora/theoradec.c: (theora_dec_sink_convert):
26799           Time-to-default conversion.
26800         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
26801           Don't error on unknown packets, just skip. We should probably
26802           read them if we want to support chained ogg.
26803
26804 2004-10-18  Wim Taymans  <wim@fluendo.com>
26805
26806         * configure.ac:
26807         Added cdaudio to wrong list.
26808
26809 2004-10-18  Wim Taymans  <wim@fluendo.com>
26810
26811         * configure.ac:
26812         Revive cdaudio.
26813
26814 2004-10-18  Wim Taymans  <wim@fluendo.com>
26815
26816         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
26817         (gst_dvdec_video_link), (gst_dvdec_push):
26818         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
26819         (gst_smokeenc_resync), (gst_smokeenc_chain):
26820         Fix mimetype on smoke encoder.
26821         Add aspect ratio to dvdec. Not sure if these
26822         values are correct though....
26823
26824 2004-10-18  Wim Taymans  <wim@fluendo.com>
26825
26826         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
26827         Fix vorbis property descriptions and ranges.
26828
26829 2004-10-18  Wim Taymans  <wim@fluendo.com>
26830
26831         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
26832         Really do nothing when no data is available.
26833         Go to the playing state when the stream is not seekable
26834         instead of failing.
26835
26836 2004-10-18  Wim Taymans  <wim@fluendo.com>
26837
26838         * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
26839         (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
26840         (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
26841         (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
26842         (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
26843         Added uri handler for cd://
26844         Port to new API.
26845
26846 2004-10-18  Wim Taymans  <wim@fluendo.com>
26847
26848         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
26849         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
26850         (try_to_link_1), (no_more_pads), (close_link), (type_found):
26851         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
26852         (remove_prerolls), (unknown_type), (add_element_stream),
26853         (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
26854         (gst_play_base_bin_remove_element),
26855         (gst_play_base_bin_link_stream):
26856         * gst/playback/gstplaybin.c: (gen_video_element),
26857         (gen_vis_element), (remove_sinks), (setup_sinks):
26858         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
26859         (gst_stream_info_get_type), (gst_stream_info_class_init),
26860         (gst_stream_info_init), (gst_stream_info_new),
26861         (gst_stream_info_dispose), (stream_info_mute_pad),
26862         (gst_stream_info_set_property), (gst_stream_info_get_property):
26863         * gst/playback/gststreaminfo.h:
26864         Add sink padtemplate to decodebin.
26865         Added some more comments.
26866         Make queue size configurable in playbasebin.
26867         Added possibility to use elements as sinks (ex cdaudio).
26868
26869 2004-10-15  Wim Taymans  <wim@fluendo.com>
26870
26871         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
26872         (gst_speexenc_chain):
26873         Fix speex timestamps so that it gets muxed properly.
26874
26875 2004-10-15  Wim Taymans  <wim@fluendo.com>
26876
26877         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
26878         (gst_dv1394src_base_init), (gst_dv1394src_class_init),
26879         (gst_dv1394src_init), (gst_dv1394src_dispose),
26880         (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
26881         (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
26882         (gst_dv1394src_event), (gst_dv1394src_get_formats),
26883         (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
26884         (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
26885         (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
26886         (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
26887         * ext/raw1394/gstdv1394src.h:
26888         Added conversion/query functions.
26889         Update buffer timestamps,
26890         Added signals.
26891         Added uri dv:// so it might play from the firewire in playbin.
26892         Fix a possible leak.
26893         Added debugging.
26894
26895 2004-10-15  Wim Taymans  <wim@fluendo.com>
26896
26897         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
26898         (gst_dv1394src_init), (gst_dv1394src_set_property),
26899         (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
26900         (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
26901         * ext/raw1394/gstdv1394src.h:
26902         Added AV/C VTR control support needed for some cameras.
26903         Added automatic port detection.
26904         Added properties for selecting the channel.
26905         The configure.ac script is not yet updated to reflect the
26906         new libavc1394 and librom1394 dependencies.
26907
26908 2004-10-15  Wim Taymans  <wim@fluendo.com>
26909
26910         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
26911         (qtdemux_parse), (gst_qtdemux_handle_esds):
26912         An esds box is not a container.
26913         Fix parsing of mp4v boxes.
26914         Do not try to renegotiate fps for each frame. Need to
26915         find a better method. This should fix mp4 playback.
26916
26917 2004-10-14  David Schleef  <ds@schleef.org>
26918
26919         * configure.ac: update for swfdec-0.3 and liboil-0.2
26920         * ext/swfdec/gstswfdec.c: update for swfdec-0.3
26921         * ext/swfdec/gstswfdec.h: same
26922         * gst/videofilter/gstvideobalance.c: update for liboil-0.2
26923         * gst/videotestsrc/videotestsrc.c: same
26924
26925 2004-10-14  Wim Taymans  <wim@fluendo.com>
26926
26927         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
26928         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
26929         (is_sync_frame), (gst_multifdsink_new_client),
26930         (gst_multifdsink_handle_client_write),
26931         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
26932         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
26933         Turn warnings into info.
26934         Don't allow a state change in the streaming thread.
26935
26936 2004-10-14  Thomas Vander Stichele  <thomas at apestaart dot org>
26937
26938         * ext/vorbis/oggvorbisenc.c:
26939         * ext/vorbis/vorbisdec.c:
26940           fix template sample rate
26941
26942 2004-10-13  Wim Taymans  <wim@fluendo.com>
26943
26944         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
26945         Decoding the header first fixes some problems in resyncing
26946         in more mp3s.
26947
26948 2004-10-12  Wim Taymans  <wim@fluendo.com>
26949
26950         * gst/playback/gstplaybin.c: (gen_video_element),
26951         (gen_vis_element), (remove_sinks), (setup_sinks):
26952         Added vis plugin support, need to configure the vis
26953         element to activate it.
26954
26955 2004-10-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26956
26957         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
26958         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
26959           Some debug.
26960         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
26961         (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
26962         (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
26963         (gst_avi_demux_stream_index), (gst_avi_demux_skip),
26964         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
26965         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
26966         * gst/avi/gstavidemux.h:
26967           Support for openDML-2.0 indx/ix## chunks. Support for broken index
26968           recovery (where, if part of the index is broken, we will still read
26969           the rest of the index and recover the broken part by stream
26970           scanning). More broken media support. EOS workarounds. General AVI
26971           braindamage headache recovery. Aspirin included.
26972
26973 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26974
26975         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
26976         (cdparanoia_event), (cdparanoia_query):
26977           Get rid of hideous lead-in.
26978
26979 2004-10-11  Wim Taymans  <wim@fluendo.com>
26980
26981         * gst/playback/gstplaybasebin.c: (setup_source):
26982         Wrong var used to get g_list_next.
26983
26984 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26985
26986         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
26987         (cdparanoia_get), (cdparanoia_open):
26988           Report discid as metadata, add duration.
26989
26990 2004-10-11  Wim Taymans  <wim@fluendo.com>
26991
26992         * gst/playback/gstplaybasebin.c: (setup_source):
26993         Cleanup the previous pipeline a little earlier for the
26994         case that a source element provides raw data.
26995
26996 2004-10-11  Benjamin Otte  <otte@gnome.org>
26997
26998         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
26999           reset v1 tag offset when there is no v1 tag. Fixes id3demux always
27000           consuming the last 128 bytes, even though it was valid mp3 data.
27001
27002 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
27003
27004         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
27005         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
27006         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
27007         Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
27008
27009 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
27010
27011         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
27012         Fix for webcams that support only specific width or height
27013
27014 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
27015
27016         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27017
27018         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
27019           Fix wrong discont event setup (fixes #154967).
27020
27021 2004-10-09  Sebastien Cote  <sc5@hermes.usherb.ca>
27022
27023         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27024
27025         * gst/auparse/gstauparse.c: (gst_auparse_chain):
27026           Error out on invalid data (fixes #154807).
27027
27028 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
27029
27030         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27031
27032         * ext/dvdread/dvdreadsrc.c: (_read):
27033           Make titles > 0 work again (fixes #154834).
27034
27035 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27036
27037         * gst-libs/gst/riff/riff-media.c:
27038         (gst_riff_create_video_template_caps):
27039           WMV3 missing in template caps.
27040
27041 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27042
27043         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
27044           OK, so the original code was too strict. It makes random AVI files
27045           hang for seconds upon opening, which is unacceptable and is far
27046           beyond the original goal of getting multiple chunks for one-chunk
27047           sounc stream files. So now do just that.
27048
27049 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27050
27051         * gst/playback/gstplaybasebin.c: (setup_source),
27052         (gst_play_base_bin_change_state):
27053           Actually clean up streaminfo if output fails. This would trigger
27054           if, for example, there was no CD in the drive. No preroll, so
27055           a streaminfo structure is created, but the subsequent state change
27056           of the thread fails.
27057         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
27058           Don't change state if parent failed.
27059
27060 2004-10-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27061
27062         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
27063         (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
27064         (gen_video_element), (remove_sinks):
27065           Add small bits of code for screenshot handling.
27066
27067 2004-10-08  Wim Taymans  <wim@fluendo.com>
27068
27069         * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
27070         (gen_video_element), (gen_audio_element), (setup_sinks):
27071         Don't assume the user provided sinks are named "sink"...
27072
27073 2004-10-08  Wim Taymans  <wim@fluendo.com>
27074
27075         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
27076         (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
27077         (gst_play_base_bin_link_stream):
27078         Do not try to autoplug sources that generate raw streams like
27079         cdparanoia.
27080         disconnect the preroll overrun signal when we don't need it anymore.
27081
27082 2004-10-08  Milosz Derezynski  <internalerror.rez@fhtw-berlin.de>
27083
27084         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
27085         Added reworked patch from #154903 from milosz derezynski (deadchip).
27086
27087 2004-10-08  Wim Taymans  <wim@fluendo.com>
27088
27089         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
27090         (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
27091         (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
27092         (cdparanoia_convert), (cdparanoia_uri_get_type),
27093         (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
27094         (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
27095         * ext/cdparanoia/gstcdparanoia.h:
27096         This adds the cdda://<tracknum> uri.
27097
27098 2004-10-08  Wim Taymans  <wim@fluendo.com>
27099
27100         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
27101         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
27102         (try_to_link_1), (no_more_pads), (close_link), (type_found):
27103         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
27104         (unknown_type), (gst_play_base_bin_remove_element),
27105         (gst_play_base_bin_link_stream):
27106         * gst/playback/gstplaybasebin.h:
27107         * gst/playback/gstplaybin.c: (gst_play_bin_init),
27108         (gst_play_bin_set_property), (gen_video_element),
27109         (gen_audio_element), (setup_sinks):
27110         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
27111         (gst_stream_info_get_type), (gst_stream_info_class_init),
27112         (gst_stream_info_init), (gst_stream_info_new),
27113         (gst_stream_info_dispose), (stream_info_mute_pad),
27114         (gst_stream_info_set_property), (gst_stream_info_get_property):
27115         * gst/playback/gststreaminfo.h:
27116         Reuse the audio and video bins.
27117         Some internal cleanups in the stream selection code.
27118
27119 2004-10-08  Julien MOUTTE  <julien@moutte.net>
27120
27121         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
27122         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
27123         * sys/ximage/ximagesink.h:
27124         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
27125         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
27126         * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
27127         not coming from those elements. Moreover these elements should not keep
27128         the xid they have been given when in NULL state.
27129
27130 2004-10-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27131
27132         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
27133         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
27134         * sys/ximage/ximagesink.h:
27135         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
27136         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
27137         * sys/xvimage/xvimagesink.h:
27138           Actually only create a new toplevel window if we're not gonna
27139           embed it right after.
27140
27141 2004-10-07  Wim Taymans  <wim@fluendo.com>
27142
27143         * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
27144         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
27145         * gst/playback/gstplaybin.c: (setup_sinks):
27146         Implement muting/unmuting of streams, mute streams that are not
27147         used.
27148
27149 2004-10-07  Wim Taymans  <wim@fluendo.com>
27150
27151         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
27152         (plugin_init):
27153         Added lame audio/x-ac3 typefind function.
27154
27155 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
27156
27157         * configure.ac:
27158           bump nano to cvs
27159
27160 === release 0.8.5 ===
27161
27162 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
27163
27164         * NEWS:
27165         * RELEASE:
27166         * configure.ac:
27167           releasing 0.8.5, "Take You On"
27168
27169 2004-10-06  Wim Taymans  <wim@fluendo.com>
27170
27171         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
27172         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
27173         (no_more_pads), (close_link), (type_found):
27174         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
27175         * gst/playback/gstplaybin.c: (gen_video_element):
27176         Do not signal the no_more_pads after the first pad when
27177         we are plugging a non dynamic element with multiple
27178         output pads (like swfdec, dvdec, ...).
27179
27180 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
27181
27182         * configure.ac:
27183           bump for prerelease
27184
27185 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
27186
27187         * gst/wavparse/gstwavparse.c:
27188           add ATRAC3 to STATIC CAPS to fix a warning
27189
27190         * gst/matroska/ebml-read.c:
27191         * gst-libs/gst/riff/riff-read.c:
27192           fix typos
27193
27194 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
27195
27196         * gst-libs/gst/riff/riff-media.c:
27197           generate caps for ATRAC3 audio streams
27198
27199         * gst/realmedia/rmdemux.c:
27200           generate caps for ATRAC3 audio streams
27201
27202 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
27203
27204         * gst/wavparse/Makefile.am
27205         * gst/wavparse/riff.h
27206         * gst/wavparse/wavparse.vcproj
27207           riff.h removal (unused and duplication with riff-ids.h)
27208
27209 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
27210
27211         * gst/wavparse/gstwavparse.h
27212           remove duplicated defines for audio codec codes
27213
27214         * gst-libs/gst/riff/riff-ids.h
27215         * gst/wavenc/riff.h:
27216           add "4CC" code for ATRAC3 audio streams
27217           add "4CC" code for ITU_G721_ADPCM (unused for now)
27218
27219 2004-10-06  Wim Taymans  <wim@fluendo.com>
27220
27221         * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
27222         Actually _do_ negotiation. Pass gdouble as arg instead
27223         of guint64 for the framerate.
27224
27225 2004-10-06  Wim Taymans  <wim@fluendo.com>
27226
27227         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
27228         (find_compatibles), (close_pad_link), (try_to_link_1),
27229         (no_more_pads), (close_link), (type_found):
27230         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
27231         * gst/playback/gstplaybin.c: (gen_video_element),
27232         (gen_audio_element):
27233         Set state on newly added element to READY so that negotiation
27234         can happen ASAP.
27235         Addes some more debug info.
27236         Do not try to plug pads with multiple caps structures or ANY
27237         because it is too dangerous since we do not do dynamic
27238         replugging.
27239
27240 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
27241
27242         written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
27243
27244         * po/LINGUAS:
27245         * po/or.po:
27246           add Oriya translation
27247
27248 2004-10-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27249
27250         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
27251           Prevent overwrite of size member. Makes audio sound crappy.
27252
27253 2004-10-05  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
27254
27255         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
27256         Add rmvb to the list of known RealMedia extensions
27257
27258 2004-10-05  Wim Taymans  <wim@fluendo.com>
27259
27260         * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
27261         (mngdec_openstream), (mngdec_closestream),
27262         (mngdec_handle_sink_event), (mngdec_readdata),
27263         (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
27264         (mngdec_getcanvasline), (mngdec_refresh),
27265         (gst_mngdec_change_state):
27266         Set the framerate correctly.
27267
27268 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27269
27270         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
27271           There was something wrong with the index massaging.
27272
27273 2004-10-04  Wim Taymans  <wim@fluendo.com>
27274
27275         * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
27276         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
27277         (gst_smokedec_chain):
27278         * ext/jpeg/gstsmokedec.h:
27279         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
27280         (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
27281         * ext/jpeg/gstsmokeenc.h:
27282         * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
27283         (smokecodec_decode_new), (smokecodec_info_free),
27284         (smokecodec_set_quality), (smokecodec_get_quality),
27285         (smokecodec_set_threshold), (smokecodec_get_threshold),
27286         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
27287         (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
27288         (smokecodec_encode), (smokecodec_parse_id),
27289         (smokecodec_parse_header), (smokecodec_decode):
27290         * ext/jpeg/smokecodec.h:
27291         * ext/jpeg/smokeformat.h:
27292         Updated smoke, new bitstream, allows embedding in ogg.
27293
27294 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27295
27296         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
27297           Fix seeking in some files. All this code is no longer needed (and
27298           actually breaks stuff) because we now synchronize the full index
27299           right when reading the header.
27300
27301 2004-10-04  Wim Taymans  <wim@fluendo.com>
27302
27303         * configure.ac:
27304         configure update for libmng.
27305
27306 2004-10-04  Wim Taymans  <wim@fluendo.com>
27307
27308         * ext/libmng/Makefile.am:
27309         * ext/libmng/gstmng.c: (plugin_init):
27310         * ext/libmng/gstmng.h:
27311         * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
27312         (gst_mngdec_base_init), (gst_mngdec_class_init),
27313         (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
27314         (gst_mngdec_loop), (gst_mngdec_get_property),
27315         (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
27316         (mngdec_closestream), (mngdec_handle_sink_event),
27317         (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
27318         (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
27319         (gst_mngdec_change_state):
27320         * ext/libmng/gstmngdec.h:
27321         * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
27322         (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
27323         (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
27324         (gst_mngenc_chain), (gst_mngenc_get_property),
27325         (gst_mngenc_set_property):
27326         * ext/libmng/gstmngenc.h:
27327         Added basic MNG decoder. Needs more work. The encoder does
27328         not work yet.
27329
27330 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27331
27332         * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
27333         (gst_rmdemux_loop), (gst_rmdemux_add_stream),
27334         (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
27335           Don't hang on length=0 chunks. Some negotiation fixes. Signal
27336           no-more-pads.
27337
27338 2004-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
27339
27340         * configure.ac:
27341           you need at least 1.0.4 of speex
27342
27343 2004-10-04 Iain <iaingnome@gmail.com>
27344
27345         * ext/speex/gstspeexdec.h: Revert the includes changes.
27346
27347         * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
27348
27349 2004-09-30 Iain <iaingnome@gmail.com>
27350
27351         * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
27352         found during init or set as a property instead of hardcoding /dev/audio
27353
27354 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27355
27356         * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
27357         (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
27358         (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
27359         (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
27360         (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
27361         (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
27362         (gst_rmdemux_dump_data):
27363           Use debug category, fix EOS handling. filesrc ! rmdemux now
27364           works.
27365
27366 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27367
27368         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
27369         (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
27370         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
27371           Improve allocation, cutting and sorting of the index. How takes a
27372           few seconds instead of minutes.
27373
27374 2004-10-03  Christophe Fergeau  <teuf@gnome.org>
27375
27376         * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
27377           fixed compilation
27378
27379 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27380
27381         * gst-libs/gst/riff/riff-media.c:
27382         (gst_riff_create_video_caps_with_data),
27383         (gst_riff_create_video_template_caps):
27384           Add wing commander format mimetype/fourccs.
27385         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
27386           Don't crash if some value is 0.
27387
27388 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27389
27390         * gst-libs/gst/riff/riff-media.c:
27391         (gst_riff_create_video_caps_with_data),
27392         (gst_riff_create_video_template_caps):
27393           Add DIB fourcc (raw, palettized 8-bit RGB).
27394         * gst-libs/gst/riff/riff-read.c:
27395         (gst_riff_read_strf_vids_with_data):
27396           Oops, fix strf_data reading bug.
27397         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
27398           Use a non-NULL tag.
27399         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
27400           Time for hacks. Sorry Dave. At least one quicktime movie (a
27401           trailer) that I've encountered contains multiple video tracks.
27402           One of those is the actual video track, the other are one-frame
27403           tracks (images). Unfortunately, the number of frames according
27404           to the trak header is 1 for each, so that doesn't help. So
27405           instead, I look at the duration and discard tracks with a
27406           duration shorter than 20% of the length of the stream. Better
27407           than nothing.
27408
27409 2004-10-01  Christian Schaller <christian@fluendo.com>
27410
27411         * ext/ivorbis/vorbis.c:
27412           Patch from Phil Blundell (Bug 152341)
27413
27414 2004-10-01  Wim Taymans  <wim@fluendo.com>
27415
27416         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
27417         (speex_dec_get_formats), (speex_dec_convert),
27418         (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
27419         (speex_dec_chain), (gst_speexdec_get_property),
27420         (gst_speexdec_set_property):
27421         Small cleanups.
27422
27423 2004-10-01  Wim Taymans  <wim@fluendo.com>
27424
27425         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
27426         (gst_wavparse_stream_init), (gst_wavparse_fmt),
27427         (gst_wavparse_other), (gst_wavparse_loop),
27428         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
27429         (gst_wavparse_srcpad_event):
27430         * gst/wavparse/gstwavparse.h:
27431         Added some more debugging info.
27432         Fix the case where the length of the file is 0.
27433         Make sure we seek to sample borders.
27434
27435 2004-10-01  Wim Taymans  <wim@fluendo.com>
27436
27437         * gst/playback/README:
27438         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
27439         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
27440         (try_to_link_1), (no_more_pads), (close_link), (type_found):
27441         Add some debug info to decodebin, update README
27442
27443 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27444
27445         * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
27446           Don't use g_print(); use GST_DEBUG().
27447
27448 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27449
27450         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
27451         (gst_ogg_mux_queue_pads):
27452           Handle EOS properly.
27453
27454 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
27455
27456         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27457
27458         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
27459         (gst_faad_chain), (gst_faad_change_state):
27460         * ext/faad/gstfaad.h:
27461           Allow playback of raw (unframed) MPEG AAC files (#148993).
27462
27463 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
27464
27465         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27466
27467         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
27468           Throw error if we didn't recognize the stream. Fixes #152289.
27469
27470 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27471
27472         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
27473           Fix negotiation.
27474
27475 2004-10-01  Francis Labonte  <francis_labonte@hotmail.com>
27476
27477         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27478
27479         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
27480           Fix memleak.
27481
27482 2004-10-01  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
27483
27484         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27485
27486         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
27487           Solve #152805.
27488         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
27489           Solve 152806.
27490
27491 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27492
27493         * gst-libs/gst/riff/riff-media.c:
27494         (gst_riff_create_video_caps_with_data),
27495         (gst_riff_create_audio_caps_with_data):
27496           Add codec_data handling (like asfdemux used to do).
27497         * gst/asfdemux/gstasf.c: (plugin_init):
27498         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
27499         (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
27500           Use riff-media for caps creation instead of our own (mostly
27501           broken) copy of its functions.
27502
27503 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27504
27505         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
27506           Don't actually error out if we get another return value than
27507           -EINVAL. Opposite to what I first thought, drivers have random
27508           return values for this, although -EINVAL is the expected return
27509           value. Since this is not fatal, we shouldn't use
27510           GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
27511
27512 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27513
27514         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
27515         (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
27516         (dvdreadsrc_get_property), (_open), (_seek), (_read),
27517         (dvdreadsrc_get), (dvdreadsrc_open_file),
27518         (dvdreadsrc_change_state):
27519           Fix. Don't do one big huge loop around the whole DVD, that will
27520           cache all data and thus eat sizeof(dvd) (several GB) before we
27521           see something.
27522         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
27523           Actually NULL'ify event after using it.
27524         * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
27525         (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
27526         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
27527         (gst_ebml_read_seek), (gst_ebml_read_skip):
27528           Handle events.
27529         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
27530         (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
27531         (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
27532           Fix timing (this will probably break if I seek using menus, but
27533           I didn't get there yet). VOBs and normal DVDs should now work.
27534           Add a mpeg2-only pad with high rank so this get autoplugged for
27535           MPEG-2 movies.
27536         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
27537         (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
27538         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
27539         (gst_mpeg_demux_get_audio_stream),
27540         (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
27541         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
27542           Use this as second rank for MPEG-1 and MPEG-2. Still use this for
27543           MPEG-1 but use dvddemux for MPEG-2.
27544         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
27545         (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
27546         (gst_mpeg_parse_parse_packhead):
27547           Timing. Only add pad template if it exists. Add sink template from
27548           class and not from ourselves. This means we will always use the
27549           correct sink template even if it is not the one defined in this
27550           file.
27551
27552 2004-09-29  Wim Taymans  <wim@fluendo.com>
27553
27554         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
27555         (gst_mpeg_demux_parse_pes):
27556         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
27557         Fix playback of mpeg again, timestamps where screwed up by
27558         patch 1.61.
27559
27560 2004-09-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27561
27562         * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
27563           Only return true if we actually filled something in. Prevents
27564           player applications from showing a random length for flac files.
27565         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
27566         (gst_riff_read_use_event), (gst_riff_read_handle_event),
27567         (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
27568         (gst_riff_read_strf_vids_with_data),
27569         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
27570           OK, ok, so I implemented event handling. Apparently it's normal
27571           that we receive random events at random points without asking
27572           for it.
27573         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
27574         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
27575         (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
27576         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
27577         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
27578         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
27579         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
27580         * gst/avi/gstavidemux.h:
27581           Implement non-lineair chunk handling and subchunk processing.
27582           The first solves playback of AVI files where the audio and video
27583           data of individual buffers that we read are not synchronized.
27584           This should not happen according to the wonderful AVI specs, but
27585           of course it does happen in reality. It is also a prerequisite for
27586           the second. Subchunk processing allows us to cut chunks in small
27587           pieces and process each of these pieces separately. This is
27588           required because I've seen several AVI files with incredibly large
27589           audio chunks, even some files with only one audio chunk for the
27590           whole file. This allows for proper playback including seeking.
27591           This patch is supposed to fix all AVI A/V sync issues.
27592         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
27593         (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
27594           Work.
27595         * gst/modplug/gstmodplug.cc:
27596           Proper return value setting for the query() function.
27597         * gst/playback/gstplaybasebin.c: (setup_source):
27598           Being in non-playing state (after, e.g., EOS) is not necessarily
27599           a bad thing. Allow for that. This fixes playback of short files.
27600           They don't actually playback fully now, because the clock already
27601           runs. This means that small files (<500kB) with a small length
27602           (<2sec) will still not or barely play. Other files, such as mod
27603           or flx, will work correctly, however.
27604
27605 2004-09-28  Wim Taymans  <wim@fluendo.com>
27606
27607         * ext/speex/gstspeex.c: (plugin_init):
27608         * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
27609         (gst_speex_dec_class_init), (speex_dec_get_formats),
27610         (speex_get_event_masks), (speex_get_query_types),
27611         (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
27612         (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
27613         (gst_speexdec_get_property), (gst_speexdec_set_property),
27614         (speex_dec_change_state):
27615         * ext/speex/gstspeexdec.h:
27616         * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
27617         (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
27618         (gst_speexenc_base_init), (gst_speexenc_class_init),
27619         (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
27620         (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
27621         (gst_speexenc_src_query), (gst_speexenc_init),
27622         (gst_speexenc_get_tag_value), (comment_init), (comment_add),
27623         (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
27624         (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
27625         (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
27626         (gst_speexenc_chain), (gst_speexenc_get_property),
27627         (gst_speexenc_set_property), (gst_speexenc_change_state):
27628         * ext/speex/gstspeexenc.h:
27629         Rewrote speex encoder, make sure it can be embedded in ogg.
27630         Implemented speex decoder.
27631
27632 2004-09-28  Christian Schaller <christian@fluendo.com>
27633
27634         * configure.ac:
27635         Remove kioslave plugin. Markey is brewing a new working one
27636         * ext/Makefile.am: Remove kioslave plugin
27637         * ext/kio: remove
27638         * gst-plugins.spec.in: remove kio plugin from spec
27639
27640 2004-09-27  Wim Taymans  <wim@fluendo.com>
27641
27642         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
27643         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
27644         (is_sync_frame), (gst_multifdsink_client_queue_buffer),
27645         (gst_multifdsink_new_client),
27646         (gst_multifdsink_handle_client_write),
27647         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
27648         (gst_multifdsink_handle_clients):
27649         * gst/tcp/gstmultifdsink.h:
27650         Make syncing to keyframes actually work for new clients and lagging
27651         clients.
27652
27653 2004-09-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
27654
27655         * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
27656         (gst_navigationtest_handle_src_event), (draw_box_planar411),
27657         (gst_navigationtest_planar411), (gst_navigationtest_change_state):
27658         * gst/debug/gstnavigationtest.h:
27659           make navigationtest display button-press and button-release events
27660
27661 2004-09-26 Iain <iaingnome@gmail.com>
27662
27663         * gst/interleave/interleave.c (all_channels_new_media): Checks if all
27664         the channels have received a new media event.
27665         (interleave_buffered_loop): Compresses a new media event on all
27666         channels into one.
27667
27668 2004-09-26 Iain <iaingnome@gmail.com>
27669
27670         * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
27671         call the sinkpad's default event handler and not the srcpads. He also
27672         says this is confusing :)
27673         (gst_wavenc_stop_file): Company says that seek events only go upstream
27674         we should send a discontinuous downstream instead.
27675
27676 2004-09-25  Christian Schaller <christian@fluendo.com>
27677
27678         * Update SPEC file to be usable in conjunction with Fedora Core,
27679           Fedora.us and freshrpms packages
27680         * Fix typo in multifilesrc test Makefile
27681
27682 2004-09-24  Wim Taymans  <wim@fluendo.com>
27683
27684         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
27685         Only signal the no_more_pads signal when we have
27686         added the stream to our list.
27687
27688 2004-09-24  Wim Taymans  <wim@fluendo.com>
27689
27690         * gst/playback/gstplaybasebin.c: (remove_prerolls),
27691         (new_decoded_pad):
27692         * gst/playback/gstplaybasebin.h:
27693         * gst/playback/gstplaybin.c: (setup_sinks):
27694         Don't try to preroll or decode more than one audio/video
27695         track.
27696
27697 2004-09-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27698
27699         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
27700           Throw error if we failed to find a suitable output. This should
27701           throw an error if we successfully set up a pipeline (e.g. because
27702           we recognized a media file) but found no decodable streams in it
27703           (e.g. because it contains only media stream types for which we
27704           have no decoders, or because it's not a media type).
27705
27706 2004-09-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27707
27708         * ext/dirac/Makefile.am:
27709         * ext/dirac/gstdirac.cc:
27710         * ext/dirac/gstdiracdec.cc:
27711         * ext/dirac/gstdiracdec.h:
27712           Do something. Don't actually know if this works because I don't
27713           have a demuxer yet.
27714         * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
27715           Add channels=1 to caps returned from _getcaps().
27716         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
27717         (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
27718         (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
27719         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
27720         (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
27721         (gst_ogm_parse_change_state):
27722           Separate between audio/video so ogmaudioparse actually uses the
27723           audio pad templates. Both audio and video work now, including
27724           autoplugging. Also use sometimes-srcpad hack.
27725         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
27726           Handle events better. Don't hang on infinite loops.
27727         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
27728         (gst_avi_demux_init), (gst_avi_demux_reset),
27729         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
27730         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
27731         (gst_avi_demux_change_state):
27732         * gst/avi/gstavidemux.h:
27733           Improve A/V sync. Still not perfect.
27734         * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
27735         (gst_ebml_read_skip):
27736           Handle events better.
27737         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
27738         (gst_qtdemux_loop_header), (qtdemux_parse_trak),
27739         (qtdemux_audio_caps):
27740           Add IMA4. Improve event handling. Save offset after a seek when
27741           the headers are at the end of the file so that we don't end up in
27742           an infinite loop.
27743         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
27744           Add low-priority typefind support for files with no length.
27745
27746 2004-09-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
27747
27748         * testsuite/multifilesink/Makefile.am:
27749         fix typo
27750
27751 2004-09-22  Julien MOUTTE  <julien@moutte.net>
27752
27753         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
27754         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
27755         mistakes from thaytan's patches.
27756
27757 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
27758
27759         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
27760           For completeness, XSync in the destroy function as xvimage does.
27761
27762 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
27763
27764         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
27765            Correct caps negotiation
27766         * gst/volume/gstvolume.c: (volume_chain_float),
27767         (volume_chain_int16):
27768            Modify debug output to be little more informative
27769         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
27770         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
27771         (gst_xvimagesink_xvimage_destroy):
27772           Add XSync calls after detaching from the shared memory segment to
27773           avoid a crash.
27774
27775 2004-09-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
27776
27777         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
27778         (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
27779         * ext/vorbis/vorbis.c: (plugin_init):
27780         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
27781         (gst_vorbisenc_chain):
27782         * ext/vorbis/vorbisenc.h:
27783         remove explicit newmedia support from oggmux and vorbisenc
27784         add debug category to vorbisenc
27785         * gst/multifilesink/gstmultifilesink.c:
27786         (gst_multifilesink_class_init), (gst_multifilesink_init),
27787         (gst_multifilesink_dispose), (gst_multifilesink_set_location),
27788         (gst_multifilesink_set_property), (gst_multifilesink_next_file),
27789         (gst_multifilesink_handle_event), (gst_multifilesink_chain),
27790         (plugin_init):
27791         * gst/multifilesink/gstmultifilesink.h:
27792         add support for streamheader in multifilesink
27793
27794 2004-09-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27795
27796         * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
27797         (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
27798         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
27799           Prevent infinite loops. More correct error reporting.
27800         * gst/auparse/gstauparse.c: (gst_auparse_chain):
27801           Error out if negotiation fails.
27802         * gst/playback/gstplaybasebin.c: (setup_source),
27803         (gst_play_base_bin_change_state), (gst_play_base_bin_error),
27804         (gst_play_base_bin_found_tag):
27805           Error/tag forwarding. Pre-roll fixes for source errors on state
27806           changes (e.g. "file does not exist") to prevent hangs.
27807
27808 2004-09-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
27809
27810         * testsuite/multifilesink/Makefile.am:
27811         * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
27812         (gst_newmedia_class_init), (gst_newmedia_init),
27813         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
27814         (newfile_signal), (test_signal), (main):
27815         * testsuite/multifilesink/multifilesrc_test.c: (main):
27816         * testsuite/multifilesink/oggtheora_test.c:
27817         (gst_newmedia_base_init), (gst_newmedia_class_init),
27818         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
27819         (test_format), (newfile_signal), (test_signal), (main):
27820         * testsuite/multifilesink/oggvorbis_test.c:
27821         (gst_newmedia_base_init), (gst_newmedia_class_init),
27822         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
27823         (test_format), (newfile_signal), (test_signal), (main):
27824         * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
27825         (gst_newmedia_class_init), (gst_newmedia_init),
27826         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
27827         (newfile_signal), (test_signal), (main):
27828         New media tests
27829
27830 2004-09-20  Christian Schaller <christian@fluendo.com>
27831
27832         * Fix mikmod license to LGPL as they have relicensed
27833         * Move Dirac and Effectv into LGPL section of README_license
27834
27835 2004-09-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27836
27837         * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
27838         (gst_mad_change_state):
27839           Allow for mp3 rate/channels changes. However, only very
27840           conservatively. Reason that we *have* to enable this is smiply
27841           because the mad find_sync() function is not good enough, it will
27842           regularly sync on random data as valid frames and therefore make
27843           us provide random caps as *final* caps of the stream. The best fix
27844           I could think of is to simply require several of the same stream
27845           changes in a row before we change caps.
27846           The actual testcase that works now is #
27847         * ext/ogg/Makefile.am:
27848         * ext/ogg/gstogg.c: (plugin_init):
27849         * ext/ogg/gstogmparse.c:
27850           OGM support (video only for now; I need an audio sample file).
27851         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
27852         (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
27853         (gst_asf_demux_add_video_stream):
27854           WMV extradata.
27855         * gst/playback/gstplaybasebin.c: (unknown_type):
27856           Don't error out on single unknown-types after all. It's wrong.
27857           If we found type of video and audio but not of a subtitle stream,
27858           it will still error out (which is unwanted). Will find a better fix
27859           later on.
27860         * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
27861         (ogmaudio_type_find), (plugin_init):
27862           OGM support.
27863
27864 2004-09-20  Johan Dahlin  <johan@gnome.org>
27865
27866         * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
27867         after setting caps.
27868
27869 2004-09-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
27870
27871         * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
27872         * gst/wavenc/gstwavenc.h:
27873         Added newmedia support to wavenc
27874
27875 2004-09-17  Wim Taymans  <wim@fluendo.com>
27876
27877         * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
27878         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
27879         (gst_fdset_fd_can_write), (gst_fdset_wait):
27880         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
27881         (gst_multifdsink_init), (gst_multifdsink_add),
27882         (gst_multifdsink_remove), (gst_multifdsink_get_stats),
27883         (gst_multifdsink_remove_client_link),
27884         (gst_multifdsink_client_queue_buffer),
27885         (gst_multifdsink_handle_client_write),
27886         (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
27887         (gst_multifdsink_close), (gst_multifdsink_change_state):
27888         * gst/tcp/gstmultifdsink.h:
27889         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
27890         (gst_tcpserversink_removed):
27891         Small cleanups in fdset.c
27892         Use a hastable to map fd to the client structure for faster
27893         lookup in _remove and get_stats.
27894         Added virtual function to close the fds.
27895         Handle clients even when the select/poll call was unblocked because
27896         of a command.
27897         Implement syncing to keyframe in the recovery procedure.
27898
27899 2004-09-16 Iain <iaingnome@gmail.com>
27900
27901         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
27902         try caps.
27903
27904 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27905
27906         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
27907           Caps are only set if the type of the stream is unknown, but this
27908           is initialized in ->init_stream(), so set to UNKNOWN after calling
27909           ->init_stream() so that capsnego starts.
27910
27911 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27912
27913         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
27914         (gst_avi_demux_stream_data):
27915           Just hardcode for raw audio then. AVI audio sucks.
27916
27917 2004-09-15  Arwed v. Merkatz  <v.merkatz@gmx.net>
27918
27919         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
27920         * gst/matroska/matroska-mux.c: (audiosink_templ),
27921         (gst_matroska_mux_audio_pad_link):
27922         * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
27923         Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
27924
27925 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27926
27927         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
27928         (gst_avi_demux_stream_data):
27929           Try to fix a/v sync issues.
27930
27931 2004-09-15  David Schleef  <ds@schleef.org>
27932
27933         * configure.ac: remove NASM check, since we don't use it.  Update
27934         dirac check to 0.4
27935         * ext/dirac/gstdiracdec.cc: update to current 0.4 API
27936         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
27937         Initialized variables.
27938         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
27939         (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
27940         (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
27941         SVQ3 format
27942
27943 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27944
27945         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
27946         (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
27947         * gst/avi/gstavidemux.h:
27948           Fix for compressed audio (mp3) timestamp generation. How did this
27949           ever work?
27950
27951 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27952
27953         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
27954           Volume is a double not a float.
27955
27956 2004-09-15  Wim Taymans  <wim@fluendo.com>
27957
27958         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
27959         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
27960         Don't close the fd in multifdsink as we didn't open it in the
27961         first place. Some cleanups.
27962
27963 2004-09-15  Wim Taymans  <wim@fluendo.com>
27964
27965         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
27966         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
27967         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
27968         Fix the case where the muxer would mark pages as delta
27969         frames when they are not (vorbis only ogg).
27970
27971 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27972
27973         * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
27974         (gst_play_base_bin_change_state):
27975           Handle the case where we failed to setup a clear pipeline. This
27976           will throw an error (or EOS, another nice case) and if you don't
27977           catch that, the app will wait for the signal forever (and thus
27978           hang).
27979
27980 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27981
27982         * ext/gnomevfs/gstgnomevfssink.c:
27983         (gst_gnomevfssink_uri_get_protocols):
27984         * ext/gnomevfs/gstgnomevfssrc.c:
27985         (gst_gnomevfssrc_uri_get_protocols):
27986         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
27987         * ext/gnomevfs/gstgnomevfsuri.h:
27988           Use _uri_new() instead of _open(), so it doesn't take as long and
27989           Christophe's computer won't hang.
27990         * gst/playback/gstplaybasebin.c: (unknown_type):
27991           Throw error on unknown media type, so apps actually display it.
27992
27993 2004-09-14  Brian Cameron  <brian.cameron@sun.com
27994
27995         * tools/gst-launch-ext-m.m:  Changed ~ to $ENV{HOME} to allow
27996           this script to work on Solaris since bash shell handles echo
27997           differenly than bash.
27998
27999 2004-09-17  Wim Taymans  <wim@fluendo.com>
28000
28001         * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
28002         (setup_source), (gst_play_base_bin_set_property),
28003         (gst_play_base_bin_add_element):
28004         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
28005         Some more work on making sure seeking pauses the pipeline and
28006         that changing the uri actually does something.
28007
28008 2004-09-17  Wim Taymans  <wim@fluendo.com>
28009
28010         * gst/tcp/gstfdset.c: (gst_fdset_wait):
28011         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
28012         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
28013         (gst_tcpserversink_close):
28014         Be a bit more paranoid when freeing memory.
28015
28016 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28017
28018         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
28019         (qtdemux_parse_trak):
28020           Don't crash by dividing by zero (see sample movie in #126922).
28021
28022 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28023
28024         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
28025           Don't touch non-existing data (fixes crash on file in #140147).
28026
28027 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28028
28029         * gst/playback/gstplaybasebin.c:
28030         (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
28031           Handle double disposals, and proper change of URIs.
28032
28033 2004-09-13  Martin Eikermann <meiker@upb.de>
28034
28035         * gst/mpegstream/gstmpegparse.c:
28036           fix synchronistation for streams recorded from digital PCR
28037           fixes bug #119376
28038
28039 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28040
28041         * ext/gnomevfs/Makefile.am:
28042         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
28043         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
28044         (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
28045         (gst_gnomevfssink_uri_get_type),
28046         (gst_gnomevfssink_uri_get_protocols),
28047         (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
28048         (gst_gnomevfssink_uri_handler_init),
28049         (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
28050         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
28051         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
28052         (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
28053         (gst_gnomevfssrc_uri_get_type),
28054         (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
28055         (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
28056         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
28057         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
28058         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
28059         * ext/gnomevfs/gstgnomevfsuri.h:
28060           Add URI support to Gnome-VFS plugins. Tries to load a fixed list
28061           of fake URIs to see which this version of Gnome-VFS likes, and
28062           uses that for the Gst-URI interface. Makes playbin support http://
28063           streams. Also fix up some stupid behaviour in gnomevfssrc.
28064
28065 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28066
28067         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
28068         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
28069         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
28070         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
28071           Update mixer (to sync with other sessions) if we try to obtain
28072           a new value. This makes alsamixer work accross applications.
28073         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
28074           Only call sync functions if we're running, else alsalib asserts.
28075         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
28076           Sometimes fails to compile. Possibly a gcc bug.
28077         * gst/playback/gstplaybin.c: (gen_video_element),
28078         (gen_audio_element):
28079           Add a reference to an application-provided object, because we lose
28080           this same reference if we add it to the bin. If we don't do this,
28081           we can only use this object once and thus crash if we go from
28082           ready to playing, back to ready and back to playing again.
28083           Also add an audioscale element because several cheap soundcards -
28084           like mine - don't support all samplerates.
28085         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
28086         (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
28087           Fix wrong order or PAR calls. Makes automatically obtained PAR
28088           from the X server atually being used.
28089
28090 2004-09-12  David Schleef  <ds@schleef.org>
28091
28092         Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
28093         #151887, #152102, #152247.
28094         * examples/indexing/indexmpeg.c: 64-bit warning fixes.
28095         * examples/seeking/cdparanoia.c: same
28096         * examples/seeking/cdplayer.c: same
28097         * examples/seeking/seek.c: same
28098         * examples/seeking/spider_seek.c: same
28099         * examples/seeking/vorbisfile.c: same
28100         * examples/stats/mp2ogg.c: same
28101         * ext/esd/esdsink.c: (gst_esdsink_class_init),
28102         (gst_esdsink_dispose): Dispose of element properly.
28103         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
28104         fixes.
28105         * ext/nas/nassink.c: (gst_nassink_class_init),
28106         (gst_nassink_dispose): Dispose of element correctly.
28107         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
28108         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
28109         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
28110         Fix 64-bit warning.
28111         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
28112         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
28113         Fix 64-bit warning.
28114
28115 2004-09-12  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
28116
28117         * configure.ac : change speex detection as 1.1.6 now uses
28118           .pc/pkg-config and they changed their headers location.
28119
28120 2004-09-09  Arwed v. Merkatz  <v.merkatz@gmx.net>
28121
28122         * gst/matroska/matroska-mux.h:
28123         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
28124         (gst_matroska_mux_start), (gst_matroska_mux_finish),
28125         (gst_matroska_mux_write_data):
28126           Write multiple blocks/frames per cluster.
28127                 Write meta-seek information (seek heads).
28128
28129 2004-09-09  Scott Wheeler <wheeler@kde.org>
28130
28131         * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
28132         (gst_play_bin_set_property), (gst_play_bin_get_property),
28133         (gen_audio_element), (gen_audio_element):
28134           Add a volume element / property to the pipeline.
28135
28136 2004-09-07  Wim Taymans  <wim@fluendo.com>
28137
28138         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
28139         Copy timestamps from the master pad to the output buffers.
28140
28141 2004-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
28142
28143         * ext/raw1394/gstdv1394src.c:
28144           throw errors when applicable
28145
28146 2004-09-01  Arwed v. Merkatz  <v.merkatz@gmx.net>
28147
28148         * gst/matroska/ebml-ids.h:
28149         * gst/matroska/ebml-read.c: (gst_ebml_read_date):
28150         * gst/matroska/ebml-write.c: (gst_ebml_write_date):
28151         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
28152           automatically convert unix time <-> ebml time when reading/writing
28153           a date, use gst_ebml_write_uint to write CUETIME,
28154           not gst_ebml_write_date.
28155         * gst/matroska/matroska-ids.h:
28156         * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
28157         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
28158         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
28159         (gst_matroska_mux_write_data):
28160           Write track and segment UIDs, write muxing date, write
28161           TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
28162           Create cues for audio only files.
28163
28164 2004-08-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28165
28166         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
28167         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
28168           Re-commit ALSA switches.
28169         * gst/adder/gstadder.c: (gst_adder_loop):
28170           64-bit fix (#151416).
28171         * gst/debug/progressreport.c: (gst_progressreport_report):
28172           64-bit fix (#151419).
28173         * gst/matroska/matroska-demux.c:
28174         (gst_matroska_demux_parse_contents):
28175           64-bit fix (#151420).
28176         * gst/playback/test3.c: (update_scale):
28177           64-bit fix (#151421).
28178
28179 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
28180
28181         * configure.ac:
28182           bump nano to cvs
28183
28184 === release 0.8.4 ===
28185
28186 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
28187
28188         * configure.ac: releasing 0.8.4, "Alias"
28189
28190 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
28191
28192         * ext/theora/Makefile.am:
28193           fix makefile.  Fixes #151462.
28194
28195 2004-08-30  Wim Taymans  <wim@fluendo.com>
28196
28197         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
28198         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
28199         (gst_multifdsink_remove_client_link),
28200         (gst_multifdsink_client_queue_buffer),
28201         (gst_multifdsink_handle_client_write):
28202         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
28203         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
28204         Fix some memory leaks.
28205
28206 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
28207
28208         Patch by: David Schleef
28209
28210         * configure.ac:
28211         * sys/Makefile.am:
28212           rename our detection macro for V4L2.  Fixes #151236.
28213
28214 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
28215
28216         Patch by: David Schleef
28217
28218         * configure.ac:
28219           check to define LAMEPRESET.  Fixes #151232.
28220
28221 2004-08-27  David Schleef  <ds@schleef.org>
28222
28223         * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
28224         (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
28225         (gst_glimagesink_fixate):  Move local variable declarations to
28226         make gcc-2.95 happy.
28227
28228 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
28229
28230         * configure.ac:
28231           bump nano for prerelease
28232
28233 2004-08-27  David Schleef  <ds@schleef.org>
28234
28235         * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
28236         * sys/sunaudio/gstsunaudiosrc.c:
28237         * sys/sunaudio/gstsunaudiosrc.h:
28238
28239 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
28240
28241         * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
28242         handle EOS correctly
28243         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
28244         * gst/matroska/matroska-mux.h:
28245         added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
28246         VFW compatibility mode
28247
28248 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
28249
28250         patch by: Zaheer Abbas Merali
28251
28252         * ext/ogg/gstoggmux.c:
28253         * ext/vorbis/vorbisenc.c:
28254         * ext/vorbis/vorbisenc.h:
28255           handle NEWMEDIA
28256
28257 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
28258
28259         * gst/matroska/ebml-write.c: (gst_ebml_write_float),
28260         fix byte order reversion on little endian machines.
28261         * gst/matroska/matroska-mux.c: (audiosink_templ),
28262         (gst_matroska_mux_audio_pad_link):
28263         add TTA codec to the list of supported codecs.
28264         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
28265         (gst_matroska_mux_start), (gst_matroska_mux_finish),
28266         (gst_matroska_mux_write_data):
28267         * gst/matroska/matroska-mux.h:
28268         write segment duration correctly, write muxing app string, fixes bugs
28269         #140897 and #140898.
28270         * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
28271         wait for all pads to be negotiated before starting to mux.
28272
28273 2004-08-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28274
28275         * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
28276         * ext/lame/gstlame.h:
28277         Added new media support to lame
28278
28279 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
28280
28281         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
28282         send vorbis headers at the beginning of a stream, fixes bug #141554.
28283         Interpret BLOCKDURATION and set buffer duration accordingly, fixes
28284         bug #148950.
28285         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
28286         (gst_matroska_demux_plugin_init):
28287         * gst/matroska/matroska-ids.h:
28288         enable demuxing of TTA audio streams, fixes bug #148951.
28289         * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
28290         enable typefinding for TTA audio files, fixes bug #148711.
28291         * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
28292         set XVID_LOWDELAY flag for decoding so xvid always returns an image,
28293         fixes playback of packed bitstream and xvid with bframes, bug #135407.
28294
28295 2004-08-24  Sebastien Cote  <sc5@hermes.usherb.ca>
28296
28297         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
28298         (gst_riff_read_element_data), (gst_riff_read_seek),
28299         (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
28300         #144616, patch reviewed by Ronald and committed by Christophe Fergeau
28301         <teuf@gnome.org>
28302
28303 2004-08-23 Iain <iaingnome@gmail.com>
28304
28305         * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
28306         tags. They appear to be handled differently to normal.
28307         (tag_list_to_id3_tag_foreach): Ditto.
28308
28309 2004-08-22  Wim Taymans  <wim@fluendo.com>
28310
28311         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
28312         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
28313         Make sure we never send -1 granulepos.
28314
28315 2004-08-20  Wim Taymans  <wim@fluendo.com>
28316
28317         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
28318         (gst_ogg_mux_loop):
28319         I will accept bitchslappings with non sharp objects.
28320
28321 2004-08-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28322
28323         * configure.ac:
28324         Clean up the test for lame presets
28325
28326 2004-08-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28327
28328         * configure.ac:
28329         * ext/lame/Makefile.am:
28330         * ext/lame/gstlame.c: (gst_lame_class_init),
28331         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
28332         Only enable lame presets if version of lame has presets in API
28333
28334 2004-08-19  Jan Schmidt  <thaytan@mad.scientist.com>
28335         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
28336         * gst/udp/gstudpsrc.h:
28337           Don't call gst_pad_push in a get function. Fixes #150449
28338
28339 2004-08-18  Wim Taymans  <wim@fluendo.com>
28340
28341         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
28342         (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
28343         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
28344         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
28345         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
28346         (gst_fdset_wait):
28347         * gst/tcp/gstfdset.h:
28348         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
28349         (gst_multifdsink_client_queue_buffer),
28350         (gst_multifdsink_handle_client_write):
28351         * gst/tcp/gstmultifdsink.h:
28352         Some extra checks in gstfdset.
28353         Only use send() when the fd is a socket. Don't try to
28354         read from write only fds.
28355
28356 2004-08-18  Wim Taymans  <wim@fluendo.com>
28357
28358         * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
28359         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
28360         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
28361         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
28362         (gst_fdset_wait):
28363         Add more locking and bounds checking.
28364
28365 2004-08-18  Wim Taymans  <wim@fluendo.com>
28366
28367         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
28368         Realloc test fdset in the lock and right before starting
28369         the poll call. Bump the limit to 4096.
28370
28371 2004-08-17  David Schleef  <ds@schleef.org>
28372
28373         * sys/sunaudio/Makefile.am:
28374         * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
28375         of rates and channels.  Make debugging less obnoxious.
28376
28377         Patch from Balamurali Viswanathan implementing a mixer for
28378         Sun audio.  (bug #144091):
28379         * sys/sunaudio/gstsunelement.c:
28380         * sys/sunaudio/gstsunelement.h:
28381         * sys/sunaudio/gstsunmixer.c:
28382         * sys/sunaudio/gstsunmixer.h:
28383
28384 2004-08-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28385
28386         * gst/audioscale/gstaudioscale.c:
28387         * gst/audioscale/gstaudioscale.h:
28388         made audioscale resample from any sample rate to any sample rate
28389
28390 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
28391
28392         * ext/libpng/gstpngdec.c:
28393           error out on unsupported types
28394
28395 2004-08-17  Iain <iaingnome@gmail.com>
28396
28397         * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
28398         mid_side and loose_mid_side properties if its a stereo stream.
28399
28400 2004-08-17  Wim Taymans  <wim@fluendo.com>
28401
28402         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
28403         (theora_get_formats), (theora_dec_src_convert),
28404         (theora_dec_sink_convert), (theora_dec_src_query),
28405         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
28406         Add a debug line.
28407
28408 2004-08-17  Wim Taymans  <wim@fluendo.com>
28409
28410         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
28411         (gst_ogg_pad_push):
28412         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
28413         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
28414         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
28415         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
28416         Mark delta units in the muxer.
28417         Try to decode the packet after an out-of-sync error from
28418         libogg.
28419
28420 2004-08-17  Wim Taymans  <wim@fluendo.com>
28421
28422         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
28423         (gst_multifdsink_init), (gst_multifdsink_add),
28424         (gst_multifdsink_client_queue_buffer),
28425         (gst_multifdsink_set_property), (gst_multifdsink_get_property):
28426         * gst/tcp/gstmultifdsink.h:
28427         Added option to send a keyframe to clients as the first buffer.
28428         Make timeout property writable.
28429
28430 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
28431
28432         patch by: Wim Taymans
28433
28434         * gst/tcp/gstfdset.c:
28435         * gst/tcp/gstmultifdsink.c:
28436           fix index comparison, should include 0
28437
28438 2004-08-16  Wim Taymans  <wim@fluendo.com>
28439
28440         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
28441         (gst_fdset_add_fd), (gst_fdset_remove_fd),
28442         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
28443         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
28444         (gst_fdset_wait):
28445           copy when reallocing for poll so the select arguments don't get
28446           changed during the call
28447
28448 2004-08-16  Wim Taymans  <wim@fluendo.com>
28449
28450         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
28451         (gst_theora_enc_class_init), (theora_enc_sink_link),
28452         (theora_buffer_from_packet), (theora_enc_chain):
28453         Fix bug where buffers were not marked as keyframes
28454         correctly.
28455
28456 2004-08-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28457
28458         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
28459         (gst_lame_preset_get_type), (gst_lame_class_init):
28460         describe the enum values for vbr mode and presets more verbosely
28461
28462 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28463
28464         * ext/lame/gstlame.c: (gst_lame_mode_get_type),
28465         (gst_lame_quality_get_type), (gst_lame_padding_get_type),
28466         (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
28467         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
28468         * ext/lame/gstlame.h:
28469         add preset property to lame so it can use lame presets
28470
28471 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28472
28473         * ext/lame/gstlame.c: (gst_lame_get_property):
28474         whoops forgot break, thanks teuf
28475
28476 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28477
28478         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
28479         (gst_lame_class_init), (gst_lame_src_getcaps),
28480         (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
28481         (gst_lame_get_property), (gst_lame_setup):
28482         * ext/lame/gstlame.h:
28483         fix lame's broken vbr stuff, allow it to resample if need be, and also
28484         make xing header optional
28485
28486 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28487
28488         * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
28489         added getcaps function so samplerate doesnt get fixated to silly values
28490
28491 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28492
28493         * ext/lame/gstlame.c: (gst_lame_src_link):
28494         revert previous fix
28495
28496 2004-08-12  Johan Dahlin  <johan@gnome.org>
28497
28498         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
28499         checks. Doesn't matter what state we are in. Interfaces are a
28500         compile time thing, not runtime. It also broke the python bindings.
28501
28502 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28503
28504         * ext/lame/gstlame.c: (gst_lame_src_link):
28505         made source pad link function check if sinkpad is ok..fixes the problem
28506         where core fixates the output rate of lame stupidly
28507
28508 2004-08-12  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
28509
28510         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
28511         * sys/v4l/v4l_calls.c:
28512         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
28513           fix fixate function to handle nonsimple caps.
28514           remove bogus check in _link
28515           cleanups
28516
28517 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28518
28519         * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
28520         set default compression ratio parameter to 0.0 so bitrate parameter
28521         works :)
28522
28523 2004-08-11  David Schleef  <ds@schleef.org>
28524
28525         * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
28526
28527 2004-08-11  David Schleef  <ds@schleef.org>
28528
28529         * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
28530         before.
28531
28532 2004-08-11  David Schleef  <ds@schleef.org>
28533
28534         * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
28535
28536 2004-08-11  David Schleef  <ds@schleef.org>
28537
28538         * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
28539           license field
28540         * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
28541         * gst-libs/gst/video/gstvideosink.c: Change copyright block to
28542           LGPL.
28543         * gst/auparse/gstauparse.c: Fix plugin license field.
28544         * gst/monoscope/gstmonoscope.c: Fix plugin license field.
28545         * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
28546         * gst/rtp/gstrtp.c: Fix plugin license field.
28547
28548 2004-08-11  Wim Taymans  <wim@fluendo.com>
28549
28550         * gst/tcp/Makefile.am:
28551         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
28552         (ensure_size), (gst_fdset_new), (gst_fdset_free),
28553         (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
28554         (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
28555         (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
28556         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
28557         (gst_fdset_fd_can_write), (gst_fdset_wait):
28558         * gst/tcp/gstfdset.h:
28559         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
28560         (gst_multifdsink_class_init), (gst_multifdsink_init),
28561         (gst_multifdsink_add), (gst_multifdsink_remove),
28562         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
28563         (gst_multifdsink_remove_client_link),
28564         (gst_multifdsink_handle_client_read),
28565         (gst_multifdsink_client_queue_data),
28566         (gst_multifdsink_client_queue_caps),
28567         (gst_multifdsink_client_queue_buffer),
28568         (gst_multifdsink_handle_client_write),
28569         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
28570         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
28571         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
28572         (gst_multifdsink_close):
28573         * gst/tcp/gstmultifdsink.h:
28574         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
28575         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
28576         (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
28577         (gst_tcpserversink_close):
28578         * gst/tcp/gsttcpserversink.h:
28579         Abstracted away the select call, implemented poll (yes we ran into
28580         the 1024 limit in production).
28581
28582 2004-08-11  Thomas Vander Stichele  <thomas at apestaart dot org>
28583
28584         * gst/tcp/gsttcp.c:
28585         * gst/tcp/gsttcpplugin.c:
28586           improve debuggging, remove assert
28587
28588 2004-08-10  Wim Taymans  <wim@fluendo.com>
28589
28590         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
28591         (gst_client_status_get_type), (gst_multifdsink_class_init),
28592         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
28593         (gst_multifdsink_handle_client_read),
28594         (gst_multifdsink_handle_client_write),
28595         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
28596         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
28597         (gst_multifdsink_get_property):
28598         * gst/tcp/gstmultifdsink.h:
28599         * gst/tcp/gsttcp-marshal.list:
28600         Starting to prepare for specifying buffer time in other units
28601         than buffers. Expose remove reason in signal.
28602
28603 2004-08-10  Wim Taymans  <wim@fluendo.com>
28604
28605         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
28606         (gst_multifdsink_remove), (gst_multifdsink_clear),
28607         (gst_multifdsink_remove_client_link),
28608         (gst_multifdsink_handle_client_read),
28609         (gst_multifdsink_client_queue_data),
28610         (gst_multifdsink_client_queue_buffer),
28611         (gst_multifdsink_handle_client_write),
28612         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
28613         (gst_multifdsink_chain), (gst_multifdsink_close):
28614         * gst/tcp/gstmultifdsink.h:
28615         Added more debugging info. Changed the way clients are
28616         removed from the lists. Fixed a bug where a bad file descriptor
28617         could cause many clients to be removed.
28618
28619 2004-08-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28620
28621         * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
28622           allow all pixel-aspect-ratios, not just 1:1
28623
28624 2004-08-09  David Schleef  <ds@schleef.org>
28625
28626         * sys/glsink/ARB_multitexture.h:  Remove old files.
28627         * sys/glsink/EXT_paletted_texture.h:
28628         * sys/glsink/NV_register_combiners.h:
28629         * sys/glsink/gstgl_nvimage.c:
28630         * sys/glsink/gstgl_pdrimage.c:
28631         * sys/glsink/gstgl_rgbimage.c:
28632         * sys/glsink/gstglsink.c:
28633         * sys/glsink/gstglsink.h:
28634         * sys/glsink/gstglxwindow.c:
28635         * sys/glsink/regcomb_yuvrgb.c:
28636
28637 2004-08-09  David Schleef  <ds@schleef.org>
28638
28639         Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
28640         GL sink plugin.  (Bug #147302)
28641
28642         * configure.ac: Test for OpenGL
28643         * sys/Makefile.am: Use test for OpenGL
28644         * sys/glsink/Makefile.am:
28645         * sys/glsink/glimagesink.c: rewrite
28646         * sys/glsink/glimagesink.h: rewrite
28647
28648 2004-08-09  David Schleef  <ds@schleef.org>
28649
28650         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init):  Only allow
28651         sane framerates.
28652         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
28653         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
28654         * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
28655
28656 2004-08-09  Wim Taymans  <wim@fluendo.com>
28657
28658         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
28659         (gst_multifdsink_add), (gst_multifdsink_get_stats),
28660         (gst_multifdsink_client_remove),
28661         (gst_multifdsink_handle_client_read),
28662         (gst_multifdsink_handle_client_write),
28663         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
28664         Do a bit more logging, make the client_read code more robust.
28665
28666 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
28667
28668         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
28669         (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
28670         (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
28671         (gst_jpegdec_init), (gst_jpegdec_chain):
28672         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
28673         (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
28674           cleanups, debugging fixes and memleak plugging
28675
28676 2004-08-09  Wim Taymans  <wim@fluendo.com>
28677
28678         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
28679         (theora_get_formats), (theora_dec_src_convert),
28680         (theora_dec_sink_convert), (theora_dec_src_query),
28681         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
28682         (theora_dec_change_state):
28683         Don't crash on missing header packets.
28684
28685 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
28686
28687         * po/LINGUAS:
28688         * po/sq.po:
28689           Added Albanian translation (Laurent Dhima)
28690         * po/cs.po:
28691           updated
28692
28693 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
28694
28695         * ext/lame/gstlame.c:
28696           fix/add debugging
28697
28698 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
28699
28700         * sys/ximage/ximagesink.c:
28701         * sys/xvimage/xvimagesink.c:
28702           assign all TOO_LAZY's to a real category.  Thanks to Warthy Warthog.
28703
28704 2004-08-06  Wim Taymans  <wim@fluendo.com>
28705
28706         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
28707         (gst_multifdsink_add), (gst_multifdsink_get_stats),
28708         (gst_multifdsink_client_remove),
28709         (gst_multifdsink_handle_client_read),
28710         (gst_multifdsink_handle_client_write),
28711         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
28712         Make sure we don't try to read more from a client that what
28713         ioctl says us or we deadlock.
28714
28715 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
28716
28717         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
28718         (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
28719         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
28720           decouple running_time and n_frames so it can handle changing
28721           framerate while running
28722
28723 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
28724
28725         * po/nl.po:
28726         * po/sv.po:
28727           updated translations
28728
28729 2004-08-04  Benjamin Otte  <otte@gnome.org>
28730
28731         * gst/videotestsrc/gstvideotestsrc.c:
28732         (gst_videotestsrc_get_capslist), (generate_capslist),
28733         (plugin_init):
28734           generate the list of supported caps at startup and reuse it instead
28735           of always generating it
28736
28737 2004-07-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28738
28739         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
28740           whoops, last checkin broke normal build
28741
28742 2004-08-03  Benjamin Otte  <otte@gnome.org>
28743
28744         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
28745         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
28746         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
28747         (gst_alsa_mixer_get_option):
28748         * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
28749         (dvdnavsrc_print_event):
28750         * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
28751         * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
28752         (gst_ogg_mux_pad_unlink):
28753         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
28754         (gst_multipart_mux_pad_unlink):
28755         * gst/videofilter/gstvideobalance.c:
28756         (gst_videobalance_colorbalance_set_value):
28757         * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
28758         (gst_videomixer_pad_unlink):
28759         * po/uk.po:
28760         * sys/oss/gstossmixer.c:
28761         * sys/v4l/gstv4lcolorbalance.c:
28762         * sys/v4l/gstv4ltuner.c:
28763         * sys/v4l/v4lsrc_calls.c:
28764         * sys/v4l2/gstv4l2colorbalance.c:
28765         * sys/v4l2/gstv4l2tuner.c:
28766           compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
28767
28768 2004-08-03  Benjamin Otte  <otte@gnome.org>
28769
28770         * examples/dynparams/filter.c: (ui_control_create):
28771         * examples/gstplay/player.c: (print_tag):
28772         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
28773         * ext/gdk_pixbuf/gstgdkanimation.c:
28774         (gst_gdk_animation_iter_may_advance):
28775         * ext/jack/gstjack.c: (gst_jack_request_new_pad):
28776         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
28777         (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
28778         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
28779         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
28780         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
28781         * gst-libs/gst/media-info/media-info-test.c: (print_tag):
28782         * gst/sine/demo-dparams.c: (main):
28783         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
28784         * testsuite/alsa/formats.c: (create_pipeline):
28785         * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
28786           fixes for G_DISABLE_ASSERT and friends
28787         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
28788         (mp3_type_frame_length_from_header), (mp3_type_find),
28789         (plugin_init):
28790           require mp3 typefinding to have at least MIN_HEADERS valid headers
28791           add typefinding for AAC adts files
28792
28793 2004-08-04  Jan Schmidt  <thaytan@mad.scientist.com>
28794
28795         * sys/ximage/ximagesink.c:
28796         (gst_ximagesink_calculate_pixel_aspect_ratio):
28797         * sys/xvimage/xvimagesink.c:
28798         (gst_xvimagesink_calculate_pixel_aspect_ratio):
28799         Make sure we calculate pixel-aspect-ratio using floating point maths
28800
28801 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
28802
28803         * po/uk.po:
28804           updated translation
28805
28806 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
28807
28808         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
28809         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
28810           add debugging for display PAR calculation
28811
28812 2004-08-02  David Schleef  <ds@schleef.org>
28813
28814         * configure.ac: Fix mikmod CFLAGS.
28815
28816 2004-07-27  Benjamin Otte  <otte@gnome.org>
28817
28818         * gst/audioscale/gstaudioscale.c:
28819         - fix templates to only support S16, it's the only format that works
28820         - make caps nego code use try_set_caps_nonfixed and fixation instead
28821         of try_set_caps twice, which is not nice for autopluggers
28822         - change rank to secondary, so autopluggers can pick it up after
28823         audioconvert
28824
28825 2004-08-02  Iain <iain@prettypeople.org>
28826
28827         * gst/interleave/interleave.c (interleave_init),
28828         (interleave_request_new_pad),
28829         (interleave_pad_removed),
28830         (interleave_buffered_loop): Use the real pad count, not the artificial
28831         one.
28832
28833 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
28834
28835         * configure.ac: bump nano back to development
28836
28837 === release 0.8.3 ===
28838
28839 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
28840
28841         * configure.ac: releasing 0.8.3, "Water"
28842
28843 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
28844
28845         * sys/xvimage/xvimagesink.c:
28846         (gst_xvimagesink_calculate_pixel_aspect_ratio),
28847         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
28848         (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
28849         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
28850         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
28851         * sys/xvimage/xvimagesink.h:
28852           apply similar PAR fixes as to ximagesink
28853
28854 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
28855
28856         patch from: Benjamin Otte
28857
28858         * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
28859           add link function to lame.  Fixes #148986.
28860
28861 2004-08-02  Johan Dahlin  <johan@gnome.org>
28862
28863         * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
28864         fix debugging log
28865
28866 2004-07-30  David Schleef  <ds@schleef.org>
28867
28868         * gst/videomixer/Makefile.am: Fix things that should have been
28869         fixed in the last checkin.
28870
28871 2004-07-30  David Schleef  <ds@schleef.org>
28872
28873         * gst/multipart/Makefile.am: Fix things that should have been
28874         fixed in the last checkin.
28875
28876 2004-07-30  David Schleef  <ds@schleef.org>
28877
28878         * testsuite/multifilesink/Makefile.am: Fix unused variable.
28879
28880 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
28881
28882         * configure.ac:
28883           bump nano for prerelease
28884         * po/af.po:
28885         * po/az.po:
28886         * po/cs.po:
28887         * po/en_GB.po:
28888         * po/hu.po:
28889         * po/nl.po:
28890         * po/sr.po:
28891         * po/sv.po:
28892         * po/uk.po:
28893           updates
28894
28895 2004-07-30  Wim Taymans  <wim@fluendo.com>
28896
28897         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
28898         (gst_multifdsink_add), (gst_multifdsink_remove),
28899         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
28900         (gst_multifdsink_client_remove),
28901         (gst_multifdsink_handle_client_write),
28902         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
28903         * gst/tcp/gstmultifdsink.h:
28904         Recover from a select with a bad file descriptor by removing
28905         the client.
28906
28907 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
28908
28909         * configure.ac:
28910           fix requirement of core
28911         * gst-libs/gst/play/play.c: (gst_play_error_plugin),
28912         (gst_play_pipeline_setup):
28913           don't use colorspace element.  do use hermescolorspace element.
28914           make macro to get a colorspace element.
28915           mark strings for translation.
28916         * po/POTFILES.in:
28917           add play.c
28918         * po/af.po:
28919         * po/az.po:
28920         * po/cs.po:
28921         * po/en_GB.po:
28922         * po/hu.po:
28923         * po/nl.po:
28924         * po/sr.po:
28925         * po/sv.po:
28926         * po/uk.po:
28927           update translations
28928
28929 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28930
28931         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
28932         fix default for newmedia flag
28933
28934 2004-07-30  Wim Taymans  <wim@fluendo.com>
28935
28936         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
28937         (gst_theora_dec_init), (theora_get_formats),
28938         (theora_dec_src_convert), (theora_dec_sink_convert),
28939         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
28940         (theora_dec_chain), (theora_dec_set_property),
28941         (theora_dec_get_property):
28942         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
28943         (gst_theora_enc_class_init), (gst_theora_enc_init),
28944         (theora_enc_sink_link), (theora_enc_chain),
28945         (theora_enc_set_property), (theora_enc_get_property):
28946         Added cropping option to theora decoder.
28947         Added border option to theora encoder.
28948
28949 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28950
28951         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
28952         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
28953         (gst_pngenc_set_property):
28954         * ext/libpng/gstpngenc.h:
28955         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
28956
28957 2004-07-30  Wim Taymans  <wim@fluendo.com>
28958
28959         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
28960         (theora_enc_sink_link), (theora_enc_chain),
28961         (theora_enc_set_property), (theora_enc_get_property):
28962         Fix encoding of non-multiple-of-16 video.
28963
28964 2004-07-29  David Schleef  <ds@schleef.org>
28965
28966         * configure.ac: make test for audiofile more strict
28967
28968 2004-07-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28969
28970         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
28971           give different names to typefind functions
28972
28973 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
28974
28975         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28976         (gst_ximagesink_calculate_pixel_aspect_ratio),
28977         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
28978         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
28979         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
28980         (gst_ximagesink_get_property), (gst_ximagesink_init):
28981         * sys/ximage/ximagesink.h:
28982           allocate PAR's dynamically.
28983           use autodetected PAR if no object-set PAR is given.
28984           add workaround for directfb's X not setting physical size.
28985           fix to xvimagesink will follow tomorrow.
28986
28987 2004-07-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28988
28989         * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
28990         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
28991         (gst_shout2send_get_type), (gst_shout2send_set_clock),
28992         (gst_shout2send_class_init), (gst_shout2send_init),
28993         (set_shout_metadata), (gst_shout2send_set_metadata),
28994         (gst_shout2send_chain), (gst_shout2send_set_property),
28995         (gst_shout2send_get_property), (gst_shout2send_connect),
28996         (gst_shout2send_change_state):
28997         * ext/shout2/gstshout2.h:
28998         - fix for sending mp3 audio to icecast2 server, if pad link function not
28999         called before PAUSED state
29000         - added option to use GStreamer clock sync (as opposed to libshout's own sync)
29001         - added tagging support for mp3 audio broadcasted
29002         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
29003         debug info
29004
29005 2004-07-28  Wim Taymans  <wim@fluendo.com>
29006
29007         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
29008         (gst_ogg_demux_push):
29009         Return query failure when we don't know the length of
29010         an ogg stream insteda of returning TRUE with a bogus value.
29011
29012 2004-07-28  Wim Taymans  <wim@fluendo.com>
29013
29014         * ext/theora/theoradec.c: (theora_get_formats),
29015         (theora_dec_src_convert), (theora_dec_sink_convert),
29016         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
29017         (theora_dec_chain):
29018         Don't screw up the 1 Chroma for 1 luma sample situation when we
29019         have an odd offset/width by adding a black border in those cases.
29020
29021 2004-07-28  Wim Taymans  <wim@fluendo.com>
29022
29023         * ext/theora/theoradec.c: (theora_get_formats),
29024         (theora_dec_src_convert), (theora_dec_sink_convert),
29025         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
29026         (theora_dec_chain):
29027         * ext/theora/theoraenc.c: (theora_enc_sink_link):
29028         Added first attempt at cropping of the image as required by the
29029         theora spec. We need more properties in the caps (offset_x,
29030         offset_y,stride) to implement this correctly.
29031
29032 2004-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
29033
29034         * ext/dvdnav/README:
29035           Update the README to use dvddemux
29036         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
29037           Ensure getcaps returns a subset of the template caps
29038         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
29039         (gst_mpeg2subt_init):
29040           Ensure getcaps returns a subset of the template caps
29041         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
29042         (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
29043         (gst_dvd_demux_get_subpicture_stream),
29044         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
29045         * gst/mpegstream/gstdvddemux.h:
29046           Set the explicit caps on the current_video pad before pushing
29047           anything
29048         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
29049         (gst_mpeg_demux_get_audio_stream):
29050           Free caps used to gst_pad_set_explicit_caps, which takes a const
29051           GstCaps *
29052
29053 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
29054
29055         * configure.ac: update GStreamer requirement to 0.8.4 because of
29056           GstFraction.
29057
29058 2004-07-28  Wim Taymans  <wim@fluendo.com>
29059
29060         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
29061         (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
29062         Add the pad to the element after setting up the caps. This
29063         makes it a lot easier to autoplug.
29064
29065 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
29066
29067         * gst/median/gstmedian.c:
29068         * gst/mpeg2subt/gstmpeg2subt.c:
29069         * gst/mpegaudioparse/gstmpegaudioparse.c:
29070         * gst/mpegstream/gstdvddemux.c:
29071         * gst/mpegstream/gstmpegdemux.c:
29072         * gst/mpegstream/gstmpegpacketize.c:
29073         * gst/rtjpeg/gstrtjpeg.c:
29074         * gst/rtjpeg/gstrtjpegdec.c:
29075         * gst/rtjpeg/gstrtjpegenc.c:
29076         * gst/sine/gstsinesrc.c:
29077         * gst/smooth/gstsmooth.c:
29078         * gst/smpte/gstsmpte.c:
29079         * gst/smpte/gstsmpte.h:
29080         * gst/stereo/gststereo.c:
29081         * gst/videofilter/gstgamma.c:
29082         * gst/videofilter/gstvideobalance.c:
29083         * gst/videofilter/gstvideofilter.c:
29084         * gst/videofilter/gstvideoflip.c:
29085         * gst/videoscale/gstvideoscale.c:
29086         * gst/videoscale/videoscale.c:
29087         * gst/videotestsrc/gstvideotestsrc.c:
29088         * gst/videotestsrc/videotestsrc.c:
29089         * gst/wavenc/gstwavenc.c:
29090         * gst/wavparse/gstwavparse.c:
29091           fix local includes and 64 bits constants
29092
29093 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
29094
29095         * win32/gst.sln:
29096         * gst-libs/gst/*/*.vcproj:
29097         * gst/*/*.vcproj:
29098           more working plugins
29099
29100 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29101
29102         * testsuite/alsa/Makefile.am:
29103         * testsuite/alsa/srcstate.c:
29104         add test for alsasrc changing state
29105
29106 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29107
29108         * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
29109         (gst_silence_get):
29110         * gst/silence/gstsilence.h:
29111         fix silence generation for 16bit raw audio
29112
29113 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
29114
29115         * gst/matroska/matroska-demux.c:
29116         (gst_matroska_demux_parse_metadata),
29117         (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
29118         * gst/mpegaudio/common.c:
29119         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
29120         (gst_videoscale_getcaps), (gst_videoscale_link),
29121         (gst_videoscale_src_fixate), (gst_videoscale_init),
29122         (gst_videoscale_finalize):
29123         * gst/videoscale/gstvideoscale.h:
29124         * gst/videotestsrc/gstvideotestsrc.c:
29125         (gst_videotestsrc_get_capslist):
29126         * gst/wavenc/gstwavenc.c:
29127         * sys/oss/gstossmixer.c: (fill_labels):
29128         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
29129         (gst_ximagesink_handle_xevents),
29130         (gst_ximagesink_calculate_pixel_aspect_ratio),
29131         (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
29132         (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
29133         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
29134         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
29135         (gst_ximagesink_init), (gst_ximagesink_class_init):
29136         * sys/ximage/ximagesink.h:
29137         * sys/xvimage/xvimagesink.c:
29138         (gst_xvimagesink_calculate_pixel_aspect_ratio),
29139         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
29140         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
29141         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
29142         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
29143         * sys/xvimage/xvimagesink.h:
29144           first batch of pixel aspect ratio commits.
29145
29146 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
29147
29148         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
29149         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
29150         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
29151           handle stride, needs work if we want to move stride handling
29152           upstream, but works correctly for our purposes.
29153
29154 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
29155
29156         * gst/videoscale/README:
29157           add testing examples
29158         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
29159         (gst_videoscale_chain):
29160         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
29161         (gst_videoscale_get_size):
29162           add get_size function that handles stride like videotestsrc.
29163           fixes conversion for YUV formats for as much as I can test them.
29164
29165 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
29166
29167         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
29168         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
29169         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
29170         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
29171         (gst_xvimagesink_xvimage_put):
29172           further cleanups, logging, error handling and synchronizing
29173
29174 2004-07-27  Wim Taymans  <wim@fluendo.com>
29175
29176         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
29177         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
29178         (gst_videomixer_pad_set_property),
29179         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
29180         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
29181         (gst_videomixer_class_init), (gst_videomixer_init),
29182         (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
29183         (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
29184         (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
29185         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
29186         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
29187         (gst_videomixer_loop), (plugin_init):
29188         Be a nicer negotiation citizen and provide a getcaps function on
29189         the srcpad. This also fixes a crash when resizing.
29190
29191 2004-07-27  Julien MOUTTE  <julien@moutte.net>
29192
29193         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
29194         (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
29195
29196 2004-07-27  Wim Taymans  <wim@fluendo.com>
29197
29198         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
29199         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
29200         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
29201         (gst_pngenc_set_property):
29202         * ext/libpng/gstpngenc.h:
29203         Added snapshot property to pngenc.
29204         removed g_print from pngdec
29205
29206 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
29207
29208         * gst/ac3parse/ac3parse.vcproj
29209         * gst/adder/adder.vcproj
29210         * gst/alpha/alpha.vcproj
29211         * gst/alpha/alphacolor.vcproj
29212         * gst/asfdemux/asf.vcproj
29213         * gst/audioconvert/audioconvert.vcproj
29214         * gst/audiorate/audiorate.vcproj
29215         * gst/audioscale/audioscale.vcproj
29216         * gst/auparse/auparse.vcproj
29217         * gst/avi/avi.vcproj
29218         * gst/cdxaparse/cdxaparse.vcproj
29219         * gst/chart/chart.vcproj
29220         * gst/colorspace/colorspace.vcproj
29221         * gst/cutter/cutter.vcproj
29222         * gst/debug/debug.vcproj
29223         * gst/debug/efence.vcproj
29224         * gst/debug/navigationtest.vcproj
29225         * gst/deinterlace/deinterlace.vcproj
29226         * gst/effectv/effectv.vcproj
29227         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
29228         * gst/filter/filter.vcproj
29229         * gst/flx/flxdec.vcproj
29230         * gst/goom/goom.vcproj
29231         * gst/interleave/interleave.vcproj
29232         * gst/law/alaw.vcproj
29233         * gst/law/mulaw.vcproj
29234         * gst/matroska/matroska.vcproj
29235         * gst/median/median.vcproj
29236         * gst/mixmatrix/mixmatrix.vcproj
29237         * gst/mpeg1sys/mpeg1systemencode.vcproj
29238         * gst/mpeg1videoparse/mp1videoparse.vcproj
29239         * gst/mpeg2sub/mpeg2subt.vcproj
29240         * gst/mpegaudio/mpegaudio.vcproj
29241         * gst/mpegaudioparse/mpegaudioparse.vcproj
29242         * gst/mpegstream/mpegstream.vcproj
29243         * gst/multifilesink/multifilesink.vcproj
29244         * gst/multipart/multipart.vcproj
29245         * gst/oneton/oneton.vcproj
29246         * gst/overlay/overlay.vcproj
29247         * gst/passthrough/passthrough.vcproj
29248         * gst/qtdemux/qtdemux.vcproj
29249         * gst/realmedia/rmdemux.vcproj
29250         * gst/rtjpeg/rtjpeg.vcproj
29251         * gst/rtp/rtp.vcproj
29252         * gst/silence/silence.vcproj
29253         * gst/sine/sinesrc.vcproj
29254         * gst/smooth/smooth.vcproj
29255         * gst/smpte/smpte.vcproj
29256         * gst/spectrum/spectrum.vcproj
29257         * gst/speed/speed.vcproj
29258         * gst/stereo/stereo.vcproj
29259         * gst/switch/switch.vcproj
29260         * gst/tags/tagedit.vcproj
29261         * gst/tcp/tcp.vcproj
29262         * gst/typefind/typefindfunctions.vcproj
29263         * gst/udp/udp.vcproj
29264         * gst/videobox/videobox.vcproj
29265         * gst/videocrop/videocrop.vcproj
29266         * gst/videodrop/videodrop.vcproj
29267         * gst/videofilter/gamma.vcproj
29268         * gst/videofilter/videobalance.vcproj
29269         * gst/videofilter/videofilter.vcproj
29270         * gst/videofilter/videoflip.vcproj
29271         * gst/videoflip/videoflip.vcproj
29272         * gst/videomixer/videomixer.vcproj
29273         * gst/videorate/videorate.vcproj
29274         * gst/videoscale/videoscale.vcproj
29275         * gst/videotestsrc/videotestsrc.vcproj
29276         * gst/virtualdub/virtualdub.vcproj
29277         * gst/volenv/volenv.vcproj
29278         * gst/volume/volume.vcproj
29279         * gst/wavenc/wavenc.vcproj
29280         * gst/wavparse/wavparse.vcproj
29281         * gst/y4m/y4menc.vcproj
29282         * gst-libs/gst/audio/audio.vcproj
29283         * gst-libs/gst/audio/audiofilter.vcproj
29284         * gst-libs/gst/colorbalance/colorbalance.vcproj
29285         * gst-libs/gst/idct/idtc.vcproj
29286         * gst-libs/gst/media-info/media-info.vcproj
29287         * gst-libs/gst/mixer/mixer.vcproj
29288         * gst-libs/gst/navigation/navigation.vcproj
29289         * gst-libs/gst/play/play.vcproj
29290         * gst-libs/gst/propertyprobe/propertyprobe.vcproj
29291         * gst-libs/gst/resample/resample.vcproj
29292         * gst-libs/gst/riff/riff.vcproj
29293         * gst-libs/gst/tuner/tuner.vcproj
29294         * gst-libs/gst/video/video.vcproj
29295         * gst-libs/gst/xoverlay/xoverlay.vcproj
29296           avoid problems with math.h, fix release dependancy
29297           rename GStreamer-0.8.lib to libgstreamer.lib
29298
29299 2004-07-27  Julien MOUTTE  <julien@moutte.net>
29300
29301         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
29302         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
29303         the atom is not available we have to unlock the mutex. Fixes #148023
29304
29305 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
29306
29307         * gst-libs/gst/media-info/media-info.h:
29308           issue for a vararg macro with MSVC
29309
29310 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
29311
29312         * gst/effectv/effectv.vcproj
29313         * gst-libs/gst/idct/idct.vcproj:
29314         * gst-libs/gst/media-info/media-info.vcproj:
29315         * gst-libs/gst/navigation/navigation.vcproj:
29316         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
29317         * gst-libs/gst/video/video.vcproj:
29318         * gst-libs/gst/xoverlay/xoverlay.vcproj:
29319           fixes for build problems
29320
29321 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
29322
29323         * gst-libs/gst/audio/audio.def:
29324         * gst-libs/gst/audio/riff.def:
29325           add some definitions needed by plugins
29326
29327 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
29328
29329         * gst/asfdemux/gstasfmux.c
29330           Fix some 64 bits constants to be glib friendly
29331
29332 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
29333
29334         * gst/ac3parse/gstac3parse.c
29335         * gst/audioscale/gstaudioscale.c
29336         * gst/auparse/gstauparse.c
29337         * gst/colorspace/gstcolorspace.c
29338         * gst/colorspace/yuv2rgb.h
29339           local include fixes
29340
29341 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
29342
29343         * win32/gst.sln
29344           add more plugins to the build
29345
29346 2004-07-26  Julien MOUTTE  <julien@moutte.net>
29347
29348         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
29349         (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
29350
29351 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
29352
29353         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
29354         (gst_level_set_property), (gst_level_get_property),
29355         (gst_level_base_init), (gst_level_class_init):
29356           add debugging categories.  cleanups.
29357
29358 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
29359
29360         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
29361         (gst_videoscale_planar411), (gst_videoscale_planar400),
29362         (gst_videoscale_packed422), (gst_videoscale_packed422rev),
29363         (gst_videoscale_scale_nearest_str1),
29364         (gst_videoscale_scale_nearest_str2),
29365         (gst_videoscale_scale_nearest_str4),
29366         (gst_videoscale_scale_nearest_16bit),
29367         (gst_videoscale_scale_nearest_24bit):
29368           fixed stride issues
29369           tested with 320x240 -> 321, 322, 324 x240
29370           tested with YV12, I420, YUY2, UYVY
29371           fixed packed422rev (don't think it could have worked before)
29372           by testing with UYVY
29373
29374 2004-07-26  Benjamin Otte  <otte@gnome.org>
29375
29376         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
29377         (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
29378         (plugin_init):
29379           add debugging category, add error checks like checking return values
29380           of setup calls, make sure it still works after
29381           PLAYING=>NULL=>PLAYING, fix encoding of mono streams
29382
29383 2004-07-26  Wim Taymans  <wim@fluendo.com>
29384
29385         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
29386         (gst_mpeg_demux_get_audio_stream),
29387         (gst_mpeg_demux_process_private):
29388         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
29389         Check for error codes from the negotiation functions. Make sure
29390         we really set the pad caps when a new pad is created.
29391
29392 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
29393
29394         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
29395         (gst_ffmpeg_caps_to_pix_fmt):
29396         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
29397         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
29398         (gst_ffmpegcolorspace_pad_link):
29399           don't make function do two things at the same time without reason.
29400
29401 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
29402
29403         * gst/ac3parse/ac3parse.vcproj
29404         * gst/adder/adder.vcproj
29405         * gst/alpha/alpha.vcproj
29406         * gst/alpha/alphacolor.vcproj
29407         * gst/asfdemux/asf.vcproj
29408         * gst/audioconvert/audioconvert.vcproj
29409         * gst/audiorate/audiorate.vcproj
29410         * gst/audioscale/audioscale.vcproj
29411         * gst/auparse/auparse.vcproj
29412         * gst/avi/avi.vcproj
29413         * gst/cdxaparse/cdxaparse.vcproj
29414         * gst/chart/chart.vcproj
29415         * gst/colorspace/colorspace.vcproj
29416         * gst/cutter/cutter.vcproj
29417         * gst/debug/debug.vcproj
29418         * gst/debug/efence.vcproj
29419         * gst/debug/navigationtest.vcproj
29420         * gst/deinterlace/deinterlace.vcproj
29421         * gst/effectv/effectv.vcproj
29422         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
29423         * gst/filter/filter.vcproj
29424         * gst/flx/flxdec.vcproj
29425         * gst/goom/goom.vcproj
29426         * gst/interleave/interleave.vcproj
29427         * gst/law/alaw.vcproj
29428         * gst/law/mulaw.vcproj
29429         * gst/matroska/matroska.vcproj
29430         * gst/median/median.vcproj
29431         * gst/mixmatrix/mixmatrix.vcproj
29432         * gst/mpeg1sys/mpeg1systemencode.vcproj
29433         * gst/mpeg1videoparse/mp1videoparse.vcproj
29434         * gst/mpeg2sub/mpeg2subt.vcproj
29435         * gst/mpegaudio/mpegaudio.vcproj
29436         * gst/mpegaudioparse/mpegaudioparse.vcproj
29437         * gst/mpegstream/mpegstream.vcproj
29438         * gst/multifilesink/multifilesink.vcproj
29439         * gst/multipart/multipart.vcproj
29440         * gst/oneton/oneton.vcproj
29441         * gst/overlay/overlay.vcproj
29442         * gst/passthrough/passthrough.vcproj
29443         * gst/qtdemux/qtdemux.vcproj
29444         * gst/realmedia/rmdemux.vcproj
29445         * gst/rtjpeg/rtjpeg.vcproj
29446         * gst/rtp/rtp.vcproj
29447         * gst/silence/silence.vcproj
29448         * gst/sine/sinesrc.vcproj
29449         * gst/smooth/smooth.vcproj
29450         * gst/smpte/smpte.vcproj
29451         * gst/spectrum/spectrum.vcproj
29452         * gst/speed/speed.vcproj
29453         * gst/stereo/stereo.vcproj
29454         * gst/switch/switch.vcproj
29455         * gst/tags/tagedit.vcproj
29456         * gst/tcp/tcp.vcproj
29457         * gst/typefind/typefindfunctions.vcproj
29458         * gst/udp/udp.vcproj
29459         * gst/videobox/videobox.vcproj
29460         * gst/videocrop/videocrop.vcproj
29461         * gst/videodrop/videodrop.vcproj
29462         * gst/videofilter/gamma.vcproj
29463         * gst/videofilter/videobalance.vcproj
29464         * gst/videofilter/videofilter.vcproj
29465         * gst/videofilter/videoflip.vcproj
29466         * gst/videoflip/videoflip.vcproj
29467         * gst/videomixer/videomixer.vcproj
29468         * gst/videorate/videorate.vcproj
29469         * gst/videoscale/videoscale.vcproj
29470         * gst/videotestsrc/videotestsrc.vcproj
29471         * gst/virtualdub/virtualdub.vcproj
29472         * gst/volenv/volenv.vcproj
29473         * gst/volume/volume.vcproj
29474         * gst/wavenc/wavenc.vcproj
29475         * gst/wavparse/wavparse.vcproj
29476         * gst/y4m/y4menc.vcproj
29477           more plugins supported under windows
29478
29479 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
29480
29481         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
29482         (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
29483         (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
29484         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
29485         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
29486           Add debugging statements.  Use the sizes as returned by the
29487           *CreateImage calls.
29488
29489 2004-07-26  Johan Dahlin  <johan@gnome.org>
29490
29491         * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
29492         the pad is negotiated.
29493
29494         * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
29495
29496 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
29497
29498         * gst-libs/gst/colorbalance/colorbalance.vcproj:
29499         * gst-libs/gst/idct/idct.vcproj:
29500         * gst-libs/gst/media-info/media-info.vcproj:
29501         * gst-libs/gst/mixer/mixer.vcproj:
29502         * gst-libs/gst/navigation/navigation.vcproj:
29503         * gst-libs/gst/play/play.vcproj:
29504         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
29505         * gst-libs/gst/resample/resample.vcproj:
29506         * gst-libs/gst/tuner/tuner.vcproj:
29507         * gst-libs/gst/video/video.vcproj:
29508         * gst-libs/gst/xoverlay/xoverlay.vcproj:
29509           more plugins supported under windows
29510
29511 2004-07-25 Iain <iain@prettypeople.org>
29512
29513         * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
29514         pad now rather than when the pad is created because state changes wipe
29515         explicit caps (fixes #148043).
29516
29517 2004-07-25  Sebastien Cote  <sc5@hermes.usherb.ca>
29518
29519         reviewed by Benjamin Otte  <otte@gnome.org>
29520
29521         * ext/mad/gstmad.c:
29522           fix mad plugin crashing on Sun (fixes #148289)
29523
29524 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
29525
29526         * gst/avi/avi.def:
29527         * gst/avi/avi.vcproj:
29528         * gst/matroska/matroska.def:
29529         * gst/matroska/matroska.vcproj:
29530           remove unused .def files
29531
29532 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
29533
29534         * gst-libs/gst/audio/gstaudiofilter.c:
29535           Clean the local include
29536
29537 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
29538
29539         * win32/gst.sln:
29540         * gst-libs/gst/audio/audio.def:
29541         * gst-libs/gst/audio/audio.vcproj:
29542         * gst-libs/gst/audio/audiofilter.vcproj:
29543         * gst-libs/gst/audio/riff.def:
29544         * gst-libs/gst/audio/riff.vcproj:
29545         * gst-libs/gst/gst-libs.def:
29546         * gst-libs/gst/gst-libs.vcproj:
29547         * gst/avi/avi.vcproj:
29548         * gst/avi/avi.vcproj:
29549           Copy the files where needed after building, cleaner projects
29550
29551 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
29552
29553         * gst/matroska/ebml-write.c:
29554           Fix some 64 bits constants to be glib friendly
29555
29556 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
29557
29558         * win32/gst.sln:
29559         * gst-libs/gst/gst-libs.def:
29560         * gst-libs/gst/gst-libs.vcproj:
29561         * gst/matroska/matroska.def:
29562         * gst/matroska/matroska.vcproj:
29563           Add the preliminary canvas to build plugins on Win32
29564
29565 2004-07-23  Benjamin Otte  <otte@gnome.org>
29566
29567         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
29568           don't enfore negotiation from source side, it breaks
29569           sinesrc ! audioconvert ! osssink
29570
29571 2004-07-22  David Schleef  <ds@schleef.org>
29572
29573         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
29574         for ELF files, since they can easily be recognized as audio/mpeg.
29575         (bug #147441)
29576
29577 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
29578
29579         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
29580         (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
29581         (gst_videoscale_scale_nearest_24bit),
29582         (gst_videoscale_scale_nearest_16bit):
29583           fix 16bit and 24bit for stride (24bit might need testing)
29584           don't pretend we do more than one algorithm
29585
29586 2004-07-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29587
29588         * configure.ac:
29589         * gst/Makefile.am:
29590         * gst/multifilesink/Makefile.am:
29591         * gst/multifilesink/gstmultifilesink.c:
29592         (gst_multifilesink_get_formats),
29593         (gst_multifilesink_get_query_types), (_do_init),
29594         (gst_multifilesink_base_init), (gst_multifilesink_class_init),
29595         (gst_multifilesink_init), (gst_multifilesink_dispose),
29596         (gst_multifilesink_set_location), (gst_multifilesink_set_property),
29597         (gst_multifilesink_get_property), (gst_multifilesink_open_file),
29598         (gst_multifilesink_close_file), (gst_multifilesink_next_file),
29599         (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
29600         (gst_multifilesink_chain), (gst_multifilesink_change_state),
29601         (gst_multifilesink_uri_get_type),
29602         (gst_multifilesink_uri_get_protocols),
29603         (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
29604         (gst_multifilesink_uri_handler_init), (plugin_init):
29605         * gst/multifilesink/gstmultifilesink.h:
29606         * testsuite/Makefile.am:
29607         * testsuite/multifilesink/Makefile.am:
29608         * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
29609         (gst_newmedia_class_init), (gst_newmedia_init),
29610         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
29611         (newfile_signal), (test_signal), (main):
29612         multifilesink plugin for creating new files every time a new media
29613         discontinuity event occurs
29614
29615 2004-07-22  Wim Taymans  <wim@fluendo.com>
29616
29617         * gst/alpha/Makefile.am:
29618         * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
29619         (gst_alpha_color_base_init), (gst_alpha_color_class_init),
29620         (gst_alpha_color_init), (gst_alpha_color_set_property),
29621         (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
29622         (transform), (gst_alpha_color_chain),
29623         (gst_alpha_color_change_state), (plugin_init):
29624         Stupid plugin to to RGBA to AYUV conversion because none of
29625         the colorspace plugins can handle that yet.
29626
29627 2004-07-22  Wim Taymans  <wim@fluendo.com>
29628
29629         * examples/seeking/seek.c: (update_scale), (main):
29630         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
29631         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
29632         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
29633         (gst_decode_bin_init), (gst_decode_bin_dispose),
29634         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
29635         (no_more_pads), (close_link), (type_found),
29636         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
29637         (plugin_init):
29638         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
29639         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
29640         (gst_play_base_bin_dispose), (queue_overrun),
29641         (gen_preroll_element), (remove_prerolls), (unknown_type),
29642         (no_more_pads), (new_stream), (setup_source),
29643         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
29644         (play_base_eos), (gst_play_base_bin_change_state),
29645         (gst_play_base_bin_add_element),
29646         (gst_play_base_bin_remove_element),
29647         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
29648         (gst_play_base_bin_unlink_stream),
29649         (gst_play_base_bin_get_streaminfo):
29650         * gst/playback/gstplaybin.c: (gen_video_element),
29651         (gen_audio_element):
29652         * gst/playback/gststreaminfo.h:
29653         More playback updates, attempt to fix things after the state change
29654         breakage.
29655
29656 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
29657
29658         * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
29659         (gst_videoscale_scale_nearest_16bit):
29660           comment algorithm
29661
29662 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
29663
29664         * gst/videotestsrc/gstvideotestsrc.c:
29665         (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
29666         (gst_videotestsrc_init), (gst_videotestsrc_get),
29667         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
29668         (gst_videotestsrc_get_property):
29669         * gst/videotestsrc/gstvideotestsrc.h:
29670         * gst/videotestsrc/videotestsrc.c:
29671         * gst/videotestsrc/videotestsrc.h:
29672           cleanup and commenting
29673
29674 2004-07-21  Wim Taymans  <wim@fluendo.com>
29675
29676         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
29677         (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
29678         (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
29679         (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
29680         (_find_chain_get_unknown_part), (_find_streams_check),
29681         (gst_ogg_demux_push), (gst_ogg_pad_push):
29682         * ext/theora/theoradec.c: (theora_get_formats),
29683         (theora_dec_src_convert), (theora_dec_sink_convert),
29684         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
29685         (theora_dec_chain):
29686         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
29687         (vorbis_dec_convert), (vorbis_dec_src_query),
29688         (vorbis_dec_src_event), (vorbis_dec_event):
29689         More seeking fixes, oggdemux now supports seeking to time and
29690         uses the downstream element to convert granulepos to time.
29691         Seeking in theora-only ogg files now works.
29692
29693 2004-07-21  Wim Taymans  <wim@fluendo.com>
29694
29695         * ext/theora/theoradec.c: (gst_theora_dec_init),
29696         (theora_get_formats), (theora_get_event_masks),
29697         (theora_get_query_types), (theora_dec_src_convert),
29698         (theora_dec_sink_convert), (theora_dec_src_query),
29699         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
29700         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
29701         (vorbis_get_event_masks), (vorbis_get_query_types),
29702         (gst_vorbis_dec_init), (vorbis_dec_convert),
29703         (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
29704         Added query/convert/formats functions to vorbis and theora decoders
29705         so that the outside world can use them too. Fixed seeking on an
29706         ogg/theora/vorbis file by disabling the seeking seeking on the
29707         theora srcpad.
29708
29709 2004-07-21  Julien MOUTTE  <julien@moutte.net>
29710
29711         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
29712         (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
29713         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
29714         images creation for both elements. We don't create the image on caps
29715         nego or renego, we just destroy the internal one if present if it does
29716         not match the needs. The chain function takes care of creating a new
29717         image when needed.
29718         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
29719         (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
29720         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
29721         (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
29722         the image format information. The buffer pool checks for the context
29723         image format and discard images with different formats.
29724         * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
29725
29726 2004-07-21  Thomas Vander Stichele  <thomas at apestaart dot org>
29727
29728         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
29729         (gst_ffmpegcolorspace_chain):
29730           no point in doing any chaining if the pad we want to push from
29731           isn't usable.
29732
29733 2004-07-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29734
29735         * gst-libs/gst/riff/riff-media.c:
29736         (gst_riff_create_audio_caps_with_data):
29737           Fix double end-to-native symbol conversion (#148021).
29738
29739 2004-07-20  David Schleef  <ds@schleef.org>
29740
29741         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
29742         Don't use an Atom that doesn't exist.
29743
29744 2004-07-20  Wim Taymans  <wim@fluendo.com>
29745
29746         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
29747         (gst_multifdsink_add), (gst_multifdsink_get_stats),
29748         (gst_multifdsink_client_remove),
29749         (gst_multifdsink_handle_client_write),
29750         (gst_multifdsink_queue_buffer):
29751         * gst/tcp/gstmultifdsink.h:
29752         More multifdsink stats. Avoid deadlock by releasing locks
29753         before sending out a signal.
29754
29755 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
29756
29757         * po/LINGUAS:
29758         * po/hu.po:
29759           added Hungarian translation (Laszlo Dvornik)
29760
29761 2004-07-20  Wim Taymans  <wim@fluendo.com>
29762
29763         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
29764         (gst_multifdsink_add), (gst_multifdsink_client_remove),
29765         (gst_multifdsink_handle_client_write),
29766         (gst_multifdsink_queue_buffer):
29767         * gst/tcp/gsttcp-marshal.list:
29768         Fixed the stupid marshal definition.
29769
29770 2004-07-20  Wim Taymans  <wim@fluendo.com>
29771
29772         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
29773         (gst_multifdsink_init), (gst_multifdsink_add),
29774         (gst_multifdsink_client_remove),
29775         (gst_multifdsink_handle_client_write),
29776         (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
29777         (gst_multifdsink_set_property), (gst_multifdsink_get_property),
29778         (gst_multifdsink_init_send):
29779         * gst/tcp/gstmultifdsink.h:
29780         Added more stats, added timeout for a client, fixed some typos
29781         and added some comments.
29782
29783 2004-07-20  Wim Taymans  <wim@fluendo.com>
29784
29785         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
29786         (gst_multifdsink_add), (gst_multifdsink_get_stats),
29787         (gst_multifdsink_client_remove),
29788         (gst_multifdsink_handle_client_write):
29789         * gst/tcp/gstmultifdsink.h:
29790         * gst/tcp/gsttcp-marshal.list:
29791         Added get_stats method that returns a GValueArray of
29792         stats values.
29793
29794 2004-07-19  Benjamin Otte  <otte@gnome.org>
29795
29796         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
29797           make sure longname, description and author are valid UTF-8
29798
29799 2004-07-19  Thomas Vander Stichele  <thomas at apestaart dot org>
29800
29801         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
29802         (gst_ximagesink_set_property):
29803         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
29804         (gst_xvimagesink_set_property):
29805           make sure SYNCHRONOUS is respected after getting the X context
29806
29807 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
29808
29809         * gst/matroska/matroska-demux.c:
29810         (gst_matroska_demux_handle_src_event),
29811         (gst_matroska_demux_parse_blockgroup):
29812         * gst/matroska/matroska-ids.h:
29813           add BlockReference tag and ignore it to clear out log.
29814           ignore NAVIGATION events to clear out log.
29815
29816 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
29817
29818         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
29819         (gst_matroska_demux_add_stream):
29820         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
29821           add debug categories
29822
29823 2004-07-16  Wim Taymans  <wim@fluendo.com>
29824
29825         * ext/libpng/Makefile.am:
29826         * ext/libpng/gstpng.c: (plugin_init):
29827         * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
29828         (gst_pngdec_get_type), (gst_pngdec_base_init),
29829         (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
29830         (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
29831         * ext/libpng/gstpngdec.h:
29832         Added png decoder.
29833
29834 2004-07-16  Julien MOUTTE  <julien@moutte.net>
29835
29836         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
29837         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
29838         (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
29839         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
29840         (gst_ximagesink_buffer_alloc):
29841         * sys/ximage/ximagesink.h:
29842         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
29843         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
29844         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
29845         (gst_xvimagesink_buffer_alloc):
29846         * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
29847         again. Using internal data pointer of the x(v)image to store image's
29848         data to be coherent with the buffer alloc mechanism. Investigated the
29849         image destruction code to be sure that everything gets freed correctly.
29850
29851 2004-07-16  Wim Taymans  <wim@fluendo.com>
29852
29853         * gst-libs/gst/riff/riff-read.c:
29854         (gst_riff_read_strf_vids_with_data),
29855         (gst_riff_read_strf_auds_with_data):
29856         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
29857         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
29858         Make sure we don't create 0 sized subbuffers in riff-read.
29859         Signal the no more pads signal after reading the avi header.
29860
29861 2004-07-16  Wim Taymans  <wim@fluendo.com>
29862
29863         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
29864         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
29865         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
29866         (gst_decode_bin_init), (gst_decode_bin_dispose),
29867         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
29868         (no_more_pads), (close_link), (type_found),
29869         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
29870         (gst_decode_bin_change_state), (plugin_init):
29871         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
29872         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
29873         (gst_play_base_bin_dispose), (queue_overrun),
29874         (gen_preroll_element), (remove_prerolls), (unknown_type),
29875         (no_more_pads), (new_stream), (setup_source),
29876         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
29877         (play_base_eos), (gst_play_base_bin_change_state),
29878         (gst_play_base_bin_add_element),
29879         (gst_play_base_bin_remove_element),
29880         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
29881         (gst_play_base_bin_unlink_stream),
29882         (gst_play_base_bin_get_streaminfo):
29883         * gst/playback/gstplaybasebin.h:
29884         Better error recovery. Added configurable preroll queue size. Faster
29885         detection of no-more-pads.
29886
29887 2004-07-16  Wim Taymans  <wim@fluendo.com>
29888
29889         * gst-libs/gst/video/video.h:
29890         Added 32 bits RGBA. Not sure if we should use another mime-type
29891         for alpha rgb. Currently the presence of the alpha_mask property
29892         signals an alpha channel.
29893
29894 2004-07-16  Wim Taymans  <wim@fluendo.com>
29895
29896         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
29897         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
29898         FPS seems to be 0.0 to MAX everywhere else.
29899
29900 2004-07-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29901
29902         * gst-libs/gst/riff/riff-media.c:
29903         (gst_riff_create_video_caps_with_data):
29904           mp42/mp43 (no caps) exist too.
29905         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
29906           Set pixel_width/height; we've got them in-caps.
29907         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
29908         * gst/wavparse/gstwavparse.c: (plugin_init):
29909           Both are valid primary.
29910         * sys/oss/gstossmixer.c:
29911           Remove i18n hack and enable translations.
29912
29913 2004-07-15  Benjamin Otte  <otte@gnome.org>
29914
29915         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
29916         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
29917           fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
29918
29919 2004-07-15  Benjamin Otte  <otte@gnome.org>
29920
29921         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
29922         (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
29923         (gst_alsa_close_audio):
29924           disable some of the debugging code for now. Writing debugging to a
29925           buffer is broken in current alsalib releases.
29926
29927 2004-07-12  Benjamin Otte  <otte@gnome.org>
29928
29929         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
29930           use bufferpools
29931
29932 2004-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
29933
29934         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
29935         (theora_dec_src_query), (theora_dec_event):
29936         * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
29937           add debugging categories.  Remove \n's.
29938
29939 2004-07-13  Johan Dahlin  <johan@gnome.org>
29940
29941         * gst/playback/gstplaybin.c (gst_play_bin_set_property)
29942         (gst_play_bin_get_property): Impl.
29943
29944 2004-07-13  Wim Taymans  <wim@fluendo.com>
29945
29946         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
29947         When trying to find the stream length, seek back N pages
29948         instead of just one, where N is the number of streams in
29949         the current chain.
29950
29951 2004-07-13  Wim Taymans  <wim@fluendo.com>
29952
29953         * gst-libs/gst/riff/riff-media.c:
29954         (gst_riff_create_audio_caps_with_data),
29955         (gst_riff_create_audio_caps),
29956         (gst_riff_create_audio_template_caps):
29957         * gst-libs/gst/riff/riff-media.h:
29958         * gst-libs/gst/riff/riff-read.c:
29959         (gst_riff_read_strf_vids_with_data),
29960         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
29961         * gst-libs/gst/riff/riff-read.h:
29962         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
29963         (gst_avi_demux_add_stream):
29964         Set codec_data on caps for avidemuxer.
29965
29966 2004-07-12  David Schleef  <ds@schleef.org>
29967
29968         * configure.ac: Fix test for Objective C
29969
29970 2004-07-12  Jan Schmidt  <thaytan@mad.scientist.com>
29971         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
29972         (gst_gdk_pixbuf_chain):
29973           Add svg and pcx to template caps, and ensure that getcaps returns a
29974           subset of the template caps.
29975           Copy each row manually for output, as gdkpixbuf may pad the
29976           rowstride to a 32-bit word boundary.
29977
29978 2004-07-12  Wim Taymans  <wim@fluendo.com>
29979
29980         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
29981         (gst_riff_create_video_template_caps):
29982         Fix the template caps to include some more media types.
29983
29984 2004-07-12  Wim Taymans  <wim@fluendo.com>
29985
29986         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
29987         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
29988         (compare_ranks), (print_feature), (gst_decode_bin_init),
29989         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
29990         (try_to_link_1), (new_pad), (close_link), (type_found),
29991         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
29992         (gst_decode_bin_change_state), (plugin_init):
29993         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
29994         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
29995         (gst_play_base_bin_dispose), (queue_overrun),
29996         (gen_preroll_element), (remove_prerolls), (no_more_pads),
29997         (new_stream), (setup_source), (gst_play_base_bin_set_property),
29998         (gst_play_base_bin_get_property), (play_base_eos),
29999         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
30000         (gst_play_base_bin_remove_element),
30001         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
30002         (gst_play_base_bin_unlink_stream),
30003         (gst_play_base_bin_get_streaminfo):
30004         * gst/playback/gstplaybasebin.h:
30005         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
30006         (gst_play_bin_class_init), (gst_play_bin_init),
30007         (gst_play_bin_dispose), (gst_play_bin_set_property),
30008         (gst_play_bin_get_property), (gen_video_element),
30009         (gen_audio_element), (remove_sinks), (setup_sinks),
30010         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
30011         (gst_play_bin_send_event), (gst_play_bin_get_formats),
30012         (gst_play_bin_convert), (gst_play_bin_get_query_types),
30013         (gst_play_bin_query), (plugin_init):
30014         * gst/playback/test4.c: (main):
30015         More fixes on reusing of the element.
30016
30017 2004-07-11  Benjamin Otte  <otte@gnome.org>
30018
30019         * ext/mad/gstmad.c: (normal_seek):
30020           allow seeking for other methods than just SET
30021
30022 2004-07-11  Andy Wingo  <wingo@pobox.com>
30023
30024         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
30025         float, "any" caps -> buffer_frames=[0,MAX].
30026
30027         * gst/interleave/interleave.c (interleave_getcaps): Seems the core
30028         doesn't intersect our caps with the template any more. Do it
30029         ourselves.
30030         (interleave_buffered_loop): Use g_newa instead of malloc/free.
30031
30032 2004-07-09  Wim Taymans  <wim@fluendo.com>
30033
30034         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
30035         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
30036         (compare_ranks), (print_feature), (gst_decode_bin_init),
30037         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
30038         (try_to_link_1), (new_pad), (close_link), (type_found),
30039         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
30040         (gst_decode_bin_change_state), (plugin_init):
30041         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
30042         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
30043         (gst_play_base_bin_dispose), (queue_overrun),
30044         (gen_preroll_element), (remove_prerolls), (no_more_pads),
30045         (new_stream), (setup_source), (gst_play_base_bin_set_property),
30046         (gst_play_base_bin_get_property), (play_base_eos),
30047         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
30048         (gst_play_base_bin_remove_element),
30049         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
30050         (gst_play_base_bin_unlink_stream),
30051         (gst_play_base_bin_get_streaminfo):
30052         * gst/playback/gstplaybasebin.h:
30053         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
30054         (gst_play_bin_class_init), (gst_play_bin_init),
30055         (gst_play_bin_dispose), (gst_play_bin_set_property),
30056         (gst_play_bin_get_property), (gen_video_element),
30057         (gen_audio_element), (remove_sinks), (setup_sinks),
30058         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
30059         (gst_play_bin_send_event), (gst_play_bin_get_formats),
30060         (gst_play_bin_convert), (gst_play_bin_get_query_types),
30061         (gst_play_bin_query), (plugin_init):
30062         * gst/playback/test4.c: (main):
30063         Work on object reuse and seeking.
30064
30065 2004-07-09  Wim Taymans  <wim@fluendo.com>
30066
30067         * examples/seeking/seek.c: (iterate):
30068         Don't consume all CPU in the idle loop.
30069
30070 2004-07-09  Wim Taymans  <wim@fluendo.com>
30071
30072         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
30073         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
30074         Add pad to element *after* setting the pad functions so that
30075         the scheduler can use the correct ones.
30076
30077 2004-07-09  Wim Taymans  <wim@fluendo.com>
30078
30079         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
30080         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
30081         Sync to keyframe after seek
30082
30083 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
30084
30085         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
30086         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
30087         (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
30088         * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
30089         * ext/libvisual/visual.c: (gst_visual_change_state):
30090         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
30091         * ext/theora/theoradec.c: (theora_dec_change_state):
30092         * ext/theora/theoraenc.c: (theora_enc_change_state):
30093         * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
30094         * gst-libs/gst/navigation/navigation.c:
30095         * gst/adder/gstadder.c: (gst_adder_change_state):
30096         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
30097         (gst_audio_convert_get_buffer):
30098         * gst/multipart/multipartdemux.c:
30099         (gst_multipart_demux_change_state):
30100         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
30101         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
30102         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
30103         * gst/videoscale/gstvideoscale.c:
30104         (gst_videoscale_handle_src_event):
30105         * gst/volume/gstvolume.c: (volume_chain_int16):
30106           don't assert in state change, this should be done by the base
30107           GstElement class.
30108           various debugging fixes.
30109
30110 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
30111
30112         * configure.ac:
30113         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
30114         (gst_play_dispose), (gst_play_set_location),
30115         (gst_play_set_data_src), (gst_play_set_video_sink),
30116         (gst_play_set_audio_sink), (gst_play_set_visualization),
30117         (gst_play_connect_visualization), (gst_play_get_sink_element),
30118         (gst_play_get_all_by_interface):
30119         * gst-libs/gst/play/play.h:
30120           add new method to get elements implementing an interface.
30121           add various error logging
30122
30123 2004-07-08  Wim Taymans  <wim@fluendo.com>
30124
30125         * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
30126         (make_mpeg_pipeline), (make_mpegnt_pipeline),
30127         (make_playerbin_pipeline), (query_durations_elems),
30128         (query_durations_pads), (query_positions_elems),
30129         (query_positions_pads), (update_scale), (iterate), (stop_seek),
30130         (main):
30131         Added playbin seeking example.
30132
30133 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
30134
30135         * gst-libs/gst/play/play.c: (gst_play_set_location),
30136         (gst_play_set_data_src), (gst_play_set_video_sink),
30137         (gst_play_set_audio_sink), (gst_play_set_visualization),
30138         (gst_play_connect_visualization), (gst_play_get_framerate):
30139           use a macro to look up elements from hash table
30140
30141 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
30142
30143         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
30144         (gst_play_get_length_callback), (gst_play_set_location),
30145         (gst_play_seek_to_time), (gst_play_set_data_src),
30146         (gst_play_set_video_sink), (gst_play_set_audio_sink),
30147         (gst_play_set_visualization), (gst_play_connect_visualization),
30148         (gst_play_get_sink_element):
30149         - add debugging info
30150         - fix looking up sink elements by iterating over complete caps
30151         - put everything except for source and autoplugger in a complete bin
30152
30153 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
30154
30155         * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
30156         * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
30157         (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
30158         (gst_alsa_sink_write), (gst_alsa_sink_loop):
30159         * ext/alsa/gstalsasink.h:
30160         - add debugging info
30161         - clean up schizophrenia of data/buffer/event
30162         - fix double event unref error
30163
30164 2004-07-08  Wim Taymans  <wim@fluendo.com>
30165
30166         * gst/playback/Makefile.am:
30167         Add headers to noinst
30168
30169 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
30170
30171         * tools/gst-launch-ext-m.m:
30172         * tools/gst-launch-ext.1.in:
30173           convert to the third millenium
30174
30175 2004-07-07  David Schleef  <ds@schleef.org>
30176
30177         * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
30178
30179 2004-07-07  Wim Taymans  <wim@fluendo.com>
30180
30181         * gst/playback/Makefile.am:
30182         * gst/playback/README:
30183         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
30184         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
30185         (compare_ranks), (print_feature), (gst_decode_bin_init),
30186         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
30187         (try_to_link_1), (new_pad), (close_link), (type_found),
30188         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
30189         (plugin_init):
30190         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
30191         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
30192         (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
30193         (gen_preroll_element), (no_more_pads), (new_stream),
30194         (setup_source), (gst_play_base_bin_set_property),
30195         (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
30196         (gst_play_base_bin_add_element),
30197         (gst_play_base_bin_remove_element),
30198         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
30199         (gst_play_base_bin_unlink_stream),
30200         (gst_play_base_bin_get_streaminfo):
30201         * gst/playback/gstplaybasebin.h:
30202         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
30203         (gst_play_bin_class_init), (gst_play_bin_init),
30204         (gst_play_bin_dispose), (gst_play_bin_set_property),
30205         (gst_play_bin_get_property), (gen_video_element),
30206         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
30207         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
30208         (gst_play_bin_get_formats), (gst_play_bin_convert),
30209         (gst_play_bin_get_query_types), (gst_play_bin_query),
30210         (plugin_init):
30211         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
30212         (gst_stream_info_get_type), (gst_stream_info_class_init),
30213         (gst_stream_info_init), (gst_stream_info_new),
30214         (gst_stream_info_dispose), (gst_stream_info_set_property),
30215         (gst_stream_info_get_property):
30216         * gst/playback/gststreaminfo.h:
30217         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
30218         (main):
30219         * gst/playback/test2.c: (main):
30220         * gst/playback/test3.c: (update_scale), (main):
30221         More playbin fixes. Added README. Do better element filtering.
30222         Added base class to preroll media. Added test apps.
30223
30224 2004-07-07  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
30225
30226         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
30227         * ext/mpeg2dec/gstmpeg2dec.h:
30228           various debugging improvements.  Reset stream to next picture
30229           instead of sequence header, otherwise seeks cannot work.
30230
30231 2004-07-07  Wim Taymans  <wim@fluendo.com>
30232
30233         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
30234         (gst_video_box_class_init), (gst_video_box_set_property),
30235         (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
30236         Use pad_alloc where possible.
30237
30238 2004-07-07  Wim Taymans  <wim@fluendo.com>
30239
30240         * sys/oss/gstosselement.c: (gst_osselement_reset),
30241         (gst_osselement_parse_caps):
30242         * sys/oss/gstosselement.h:
30243         * sys/oss/gstosssrc.c: (gst_osssrc_get):
30244         Fix offset on osssrc.
30245
30246 2004-07-07  Wim Taymans  <wim@fluendo.com>
30247
30248         * ext/theora/theora.c: (plugin_init):
30249         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
30250         (theora_dec_src_query), (theora_dec_chain):
30251         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
30252         (theora_enc_sink_link), (theora_buffer_from_packet),
30253         (theora_push_packet), (theora_enc_chain):
30254         Fix theora granulepos calculation.
30255         Fix overflow in duration/position calculation.
30256         Bump rank to PRIMARY for theoradec.
30257         Use granulepos of last packet to calculate position.
30258         Set keyframe flag on buffers when needed.
30259
30260 2004-07-06  David Schleef  <ds@schleef.org>
30261
30262         * gst/playback/Makefile.am: 'test' in bin_PROGRAMS?  Are you
30263         serious?  (Fixed, obviously.)
30264
30265 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
30266
30267         * po/LINGUAS:
30268         * po/cs.po:
30269           added Czech translation (Miloslav Trmac)
30270
30271 2004-07-05  Wim Taymans  <wim@fluendo.com>
30272
30273         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
30274         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
30275         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
30276         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
30277         (close_link), (type_found), (gst_decode_bin_set_property),
30278         (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
30279         (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
30280         (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
30281         (gst_decode_bin_query), (plugin_init):
30282         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
30283         (gst_play_bin_class_init), (gst_play_bin_init),
30284         (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
30285         (get_video_element), (new_pad), (setup_source),
30286         (gst_play_bin_set_property), (gst_play_bin_get_property),
30287         (gst_play_bin_change_state), (gst_play_bin_add_element),
30288         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
30289         (gst_play_bin_send_event), (gst_play_bin_get_formats),
30290         (gst_play_bin_convert), (gst_play_bin_get_query_types),
30291         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
30292         * gst/playback/test.c: (main):
30293         More fixes, cleaned up playbin, make it use decodebin. Added
30294         threaded property to playbin.
30295
30296 2004-07-05  Wim Taymans  <wim@fluendo.com>
30297
30298         * configure.ac:
30299         * gst/playback/Makefile.am:
30300         * gst/playback/decodetest.c: (main):
30301         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
30302         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
30303         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
30304         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
30305         (close_link), (type_found), (gst_decode_bin_set_property),
30306         (gst_decode_bin_get_property), (gst_decode_bin_change_state),
30307         (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
30308         (gst_decode_bin_get_formats), (gst_decode_bin_convert),
30309         (gst_decode_bin_get_query_types), (gst_decode_bin_query),
30310         (plugin_init):
30311         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
30312         (gst_play_bin_class_init), (gst_play_bin_init),
30313         (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
30314         (collect_sink_pads), (find_compatibles), (close_pad_link),
30315         (try_to_link_1), (new_pad), (close_link), (type_found),
30316         (setup_source), (gst_play_bin_set_property),
30317         (gst_play_bin_get_property), (gst_play_bin_factory_filter),
30318         (compare_ranks), (gst_play_bin_collect_factories),
30319         (gst_play_bin_change_state), (gst_play_bin_add_element),
30320         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
30321         (gst_play_bin_send_event), (gst_play_bin_get_formats),
30322         (gst_play_bin_convert), (gst_play_bin_get_query_types),
30323         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
30324         * gst/playback/test.c: (main):
30325         Added some playback helper elements and some test apps, very alpha
30326         still.
30327
30328 2004-07-04  Benjamin Otte  <otte@gnome.org>
30329
30330         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
30331           only restart audio when we indeed have an xrun to fix repeated
30332           xruns. Fix suggested by Giuliano Pochini.
30333
30334 2004-07-03  David Schleef  <ds@schleef.org>
30335
30336         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
30337         call to gst_debug_log() if debugging is disabled (bug #145118)
30338
30339 2004-07-03  Benjamin Otte  <otte@gnome.org>
30340
30341         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
30342           use our own functions for restarting the alsa device.
30343         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
30344           I should apply patches myself - use MIN for the third argument, not
30345           the second, this fixes seeking
30346
30347 2004-07-02  David Schleef  <ds@schleef.org>
30348
30349         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
30350         (gst_flacdec_write):  Actually, GST_PAD_CAPS() has nothing to
30351         do with the logic.
30352
30353 2004-07-02  David Schleef  <ds@schleef.org>
30354
30355         * ext/flac/gstflacdec.c: (gst_flacdec_write):  Set duration on
30356         output buffers.  Fix logic mistake.  (bug #144866)
30357
30358 2004-07-02  David Schleef  <ds@schleef.org>
30359
30360         * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
30361         on X.  (bug #144753)
30362
30363 2004-07-02  David Schleef  <ds@schleef.org>
30364
30365         * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
30366         (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
30367         (bug #144624)
30368         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
30369         (gst_osselement_rate_probe_check): Add another workaround for
30370         buggy drivers (bug #145336)
30371
30372 2004-07-02  David Schleef  <ds@schleef.org>
30373
30374         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
30375         Most systems don't have MSG_NOSIGNAL.
30376
30377 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
30378
30379         * Makefile.am:
30380         * gst-libs/gst/colorbalance/Makefile.am:
30381         * gst-libs/gst/mixer/Makefile.am:
30382         * gst-libs/gst/play/Makefile.am:
30383         * gst-libs/gst/tuner/Makefile.am:
30384           (hopefully) fix both install and dist and make error message useful.
30385           needs testing across automakes.
30386
30387 2004-07-02  Benjamin Otte  <otte@gnome.org>
30388
30389         * ext/ogg/gstogg.c: (plugin_init):
30390           we require bytestream now
30391         * ext/ogg/gstoggdemux.c:
30392           huge diff to implement chain setup in a fast and generic way. This
30393           improves tag reading and startup of huge files (read: Theora videos)
30394           quite a bit. It probably contains bugs, too, so please test.
30395           Seeking is not improved to the fast method.
30396
30397 2004-06-29  Wim Taymans  <wim@fluendo.com>
30398
30399         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
30400         * ext/ogg/gstoggmux.c:
30401         Fix memleak in oggdemux when running unconnected pads.
30402         doc update in mux, start working on keyframe mode.
30403
30404 2004-06-29  Benjamin Otte  <otte@gnome.org>
30405
30406         * sys/oss/gstosssink.c:
30407         * sys/oss/gstosssrc.c:
30408           advertise correct template caps - we indeed do non-native endianness
30409           and 8bit audio has no endianness
30410         * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
30411         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
30412           avoid (wrong) duplications in getcaps function and return
30413           template caps
30414
30415 2004-06-29  Wim Taymans  <wim@fluendo.com>
30416
30417         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
30418         (gst_multifdsink_class_init), (gst_multifdsink_add),
30419         (gst_multifdsink_remove), (gst_multifdsink_clear),
30420         (gst_multifdsink_client_remove),
30421         (gst_multifdsink_handle_client_read),
30422         (gst_multifdsink_client_queue_data),
30423         (gst_multifdsink_client_queue_caps),
30424         (gst_multifdsink_client_queue_buffer),
30425         (gst_multifdsink_handle_client_write),
30426         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
30427         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
30428         (gst_multifdsink_init_send), (gst_multifdsink_close):
30429         Fix wrong GList iteration that could crash the server when
30430         more then 2 clients disconnect at the same time. Read all the
30431         pending commands in one batch to recover from command storms under
30432         very heavy load.
30433
30434 2004-06-28  Wim Taymans  <wim@fluendo.com>
30435
30436         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
30437         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
30438         (gst_videomixer_pad_set_property),
30439         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
30440         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
30441         (gst_videomixer_class_init), (gst_videomixer_init),
30442         (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
30443         (pad_zorder_compare), (gst_videomixer_sort_pads),
30444         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
30445         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
30446         (gst_videomixer_update_queues), (gst_videomixer_loop),
30447         (plugin_init):
30448         Avoid divide by zero, choose masterpad as the pad with the highest
30449         framerate.
30450
30451 2004-06-27  Julien Moutte  <julien@moutte.net>
30452
30453         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
30454         (gst_ximagesink_xwindow_new):
30455         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
30456         (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
30457         function directly. We might want to call it from somewhere else one day.
30458
30459 2004-06-27  Julien Moutte  <julien@moutte.net>
30460
30461         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
30462         (gst_ximagesink_xwindow_new):
30463         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
30464         (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
30465         window decorations.
30466
30467 2004-06-27  Wim Taymans  <wim@fluendo.com>
30468
30469         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
30470         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
30471         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
30472         (gst_dvdec_set_property), (gst_dvdec_get_property):
30473         * ext/dv/gstdvdec.h:
30474         Implement drop_factor property to lower the framerate with
30475         a factor.
30476
30477 2004-06-27  Thomas Vander Stichele  <thomas at apestaart dot org>
30478
30479         * gst-libs/gst/colorbalance/Makefile.am:
30480         * gst-libs/gst/mixer/Makefile.am:
30481         * gst-libs/gst/play/Makefile.am:
30482         * gst-libs/gst/tuner/Makefile.am:
30483           unbreak Company's fix that didn't install the -enum.h files
30484
30485 2004-06-27  Wim Taymans  <wim@fluendo.com>
30486
30487         * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
30488         (gst_dvdec_change_state):
30489         * ext/dv/gstdvdec.h:
30490         Fix timestamp, duration and offset of the buffers.
30491
30492 2004-06-27  Wim Taymans  <wim@fluendo.com>
30493
30494         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
30495         (gst_multifdsink_class_init), (gst_multifdsink_add),
30496         (gst_multifdsink_remove), (gst_multifdsink_clear),
30497         (gst_multifdsink_client_remove),
30498         (gst_multifdsink_handle_client_read),
30499         (gst_multifdsink_client_queue_data),
30500         (gst_multifdsink_client_queue_caps),
30501         (gst_multifdsink_client_queue_buffer),
30502         (gst_multifdsink_handle_client_write),
30503         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
30504         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
30505         (gst_multifdsink_init_send), (gst_multifdsink_close):
30506         * gst/tcp/gstmultifdsink.h:
30507         * gst/tcp/gsttcpserversink.c:
30508         (gst_tcpserversink_handle_server_read),
30509         (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
30510         More multifdsink fixes, more recovery policy fixes.
30511         Removed stupid g_print
30512
30513 2004-06-26  Wim Taymans  <wim@fluendo.com>
30514
30515         * gst/tcp/Makefile.am:
30516         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
30517         (gst_multifdsink_get_type), (gst_multifdsink_base_init),
30518         (gst_multifdsink_class_init), (gst_multifdsink_init),
30519         (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
30520         (gst_multifdsink_handle_client_read),
30521         (gst_multifdsink_client_queue_data),
30522         (gst_multifdsink_client_queue_caps),
30523         (gst_multifdsink_client_queue_buffer),
30524         (gst_multifdsink_handle_client_write),
30525         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
30526         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
30527         (gst_multifdsink_chain), (gst_multifdsink_set_property),
30528         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
30529         (gst_multifdsink_close), (gst_multifdsink_change_state):
30530         * gst/tcp/gstmultifdsink.h:
30531         * gst/tcp/gsttcpplugin.c: (plugin_init):
30532         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
30533         (gst_tcpserversink_class_init), (gst_tcpserversink_init),
30534         (gst_tcpserversink_handle_server_read),
30535         (gst_tcpserversink_handle_select),
30536         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
30537         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
30538         * gst/tcp/gsttcpserversink.h:
30539         Added multifdsink, made tcpserversink a subclass of fdsink, removed
30540         one of the locks, added recovery policy to multifdsink.
30541
30542 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
30543
30544         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
30545           fix decision for when getting frames with same timestamp
30546         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
30547         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
30548         (gst_v4lsrc_get_property):
30549         * sys/v4l/gstv4lsrc.h:
30550           add latency offset property
30551
30552 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
30553
30554         * gst/videorate/gstvideorate.c: (gst_videorate_chain),
30555         (plugin_init):
30556           fix debugging. add category.
30557
30558 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
30559
30560         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
30561           fix wrong offsets
30562
30563 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
30564
30565         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
30566         (gst_alsa_src_get_time), (gst_alsa_src_loop),
30567         (gst_alsa_src_change_state):
30568           return a time that is in sync with the element's processing
30569
30570 2004-06-25  Wim Taymans  <wim@fluendo.com>
30571
30572         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
30573         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
30574         (gst_tcpserversink_client_remove),
30575         (gst_tcpserversink_handle_client_read),
30576         (gst_tcpserversink_client_queue_data),
30577         (gst_tcpserversink_client_queue_caps),
30578         (gst_tcpserversink_client_queue_buffer),
30579         (gst_tcpserversink_handle_client_write),
30580         (gst_tcpserversink_queue_buffer),
30581         (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
30582         (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
30583         (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
30584         (gst_tcpserversink_close):
30585         * gst/tcp/gsttcpserversink.h:
30586         Serversink rewrite. Really do non blocking writes to clients and
30587         maintain an internal queue to handle slower clients while not
30588         disturbing fast clients.
30589
30590 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
30591
30592         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
30593           better debug, don't override OFFSET and OFFSET_END
30594
30595 2004-06-25  Iain <iain@prettypeople.org>
30596
30597         * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
30598         name=source for the wavparse pipeline.
30599
30600 2004-06-24  Johan Dahlin  <johan@gnome.org>
30601
30602         * ext/theora/theoraenc.c (theora_enc_chain): Call
30603         gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
30604         streamheader caps are set correctly.
30605
30606 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
30607
30608         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
30609         (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
30610           respect minimum bitrate; same could be done for max bitrate
30611
30612 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
30613
30614         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
30615         (gst_vorbisenc_setup):
30616           fix sample rate range
30617
30618 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
30619
30620         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
30621         (gst_oggvorbisenc_setup):
30622         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
30623         (gst_vorbisenc_setup):
30624           resolve ambiguities in code and description
30625
30626 2004-06-24  Wim Taymans  <wim@fluendo.com>
30627
30628         * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
30629         * ext/alsa/gstalsa.h:
30630         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
30631         (gst_alsa_src_update_avail), (gst_alsa_src_loop):
30632         Use alsa trigger_tstamp to get the timestamp of the first
30633         sample in the buffer for more precise sync. Some cleanups.
30634
30635 2004-06-24  Wim Taymans  <wim@fluendo.com>
30636
30637         * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
30638         (gst_audiorate_init), (gst_audiorate_chain),
30639         (gst_audiorate_set_property), (gst_audiorate_get_property):
30640         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
30641         (gst_videorate_chain):
30642         Added some logging, fixed an overflow bug in videorate.
30643
30644 2004-06-24  Benjamin Otte  <otte@gnome.org>
30645
30646         * ext/kio/Makefile.am:
30647           fix for builddir != srcdir and distcheck
30648
30649 2004-06-24  Benjamin Otte  <otte@gnome.org>
30650
30651         * gst-libs/gst/colorbalance/Makefile.am:
30652         * gst-libs/gst/mixer/Makefile.am:
30653         * gst-libs/gst/play/Makefile.am:
30654         * gst-libs/gst/tuner/Makefile.am:
30655         * gst/tcp/Makefile.am:
30656         * sys/dxr3/Makefile.am:
30657           don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
30658           tarball.
30659           Also add all *.list files that were missing.
30660         * Makefile.am:
30661           add a distcheck hook to ensure the above doesn't happen again.
30662
30663 2004-06-23  David I. Lehn  <dlehn@users.sourceforge.net>
30664
30665         * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
30666
30667 2004-06-23  Colin Walters  <walters@redhat.com>
30668
30669         * m4/Makefile.am: Distribute gst-fionread.m4.
30670
30671 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
30672
30673         * configure.ac: back to dev
30674
30675 2004-06-23  Wim Taymans  <wim@fluendo.com>
30676
30677         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
30678         (gst_alsa_xrun_recovery):
30679         * ext/alsa/gstalsa.h:
30680         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
30681         (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
30682         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
30683         (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
30684         (gst_alsa_src_loop):
30685         Add clock to alsasrc. Take new capture timestamp when
30686         restarting after an overrun. Split up some functions between
30687         alsasrc and alsasink.
30688
30689 === release 0.8.2 ===
30690
30691 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
30692
30693         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
30694         (gst_alsa_change_state), (gst_alsa_update_avail),
30695         (gst_alsa_xrun_recovery):
30696         * ext/alsa/gstalsa.h:
30697         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
30698           merge back changes from release
30699
30700 2004-06-23  Wim Taymans  <wim@fluendo.com>
30701
30702         * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
30703         (gst_audiorate_init), (gst_audiorate_chain),
30704         (gst_audiorate_set_property), (gst_audiorate_get_property):
30705         Implement sample dropping and notify
30706
30707 2004-06-22  Wim Taymans  <wim@fluendo.com>
30708
30709         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
30710         (theora_enc_sink_link), (theora_buffer_from_packet),
30711         (theora_push_packet), (theora_enc_chain):
30712         Some cleanups, make sure the timestamps are correct.
30713
30714 2004-06-22  Wim Taymans  <wim@fluendo.com>
30715
30716         * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
30717         (gst_alsa_change_state), (gst_alsa_update_avail),
30718         (gst_alsa_xrun_recovery):
30719         * ext/alsa/gstalsa.h:
30720         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
30721         Cleanups, take queued samples into account when reporting
30722         the time.
30723
30724 2004-06-22  Wim Taymans  <wim@fluendo.com>
30725
30726         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
30727         (gst_videorate_init):
30728         Initialize the property as well.
30729
30730 2004-06-22  Wim Taymans  <wim@fluendo.com>
30731
30732         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
30733         (gst_videorate_init), (gst_videorate_chain),
30734         (gst_videorate_set_property), (gst_videorate_get_property):
30735         Add property to make videorate silent.
30736         Add property to prefer new frames over old ones.
30737
30738 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30739
30740         * sys/osxvideo/Makefile.am:
30741         Workaround so that the osxvideo .so file gets linked with the
30742         Cocoa, OpenGL and QuickTime frameworks
30743
30744 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30745
30746         * sys/osxaudio/Makefile.am:
30747         Workaround so that the osxaudio .so file gets linked with the
30748         CoreAudio framework
30749
30750 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30751
30752         * configure.ac:
30753         Whoops, my fault...fixed build issues
30754
30755 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30756
30757         * configure.ac:
30758         Add objective-c support if running in Darwin/Mac OS X
30759         * sys/Makefile.am:
30760         * sys/osxvideo:
30761         * sys/osxvideo/Makefile.am:
30762         * sys/osxvideo/osxvideosink.h:
30763         * sys/osxvideo/osxvideosink.m:
30764         * sys/osxvideo/cocoawindow.h:
30765         * sys/osxvideo/cocoawindow.m:
30766         Add osxvideosink, a cocoa-based osx video sink
30767
30768
30769 2004-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
30770         * ext/dvdnav/gst-dvd:
30771         Grab the gconf key from the right spot
30772         * gst/debug/gstnavseek.c: (gst_navseek_init),
30773         (gst_navseek_segseek), (gst_navseek_handle_src_event),
30774         (gst_navseek_chain):
30775         * gst/debug/gstnavseek.h:
30776           Add 's', 'e' and 'l' keypresses to navseek to define the start,end
30777           and loop parameters of a segment seek.
30778         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
30779         (gst_videotestsrc_get_event_masks),
30780         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
30781         * gst/videotestsrc/gstvideotestsrc.h:
30782           Add seeking support to videotestsrc
30783           Initialise the timestamp_offset variable.
30784
30785 2004-06-18  Wim Taymans  <wim@fluendo.com>
30786
30787         * ext/sidplay/gstsiddec.cc:
30788         Fix negotiation and set correct end offset.
30789
30790 2004-06-18  Thomas Vander Stichele  <thomas at apestaart dot org>
30791
30792         * configure.ac: branch and prerelease
30793
30794 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
30795
30796         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
30797         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
30798         (gst_tcpclientsrc_init_receive):
30799         * gst/tcp/gsttcpclientsrc.h:
30800           read caps when connecting to server for GDP so we set them correctly
30801
30802 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
30803
30804         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
30805           notify drops and duplicates
30806         * gst/videoscale/videoscale.c: (videoscale_get_structure):
30807           no good reason to limit ourselves to 100x100
30808
30809 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
30810
30811         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
30812         (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
30813         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
30814         (gst_v4lsrc_get_property):
30815         * sys/v4l/gstv4lsrc.h:
30816         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
30817         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
30818         (gst_v4l_set_audio):
30819         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
30820         (gst_v4lsrc_try_capture):
30821         * sys/v4l/v4lsrc_calls.h:
30822           change try_palette to more general try_capture
30823           add autoprobe option so we can turn off autoprobing
30824           various fixes
30825
30826 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
30827
30828         * configure.ac:
30829           add videorate
30830         * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
30831         (gst_ximagesink_class_init):
30832         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
30833         (gst_xvimagesink_class_init):
30834           run them as finalize, not dispose, since dispose can be invoked
30835           multiple times
30836
30837 2004-06-17  Wim Taymans  <wim@fluendo.com>
30838
30839         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
30840         (gst_alsa_get_time), (gst_alsa_xrun_recovery):
30841         * ext/alsa/gstalsa.h:
30842         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
30843         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
30844         (gst_alsa_src_change_state):
30845         * ext/alsa/gstalsasrc.h:
30846         Make the xrun code timestamp and offset the buffers correctly.
30847         moved the clock to the base class, use alsa methods to get time.
30848         Do correct timestamping on outgoing buffers.
30849
30850 2004-06-17  Wim Taymans  <wim@fluendo.com>
30851
30852         * gst/audiorate/Makefile.am:
30853         * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
30854         (gst_audiorate_base_init), (gst_audiorate_class_init),
30855         (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
30856         (gst_audiorate_set_property), (gst_audiorate_get_property),
30857         (gst_audiorate_change_state), (plugin_init):
30858         Added an audiorate converter that fills in gaps.
30859
30860 2004-06-17  Johan Dahlin  <johan@gnome.org>
30861
30862         * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
30863
30864 2004-06-16  Wim Taymans  <wim@fluendo.com>
30865
30866         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
30867         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
30868         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
30869         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
30870         (gst_v4lsrc_get_property):
30871         * sys/v4l/gstv4lsrc.h:
30872         Added a copy mode to v4lsrc where it will output a copied version
30873         of its internal hardware buffer.
30874         Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
30875         can't | them.
30876
30877 2004-06-16  Wim Taymans  <wim@fluendo.com>
30878
30879         * sys/oss/gstosssrc.c: (gst_osssrc_get):
30880         Timestamp fixes.
30881
30882 2004-06-16  Wim Taymans  <wim@fluendo.com>
30883
30884         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
30885         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
30886         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
30887         (gst_v4lsrc_get_property):
30888         * sys/v4l/gstv4lsrc.h:
30889         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
30890         Added a sync mode enum property to control v4lsrc timestamp method
30891         Removed the use-fixed-fps property and moved functionality in
30892         the enum.
30893         Don't error on an error value from v4l-conf, it might not always
30894         be a real error.
30895
30896 2004-06-16  Wim Taymans  <wim@fluendo.com>
30897
30898         * gst/videorate/Makefile.am:
30899         * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
30900         (gst_videorate_base_init), (gst_videorate_class_init),
30901         (gst_videorate_getcaps), (gst_videorate_link),
30902         (gst_videorate_init), (gst_videorate_chain),
30903         (gst_videorate_set_property), (gst_videorate_get_property),
30904         (gst_videorate_change_state), (plugin_init):
30905         Added a video timestamp corrector.
30906
30907 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30908
30909         fixed a potential leak with previous commit
30910
30911         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
30912
30913 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30914
30915         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
30916         Added missing refcount, fixes bug #144425
30917         Cheers Tim for finding the bug
30918
30919 2004-06-15  Thomas Vander Stichele  <thomas at apestaart dot org>
30920
30921         * sys/v4l/gstv4l.c: (plugin_init):
30922         * sys/v4l/gstv4lcolorbalance.c:
30923         * sys/v4l/gstv4lcolorbalance.h:
30924         * sys/v4l/gstv4lelement.c:
30925         * sys/v4l/gstv4lelement.h:
30926         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
30927         * sys/v4l/gstv4lmjpegsink.h:
30928         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
30929         * sys/v4l/gstv4lmjpegsrc.h:
30930         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
30931         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
30932         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
30933         * sys/v4l/gstv4lsrc.h:
30934         * sys/v4l/gstv4ltuner.c:
30935         * sys/v4l/gstv4ltuner.h:
30936         * sys/v4l/gstv4lxoverlay.c:
30937         * sys/v4l/gstv4lxoverlay.h:
30938         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
30939         (gst_v4l_set_window), (gst_v4l_enable_overlay):
30940         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
30941         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
30942         (gst_v4l_set_audio):
30943         * sys/v4l/v4l_calls.h:
30944         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
30945         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
30946         (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
30947         (gst_v4lmjpegsink_playback_init),
30948         (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
30949         (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
30950         (gst_v4lmjpegsink_playback_stop),
30951         (gst_v4lmjpegsink_playback_deinit):
30952         * sys/v4l/v4lmjpegsink_calls.h:
30953         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
30954         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
30955         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
30956         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
30957         (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
30958         (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
30959         * sys/v4l/v4lmjpegsrc_calls.h:
30960         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
30961         (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
30962         (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
30963         (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
30964         (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
30965         (gst_v4lsrc_try_palette):
30966         * sys/v4l/v4lsrc_calls.h:
30967           bunch of paranoia cleanups
30968
30969 2004-06-14  David Schleef  <ds@schleef.org>
30970
30971         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
30972         (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
30973         Send discont events and change timestamps appropriately when
30974         we get a seek event.  (bug #144240)
30975         * ext/cdparanoia/gstcdparanoia.h:
30976
30977 2004-06-14  Benjamin Otte  <otte@gnome.org>
30978
30979         * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
30980           snd_pcm_hw_params_set_rate  since the latter fails for no good
30981           reason on some setups.
30982
30983 2004-06-14  David Schleef  <ds@schleef.org>
30984
30985         * gst/volume/demo.c: (value_changed_callback): exp10() is not
30986         standard.  Thank you for playing.
30987
30988 2004-06-14  Wim Taymans  <wim@fluendo.com>
30989
30990         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
30991         Patch 1.3 broke the ordering of the colorspace info and
30992         made the plugin basically work by coincidence, reordered
30993         the info.
30994
30995 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
30996
30997         * ext/lame/gstlame.c:
30998         * ext/mad/gstmad.c:
30999           sync caps.  Make sure mad can only output a list of rates, not
31000           a full range.  In the future, have three caps lists for each of the
31001           mpeg versions.  Change mpegversion to a double as well.
31002
31003 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
31004
31005         * gst/volume/.cvsignore:
31006         * gst/volume/Makefile.am:
31007         * gst/volume/demo.c: (value_changed_callback), (idler),
31008         (setup_gui), (main):
31009           added small demo app
31010
31011 2004-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
31012         * ext/esd/esdsink.c: (gst_esdsink_change_state):
31013         * ext/esd/esdsink.h:
31014         Close the esd connection on pause, because esd will just wait -
31015         blocking all other esd clients indefinitely.
31016
31017 2004-06-12  Christophe Fergeau  <teuf@gnome.org>
31018
31019         * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
31020           previous commit with GST_DEBUG
31021
31022 2004-06-12  Thomas Vander Stichele  <thomas at apestaart dot org>
31023
31024         * configure.ac:
31025           add a header check for a dvdread header in dvdnav.  Fixes #133002
31026
31027 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31028
31029         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
31030         * gst/tcp/gsttcpclientsink.h:
31031         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
31032         * gst/tcp/gsttcpclientsrc.h:
31033         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
31034         (gst_tcpserversink_handle_server_read),
31035         (gst_tcpserversink_init_send):
31036         * gst/tcp/gsttcpserversink.h:
31037         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
31038         * gst/tcp/gsttcpserversrc.h:
31039         Modified the tcp plugins so they are portable (IPv4,IPv6, any future
31040         version of IP)
31041
31042 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31043
31044         * configure.ac:
31045         Added ogg library so that OSX detects libtheora properly
31046
31047 2004-06-11  Wim Taymans  <wim@fluendo.com>
31048
31049         * ext/theora/theoradec.c: (theora_dec_chain),
31050         (theora_dec_change_state):
31051         Don't try to decode frames before we received a keyframe.
31052
31053 2004-06-11  Wim Taymans  <wim@fluendo.com>
31054
31055         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
31056         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
31057         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
31058         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
31059         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
31060         Added property to set the maximum delay of a page.
31061
31062 2004-06-10  Wim Taymans  <wim@fluendo.com>
31063
31064         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
31065         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
31066         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
31067         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
31068         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
31069         Added max-delay property to control the maximum amount
31070         of data to put in one page.
31071
31072 2004-06-10  Wim Taymans  <wim@fluendo.com>
31073
31074         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
31075         (gst_theora_enc_init), (theora_enc_sink_link),
31076         (theora_buffer_from_packet), (theora_enc_set_property),
31077         (theora_enc_get_property):
31078         Set duration on encoded buffer, added some more properties
31079
31080 2004-06-10  Wim Taymans  <wim@fluendo.com>
31081
31082         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
31083         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
31084         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
31085         * ext/theora/theoraenc.c: (theora_enc_chain):
31086         Fix refcounting bugs
31087
31088 2004-06-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31089
31090         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
31091         (gst_asf_demux_loop), (gst_asf_demux_process_file),
31092         (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
31093         (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
31094         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
31095         (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
31096         (gst_asf_demux_change_state):
31097         * gst/asfdemux/gstasfdemux.h:
31098           You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
31099           feels like. I think we should set a new requirement for demuxers
31100           from now on to implement sane loop functions, data loops, query
31101           and seek functions before first commit into CVS. And this commit
31102           fixes all of the above.
31103
31104 2004-06-10  Christophe Fergeau  <teuf@gnome.org>
31105
31106         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
31107           vorbis comments are properly encoded in UTF-8 before adding them
31108           to a GstTagList
31109
31110 2004-06-09  Benjamin Otte  <otte@gnome.org>
31111
31112         * ext/alsa/gstalsa.c: (add_channels):
31113           handle min <= max correctly
31114         * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
31115         (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
31116           add fixation functions so we fixate correctly. No preferring of alaw
31117           anymore because it's the first structure.
31118         * ext/alsa/gstalsa.h:
31119         * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
31120         (gst_alsa_hw_params_dump):
31121           add functions to ease debugging in alsalib
31122         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
31123         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
31124         (gst_alsa_start_audio):
31125           only specify hw params if we really setup a format (fixes #134007 -
31126           or at least works around it)
31127
31128 2004-06-09  Wim Taymans  <wim@fluendo.com>
31129
31130         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
31131         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
31132         (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
31133         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
31134         (gst_ogg_mux_loop):
31135         Use stream caps to setup the initial pages in the ogg stream.
31136         Correctly set the streamheader caps on the srcpad.
31137
31138 2004-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
31139
31140         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
31141         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
31142         (gst_v4lsrc_getcaps):
31143         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
31144         (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
31145           add querying of fps lists for webcams.  Negotiating to a framerate
31146           now works.
31147
31148 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
31149
31150         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
31151         (theora_push_buffer), (theora_push_packet),
31152         (theora_set_header_on_caps), (theora_enc_chain):
31153           mark buffers and put on streamheader, raw theora streaming
31154           now works too, whee
31155
31156 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
31157
31158         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
31159         (gst_tcp_gdp_read_caps):
31160           do a looping read for caps and GDP headers too
31161
31162 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
31163
31164         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
31165         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
31166           return EOS instead of NULL in _get
31167
31168 2004-06-08  Wim Taymans  <wim@fluendo.com>
31169
31170         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
31171         (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
31172         (gst_tcp_gdp_write_caps):
31173         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
31174         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
31175         (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
31176         Memory leak fixes
31177
31178 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
31179
31180         * ext/vorbis/Makefile.am:
31181         * ext/vorbis/vorbis.c: (plugin_init):
31182         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
31183         (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
31184         (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
31185         (vorbis_parse_change_state):
31186         * ext/vorbis/vorbisparse.h:
31187           adding a vorbisparse element that marks the buffers, streaming
31188           raw vorbis using GDP now works, whee
31189
31190 2004-06-08  Wim Taymans  <wim@fluendo.com>
31191
31192         * ext/jpeg/Makefile.am:
31193         * ext/jpeg/README:
31194         * ext/jpeg/gstjpeg.c: (plugin_init):
31195         * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
31196         (gst_smokedec_base_init), (gst_smokedec_class_init),
31197         (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
31198         * ext/jpeg/gstsmokedec.h:
31199         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
31200         (gst_smokeenc_base_init), (gst_smokeenc_class_init),
31201         (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
31202         (gst_smokeenc_resync), (gst_smokeenc_chain),
31203         (gst_smokeenc_set_property), (gst_smokeenc_get_property):
31204         * ext/jpeg/gstsmokeenc.h:
31205         * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
31206         (smokecodec_flush_destination), (smokecodec_term_destination),
31207         (smokecodec_init_source), (smokecodec_fill_input_buffer),
31208         (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
31209         (smokecodec_term_source), (smokecodec_encode_new),
31210         (smokecodec_decode_new), (smokecodec_info_free),
31211         (smokecodec_set_quality), (smokecodec_get_quality),
31212         (smokecodec_set_threshold), (smokecodec_get_threshold),
31213         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
31214         (find_best_size), (abs_diff), (put), (smokecodec_encode),
31215         (smokecodec_parse_header), (smokecodec_decode):
31216         * ext/jpeg/smokecodec.h:
31217         Added a new simple jpeg based codec
31218
31219 2004-06-08  Wim Taymans  <wim@fluendo.com>
31220
31221         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
31222         (gst_multipart_mux_loop):
31223         Fix memory leak
31224
31225 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
31226
31227         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
31228         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
31229         (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
31230         (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
31231         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
31232         * gst/tcp/gsttcpserversink.h:
31233           take streamheader into account
31234
31235 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
31236
31237         * gst/level/Makefile.am:
31238         * gst/level/gstlevel.c: (gst_level_class_init):
31239           clean up marshal generation
31240
31241 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
31242
31243         * gst/tcp/Makefile.am:
31244         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
31245         (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
31246         (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
31247         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
31248         (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
31249         (gst_tcpclientsrc_get_property):
31250         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
31251         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
31252         (gst_tcpserversink_handle_client_read),
31253         (gst_tcpserversink_handle_client_write),
31254         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
31255         * gst/tcp/gsttcpserversink.h:
31256           add signals client-added and client-removed
31257         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
31258         (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
31259         (gst_tcpserversrc_get_property):
31260         uniformized, change default protocol to NONE
31261         * gst/tcp/gsttcp-marshal.list: added
31262 2004-06-07  Benjamin Otte  <otte@gnome.org>
31263
31264         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
31265           handle discont events if they happen before caps nego
31266
31267 2004-06-07  Wim Taymans  <wim@fluendo.com>
31268
31269         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
31270         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
31271         (gst_multipart_demux_plugin_init):
31272         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
31273         (gst_multipart_mux_init), (gst_multipart_mux_loop),
31274         (gst_multipart_mux_change_state):
31275         Small updates, fix a memleak
31276
31277 2004-06-07  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
31278
31279         * configure.ac: OSS portability
31280         * ext/arts/gst_arts.c: idem
31281         * sys/oss/gstosselement.c: idem
31282         * sys/oss/gstossmixer.c: idem
31283         * sys/oss/gstosssink.c: idem
31284         * sys/oss/gstosssrc.c: idem
31285         * sys/oss/oss_probe.c: idem
31286           - check for soundcard.h in different places for some BSD
31287
31288 2004-06-07  Jan Schmidt <thaytan@mad.scientist.com>
31289
31290         * AUTHORS:
31291         Add me to the authors file
31292         * configure.ac:
31293         Increase the libdv requirement to >= version 0.100
31294         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
31295         (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
31296         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
31297         * ext/dv/gstdvdec.h:
31298         Add support for the new_media flag when sending DISCONT events
31299         Make the querying work when video pad is not linked
31300
31301 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
31302
31303         reviewed by Benjamin Otte  <otte@gnome.org>
31304
31305         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
31306           create a NULL-initialized array of pads, so we don't think they
31307           exist already. (fixes #143130)
31308
31309 2004-06-07  Benjamin Otte  <otte@gnome.org>
31310
31311         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
31312         (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
31313         (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
31314           don't use // coments
31315
31316 2004-06-07  Benjamin Otte  <otte@gnome.org>
31317
31318         * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
31319           cast to GstClockTime to get higher granularity
31320         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
31321           use gst_element_set_time_delay to get the exact time
31322         * ext/mad/gstmad.c: (gst_mad_chain):
31323           use the negotiated rate instead of the current frame's rate which
31324           might be wrong because of bit errors. This avoids emitting totally
31325           bogus timestamps and screwing sync.
31326         (fixes #143454)
31327
31328 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
31329
31330         reviewed by Benjamin Otte  <otte@gnome.org>
31331
31332         * gst/adder/gstadder.c: (gst_adder_loop):
31333           properly error out when no negotiation has happened yet. (fixes
31334           #143032)
31335
31336 2004-06-06  Benjamin Otte  <otte@gnome.org>
31337
31338         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
31339           forward correctly transformed offset in discont events. Based on
31340           patch by Arwed v. Merkatz. (fixes #142851)
31341
31342 2004-06-06  David Schleef  <ds@schleef.org>
31343
31344         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
31345         G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS.  Should fix compile
31346         problems on several systems.
31347
31348 2004-06-06  Benjamin Otte  <otte@gnome.org>
31349
31350         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
31351           use explicit caps on the srcpad
31352         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
31353           properly error out if caps couldn't be set (fixes #142764)
31354
31355 2004-06-06  Benjamin Otte  <otte@gnome.org>
31356
31357         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
31358         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
31359         (gst_alsa_start_audio):
31360           - don't call set_periods_integer anymore, it breaks the
31361           configuration randomly
31362           - call snd_pcm_hw_params_set_access directly instead of using masks
31363           - don't fail if the sw_params can't be set, just use the default
31364           params and hope it works. Alsalib has weird issues when you touch
31365           sw_params and does no proper error reporting about what failed.
31366         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
31367         (gst_alsa_close_audio):
31368           make our alsa debugging go via gst debugging and not conditionally
31369           defined
31370         * ext/alsa/gstalsa.h:
31371           add ALSA_DEBUG_FLUSH macro
31372         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
31373         (plugin_init):
31374           wrap alsa errors to be printed via the gst debugging system and not
31375           spammed to stderr
31376
31377 2004-06-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31378
31379         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
31380         (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
31381         (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
31382         (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
31383         (qtdemux_parse_trak):
31384         * gst/qtdemux/qtdemux.h:
31385           Bitch. Also known as seeking, querying & co.
31386         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
31387         (gst_osssink_change_state):
31388         * sys/oss/gstosssink.h:
31389           Resyncing is for weenies, this hack is no longer needed and was
31390           broken anyway (since it - unintendedly - always leaves resync to
31391           TRUE).
31392
31393 2004-06-05  Andrew Turner <zxombie@hotpop.com>
31394
31395         * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
31396         * gst/tcp/gsttcpclientsrc.h: idem
31397           - define MSG_NOSIGNAL if not done
31398           - include unistd.h for off_t
31399           (fixes #143749)
31400
31401 2004-06-05  Benjamin Otte  <otte@gnome.org>
31402
31403         * configure.ac:
31404         * ext/kio/Makefile.am:
31405           check for qt's moc preprocessor explicitly and use it
31406
31407 2004-06-03  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
31408
31409         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
31410           don't get a signal for EPIPE on socket writes
31411           (somebody check if this works on other platforms)
31412
31413 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
31414
31415         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
31416         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
31417           check error condition on available samples correctly
31418
31419 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
31420
31421         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
31422           avoid a segfault
31423         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
31424         (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
31425         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
31426         (gst_tcpserversrc_gdp_read_header):
31427          use ssize_t over size_t since the former is signed and thus the
31428          check for error codes can work
31429
31430 2004-06-02  Wim Taymans  <wim@fluendo.com>
31431
31432         reviewed by: Johan
31433
31434         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
31435         (gst_multipart_mux_loop):
31436         Oops
31437
31438 2004-06-02  Wim Taymans  <wim@fluendo.com>
31439
31440         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
31441         (gst_multipart_mux_init), (gst_multipart_mux_loop),
31442         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
31443         (gst_multipart_mux_change_state):
31444         Added configurable boundary specifier, added the value as a
31445         caps field as well.
31446
31447 2004-06-02  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31448
31449         * gst/tcp/gsttcp.c:
31450         * gst/tcp/gsttcpclientsrc.c:
31451         * gst/tcp/gsttcpclientsrc.h:
31452         * gst/tcp/gsttcpserversrc.c:
31453           - portability fix, to compile on OSX
31454             (fixes #143146)
31455
31456         * sys/osxaudio/gstosxaudioelement.c:
31457         * sys/osxaudio/gstosxaudiosink.c:
31458         * sys/osxaudio/gstosxaudiosrc.c:
31459           - compilation warnings on OSX
31460             (fixes #143153)
31461
31462 2004-06-02  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
31463
31464         * ext/vorbis/vorbisdec.c : sign warning fixes
31465
31466         * gst-libs/gst/mixer/mixertrack.c :
31467           do no use defines which are glib 2.4 specific
31468
31469 2004-06-01  Christophe Fergeau  <teuf@gnome.org>
31470
31471         * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
31472           buffer since libflac doesn't expect it (reports a sync error when
31473           it encounters that)
31474
31475
31476 2004-06-01  Owen Fraser-Green  <owen@discobabe.net>
31477
31478         * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
31479         * gst-libs/gst/mixer/mixertrack.c:
31480         (gst_mixer_track_get_property), (get_mixer_track_init),
31481         (get_mixer_track_get_property): Added property accessors
31482         * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
31483         * gst-libs/gst/mixer/mixeroptions.c:
31484         (gst_mixer_options_get_values): Added
31485         * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
31486         * gst-libs/gst/mixer/mixer.c: Fixed comment
31487
31488
31489 2004-06-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
31490
31491         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
31492           improve error messages on open
31493
31494
31495 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
31496
31497         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
31498           check if v4l-conf is in path
31499
31500 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
31501
31502         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
31503           change assert to a more readable error message
31504
31505 2004-05-31  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
31506
31507         * gst-libs/gst/tuner/tunerchannel.h:
31508           - add a freq_multiplicator field to make the conversion
31509             between internal frequency unit and Hz
31510         * sys/v4l/gstv4lelement.c:
31511         * sys/v4l2/gstv4l2element.c:
31512           - change default video device to /dev/video0
31513         * sys/v4l/v4l_calls.c:
31514         * sys/v4l2/v4l2_calls.c:
31515           - we only expose frequency to the user in Hz instead of
31516             bastard v4lX unit (either 62.5kHz or 62.5Hz)
31517
31518 2004-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
31519         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
31520           Initialise b_o_s and e_o_s variables
31521         * gst-libs/gst/riff/riff-media.c:
31522         (gst_riff_create_video_caps_with_data):
31523           Add some unusual fourcc's from mplayer avi's
31524         * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
31525           Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
31526           autoplugging.
31527
31528 2004-05-28  Wim Taymans  <wim@fluendo.com>
31529
31530         * configure.ac:
31531         * gst/alpha/Makefile.am:
31532         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
31533         (gst_alpha_get_type), (gst_alpha_base_init),
31534         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
31535         (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
31536         (gst_alpha_chroma_key), (gst_alpha_chain),
31537         (gst_alpha_change_state), (plugin_init):
31538         A plugin to add an alpha channel to I420 video. Can optionally do
31539         chroma keying.
31540         * gst/multipart/Makefile.am:
31541         * gst/multipart/multipart.c: (plugin_init):
31542         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
31543         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
31544         (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
31545         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
31546         (gst_multipart_demux_change_state),
31547         (gst_multipart_demux_plugin_init):
31548         * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
31549         (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
31550         (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
31551         (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
31552         (gst_multipart_mux_pad_unlink),
31553         (gst_multipart_mux_request_new_pad),
31554         (gst_multipart_mux_handle_src_event),
31555         (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
31556         (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
31557         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
31558         (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
31559         A Multipart demuxer/muxer. Not sure if it violates specs. Used to
31560         send multipart jpeg images to a browser.
31561         * gst/videobox/Makefile.am:
31562         * gst/videobox/README:
31563         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
31564         (gst_video_box_get_type), (gst_video_box_base_init),
31565         (gst_video_box_class_init), (gst_video_box_init),
31566         (gst_video_box_set_property), (gst_video_box_get_property),
31567         (gst_video_box_sink_link), (gst_video_box_i420),
31568         (gst_video_box_ayuv), (gst_video_box_chain),
31569         (gst_video_box_change_state), (plugin_init):
31570         Crops or adds borders around an image. can do alpha channel
31571         borders as well.
31572         * gst/videomixer/Makefile.am:
31573         * gst/videomixer/README:
31574         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
31575         (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
31576         (gst_videomixer_pad_get_sink_event_masks),
31577         (gst_videomixer_pad_get_property),
31578         (gst_videomixer_pad_set_property),
31579         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
31580         (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
31581         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
31582         (gst_videomixer_base_init), (gst_videomixer_class_init),
31583         (gst_videomixer_init), (gst_videomixer_request_new_pad),
31584         (gst_videomixer_handle_src_event),
31585         (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
31586         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
31587         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
31588         (gst_videomixer_loop), (gst_videomixer_get_property),
31589         (gst_videomixer_set_property), (gst_videomixer_change_state),
31590         (plugin_init):
31591         Generic video mixer plugin, can handle multiple inputs all with
31592         different framerates and video sizes. Is fully alpha channel
31593         aware.
31594
31595 2004-05-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31596
31597         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
31598           Select first track as master track. Not sure how else to handle
31599           that...
31600         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
31601           Discard discont events. Should fix #142962.
31602
31603 2004-05-26  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31604
31605         * ext/alsa/Makefile.am:
31606         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
31607         (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
31608         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
31609         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
31610         (gst_alsa_mixer_get_option):
31611         * ext/alsa/gstalsamixer.h:
31612         * ext/alsa/gstalsamixeroptions.c:
31613         (gst_alsa_mixer_options_get_type),
31614         (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
31615         (gst_alsa_mixer_options_new):
31616         * ext/alsa/gstalsamixeroptions.h:
31617         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
31618         * ext/alsa/gstalsamixertrack.h:
31619           Add enumerations (as GstMixerOptions). Make correct distinction
31620           between input/output tracks. Add capture/playback private flag.
31621           Use flag to decide on whether to set capture or playback volumes
31622           or switches. Use playback and record switches.
31623         * gst-libs/gst/mixer/Makefile.am:
31624         * gst-libs/gst/mixer/mixer-marshal.list:
31625         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
31626         (gst_mixer_set_option), (gst_mixer_get_option),
31627         (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
31628         (gst_mixer_volume_changed), (gst_mixer_option_changed):
31629         * gst-libs/gst/mixer/mixer.h:
31630         * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
31631         (gst_mixer_options_class_init), (gst_mixer_options_init),
31632         (gst_mixer_options_dispose):
31633         * gst-libs/gst/mixer/mixeroptions.h:
31634           Add GstMixerOptions.
31635         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
31636           Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
31637           broken device detection on computers with multiple OSS sound
31638           cards.
31639
31640 2004-05-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31641
31642         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
31643           fixate nicely even when the peer is not negotiating
31644
31645 2004-05-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31646
31647         * gst/audioconvert/gstaudioconvert.c:
31648         (gst_audio_convert_parse_caps):
31649           make sure we don't allow depth > width
31650         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
31651           fixate endianness to G_BYTE_ORDER as default
31652         * gst/audioscale/gstaudioscale.c:
31653           we don't handle another endianness as host-endianness
31654
31655 2004-05-25  David Schleef  <ds@schleef.org>
31656
31657         * gst/ffmpegcolorspace/mem.c:  malloc() is in stdlib.h, not malloc.h
31658
31659 2004-05-24  Benjamin Otte  <otte@gnome.org>
31660
31661         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
31662         (gst_oggvorbisenc_setup):
31663           properly fail when we can't setup the vorbis encoder due to
31664           unsupported settings
31665         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
31666         (gst_vorbisenc_setup):
31667           same
31668         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
31669           fix case where warnings occured when one pad was unlinked while the
31670           other's link function was called
31671
31672 2004-05-24  Thomas Vander Stichele  <thomas at apestaart dot org>
31673
31674         * gst/tcp/Makefile.am:
31675           use GST_ENABLE_NEW
31676
31677 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31678
31679         * gst-libs/gst/resample/private.h:
31680           don't use optimizations that are #if 0'ed
31681
31682 2004-05-24  Wim Taymans  <wim@fluendo.com>
31683
31684         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
31685         Fix potential division by zero error and hopefully get
31686         the position query right to get correct timestamps on avi
31687         audio.
31688
31689 2004-05-24  Wim Taymans  <wim@fluendo.com>
31690
31691         * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
31692         (gst_videoscale_scale_nearest_str2),
31693         (gst_videoscale_scale_nearest_str4),
31694         (gst_videoscale_scale_nearest_32bit),
31695         (gst_videoscale_scale_nearest_24bit),
31696         (gst_videoscale_scale_nearest_16bit):
31697         Fix the scaling algorithm and avoid a buffer overflow.
31698         removed the while loop in the scaling function as it
31699         was used for point sampling only.
31700
31701 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31702
31703         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
31704         (gst_id3_tag_class_init), (gst_id3_tag_init),
31705         (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
31706         (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
31707         (gst_id3_tag_send_tag_event):
31708           lots of fixes to make id3mux work and id3demux work correctly
31709
31710 2004-05-24  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
31711
31712         * ext/Makefile.am:
31713           add rules to build shout2send (was removed by accident
31714           when this module was no more marked experimental/broken)
31715
31716 2004-05-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31717
31718         * ext/shout2/gstshout2.c:
31719         * ext/shout2/gstshout2.h:
31720           adding a "connection problem" signal to shout2send
31721           (fixes #142954)
31722
31723 2004-05-21  Thomas Vander Stichele  <thomas at apestaart dot org>
31724
31725         * ext/kio/kioreceiver.cpp:
31726         * ext/kio/kioreceiver.h:
31727           fix sign comparison issues
31728
31729 2004-05-21  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
31730
31731         * gst/cdxaparse/gstcdxaparse.c:
31732         * gst/cdxaparse/gstcdxaparse.h:
31733           some renaming
31734           add some checks/sanity
31735           prepare for seek addition
31736
31737         * sys/sunaudio/gstsunaudio.c:
31738           remove exported dupe init function
31739
31740 2004-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
31741
31742         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
31743         (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
31744           Fix format conversion and position querying.
31745         * gst/debug/progressreport.c: (gst_progressreport_report):
31746           Don't output a bogus total value that we didn't query.
31747         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
31748           Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
31749           only a blank window after xine has been used.
31750
31751 2004-05-21  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
31752
31753         * m4/as-arts.m4:
31754           sync with upstream version to fix test on FC2
31755           readd with -ko to preserve Id header
31756
31757 2004-05-20  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
31758
31759         * configure.ac:
31760           test for FIONREAD ioctl in sys/filio.h for Solaris compat.
31761         * gst/tcp/gsttcpclientsrc.c: idem
31762         * gst/tcp/gsttcpserversink.c: idem
31763         * gst/tcp/gsttcpserversrc.c: idem
31764         * m4/gst-fionread.m4: idem
31765
31766         * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
31767
31768         * configure.ac: enable speex plugin for speex 1.1.5+
31769         * ext/speex/gstspeexenc.c: fix cast warning
31770
31771         * ext/esd/README: fix typo
31772
31773 2004-05-20  David Schleef  <ds@schleef.org>
31774
31775         * configure.ac: Minor cosmetic change to convince the buildbot to
31776         reautogen.
31777         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
31778         (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
31779         (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
31780         (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
31781         (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
31782         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
31783         More hacking.  Plays audio now.
31784
31785 2004-05-20  David Schleef  <ds@schleef.org>
31786
31787         * configure.ac:
31788         * sys/Makefile.am:
31789
31790 2004-05-20  David Schleef  <ds@schleef.org>
31791
31792         * sys/osxaudio/Makefile.am:  New OS X audio plugin by Zaheer Abbas Merali
31793         * sys/osxaudio/gstosxaudio.c:
31794         * sys/osxaudio/gstosxaudioelement.c:
31795         * sys/osxaudio/gstosxaudioelement.h:
31796         * sys/osxaudio/gstosxaudiosink.c:
31797         * sys/osxaudio/gstosxaudiosink.h:
31798         * sys/osxaudio/gstosxaudiosrc.c:
31799         * sys/osxaudio/gstosxaudiosrc.h:
31800
31801 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
31802
31803         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
31804         (gst_vorbisenc_chain):
31805           put the codec headers on the caps as streamheader as well as
31806           pushing them out
31807
31808 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
31809
31810         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
31811         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
31812         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
31813         split up push_packet into two functions
31814
31815 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
31816
31817         * gst/tcp/.cvsignore:
31818           ignore enums
31819         * gst/tcp/Makefile.am:
31820         * gst/tcp/README:
31821         * gst/tcp/gsttcp.c:
31822         * gst/tcp/gsttcp.h:
31823         * gst/tcp/gsttcpclientsink.c:
31824         * gst/tcp/gsttcpclientsink.h:
31825         * gst/tcp/gsttcpclientsrc.c:
31826         * gst/tcp/gsttcpclientsrc.h:
31827         * gst/tcp/gsttcpplugin.c:
31828         * gst/tcp/gsttcpserversink.c:
31829         * gst/tcp/gsttcpserversink.h:
31830         * gst/tcp/gsttcpserversrc.c:
31831         * gst/tcp/gsttcpserversrc.h:
31832           add new tcp elements
31833
31834 2004-05-19  Wim Taymans  <wim@fluendo.com>
31835
31836         * gst/law/mulaw-conversion.c: (mulaw_encode):
31837         Fix overflow bug in ulaw encoding.
31838
31839 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31840
31841         * ext/mad/gstmad.c: (gst_mad_handle_event):
31842           don't unref the event twice
31843
31844 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31845
31846         * configure.ac:
31847           remove -Wno-sign-compare
31848
31849 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31850
31851         * configure.ac:
31852           remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
31853           if you want to work against glib 2.2 and 2.4
31854
31855 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
31856
31857         * gst/tcp/Makefile.am:
31858         * gst/tcp/gsttcp.c:
31859         * gst/tcp/gsttcp.h:
31860         * gst/tcp/gsttcpsink.h:
31861         * gst/tcp/gsttcpsrc.h:
31862           gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
31863
31864 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31865
31866         * gst/debug/tests.c: (md5_get_value):
31867           fix segfault on gst-inspect
31868
31869 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31870
31871         * gst/debug/testplugin.c:
31872         * gst/debug/tests.c:
31873         * gst/debug/tests.h:
31874           add new extensible and configurable testing element. Current tests
31875           include buffer count, stream length, timestamp/duration matching and
31876           md5.
31877         * gst/debug/Makefile.am:
31878         * gst/debug/gstdebug.c: (plugin_init):
31879           add infrastructure for new element
31880
31881 2004-05-19  Johan Dahlin  <johan@gnome.org>
31882
31883         * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
31884         ending of the array. Fixes gst-inspect segfault on ppc.
31885
31886 2004-05-19  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
31887
31888         * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
31889
31890         * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
31891
31892 2004-05-18  David Schleef  <ds@schleef.org>
31893
31894         * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
31895         warnings (bugs, actually) noticed by gcc but not forte.
31896
31897 2004-05-18  David Schleef  <ds@schleef.org>
31898
31899         * sys/sunaudio/Makefile.am:
31900         * sys/sunaudio/gstsunaudio.c: New sunaudiosink
31901
31902 2004-05-18  David Schleef  <ds@schleef.org>
31903
31904         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
31905         (gst_qtdemux_loop_header):  Patch from dcm@acm.org (David Moore)
31906         to allow qtdemux to use non-seekable streams. (bug #142272)
31907
31908 2004-05-18  David Schleef  <ds@schleef.org>
31909
31910         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
31911         (gst_resample_sinc_ft_float): Remove use of static temporary
31912         buffer.  This code was obviously not supposed to last long, but
31913         it's stuck in our ABI, so it required a little hack to make it
31914         ABI-compatible.  Fixes #142585.
31915         * gst-libs/gst/resample/resample.h: same.
31916
31917 2004-05-18  David Schleef  <ds@schleef.org>
31918
31919         * configure.ac: Add sunaudio
31920         * examples/Makefile.am: make gstplay depend on gconf
31921         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
31922         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
31923         (convert_table_lookup), (img_convert): remove c99-isms
31924         * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
31925           unsigned, to fix a warning on Solaris
31926         * gst/mpeg1sys/systems.c: bcopy->memcpy
31927         * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
31928         * sys/Makefile.am: Add sunaudio
31929
31930 2004-05-18  Wim Taymans  <wim@fluendo.com>
31931
31932         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
31933         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
31934         (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
31935         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
31936         (gst_ogg_mux_loop):
31937         Fix an ugly memleak where the muxer didn't flush enough ogg
31938         pages. This also resulted in badly muxed ogg files.
31939
31940 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
31941
31942         * gst/asfdemux/asfheaders.c :
31943         * gst/asfdemux/asfheaders.h :
31944         * gst/asfdemux/gstasfdemux.c :
31945           - fix ASF_OBJ_PADDING guid
31946           - add 3 new object guids (language list, metadata,
31947             extended stream properties)
31948           - add a function to parse extended header objects
31949
31950 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31951
31952         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
31953           remove leftover debugging g_print
31954
31955 2004-05-17  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31956
31957         * ext/mad/gstmad.c: (gst_mad_handle_event):
31958           Fix for when the first format in a discont event is not a
31959           byte-based one. Should fix #137710.
31960
31961 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
31962
31963         * m4/a52.m4 : fix compilation with -Wall -Werror
31964         * m4/libfame.m4 : idem
31965         * m4/libmikmod.m4 : idem
31966
31967 2004-05-17  Benjamin Otte  <otte@gnome.org>
31968
31969         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
31970           signal the new tags before giving up the reference
31971
31972 2004-05-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31973
31974         * ext/shout2/gstshout2.c:
31975           use application/ogg instead of application/x-ogg (patch by Patrick
31976           Guimond, fixes #142432)
31977         * sys/oss/gstosselement.c: (gst_osselement_reset),
31978         (gst_osselement_sync_parms):
31979           don't set fragment size unless specified (fixes #142493)
31980
31981 2004-05-17  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
31982
31983         * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
31984           fixes #142664
31985
31986 2004-05-17  Benjamin Otte  <otte@gnome.org>
31987
31988         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
31989           compute offsets correctly for internal buffers so timestamps are set
31990           correctly when we can't seek. Also handle cases where there are no
31991           offsets. (based on a patch by David Moore, fixes #142507)
31992
31993 2004-05-17  Benjamin Otte  <otte@gnome.org>
31994
31995         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
31996           use correct variable when determining amount of data to skip so we
31997           don't skip into the void and segfault
31998
31999 2004-05-16  Benjamin Otte  <otte@gnome.org>
32000
32001         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
32002           Hi, I'm a memleak
32003
32004 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
32005
32006         * gst/asfdemux/gstasfdemux.c:
32007           - fix a mem leak and always propagate tags
32008           - add WMV3 to known video codecs (but no decoder yet)
32009           - replace "surplus data" at end of audio header for what
32010             it is : codec specific data
32011           - fix a typo
32012
32013 2004-05-16  Arwed v. Merkatz  <v.merkatz@gmx.net>
32014
32015         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
32016
32017         * gst-libs/gst/audio/audioclock.c:
32018           Fix wrong return type (#142205).
32019
32020 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32021
32022         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
32023           Ignore CRCs by default (fixes #142566).
32024
32025 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32026
32027         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
32028         (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
32029         (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
32030         (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
32031         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
32032         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
32033           Fix for cases where we fail to attach to a mixer.
32034
32035 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32036
32037         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
32038           Don't touch events after not owning them anymore.
32039         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
32040         (gst_wavparse_fmt), (gst_wavparse_other),
32041         (gst_wavparse_handle_seek), (gst_wavparse_loop),
32042         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
32043         (gst_wavparse_srcpad_event):
32044         * gst/wavparse/gstwavparse.h:
32045           Add seeking, fix querying.
32046
32047 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
32048
32049         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
32050           - process comments even if they don't end with \0\0
32051             g_convert would ignore them if present and works well without them
32052
32053 2004-05-16  Benjamin Otte  <otte@gnome.org>
32054
32055         * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
32056           simplify caps
32057
32058 2004-05-16  Benjamin Otte  <otte@gnome.org>
32059
32060         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
32061           don't write to memory we might not write to - g_convert does that
32062           for us anyway (fixes #142613)
32063         (gst_asf_demux_audio_caps):
32064           comment out gst_util_dump_mem
32065
32066 2004-05-16  Benjamin Otte  <otte@gnome.org>
32067
32068         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
32069           compute correct expected timestamps after seek (broken since
32070           last commit)
32071         * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
32072           rename element and debugging category to gdkpixbufscale
32073
32074 2004-05-16  Benjamin Otte  <otte@gnome.org>
32075
32076         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
32077           add error checking to snd_pcm_delay and remove duplicate call to
32078           snd_pcm_delay that caused issues (see inline code comments)
32079         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
32080           make more readable and fix return value when snd_pcm_delay fails
32081         (fixes #142586)
32082
32083 2004-05-15  Jan Schmidt  <thaytan@mad.scientisti.com>
32084         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
32085         (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
32086         (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
32087         (gst_pixbufscale_link), (gst_pixbufscale_init),
32088         (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
32089         (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
32090         (gst_pixbufscale_get_property), (pixbufscale_init):
32091         * ext/gdk_pixbuf/pixbufscale.h:
32092         Add these files I forgot earlier
32093
32094 2004-05-15  Jan Schmidt  <thaytan@mad.scientist.com>
32095         * ext/gdk_pixbuf/Makefile.am:
32096         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
32097         * ext/gdk_pixbuf/gstgdkpixbuf.h:
32098         Add new pixbufscale element to scale RGB video
32099         using gdk_pixbuf, because gdk_pixbuf does BILINEAR
32100         and HYPER interpolation correctly.
32101         * ext/theora/theoraenc.c: (theora_enc_chain),
32102         Discard buffer and return if explicit caps could not be set
32103         (theora_enc_get_property):
32104         Make _get return kbps for the bitrate consistent with
32105         the _set function.
32106
32107
32108 2004-05-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
32109
32110         * ext/libvisual/visual.c: (gst_visual_chain):
32111           add missing visual_audio_analyze
32112
32113 2004-05-14  David Schleef  <ds@schleef.org>
32114
32115         * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
32116         is killed while we're playing.
32117         * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
32118         gst_element_no_more_pads().
32119
32120 2004-05-14  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
32121
32122         * gst-libs/gst/riff/riff-read.c :
32123           - fix INFO tag extraction in RIFF/AVI files
32124             because gst_event_unref (event) also freed taglist
32125           - avoid a mem leak
32126
32127 2004-05-13  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
32128
32129         * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
32130         * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
32131
32132         * gst/auparse/gstauparse.c :
32133           - add code (commented for now) to support audio/x-adpcm on src pad
32134             (we have no decoder for those layout yet)
32135
32136         * gst/cdxaparse/gstcdxaparse.c :
32137         * gst/cdxaparse/gstcdxaparse.h :
32138           - partial rewrite using RiffRead (ripped iain's wavparse code)
32139
32140         * gst/rtp/gstrtpL16enc.c : typo
32141         * gst/rtp/gstrtpgsmenc.c : typo
32142
32143 2004-05-13  Benjamin Otte  <otte@gnome.org>
32144
32145         * configure.ac:
32146           check for exact version of libvisual, it's not supposed to be
32147           API/ABI stable yet
32148
32149 2004-05-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
32150
32151         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
32152           signal no-more-pads
32153
32154 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
32155
32156         * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
32157         Report which format was used for GST_FORMAT_DEFAULT
32158         * gst/debug/Makefile.am:
32159         * gst/debug/gstdebug.c: (plugin_init):
32160         * gst/debug/progressreport.c: (gst_progressreport_base_init),
32161         (gst_progressreport_class_init), (gst_progressreport_init),
32162         (gst_progressreport_report), (gst_progressreport_set_property),
32163         (gst_progressreport_get_property), (gst_progressreport_chain),
32164         (gst_progressreport_plugin_init):
32165         Add progressreport element for testing.
32166
32167 2004-05-13  Thomas Vander Stichele  <thomas at apestaart dot org>
32168
32169         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
32170         * sys/v4l/gstv4lsrc.h:
32171         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
32172         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
32173         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
32174         (gst_v4lsrc_grab_frame):
32175           add more debugging
32176           send a discont at start
32177
32178 2004-05-12  Colin Walters  <walters@redhat.com>
32179
32180         * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
32181         inflooping if we can't find a chunk.  Or in other words, don't blow
32182         chunks if we don't have a chunk to blow.
32183
32184 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
32185         * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
32186         Remove old debug output
32187         * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
32188         (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
32189         (gst_dvdec_set_property), (gst_dvdec_get_property):
32190         Change the quality setting to an enum, so it works from gst-launch
32191         Don't renegotiate a non-linked pad. Allows audio only decoding.
32192         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
32193         (gst_deinterlace_link), (gst_deinterlace_init):
32194         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
32195         (gst_videodrop_link):
32196         Some caps negotiation fixes
32197
32198 2004-05-12  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
32199
32200         * ext/tarkin/gsttarkin.c :
32201           - Change RANK from NONE to PRIMARY
32202         * ext/gdk_pixbuf/gstgdkpixbuf.c :
32203           - Change RANK from NONE to MARGINAL
32204         * ext/divx/gstdivxenc.c :
32205           - Change RANK from PRIMARY to NONE (encoder/spider issue)
32206
32207 2004-05-12  Thomas Vander Stichele  <thomas at apestaart dot org>
32208
32209         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
32210         (gst_vorbisenc_push_packet):
32211           copy a function that was added between 1.0 and 1.0.1 until we
32212           depend on worthwhile features of post-1.0
32213
32214 2004-05-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
32215
32216         * configure.ac:
32217           enable shout2 by default
32218         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
32219         (gst_shout2send_base_init), (gst_shout2send_init),
32220         (gst_shout2send_connect), (gst_shout2send_change_state):
32221         * ext/shout2/gstshout2.h:
32222           make this work again. Based on a patch by Zaheer Abbas Merali (fixes
32223           #142262)
32224         * ext/theora/theora.c: (plugin_init):
32225           don't set rank on encoders
32226
32227 2004-05-11  Jeremy Simon  <jesimon@libertysurf.fr>
32228
32229         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
32230           Use codec_data property instead of flag1 and flag2 for wma
32231
32232 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
32233
32234         * gst/cdxaparse/gstcdxaparse.c :
32235           - Add mpegversion to CAPS to make it link
32236           - Rank is as GST_RANK_SECONDARY instead of NONE
32237         * gst/auparse/gstauparse.c :
32238           - Document all audio encoding we can encounter from Solaris 9
32239             headers and libsndfile information.
32240           - Increase max. rate from 48000 to 192000 (to match other elements)
32241           - Don't try to play junk data between header and samples
32242
32243 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
32244
32245         * ext/libvisual/visual.c: (gst_visual_getcaps):
32246           use the right caps depending on endianness (I hope)
32247         * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
32248           use GST_RANK_NONE for all non-decoding elements or spider gets
32249           mighty confused
32250
32251 2004-05-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32252
32253         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
32254           Fix some odd cases and fix BE metadata parsing of unicode16 text.
32255
32256 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
32257
32258         * gst/switch/gstswitch.c: (gst_switch_release_pad),
32259         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
32260         (gst_switch_loop), (gst_switch_get_type):
32261           whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
32262           HEADERS. Had to be said.
32263
32264 2004-05-10  David Schleef  <ds@schleef.org>
32265
32266         * configure.ac: Add prototype Dirac support.
32267         * ext/Makefile.am:
32268         * ext/dirac/Makefile.am:
32269         * ext/dirac/gstdirac.cc:
32270         * ext/dirac/gstdiracdec.cc:
32271
32272 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32273
32274         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
32275         (gst_auparse_init), (gst_auparse_chain),
32276         (gst_auparse_change_state):
32277           Hack around spider. Remove me some day please.
32278
32279 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32280
32281         * gst/auparse/gstauparse.c: (gst_auparse_chain):
32282           Fix for some uninitialized variables in previous patch, also
32283           makes it work. Fixes #142286 while we're at it.
32284
32285 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
32286
32287         * gst/auparse/gstauparse.c:
32288                 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
32289                 only unsupported formats are ADPCM/CCITT G.72x
32290                 reviewed by Ronald
32291         * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
32292
32293 2004-05-10  Wim Taymans  <wim@fluendo.com>
32294
32295         * ext/vorbis/Makefile.am:
32296         * ext/vorbis/README:
32297         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
32298         (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
32299         (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
32300         (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
32301         (gst_oggvorbisenc_convert_sink),
32302         (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
32303         (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
32304         (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
32305         (get_constraints_string), (update_start_message),
32306         (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
32307         (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
32308         (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
32309         * ext/vorbis/oggvorbisenc.h:
32310         * ext/vorbis/vorbis.c: (plugin_init):
32311         * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
32312         (raw_caps_factory), (gst_vorbisenc_class_init),
32313         (gst_vorbisenc_init), (gst_vorbisenc_setup),
32314         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
32315         (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
32316         * ext/vorbis/vorbisenc.h:
32317         Added a raw vorbis encoder to be used with the oggmuxer.
32318         We still need the old encoder for some gnome applications,
32319         read the README to find out how that works.
32320         The raw encoder is called "rawvorbisenc" until 0.9.
32321
32322 2004-05-10  Wim Taymans  <wim@fluendo.com>
32323
32324         * ext/ogg/gstogg.c: (plugin_init):
32325         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
32326         (gst_ogg_print):
32327         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
32328         (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
32329         (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
32330         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
32331         (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
32332         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
32333         (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
32334         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
32335         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
32336         (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
32337         Added an ogg muxer.
32338         Small typo fixes in the demuxer.
32339
32340 2004-05-10  Wim Taymans  <wim@fluendo.com>
32341
32342         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
32343         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
32344         (theora_enc_change_state), (theora_enc_set_property),
32345         (theora_enc_get_property):
32346         Mark the last packet with an EOS flag which is not really needed
32347         in gstreamer.
32348         Do some better video framerate initialisation.
32349         Update the buffer timestamp.
32350
32351 2004-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
32352
32353         * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
32354         Return the result of the parent state change call
32355
32356 2004-05-10  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
32357
32358         * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
32359         * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
32360         * gst/law/alaw-encode.c : (idem)
32361         * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
32362         * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
32363         * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
32364
32365 2004-05-09  Benjamin Otte  <otte@gnome.org>
32366
32367         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
32368           don't use a fixed buffer size when writing variable length data to
32369           it. Fixes memory corruption and makes alsasrc work
32370
32371 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32372
32373         * ext/gnomevfs/gstgnomevfssink.c:
32374         (_gst_boolean_allow_overwrite_accumulator),
32375         (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
32376           Run glib's default signal handler (??) in RUN_CLEANUP rather than
32377           RUN_LAST, and don't use that to set the accumulator value because
32378           then it's always FALSE.
32379
32380 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32381
32382         * gst-libs/gst/riff/riff-media.c:
32383         (gst_riff_create_video_caps_with_data),
32384         (gst_riff_create_audio_caps),
32385         (gst_riff_create_audio_template_caps):
32386         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
32387           Fix for unaligned RIFF files (i.e. where all the chunks together
32388           in a LIST chunk are not of the same size as the size given in
32389           the LIST chunk header). Fixes several odd WAVE files. Also fix
32390           ADPCM (block_align property) in audio, so that wavparse based
32391           on this works now as it used to stand-alone.
32392
32393 2004-05-09  Edward Hervey  <bilboed@bilboed.com>
32394
32395         reviewed by Benjamin Otte  <otte@gnome.org>
32396
32397         * ext/a52dec/gsta52dec.c:
32398         * ext/divx/gstdivxdec.c:
32399         * ext/divx/gstdivxenc.c:
32400         * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
32401         * ext/faac/gstfaac.c: (gst_faac_base_init):
32402         * ext/faad/gstfaad.c: (gst_faad_base_init):
32403         * ext/ivorbis/vorbisfile.c:
32404         * ext/lame/gstlame.c:
32405         * ext/libfame/gstlibfame.c:
32406         * ext/mpeg2enc/gstmpeg2enc.cc:
32407         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
32408         * ext/sidplay/gstsiddec.cc:
32409         * ext/speex/gstspeexdec.c:
32410         * ext/speex/gstspeexenc.c:
32411         * ext/xvid/gstxviddec.c:
32412         * ext/xvid/gstxvidenc.c:
32413           correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
32414           (fixes #142193)
32415
32416 2004-05-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32417
32418         * ext/alsa/gstalsa.c: (device_list),
32419         (gst_alsa_class_probe_devices):
32420         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
32421           Fix alsa oddness in mixer after the combination of using mixer
32422           in source/sink elements and using hw:x,y instead of just hw:x.
32423
32424 2004-05-09  Benjamin Otte  <otte@gnome.org>
32425
32426         * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
32427         (gst_wavparse_create_sourcepad):
32428           make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
32429           sourcepads
32430
32431 2004-05-09  Benjamin Otte  <otte@gnome.org>
32432
32433         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
32434           allow discont events before caps nego
32435
32436 2004-05-08  Benjamin Otte  <otte@gnome.org>
32437
32438         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
32439           don't leak events
32440
32441 2004-05-08  Benjamin Otte  <otte@gnome.org>
32442
32443         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
32444         (gst_level_change_state), (gst_level_init):
32445         * gst/level/gstlevel.h:
32446           figure out if we're initialized directly instead of keeping a
32447           variable that's wrong in 90% of cases
32448           don't initialize pads and then leak them and use a new unitialized
32449           pad. (fixes #142084)
32450           these were bugs so n00bish I didn't find them for an hour :/
32451
32452 2004-05-08 Iain <iain@prettypeople.org>
32453
32454         * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
32455         * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
32456         (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
32457         return the length that was read.
32458         (gst_riff_read_strf_auds): Allow fmt tags as well.
32459
32460 2004-05-07  David Schleef  <ds@schleef.org>
32461
32462         * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
32463         signed char assumption in faad.h.
32464
32465 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32466
32467         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
32468           Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
32469
32470 2004-05-07  Colin Walters  <walters@redhat.com>
32471
32472         * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
32473         * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
32474         function.
32475         * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
32476         Add dispose function.
32477
32478 2004-05-08  Jan Schmidt  <thaytan@mad.scientist.com>
32479         * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
32480           Fix caps nego and pad templates. RGB mode caps should
32481           work now.
32482         * ext/dvdnav/gst-dvd:
32483           Move mpeg2dec inside the thread because otherwise the
32484           queue rejects cap changes mid-stream
32485         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
32486         (gst_mpeg2dec_flush_decoder):
32487           For mpeg2dec > 0.4.0, call the flush function instead of
32488           manually extracting all in-flight frames.
32489         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
32490         (gst_dv1394src_init), (gst_dv1394src_iso_receive):
32491           Change mime type video/dv go video/x-dv to match the
32492           rest of gst-plugins
32493
32494 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32495
32496         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
32497         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
32498         (gst_alsa_sink_class_init):
32499         * ext/alsa/gstalsasink.h:
32500         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
32501         (gst_alsa_src_class_init):
32502         * ext/alsa/gstalsasrc.h:
32503           Make alsasink/src a subclass of alsamixer so that mixer stuff
32504           shows up in gst-rec. Needs some finetuning.
32505
32506 2004-05-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
32507
32508         * ext/lame/gstlame.c: (gst_lame_chain):
32509           simplify
32510         * ext/mad/gstmad.c: (gst_mad_handle_event):
32511           fix event leak
32512         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
32513           be able to detect mp3 files < 4096 bytes
32514
32515 2004-05-06  Wim Taymans  <wim@fluendo.com>
32516
32517         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
32518         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
32519         (theora_enc_set_property), (theora_enc_get_property):
32520         Also encode the first frame, cleanup some code.
32521
32522 2004-05-06  Wim Taymans  <wim@fluendo.com>
32523
32524         * ext/mpeg2enc/gstmpeg2enc.cc:
32525         Forward events first before deciding that negotiation was
32526         not performed.
32527
32528 2004-05-06  Wim Taymans  <wim@fluendo.com>
32529
32530         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
32531         First process the events before deciding that negotiation
32532         was not performed.
32533
32534 2004-05-06  Wim Taymans  <wim@fluendo.com>
32535
32536         * ext/theora/Makefile.am:
32537         * ext/theora/theora.c: (plugin_init):
32538         * ext/theora/theoradec.c: (theora_dec_change_state):
32539         * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
32540         (gst_theora_enc_class_init), (gst_theora_enc_init),
32541         (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
32542         (theora_enc_chain), (theora_enc_change_state),
32543         (theora_enc_set_property), (theora_enc_get_property):
32544         Added a theora encoder, grouped the encoder and decoder into the
32545         same plugin.
32546
32547 2004-05-05  Thomas Vander Stichele  <thomas at apestaart dot org>
32548
32549         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
32550         (gst_jpegenc_chain):
32551         fix DURATION on outgoing buffers
32552         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
32553         debug using time formats
32554         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
32555         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
32556         (gst_xvimagesink_sink_link):
32557         windows with width/height 0 generate X errors, so don't allow them
32558
32559 2004-05-05  Wim Taymans  <wim@fluendo.com>
32560
32561         * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
32562         (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
32563         (gst_mpeg2dec_negotiate_format):
32564         * ext/mpeg2dec/gstmpeg2dec.h:
32565           removed the static pad template so that we can add the
32566           more accurate framerate value to the caps.
32567
32568
32569 2004-05-04  Benjamin Otte  <otte@gnome.org>
32570
32571         * configure.ac:
32572           check for kdemacros.h, too (should fix #141821)
32573         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
32574           don't crash if no header was sent, but nicely error out (fixes part
32575           of #141554)
32576
32577 2004-05-04  Wim Taymans  <wim@fluendo.com>
32578
32579         * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
32580         parent dispose function to avoid segfault on destroy.
32581
32582 2004-05-04  Thomas Vander Stichele  <thomas at apestaart dot org>
32583
32584         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
32585         (plugin_init):
32586         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
32587         (gst_xvimagesink_sink_link):
32588         clean up debugging caps
32589         also recreate xvimage when format has changed
32590
32591 2004-05-04  Benjamin Otte  <otte@gnome.org>
32592
32593         * ext/libvisual/Makefile.am:
32594         * ext/libvisual/visual.c: (gst_visual_class_init),
32595         (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
32596         (gst_visual_srclink), (gst_visual_chain),
32597         (gst_visual_change_state), (plugin_init):
32598           use a GstAdapter to correctly adapt buffer sizes - allows using a
32599           framerate
32600
32601 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
32602
32603         * sys/v4l/gstv4lelement.h:
32604         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
32605         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
32606         (gst_v4lsrc_buffer_free):
32607         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
32608         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
32609         (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
32610         (gst_v4lsrc_requeue_frame):
32611         move some debugging categories around
32612         query for fps index and set accordingly if found
32613
32614 2004-05-03  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
32615
32616         * ext/lame/gstlame.c:
32617         correct defaults that lame_init puts out of range
32618
32619 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
32620
32621         * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
32622         (gst_divxenc_class_init):
32623         fix range since -1 is the default
32624         * gst/mpeg1sys/gstmpeg1systemencode.c:
32625         (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
32626         * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
32627         (gst_rtjpegdec_chain):
32628         * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
32629         (gst_rtjpegenc_chain):
32630         * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
32631         (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
32632         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
32633         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
32634         * sys/v4l/gstv4lsrc.c:
32635         * sys/v4l/v4l_calls.c: (gst_v4l_open):
32636         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
32637         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
32638         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
32639         * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
32640           remove gst_info calls
32641
32642 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
32643
32644         * Makefile.am:
32645         * po/af.po:
32646         * po/az.po:
32647         * po/en_GB.po:
32648         * po/nl.po:
32649         * po/sr.po:
32650         * po/sv.po:
32651           Updated translations
32652
32653 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
32654
32655         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
32656           refactor/comment code
32657
32658 2004-05-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32659
32660         * gst/asfdemux/Makefile.am:
32661         * gst/asfdemux/asfheaders.c:
32662         * gst/asfdemux/asfheaders.h:
32663         * gst/asfdemux/gstasf.c: (plugin_init):
32664         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
32665         (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
32666         (gst_asf_demux_setup_pad):
32667         * gst/asfdemux/gstasfdemux.h:
32668         * gst/asfdemux/gstasfmux.c:
32669         * gst/asfdemux/gstasfmux.h:
32670           Add tagging support to demuxer, split out registration in its own
32671           file instead of in demux (hacky), and prevent having some tables
32672           in our memory multiple times (in asfheaders.h).
32673
32674 2004-05-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32675
32676         * gst/matroska/matroska-demux.c:
32677         (gst_matroska_demux_parse_metadata):
32678         * gst/matroska/matroska-ids.h:
32679           Basic tag reading support.
32680
32681 2004-04-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32682
32683         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
32684           Really detect ac-3 audio.
32685         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
32686           really detect matroska files (off-by-1).
32687
32688 2004-04-30  David Schleef  <ds@schleef.org>
32689
32690         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
32691         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
32692         (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
32693         (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
32694         (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
32695         hackage -- parse a lot more atoms, extract a few tags.  One might even
32696         mistake this for tag support.  Maybe it is.
32697         * gst/qtdemux/qtdemux.h:
32698
32699 2004-04-30  Colin Walters  <walters@verbum.org>
32700
32701         * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
32702
32703 2004-04-30  Thomas Vander Stichele  <thomas at apestaart dot org>
32704
32705         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
32706         (gst_ffmpegcolorspace_getcaps):
32707           remove broken nego fix
32708
32709 2004-04-30  Benjamin Otte  <otte@gnome.org>
32710
32711         * configure.ac:
32712         * ext/Makefile.am:
32713         * ext/libvisual/Makefile.am:
32714         * ext/libvisual/visual.c:
32715           add initial support for libvisual (http://libvisual.sourceforge.net)
32716           libvisual is still quite alpha, so expect crashes in there :)
32717
32718 2004-04-29  David Schleef  <ds@schleef.org>
32719
32720         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
32721         (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
32722         up qtdemux to make it spit out codec_data.  Do _not_ look at this
32723         code; you will no longer respect me.
32724
32725 2004-04-29  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
32726
32727         * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
32728         * ext/alsa/gstalsa.h :
32729         change alsa pcm device discovery to find more than 1 device
32730         per card. code review by Ronald.
32731
32732 2004-04-29  David Schleef  <ds@schleef.org>
32733
32734         * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
32735         Add a check for a driver bug on FreeBSD.  (bug #140565)
32736
32737 2004-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
32738
32739         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
32740         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
32741         (gst_jpegenc_getcaps):
32742           move format setting to inner loop
32743         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
32744         (gst_ffmpegcolorspace_getcaps):
32745           use GST_PAD_CAPS if available so that we use already negotiated
32746           caps
32747         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
32748         (qtdemux_parse_moov), (qtdemux_parse):
32749           extra debugging
32750         * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
32751         * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
32752           move hardcoded path to DEFINE
32753
32754 2004-04-28  David Schleef  <ds@schleef.org>
32755
32756         * gst/speed/gstspeed.c: (speed_parse_caps):  Fix caps parsing.
32757         (bug #140064)
32758
32759 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32760
32761         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
32762           Don't probe for playback device if we're a source element. Fixes
32763           #139658.
32764
32765 2004-04-29  Benjamin Otte  <otte@gnome.org>
32766
32767         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
32768         (gst_id3_tag_chain):
32769           rewrite buffer offset
32770
32771 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32772
32773         * configure.ac:
32774         * ext/Makefile.am:
32775         * ext/dts/Makefile.am:
32776         * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
32777         (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
32778         (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
32779         (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
32780         (gst_dtsdec_loop), (gst_dtsdec_change_state),
32781         (gst_dtsdec_set_property), (gst_dtsdec_get_property),
32782         (plugin_init):
32783         * ext/dts/gstdtsdec.h:
32784           New DTS decoder.
32785         * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
32786         (gst_faad_srcconnect):
32787           Add ESDS atom handling (.m4a).
32788
32789 2004-04-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32790
32791         * ext/divx/gstdivxdec.c: (plugin_init):
32792           Remove comment that makes no sense.
32793         * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
32794           Fix for obvious typo that resulted in warnings during gst-register.
32795         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
32796         (gst_xviddec_sink_link):
32797           Fix caps negotiation a bit better.
32798         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
32799           We call this 'codec_data', not 'esds'.
32800
32801 2004-04-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
32802
32803         * gst/monoscope/gstmonoscope.c:
32804           make sure we only provide 256x128
32805         * gst/monoscope/monoscope.c: (monoscope_init):
32806           assert size of 256x128
32807
32808 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
32809
32810         * Makefile.am:
32811         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
32812         (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
32813           fixate to max width and height of device
32814
32815 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
32816
32817         * Makefile.am:
32818         * sys/v4l/gstv4l.c:
32819         * sys/v4l/gstv4lsrc.c:
32820         * sys/v4l/v4l_calls.c:
32821         * sys/v4l/v4lsrc_calls.c:
32822           fix for qc-usb driver which fakes having more than one buffer
32823           by handing the same buffer twice, which confused GStreamer's/v4lsrc
32824           buffer_free override
32825           add debugging
32826
32827 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
32828
32829         * Makefile.am:
32830         * gst/videotestsrc/gstvideotestsrc.c:
32831         (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
32832         (gst_videotestsrc_init), (gst_videotestsrc_get),
32833         (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
32834         * gst/videotestsrc/gstvideotestsrc.h:
32835           add num-buffers property
32836
32837         2004-04-26  Benjamin Otte  <otte@gnome.org>
32838
32839         * ext/mad/gstid3tag.c: (plugin_init):
32840           set id3mux rank to NONE so it doesn't confuse spider
32841           require audio/mpeg,mpegversion=1 in id3mux
32842
32843 2004-04-26  Benjamin Otte  <otte@gnome.org>
32844
32845         * configure.ac:
32846           detect faad correctly as non-working if it's indeed non-working
32847
32848 2004-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
32849
32850         * Makefile.am:
32851         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
32852         (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
32853         fix _getcaps so it only negotiates to its supported format
32854
32855 2004-04-25  Benjamin Otte  <otte@gnome.org>
32856
32857         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
32858           fix memleak
32859
32860 2004-04-23  Benjamin Otte  <otte@gnome.org>
32861
32862         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
32863           audio/x-raw-int with height rules! not. Now it's depth.
32864
32865 2004-04-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32866
32867         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
32868         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
32869         (gst_wavparse_loop):
32870           Missing variable initialization. Add handling of DVI ADPCM. Fix
32871           mis-parsing of LIST chunks. This works around a bug where we mis-
32872           parse non-aligning LIST chunks (so LIST chunks where the contents
32873           don't align with the actual LIST size). The correct fix is to use
32874           rifflib, I'm not going to fix wavparse - too much work. All this
32875           fixes #104878.
32876
32877 2004-04-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
32878
32879         reviewed by Benjamin Otte  <otte@gnome.org>
32880
32881         * ext/shout/gstshout.c: (gst_icecastsend_change_state):
32882           fix shoutcast not working (fixes #140844)
32883
32884 2004-04-22  Benjamin Otte  <otte@gnome.org>
32885
32886         * ext/hermes/gsthermescolorspace.c:
32887         (gst_hermes_colorspace_caps_remove_format_info):
32888         * gst/colorspace/gstcolorspace.c:
32889         (gst_colorspace_caps_remove_format_info):
32890         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
32891         (gst_ffmpegcolorspace_caps_remove_format_info):
32892           s/gst_caps_simplify/gst_caps_do_simplify/
32893
32894 2004-04-22  Benjamin Otte  <otte@gnome.org>
32895
32896         * gst-libs/gst/riff/riff-media.c:
32897         (gst_riff_create_video_caps_with_data):
32898           mpegversion is an int
32899         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
32900           don't try to create pad templates with NULL caps, use any caps
32901           instead.
32902
32903 2004-04-20  David Schleef  <ds@schleef.org>
32904
32905         * ext/sdl/Makefile.am: Link against libgstinterfaces, not
32906         libgstxoverlay.  jmmv@menta.net (Julio M. Merino Vidal)
32907         (bug #140384)
32908
32909 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
32910
32911         reviewed by David Schleef
32912
32913         * ext/mad/gstid3tag.c: Add stdlib.h
32914         * gst/rtp/gstrtpgsmenc.c: same
32915         * gst/tags/gstid3tag.c: same
32916         * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
32917         * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
32918         GST_DISABLE_LOADSAVE use.
32919         * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
32920         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
32921         * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
32922         atol(3)).
32923         * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
32924         * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
32925         strtoul(3)).
32926         * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
32927         * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
32928         $(ID3_CFLAGS).
32929         * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
32930         $(LIBFAME_CFLAGS).
32931
32932 2004-04-20  David Schleef  <ds@schleef.org>
32933
32934         * gst/realmedia/rmdemux.c:  This was supposed to part of the
32935         last checkin.  Same idea.
32936
32937 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
32938
32939         reviewed by David Schleef
32940
32941         * configure.ac: bump required gstreamer version to 0.8.1.1
32942         because of following changes [--ds]
32943
32944         * gst-libs/gst/riff/riff-read.c:  Include gst/gstutils.h.
32945         (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
32946         (gst_riff_read_header):  Use GST_READ_UINT*
32947         macros to access possibly unaligned memory.
32948
32949         * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
32950         (mp3_type_find):  Use GST_READ_UINT*
32951         macros to access possibly unaligned memory.
32952         (mp3_type_find, mpeg1_parse_header, qt_type_find)
32953         (speex_type_find): Likewise
32954
32955         * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
32956
32957         * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
32958         (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
32959         (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
32960         (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
32961         (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
32962         (qtdemux_tree_get_sibling_by_type):  Use GST_READ_UINT*
32963         macros to access possibly unaligned memory.
32964
32965         * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
32966         Likewise.
32967
32968         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
32969         (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
32970
32971         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
32972         Likewise.
32973
32974         * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
32975         (gst_mpeg2subt_chain_subtitle): Likewise.
32976
32977         * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
32978         (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
32979         Likewise.
32980
32981         * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
32982         Likewise.
32983
32984         * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
32985         Likewise.
32986
32987         * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
32988         Likewise.
32989
32990 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
32991
32992         * configure.ac:
32993           update required version of GStreamer because of GST_TIME_FORMAT
32994
32995 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
32996
32997         * ext/mad/gstid3tag.c: (gst_id3_tag_init):
32998           remove leftover g_print
32999         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
33000           don't try setting only a subset of the caps. We don't want to kill
33001           autoplugging on purpose
33002
33003 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
33004
33005         * sys/ximage/ximagesink.c: (plugin_init):
33006         * sys/xvimage/xvimagesink.c: (plugin_init):
33007           add debugging categories
33008
33009 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
33010
33011         * po/en_GB.po:
33012         * po/LINGUAS:
33013           Adding en_GB translation (Gareth Owen)
33014
33015 2004-04-20  David Schleef  <ds@schleef.org>
33016
33017         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
33018         (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
33019         (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
33020         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
33021         A number of new features and hacks to extract the esds atom and
33022         put it into the caps.  (bug #137724)
33023
33024 2004-04-19  David Schleef  <ds@schleef.org>
33025
33026         * gconf/Makefile.am: Fix for non-GNU make
33027         * gst-libs/gst/Makefile.am: Change directory order to handle
33028         GstPlay linking with gstinterfaces
33029         * gst-libs/gst/audio/make_filter: make use of tr portable
33030         * gst-libs/gst/play/Makefile.am: Add intended \
33031         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
33032         (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
33033         function prototype instead of void *.
33034         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
33035         macro.
33036         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
33037         (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
33038         * gst/videofilter/make_filter: make use of tr portable
33039         * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
33040
33041 2004-04-19  Thomas Vander Stichele  <thomas at apestaart dot org>
33042
33043         * po/LINGUAS:
33044         * po/uk.po:
33045           Added Ukrainian translation (Maxim V. Dziumanenko)
33046
33047 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33048
33049         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
33050         (gst_gsmdec_link), (gst_gsmdec_chain):
33051           Fix capsnego, simplify chain function slightly.
33052         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
33053           Add GSM.
33054
33055 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33056
33057         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
33058         (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
33059         (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
33060           Hack to make wavparse work with spider (always -> sometimes pad).
33061           Fixes #135862 && #140411.
33062
33063 2004-04-18  Benjamin Otte  <otte@gnome.org>
33064
33065         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
33066         (gst_osselement_rate_probe_check),
33067         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
33068           get rid of \n in debug output
33069
33070 2004-04-17  Iain <iain@prettypeople.org>
33071
33072         * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
33073         not just EOS.
33074
33075 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33076
33077         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
33078         (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
33079         (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
33080         (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
33081         (gst_id3_tag_src_link), (gst_id3_tag_chain),
33082         (gst_id3_tag_change_state), (plugin_init):
33083           deprecate id3tag element and replace with id3demux/id3mux.
33084           great side effect: this ugly file is now even uglier, yay!
33085         * ext/mad/gstmad.h:
33086           remove non-available function
33087           update for new get_type
33088
33089 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33090
33091         * configure.ac:
33092           require mpeg2dec >= 0.4.0
33093
33094 2004-04-17  Benjamin Otte  <otte@gnome.org>
33095
33096         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
33097         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
33098         (gst_xvimagesink_set_xwindow_id):
33099           call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
33100           assorted cleanup fixes.
33101
33102 2004-04-16  David Schleef  <ds@schleef.org>
33103
33104         * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
33105         * sys/xvimage/xvimagesink.h: same
33106
33107 2004-04-16  Thomas Vander Stichele  <thomas at apestaart dot org>
33108
33109         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
33110           Fix GST_ELEMENT_ERROR with (NULL)
33111
33112 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33113
33114         * gst-libs/gst/riff/riff-media.c:
33115         (gst_riff_create_video_caps_with_data):
33116           Add div[3456] as fourccs for DivX 3 (fixes #140137).
33117
33118 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33119
33120         * gst-libs/gst/riff/riff-media.c:
33121         (gst_riff_create_video_caps_with_data),
33122         (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
33123         (gst_riff_create_video_template_caps),
33124         (gst_riff_create_audio_template_caps):
33125         * gst-libs/gst/riff/riff-media.h:
33126         * gst-libs/gst/riff/riff-read.c:
33127         (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
33128         * gst-libs/gst/riff/riff-read.h:
33129         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
33130           Add MS RLE support. I added some functions to read out strf chunks
33131           into strf chunks and the data behind it. This is usually color
33132           palettes (as in RLE, but also in 8-bit RGB). Also use those during
33133           caps creation. Lastly, add ADPCM (similar to wavparse - which
33134           should eventually be rifflib based).
33135         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
33136         (gst_matroska_demux_init), (gst_matroska_demux_reset):
33137         * gst/matroska/matroska-demux.h:
33138           Remove placeholders for some prehistoric tagging system. Didn't add
33139           support for any tag system really anyway.
33140         * gst/qtdemux/qtdemux.c:
33141           Add support for audio/x-m4a (MPEG-4) through spider.
33142         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
33143         (gst_wavparse_loop):
33144           ADPCM support (#135862). Increase max. buffer size because we
33145           cannot split buffers for ADPCM (screws references) and I've seen
33146           files with 2048 byte chunks. 4096 seems safe for now.
33147
33148 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
33149
33150         * configure.ac: bump nano to 1
33151
33152 === release 0.8.1 ===
33153
33154 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
33155
33156         * configure.ac: releasing 0.8.1, "Comforting Sounds"
33157
33158 2004-04-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33159
33160         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
33161           Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
33162           Fixes #140058
33163
33164 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
33165
33166         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
33167           lower rank of dvddemux so that it's not used for mpeg playback.
33168
33169 2004-04-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33170
33171         * configure.ac:
33172           save libs correctly when checking mad
33173
33174 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
33175
33176         * ext/mad/gstid3tag.c: (plugin_init):
33177           lower rank of id3tag as proposed by Benjamin.  Fixes #139926.
33178
33179 2004-04-13  David Schleef  <ds@schleef.org>
33180
33181         * common/m4/gst-feature.m4: Call -config scripts with
33182         --plugin-libs if it is supported.
33183         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
33184         JPEG images are image/jpeg.
33185         * gst/debug/Makefile.am:
33186         * gst/debug/negotiation.c: (gst_negotiation_class_init),
33187         (gst_negotiation_getcaps), (gst_negotiation_pad_link),
33188         (gst_negotiation_update_caps), (gst_negotiation_get_property),
33189         (gst_negotiation_plugin_init): Add a property that acts like
33190         filter caps.
33191         * testsuite/gst-lint:  Move license checking to be a standard
33192         test.
33193
33194 2004-04-13  David Schleef  <ds@schleef.org>
33195
33196         * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
33197         patch from Sebastien Cote (bug #139958)
33198
33199 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
33200
33201         * examples/gstplay/Makefile.am:
33202         * examples/gstplay/player.c: (main):
33203           make the commandline player example use gconf settings
33204
33205 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
33206
33207         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
33208         (gst_cacasink_sinkconnect), (gst_cacasink_init),
33209         (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
33210           init/end library during state transition, not object
33211           creation/disposal.  get rid of custom dispose handler.
33212
33213
33214 2004-04-12  Christian Schaller <Uraeus@gnome.org>
33215
33216         * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
33217         be a symlink
33218
33219 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33220
33221         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
33222           Handle JUNK chunks inside data section. Prevents warnings.
33223
33224 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33225
33226         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
33227         (gst_riff_create_video_template_caps):
33228           Add MS video v1.
33229         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
33230         (gst_avi_demux_stream_data):
33231           Add support for "rec-list" chunks.
33232
33233 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33234
33235         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
33236           Fix another codecname mismatch.
33237
33238 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33239
33240         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
33241           Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
33242           so that MJPEG plays back.
33243
33244 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33245
33246         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
33247         (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
33248         * gst/mpeg1videoparse/gstmp1videoparse.h:
33249           Fix for some slight mis-cuts in buffer parsing, and for some
33250           potential overflows or faults-causers. Adds disconts. Also fixes
33251           #139105 while we're at it.
33252
33253 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33254
33255         * configure.ac:
33256         * sys/v4l2/gstv4l2element.h:
33257           Workaround for missing struct v4l2_buffer declaration in Suse 9
33258           and Mandrake 10 linux/videodev2.h header file (#135919).
33259
33260 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33261
33262         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
33263           Bail out if no filename was given.
33264
33265 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33266
33267         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
33268         (gst_v4l2_fourcc_from_structure):
33269           Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
33270           Y41B somewhere).
33271
33272 2004-04-09  Benjamin Otte  <otte@gnome.org>
33273
33274         * ext/gnomevfs/gstgnomevfssink.c:
33275         (_gst_boolean_allow_overwrite_accumulator),
33276         (gst_gnomevfssink_class_init):
33277           fix erase signal - if any handler returns false the file will not be
33278           overwritten. If no handler is connected, the file will not be
33279           overwritten either.
33280           renamed signal to "allow-overwrite"
33281         * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
33282           free string when adding it to ID3 failed
33283         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
33284           unref event when done
33285         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
33286           free caps
33287         * gst/typefind/gsttypefindfunctions.c:
33288         (mpeg_video_stream_type_find):
33289           fix invalid read
33290
33291 2004-04-08  David Schleef  <ds@schleef.org>
33292
33293         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
33294         (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
33295
33296 2004-04-08  David Schleef  <ds@schleef.org>
33297
33298         * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
33299         we don't support (bug #139532)
33300
33301 2004-04-07  Thomas Vander Stichele  <thomas at apestaart dot org>
33302
33303         * ext/mad/gstmad.c: (gst_mad_handle_event),
33304         (gst_mad_check_caps_reset), (gst_mad_chain),
33305         (gst_mad_change_state):
33306           only set explicit caps if they haven't been set before for
33307           this stream.  MPEG-audio sample rate/channels aren't allowed
33308           to change in-stream.
33309           Fixes #139382
33310
33311 2004-04-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33312
33313         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
33314         (_gst_boolean_did_something_accumulator),
33315         (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
33316         (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
33317         (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
33318         (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
33319         (gst_gnomevfssink_change_state):
33320           Fix erase signal. Don't erase by default. Remove handoff signal.
33321           Remove erase property. Don't segfault. General cleanup.
33322
33323 2004-04-07  Benjamin Otte  <otte@gnome.org>
33324
33325         * gst-libs/gst/gconf/test-gconf.c: (main):
33326           add missing gst_init
33327
33328 2004-04-07  Benjamin Otte  <otte@gnome.org>
33329
33330         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
33331           free the mutexes, too
33332
33333 2004-04-07  Benjamin Otte  <otte@gnome.org>
33334
33335         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
33336           actually free the URI string
33337         * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
33338           compute offset correctly when passing discont events
33339         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
33340           don't leak discont events
33341         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
33342           add some missing breaks so caps aren't copied randomly
33343         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
33344           if we realloc memory, we better use it
33345
33346 2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33347
33348         * ext/mad/gstmad.c: (normal_seek):
33349           fix GST_FORMAT_TIME usage
33350
33351 2004-04-05  David Schleef  <ds@schleef.org>
33352
33353         * ext/kio/kiosrc.cpp:  Undefine KDE_DEPRECATED so we can use
33354         a deprecated function (hack!)
33355
33356 2004-04-05  Benjamin Otte  <otte@gnome.org>
33357
33358         * ext/esd/esdmon.c: (gst_esdmon_get):
33359           fix nonterminated vararg and memleak
33360
33361 2004-04-05  Benjamin Otte  <otte@gnome.org>
33362
33363         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
33364         (gst_ladspa_init), (gst_ladspa_force_src_caps),
33365         (gst_ladspa_set_property), (gst_ladspa_get_property),
33366         (gst_ladspa_instantiate), (gst_ladspa_activate),
33367         (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
33368           clean up debugging
33369
33370 2004-04-05  Stefan Kost <kost@imn.htwk-leipzig.de>
33371
33372         reviewed by Benjamin Otte  <otte@gnome.org>
33373
33374         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
33375           check for broken LADSPA parameters (fixes #138635)
33376
33377 2004-04-05  Benjamin Otte  <otte@gnome.org>
33378
33379         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
33380           advertise buffer-frames correctly on sinkpads
33381
33382 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
33383
33384         * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
33385         (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
33386         (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
33387         (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
33388         (gst_mad_check_caps_reset), (gst_mad_chain):
33389         add more debugging, only reset caps when we're not in error state
33390
33391 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
33392
33393         * ext/mad/gstmad.c: add debugging category, comment + cleanups
33394
33395 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
33396
33397         reviewed by Benjamin Otte  <otte@gnome.org>
33398
33399         * configure.ac:
33400           fix == in test(1) operator
33401
33402 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
33403
33404         reviewed by Benjamin Otte  <otte@gnome.org>
33405
33406         * configure.ac:
33407           fix --export-symblos-regex to a working regex.
33408
33409 2004-04-04  Benjamin Otte  <otte@gnome.org>
33410
33411         * sys/oss/.cvsignore:
33412           add for oss_probe
33413
33414 2004-04-03  Tim-Phillip Müller <t.i.m@zen.co.uk>
33415
33416         reviewed by Benjamin Otte  <otte@gnome.org>
33417
33418         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
33419           add missing 'new_media' argument (fixes #138168)
33420         * gst/matroska/matroska-demux.c:
33421         (gst_matroska_demux_handle_seek_event):
33422           add vararg terminator (fixes #138169)
33423
33424 2004-04-02  David Schleef  <ds@schleef.org>
33425
33426         * ext/gdk_pixbuf/Makefile.am:  Make sure gstgdkanimation.h is
33427         disted (bug #138914)
33428
33429 2004-04-01  Benjamin Otte  <otte@gnome.org>
33430
33431         * ext/alsa/gstalsa.c: (gst_alsa_change_state),
33432         (gst_alsa_close_audio):
33433           handle case better where a soundcard can't pause
33434         * ext/ogg/gstoggdemux.c:
33435           don't crash when we get events but don't have pads yet
33436
33437 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
33438
33439         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
33440           throw an error if we couldn't probe any caps.
33441
33442 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
33443
33444         * ext/dvdnav/gst-dvd:
33445         Add a really simple sample DVD player
33446
33447 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
33448
33449         * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
33450         (gst_a52dec_push), (gst_a52dec_handle_event),
33451         (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
33452         (gst_a52dec_change_state):
33453         * ext/a52dec/gsta52dec.h:
33454           Use a debug category, Output timestamps correctly
33455           Emit tag info, Handle events, tell liba52dec about cpu
33456           capabilities so it can use MMX etc.
33457         * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
33458           Fix a crasher accessing invalid memory
33459         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
33460         (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
33461         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
33462         (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
33463         (dvdnavsrc_query):
33464           Some support for byte-format seeking.
33465           Small fixes for still frames and menu button overlays
33466         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
33467         (gst_mpeg2dec_alloc_buffer):
33468           Use a debug category. Adjust the report level of several items to
33469           LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
33470           so it doesn't lose the GstBuffer pointer
33471         * gst/debug/Makefile.am:
33472         * gst/debug/gstdebug.c: (plugin_init):
33473         * gst/debug/gstnavseek.c: (gst_navseek_get_type),
33474         (gst_navseek_base_init), (gst_navseek_class_init),
33475         (gst_navseek_init), (gst_navseek_seek),
33476         (gst_navseek_handle_src_event), (gst_navseek_set_property),
33477         (gst_navseek_get_property), (gst_navseek_chain),
33478         (gst_navseek_plugin_init):
33479         * gst/debug/gstnavseek.h:
33480           Add the navseek debug element for seeking back and forth in a
33481           video stream using arrow keys.
33482         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
33483         (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
33484         (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
33485         (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
33486         (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
33487         (gst_mpeg2subt_parse_header), (gst_get_nibble),
33488         (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
33489         (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
33490         (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
33491         (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
33492         * gst/mpeg2sub/gstmpeg2subt.h:
33493           Pretty much a complete rewrite. Now a loopbased element. May still
33494           require work to properly synchronise subtitle buffers.
33495         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
33496         (gst_dvd_demux_send_subbuffer):
33497         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
33498           Don't attempt to create subbuffers of size 0
33499           Reduce a couple of error outputs to warnings.
33500         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
33501         (gst_y4mencode_chain):
33502         Output the y4m frame header correctly.
33503
33504 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
33505
33506         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
33507           throw errors instead of allowing SIGFPE
33508
33509 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
33510
33511         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
33512         (gst_gconf_render_bin_from_key):
33513           leak plugging and style fixing
33514
33515 2004-03-31  David Schleef  <ds@schleef.org>
33516
33517         * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
33518         (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
33519         (bug #138225)
33520         * gst/debug/Makefile.am:
33521         * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
33522         * gst/debug/gstdebug.c: (plugin_init):  Merge elements into one
33523         plugin.
33524         * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
33525         (gst_negotiation_base_init), (gst_negotiation_class_init),
33526         (gst_negotiation_init), (gst_negotiation_getcaps),
33527         (gst_negotiation_pad_link), (gst_negotiation_chain),
33528         (gst_negotiation_set_property), (gst_negotiation_get_property),
33529         (gst_negotiation_plugin_init):  New element to talk about random
33530         negotiation things happening in a pipeline.
33531
33532 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
33533
33534         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
33535           fix integer addition with help of Stefan Kost
33536
33537 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
33538
33539         * po/nl.po: updated Dutch translation (Elros Cyriatan)
33540
33541 2004-03-30  David Schleef  <ds@schleef.org>
33542
33543         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
33544         (gst_mpeg2dec_negotiate_format):  Handle Y42B-format MPEG
33545         video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
33546         (bug #137504)
33547         * ext/mpeg2dec/gstmpeg2dec.h:
33548
33549 2004-03-30  David Schleef  <ds@schleef.org>
33550
33551         * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
33552
33553 2004-03-30  David Schleef  <ds@schleef.org>
33554
33555         * tools/gst-launch-ext-m.m:  Applied patch from gnome@flyn.org (W.
33556         Michael Petullo) to handle .mov
33557
33558 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33559
33560         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
33561         (gst_osselement_rate_check_rate):
33562           probe caps correctly for sound cards that only support one format
33563
33564 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33565
33566         * ext/kio/kiosrc.cpp: (process_events):
33567           update handling event processing if inside KDE - untested
33568
33569 2004-03-29  David Schleef  <ds@schleef.org>
33570
33571         * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
33572         by 2 to not interfere with other colorspaces.
33573         * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
33574         * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
33575         one to not interfere with ffmpeg_colorspace.
33576
33577 2004-03-29  David Schleef  <ds@schleef.org>
33578
33579         * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
33580         aren't in the caps.
33581         * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
33582         * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
33583
33584 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33585
33586         * gst-libs/gst/riff/riff-media.c:
33587           fail on error, don't try to set stuff on NULL caps
33588
33589 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33590
33591         * configure.ac:
33592         * ext/Makefile.am:
33593         * ext/kio/Makefile.am:
33594         * ext/kio/kioreceiver.cpp:
33595         * ext/kio/kioreceiver.h:
33596         * ext/kio/kiosrc.cpp:
33597         * ext/kio/kiosrc.h:
33598           add experimental kiosrc plugin
33599         * ext/alsa/gstalsaplugin.c: (plugin_init):
33600           initialize debugging category only when we're sure registering the
33601           plugins worked.
33602
33603 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
33604
33605         * examples/gstplay/player.c: (main):
33606         * gst-libs/gst/play/play.c: (gst_play_class_init),
33607         (gst_play_set_location), (gst_play_set_data_src),
33608         (gst_play_set_video_sink), (gst_play_set_audio_sink),
33609         (gst_play_set_visualization), (gst_play_connect_visualization):
33610           check return values of element_set_state and return FALSE where
33611           failed
33612
33613 2004-03-29  Benjamin Otte  <otte@gnome.org>
33614
33615         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
33616           try harder to check if an event is really a discont
33617
33618 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
33619
33620         * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
33621         * po/az.po:
33622
33623 2004-03-28  Benjamin Otte  <otte@gnome.org>
33624
33625         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
33626         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
33627         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
33628           get rid of non-standard "..." ranges in case statements.
33629
33630 2004-03-27  Martin Soto  <martinsoto@users.sourceforge.net>
33631
33632         * gst/mpegstream/gstmpegdemux.c:
33633         * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
33634         specific functionality split to the new dvddemux element.
33635         * gst/mpegstream/gstdvddemux.c:
33636         * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
33637         streams, derived from mpegdemux.
33638         * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
33639         up. SCR based timestamp rewriting can be turned off (will probably
33640         completely disappear soon).
33641         * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
33642         hacking. General cleanup. All printf statements replaced by
33643         debugging messages. Almost complete libdvdnav support.
33644         (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
33645         by events. New properties for audio and subpicture languages.
33646         (dvdnavsrc_update_highlight): Now uses events.
33647         (dvdnavsrc_user_op): Cleaned up.
33648         (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
33649         based). Lots of cleanup, and propper support for most libdvdnav
33650         events.
33651         (dvdnavsrc_make_dvd_event): New function.
33652         (dvdnavsrc_make_dvd_nav_packet_event): New function.
33653         (dvdnavsrc_make_clut_change_event): New function.
33654
33655 2004-03-26  Benjamin Otte  <otte@gnome.org>
33656
33657         * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
33658           fix bug where typefinding would claim it's theora whenever less then
33659           7 bytes of data were available
33660
33661 2004-03-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33662
33663         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
33664         (gst_alawdec_base_init), (gst_alawdec_class_init),
33665         (gst_alawdec_init), (gst_alawdec_chain):
33666         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
33667         (gst_alawenc_base_init), (gst_alawenc_class_init),
33668         (gst_alawenc_init), (gst_alawenc_chain):
33669         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
33670         (gst_mulawdec_base_init), (gst_mulawdec_class_init),
33671         (gst_mulawdec_init), (gst_mulawdec_chain):
33672         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
33673         (gst_mulawenc_base_init), (gst_mulawenc_class_init),
33674         (gst_mulawenc_init), (gst_mulawenc_chain):
33675           Fix capsnego in all four, remove the unused property functions and
33676           simplify the chain functions slightly. I guess we could use macros
33677           or something similar for those, since the code is so similar, but
33678           I'm currently too lazy...
33679
33680 2004-03-24  David Schleef  <ds@schleef.org>
33681
33682         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
33683         (gst_osselement_close_audio), (gst_osselement_probe_caps),
33684         (gst_osselement_get_format_structure),
33685         (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
33686         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
33687         (gst_osselement_rate_int_compare): Add code to handle rate probing
33688         (bug #120883)
33689         * sys/oss/gstosselement.h: same
33690         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
33691         Use rate probing provided by osselement.
33692         * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
33693
33694 2004-03-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33695
33696         * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
33697         (gst_xvidenc_get_property):
33698           ulong/int mess-up.
33699
33700 2004-03-24  David Schleef  <ds@schleef.org>
33701
33702         * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
33703         (gst_speexdec_init):
33704         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
33705         (gst_speexenc_init):  Create the pad template correctly (from
33706         the static pad template, not a NULL pointer.)
33707
33708 2004-03-25  Benjamin Otte  <otte@gnome.org>
33709
33710         * gst/debug/Makefile.am:
33711         * gst/debug/breakmydata.c:
33712           add element that quasi-randomly changes bytes in the stream.
33713           Intended use is robustness checking of demuxers and decoders in
33714           media tests.
33715
33716 2004-03-24  Benjamin Otte  <otte@gnome.org>
33717
33718         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
33719         (gst_alsa_probe_hw_params):
33720         * ext/alsa/gstalsa.h:
33721           debugging output fixes
33722
33723 2004-03-24  Benjamin Otte  <otte@gnome.org>
33724
33725         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
33726           don't g_return_if_fail if element is PLAYING, fail silently as every
33727           other element.
33728         * gst/effectv/gstquark.c: (gst_quarktv_chain):
33729           only fix needed for cast lvalue issues in gst-plugins
33730         * gst/volenv/gstvolenv.c: (gst_volenv_init):
33731           add proxy_getcaps
33732
33733 2004-03-24  Benjamin Otte  <otte@gnome.org>
33734
33735         * gst/level/gstlevel.c: (gst_level_init):
33736           add proxying getcaps function, so level doesn't advertise impossible
33737           caps
33738
33739 2004-03-24  David Schleef  <ds@schleef.org>
33740
33741         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
33742         (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
33743         (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
33744         (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
33745         (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
33746         (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
33747         (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
33748         (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
33749         (qtdemux_parse_tree), (qtdemux_parse_trak):  Fix debugging
33750         messages.  Divide the chunk size by the compression ratio
33751         (needed for MACE audio)
33752
33753 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33754
33755         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
33756           Fix buffer overflow read error.
33757
33758 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33759
33760         * ext/alsa/gstalsa.h:
33761           Remove unused entry.
33762         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
33763           Add cinepak.
33764         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
33765         (gst_videodrop_link), (gst_videodrop_chain):
33766           Fix, sort of. Was horribly broken with new capsnego. Bah...
33767
33768 2004-03-23  Jeremy Simon  <jesimon@libertysurf.fr>
33769
33770         * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
33771         (plugin_init):
33772         Add a monkeysaudio typefind function
33773
33774 2004-03-23  Johan Dahlin  <johan@gnome.org>
33775
33776         * gst-libs/gst/play/play.c (gst_play_audio_fixate)
33777         (gst_play_video_fixate): Check so the structure has the field
33778         before trying to fixate them, this makes it possible to have
33779         fakesinks for video and audio output without printing errors on
33780         the output console.
33781
33782 2004-03-22  David Schleef  <ds@schleef.org>
33783
33784         * sys/oss/Makefile.am:
33785         * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
33786         (check_rate), (add_rate):  Rate probing test app.
33787
33788 2004-03-21  Benjamin Otte  <otte@gnome.org>
33789
33790         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
33791         (_fixate_caps_to_int), (gst_audio_convert_fixate):
33792           add a fixation function that pretty much does the right thing (fixes
33793           #137556)
33794
33795 2004-03-20  David I. Lehn  <dlehn@users.sourceforge.net>
33796
33797         * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
33798
33799 2004-03-20  Tim-Phillip Müller <t.i.m@zen.co.uk>
33800
33801         reviewed by: Benjamin Otte  <otte@gnome.org>
33802
33803         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
33804           terminate gst_event_new_discontinuous correctly (fixes parts of
33805           #137711)
33806
33807 2004-03-19  David Schleef  <ds@schleef.org>
33808
33809         * gst-libs/gst/Makefile.am:  Enable xoverlay unconditionally,
33810         since it doesn't depend on X, and it's part of our ABI.
33811
33812 2004-03-19  Iain <iain@prettypeople.org>
33813
33814         * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
33815         is_int in the structure, not the local variable.
33816
33817 2004-03-19  David Schleef  <ds@schleef.org>
33818
33819         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
33820         (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
33821         (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
33822         Improvements in caps negotiation.
33823
33824 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
33825
33826         * po/LINGUAS:
33827         * po/af.po:
33828           adding Afrikaans (Petri Jooste)
33829
33830 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
33831
33832         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
33833         (gst_ffmpegcolorspace_chain):
33834         throw error instead of g_critical (#137588)
33835
33836 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
33837
33838         * Makefile.am:
33839         * configure.ac:
33840           dist common and m4 correctly
33841         * po/sv.po:
33842
33843 2004-03-17  David Schleef  <ds@schleef.org>
33844
33845         * pkgconfig/gstreamer-media-info.pc.in:  Add Version.
33846         (bug #137348)
33847
33848 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
33849
33850         * po/LINGUAS:
33851         * po/sv.po:
33852           adding Swedish translation (Christian Rose)
33853
33854 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
33855
33856         * Makefile.am: use release.mak
33857
33858 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
33859
33860         * common/ChangeLog:
33861         * common/gst-autogen.sh:
33862           add some explanation about the version detection
33863         * configure.ac:
33864           fix X check
33865
33866 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
33867
33868         * configure.ac: bump nano to 1
33869
33870 === release 0.8.0 ===
33871
33872 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
33873
33874         * configure.ac: release 0.8.0, "Pharmaceutical Itch"
33875
33876 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
33877
33878         * configure.ac:
33879           update libtool version
33880         * gst-libs/gst/media-info/Makefile.am:
33881           actually use libtool version
33882
33883 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
33884
33885         * configure.ac: fix speex detection to work with 1.0 but not 1.1
33886
33887 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
33888
33889         * configure.ac:
33890         * gst-plugins.spec.in:
33891         * pkgconfig/Makefile.am:
33892         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
33893         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
33894         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
33895         * pkgconfig/gstreamer-libs.pc.in:
33896         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
33897         * pkgconfig/gstreamer-play-uninstalled.pc.in:
33898         * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
33899         * pkgconfig/gstreamer-plugins.pc.in:
33900           remove @VERSION@ from some of the pc files since core and plugins
33901           are decoupled.
33902           created gstreamer-plugins.pc as it's a better name, but keeping
33903           -libs around for now to get fixes upstream done first.
33904
33905 2004-03-15  Julien MOUTTE <julien@moutte.net>
33906
33907         * gst-libs/gst/play/play.c: (gst_play_get_framerate),
33908         (gst_play_get_sink_element): First draft of gst_play_get_framerate.
33909         * gst-libs/gst/play/play.h:
33910
33911 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
33912
33913         * *.c, *.cc: don't mix tabs and spaces
33914
33915 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
33916
33917         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
33918           use the new ffmpegcolorspace
33919         * gst-plugins.spec.in:
33920           package new colorspace and media-info
33921         * configure.ac:
33922         * pkgconfig/Makefile.am:
33923           fix some more disting issues
33924         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
33925         * pkgconfig/gstreamer-media-info.pc.in:
33926           generate media-info pc files
33927
33928 2004-03-15  Johan Dahlin  <johan@gnome.org>
33929
33930         * *.h: Revert indenting
33931
33932 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
33933
33934         * configure.ac:
33935           adding ffmpegcolorspace element
33936         * gst/ffmpegcolorspace/Makefile.am:
33937         * gst/ffmpegcolorspace/avcodec.h:
33938         * gst/ffmpegcolorspace/common.h:
33939         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
33940         * gst/ffmpegcolorspace/dsputil.h:
33941         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
33942         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
33943         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
33944         (gst_ffmpeg_caps_to_pix_fmt):
33945         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
33946         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
33947         (gst_ffmpegcolorspace_caps_remove_format_info),
33948         (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
33949         (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
33950         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
33951         (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
33952         (gst_ffmpegcolorspace_set_property),
33953         (gst_ffmpegcolorspace_get_property),
33954         (gst_ffmpegcolorspace_register):
33955         * gst/ffmpegcolorspace/imgconvert.c:
33956         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
33957         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
33958         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
33959         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
33960         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
33961         (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
33962         (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
33963         (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
33964         (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
33965         (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
33966         (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
33967         (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
33968         (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
33969         (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
33970         (img_get_alpha_info), (deinterlace_line),
33971         (deinterlace_line_inplace), (deinterlace_bottom_field),
33972         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
33973         * gst/ffmpegcolorspace/imgconvert_template.h:
33974         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
33975         * gst/ffmpegcolorspace/mmx.h:
33976         * gst/ffmpegcolorspace/utils.c: (avcodec_init):
33977           adding ffmpegcolorspace element supplied by Ronald after cleaning
33978           up and pulling in the right bits of upstream source.
33979           I'm sure a better C/compiler wizard could do some cleaning up (for
33980           example use GLIB's malloc stuff), but as a first pass this
33981           works very well
33982
33983 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
33984
33985         * ext/alsa/gstalsa.h:
33986           I assume Ronald forgot to commit the change to have cardname
33987           as a struct member.  Expect some public spanking at the next
33988           opportunity.
33989
33990 2004-03-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33991
33992         * ext/alsa/gstalsa.c: (gst_alsa_get_property),
33993         (gst_alsa_open_audio), (gst_alsa_close_audio):
33994         * ext/alsa/gstalsa.c:
33995           Don't open the device if we're a mixer (= padless).
33996         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
33997         (gst_alsa_mixer_init), (gst_alsa_mixer_open),
33998         (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
33999           Open mixer during state change rather than during object
34000           initialization. Also, get a device name. Currently in a somewhat
34001           hackish fashion, but I didn't really find something better.
34002
34003 2004-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
34004
34005         * *.c, *.h: run gst-indent
34006
34007 2004-03-14  Benjamin Otte  <otte@gnome.org>
34008
34009         * gst/modplug/gstmodplug.cc:
34010         * gst/modplug/gstmodplug.h:
34011           set correct timestamps on outgoing buffers
34012
34013 2004-03-14  Benjamin Otte  <otte@gnome.org>
34014
34015         * gst/modplug/gstmodplug.cc:
34016           handle events - don't do crap when a discont arrives that's not
34017           necessary
34018           This allows correct loading and playback of mods in Rhythmbox
34019
34020 2004-03-14  Benjamin Otte  <otte@gnome.org>
34021
34022         * configure.ac:
34023         * gst-libs/gst/gconf/Makefile.am:
34024         * pkgconfig/Makefile.am:
34025           move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
34026           they get rebuilt properly
34027         * configure.ac:
34028           when checking for vorbis, try pkgconfig first.
34029         * gst/modplug/gstmodplug.cc:
34030           add fixate function
34031
34032 2004-03-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34033
34034         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
34035           Fix for obvious mistake, where we first shift the offset and then
34036           read a samplesize element assuming the old offset. Note that this
34037           part still has something weird, i.e. my movies containing those
34038           don't actually play well, but at least there's something that looks
34039           like sound now.
34040
34041 2004-03-14  Jan Schmidt  <thaytan@mad.scientist.com>
34042         * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
34043         (plugin_init):
34044         Add a typefind function for speex format
34045
34046 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34047
34048         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
34049         (gst_asf_demux_setup_pad):
34050           Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
34051           instead of 0. Reason is simple: some elements have a fps range
34052           of 1-max instead of 0-max. So now ASF video actually works.
34053
34054 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
34055
34056         * po/LINGUAS:
34057         * po/sr.po:
34058           adding serbian as a language
34059
34060 2004-03-13  Benjamin Otte  <otte@gnome.org>
34061
34062         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
34063           return taglist correctly from _get function, don't gst_pad_push it.
34064           (fixes #137042)
34065
34066 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
34067         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
34068
34069 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34070
34071         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
34072         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
34073         (gst_alsa_mixer_track_new):
34074         * ext/alsa/gstalsamixertrack.h:
34075           Fix ancient leftovers... MixerTrack is a GObject.
34076
34077 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34078
34079         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
34080         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
34081           Don't block during probing...
34082
34083 2004-03-12  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34084
34085         * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
34086         (gst_alsa_get_property), (gst_alsa_probe_get_properties),
34087         (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
34088         (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
34089         (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
34090         (gst_alsa_open_audio), (gst_alsa_close_audio):
34091         * ext/alsa/gstalsa.h:
34092           Add propertyprobe interface implementation, add some device-name
34093           property, all this so that it looks good in gnome-volume-control.
34094
34095 2004-03-12  David Schleef  <ds@schleef.org>
34096
34097         * configure.ac: the Hermes library controls hermescolorspace, not
34098         colorspace.
34099         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
34100         (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
34101         not /* */
34102         * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
34103         * ext/sdl/sdlvideosink.h: ditto.
34104         * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
34105
34106 2004-03-12  Benjamin Otte  <otte@gnome.org>
34107
34108         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
34109         (gst_x_overlay_got_xwindow_id):
34110         * gst-libs/gst/xoverlay/xoverlay.h:
34111           replace XID with unsigned long to get rid of the xlibs dependency in
34112           XOverlay (fixes #137004)
34113
34114 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
34115         * gst/effectv/gstaging.c: (gst_agingtv_base_init),
34116         (gst_agingtv_setup):
34117         * gst/effectv/gstdice.c: (gst_dicetv_get_type),
34118         (gst_dicetv_base_init), (gst_dicetv_class_init),
34119         (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
34120         * gst/effectv/gstedge.c: (gst_edgetv_get_type),
34121         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
34122         (gst_edgetv_setup), (gst_edgetv_rgb32):
34123         * gst/effectv/gsteffectv.c:
34124         * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
34125         (gst_quarktv_set_property):
34126         * gst/effectv/gstrev.c: (gst_revtv_get_type),
34127         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
34128         (gst_revtv_setup), (gst_revtv_rgb32):
34129         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
34130         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
34131         (gst_shagadelictv_init), (gst_shagadelictv_setup),
34132         (gst_shagadelictv_rgb32):
34133         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
34134         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
34135         (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
34136         * gst/effectv/gstwarp.c:
34137         Port everything that can be ported to videofilter and fix up the caps.
34138         Can someone with a big-endian machine please check these?
34139
34140 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34141
34142         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
34143         (gst_osssink_chain), (gst_osssink_change_state):
34144           Latest fixes for A/V sync, audio playback and such. This is about
34145           all... MPEG playback issues are mostly related to the async build-
34146           up of MPEG files, I cannot fix that. Use basicgthread to solve it.
34147
34148 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
34149
34150         patch from: Stephane Loeuillet
34151
34152         * configure.ac:
34153           use pkg-config for some libraries, falling back to the old .m4 way
34154           (fixes #131270)
34155         * m4/libdv.m4:
34156           removed
34157
34158 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
34159
34160         * configure.ac:
34161         * tools/Makefile.am:
34162         * tools/Makefile.in:
34163         * tools/gst-launch-ext-m.m:
34164         * tools/gst-launch-ext.1.in:
34165         * tools/gst-visualise-m.m:
34166         * tools/gst-visualise.1:
34167         * tools/gst-visualise.1.in:
34168           reorganizing generation of script tools
34169
34170 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34171
34172         * ext/divx/gstdivxdec.c:
34173           Downgrade priority. We prefer ffdec_mpeg4.
34174         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
34175         (gst_faad_chain), (gst_faad_change_state):
34176           Fix capsnego. Doesn't work for some sounds because we don't have
34177           a 5:1 to stereo element.
34178         * ext/xvid/gstxvid.c: (plugin_init):
34179           Add priority.
34180         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
34181         (gst_osssink_change_state):
34182           Add discont handling.
34183
34184 2004-03-09  Colin Walters  <walters@verbum.org>
34185
34186         * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
34187         conversion.
34188
34189 2004-03-09  Benjamin Otte  <otte@gnome.org>
34190
34191         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
34192           the signals take 2 arguments
34193
34194 2004-03-09  David Schleef  <ds@schleef.org>
34195
34196         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
34197         (gst_alsa_fixate): Add fixate function.  (bug #136686)
34198         * ext/alsa/gstalsa.h:
34199         * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
34200
34201 2004-03-09  Benjamin Otte  <otte@gnome.org>
34202
34203         * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
34204         (gst_mikmod_change_state):
34205         * ext/mikmod/gstmikmod.h:
34206           make mikmod's loop function not loop infinitely and call
34207           gst_element_yield anymore
34208         * gst/modplug/gstmodplug.cc:
34209           fix pad negotiation (fixes #136590)
34210
34211 2004-03-09  David Schleef  <ds@schleef.org>
34212
34213         * ext/lcs/Makefile.am:  Fix so that the lcs colorspace plugin
34214         doesn't conflict with the internal colorspace plugin.
34215         * gst-libs/gst/audio/make_filter:  Use `` instead of $() to
34216         satisfy the crappy-ass shell shipped by a certain vendor.
34217         * gst/videofilter/make_filter: same (bug #135299)
34218
34219 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
34220
34221         * configure.ac: bump nano to 1
34222
34223 === release 0.7.6 ===
34224
34225 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
34226
34227         * configure.in: releasing 0.7.6, "There"
34228
34229 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
34230
34231         * pkgconfig/gstreamer-play-uninstalled.pc.in:
34232         * pkgconfig/gstreamer-play.pc.in:
34233           synchronize the two
34234
34235 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
34236
34237         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
34238         (cdparanoia_open), (cdparanoia_event):
34239           fix/add error handling
34240         * po/POTFILES.in:
34241           add cdparanoia source
34242         * tools/Makefile.am:
34243           make scripts executable
34244
34245 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
34246
34247         * configure.ac:
34248         * ext/vorbis/Makefile.am:
34249         * sys/Makefile.am:
34250           remove id3types, vorbisfile and xvideosink from the build (#133783)
34251
34252 2004-03-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34253
34254         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
34255           Fix metadata read crash (#136537).
34256
34257 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34258
34259         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
34260         * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
34261           adding mime types, fixing the one-stop function
34262
34263 2004-03-08  Christian Schaller <Uraeus@gnome.org>
34264
34265         * ext/nas/nassink.c and /ext/nas/nassink.h:
34266         More NAS love from Arwed von Merkatz
34267         So lets all sing 'Can you feel the NAS tonight'
34268
34269 2004-03-08  Christian Schaller <Uraeus@gnome.org>
34270
34271         * tools/gst-launch-ext.in:
34272         Replace vorbisfile with oggdemux/vorbisdec/audioconvert
34273
34274 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34275
34276         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
34277         (gst_mpeg2dec_init):
34278         remove the user_data pad for now, because it is being used in
34279         fixating causing MPEG playback to fixate on 1000 Hz for playback.
34280         If someone knows how to fix this properly, please do.
34281
34282 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34283
34284         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
34285         (gst_osssink_get_time):
34286         add a warning, IMO this won't get triggered anymore, remove later
34287
34288 2004-03-07  David Schleef  <ds@schleef.org>
34289
34290         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):  Added Cinepak
34291         format (bug #136470)
34292
34293 2004-03-07  Thomas Vander Stichele  <thomas at apestaart dot org>
34294
34295         * gst-libs/Makefile.am:
34296         * gst-libs/gst/media-info/Makefile.am:
34297         * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
34298         (error_callback), (gst_media_info_error_create),
34299         (gst_media_info_error_element), (gmip_init), (gmip_reset),
34300         (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
34301         * gst-libs/gst/media-info/media-info-priv.h:
34302         * gst-libs/gst/media-info/media-info-test.c: (main):
34303         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
34304         (gst_media_info_class_init), (gst_media_info_instance_init),
34305         (gst_media_info_set_source), (gst_media_info_read_with_idler),
34306         (gst_media_info_read_idler), (gst_media_info_read):
34307         * gst-libs/gst/media-info/media-info.h:
34308         fixed, should work now
34309
34310 2004-03-07  Christian Schaller <Uraeus@gnome.org>
34311
34312         * ext/nas/nassink.c:
34313         A bunch of NAS fixes from Arwed von Merkatz
34314
34315 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34316
34317         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
34318         (qtdemux_parse_trak):
34319           Fix crash (j might be greater than n_samples, in which case we're
34320           writing outside the allocated space for the array) and memleak.
34321
34322 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34323
34324         * sys/oss/gstosssink.c: (gst_osssink_chain):
34325           And another caller that couldn't handle delay < 0 (unsigned
34326           integer overflow). Video now continues playing on an audio
34327           buffer underrun, and the clock continues working. Audio still
34328           stalls.
34329
34330 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34331
34332         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
34333         (gst_osssink_get_time):
34334           get_delay() may return values lower than 0. In those cases, we
34335           should not actually cast to *unsigned* int64, that will break
34336           stuff horribly. In my case, it screwed up A/V sync in movies
34337           in totem rather badly.
34338
34339 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
34340
34341         * ext/faac/gstfaac.c: (gst_faac_chain):
34342         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
34343         * ext/libpng/gstpngenc.c: (user_write_data):
34344         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
34345         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
34346         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
34347         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
34348         Fix several misuse of gst_buffer_merge (it doesn't take ownership
34349         of any buffer), should fix some leaks. I hope I didn't unref buffers
34350         that shouldn't be...
34351
34352 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
34353
34354         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
34355         (deep_notify_callback), (tag_flag_score), (found_tag_callback),
34356         (error_callback), (gmi_reset), (gmi_seek_to_track),
34357         (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
34358         (gmip_find_type_post), (gmip_find_stream_post),
34359         (gmip_find_track_streaminfo_post):
34360         * gst-libs/gst/media-info/media-info-priv.h:
34361         * gst-libs/gst/media-info/media-info-test.c: (print_tag),
34362         (info_print), (main):
34363         * gst-libs/gst/media-info/media-info.c:
34364         (gst_media_info_error_create), (gst_media_info_error_element),
34365         (gst_media_info_instance_init), (gst_media_info_get_property),
34366         (gst_media_info_new), (gst_media_info_set_source),
34367         (gst_media_info_read_idler), (gst_media_info_read):
34368         * gst-libs/gst/media-info/media-info.h:
34369           first pass at making this work again.  This seems to work on
34370           tagged ogg/vorbis and mp3 files.
34371
34372 2004-03-06  Benjamin Otte  <otte@gnome.org>
34373
34374         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
34375           fix huge leak: gst_buffer_merge doesn't unref the first argument
34376           itself.
34377
34378 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
34379
34380         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
34381           report layer/mode/emphasis
34382
34383 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
34384
34385         * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
34386
34387 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
34388
34389         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
34390           signal serial
34391
34392 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
34393
34394         * ext/vorbis/vorbis.c: (plugin_init):
34395         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
34396         (gst_vorbis_dec_init), (vorbis_dec_event):
34397         add debug category
34398         make vorbisdec handle _BYTE and _TIME queries
34399
34400 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
34401
34402         * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
34403           from the xing header
34404
34405 2004-03-06  Benjamin Otte  <otte@gnome.org>
34406
34407         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
34408         (gst_audio_convert_link), (gst_audio_convert_change_state),
34409         (gst_audio_convert_buffer_from_default_format):
34410           do conversions from/to float correctly, fix some caps nego errors,
34411           export correct supported caps in template and getcaps, use correct
34412           caps in try_set_caps functions
34413
34414 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
34415
34416         For some reason, I only committed a ChangeLog entry yesterday and
34417         not the corresponding code...
34418         * ext/mad/gstmad.c: Fix detection of Xing headers
34419         * gst/tags/gstid3tag.c: Changes to support TLEN tags
34420
34421 2004-03-06  Benjamin Otte  <otte@gnome.org>
34422
34423         * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
34424         (gst_ogg_demux_src_query):
34425           make sure to handle the case where there's no current chain
34426           gracefully.
34427
34428 2004-03-05  David Schleef  <ds@schleef.org>
34429
34430         * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
34431         Add fixate function. (bug #131128)
34432         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
34433         (gst_sdlvideosink_fixate):  Add fixate function.
34434         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
34435         Fix attempt to print a non-pointer using GST_PTR_FORMAT.
34436         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
34437         Fix missing break that was causing ulaw to be interpreted as
34438         raw int.
34439
34440 2004-03-05  David Schleef  <ds@schleef.org>
34441
34442         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
34443         Fix code that ignores return value of gst_buffer_merge().
34444         (bug #114560)
34445         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
34446         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
34447         * testsuite/gst-lint:  Check for above.
34448
34449 2004-03-05  David Schleef  <ds@schleef.org>
34450
34451         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):  Check for unfixed
34452         caps and throw an element error.  (bug #136334)
34453
34454 2004-03-05  David Schleef  <ds@schleef.org>
34455
34456         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
34457         (gst_faad_chain): Fix negotiation.
34458         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
34459         key and button events.
34460         * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
34461         dung heap of code.
34462         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
34463         depends on gconf
34464         * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
34465         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
34466         (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
34467         function to encourage better negotiation, particularly between
34468         audioconvert and osssink.
34469         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
34470         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):  Make some debugging
34471         more important.
34472         * gst/typefind/gsttypefindfunctions.c:  Fix mistake in flash
34473         typefinding.
34474         * gst/vbidec/vbiscreen.c:  Add glib header
34475         * pkgconfig/gstreamer-play.pc.in:  Depends on gst-interfaces.
34476
34477 2004-03-06  Christophe Fergeau  <teuf@users.sourceforge.net>
34478
34479         * ext/mad/gstmad.c: Fix detection of Xing headers
34480         * gst/tags/gstid3tag.c: Changes to support TLEN tags
34481
34482 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
34483
34484         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
34485         (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
34486           debug updates
34487
34488 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
34489
34490         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
34491         * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
34492         (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
34493         files, and report the parsed length as a GST_TAG_DURATION tag.
34494         * gst/tags/gstid3tag.c: support TLEN (duration) tag
34495
34496 2004-03-05  Benjamin Otte  <otte@gnome.org>
34497
34498         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
34499           convert channels correctly. convert correctly to unsigned.
34500
34501 2004-03-05  Julien MOUTTE <julien@moutte.net>
34502
34503         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
34504         we have a window before clearing it.
34505
34506 2004-03-05  Julien MOUTTE <julien@moutte.net>
34507
34508         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
34509         have a window before clearing it.
34510
34511 2004-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
34512
34513         * gconf/gstreamer.schemas.in:
34514         * gst-libs/gst/gconf/Makefile.am:
34515           version installation path the same way as for 0.6
34516         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
34517         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
34518         * pkgconfig/gstreamer-play-uninstalled.pc.in:
34519           remove comment that was fixed
34520
34521 2004-03-05  David Schleef  <ds@schleef.org>
34522
34523         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
34524         (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
34525         (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
34526         (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
34527         Add prototype code for handling seeking and querying.
34528
34529 2004-03-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34530
34531         * examples/gstplay/player.c: (main):
34532           Initialize variables to NULL. Prevents a segfault because the
34533           (uninitialized) variable is not NULL, resulting in a crash on
34534           trying to reach error->message.
34535
34536 2004-03-05  Benjamin Otte  <otte@gnome.org>
34537
34538         * gst/audioconvert/gstaudioconvert.c:
34539         (gst_audio_convert_buffer_to_default_format):
34540         make float=>int conversion work correctly even in cornercases.
34541
34542 2004-03-04  David I. Lehn  <dlehn@users.sourceforge.net>
34543
34544         * debian/README.Debian:
34545         * debian/build-deps:
34546         * debian/changelog:
34547         * debian/control:
34548         * debian/control.in:
34549         * debian/copyright:
34550         * debian/gstreamer-a52dec.files:
34551         * debian/gstreamer-aa.files:
34552         * debian/gstreamer-alsa.files:
34553         * debian/gstreamer-alsa.manpages:
34554         * debian/gstreamer-arts.files:
34555         * debian/gstreamer-artsd.files:
34556         * debian/gstreamer-audiofile.files:
34557         * debian/gstreamer-avifile.files:
34558         * debian/gstreamer-cdparanoia.files:
34559         * debian/gstreamer-colorspace.files:
34560         * debian/gstreamer-doc.files:
34561         * debian/gstreamer-dv.files:
34562         * debian/gstreamer-dvd.files:
34563         * debian/gstreamer-esd.files:
34564         * debian/gstreamer-festival.files:
34565         * debian/gstreamer-flac.files:
34566         * debian/gstreamer-gconf.conffiles:
34567         * debian/gstreamer-gconf.files:
34568         * debian/gstreamer-gconf.postinst:
34569         * debian/gstreamer-gnomevfs.files:
34570         * debian/gstreamer-gsm.files:
34571         * debian/gstreamer-http.files:
34572         * debian/gstreamer-jack.files:
34573         * debian/gstreamer-jpeg.files:
34574         * debian/gstreamer-mad.files:
34575         * debian/gstreamer-mikmod.files:
34576         * debian/gstreamer-misc.files:
34577         * debian/gstreamer-mpeg2dec.files:
34578         * debian/gstreamer-oss.files:
34579         * debian/gstreamer-plugin-apps.files:
34580         * debian/gstreamer-plugin-apps.manpages:
34581         * debian/gstreamer-plugin-libs-dev.files:
34582         * debian/gstreamer-plugin-libs.files:
34583         * debian/gstreamer-plugin-template.postinst:
34584         * debian/gstreamer-plugin-template.postrm:
34585         * debian/gstreamer-sdl.files:
34586         * debian/gstreamer-sid.files:
34587         * debian/gstreamer-vorbis.files:
34588         * debian/gstreamer-x.files:
34589         * debian/mk.control:
34590         * debian/rules:
34591         Debian package info not maintained here.
34592
34593 2004-03-04  Thomas Vander Stichele  <thomas at apestaart dot org>
34594
34595         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
34596         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
34597         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
34598         * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
34599         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
34600         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
34601         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
34602         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
34603         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
34604         * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
34605         * gst-libs/gst/colorbalance/colorbalance.c:
34606         (gst_color_balance_class_init):
34607         * gst-libs/gst/colorbalance/colorbalancechannel.c:
34608         (gst_color_balance_channel_class_init):
34609         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
34610         * gst-libs/gst/play/play.c: (gst_play_class_init):
34611         * gst-libs/gst/propertyprobe/propertyprobe.c:
34612         (gst_property_probe_iface_init):
34613         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
34614         * gst-libs/gst/tuner/tunerchannel.c:
34615         (gst_tuner_channel_class_init):
34616         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
34617         * gst/cutter/gstcutter.c: (gst_cutter_class_init):
34618         * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
34619         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
34620         * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
34621         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
34622         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
34623         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
34624         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
34625           fix signals to use - instead of _
34626         * ext/libcaca/gstcacasink.h:
34627         * ext/sdl/sdlvideosink.h:
34628           fix header rename
34629
34630 2004-03-04  David Schleef  <ds@schleef.org>
34631
34632         * testsuite/gst-lint:  Add a check for bad signal names.
34633
34634 2004-03-04  Stefan Kost <kost@imn.htwk-leipzig.de>
34635
34636         reviewed by David Schleef
34637
34638         * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
34639         modified the alpha channel and caused a warning. (bug #136192)
34640
34641 2004-04-03  Christian Schaller <Uraeus@gnome.org>
34642
34643         * gst-plugins.spec.in:
34644         Change names of plugins to actually be correct. Try to keep things
34645         alphabetical to avoid getting beat up by Thomas
34646
34647 2004-03-03  Julien MOUTTE <julien@moutte.net>
34648
34649         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
34650         Using ximagesink as a default if no gconf key found. We should
34651         probably consider using alsasink instead of osssink for the audio
34652         part.
34653
34654 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
34655
34656         * configure.ac:
34657           fix --with-plugins, don't think it ever worked before
34658         * gst-plugins.spec.in:
34659           even more updates
34660
34661 2004-03-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34662
34663         * ext/sdl/sdlvideosink.h:
34664         * sys/ximage/ximagesink.h:
34665         * sys/xvideo/xvideosink.h:
34666         * sys/xvimage/xvimagesink.h:
34667           Fix for move of gstvideosink.h -> videosink.h.
34668
34669 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
34670
34671         * gst-libs/gst/xwindowlistener/Makefile.am:
34672           this is a plugin library, not a library
34673
34674 2004-03-01  David Schleef  <ds@schleef.org>
34675
34676         * AUTHORS:  Added some names.  Add yourself if you're still
34677         missing.
34678
34679 2004-03-01  David Schleef  <ds@schleef.org>
34680
34681         * MAINTAINERS: Add
34682
34683 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
34684
34685         * gst-plugins.spec.in: clean up spec file
34686
34687 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
34688
34689         * gst-libs/gst/video/Makefile.am:
34690         * gst-libs/gst/video/gstvideosink.c:
34691         * gst-libs/gst/video/gstvideosink.h:
34692           rename gstvideosink.h to videosink.h to match other headers
34693         * gst/mixmatrix/Makefile.am:
34694           fix plugin filename
34695         * gst/tags/Makefile.am: fix plugin filename
34696
34697 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
34698
34699         * gst/tags/Makefile.am: fix plugin filename
34700
34701 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
34702
34703         * examples/gstplay/player.c: (got_time_tick), (main):
34704           add error handler
34705           display time_tick more readably
34706         * gst/mixmatrix/Makefile.am:
34707           fix plugin file name
34708
34709 2004-02-29  Christophe Fergeau  <teuf@gnome.org>
34710
34711         * sys/oss/gstosselement.c: (gst_osselement_probe),
34712         (device_combination_append), (gst_osselement_class_probe_devices):
34713         * sys/oss/gstosselement.h:
34714           Reworked enumeration of oss dsps and mixers so that gst-mixer works
34715           on my system using alsa oss emulation, fixes bug #135597
34716
34717 2004-02-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34718
34719         * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
34720         (gst_videodrop_chain), (gst_videodrop_change_state):
34721         * gst/videodrop/gstvideodrop.h:
34722           Work based on timestamp of input data, not based on the expected
34723           framerate from the input. The consequence is that this element now
34724           not only scales framerates, but also functions as a framerate
34725           corrector or framerate stabilizer/constantizer.
34726
34727 2004-02-27  David Schleef  <ds@schleef.org>
34728
34729         patches from jmmv@menta.net (Julio M. Merino Vidal)
34730
34731         * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
34732         GST_ELEMENT_ERROR call (bug #135634)
34733         * gst/interleave/interleave.c: (interleave_buffered_loop),
34734         (interleave_bytestream_loop): Don't use alloca() (bug #135640)
34735         * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
34736         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
34737         (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
34738         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
34739         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
34740         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
34741         Fix GST_ELEMENT_ERROR call.
34742         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
34743         GST_ELEMENT_ERROR call.
34744
34745 2004-02-27  Benjamin Otte  <otte@gnome.org>
34746
34747         * gst-libs/gst/audio/audio.h:
34748           add macro to make sure header isn't included twice
34749         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
34750           don't use gst_buffer_free
34751         * gst/playondemand/filter.func:
34752           don't use gst_data_free. Free data only once.
34753
34754 2004-02-26  David Schleef  <ds@schleef.org>
34755
34756         * gst-libs/gst/colorbalance/Makefile.am:
34757         * gst-libs/gst/mixer/Makefile.am:
34758         * gst-libs/gst/tuner/Makefile.am:
34759         * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
34760         should not be disted, -marshal.h files should not be installed,
34761         and -enum.h files _should_ be installed.  Fix to make this the
34762         case.
34763
34764 === release 0.7.5 ===
34765
34766 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
34767
34768         * configure.ac: release 0.7.5, "Under The Sea"
34769
34770 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
34771
34772         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
34773         (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
34774         * gst/videoscale/gstvideoscale.c:
34775         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
34776           assorted debug/warning fixes
34777
34778 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
34779
34780         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
34781         (gst_videoscale_init), (gst_videoscale_chain),
34782         (gst_videoscale_set_property), (plugin_init):
34783         * gst/videoscale/gstvideoscale.h:
34784         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
34785         (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
34786         (gst_videoscale_planar400), (gst_videoscale_packed422),
34787         (gst_videoscale_packed422rev), (gst_videoscale_32bit),
34788         (gst_videoscale_24bit), (gst_videoscale_16bit),
34789         (gst_videoscale_bilinear), (gst_videoscale_bicubic),
34790         (gst_videoscale_scale_plane_slow),
34791         (gst_videoscale_scale_point_sample),
34792         (gst_videoscale_scale_nearest),
34793         (gst_videoscale_scale_nearest_str2),
34794         (gst_videoscale_scale_nearest_str4),
34795         (gst_videoscale_scale_nearest_32bit),
34796         (gst_videoscale_scale_nearest_24bit),
34797         (gst_videoscale_scale_nearest_16bit):
34798         add debugging category and use it properly
34799         fix use of GST_PTR_FORMAT
34800
34801 2004-02-25  Andy Wingo  <wingo@pobox.com>
34802
34803         * gst/interleave/interleave.c (interleave_buffered_loop): Always
34804         push only when channel->buffer is NULL. Prevents segfaults doing
34805         the state change after a nonlocal exit, like a scheme exception.
34806
34807         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
34808         Handle the case where the intersected caps is empty.
34809
34810 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
34811
34812         * gst/law/mulaw-decode.c: (mulawdec_link):
34813         * gst/law/mulaw.c: (plugin_init):
34814           fix mulawdec so it actually works again
34815
34816 2004-02-24  Arwed v. Merkatz  <v.merkatz@gmx.net>
34817
34818         reviewed by: David Schleef  <ds@schleef.org>
34819
34820         * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
34821         (gst_gamma_init), (gst_gamma_set_property),
34822         (gst_gamma_get_property), (gst_gamma_calculate_tables),
34823         (gst_gamma_rgb24), (gst_gamma_rgb32):  Adds gamma correction
34824         for RGB, with separate r g and b correction factors. (#131167)
34825
34826 2004-02-24  Thomas Vander Stichele  <thomas at apestaart dot org>
34827
34828         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
34829           only signal tags for bitrate if they're > 0 (#134894)
34830
34831 2004-02-24  David Schleef  <ds@schleef.org>
34832
34833         * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
34834         (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
34835         (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
34836         (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
34837         (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
34838         (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
34839         (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
34840         (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
34841         Cleanups.  Convert g_prints to GST_LOGs.  Add qtdemux debug
34842         category.  Attempt to fix timestamp calculation.
34843
34844 2004-02-24  Johan Dahlin  <johan@gnome.org>
34845
34846         * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
34847
34848 2004-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
34849
34850         * configure.ac:
34851         * gconf/Makefile.am:
34852         * gconf/gstreamer.schemas:
34853         * gst-libs/gst/gconf/Makefile.am:
34854         * gst-libs/gst/gconf/gconf.c:
34855           version gconf schemas and install locations
34856
34857 2004-02-23  Benjamin Otte  <otte@gnome.org>
34858
34859         * ext/xine/xineinput.c: (gst_xine_input_dispose):
34860         (gst_xine_input_subclass_init):
34861           call parent dispose.
34862           change pad template for CD reader correctly
34863         * ext/xine/Makefile.am:
34864         * ext/xine/gstxine.h:
34865         * ext/xine/xine.c: (plugin_init):
34866         * ext/xine/xineaudiosink.c:
34867           wrap audio sinks, too
34868         * gst-libs/gst/resample/private.h:
34869         * gst-libs/gst/resample/resample.c: (gst_resample_init),
34870         (gst_resample_reinit), (gst_resample_scale),
34871         (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
34872         (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
34873         (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
34874         (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
34875         (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
34876         * gst-libs/gst/resample/resample.h:
34877         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
34878         (gst_audioscale_class_init), (gst_audioscale_link),
34879         (gst_audioscale_get_buffer), (gst_audioscale_init),
34880         (gst_audioscale_chain), (gst_audioscale_set_property),
34881         (gst_audioscale_get_property):
34882         * gst/audioscale/gstaudioscale.h:
34883           s/resample_*/gst_resample_*/i to not clobber namespaces
34884
34885 2004-02-23  Julien MOUTTE  <julien@moutte.net>
34886
34887         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
34888         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
34889         (gst_riff_create_video_template_caps),
34890         (gst_riff_create_audio_template_caps),
34891         (gst_riff_create_iavs_template_caps):
34892         * gst-libs/gst/riff/riff-media.h:
34893         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
34894         (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
34895         (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
34896         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
34897         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
34898         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
34899         (gst_matroska_demux_plugin_init): First batch implementing audio and
34900         video codec tags in demuxers.
34901
34902 2004-02-22  Benjamin Otte  <otte@gnome.org>
34903
34904         * ext/xine/Makefile.am:
34905         * ext/xine/gstxine.h:
34906         * ext/xine/xine.c: (plugin_init):
34907         * ext/xine/xineinput.c:
34908           add input plugin wrapper. Playback from files, http, mms and cdda
34909           works.
34910         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
34911           remove leftover G_GNUC_UNUSED
34912         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
34913         (gst_asf_demux_identify_guid):
34914           improve debugging output
34915
34916 2004-02-22  Benjamin Otte  <otte@gnome.org>
34917
34918         reported by: Padraig O'Briain <padraig.obriain@sun.com>
34919
34920         * autogen.sh:
34921           replace test -e with test -x for mkinstalldirs to be more portable.
34922           (fixes #134816)
34923
34924 2004-02-22  Benjamin Otte  <otte@gnome.org>
34925
34926         reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
34927
34928         * gst/audioconvert/gstaudioconvert.c: (plugin_init):
34929           set rank to PRIMARY
34930         * gst/volume/gstvolume.c: (plugin_init):
34931           set rank to NONE
34932         fixes #134960
34933
34934 2004-02-22   Julio M. Merino Vidal <jmmv@menta.net>
34935
34936         reviewed by Benjamin Otte  <otte@gnome.org>
34937
34938         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
34939           escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
34940
34941 2004-02-22  Benjamin Otte  <otte@gnome.org>
34942
34943         * configure.ac:
34944           export [_]*{gst,Gst,GST}.* symbols from plugins
34945
34946 2004-02-22  Christophe Fergeau <teuf@gnome.org>
34947
34948         reviewed by: Benjamin Otte  <otte@gnome.org>
34949
34950         * ext/lame/gstlame.c: (add_one_tag):
34951         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
34952         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
34953         (gst_vorbisenc_metadata_set1):
34954         * gst/tags/gstid3tag.c:
34955         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
34956           apply fixes from bugs #135042 (lame can't write tags) and #133817
34957           (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
34958
34959 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
34960
34961         * configure.ac: Export only gst_plugin_desc from plugins.
34962          Note that this change only makes any effect with Linux using libtool
34963          1.5.2 or higher. Otherwise it is silently ignored, but it would build
34964          fine. And don't try to have several versions of libtool in different
34965          directories.
34966
34967 2004-02-20  Andy Wingo  <wingo@pobox.com>
34968
34969         * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
34970         interleave respectively.
34971
34972         * gst/interleave/deinterleave.c: New plugin: deinterleave
34973         (replaces on oneton).
34974         * gst/interleave/interleave.c: New plugin: interleave.
34975         * gst/interleave/plugin.h: Support file.
34976         * gst/interleave/plugin.c: Support file.
34977
34978         * configure.ac: Remove intfloat and oneton, add interleave.
34979
34980         * ext/sndfile/gstsf.c: Handle events better.
34981
34982         * gst/audioconvert/gstaudioconvert.c: Change to support int2float
34983         and float2int operation. int2float has scheduling problems as
34984         noted in in2float_chain.
34985
34986 2004-02-20  Benjamin Otte  <otte@gnome.org>
34987
34988         * ext/xine/Makefile.am:
34989         * ext/xine/gstxine.h:
34990         * ext/xine/xine.c:
34991         * ext/xine/xineaudiodec.c:
34992         * ext/xine/xinecaps.c:
34993           add first version of xine plugin wrapper. Currently only wraps the
34994           QDM2 win32 DLL, and even that only in proof-of-concept quality.
34995         * configure.ac:
34996         * ext/Makefile.am:
34997           add xine plugin wrapper, disabled by default. Use --enable-xine to
34998           build. Note that it'll segfault on gst-register if you don't remove
34999           the goom and tvtime post plugins from xine.
35000         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
35001         (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
35002           add extradata parsing for QDM2.
35003           change around debugging prints.
35004
35005 2004-02-19  Benjamin Otte  <otte@gnome.org>
35006
35007         * ext/lame/gstlame.c: (gst_lame_chain):
35008         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
35009           use gst_tag_list_insert when you want to insert tags
35010
35011 2004-02-18  David Schleef  <ds@schleef.org>
35012
35013         * configure.ac:  Move massink to gst-rotten
35014         * ext/Makefile.am:
35015         * ext/mas/Makefile.am:
35016         * ext/mas/massink.c:
35017         * ext/mas/massink.h:
35018
35019 2004-02-18  David Schleef  <ds@schleef.org>
35020
35021         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
35022         typefinding, since it seems to be worse than nothing.
35023         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):  Add ftyp
35024         atom to recognize .mp4 and .m4a files as video/quicktime.
35025
35026 2004-02-18  David Schleef  <ds@schleef.org>
35027
35028         * gst/sine/demo-dparams.c: (quit_live),
35029         (dynparm_log_value_changed), (dynparm_value_changed), (main):
35030         Use double dparams, not float.
35031         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
35032         (gst_sinesrc_init): Change sync default to FALSE, since multiple
35033         sync'd elements don't really work correctly.
35034         * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
35035         (volume_update_volume), (volume_get_property):  Change dparam
35036         to double.
35037
35038 2004-02-18  Julien MOUTTE  <julien@moutte.net>
35039
35040         * sys/ximage/ximagesink.c:
35041         (gst_ximagesink_xwindow_update_geometry),
35042         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
35043         (gst_ximagesink_change_state), (gst_ximagesink_expose),
35044         (gst_ximagesink_init): Rework the way software video scaling works. So
35045         now we check on each chain call if the video frames are feeling the
35046         window. If not we try to renegotiate caps. On failure we memorize that
35047         and we won't try again for that PLAYING sessions.
35048         * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
35049         failure.
35050         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
35051         synchronous flag.
35052
35053 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
35054
35055         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
35056           break up _link so we can give a better debug message for errors
35057
35058 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
35059
35060         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
35061           set up debug category
35062
35063 2004-02-18  Julien MOUTTE <julien@moutte.net>
35064
35065         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
35066         (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
35067         the way renegotiation work. The event handling function is not taking
35068         care of external windows and renegotiate method check for pad flags
35069         NEGOTIATING. Should fix : #133209
35070
35071 2004-02-17  Julien MOUTTE  <julien@moutte.net>
35072
35073         * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
35074         pad is negotiating before trying renegotiation.
35075
35076 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
35077
35078         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
35079           pass on all possible mime types as typefind hints
35080
35081 2004-02-17  Julien MOUTTE <julien@moutte.net>
35082
35083         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
35084         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
35085         possible SHM leak if we crash. All other apps using XShm are doing
35086         that.
35087
35088 2004-02-17  Julien MOUTTE  <julien@moutte.net>
35089
35090         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
35091         (gst_ximagesink_expose): Renegotiate size on expose.
35092         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
35093         size on expose.
35094
35095 2004-02-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35096
35097         * testsuite/alsa/sinesrc.c:
35098           cosmetic fix to fix compile issue with gcc 2.95.4
35099
35100 2004-02-16  Julien MOUTTE <julien@moutte.net>
35101
35102         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
35103         (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
35104         failed opening the audio device.
35105         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
35106         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
35107         (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
35108         (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
35109         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
35110         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
35111         (gst_ximagesink_change_state), (gst_ximagesink_chain),
35112         (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
35113         Removing some useless g_return_if_fail like wingo suggested.
35114         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
35115         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
35116         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
35117         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
35118         (gst_xvimagesink_update_colorbalance),
35119         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
35120         (gst_xvimagesink_xcontext_clear),
35121         (gst_xvimagesink_get_fourcc_from_caps),
35122         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
35123         (gst_xvimagesink_set_xwindow_id),
35124         (gst_xvimagesink_colorbalance_list_channels),
35125         (gst_xvimagesink_colorbalance_set_value),
35126         (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
35127         PAUSED. Removing some useless g_return_if_fail like wingo suggested.
35128
35129 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
35130
35131         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
35132           throw error when not negotiated instead of asserting
35133
35134 2004-02-15  Julien MOUTTE  <julien@moutte.net>
35135
35136         * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
35137         correct data refcounting.
35138
35139 2004-02-15  Julien MOUTTE  <julien@moutte.net>
35140
35141         * gst/switch/gstswitch.c: (gst_switch_change_state),
35142         (gst_switch_class_init): Cleaning the sinkpads correctly on state
35143         change, mostly the EOS flag.
35144
35145 2004-02-15  Julien MOUTTE  <julien@moutte.net>
35146
35147         * examples/gstplay/player.c: (got_eos), (main): Adding some
35148         output for debugging.
35149         * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
35150         timeouts if we go to any state different from PLAYING.
35151         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
35152         more EOS bugs in riff lib.
35153
35154 2004-02-14  Julien MOUTTE  <julien@moutte.net>
35155
35156         * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
35157         visualization until i find a way to fix switch correctly.
35158         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
35159         EOS arrives.
35160         * gst/switch/gstswitch.c: (gst_switch_release_pad),
35161         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
35162         (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
35163         Reworked switch to get a more correct behaviour with events and refing
35164         of data stored in sinkpads.
35165         * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
35166         we don't pull from a pad in EOS.
35167
35168 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35169
35170         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
35171           remove v1 tag even if we can't read it (makes sure we don't detect
35172           it again)
35173
35174 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35175
35176         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
35177         (gst_alsa_xrun_recovery):
35178         * ext/alsa/gstalsa.h:
35179           try xrun recovery when wait failed. Make xrun recovery function
35180           return TRUE/FALSE to indicate success. (might fix #134354)
35181
35182 2004-02-13  David Schleef  <ds@schleef.org>
35183
35184         * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
35185         (dynparm_value_changed), (main): Convert from float to double.
35186         * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
35187
35188 2004-02-13  David Schleef  <ds@schleef.org>
35189
35190         * gst/silence/gstsilence.c: (gst_silence_class_init),
35191         (gst_silence_set_clock), (gst_silence_get),
35192         (gst_silence_set_property), (gst_silence_get_property):
35193         * gst/silence/gstsilence.h: Add sync property.
35194         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
35195         (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
35196         (gst_sinesrc_set_property), (gst_sinesrc_get_property):
35197         * gst/sine/gstsinesrc.h: Add sync property.
35198
35199 2004-02-13  David Schleef  <ds@schleef.org>
35200
35201         * gst/intfloat/gstint2float.c: (conv_f32_s16),
35202         (gst_int2float_chain_gint16):  Change stdint usage to glib types.
35203
35204 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
35205
35206         * configure.ac:
35207         * ext/Makefile.am:
35208         * gst-libs/ext/Makefile.am:
35209           move ffmpeg plugin to gst-ffmpeg module
35210
35211 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
35212
35213         * configure.ac: use GST_ARCH to detect architecture
35214
35215 2004-02-12  Julien MOUTTE  <julien@moutte.net>
35216
35217         * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
35218
35219 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
35220
35221         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
35222           classify LADSPA plugins based on number of src/sink pads
35223           (#133663, Stefan Kost)
35224         * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
35225           fix dparams registration
35226           (#133528, Stefan Kost)
35227         * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
35228           fix use of isprint and use g_ascii_isprint instead
35229           (#133316, Stefan Kost)
35230
35231 2004-02-11  David Schleef  <ds@schleef.org>
35232
35233         Convert a few inner loops to use liboil.  This is currently
35234         optional, and is only enabled if liboil is present (duh!).
35235         * configure.ac: Check for liboil-0.1
35236         * gst/intfloat/Makefile.am:
35237         * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
35238         (gst_int2float_chain_gint16):
35239         * gst/videofilter/Makefile.am:
35240         * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
35241         (tablelookup_u8), (gst_videobalance_planar411):
35242         * gst/videotestsrc/Makefile.am:
35243         * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
35244         * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
35245         (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
35246         (paint_hline_RGB565), (paint_hline_xRGB1555):
35247
35248 2004-02-11  David Schleef  <ds@schleef.org>
35249
35250         * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
35251         (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
35252         (gst_colorspace_getcaps), (gst_colorspace_link),
35253         (gst_colorspace_base_init), (gst_colorspace_init),
35254         (gst_colorspace_chain), (gst_colorspace_change_state),
35255         (plugin_init): Merge Ronald's patch (bug #117897) and update
35256         for new caps and negotiation.  Seems to work, although it
35257         shows off bugs in lcs.
35258
35259 2004-02-11  David Schleef  <ds@schleef.org>
35260
35261         * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
35262         (bug #133886)  Noticed by bugs@leroutier.net (Stephane LOEUILLET)
35263
35264 2004-02-11  David Schleef  <ds@schleef.org>
35265
35266         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
35267         (gst_rfbsrc_change_state), (gst_rfbsrc_init),
35268         (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
35269         Add server and port properties
35270
35271 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
35272
35273         * m4/a52.m4:
35274         * m4/aalib.m4:
35275         * m4/as-ffmpeg.m4:
35276         * m4/as-liblame.m4:
35277         * m4/as-slurp-ffmpeg.m4:
35278         * m4/check-libheader.m4:
35279         * m4/esd.m4:
35280         * m4/freetype2.m4:
35281         * m4/gconf-2.m4:
35282         * m4/glib.m4:
35283         * m4/gst-alsa.m4:
35284         * m4/gst-artsc.m4:
35285         * m4/gst-ivorbis.m4:
35286         * m4/gst-matroska.m4:
35287         * m4/gst-sdl.m4:
35288         * m4/gst-shout2.m4:
35289         * m4/gst-sid.m4:
35290         * m4/gtk.m4:
35291         * m4/libdv.m4:
35292         * m4/libfame.m4:
35293         * m4/libmikmod.m4:
35294         * m4/ogg.m4:
35295         * m4/vorbis.m4:
35296           fix underquotedness of macros (#133800)
35297         * m4/as-avifile.m4:
35298         * m4/xmms.m4:
35299           removed because no longer used
35300
35301 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
35302
35303         * configure.ac:
35304           require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
35305           by autopoint (fixes #132996)
35306
35307 2004-02-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35308
35309         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
35310         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
35311         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
35312         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
35313           fix memleaks
35314
35315 2004-02-11  David Schleef  <ds@schleef.org>
35316
35317         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
35318         (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
35319         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
35320         (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
35321         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
35322         (gst_jpegenc_class_init), (gst_jpegenc_init),
35323         (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
35324         (gst_jpegenc_chain), (gst_jpegenc_set_property),
35325         (gst_jpegenc_get_property):  Fix negotiation.  Add some properties.
35326         * ext/jpeg/gstjpegenc.h: Fix negotiation.
35327
35328 2004-02-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35329
35330         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
35331         (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
35332         * ext/mikmod/gstmikmod.h:
35333           fix caps negotiation in mikmod
35334         * ext/ogg/gstoggdemux.c: (gst_ogg_print):
35335           output debug information
35336
35337 2004-02-08  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35338
35339         * gst-libs/gst/colorbalance/Makefile.am:
35340         * gst-libs/gst/navigation/Makefile.am:
35341         * gst-libs/gst/xoverlay/Makefile.am:
35342           remove unused GST_OPT_CFLAGS from Makefiles
35343           include X_CFLAGS and X_LIBS in xoverlay. (#131948)
35344
35345 2004-02-07  David Schleef  <ds@schleef.org>
35346
35347         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
35348         push events to pads that haven't been created (#133508)
35349
35350 2004-02-07  Jan Schmidt  <thaytan@mad.scientist.com>
35351
35352         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
35353         (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
35354         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
35355         (gst_dvdec_loop), (gst_dvdec_change_state):
35356         Second attempt at committing a working dvdec element.
35357
35358 2004-02-06  David Schleef  <ds@schleef.org>
35359
35360         Build fixes for OS X: (see #129600)
35361         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
35362         (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
35363         (gst_riff_read_strf_iavs):
35364         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
35365         (gst_avi_demux_stream_odml):
35366         * gst/playondemand/Makefile.am:
35367         * gst/rtp/rtp-packet.c:
35368
35369 2004-02-05  David Schleef  <ds@schleef.org>
35370
35371         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
35372         last change, because it Just Doesn't Compile.
35373
35374 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35375
35376         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
35377           skip undecodable id3v2 tag instead of keeping it
35378
35379 2004-02-05  David Schleef  <ds@schleef.org>
35380
35381         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
35382         Unref leaked buffer.  (Noticed by Ronald)
35383
35384 2004-02-05  David I. Lehn  <dlehn@users.sourceforge.net>
35385
35386         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
35387         Sync requires with other checks.  >= vs =.
35388
35389 2004-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
35390
35391         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
35392         (gst_dvdec_video_link), (gst_dvdec_loop):
35393         * ext/dv/gstdvdec.h:
35394           rework the caps negotiation so that dvdec works again instead
35395           of just segfaulting.
35396
35397 === release 0.7.4 ===
35398
35399 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
35400
35401         * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
35402         * configure.ac: changed for release
35403
35404 2004-02-05  Thomas Vander Stichele  <thomas at apestaart dot org>
35405
35406         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
35407         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
35408         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
35409         * pkgconfig/gstreamer-play-uninstalled.pc.in:
35410           reworked patch by David Lehn to fix libdir and includedir for
35411           uninstalled libraries
35412           removed play and gconf from gstreamer-libs since they have their
35413           own pkgconfig files
35414
35415 2004-02-04  David Schleef  <ds@schleef.org>
35416
35417         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
35418         memleak.
35419
35420 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35421
35422         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
35423           use correct GST_TAG_ENCODER tag
35424
35425 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35426
35427         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
35428           be sure to stop the clock when going to paused
35429         * sys/oss/gstosssink.c: (gst_osssink_change_state):
35430           reset number of transmitted when going to ready.
35431         fixes #132935
35432
35433 2004-02-05  Charles Schmidt <cschmidt2@emich.edu>
35434
35435         reviewed by Benjamin Otte
35436
35437         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
35438           extract track count (fixes #133410)
35439
35440 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35441
35442         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
35443           that should be !=, not == (fixes #132519)
35444
35445 2004-02-04  David Schleef  <ds@schleef.org>
35446
35447         Make sure set_explicit_caps() is called before adding pad.
35448         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
35449         * gst/id3/gstid3types.c: (gst_id3types_loop):
35450         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
35451         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
35452
35453 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
35454
35455         * configure.ac:
35456           bump nano to 2, first prerelease
35457           put back AM_PROG_LIBTOOL
35458
35459 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
35460
35461         * testsuite/alsa/Makefile.am:
35462           these are user test apps, not automatic testsuite tests
35463
35464 2004-02-04  David Schleef  <ds@schleef.org>
35465
35466         Convert GST_DEBUG_CAPS() to GST_DEBUG():
35467         * gst/mpeg1videoparse/gstmp1videoparse.c:
35468         (mp1videoparse_parse_seq):
35469         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
35470         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
35471         * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
35472         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
35473         (gst_xvideosink_getcaps):
35474         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
35475         * testsuite/gst-lint: more tests
35476
35477 2004-02-04  David Schleef  <ds@schleef.org>
35478
35479         Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
35480         with the code that they would expand to.
35481         * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
35482         (gst_flacdec_get_src_query_types),
35483         (gst_flacdec_get_src_event_masks):
35484         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
35485         (gst_gnomevfssrc_get_query_types),
35486         (gst_gnomevfssrc_get_event_mask):
35487
35488 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35489
35490         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
35491         (gst_sinesrc_dispose):
35492           fix memleak by properly disposing sinesrc
35493
35494 2004-02-04  Julien MOUTTE  <julien@moutte.net>
35495
35496         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
35497         * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
35498         an overlay to redraw the image because it has been exposed.
35499         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
35500         (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
35501         (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
35502         * sys/ximage/ximagesink.h: Implement expose method from XOverlay
35503         interface
35504         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
35505         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
35506         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
35507         * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
35508         interface
35509
35510 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35511
35512         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
35513           more memleak fixage
35514
35515 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35516
35517         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
35518         * gst/typefind/gsttypefindfunctions.c:
35519           fix memleaks shown by gst-typefind
35520
35521 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
35522
35523         * common/glib-gen.mak:
35524           add hack rule to touch .Plo files
35525         * gst-libs/gst/colorbalance/Makefile.am:
35526         * gst-libs/gst/mixer/Makefile.am:
35527         * gst-libs/gst/play/Makefile.am:
35528         * gst-libs/gst/tuner/Makefile.am:
35529           remove glib_root variable
35530
35531 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35532
35533         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
35534           set explicit caps before adding the element, so the autopluggers can
35535           plug correctly.
35536         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
35537         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
35538         (mpeg_video_type_find), (mpeg_video_stream_type_find),
35539         (dv_type_find):
35540           fix memleaks in typefind functions. gst_type_find_suggest takes a const
35541           argument.
35542
35543 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
35544
35545         * gst-libs/gst/colorbalance/Makefile.am:
35546         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
35547         * gst-libs/gst/colorbalance/colorbalance.c:
35548         * gst-libs/gst/colorbalance/colorbalance.h:
35549         * gst-libs/gst/colorbalance/colorbalancemarshal.list:
35550         * gst-libs/gst/mixer/Makefile.am:
35551         * gst-libs/gst/mixer/mixer-marshal.list:
35552         * gst-libs/gst/mixer/mixer.c:
35553         * gst-libs/gst/mixer/mixer.h:
35554         * gst-libs/gst/mixer/mixermarshal.list:
35555         * gst-libs/gst/play/Makefile.am:
35556         * gst-libs/gst/play/play.h:
35557         * gst-libs/gst/tuner/Makefile.am:
35558         * gst-libs/gst/tuner/tuner-marshal.list:
35559         * gst-libs/gst/tuner/tuner.c:
35560         * gst-libs/gst/tuner/tuner.h:
35561         * gst-libs/gst/tuner/tunermarshal.list:
35562           use new glib-gen.mak snippet to clean up Makefile.am
35563           fix various bugs in Makefile.am's
35564
35565 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35566
35567         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
35568           handle chain parsing correctly in the multichain case
35569         * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
35570         (theora_dec_from_granulepos), (theora_dec_to_granulepos),
35571         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
35572         (theora_dec_chain):
35573           handle events and queries correctly
35574
35575 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
35576
35577         * .cvsignore:
35578         Ignore generated file _stdint.h.
35579
35580 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
35581
35582         * gst-libs/gst/colorbalance/Makefile.am:
35583         * gst-libs/gst/colorbalance/colorbalance.h:
35584         * gst-libs/gst/mixer/Makefile.am:
35585         * gst-libs/gst/mixer/mixer.h:
35586         * gst-libs/gst/play/Makefile.am:
35587         * gst-libs/gst/play/play.h:
35588         * gst-libs/gst/tuner/Makefile.am:
35589         * gst-libs/gst/tuner/tuner.h:
35590         Generate enum type code with glib-mkenums.
35591         * gst-libs/gst/colorbalance/.cvsignore:
35592         * gst-libs/gst/mixer/.cvsignore:
35593         * gst-libs/gst/play/.cvsignore:
35594         * gst-libs/gst/tuner/.cvsignore:
35595         Ignore generated files.
35596
35597 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
35598
35599         * gst-libs/gst/audio/.cvsignore:
35600         Ignore generated file.
35601         * gst-libs/gst/audio/Makefile.am:
35602         Do not install example filter.
35603
35604 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
35605
35606         * examples/switch/.cvsignore:
35607         Ignore generated file.
35608
35609 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35610
35611         * common/m4/ax_create_stdint_h.m4:
35612         * configure.ac:
35613           add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
35614           _stdint.h.
35615         * Makefile.am:
35616           remove generated _stdint.h in DISTCLEANFILES
35617         * ext/a52dec/gsta52dec.c:
35618           include _stdint.h for a52dec. (should fix #133064)
35619
35620 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
35621
35622         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
35623         (gst_tag_to_vorbis_comments):
35624         Add replaygain support to vorbistag
35625
35626 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
35627         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
35628         (gst_ffmpeg_caps_to_extradata):
35629           Fix SVQ3 caps flag properties
35630           Use glib macro for bytes swap
35631
35632 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
35633
35634         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
35635         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
35636         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
35637         * ext/sndfile/gstsf.c: (plugin_init):
35638         * gst/avi/gstavi.c: (plugin_init):
35639         * sys/dxr3/dxr3init.c: (plugin_init):
35640         * sys/oss/gstossaudio.c: (plugin_init):
35641         * sys/v4l/gstv4l.c: (plugin_init):
35642         * sys/v4l2/gstv4l2.c: (plugin_init):
35643           remove textdomain calls
35644         * po/nl.po:
35645           update Dutch translation
35646
35647 2004-02-02  Julien MOUTTE  <julien@moutte.net>
35648
35649         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
35650         (gst_play_set_audio_sink): Moving volume in the audio thread for
35651         instantaneous volume change. Maybe i will add another volume in front
35652         of visualization later, not sure yet though.
35653
35654 2004-02-02  Julien MOUTTE  <julien@moutte.net>
35655
35656         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
35657         (gst_ximagesink_handle_xevents): Better X events handling, only take
35658         the latest events for configure and motion.
35659         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
35660
35661 2004-02-02  Jon Trowbridge  <trow@gnu.org>
35662
35663         reviewed by: David Schleef  <ds@schleef.org>
35664
35665         Fix memory leaks:
35666         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
35667         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
35668
35669 2004-02-02  David Schleef  <ds@schleef.org>
35670
35671         code cleanup.  Change bzero() to memset().  Remove duplicate ; at ends
35672         of lines.
35673         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
35674         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
35675         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
35676         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
35677         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
35678         * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
35679         * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
35680         * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
35681         (gst_float2_2_int_link):
35682         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
35683         * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
35684         * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
35685         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
35686         * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
35687         * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
35688         * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
35689         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
35690         * testsuite/gst-lint: Add tests for bzero and ;;
35691
35692 2004-02-02  David Schleef  <ds@schleef.org>
35693
35694         * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
35695
35696 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
35697
35698         * ext/aalib/gstaasink.c: (gst_aasink_open):
35699         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
35700         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
35701         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
35702         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
35703         (gst_afsink_close_file):
35704         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
35705         (gst_afsrc_close_file):
35706         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
35707         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
35708         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
35709         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
35710         * ext/esd/esdmon.c: (gst_esdmon_get):
35711         * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
35712         * ext/faac/gstfaac.c: (gst_faac_chain):
35713         * ext/faad/gstfaad.c: (gst_faad_chain):
35714         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
35715         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
35716         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
35717         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
35718         (gst_flacdec_loop):
35719         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
35720         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
35721         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
35722         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
35723         (gst_gnomevfssink_close_file):
35724         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
35725         (gst_gnomevfssrc_open_file):
35726         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
35727         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
35728         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
35729         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
35730         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
35731         * ext/mad/gstmad.c: (gst_mad_chain):
35732         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
35733         * ext/mpeg2dec/gstmpeg2dec.c:
35734         * ext/mpeg2enc/gstmpeg2enc.cc:
35735         * ext/mplex/gstmplex.cc:
35736         * ext/mplex/gstmplexibitstream.cc:
35737         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
35738         (gst_ogg_demux_push):
35739         * ext/raw1394/gstdv1394src.c:
35740         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
35741         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
35742         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
35743         (gst_sf_loop):
35744         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
35745         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
35746         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
35747         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
35748         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
35749         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
35750         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
35751         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
35752         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
35753         (gst_riff_read_element_data), (gst_riff_read_seek),
35754         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
35755         * gst/adder/gstadder.c: (gst_adder_loop):
35756         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
35757         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
35758         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
35759         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
35760         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
35761         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
35762         * gst/goom/gstgoom.c: (gst_goom_chain):
35763         * gst/id3/gstid3types.c: (gst_id3types_loop):
35764         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
35765         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
35766         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
35767         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
35768         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
35769         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
35770         (gst_ebml_read_float), (gst_ebml_read_header):
35771         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
35772         (gst_matroska_demux_parse_blockgroup):
35773         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
35774         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
35775         * gst/oneton/gstoneton.c: (gst_oneton_chain):
35776         * gst/silence/gstsilence.c: (gst_silence_get):
35777         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
35778         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
35779         * gst/speed/gstspeed.c: (speed_loop):
35780         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
35781         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
35782         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
35783         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
35784         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
35785         (gst_wavparse_loop):
35786         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
35787         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
35788         (dxr3audiosink_close):
35789         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
35790         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
35791         (dxr3videosink_close), (dxr3videosink_write_data):
35792         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
35793         * sys/oss/gstosssink.c: (gst_osssink_chain):
35794         * sys/oss/gstosssrc.c: (gst_osssrc_get):
35795         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
35796         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
35797         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
35798         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
35799         (gst_v4l_set_window), (gst_v4l_enable_overlay):
35800         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
35801         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
35802         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
35803         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
35804         (gst_v4l_set_audio):
35805         * sys/v4l/v4l_calls.h:
35806         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
35807         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
35808         (gst_v4lmjpegsink_playback_init),
35809         (gst_v4lmjpegsink_playback_start):
35810         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
35811         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
35812         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
35813         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
35814         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
35815         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
35816         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
35817         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
35818         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
35819         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
35820         (gst_v4l2_get_output), (gst_v4l2_set_output),
35821         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
35822         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
35823         (gst_v4l2_set_attribute):
35824         * sys/v4l2/v4l2_calls.h:
35825         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
35826         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
35827         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
35828         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
35829         (gst_v4l2src_capture_stop):
35830         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
35831         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
35832         (gst_ximagesink_chain):
35833         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
35834         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
35835         (gst_xvideosink_xwindow_new):
35836         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
35837         (gst_xvimagesink_chain):
35838
35839 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
35840
35841         * gst/volume/gstvolume.c: (gst_volume_set_volume),
35842         (gst_volume_get_volume), (volume_class_init), (volume_init),
35843         (volume_chain_int16), (volume_update_volume):
35844         * gst/volume/gstvolume.h:
35845           make code more readable by removing magic numbers
35846           make mixer interface export 0-100 range
35847           make it internally map to 0.0-1.0 range so users don't distort
35848           output by putting the sliders at full volume
35849
35850 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
35851
35852         * gst-libs/gst/play/play.c: (gst_play_tick_callback),
35853         (gst_play_state_change), (gst_play_seek_to_time):
35854         block the tick callback for 0.5 secs after doing a seek
35855
35856 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
35857
35858         * gst-libs/gst/play/play.c: (gst_play_new):
35859           check for GError
35860
35861 2004-02-01  Julien MOUTTE  <julien@moutte.net>
35862
35863         * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
35864         (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
35865         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
35866         (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
35867         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
35868         (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
35869
35870 2004-02-01  Thomas Vander Stichele  <thomas at apestaart dot org>
35871
35872         * configure.ac:
35873         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
35874           check for a function added in vorbis 1.1
35875
35876 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35877
35878         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
35879         (gst_alsa_drain_audio), (gst_alsa_stop_audio):
35880           really start/stop clock only on PLAYING <=> PAUSED
35881         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
35882           remove \n from debugging lines
35883         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
35884           make it work when seeking does not
35885         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
35886           reset on DISCONT
35887
35888 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35889
35890         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
35891           start clock on PAUSED=>PLAYING, not later
35892         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
35893           extract correct time for different discont formats
35894         (gst_alsa_sink_get_time):
35895           don't segfault when no format is negotiated yet, just return 0
35896         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
35897         (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
35898         (gst_ogg_pad_push):
35899           handle flush and discont events correctly
35900         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
35901           handle discont events correctly
35902
35903 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
35904
35905         * gst-libs/gst/play/play.c: (gst_play_error_quark),
35906         (gst_play_error_create), (gst_play_error_plugin),
35907         (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
35908         * gst-libs/gst/play/play.h:
35909           add error handling during creation
35910         * examples/gstplay/player.c: (main):
35911           use new gst_play_new
35912
35913
35914 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35915
35916         * ext/theora/theoradec.c: (theora_dec_chain):
35917           make comments work
35918         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
35919         (vorbis_dec_src_event), (vorbis_dec_chain):
35920           add encoder tag, fix tag reading to be more error tolerant, change
35921           BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
35922           gst_pad_event_default.
35923         * gst/tags/gstvorbistag.c:
35924         (gst_tag_list_from_vorbiscomment_buffer):
35925           undefine function specific define at end of function
35926
35927 2004-01-31  Jeremy Simon  <jesimon@libertysurf.fr>
35928
35929         * ext/flac/gstflac.c: (plugin_init):
35930         * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
35931         * ext/flac/gstflacdec.h:
35932         * ext/flac/gstflacenc.h:
35933           Fix typos
35934
35935 2004-01-30  David I. Lehn  <dlehn@users.sourceforge.net>
35936
35937         * examples/gstplay/player.c: s/gstplay.h/play.h/
35938
35939 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
35940
35941         * gst-libs/gst/play/Makefile.am:
35942         * gst-libs/gst/play/gstplay.c:
35943         * gst-libs/gst/play/gstplay.h:
35944         * gst-libs/gst/play/play.c:
35945           more surgery, operation complete
35946
35947 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
35948
35949         * gst-libs/gst/play/play.old.c:
35950         * gst-libs/gst/play/play.old.h:
35951           after CVS surgery by moving, remove
35952         * gst-libs/gst/play/playpipelines.c:
35953           remove
35954
35955         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
35956           add negotiation error
35957
35958 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
35959
35960         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
35961         (gst_ogg_demux_push):
35962           add some seeking debug info
35963           send a flush when seeking
35964
35965 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35966
35967         * configure.ac:
35968           use AC_C_INLINE
35969         * configure.ac:
35970         * ext/Makefile.am:
35971         * ext/theora/Makefile.am:
35972         * ext/theora/theoradec.c:
35973           add theora video decoder. Does just do simple decoding for now and
35974           has been tested against Theora cvs only. It only works when theora
35975           is compiled with --enable-static.
35976         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
35977           always reset packetno on DISCONT
35978
35979 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35980
35981         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
35982           Fix audio.
35983
35984 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35985
35986         * gst/mpegaudioparse/gstmpegaudioparse.c:
35987         (mp3_type_frame_length_from_header):
35988           Fix header parsing - stolen from ffmpeg (thank you! :) ).
35989
35990 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35991
35992         * ext/esd/esdsink.c: (gst_esdsink_init):
35993           Since we have static pad template caps, we don't need to negotiate;
35994           either the core errors out or we know the format.
35995
35996 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35997
35998         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
35999         (gst_riff_read_seek):
36000         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
36001         (gst_ebml_read_seek):
36002           Fix event handling.
36003
36004 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36005
36006         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
36007           removee video/x-theora from vp3 decoder, it doesn't handle raw
36008           theora streams
36009         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
36010           fix bug with finalizing element that never went to PAUSED
36011         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
36012           length and position queries were swapped
36013         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
36014         (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
36015         (vorbis_dec_src_event):
36016           implement querying time and bytes
36017
36018 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
36019
36020         * just about every source file:
36021           gst_element_error -> GST_ELEMENT_ERROR
36022
36023 2004-01-29  Julien MOUTTE  <julien@moutte.net>
36024
36025         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
36026         emiting FLUSH and even before DISCONT.
36027         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
36028         get the best instant seeking as possible yay!
36029
36030 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36031
36032         * gst/mpeg1videoparse/gstmp1videoparse.c:
36033         (gst_mp1videoparse_real_chain):
36034           Committed wrong version last week... Grr... Didn't notice until now.
36035
36036 2004-01-29  Julien MOUTTE <julien@moutte.net>
36037
36038         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
36039         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
36040         have_xwindow_id signal in xwindow_create.
36041
36042 2004-01-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36043
36044         * ext/ogg/gstoggdemux.c:
36045           lots of changes - mainly support for chained bitstreams, seeking,
36046           querying and bugfixes of course
36047         * ext/vorbis/Makefile.am:
36048         * ext/vorbis/vorbisdec.c:
36049         * ext/vorbis/vorbisdec.h:
36050           add vorbisdec raw vorbis decoder
36051         * ext/vorbis/vorbis.c: (plugin_init):
36052           register vorbisdec as PRIMARY, vorbisfile as SECONDARY
36053         * gst/intfloat/Makefile.am:
36054         * gst/intfloat/float22int.c:
36055         * gst/intfloat/float22int.h:
36056         * gst/intfloat/gstintfloatconvert.c: (plugin_init):
36057           add float2intnew plugin. It converts multichannel interleaved float to
36058           multichannel interleaved int. The name should probably be changed.
36059         * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
36060         (plugin_init):
36061           add typefinding for raw theora video so oggdemux can detect it.
36062
36063 2004-01-28  Julien MOUTTE  <julien@moutte.net>
36064
36065         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
36066         sink element first.
36067         * gst/videoscale/gstvideoscale.c:
36068         (gst_videoscale_handle_src_event): Fixing src event handler.
36069
36070 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36071
36072         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
36073         (gst_v4lsrc_open), (gst_v4lsrc_close),
36074         (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
36075         (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
36076         * sys/v4l/gstv4lsrc.h:
36077         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
36078         (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
36079           Implement resizing... Hack. But that's why v4l is b0rked...
36080
36081 2004-01-28  Julien MOUTTE <julien@moutte.net>
36082
36083         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
36084         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
36085         (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
36086         (gst_ximagesink_xwindow_destroy):
36087         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
36088         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
36089         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
36090         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
36091         (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
36092         correctly cleaning the image created to check xshm calls on succes,
36093         added a lot of XSync calls in X11 functions, and fixed a segfault when
36094         no image format was defined before negotiation happened.
36095
36096 2004-01-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36097
36098         * ext/alsa/gstalsa.c: (gst_alsa_query_func):
36099           use gst_element_get_time to get correct time
36100
36101 2004-01-28  Julien MOUTTE  <julien@moutte.net>
36102
36103         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
36104         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
36105         (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
36106         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
36107         (gst_xvimagesink_check_xshm_calls),
36108         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
36109         X plugins are now able to detect that XShm calls will fail even if the
36110         server claims that it has XShm support (remote displays most of the
36111         time). We then log the error as a GST_DEBUG and set use_shm to FALSE
36112         so that we use non XShm functions. This feature is almost useless for
36113         xvimagesink as Xv is not supported on remote displays anyway, but
36114         it might happen than even on the local display XShm calls fail.
36115
36116 2004-01-27  David Schleef  <ds@schleef.org>
36117
36118         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
36119         (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
36120         (gst_esdsink_change_state):  Fix sync issues in esdsink.  Also
36121         changed esdsink to only use 44100,16,2, since esd sucks at rate
36122         conversion and esdsink has had difficulty negotiating.
36123
36124 2004-01-27  Julien MOUTTE <julien@moutte.net>
36125
36126         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
36127         (gst_play_seek_to_time): Fixing the way to get current position.
36128
36129 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36130
36131         * sys/oss/gstosssink.c: (gst_osssink_sink_query):
36132           use gst_element_get_time to get correct time
36133
36134 2004-01-27  Julien MOUTTE <julien@moutte.net>
36135
36136         * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
36137         fix ever... Inverting 2 lines of code make spider autoplug correctly
36138         tagged mp3 !
36139
36140 2004-01-27  David Schleef  <ds@schleef.org>
36141
36142         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
36143         Use gst_pad_try_set_caps_nonfixed().
36144
36145 2004-01-27  David Schleef  <ds@schleef.org>
36146
36147         * gst/ac3parse/gstac3parse.c: update to checklist 5
36148         * gst/adder/gstadder.c: rewrite negotiation.  update to checklist 5
36149         * gst/audioconvert/gstaudioconvert.c: update to checklist 5
36150         * gst/audioscale/gstaudioscale.c: same
36151         * gst/auparse/gstauparse.c: same
36152         * gst/avi/gstavidemux.c: same
36153
36154 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36155
36156         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
36157           stop processing after EOS
36158
36159 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36160
36161         * gst/asfdemux/asfheaders.h:
36162         * gst/asfdemux/gstasfdemux.c:
36163         * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
36164         (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
36165         (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
36166           lot's of fixes to make data extraction simpler and get the code
36167           architecture and compiler independant. Add debugging category
36168         * gst/goom/gstgoom.c: (gst_goom_change_state):
36169           reset channel count on PAUSED=>READY, not READY=>PAUSED
36170
36171 2004-01-26  Colin Walters  <walters@verbum.org>
36172
36173         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
36174         code to pull a bigger buffer in iradio mode.  This as a side effect
36175         makes typefinding work.
36176
36177 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
36178
36179         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
36180         Fix SVQ3 decoding on PPC
36181
36182 2004-01-26  Julien MOUTTE <julien@moutte.net>
36183
36184         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
36185         that one managed to stay there... Fixed.
36186
36187 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
36188
36189         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
36190         (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
36191         * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
36192         (qtdemux_video_caps):
36193         * gst/qtdemux/qtdemux.h:
36194         Add SVQ3 specific flags to qtdemux and ffmpeg
36195
36196 2004-01-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36197
36198         * gst-libs/gst/audio/audio.h:
36199           remove buffer-frames from audio caps
36200         * gst/audioconvert/gstaudioconvert.c:
36201           fix plugin to really work.
36202
36203 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36204
36205         * gst-libs/gst/mixer/mixer.c:
36206         * gst-libs/gst/propertyprobe/propertyprobe.c:
36207         * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
36208         (gst_tuner_find_channel_by_name):
36209         * gst-libs/gst/tuner/tuner.h:
36210           Add gtk-doc style comments. Also fix a function name.
36211
36212 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36213
36214         * ext/divx/gstdivxdec.c: (gst_divxdec_init),
36215         (gst_divxdec_negotiate):
36216           Fix for new capsnego - also fixes gst-player with divxdec.
36217
36218 2004-01-25  Julien MOUTTE  <julien@moutte.net>
36219
36220         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
36221         (gst_play_identity_handoff), (gst_play_set_location),
36222         (gst_play_set_visualization), (gst_play_connect_visualization): Another
36223         try in visualization implementation. Still have an issue with switch
36224         blocking when pulling from video_queue and only audio comes out of
36225         spider.
36226         * gst/switch/gstswitch.c: (gst_switch_release_pad),
36227         (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
36228         release method. And check if the pad is usable before pulling.
36229
36230 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36231
36232         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
36233         (gst_videobalance_init),
36234         (gst_videobalance_colorbalance_list_channels),
36235         (gst_videobalance_colorbalance_set_value),
36236         (gst_videobalance_colorbalance_get_value),
36237         (gst_videobalance_update_properties),
36238         (gst_videobalance_update_tables_planar411),
36239         (gst_videobalance_planar411):
36240         * gst/videofilter/gstvideobalance.h:
36241           Implement lookup-tables. +/- 10x faster.
36242
36243 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36244
36245         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
36246         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
36247           The index reading was broken. The rest worked fine, but the whole
36248           goal of my rewrite was to make avidemux readable, and this was
36249           not at all readable. Please use typed variables.
36250
36251 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36252
36253         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
36254           Additional pad usability check.
36255         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
36256         (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
36257         (gst_mp1videoparse_real_chain):
36258           Fix MPEG video stream parsing. The original plugin had several
36259           issues, including not timestamping streams where the source was
36260           not timestamped (this happens with PTS values in mpeg system
36261           streams, but MPEG video is also a valid stream on its own so
36262           that needs timestamps too). We use the display time code for that
36263           for now. Also, if one incoming buffer contains multiple valid
36264           frames, we push them all on correctly now, including proper EOS
36265           handling. Lastly, several potential segfaults were fixed, and we
36266           properly sync on new sequence/gop headers to include them in next,
36267           not previous frames (since they're header for the next frame, not
36268           the previous). Also see #119206.
36269         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
36270         (bpf_from_header):
36271           Move caps setting so we only do it after finding several valid
36272           MPEG-1 fraes sequentially, not right after the first one (which
36273           might be coincidental).
36274         * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
36275         (mpeg_video_type_find), (mpeg_video_stream_type_find),
36276         (plugin_init):
36277           Add unsynced MPEG video stream typefinding, and change some
36278           probability values so we detect streams rightly. The idea is as
36279           follows: I can have an unsynced system stream which contains
36280           video. In the current code, I would randomly get a type for either
36281           system or video stream type found, because the probabilities are
36282           being calculated rather randomly. I now use fixed values, so we
36283           always prefer system stream if that was found (and that is how it
36284           should be). If no system stream was found, we can still identity                the stream as video-only.
36285
36286 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36287
36288         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
36289         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
36290           don't write to buffer. Extract data without the need of
36291           __attribute__ ((packed))
36292
36293 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36294
36295         * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
36296         (mpeg1_sys_type_find):
36297           Fix MPEG-1 stream typefinding.
36298
36299 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36300
36301         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
36302           Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
36303
36304 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
36305
36306         * ext/esd/esdsink.c: (gst_esdsink_open_audio):
36307         * ext/esd/gstesd.c: (plugin_init):
36308           private debugging, better error reporting
36309
36310 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36311
36312         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
36313         (gst_riff_read_init), (gst_riff_read_change_state):
36314         * gst-libs/gst/riff/riff-read.h:
36315           Remove stuff fromold metadata system.
36316
36317 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36318
36319         * ext/ogg/gstoggdemux.c:
36320           Fix wrong file comment.
36321         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
36322         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
36323           Add metadata reading properly.
36324
36325 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
36326
36327         * ext/Makefile.am:
36328           Fix nas DIST_SUBDIRS
36329           Uraeus:
36330           Fix bug where make distcheck doesn't get run on adding stuff to
36331           the build.
36332
36333 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36334
36335         * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
36336         * ext/divx/gstdivxdec.h:
36337           Fix divx3 ("msmpeg4") playback using divxdec.
36338
36339 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36340
36341         * gst/typefind/gsttypefindfunctions.c:
36342         (mp3_type_frame_length_from_header): fix bug in length computation
36343         (mp3_type_find): improve debugging output
36344
36345 2004-01-23  Julien MOUTTE  <julien@moutte.net>
36346
36347         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
36348         (gst_play_set_location), (gst_play_seek_to_time),
36349         (gst_play_set_audio_sink), (gst_play_set_visualization),
36350         (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
36351         the pipeline from scratch. Visualization is back and switch went out as
36352         i realized it was not possible to use the way i wanted.
36353         * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
36354         (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
36355         clearing in state change from READY to NULL. So that one can clean the
36356         X ressources keeping the element.
36357         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
36358         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
36359         (gst_xvimagesink_colorbalance_set_value),
36360         (gst_xvimagesink_colorbalance_get_value),
36361         (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
36362         (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
36363         change from READY to NULL and fixed some stupid bugs in colorbalance
36364         get/set values. Also added the following feature : when nobody tries to
36365         set some values to the colorbalance levels before the xcontext is
36366         grabbed, then when creating channels list from Xv attributes we set the
36367         internal values to the Xv defaults. This way we handle buggy Xv drivers
36368         that set default hue values far from the middle of the range (Thanks
36369         to Jon Trowbridge for pointing that issue).
36370         * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
36371         colorbalance levels have been set before xcontext is grabbed.
36372
36373 2004-01-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36374
36375         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
36376           Fix the ossmixer case where we shouldn't open /dev/dsp* because
36377           it might block operations (which is bad for a mixer).
36378
36379 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
36380
36381         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
36382         (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
36383         (gmip_find_type_pre):
36384         * gst-libs/gst/media-info/media-info-priv.h:
36385         * gst-libs/gst/media-info/media-info.c:
36386         (gst_media_info_instance_init), (gst_media_info_read_idler):
36387         add fakesink to get caps on decoder src pad again
36388         fix callback prototype to match new have_type signal signature
36389
36390 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
36391
36392         * gst/adder/gstadder.c: (gst_adder_link):
36393           fix non-compile and cut-n-paste code
36394
36395 2004-01-21  David Schleef  <ds@schleef.org>
36396
36397         * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
36398         (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
36399         (gst_swfdec_init), (gst_swfdec_change_state):
36400         * ext/swfdec/gstswfdec.h:
36401         Fix negotiation.
36402         * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
36403         (gst_adder_request_new_pad): Fix negotiation.
36404         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
36405         Add a fixate function.
36406         * gst/intfloat/gstfloat2int.c:
36407         * gst/intfloat/gstfloat2int.h:
36408         * gst/intfloat/gstint2float.c:
36409         * gst/intfloat/gstint2float.h:
36410         Completely rewrite the negotiation.  Doesn't quite work yet,
36411         due to some buffer-frames problem.
36412
36413 2004-01-21  Thomas Vander Stichele  <thomas at apestaart dot org>
36414
36415         * ext/gnomevfs/gstgnomevfssrc.c:
36416         * sys/v4l2/v4l2_calls.h:
36417           fix includes for distcheck
36418
36419 2004-01-21  Christian Schaller <uraeus@gnome.org>
36420
36421         * ext/nas/
36422         Add libnas (network audio system) plugin, patch from Arwed von Merkatz
36423         based on earlier patch from Laurent Vivier
36424
36425 2004-01-20  Jeremy Simon  <jesimon@libertysurf.fr>
36426
36427         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
36428         Fix wma caps property
36429         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
36430         Fix typo (flags1 and flags2)
36431
36432 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
36433
36434         * gst-libs/gst/media-info/media-info-priv.c:
36435         (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
36436         (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
36437         (gmip_find_stream), (gmip_find_track_metadata),
36438         (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
36439         (gmip_find_track_format):
36440         * gst-libs/gst/media-info/media-info-priv.h:
36441         * gst-libs/gst/media-info/media-info-test.c: (main):
36442         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
36443         (gst_media_info_read_idler), (gst_media_info_read):
36444         * gst-libs/gst/media-info/media-info.h:
36445           register debugging category and use it for debugging
36446
36447 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
36448
36449         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
36450         (gst_vorbisfile_new_link):
36451           signal streaminfo through tags
36452
36453 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36454
36455         * ext/mplex/gstmplex.cc:
36456         * ext/mplex/gstmplexibitstream.cc:
36457           g++ doesn't like NULL in our i18n/error macros, should be
36458           either (NULL) or ("").
36459
36460 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36461
36462         * sys/dxr3/dxr3audiosink.c:
36463         * sys/dxr3/dxr3init.c:
36464         * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
36465         * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
36466           Fix more error error error errors (missing includes here).
36467
36468 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36469
36470         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
36471           fix thomas' error errors.
36472
36473 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
36474
36475         * ext/mpeg2enc/gstmpeg2enc.cc:
36476           fix error errors.
36477
36478 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36479
36480         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
36481         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
36482           Fix for new error system.
36483
36484 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
36485
36486         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
36487           fix for new error reporting
36488
36489 2004-01-20  David Schleef  <ds@schleef.org>
36490
36491         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
36492         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
36493         (gst_ximagesink_set_xwindow_id): Change to using a framerate
36494         of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
36495         and neither is 100+, most likely.
36496         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
36497         (gst_xvimagesink_getcaps): same
36498
36499 2004-01-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36500
36501         * configure.ac:
36502           Up version requirement to 2.0.3 (not yet released) to avoid symbol
36503           clashes with ffmpeg.
36504
36505 2004-01-20  Julien MOUTTE  <julien@moutte.net>
36506
36507         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
36508         (gst_switch_init): Fixed switch element : proxying link and setting
36509         caps from src to sink on request.
36510
36511 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
36512
36513         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
36514         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
36515         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
36516         fix element_error
36517
36518 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
36519
36520         * sys/v4l/v4l_calls.h:
36521         * sys/v4l2/v4l2_calls.h:
36522           element_error fixes
36523
36524 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
36525
36526         * gst-libs/gst/gst-i18n-plugin.h:
36527           add locale.h
36528           remove config.h inclusion
36529
36530 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
36531
36532         * autogen.sh:
36533           adding autopoint invocation
36534         * Makefile.am:
36535         * configure.ac:
36536         * gst-libs/gst/gettext.h:
36537           adding gettext bits
36538         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
36539         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
36540         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
36541         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
36542         (gst_gnomevfssink_close_file):
36543         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
36544         * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
36545         * gst-libs/gst/gst-i18n-plugin.h:
36546         * gst/avi/gstavi.c: (plugin_init):
36547         * sys/dxr3/dxr3init.c: (plugin_init):
36548         * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
36549         * sys/oss/gstossaudio.c: (plugin_init):
36550         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
36551         * sys/v4l/gstv4l.c: (plugin_init):
36552         * sys/v4l/v4l_calls.c: (gst_v4l_open):
36553         * sys/v4l2/gstv4l2.c: (plugin_init):
36554         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
36555         (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
36556         (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
36557         (gst_v4l2_set_output), (gst_v4l2_get_frequency),
36558         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
36559         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
36560           make sure locale and translation domain are set
36561           fix translated strings
36562         * po/.cvsignore:
36563         * po/LINGUAS:
36564         * po/Makevars:
36565         * po/POTFILES.in:
36566         * po/nl.po:
36567           put translation files into place
36568         * sys/xvideo/imagetest.c: (main):
36569         * ext/dv/demo-play.c: (main):
36570           fix unnecessary translations
36571
36572 2004-01-19  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
36573
36574         * ext/sndfile/gstsf.c:
36575         * gst/avi/gstavimux.c:
36576         * ext/audiofile/gstafsink.c:
36577         * ext/audiofile/gstafsrc.c:
36578         * ext/gnomevfs/gstgnomevfssink.c:
36579         * ext/gnomevfs/gstgnomevfssrc.c:
36580         * sys/oss/gstosselement.c:
36581         * sys/v4l/v4l_calls.h:
36582           fix i18n include
36583
36584 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
36585
36586         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
36587         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
36588         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
36589         (gst_v4l2_get_output), (gst_v4l2_set_output),
36590         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
36591         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
36592         (gst_v4l2_set_attribute):
36593         update to new error handling
36594
36595 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
36596
36597         * ext/sidplay/gstsiddec.cc:
36598         * gst/modplug/gstmodplug.cc:
36599           parenthese NULL because C++ seems angry about it
36600
36601 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
36602
36603         * gst-libs/gst/gst-i18n-plugin.h:
36604           add skeleton i18n stuff, but needs to be further implemented
36605
36606 2004-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>
36607
36608         * examples/gstplay/player.c: (main):
36609         * ext/aalib/gstaasink.c: (gst_aasink_open):
36610         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
36611         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
36612         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
36613         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
36614         (gst_afsink_close_file):
36615         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
36616         (gst_afsrc_close_file):
36617         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
36618         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
36619         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
36620         * ext/esd/esdmon.c: (gst_esdmon_get):
36621         * ext/esd/esdsink.c: (gst_esdsink_chain):
36622         * ext/faac/gstfaac.c: (gst_faac_chain):
36623         * ext/faad/gstfaad.c: (gst_faad_chain):
36624         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
36625         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
36626         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
36627         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
36628         (gst_flacdec_loop):
36629         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
36630         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
36631         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
36632         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
36633         (gst_gnomevfssink_close_file):
36634         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
36635         (gst_gnomevfssrc_open_file):
36636         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
36637         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
36638         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
36639         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
36640         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
36641         * ext/mad/gstmad.c: (gst_mad_chain):
36642         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
36643         * ext/mpeg2dec/gstmpeg2dec.c:
36644         * ext/mpeg2enc/gstmpeg2enc.cc:
36645         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
36646         * ext/mplex/gstmplex.cc:
36647         * ext/mplex/gstmplexibitstream.cc:
36648         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
36649         (gst_ogg_demux_push), (gst_ogg_pad_push):
36650         * ext/raw1394/gstdv1394src.c:
36651         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
36652         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
36653         * ext/sidplay/gstsiddec.cc:
36654         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
36655         (gst_sf_loop):
36656         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
36657         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
36658         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
36659         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
36660         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
36661         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
36662         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
36663         * gst-libs/gst/Makefile.am:
36664         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
36665         (gst_riff_read_element_data), (gst_riff_read_seek),
36666         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
36667         * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
36668         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
36669         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
36670         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
36671         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
36672         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
36673         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
36674         * gst/goom/gstgoom.c: (gst_goom_chain):
36675         * gst/id3/gstid3types.c: (gst_id3types_loop):
36676         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
36677         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
36678         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
36679         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
36680         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
36681         (gst_ebml_read_float), (gst_ebml_read_header):
36682         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
36683         (gst_matroska_demux_parse_blockgroup):
36684         * gst/modplug/gstmodplug.cc:
36685         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
36686         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
36687         * gst/oneton/gstoneton.c: (gst_oneton_chain):
36688         * gst/silence/gstsilence.c: (gst_silence_get):
36689         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
36690         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
36691         * gst/speed/gstspeed.c: (speed_loop):
36692         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
36693         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
36694         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
36695         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
36696         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
36697         (gst_wavparse_loop):
36698         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
36699         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
36700         (dxr3audiosink_close):
36701         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
36702         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
36703         (dxr3videosink_close), (dxr3videosink_write_data):
36704         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
36705         * sys/oss/gstosselement.h:
36706         * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
36707         (gst_osssink_chain):
36708         * sys/oss/gstosssrc.c: (gst_osssrc_get):
36709         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
36710         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
36711         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
36712         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
36713         (gst_v4l_enable_overlay):
36714         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
36715         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
36716         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
36717         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
36718         (gst_v4l_set_audio):
36719         * sys/v4l/v4l_calls.h:
36720         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
36721         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
36722         (gst_v4lmjpegsink_playback_init),
36723         (gst_v4lmjpegsink_playback_start):
36724         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
36725         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
36726         (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
36727         (gst_v4lmjpegsrc_requeue_frame):
36728         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
36729         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
36730         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
36731         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
36732         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
36733         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
36734         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
36735         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
36736         (gst_v4l2src_capture_stop):
36737         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
36738         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
36739         (gst_ximagesink_chain):
36740         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
36741         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
36742         (gst_xvideosink_xwindow_new):
36743         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
36744         (gst_xvimagesink_chain):
36745         use new error signal, function and categories
36746
36747 2004-01-18  Jeremy Simon <jesimon@libertysurf.fr>
36748
36749         * configure.ac:
36750         * ext/Makefile.am:
36751         * ext/musicbrainz/gsttrm.c:
36752         * ext/musicbrainz/gsttrm.h:
36753         * ext/musicbrainz/Makefile.am:
36754         Add a trm plugin
36755
36756 2004-01-18  Julien MOUTTE  <julien@moutte.net>
36757
36758         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
36759         (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
36760         synchronous property for debugging.
36761         * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
36762         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
36763         (gst_xvimagesink_set_property): Moving a pointer declaration to a
36764         smaller block, fixing indent.
36765
36766 2004-01-16  David Schleef  <ds@schleef.org>
36767
36768         * gst/videofilter/gstvideobalance.c: Fix regression; changing a
36769         property affects the video stream.
36770         * sys/xvimage/xvimagesink.c:
36771         * sys/xvimage/xvimagesink.h:
36772         Add synchronous property for debugging.  Should probably be
36773         disabled in non-CVS builds.  Make sure that the Xv attribute
36774         exists before we set it (crash!).  Fix a silly float bug that
36775         caused colorbalance to just not work.
36776
36777 2004-01-17  Christian Schaller <Uraeus@gnome.org>
36778
36779         * tools/gst-launch-ext.in - update for new plugins
36780
36781 2004-01-16  David Schleef  <ds@schleef.org>
36782
36783         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
36784         already-freed caps.
36785
36786 2994-01-16  Christian Schaller <Uraeus@gnome.org>
36787
36788         * Update spec for new colorspace plugin and libcaca plugin
36789         * Fix compilation of libcaca plugin (clock -> id)
36790
36791 2004-01-16  Julien MOUTTE <julien@moutte.net>
36792
36793         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
36794         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
36795         (gst_xvimagesink_set_xwindow_id),
36796         (gst_xvimagesink_colorbalance_set_value),
36797         (gst_xvimagesink_colorbalance_get_value),
36798         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
36799         (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
36800         correct colorbalance properties. They can now be set when the element
36801         is still in NULL state. The values will be committed to the Xv Port
36802         when xcontext is initialized.
36803         * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
36804         brightness int values in the GstXvImagesink structure.
36805
36806 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36807
36808         * gst-libs/gst/Makefile.am:
36809           restructure so having local patches works easier.
36810
36811 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36812
36813         * ext/mpeg2enc/Makefile.am:
36814         * ext/mpeg2enc/gstmpeg2enc.cc:
36815         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
36816           Bugfix with respect to EOS handling.
36817
36818 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36819
36820         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
36821           Link with right caps (else, it segfaults).
36822         * ext/mplex/gstmplexjob.cc:
36823           Fix for slight API change in 1.6.1.93 release of mjpegtools.
36824
36825 2004-01-15  David Schleef  <ds@schleef.org>
36826
36827         * gst-libs/gst/audio/Makefile.am:
36828         Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
36829         from the template.
36830         * gst-libs/gst/audio/gstaudiofilter.c:
36831         * gst-libs/gst/audio/gstaudiofilter.h:
36832         Add bytes_per_sample and size and n_samples calculation.
36833         * gst-libs/gst/audio/gstaudiofilterexample.c:
36834         Remove, now autogenerated.
36835         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
36836         Moved from gstaudiofilterexample, object name changed, code added
36837         so that it actually works.
36838         * gst-libs/gst/audio/make_filter:
36839         Script to build an audiofilter subclass from the template.
36840         * gst/colorspace/Makefile.am:
36841         * gst/colorspace/yuv2yuv.c:
36842         Remove file, since it's GPL, and we don't use it.
36843
36844 2004-01-15  Julien MOUTTE  <julien@moutte.net>
36845
36846         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
36847         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
36848         them use the buffer free function to test how the buffer was allocated.
36849
36850 2004-01-15  David Schleef  <ds@schleef.org>
36851
36852         * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
36853         that handles osssink fallback.
36854         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
36855         (gst_audio_convert_getcaps):
36856         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
36857         Add audio/x-qdm2 for QDM2 audio.
36858         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
36859         * gst/sine/gstsinesrc.h: Add example of how to implement tags.
36860         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
36861         Decrease minimum size to 16x16.
36862         * gst/wavparse/gstwavparse.c:
36863         Convert disabled pad template caps to new caps.
36864         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
36865         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
36866         (gst_xvimagesink_chain): Throw element error when display cannot
36867         be opened.  Increase minimum framerate to 1.0.  Check the data
36868         free function on a buffer to make sure it is the type we expect
36869         before manipulating it.
36870
36871 2004-01-15  Julien MOUTTE <julien@moutte.net>
36872
36873         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
36874         (gst_videobalance_colorbalance_set_value): Implement passthru if
36875         settings are in the middle.
36876         * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
36877
36878 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36879
36880         * gst/videofilter/Makefile.am:
36881         * gst/volume/Makefile.am:
36882           Since we use videofilter symbols, link to it.
36883
36884 2004-01-15  Julien MOUTTE <julien@moutte.net>
36885
36886         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
36887         mixer interface type to HARDWARE.
36888         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
36889         type to SOFTWARE.
36890         * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
36891         * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
36892         * gst/volume/gstvolume.c: (gst_volume_interface_supported),
36893         (gst_volume_interface_init), (gst_volume_list_tracks),
36894         (gst_volume_set_volume), (gst_volume_get_volume),
36895         (gst_volume_set_mute), (gst_volume_mixer_init),
36896         (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
36897         (volume_init): Implementing mixer interface.
36898         * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
36899         * sys/oss/gstosselement.c: (gst_osselement_get_type),
36900         (gst_osselement_change_state): Removing some trailing commas in
36901         structures.
36902         * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
36903         interface type to HARDWARE.
36904         * sys/v4l/gstv4lcolorbalance.c:
36905         (gst_v4l_color_balance_interface_init): Setting colorbalance interface
36906         type to HARDWARE.
36907         * sys/v4l2/gstv4l2colorbalance.c:
36908         (gst_v4l2_color_balance_interface_init): Setting colorbalance
36909         interface type to HARDWARE.
36910         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
36911         same code than ximagesink for event handling.
36912
36913 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36914
36915         * ext/snapshot/Makefile.am:
36916         * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
36917         (gst_snapshot_chain):
36918         * ext/snapshot/gstsnapshot.h:
36919           This has to be a joke... Snapshot should be connected to a tee,
36920           colorspace element before it and EOS after that, where the other
36921           src of the tee receives normal data.
36922           The current way is *wrong*.
36923
36924 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36925
36926         * ext/hermes/gsthermescolorspace.c:
36927           Fix another compile error. Same as below.
36928
36929 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36930
36931         * gst/colorspace/gstcolorspace.c:
36932         * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
36933         (gst_colorspace_i420_to_yv12):
36934           Fix compiling... Didn't test if it actually works.
36935
36936 2004-01-15  David Schleef  <ds@schleef.org>
36937
36938         * configure.ac:
36939         * gst/colorspace/Makefile.am:
36940         * gst/colorspace/gstcolorspace.c:
36941         * gst/colorspace/gstcolorspace.h:
36942         * gst/colorspace/yuv2rgb.c:
36943         * gst/colorspace/yuv2rgb.h:
36944         Duplicate the ext/hermes colorspace plugin, and remove Hermes
36945         code and GPL code.  Fix for new caps negotiation.  Rewrite
36946         much of the format handling code, and some of the conversion
36947         code.  Basically, rewrote almost everything.  This element
36948         handles I420, YV12 to RGB conversions.
36949         * ext/hermes/Makefile.am:
36950         * ext/hermes/gsthermescolorspace.c:
36951         Rename colorspace to hermescolorspace.  Fix negotiation issues.
36952         Remove non-Hermes related code.  This element handles lots of
36953         RGB to RGB conversions, but no YUV.
36954         * ext/hermes/gstcolorspace.c:
36955         * ext/hermes/gstcolorspace.h:
36956         * ext/hermes/rgb2yuv.c:
36957         * ext/hermes/yuv2rgb.c:
36958         * ext/hermes/yuv2rgb.h:
36959         * ext/hermes/yuv2rgb_mmx16.s:
36960         * ext/hermes/yuv2yuv.c:
36961         * ext/hermes/yuv2yuv.h:
36962         Remove old code.
36963
36964 2004-01-14  Colin Walters  <walters@verbum.org>
36965
36966         * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
36967         they've already been.
36968
36969 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36970
36971         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
36972           assume tag mode when pad is not connected
36973
36974 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36975
36976         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
36977           Don't update the time of the clock
36978         (gst_alsa_sink_loop):
36979           sync to the clock given to alsasink, not the own clock
36980         * sys/oss/gstosssink.c: (gst_osssink_chain):
36981           sync to the clock
36982         (gst_osssink_change_state):
36983           activate the clock
36984         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
36985         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
36986           remove bogus code that made DISCONT events unhandled
36987         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
36988           explicitly case to double in _set_simple. (fixes 2nd warning in bug
36989           #131502)
36990         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
36991         (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
36992         (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
36993           convert g_warning because of wrong asf data to GST_WARNINGs (fixes
36994           2nd warning in bug #131502)
36995
36996 2004-01-14  Julien MOUTTE  <julien@moutte.net>
36997
36998         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
36999         (gst_videobalance_colorbalance_set_value),
37000         (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
37001         for colorbalance interface implementation.
37002         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
37003         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
37004         (gst_ximagesink_dispose), (gst_ximagesink_init),
37005         (gst_ximagesink_class_init): Adding DISPLAY property.
37006         * sys/ximage/ximagesink.h: Adding display_name to store display.
37007         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
37008         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
37009         (gst_xvimagesink_dispose), (gst_xvimagesink_init),
37010         (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
37011         properties (they still need polishing though for gst-launch use : no
37012         xcontext yet, i ll do that tomorrow).
37013         * sys/xvimage/xvimagesink.h: Adding display_name to store display.
37014
37015 2004-01-14  Julien MOUTTE  <julien@moutte.net>
37016
37017         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
37018         (gst_play_set_location), (gst_play_set_visualization): Preparing
37019         switch integration, adding videobalance in the pipeline.
37020
37021 2004-01-14  Julien MOUTTE <julien@moutte.net>
37022
37023         * gst-libs/gst/colorbalance/colorbalance.c:
37024         (gst_color_balance_class_init): Adding a default type.
37025         * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
37026         the type.
37027         * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
37028         (gst_videobalance_dispose), (gst_videobalance_class_init),
37029         (gst_videobalance_init), (gst_videobalance_interface_supported),
37030         (gst_videobalance_interface_init),
37031         (gst_videobalance_colorbalance_list_channels),
37032         (gst_videobalance_colorbalance_set_value),
37033         (gst_videobalance_colorbalance_get_value),
37034         (gst_videobalance_colorbalance_init): Implementing colorbalance
37035         interface.
37036         * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
37037         list.
37038         * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
37039         bug which was triggering a BadAccess X error when setting an overlay
37040         before pad was really negotiated.
37041         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
37042         Using the colorbalance type macro.
37043
37044 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37045
37046         * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
37047         (gst_flacenc_chain):
37048           handle tags correctly
37049         * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
37050           extract ID3v1 tags correctly
37051
37052 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37053
37054         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
37055         (plugin_init):
37056           Improve matroska typefinding for odd-typed headers...
37057
37058 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37059
37060         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
37061           Fix for using incremental number on padnames.
37062
37063 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37064
37065         * ext/divx/gstdivxdec.c:
37066         * ext/divx/gstdivxenc.c:
37067           Set category to divx4linux instead of divx (too generic).
37068         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
37069         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
37070         (gst_wavparse_loop), (gst_wavparse_change_state):
37071         * gst/wavparse/gstwavparse.h:
37072           fix parsing of WAV files with non-standard fmt-tag size and fix
37073           skipping of unrecognized chunks... Someone please fix this thing
37074           to use rifflib so all this is automated.
37075         * sys/v4l/Makefile.am:
37076         * sys/v4l2/Makefile.am:
37077           Add X_CFLAGS because we depend on X (for overlay).
37078
37079 2004-01-14  Jan Schmidt  <thaytan@mad.scientist.com>
37080
37081         * ext/mpeg2dec/gstmpeg2dec.c:
37082           Don't issue a timestamp unless we tagged the frame
37083           with a PTS.
37084
37085 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37086
37087         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
37088           Query the audio element to get the time, not the clock. We're
37089           interested in the element's time here.
37090
37091 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37092
37093         * ext/aalib/gstaasink.c: (gst_aasink_chain):
37094         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
37095         * ext/esd/esdsink.c: (gst_esdsink_chain):
37096         * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
37097         * ext/mas/massink.c: (gst_massink_chain):
37098         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
37099         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
37100         (gst_matroska_demux_parse_metadata):
37101         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
37102         (gst_mpeg_parse_release_locks):
37103         * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
37104         * gst/udp/gstudpsink.c: (gst_udpsink_chain):
37105         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
37106         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
37107         (gst_osssink_change_state):
37108         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
37109         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
37110         * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
37111         (gst_xvideosink_release_locks):
37112         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
37113           use element time.
37114         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
37115         (gst_alsa_clock_stop):
37116         * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
37117         (gst_audio_clock_get_internal_time):
37118           simplify for use with new clocking code.
37119         * testsuite/alsa/Makefile.am:
37120         * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
37121           fix testsuite for new caps system
37122
37123 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37124
37125         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
37126         * ext/flac/gstflacenc.c: (add_one_tag):
37127           length is already host endian, no need to convert. Fixes playback of
37128           tagged files on PPC. (bug #128384)
37129
37130 2004-01-13  Julien MOUTTE <julien@moutte.net>
37131
37132         * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
37133         colorbalance interface stating if it is hardware based or software
37134         based.
37135         * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
37136         Removing a trailing comma.
37137         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
37138         (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
37139         Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
37140         the documentation seems to be wrong on the -1000 to 1000 interval.
37141
37142 2004-01-12  David Schleef  <ds@schleef.org>
37143
37144         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
37145         (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
37146         (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
37147         Fix negotiation.  Add a bufferalloc function for the sink pad,
37148         and generally clean up some of the code.
37149
37150 2004-01-12  Julien MOUTTE <julien@moutte.net>
37151
37152         * gst-libs/gst/colorbalance/colorbalancechannel.c:
37153         (gst_color_balance_channel_dispose): Adding safety check in dispose
37154         method.
37155         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
37156         (gst_xvimagesink_xcontext_clear),
37157         (gst_xvimagesink_interface_supported),
37158         (gst_xvimagesink_colorbalance_list_channels),
37159         (gst_xvimagesink_colorbalance_set_value),
37160         (gst_xvimagesink_colorbalance_get_value),
37161         (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
37162         Adding colorbalance interface support to set XV parameters such as
37163         HUE, BRIGHTNESS, CONTRAST, SATURATION.
37164         * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
37165         interface.
37166
37167 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
37168
37169         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
37170         (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
37171         (gst_audio_convert_init), (gst_audio_convert_set_property),
37172         (gst_audio_convert_get_property), (gst_audio_convert_chain),
37173         (gst_audio_convert_link),
37174         (gst_audio_convert_buffer_to_default_format),
37175         (gst_audio_convert_buffer_from_default_format), (plugin_init):
37176           - implement _getcaps and use it
37177           - improve linking
37178           - remove float caps since no float conversion is actually done
37179           - remove properties and arguments that were to be used for rate
37180             conversion
37181
37182 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
37183
37184         * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
37185         (gst_audio_structure_set_int):
37186         * gst-libs/gst/audio/audio.h:
37187           add helper functions for _getcaps matching the standard audio
37188           templates
37189
37190 2004-01-12  David Schleef  <ds@schleef.org>
37191
37192         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
37193         Test that pad is negotiated before getting its caps.
37194
37195 2004-01-12  Julien MOUTTE <julien@moutte.net>
37196
37197         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
37198         analyzing the pads of an element the bin is mostly in READY state so
37199         no caps were negotiated. This helper function needs to work with
37200         _get_caps directly then. I was not freeing them though, added that to
37201         fix the mem leak.
37202
37203 2004-01-12  Julien MOUTTE <julien@moutte.net>
37204
37205         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
37206         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
37207         direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
37208         than the free_func.
37209
37210 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
37211
37212         * sys/oss/gstossaudio.c: (plugin_init):
37213         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
37214         * sys/oss/gstosselement.h:
37215           make an oss debugging category
37216           make failure more descriptive
37217
37218 2004-01-11  David Schleef  <ds@schleef.org>
37219
37220         * ext/ffmpeg/gstffmpeg.c:
37221         * ext/ffmpeg/gstffmpegcodecmap.c:
37222         * ext/ffmpeg/gstffmpegdec.c:
37223         * ext/ffmpeg/gstffmpegenc.c:
37224         * ext/ffmpeg/gstffmpegprotocol.c:
37225         * ext/gdk_pixbuf/gstgdkanimation.c:
37226         * ext/jpeg/gstjpeg.c:
37227         * ext/libpng/gstpng.c:
37228         * ext/mpeg2dec/perftest.c:
37229         * ext/speex/gstspeex.c:
37230         * gst-libs/gst/resample/dtos.c:
37231         * gst/intfloat/gstintfloatconvert.c:
37232         * gst/oneton/gstoneton.c:
37233         * gst/rtjpeg/RTjpeg.c:
37234         * gst/rtp/gstrtp.c:
37235         * sys/dxr3/dxr3init.c:
37236         * sys/glsink/gstgl_nvimage.c:
37237         * sys/glsink/gstgl_pdrimage.c:
37238         * sys/glsink/gstglsink.c:
37239         * testsuite/gst-lint:
37240         Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
37241
37242 2004-01-11  David Schleef  <ds@schleef.org>
37243
37244         * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
37245         * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
37246         * ext/gdk_pixbuf/gstgdkanimation.c:
37247         (gst_gdk_animation_iter_create_pixbuf):
37248         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
37249         (gst_gdk_pixbuf_chain):
37250         * ext/gdk_pixbuf/gstgdkpixbuf.h:
37251         * ext/jack/gstjack.c: (gst_jack_change_state):
37252         * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
37253         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
37254         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
37255         * gst/videofilter/gstvideofilter.c:
37256         (gst_videofilter_set_output_size):
37257         Remove all usage of gst_pad_get_caps(), and replace it with
37258         gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
37259
37260 2004-01-11  David Schleef  <ds@schleef.org>
37261
37262         * configure.ac:
37263         * ext/Makefile.am: Fixes to make ext/libcaca compile.
37264         * ext/divx/gstdivxdec.c:
37265         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
37266         (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
37267         handle images that span multiple buffers.  Now work with both
37268         filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
37269         * ext/gdk_pixbuf/gstgdkpixbuf.h:
37270         * ext/libcaca/gstcacasink.h: Fixes needed due to recent
37271         video/video.h changes
37272         * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
37273         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
37274         (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
37275         of GstData free function.
37276         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
37277         same.
37278
37279 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37280
37281         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
37282         (gst_v4l2element_dispose), (gst_v4l2element_set_property),
37283         (gst_v4l2element_get_property):
37284         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
37285           add norm, channel and frequency properties.
37286         * sys/v4l2/gstv4l2tuner.c:
37287           fixes for tuner interface changes
37288         * sys/v4l2/gstv4l2element.h:
37289         * sys/v4l2/gstv4l2src.c:
37290         * sys/v4l2/gstv4l2src.h:
37291         * sys/v4l2/v4l2src_calls.c:
37292         * sys/v4l2/v4l2src_calls.h:
37293           rework v4l2src to work with saa1734 cards and allow mmaped buffers.
37294
37295 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37296
37297         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
37298         (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
37299         (gst_tuner_channel_changed), (gst_tuner_norm_changed),
37300         (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
37301         * gst-libs/gst/tuner/tuner.h:
37302           GObjects aren't const.
37303           Add find_by_name functions.
37304           Add checks to _changed functions.
37305         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
37306         (gst_v4l_tuner_get_norm):
37307           Fixes for above.
37308
37309 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37310
37311         * gst-libs/gst/video/video.h:
37312           Fix caps template names to be understandable.
37313           Prefix everything with GST_VIDEO.
37314         * ext/aalib/gstaasink.c:
37315         * ext/divx/gstdivxdec.c:
37316         * ext/divx/gstdivxenc.c:
37317         * ext/gdk_pixbuf/gstgdkpixbuf.c:
37318         * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
37319         * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
37320         * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
37321         * ext/libcaca/gstcacasink.c:
37322         * ext/libpng/gstpngenc.c: (raw_caps_factory):
37323         * ext/snapshot/gstsnapshot.c:
37324         * ext/swfdec/gstswfdec.c:
37325         * ext/xvid/gstxviddec.c:
37326         * ext/xvid/gstxvidenc.c:
37327         * gst/chart/gstchart.c:
37328         * gst/deinterlace/gstdeinterlace.c:
37329         * gst/effectv/gsteffectv.c:
37330         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
37331         * gst/goom/gstgoom.c:
37332         * gst/median/gstmedian.c:
37333         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
37334         (gst_monoscope_srcconnect), (gst_monoscope_chain):
37335         * gst/overlay/gstoverlay.c:
37336         * gst/smooth/gstsmooth.c:
37337         * gst/smpte/gstsmpte.c:
37338         * gst/synaesthesia/gstsynaesthesia.c:
37339         * gst/videocrop/gstvideocrop.c:
37340         * gst/videodrop/gstvideodrop.c:
37341         * gst/y4m/gsty4mencode.c:
37342         * sys/qcam/gstqcamsrc.c:
37343         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
37344           Make them work with new video.h file.
37345         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
37346         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
37347         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
37348         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
37349           Make it work with new buffer allocation system.
37350
37351 2004-01-11  Julien MOUTTE  <julien@moutte.net>
37352
37353         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
37354         pad_alloc_buffer implementation to use ->srcpad
37355         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
37356         pad_alloc_buffer implementation to use ->srcpad
37357         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):  Fixing the
37358         pad_alloc_buffer implementation to use ->srcpad
37359         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
37360         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
37361         (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
37362         a reference to everything we need.
37363         * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
37364         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
37365         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
37366         (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
37367         a reference to everything we need.
37368         * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
37369
37370 2004-01-11  David Schleef  <ds@schleef.org>
37371
37372         * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
37373         * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
37374         (gst_fenced_buffer_default_copy): Fix for rename of buffer private
37375         structure members.
37376         * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
37377         value during a resize/renegotiation.
37378         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
37379         gst_pad_alloc_buffer();
37380         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
37381         (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
37382         structure members.
37383         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
37384         Fix for rename of buffer private structure members.
37385         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
37386         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
37387         Fix for rename of buffer private structure members.
37388         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
37389         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
37390         Fix for rename of buffer private structure members.
37391
37392 2004-01-11  Arwed v. Merkatz <v.merkatz@gmx.net>
37393
37394         reviewed by: David Schleef <ds@schleef.org>
37395
37396         * gst/videofilter/Makefile.am:
37397         * gst/videofilter/gstgamma.c: Gamma correction filter.  Modified
37398         from the patch by ds to fit in with recent make_filter changes.
37399
37400 2004-01-11  Julien MOUTTE  <julien@moutte.net>
37401
37402         * configure.ac: Adding examples/switch/Makefile
37403         * examples/Makefile.am: Adding examples/switch
37404         * examples/switch/Makefile.am: Adding switcher example.
37405         * examples/switch/switcher.c: (got_eos), (idle_iterate),
37406         (switch_timer), (main): Adding an example demonstrating switch usage
37407         with 2 videotestsrc showing different patterns.
37408         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
37409         (gst_switch_init): Fixing switch with the new caps system.
37410
37411 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37412
37413         * gst-libs/gst/video/video.h:
37414           Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
37415           They should probably be like
37416           GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
37417
37418 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37419
37420         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
37421         (qtdemux_parse_trak):
37422           fix audio chunk size/timestamp calculation
37423
37424 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37425
37426         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
37427           fix SVQ3 caps
37428
37429 2004-01-11  Steve Baker  <steve@stevebaker.org>
37430
37431         * gst/effectv/gstaging.c: (gst_agingtv_get_type),
37432         (gst_agingtv_base_init), (gst_agingtv_class_init),
37433         (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
37434         (gst_agingtv_set_property), (gst_agingtv_get_property):
37435         Port agingTV to videofilter
37436
37437 2004-01-09  Julien MOUTTE <julien@moutte.net>
37438
37439         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
37440         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
37441
37442 2004-01-09  Julien MOUTTE <julien@moutte.net>
37443
37444         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
37445         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
37446         * gst-libs/gst/xoverlay/xoverlay.c:
37447         (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
37448         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
37449         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
37450         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
37451         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
37452         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
37453         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
37454         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
37455         the bufferalloc_function to replace bufferpools, fixing the XOverlay
37456         interface implementation to handle xid being 0 and fix some bugs
37457         triggered by Benjamin's testcase.
37458         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
37459         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
37460         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
37461         the bufferalloc_function to replace bufferpools, fixing the XOverlay
37462         interface implementation to handle xid being 0 and fix some bugs
37463         triggered by Benjamin's testcase.
37464
37465 2004-01-09  David Schleef  <ds@schleef.org>
37466
37467         * ext/librfb/gstrfbsrc.c:  Hacking.  Added actual decoding and
37468         mouse pointer events.  It works.
37469
37470 2004-01-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37471
37472         * ext/divx/gstdivxenc.c: (gst_divxenc_init):
37473           Use explicit caps - fix capsnego.
37474         * ext/xvid/gstxviddec.c:
37475         * ext/xvid/gstxvidenc.c:
37476           Remove macro-inside-macro which caused compile errors.
37477         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
37478           Error out if it's not a RIFF file. Else we error out without
37479           gst_element_error() which is not good...
37480
37481 2004-01-08  David Schleef  <ds@schleef.org>
37482
37483         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
37484         Fix pad_link function to handle formats that ffmpeg returns
37485         as multiple caps structures.
37486         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
37487         Only complain if source buffer is _smaller_ than expected.
37488         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
37489         (gst_videoscale_handle_src_event): Resize navigation events
37490         when passing them upstream.
37491         * gst/videotestsrc/gstvideotestsrc.c:
37492         * gst/videotestsrc/gstvideotestsrc.h:
37493         * gst/videotestsrc/videotestsrc.c:
37494         * gst/videotestsrc/videotestsrc.h:
37495         Rewrite many of the buffer painting functions to handle odd
37496         sizes (for many formats, size%4!=0 or size%8!=0).  Most have
37497         been verified to work with my video card.
37498         * testsuite/gst-lint:  Add check for elements calling
37499         gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
37500
37501 2004-01-08  David Schleef  <ds@schleef.org>
37502
37503         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
37504         (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
37505
37506 2004-01-08  Julien MOUTTE  <julien@moutte.net>
37507
37508         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
37509         configure event is not emiting the desired size signal. That fixes
37510         aspect ratio issues with gst-player.
37511
37512 2004-01-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37513
37514         * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
37515           Fix capsnego.
37516
37517 2004-01-08  Julien MOUTTE  <julien@moutte.net>
37518
37519         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
37520         public method to fire size signal.
37521
37522 2004-01-07  Julien MOUTTE  <julien@moutte.net>
37523
37524         * examples/gstplay/Makefile.am: Adding the interface library.
37525         * gst-libs/gst/play/Makefile.am: Adding the interface library.
37526         * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to         the XOverlay size signal instead of GstVideoSink.
37527         * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
37528         GST_IS_X_OVERLAY before signal connect.
37529         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
37530         Removing the have_video_size signal.
37531         * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
37532         and associated public method.
37533         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
37534         (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
37535         signal.
37536         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
37537         (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
37538         signal.
37539         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
37540         Using XOverlay public method to fire size signal.
37541
37542 2004-01-07  David Schleef  <ds@schleef.org>
37543
37544         * gst/videofilter/Makefile.am:
37545         * gst/videofilter/gstvideotemplate.c:
37546         * gst/videofilter/make_filter:
37547         Create gstvideoexample.c in a srcdir!=builddir friendly way.
37548         Convert make_filter to /bin/sh script.
37549
37550 2004-01-07  Thomas Vander Stichele  <thomas at apestaart dot org>
37551
37552         * gst/modplug/gstmodplug.cc: fix element description
37553
37554 2004-01-07  Julien MOUTTE  <julien@moutte.net>
37555
37556         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
37557         (got_video_size): Adding some new lines in g_print calls.
37558         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
37559         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
37560         (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
37561         (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
37562         (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
37563         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
37564         Complete code review, reverting some stuff i disagree with, adding
37565         some fixes : time synchronization on invalid timestamps, renegotiation
37566         of private window.
37567         * sys/ximage/ximagesink.h:
37568         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
37569         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
37570         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
37571         (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
37572         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
37573         (gst_xvimagesink_buffer_new),
37574         (gst_xvimagesink_navigation_send_event),
37575         (gst_xvimagesink_set_xwindow_id),
37576         (gst_xvimagesink_get_desired_size),
37577         (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
37578         stuff i disagree with, adding some fixes : Renegotiation of private
37579         window, implementing get_desired_size.
37580
37581 2004-01-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37582
37583         * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
37584         (gst_afsink_handle_event):
37585         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
37586         * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
37587         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
37588         * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
37589         * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
37590           Fix for instantiate-test (see core). Also remove dead code from
37591           jpegenc (which still needs fixing, but that's lower on my TODO
37592           list...).
37593         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
37594           Never return NULL as caps.
37595
37596 2004-01-07  David Schleef  <ds@schleef.org>
37597
37598         * configure.ac:
37599         * ext/Makefile.am:
37600         * ext/librfb/Makefile.am:
37601         * ext/librfb/gstrfbsrc.c:
37602         New source plugin based on librfb-0.1.  RFB (remote framebuffer)
37603         is the protocol used by VNC.
37604
37605 2004-01-07  David Schleef  <ds@schleef.org>
37606
37607         * gst/videofilter/gstvideotemplate.c:
37608         * gst/videofilter/gstvideotemplate.h:
37609         * gst/videofilter/make_filter:
37610         Merge videotemplate header into source file.
37611         * gst/effectv/Makefile.am:
37612         * gst/effectv/gsteffectv.c: (plugin_init):
37613         * gst/effectv/gstwarp.c:
37614         Make warpTV a subclass of videofilter.
37615
37616 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37617
37618         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
37619           Add guard against invalid utf-8 conversions in mad. Just in case.
37620
37621 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37622
37623         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
37624           Fix for bug shown by poisoning
37625
37626 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37627
37628         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
37629         (gst_v4lmjpegsrc_buffer_free):
37630         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
37631         (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
37632         (gst_v4lsrc_buffer_free):
37633           Fix for removed bufferpools.
37634
37635 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
37636
37637         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
37638         Fix caps negotiation.
37639
37640         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
37641         (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
37642         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
37643         (dvdnavsrc_event):
37644         * ext/mpeg2dec/gstmpeg2dec.c:
37645         * gst-libs/gst/navigation/navigation.c:
37646         (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
37647         * gst-libs/gst/navigation/navigation.h:
37648         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
37649         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
37650         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
37651         Super-simple first version of mouse and keyboard events. Clicking
37652         on a DVD menu now works, although it may not take you where you
37653         expected.
37654
37655         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
37656         * gst/videotestsrc/gstvideotestsrc.c:
37657         (gst_videotestsrc_src_fixate):
37658         These fixate functions were broken - they never actually
37659         fixated :)
37660
37661 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37662
37663         * ext/shout/gstshout.c: (gst_icecastsend_base_init),
37664         (gst_icecastsend_init):
37665           fix for new caps system.
37666         * gst-libs/gst/mixer/mixertrack.h:
37667         * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
37668           Add 'master track' flag (for tools like ACME that only want to
37669           change the main volume).
37670
37671 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
37672
37673         * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
37674         (gst_xvid_csp_to_caps):
37675         * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
37676         * ext/xvid/gstxvidenc.c:
37677         ifdef out ARGB type when it isn't available
37678         in xvidcore 1.0.0beta2
37679
37680 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37681
37682         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
37683           When we have received a new SCR right in the first buffer after
37684           a seek (so in the same cycle that handles the discont), we should
37685           handle the buffer instead of unreffing it, else we lose data.
37686
37687 2004-01-06  Iain <iain@prettypeople.org>
37688
37689         * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
37690           buffer-frames caps too.
37691
37692         * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
37693           caps that we need, don't destroy them all and rebuild them. And when
37694           creating src pads, use the src pad template rather than the sink...
37695
37696 2004-01-05  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37697
37698         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
37699           Add pad to element *after* setting functions such as event handler.
37700           Without this, the scheduler (opt) will link pads, set the event
37701           handler from the default event function (dispatcher in gstpad.c)
37702           and *after* that, we will set our own event function, which will
37703           thus never be used (and thus mpegdemux doesn't handle events).
37704
37705 2004-01-04  David Schleef  <ds@schleef.org>
37706
37707         Fix the fixate functions to handle new prototype:
37708         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
37709         * gst/videotestsrc/gstvideotestsrc.c:
37710         (gst_videotestsrc_src_fixate):
37711         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
37712         * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
37713         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
37714
37715 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37716
37717         * sys/ximage/ximagesink.h:
37718         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
37719         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
37720         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
37721         (gst_ximagesink_xoverlay_init):
37722           assorted fixes to make (re)embedding work
37723         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
37724         (gst_ximagesink_get_desired_size):
37725           implement desired size additions to XOverlay
37726
37727 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37728
37729         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
37730         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
37731         (gst_x_overlay_got_desired_size):
37732         * gst-libs/gst/xoverlay/xoverlay.h:
37733           Add optional "desired size" signal and querying.
37734
37735 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37736
37737         * gst/matroska/matroska-demux.c:
37738         (gst_matroska_demux_parse_blockgroup):
37739           Fix EBML-laced block parsing. Diffs are relative to previous
37740           lace, not the first lace. Thanks to Mosu from the Matroska
37741           team for detecting this.
37742         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
37743         (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
37744         (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
37745         (gst_wavparse_change_state):
37746         * gst/wavparse/gstwavparse.h:
37747           Quickfix for capsnego.
37748
37749 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37750
37751         * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
37752           Fix indenting, fix pad creation.
37753
37754 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37755
37756         * ext/xvid/gstxviddec.c: (gst_xviddec_init),
37757         (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
37758         (gst_xviddec_sink_link):
37759           Implement src_getcaps() so proper size caps is negotiated.
37760
37761 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37762
37763         * ext/flac/gstflacdec.c: (gst_flacdec_loop):
37764           Finish flac decoder on EOS. See #116178.
37765
37766 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37767
37768         * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
37769         (gst_matroska_demux_add_stream):
37770         * gst/matroska/matroska-ids.h:
37771           Add getcaps() function to fix capsnego...
37772
37773 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37774
37775         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
37776         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
37777         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
37778           Fix more integer overflows. Again, see #126967.
37779
37780 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37781
37782         * ext/mpeg2dec/gstmpeg2dec.c:
37783           Add support for mpeg2dec-0.4.0 (released two weeks ago). See
37784           #130416.
37785
37786 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37787
37788         * configure.ac:
37789         * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
37790         (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
37791         * ext/xvid/gstxvid.h:
37792         * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
37793         (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
37794         (gst_xviddec_src_link), (gst_xviddec_sink_link),
37795         (gst_xviddec_change_state):
37796         * ext/xvid/gstxviddec.h:
37797         * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
37798         (gst_xvidenc_base_init), (gst_xvidenc_class_init),
37799         (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
37800         (gst_xvidenc_link), (gst_xvidenc_set_property),
37801         (gst_xvidenc_get_property), (gst_xvidenc_change_state):
37802         * ext/xvid/gstxvidenc.h:
37803           Update xvid plugin to latest xvid (1.0.0-beta3) API.
37804
37805 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37806
37807         * gst/rtp/rtp-packet.c:
37808           Add sys/types.h include, since OS X doesn't define in_addr_t
37809           in netinet/in.h, like it does on Linux (see #129600).
37810
37811 2004-01-03  Thomas Canty <tommydal@optushome.com.au>
37812
37813         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
37814
37815         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
37816           Correct logic of dispose function (see #129306).
37817
37818 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37819
37820         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
37821         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
37822         (gst_mpeg_parse_init):
37823         * gst/mpegstream/gstmpegparse.h:
37824           Remove clock (which was never provided, i.e. dead code), and
37825           also fix integer overflows at high PTS values (see #126967).
37826
37827 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37828
37829         * ext/flac/gstflacdec.c:
37830         * ext/libpng/gstpngenc.h:
37831         * ext/mikmod/gstmikmod.h:
37832           OS X fixes (see #126628).
37833
37834 2004-01-02  David Schleef  <ds@schleef.org>
37835
37836         * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
37837         (gst_alsa_src_base_init): Remove bogus "src" request pad.
37838         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
37839         (gst_mpeg_parse_class_init): Move pad template registration
37840         to class_init, since the derived class (mpegdemux) doesn't
37841         want them.
37842
37843 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37844
37845         * sys/ximage/Makefile.am:
37846         * sys/xvideo/Makefile.am:
37847         * sys/xvimage/Makefile.am:
37848           Move interface libs from LDFLAGS to LIBADD, fix relocation errors
37849           after installation (see #127664).
37850
37851 2004-01-02  David Schleef  <ds@schleef.org>
37852
37853         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
37854         (gst_ffmpegenc_connect):  Negotiation fixes.
37855         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
37856         Remove inappropriate gst_caps_free().
37857         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
37858         Reenable Ronald's internal resize code, since the core handles
37859         it correctly now.
37860
37861 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37862
37863         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
37864         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
37865         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
37866           Fix pad template stuff.
37867
37868 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37869
37870         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
37871         * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
37872           fix signed integer reading/writing.
37873
37874 2004-01-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37875
37876         * ext/alsa/README:
37877           Remove outdated document
37878
37879 2004-01-03  Jan Schmidt  <thaytan@mad.scientist.com>
37880
37881         * gst/cutter/gstcutter.c: (gst_cutter_init):
37882           src pad was being created twice - oops.
37883
37884 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37885
37886         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
37887           Comment out internal resize. It doesn't handle the resulting
37888           XEvent internally, does another try_set_caps() which leads to
37889           a really nice loop.
37890           Real fix will come when Julien and Dave are awake. ;).
37891
37892 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37893
37894         * ext/mpeg2enc/gstmpeg2enc.cc:
37895           fix const/nonconst compile issue.
37896
37897 2004-01-02  David Schleef  <ds@schleef.org>
37898
37899         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
37900         (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
37901         Add fixate function and a check for bad formats.
37902
37903 2004-01-01  David Schleef  <ds@schleef.org>
37904
37905         Negotiation fixes:
37906         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
37907         (gst_audiofilter_init):
37908         * gst/debug/efence.c: (gst_efence_init):
37909         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
37910         (gst_deinterlace_init):
37911         * gst/volume/gstvolume.c: (volume_connect):
37912
37913 2004-01-01  David Schleef  <ds@schleef.org>
37914
37915         Convert elements to use gst_pad_use_explicit_caps() where
37916         appropriate:
37917         * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
37918         * ext/audiofile/gstafparse.c: (gst_afparse_init),
37919         (gst_afparse_open_file):
37920         * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
37921         (gst_afsrc_open_file):
37922         * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
37923         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
37924         (gst_ffmpegdec_chain):
37925         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
37926         * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
37927         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
37928         (gst_gdk_pixbuf_chain):
37929         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
37930         (gst_jpegdec_chain):
37931         * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
37932         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
37933         (gst_mikmod_negotiate):
37934         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
37935         (gst_mpeg2dec_negotiate_format):
37936         * ext/mpeg2enc/gstmpeg2enc.cc:
37937         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
37938         * ext/speex/gstspeexdec.c: (gst_speexdec_init),
37939         (gst_speexdec_sinkconnect):
37940         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
37941         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
37942         (gst_vorbisfile_new_link):
37943         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
37944         (gst_ac3parse_chain):
37945         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
37946         (gst_asf_demux_setup_pad):
37947         * gst/auparse/gstauparse.c: (gst_auparse_init),
37948         (gst_auparse_chain):
37949         * gst/id3/gstid3types.c: (gst_id3types_loop):
37950         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
37951         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
37952         (mp1videoparse_parse_seq):
37953         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
37954         (bpf_from_header):
37955         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
37956         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
37957         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
37958         (gst_mpeg_parse_send_data):
37959         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
37960         (gst_qtdemux_add_stream):
37961         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
37962         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
37963         (gst_wavparse_parse_fmt):
37964
37965 2004-01-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37966
37967         * configure.ac:
37968           Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
37969           1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
37970           it therefore uses the wrong include paths. Too bad... Note
37971           that 1.6.1.93 is not release yet. ;).
37972           Also add a check for mplex, which is now using the lib'ified
37973           mplex from mjpegtools, too.
37974         * ext/ffmpeg/gstffmpegcodecmap.c:
37975           Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
37976           issues. I don't think ffmpeg handles 3ivx correctly, so this
37977           probably won't work. But it won't hurt either.
37978         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
37979         (gst_ffmpegdec_chain):
37980         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
37981         (gst_ffmpegenc_chain_audio):
37982           Fix memleak in audio encoding. Close codec if open fails, this
37983           calls the cleanup routines so we can re-use the context.
37984         * ext/mpeg2enc/gstmpeg2enc.cc:
37985           Fix pad template names/types, fix memory issue with getcaps().
37986         * ext/mpeg2enc/gstmpeg2encoder.cc:
37987         * ext/mpeg2enc/gstmpeg2encoder.hh:
37988           Fix compile issue with new caps system (const thingy).
37989         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
37990         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
37991           We read a first frame right on initing, so that we have a caps
37992           when we init the output. This caps is cached in padprivate and
37993           read as first frame.
37994         * ext/mplex/Makefile.am:
37995         * ext/mplex/gstmplex.cc:
37996         * ext/mplex/gstmplex.h:
37997         * ext/mplex/gstmplex.hh:
37998         * ext/mplex/gstmplexibitstream.cc:
37999         * ext/mplex/gstmplexibitstream.hh:
38000         * ext/mplex/gstmplexjob.cc:
38001         * ext/mplex/gstmplexjob.hh:
38002         * ext/mplex/gstmplexoutputstream.cc:
38003         * ext/mplex/gstmplexoutputstream.hh:
38004           We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
38005           had issues, didn't do capsnego, supported only a subset of the
38006           mplex features and required a mplex fork in our local CVS. Plus
38007           that it worked agaist a very old mplex version. Rewriting was
38008           faster than updating it.
38009         * gst-libs/ext/Makefile.am:
38010         * gst-libs/ext/mplex/INSTRUCT:
38011         * gst-libs/ext/mplex/Makefile.am:
38012         * gst-libs/ext/mplex/README:
38013         * gst-libs/ext/mplex/TODO:
38014         * gst-libs/ext/mplex/ac3strm_in.cc:
38015         * gst-libs/ext/mplex/audiostrm.hh:
38016         * gst-libs/ext/mplex/audiostrm_out.cc:
38017         * gst-libs/ext/mplex/aunit.hh:
38018         * gst-libs/ext/mplex/bits.cc:
38019         * gst-libs/ext/mplex/bits.hh:
38020         * gst-libs/ext/mplex/buffer.cc:
38021         * gst-libs/ext/mplex/buffer.hh:
38022         * gst-libs/ext/mplex/fastintfns.h:
38023         * gst-libs/ext/mplex/format_codes.h:
38024         * gst-libs/ext/mplex/inputstrm.cc:
38025         * gst-libs/ext/mplex/inputstrm.hh:
38026         * gst-libs/ext/mplex/lpcmstrm_in.cc:
38027         * gst-libs/ext/mplex/mjpeg_logging.cc:
38028         * gst-libs/ext/mplex/mjpeg_logging.h:
38029         * gst-libs/ext/mplex/mjpeg_types.h:
38030         * gst-libs/ext/mplex/mpastrm_in.cc:
38031         * gst-libs/ext/mplex/mpegconsts.cc:
38032         * gst-libs/ext/mplex/mpegconsts.h:
38033         * gst-libs/ext/mplex/mplexconsts.hh:
38034         * gst-libs/ext/mplex/multplex.cc:
38035         * gst-libs/ext/mplex/outputstream.hh:
38036         * gst-libs/ext/mplex/padstrm.cc:
38037         * gst-libs/ext/mplex/padstrm.hh:
38038         * gst-libs/ext/mplex/stillsstream.cc:
38039         * gst-libs/ext/mplex/stillsstream.hh:
38040         * gst-libs/ext/mplex/systems.cc:
38041         * gst-libs/ext/mplex/systems.hh:
38042         * gst-libs/ext/mplex/vector.cc:
38043         * gst-libs/ext/mplex/vector.hh:
38044         * gst-libs/ext/mplex/videostrm.hh:
38045         * gst-libs/ext/mplex/videostrm_in.cc:
38046         * gst-libs/ext/mplex/videostrm_out.cc:
38047         * gst-libs/ext/mplex/yuv4mpeg.cc:
38048         * gst-libs/ext/mplex/yuv4mpeg.h:
38049         * gst-libs/ext/mplex/yuv4mpeg_intern.h:
38050         * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
38051           We don't fork mjpegtools' mplex in our CVS anymore.
38052         * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
38053         (gst_avi_demux_add_stream):
38054         * gst/avi/gstavidemux.h:
38055           Add getcaps() function for proper caps nego. This makes some
38056           parts of AVI playback/reading work.
38057         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
38058           Resize window on new capsnego. This is probably wrong, but
38059           I'm still committing it because with current capsnego, the
38060           first successfull capsnego is auto-fixated, therefore rounded
38061           down to the lowest values in the caps. this results in a 16x16
38062           XWindow that is not reized when real capsnego finishes.
38063           Dave, I see more cases of this, do you know a proper solution?
38064         * tools/gst-launch-ext.in:
38065           Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
38066
38067 2003-12-31  David Schleef  <ds@schleef.org>
38068
38069         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
38070         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
38071           Change gst_pad_proxy_link() to gst_pad_try_set_caps()
38072
38073 2003-12-30  David Schleef  <ds@schleef.org>
38074
38075         * ext/ffmpeg/gstffmpegcolorspace.c:
38076         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
38077         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
38078         (gst_ffmpegcsp_chain): Negotiation fixes
38079         * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
38080         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
38081         (gst_audio_convert_link), (gst_audio_convert_channels):
38082         * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
38083         (gst_audioscale_link), (gst_audioscale_get_buffer),
38084         (gst_audioscale_chain): Negotiation fixes
38085         * gst/audioscale/gstaudioscale.h:
38086         * gst/videofilter/gstvideofilter.c:
38087         (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
38088         (gst_videofilter_link), (gst_videofilter_init),
38089         (gst_videofilter_set_output_size), (gst_videofilter_setup),
38090         (gst_videofilter_find_format_by_structure):
38091         * gst/videofilter/gstvideofilter.h: Negotiation fixes
38092         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
38093         (gst_videoscale_link):
38094         * gst/videoscale/videoscale.c: (videoscale_get_structure),
38095         (videoscale_find_by_structure), (gst_videoscale_setup):
38096         * gst/videoscale/videoscale.h: Negotiation fixes
38097         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
38098         (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
38099         function, restrict resizing to a multiple of 4 (hack until
38100         everyone supports odd sizes correctly).
38101
38102 2003-12-29  Colin Walters  <walters@verbum.org>
38103
38104         * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
38105         signed.
38106
38107 2003-12-30  Jan Schmidt <thaytan@mad.scientist.com>
38108
38109         * ext/sndfile/gstsf.c: (gst_sf_loop):
38110           Fix warning about discarding const qualifier
38111
38112 2003-12-27  Jeremy Simon   <jesimon@libertysurf.fr>
38113
38114         * gst/cutter/gstcutter.c:
38115         * gst/videoscale/gstvideoscale.c:
38116         * gst/volenv/gstvolenv.c:
38117         * gst-libs/gst/audio/audio.c:
38118         * gst-libs/gst/video/video.c:
38119           Fix warnings
38120
38121 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38122
38123         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
38124           Don't send ALSA debugging to stderr.
38125         * ext/alsa/gstalsa.h:
38126           Use GST_WARNING instead of g_warning when ALSA functions fail.
38127
38128 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38129
38130         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
38131           Free XVAdapterInfo correctly.
38132
38133 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38134
38135         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
38136         (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
38137           Make id3tag use correct caps nego.
38138
38139 2003-12-27  Amaury Jacquot <sxpert@esitcom.org>
38140
38141         * ext/ivorbis/vorbis.c:
38142         * ext/ivorbis/vorbisenc.h:
38143         * ext/ivorbis/vorbisfile.c:
38144           Modify so that it uses the new caps things
38145
38146 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38147
38148         * testsuite/spider/spider1.c: (main):
38149         * testsuite/spider/spider2.c: (main):
38150         * testsuite/spider/spider3.c: (main):
38151           Make tests compile again. They probably don't work.
38152
38153 2003-12-24  Colin Walters  <walters@verbum.org>
38154
38155         * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
38156         we can't fixate the caps anymore.
38157
38158 2003-12-23  David Schleef  <ds@schleef.org>
38159
38160         * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
38161         * sys/oss/gstosssink.c: (gst_osssink_init),
38162         (gst_osssink_sink_fixate): Add fixate function.
38163
38164 2003-12-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38165
38166         * ext/ffmpeg/gstffmpegcodecmap.c:
38167         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
38168         (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
38169         (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
38170         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
38171         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
38172         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
38173         (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
38174           fix typo in RGB masks, and move back to "old" colorspace
38175           capsnego code until whoever wrote this new crap has actually
38176           tested it so that it works.
38177           And yes, this works, keep it that way please.
38178
38179 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38180
38181         * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
38182         (gst_divxdec_init), (gst_divxdec_negotiate):
38183         * ext/divx/gstdivxdec.h:
38184         * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
38185         (gst_divxenc_init):
38186         * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
38187         (gst_faac_sinkconnect), (gst_faac_srcconnect):
38188         * ext/mpeg2enc/gstmpeg2enc.cc:
38189         * ext/mpeg2enc/gstmpeg2encoder.cc:
38190         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
38191         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
38192         (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
38193         * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
38194         (dxr3spusink_init):
38195         * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
38196         (dxr3videosink_init):
38197           Fix caps breakage after Dave's caps branch merge.
38198
38199 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38200
38201         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
38202           Fix for 24bpp display.
38203
38204 2003-12-23  Colin Walters  <walters@verbum.org>
38205
38206         * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
38207         a GnomeVFSHandle directly.
38208
38209 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38210
38211         * gst/volume/Makefile.am:
38212         * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
38213         (volume_base_init), (volume_init):
38214           Reenable volume element and fix to work with new caps stuff.
38215           Rhythmbox needs this.
38216
38217 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38218
38219         * gst/qtdemux/qtdemux.c: (plugin_init):
38220           qtdemux requires bytestream
38221
38222 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38223
38224         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
38225           Fix remaining caps handling errors due to CAPS merge.
38226
38227 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38228
38229         * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
38230         (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
38231         (gst_faad_srcconnect):
38232           Port to new caps system.
38233
38234 2003-12-21  Julien MOUTTE  <julien@moutte.net>
38235
38236         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
38237         (got_video_size), (main): using g_print instead of g_message.
38238         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
38239         signal which was not emitted because of "switch" element added to the
38240         bin but not connected. (Removing from the bin temporarily)
38241
38242 2003-12-21  Julien MOUTTE  <julien@moutte.net>
38243
38244         * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
38245         find X development files. I don't understand the previous tests and
38246         they fail on my debian/ppc unstable. This one works.
38247         * examples/gstplay/player.c: (main): Set the pipeline to READY before
38248         exiting.
38249         * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
38250         (gst_play_set_video_sink), (gst_play_set_audio_sink),
38251         (gst_play_set_visualization): Add some safety checks in set_ methods
38252         and state_change. This was throwing some ugly CRITICAL messages when
38253         pipeline was getting disposed and casts were failing.
38254
38255 2003-12-21  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38256
38257         * configure.ac:
38258           Improve mpeg2enc detection. This is for distributions that do
38259           ship mjpegtools, but without mpeg2enc. Also does object check
38260           for might there ever be ABI incompatibility.
38261         * ext/mpeg2enc/gstmpeg2enc.cc:
38262           Add Andrew as second maintainer (he's helping me), and also add
38263           an error if no caps was set. This happens if I pull before capsnego
38264           and that's something I should solve sometime else.
38265         * gst/matroska/matroska-demux.c:
38266         (gst_matroska_demux_parse_blockgroup):
38267           Fix time parsing.
38268         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
38269         (gst_matroska_mux_track_header):
38270           Add caps to templates.
38271         * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
38272           Add mpegversion=1 to prevent confusion with MPEG/AAC.
38273         * gst/mpegstream/gstmpegdemux.c:
38274           Remove layer since it causes warnings about unfixed caps.
38275         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
38276           Fix obvious typo (we error out if caps were set, we should of
38277           course error out if *no* caps were set).
38278         * sys/oss/gstosselement.c: (gst_osselement_convert):
38279           Fix format conversion, we confused bits/bytes.
38280         * sys/oss/gstosselement.h:
38281           Improve documentation for 'bps'.
38282         * sys/v4l/TODO:
38283           Remove stuff about plugins that need removing - this was done
38284           ages ago.
38285         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
38286         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
38287         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
38288         (gst_v4lsrc_src_query):
38289         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
38290         (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
38291           Add get_query_types(), get_formats() and query() functions.
38292
38293 2003-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
38294
38295         * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
38296           * moved CVS to freedesktop.org