gst/playback/gstplaybin2.c: Remove stream-info, we going for something easier.
[platform/upstream/gstreamer.git] / ChangeLog
1 2008-02-01  Wim Taymans  <wim.taymans@collabora.co.uk>
2
3         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
4         (get_group), (get_n_pads), (gst_play_bin_get_property),
5         (pad_added_cb), (no_more_pads_cb), (perform_eos),
6         (autoplug_select_cb), (deactivate_group):
7         Remove stream-info, we going for something easier.
8         Refactor getting the current group.
9         Implement getting the number of audio/video/text streams.
10
11         * gst/playback/gststreamselector.c:
12         (gst_stream_selector_class_init), (gst_stream_selector_init),
13         (gst_stream_selector_get_property),
14         (gst_stream_selector_request_new_pad),
15         (gst_stream_selector_release_pad):
16         * gst/playback/gststreamselector.h:
17         Add property for number of pads.
18
19         * tests/examples/seek/seek.c: (set_scale), (update_flag),
20         (vis_toggle_cb), (audio_toggle_cb), (video_toggle_cb),
21         (text_toggle_cb), (update_streams), (msg_async_done),
22         (msg_state_changed), (main):
23         Block slider callback when updating the slider position.
24         Add gui elements for controlling playbin2.
25         Add callback for async_done that updates position/duration.
26
27 2008-02-01  Stefan Kost  <ensonic@users.sf.net>
28
29         * docs/plugins/Makefile.am:
30         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
31         * docs/plugins/gst-plugins-base-plugins-sections.txt:
32         * docs/plugins/gst-plugins-base-plugins.hierarchy:
33         * docs/plugins/gst-plugins-base-plugins.interfaces:
34         * docs/plugins/gst-plugins-base-plugins.prerequisites:
35           First round of plugin docs cleansups.
36
37         * docs/plugins/inspect/plugin-adder.xml:
38         * docs/plugins/inspect/plugin-alsa.xml:
39         * docs/plugins/inspect/plugin-audioconvert.xml:
40         * docs/plugins/inspect/plugin-audiorate.xml:
41         * docs/plugins/inspect/plugin-audioresample.xml:
42         * docs/plugins/inspect/plugin-audiotestsrc.xml:
43         * docs/plugins/inspect/plugin-cdparanoia.xml:
44         * docs/plugins/inspect/plugin-decodebin.xml:
45         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
46         * docs/plugins/inspect/plugin-gdp.xml:
47         * docs/plugins/inspect/plugin-gnomevfs.xml:
48         * docs/plugins/inspect/plugin-libvisual.xml:
49         * docs/plugins/inspect/plugin-ogg.xml:
50         * docs/plugins/inspect/plugin-pango.xml:
51         * docs/plugins/inspect/plugin-subparse.xml:
52         * docs/plugins/inspect/plugin-tcp.xml:
53         * docs/plugins/inspect/plugin-theora.xml:
54         * docs/plugins/inspect/plugin-typefindfunctions.xml:
55         * docs/plugins/inspect/plugin-video4linux.xml:
56         * docs/plugins/inspect/plugin-videorate.xml:
57         * docs/plugins/inspect/plugin-videoscale.xml:
58         * docs/plugins/inspect/plugin-videotestsrc.xml:
59         * docs/plugins/inspect/plugin-volume.xml:
60         * docs/plugins/inspect/plugin-vorbis.xml:
61         * docs/plugins/inspect/plugin-ximagesink.xml:
62         * docs/plugins/inspect/plugin-xvimagesink.xml:
63           Regenerate.
64
65         * ext/ogg/Makefile.am:
66         * ext/ogg/gstoggmux.c:
67         * ext/ogg/gstoggmux.h:
68           Add header for oggmux. the c-file needs a doc blob still.
69
70 2008-02-01  Wim Taymans  <wim.taymans@collabora.co.uk>
71
72         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
73
74         * gst-libs/gst/rtp/gstrtpbuffer.c:
75         (gst_rtp_buffer_set_extension_data):
76         * gst-libs/gst/rtp/gstrtpbuffer.h:
77         * tests/check/libs/rtp.c: (GST_START_TEST), (rtp_suite):
78         Add gst_rtp_buffer_set_extension_data() 
79         Add a unit test for this addition. Fixes #511478.
80         API: GstRTPBuffer:gst_rtp_buffer_set_extension_data()
81
82 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
83
84         * configure.ac:
85         Back to CVS
86
87 === release 0.10.17 ===
88
89 2008-01-30  Jan Schmidt <jan.schmidt@sun.com>
90
91         * configure.ac:
92           releasing 0.10.17, "Peanut Butter and Jelly"
93
94 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
95
96         * gst-libs/gst/interfaces/mixeroptions.c:
97         * gst-libs/gst/interfaces/mixertrack.c:
98         Also remove the conditional registration of the signals
99         that disappeared with the ABI change in 0.10.14
100
101 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
102
103         * gst-libs/gst/rtsp/gstrtspconnection.c:
104         Revert patch to gstrtspconnection.c for brown paper bag
105         release of -base. Re-opens: #511825
106
107 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
108
109         * gst-libs/gst/interfaces/mixeroptions.h:
110         * gst-libs/gst/interfaces/mixertrack.h:
111         Change the way these deprecated function pointers are removed
112         so that the compiled ABI is unconditionally smaller. This 
113         sets in stone an ABI break that actually occurred when the
114         things were deprecated in 0.10.14, which seems to be the best
115         fix as the only known users are oss-mixer and sunaudio-mixer in 
116         gst-plugins-good.
117         Fixes: #513018
118
119 2008-01-30  Tim-Philipp Müller  <tim at centricular dot net>
120
121         * win32/common/libgstpbutils.def:
122           Export the two new _get_type() functions which are needed
123           by the python bindings.
124
125 2008-01-29  Sebastian Dröge  <slomo@circular-chaos.org>
126
127         * gst-libs/gst/rtsp/gstrtspconnection.c: (add_date_header):
128         Cast glong to time_t as time_t might have a different type on
129         other platforms, like FreeBSD, and we get a compiler warning
130         otherwise. Fixes bug #511825.
131
132 2008-01-29  Sebastian Dröge  <slomo@circular-chaos.org>
133
134         * gst-libs/gst/audio/gstaudiofilter.c:
135         (gst_audio_filter_class_init):
136         Initialize the GstRingerBuffer class to get it's debug category
137         initialized. gst_ring_buffer_parse_caps() uses the ringbuffer debug
138         category and otherwise we get some g_critical(). Fixes bug #512334.
139
140 2008-01-28  Jan Schmidt  <jan.schmidt@sun.com>
141
142         * configure.ac:
143         Back to CVS
144
145 === release 0.10.16 ===
146
147 2008-01-28  Jan Schmidt <jan.schmidt@sun.com>
148
149         * configure.ac:
150           releasing 0.10.16, "Scheduled Interruption"
151
152 2008-01-22  Wim Taymans  <wim.taymans@collabora.co.uk>
153
154         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
155
156         * gst-libs/gst/rtp/gstrtpbuffer.c:
157         (gst_rtp_buffer_get_extension_data):
158         Fix typos and wrong extension check. Fixes #511274.
159
160 2008-01-18  Jan Schmidt  <jan.schmidt@sun.com>
161
162         * po/sk.po:
163         Oops - add new sk.po mentioned in the LINGUAS I just committed
164
165 2008-01-17  Jan Schmidt  <jan.schmidt@sun.com>
166
167         * po/LINGUAS:
168         Add ca translation to the disted list.
169
170         * win32/vs6/libgstsdp.dsp:
171         Convert line endings to CRLF
172
173 2008-01-17  Sebastien Moutte <sebastien@moutte.net>
174
175         * win32/MANIFEST:
176         Add win32/vs6/libgstrtsp.dsp to MANIFEST
177
178 2008-01-14  Jan Schmidt  <jan.schmidt@sun.com>
179
180         * win32/common/libgstsdp.def:
181         * win32/common/libgstvideo.def:
182         Add new API declarations
183
184 2008-01-14  Jan Schmidt  <jan.schmidt@sun.com>
185
186         * ext/theora/gsttheoradec.h:
187         * ext/theora/gsttheoraparse.h:
188         * ext/theora/theoradec.c:
189         * ext/theora/theoraparse.c:
190         Take a 2nd stab at handling libtheora granulepos changes in the decoder
191         and parser by inspecting the bitstream version of the incoming data.
192
193 2008-01-14  Sebastian Dröge  <slomo@circular-chaos.org>
194
195         * configure.ac:
196         * pkgconfig/Makefile.am:
197         * pkgconfig/gstreamer-audio-uninstalled.pc.in:
198         * pkgconfig/gstreamer-audio.pc.in:
199         * pkgconfig/gstreamer-cdda-uninstalled.pc.in:
200         * pkgconfig/gstreamer-cdda.pc.in:
201         * pkgconfig/gstreamer-fft-uninstalled.pc.in:
202         * pkgconfig/gstreamer-fft.pc.in:
203         * pkgconfig/gstreamer-floatcast-uninstalled.pc.in:
204         * pkgconfig/gstreamer-floatcast.pc.in:
205         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
206         * pkgconfig/gstreamer-interfaces.pc.in:
207         * pkgconfig/gstreamer-netbuffer-uninstalled.pc.in:
208         * pkgconfig/gstreamer-netbuffer.pc.in:
209         * pkgconfig/gstreamer-pbutils-uninstalled.pc.in:
210         * pkgconfig/gstreamer-pbutils.pc.in:
211         * pkgconfig/gstreamer-riff-uninstalled.pc.in:
212         * pkgconfig/gstreamer-riff.pc.in:
213         * pkgconfig/gstreamer-rtp-uninstalled.pc.in:
214         * pkgconfig/gstreamer-rtp.pc.in:
215         * pkgconfig/gstreamer-rtsp-uninstalled.pc.in:
216         * pkgconfig/gstreamer-rtsp.pc.in:
217         * pkgconfig/gstreamer-sdp-uninstalled.pc.in:
218         * pkgconfig/gstreamer-sdp.pc.in:
219         * pkgconfig/gstreamer-tag-uninstalled.pc.in:
220         * pkgconfig/gstreamer-tag.pc.in:
221         * pkgconfig/gstreamer-video-uninstalled.pc.in:
222         * pkgconfig/gstreamer-video.pc.in:
223         Provide one pkg-config file for every gst-plugins-base library.
224         This makes linking to those libraries much more intuitive and
225         provides standard pkg-config behaviour for them. Fixes bug #499697.
226
227 2008-01-13  David Schleef  <ds@schleef.org>
228
229         * gst/videoscale/vs_4tap.c:
230           Fix valgrind error on 4tap scaling method.
231
232 2008-01-13  Sebastien Moutte  <sebastien@moutte.net>
233
234         * gst-libs/gst/sdp/gstsdpmessage.c: (is_multicast_address):
235         Include Winsock2.h for VS6 and use a different way initialize
236         hints structure so it can build with VS6.
237         * win32/MANIFEST:
238         * win32/vs6/libgstsdp.dsp:
239         * win32/common/libgstsdp.def:
240         Add new files for libgstsdp.
241         * win32/vs6/grammar.dsp:
242         Copy pbutils-enumtypes* from win32/common to pbutils sources folder.
243         * win32/vs6/gst_plugins_base.dsw:
244         * win32/vs6/libgstdecodebin.dsp:
245         * win32/vs6/libgstdecodebin2.dsp:
246         * win32/vs6/libgstplaybin.dsp:
247         * win32/vs6/libgstvolume.dsp:
248         Add new dependencies to the link list.
249
250 2008-01-13  Julien Moutte  <julien@fluendo.com>
251
252         * win32/common/config.h:
253         * win32/common/gstrtsp-enumtypes.c: (gst_rtsp_result_get_type),
254         (gst_rtsp_event_get_type), (gst_rtsp_family_get_type),
255         (gst_rtsp_state_get_type), (gst_rtsp_version_get_type),
256         (gst_rtsp_method_get_type), (gst_rtsp_auth_method_get_type),
257         (gst_rtsp_header_field_get_type), (gst_rtsp_status_code_get_type):
258         * win32/common/interfaces-enumtypes.c:
259         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
260         (gst_mixer_message_type_get_type), (gst_mixer_flags_get_type),
261         (gst_mixer_track_flags_get_type),
262         (gst_tuner_channel_flags_get_type):
263         * win32/common/multichannel-enumtypes.c:
264         (gst_audio_channel_position_get_type):
265         * win32/common/pbutils-enumtypes.c:
266         (gst_install_plugins_return_get_type):
267         * win32/common/pbutils-enumtypes.h: Update/Add generated files
268         in the win32 build directory.
269
270 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
271
272         * tests/check/Makefile.am:
273         Fix CFLAGS to also pull in the gstcheck cflags from AM_CFLAGS.
274
275         * tests/check/elements/audiorate.c: (do_perfect_stream_test):
276         * tests/check/elements/playbin.c:
277         * tests/check/libs/mixer.c: (test_element_interface_supported),
278         (gst_implements_interface_init):
279         * tests/check/libs/rtp.c: (GST_START_TEST):
280         Fix various assignment type mismatches.
281
282 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
283
284         * configure.ac:
285         * gst-libs/gst/rtsp/Makefile.am:
286         Add test to see if hstrerror is available or if we need libresolv
287         (Solaris) for it, then use it in libgstrtsp.
288
289 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
290
291         * gst-libs/gst/tag/Makefile.am:
292         Fix include path order
293
294 2008-01-11  Edward Hervey  <edward.hervey@collabora.co.uk>
295
296         * gst-libs/gst/pbutils/install-plugins.c:
297         (gst_install_plugins_context_copy),
298         (gst_install_plugins_context_get_type):
299         * gst-libs/gst/pbutils/install-plugins.h:
300         Add GBoxed GType for GstInstallPluginsContext, this eases the wrapping
301         for bindings.
302
303 2008-01-11  Michael Smith <msmith@fluendo.com>
304
305         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
306         (_theora_granule_frame), (_theora_granule_start_time),
307         (theora_dec_sink_convert), (theora_dec_decode_buffer):
308           Adapt for post-alpha meaning of granulepos, when we
309           have a newer version of libtheora.
310         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
311         (theora_enc_get_ogg_packet_end_time), (theora_enc_sink_event),
312         (theora_enc_is_discontinuous), (theora_enc_chain):
313           Likewise.
314         * tests/check/Makefile.am:
315           Link libtheora into theoraenc test so we can check which version of
316           libtheora we're testing against.
317         * tests/check/pipelines/theoraenc.c: (check_libtheora),
318         (check_buffer_granulepos),
319         (check_buffer_granulepos_from_starttime), (GST_START_TEST),
320         (theoraenc_suite):
321           Adapt tests to check the values that are now defined for theora; make
322           the tests backwards-adapt the passed values if we're running against an
323           old libtheora.
324           Fixes #497964
325
326 2008-01-10  Tim-Philipp Müller  <tim at centricular dot net>
327
328         * gst-libs/gst/audio/gstbaseaudiosink.c:
329           (gst_base_audio_sink_class_init):
330         * gst-libs/gst/audio/gstbaseaudiosrc.c:
331           (gst_base_audio_src_class_init):
332           Ref audio clock class from a thread-safe context to make sure
333           we're not bit by GObjects lack of thread-safety here (#349410),
334            however unlikely that may be in practice.
335
336 2008-01-10  Sebastian Dröge  <slomo@circular-chaos.org>
337
338         * autogen.sh:
339           Add -Wno-portability to the automake parameters to stop warnings
340           about GNU make extensions being used. We require GNU make in almost
341           every Makefile anyway.
342           
343         * configure.ac:
344           Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o
345           at the same time is required for per target flags.
346
347 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
348
349         * gst-libs/gst/tag/gsttagdemux.c: (gst_tag_demux_pull_start_tag):
350           Post an error message if we can't pull as many bytes as we need
351           for the tag. This makes sure the user gets to see a proper error
352           message if a file with a partial ID3 tag is fed to decodebin, and
353           not a 'no ID3 tag demuxer' error, which would be confusing
354           (see #508138).
355
356 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
357
358         * gst-libs/gst/pbutils/descriptions.c: (formats):
359           Add description strings for ID3, APE, and ICY tags.
360
361 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
362
363         * gst/playback/gstdecodebin.c: (try_to_link_1):
364           Make sure we error out correctly if we can't activate one of
365           the elements we've added.  Fixes #508138.
366           
367 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
368
369         Patch by: Bastien Nocera <hadess at hadess net>
370
371         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
372           (check_if_volumes_are_the_same), (gst_alsa_mixer_set_volume):
373           Use snd_mixer_selem_set_{playback|capture}_volume_all() if
374           the volume is the same for all channels. This works around
375           some problem in alsa that leaves us with inconsistent state
376           for some reason (#486840).
377
378 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
379
380         Patch by: Jerone Young <jerone at gmail com>
381
382         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer):
383           If there's no mixer track by the name of 'Master' or 'Front',
384           check if there's one called 'PCM' before trying the generic
385           fallback logic (fixes #506928, where we pick 'Mic' as master
386           track for the AD1984 card in a Thinkpad T61/X61 laptop).
387
388 2008-01-07  Wim Taymans  <wim.taymans@collabora.co.uk>
389
390         * gst/playback/gstplay-enum.c:
391         (register_gst_autoplug_select_result),
392         (gst_autoplug_select_result_get_type), (register_gst_play_flags),
393         (gst_play_flags_get_type):
394         * gst/playback/gstplay-enum.h:
395         Add enums for configuration flags.
396
397         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
398         (init_group), (gst_play_bin_init), (gst_play_bin_set_property),
399         (gst_play_bin_get_property), (no_more_pads_cb),
400         (autoplug_select_cb), (gst_play_bin_change_state):
401         Merge mode with flags.
402         Add more property getters/setters, defaults and docs.
403         Add properties to get number of audio/video/text streams.
404         Create sink object in _init so that we can always rely on it being
405         there.
406
407         * gst/playback/gstplaysink.c: (gst_play_sink_init),
408         (gen_video_chain), (gen_audio_chain), (gen_vis_chain),
409         (activate_vis), (gst_play_sink_reconfigure),
410         (gst_play_sink_set_flags), (gst_play_sink_get_flags),
411         (gst_play_sink_change_state):
412         * gst/playback/gstplaysink.h:
413         Use flags to configure the sink pipelines.
414         Add tee before audio pipeline so that we can use it for visualisations.
415         Start working on integrating visualisations.
416         Remove mode, we can do everything with the flags now.
417         Add method to configue the sink pipeline.
418
419 2008-01-06  Tim-Philipp Müller  <tim at centricular dot net>
420
421         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
422           (check_buffer_timestamp), (check_buffer_duration):
423           Turn these functions into macros so we can see right away
424           where the failure occured.
425
426 2008-01-05  Julien Moutte  <julien@fluendo.com>
427
428         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Add
429         debugging information to understand how X calculates the stride
430         for XvImages.
431
432 2008-01-03  Sebastian Dröge  <slomo@circular-chaos.org>
433
434         * gst/volume/Makefile.am:
435         * gst/volume/gstvolume.c: (volume_choose_func),
436         (gst_volume_base_init), (gst_volume_class_init), (gst_volume_init),
437         (volume_setup):
438         * gst/volume/gstvolume.h:
439         Use GstAudioFilter as base class for the volume element instead of
440         plain GstBaseTransform.
441
442 2008-01-03  Sebastian Dröge  <slomo@circular-chaos.org>
443
444         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type):
445         Don't set element details for the abstract GstAudioFilter class.
446
447 2008-01-02  Sebastian Dröge  <slomo@circular-chaos.org>
448
449         * gst-libs/gst/audio/gstaudiofilter.c:
450         (gst_audio_filter_class_init), (gst_audio_filter_get_unit_size):
451         Implement get_unit_size() vmethod of GstBaseTransform.
452
453 2008-01-01  Edward Hervey  <edward.hervey@collabora.co.uk>
454
455         * gst-libs/gst/pbutils/Makefile.am:
456         * gst-libs/gst/pbutils/pbutils.h:
457         Use glib-enum generator to have a proper enum GType for
458         GST_TYPE_INSTALL_PLUGINS_RETURN so we can easily wrap it in bindings.
459
460 2007-12-31  David Schleef  <ds@schleef.org>
461
462         * tests/check/Makefile.am:
463         * tests/check/pipelines/theoraenc.c:
464           Reenable theoraenc test, which fails on the buildbot but
465           not locally.
466
467 2007-12-31  David Schleef  <ds@schleef.org>
468
469         * docs/libs/.cvsignore:
470         * docs/plugins/.cvsignore:
471           Add *-undeclared.txt to fix buildbot.
472
473 2007-12-31  David Schleef  <ds@schleef.org>
474
475         * tests/check/Makefile.am:
476           Second attempt at disabling theoraenc test long enough to
477           get buildbot to compile -base.
478
479 2007-12-31  David Schleef  <ds@schleef.org>
480
481         * tests/check/pipelines/theoraenc.c:
482           Disable theoraenc test long enough to get the buildbot to
483           compile a recent -base.
484
485 2007-12-31  Wim Taymans  <wim.taymans@collabora.co.uk>
486
487         * tests/examples/seek/seek.c: (stop_cb):
488         Make sure we reset the slider value to 0.0 without racing against a
489         possible g_idle that sets it to something else.
490
491 2007-12-31  Thijs Vermeir  <thijsvermeir@gmail.com>
492
493         * sys/ximage/ximagesink.c:
494         fix typo
495
496 2007-12-30  Wim Taymans  <wim.taymans@collabora.co.uk>
497
498         * gst-libs/gst/rtsp/gstrtspdefs.c: (rtsp_init_status):
499         * gst-libs/gst/rtsp/gstrtspdefs.h:
500         Add Location header so that we can start implementing redirects.
501         See #506025.
502
503 2007-12-29  Thijs Vermeir  <thijsvermeir@gmail.com>
504
505         * gst/subparse/gstssaparse.c:
506         combine if's
507
508 2007-12-29  Thijs Vermeir  <thijsvermeir@gmail.com>
509
510         * gst/subparse/gstssaparse.c:
511         remove duplicate log message
512
513 2007-12-29  Sebastian Dröge  <slomo@circular-chaos.org>
514
515         * ext/libvisual/visual.c: (gst_visual_chain):
516         Fix 'xyz may be used uninitialized' compiler warnings caused
517         by broken g_assert_not_reached() macro in GLib-2.15.x and don't
518         abort() in any case but properly report the error.
519
520 2007-12-28  Wim Taymans  <wim.taymans@collabora.co.uk>
521
522         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
523         (gst_play_bin_finalize), (gst_play_bin_set_uri),
524         (gst_play_bin_set_suburi), (gst_play_bin_set_property),
525         (gst_play_bin_get_property), (pad_removed_cb), (drained_cb),
526         (autoplug_select_cb), (activate_group), (deactivate_group),
527         (setup_next_source), (save_current_group),
528         (gst_play_bin_change_state):
529         Code cleanups.
530         Remove next-uri, we can use the uri property just fine.
531         Fix some crasher.
532         Unref uridecodebin when switching.
533         Fix going to READY.
534
535         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
536         (gst_play_sink_init), (gst_play_sink_dispose),
537         (gst_play_sink_finalize), (gst_play_sink_vis_unblocked),
538         (gst_play_sink_vis_blocked), (gst_play_sink_set_video_sink),
539         (gst_play_sink_set_audio_sink), (gst_play_sink_set_vis_plugin),
540         (gst_play_sink_set_property), (gst_play_sink_get_property),
541         (gen_video_chain), (gen_text_element), (gen_audio_chain),
542         (gen_vis_element), (gst_play_sink_get_mode),
543         (gst_play_sink_set_mode), (gst_play_sink_set_flags),
544         (gst_play_sink_get_flags), (gst_play_sink_request_pad),
545         (gst_play_sink_release_pad), (gst_play_sink_send_event_to_sink),
546         (gst_play_sink_change_state):
547         * gst/playback/gstplaysink.h:
548         Add some locking to make things threadsafe.
549
550         * gst/playback/test7.c: (about_to_finish_cb):
551         Fix test.
552
553 2007-12-22  Tim-Philipp Müller  <tim at centricular dot net>
554
555         * gst/videoscale/gstvideoscale.c: (gst_video_scale_set_property),
556           (gst_video_scale_get_property), (gst_video_scale_transform_caps),
557           (gst_video_scale_transform):
558           Don't claim to be able to handle/transform caps that can't really
559           be handled by the currently selected scaling method (here: RGB or
560           packed YUV with 4-tap method). Also add locking to method property.
561
562         * tests/check/pipelines/simple-launch-lines.c: (setup_pipeline),
563           (test_basetransform_based):
564           Some test pipelines for the above (not entirely valgrind clean yet
565           apparently).
566
567 2007-12-21  David Schleef  <ds@schleef.org>
568
569         * gst-libs/gst/video/video.c:
570         * gst-libs/gst/video/video.h:
571           Add additional RGBA and RGB-24 video formats.
572
573 2007-12-21  Tim-Philipp Müller  <tim at centricular dot net>
574
575         * tests/check/elements/playbin.c: (test_sink_usage_video_only_stream),
576           (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
577           (test_suburi_error_wrongproto), (test_missing_primary_decoder):
578         * tests/check/libs/cddabasesrc.c: (GST_START_TEST), (GST_START_TEST),
579           (cddabasesrc_suite):
580           Don't use GST_PLUGIN_DEFINE_STATIC, it's not portable and will be
581           deprecated in the future (see #498924).
582
583 2007-12-21  Tim-Philipp Müller  <tim at centricular dot net>
584
585         * gst/playback/gststreamselector.c: (gst_selector_pad_event):
586           Don't leak event.
587
588 2007-12-20  Thijs Vermeir <thijsvermeir@gmail.com>
589
590         * gst-libs/gst/riff/riff-read.c:
591         Use GST_ROUND_UP_2 macro
592
593 2007-12-20  Tim-Philipp Müller  <tim at centricular dot net>
594
595         * gst/playback/.cvsignore:
596           Ignore more.
597
598 2007-12-20  Tim-Philipp Müller  <tim at centricular dot net>
599
600         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init):
601         * gst/playback/gstplaybasebin.c: (set_subtitles_visible),
602           (set_active_source):
603         * gst/playback/gstplaybasebin.h:
604         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
605           (setup_sinks), (playbin_set_subtitles_visible):
606           Make switching off of subtitles work. To avoid all kind of
607           problems with unlinking of the subtitle input, we just keep
608           the subtitle inputs linked as they are and tell textoverlay
609           not to render them. Fixes #373011.
610           Other subtitle switching issues (esp. when there are both
611           external and in-stream subtitles) remain. They'll be solved
612           in playbin2.
613
614 2007-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
615
616         * gst/playback/gststreamselector.c: (gst_selector_pad_init):
617         Init the pad segment too.
618
619 2007-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
620
621         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
622         (gst_audioringbuffer_open_device),
623         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
624         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
625         (gst_audioringbuffer_pause), (gst_audioringbuffer_stop),
626         (gst_audio_sink_create_ringbuffer):
627         Improve debug output.
628
629         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_start),
630         (gst_ring_buffer_pause), (gst_ring_buffer_delay):
631         Prevent some functions from doing things and failing when the
632         ringbuffer is not yet acquired.
633
634 2007-12-18  Sebastian Dröge  <slomo@circular-chaos.org>
635
636         * gst-libs/gst/interfaces/interfaces.h:
637           Also remove interfaces.h from CVS as it is not needed anymore.
638
639 2007-12-18  Sebastian Dröge  <slomo@circular-chaos.org>
640
641         * gst-libs/gst/interfaces/Makefile.am:
642           interfaces.h is not used anymore so remove it from the build
643           process.
644
645 2007-12-17  David Schleef  <ds@schleef.org>
646
647         * gst/videotestsrc/gstvideotestsrc.c:
648         * gst/videotestsrc/gstvideotestsrc.h:
649           Add a "blink" pattern.  Turn on the pain.  Apologies.  It's useful
650           for testing vertical refresh synchronization.
651
652 2007-12-17  David Schleef  <ds@schleef.org>
653
654         * docs/libs/gst-plugins-base-libs-sections.txt:
655         * gst-libs/gst/video/video.c:
656         * gst-libs/gst/video/video.h:
657           Add new GstVideFormat enum and write a bunch of helper functions
658           based around it.
659
660 2007-12-17  Tim-Philipp Müller  <tim at centricular dot net>
661
662         * Makefile.am:
663           Use new common/win32.mak.
664
665 2007-12-17  Wim Taymans  <wim.taymans@collabora.co.uk>
666
667         * gst-libs/gst/audio/gstbaseaudiosrc.c:
668         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
669         Add debug info.
670         When going from PLAYING to PAUSED, pause the ringbuffer before calling
671         the parent state change function, just like the audiosink, because the
672         parent waits for the element to finish its processing before completing
673         the state change. This makes going to PAUSED a lot snappier.
674         When going from READY to PAUSED, don't allow the ringbuffer to start
675         yet.
676
677 2007-12-17  Edward Hervey  <edward.hervey@collabora.co.uk>
678
679         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
680         Yet another fix for broken software that produce files with an empty
681         blockalign field. Instead of completely failing, make a second attempt
682         at guessing the width/depth by looking at strf->size.
683
684 2007-12-16  Tim-Philipp Müller  <tim at centricular dot net>
685
686         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_do_seek),
687           (gst_cdda_base_src_handle_track_seek), (gst_cdda_base_src_create):
688         * gst-libs/gst/pbutils/install-plugins.c:
689           (gst_install_plugins_spawn_child), (gst_install_plugins_supported):
690         * gst-libs/gst/pbutils/missing-plugins.c:
691           (gst_missing_plugin_message_get_installer_detail),
692           (gst_missing_encoder_installer_detail_new):
693         * gst-libs/gst/rtsp/gstrtspconnection.c: (gst_rtsp_connection_send):
694         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
695           Turn a few g_assert_not_reached() into g_return_val_if_reached() to
696           avoid compiler warnings (#503930).
697
698 2007-12-17  Edward Hervey  <edward.hervey@collabora.co.uk>
699
700         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
701         Be apologetic of software that use the 'jpeg' instead of 'JPEG' FOURCC
702         for jpeg video streams.
703         Add the 'avc1'/'AVC1' fourcc mapping for h264, same software-comment as
704         for the above modification.
705
706 2007-12-15  Tim-Philipp Müller  <tim at centricular dot net>
707
708         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_expose),
709           (gst_x_overlay_handle_events):
710           More guards (we don't want klass to end up being NULL).
711
712 2007-12-14  Sebastian Dröge  <slomo@circular-chaos.org>
713
714         * configure.ac:
715         * gst/volume/gstvolume.c: (gst_volume_init):
716           Use new gst_base_transform_set_gap_aware() function as volume
717           correctly handles GST_BUFFER_FLAG_GAP. Require core 0.10.15.1 
718           for this.
719
720 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
721
722         * tests/examples/seek/seek.c: (msg_segment_done), (main):
723         Don't go to READY on EOS as this avoids testing of seeking and
724         restarting after EOS, use the stop button when you want to READY.
725         Don't try to do a flushing seek in segment-done, it does not make
726         sense to use this for gapless playback and is not needed.
727
728 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
729
730         * gst/playback/gstqueue2.c: (gst_queue_init), (gst_queue_finalize),
731         (reset_rate_timer), (update_in_rates), (update_out_rates),
732         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
733         (gst_queue_chain), (gst_queue_loop):
734         Use separate timers for input and output rates.
735         Pause measuring the output rate when we block for more data.
736         See #503262.
737
738 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
739
740         * gst/playback/gstqueue2.c: (gst_queue_chain):
741         Pause the timer to measure the input rate when we block because the
742         queue is filled. See #503262.
743
744 2007-12-13  Wim Taymans  <wim.taymans@collabora.co.uk>
745
746         Patch by: Peter Kjellerstedt  <pkj at axis com>
747
748         * gst-libs/gst/rtsp/gstrtspconnection.c:
749         (gst_rtsp_connection_free):
750         Close control sockets. Fixes #503440.
751
752 2007-12-13  Wim Taymans  <wim.taymans@collabora.co.uk>
753
754         * gst/playback/gstdecodebin2.c: (analyze_new_pad), (connect_pad):
755         Expose the right pad in the right place with the right element.
756
757 2007-12-13  Tim-Philipp Müller  <tim at centricular dot net>
758
759         * gst-libs/gst/pbutils/descriptions.c: (formats):
760           Add description for 'private' dts caps (who come up with that name?).
761
762 2007-12-13  Tim-Philipp Müller  <tim at centricular dot net>
763
764         * Makefile.am:
765           Add check-exports target and run it with 'make check'.
766
767         * configure.ac:
768           Be stricter about what we export in our libraries: change regexp so that
769           we only export _gst_foo(), but not __gst_foo().
770
771         * gst-libs/gst/cdda/base64.h: (rfc822_binary):
772         * gst-libs/gst/cdda/sha1.h: (sha_init), (sha_update), (sha_final):
773           Change internal functions to __gst_foo so they dont' get exported.
774
775         * win32/common/libgstaudio.def:
776           Add missing symbols.
777
778 2007-12-11  David Schleef  <ds@schleef.org>
779
780         * ChangeLog: remove conflict markers
781
782 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
783
784         * ext/gnomevfs/Makefile.am:
785         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_unicodify):
786           Use gst_tag_freeform_string_to_utf8() here, which also takes
787           into account any character sets specified by the user via
788           environment variables.
789
790 2007-12-10  Wim Taymans  <wim.taymans@gmail.com>
791
792         * gst/audioconvert/Makefile.am:
793         Also link to libm.
794
795 2007-12-10  Wim Taymans  <wim.taymans@gmail.com>
796
797         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
798         No need for floating point operations here. avoids having to link
799         against the math library too.
800
801 2007-12-10  Tim-Philipp Müller  <tim at centricular dot net>
802
803         * gst-libs/gst/pbutils/descriptions.c: (formats),
804           (format_info_get_desc):
805         * tests/check/libs/pbutils.c: (GST_START_TEST), (caps_strings),
806           (GST_START_TEST):
807           Add one or two missing formats.  Generate ADPCM description
808           dynamically depending on layout/format.
809
810 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
811
812         * configure.ac:
813           Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
814
815 2007-12-08  Tim-Philipp Müller  <tim at centricular dot net>
816
817         Patch by: Robin Stocker <robin dot stocker at gmx dot ch>
818
819         * gst/subparse/gstsubparse.c: (gst_sub_parse_data_format_autodetect):
820           Some .srt files start with chunk number 0 and not chunk number 1,
821           recognise and accept those as well (fixes #502497).
822
823         * tests/check/elements/subparse.c: (srt_input), (srt_input0),
824           (test_src):
825           Add unit test for the above.
826
827 2007-12-06  Wim Taymans  <wim.taymans@gmail.com>
828
829         * gst/playback/gstplay-enum.c:
830         (register_gst_autoplug_select_result),
831         (gst_autoplug_select_result_get_type):
832         * gst/playback/gstplay-enum.h:
833         Add missing files.
834
835 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
836
837         * gst/playback/Makefile.am:
838         Group decodebin2 and uridecodebin into the same plugin so that they
839         can share the GEnumType.
840
841         * gst/playback/gstdecodebin2.c: (_gst_array_accumulator),
842         (_gst_select_accumulator), (gst_decode_bin_class_init),
843         (gst_decode_bin_init), (gst_decode_bin_autoplug_sort),
844         (gst_decode_bin_autoplug_select), (gst_decode_bin_autoplug_add),
845         (analyze_new_pad), (connect_pad), (gst_decode_bin_plugin_init):
846         Add signal to sort factories instead of the more awkward autoplug-select
847         signal.
848         Modify autoplug_select so that we can try, skip or expose the
849         autopluggin of an element on a pad.
850
851         * gst/playback/gstfactorylists.c: (compare_ranks),
852         (decoders_filter), (sinks_filter), (gst_factory_list_is_type),
853         (element_filter), (gst_factory_list_get_elements),
854         (gst_factory_list_debug), (gst_factory_list_filter):
855         * gst/playback/gstfactorylists.h:
856         Simplify the API, allow getting elements based on mask.
857
858         * gst/playback/gstplay-marshal.list:
859         Add some more marshallers.
860
861         * gst/playback/gstplaybin2.c: (init_group), (gst_play_bin_init),
862         (gst_play_bin_finalize), (pad_removed_cb), (autoplug_factories_cb),
863         (autoplug_select_cb), (activate_group):
864         Add support for managing non-raw sinks by providing a custom element and
865         sink list to decodebin2.
866         Try to plug non-raw sinks when decodebin2 using autoplug-select of
867         decodebin2.
868
869         * gst/playback/gstplaysink.c: (gen_video_chain), (gen_audio_chain),
870         (gst_play_sink_set_mode), (gst_play_sink_request_pad):
871         * gst/playback/gstplaysink.h:
872         Add support for raw and non-raw sinks. 
873         Add support to force sinks selected by playbin2.
874         Don't plug raw converters for non-raw sinks.
875
876         * gst/playback/gsturidecodebin.c: (_gst_array_accumulator),
877         (_gst_select_accumulator), (gst_uri_decode_bin_class_init),
878         (proxy_autoplug_select_signal), (gst_uri_decode_bin_plugin_init),
879         (plugin_init):
880         Use right accumulators.
881         Proxy new signal.
882
883 2007-12-03  Wim Taymans  <wim.taymans@gmail.com>
884
885         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
886         Use runnning time as the base time instead of the timestamp.
887         Spotted by Saur on IRC.
888
889 2007-12-03  Edward Hervey  <bilboed@bilboed.com>
890
891         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
892         Add 'WVC1' codec mapping for Windows Media VC-1 video codec.
893
894 2007-12-03  Wim Taymans  <wim.taymans@gmail.com>
895
896         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_bisect_forward_serialno),
897         (gst_ogg_demux_read_chain):
898         If we find a new serial number but it does not contain a BOS page, make
899         sure we initialize the chain to NULL because else we will try to scan it
900         and crash. Fixes #500763
901
902 2007-11-30  Wim Taymans  <wim.taymans@gmail.com>
903
904         * gst/playback/Makefile.am:
905         * gst/playback/gstfactorylists.c: (compare_ranks), (print_feature),
906         (get_feature_array), (decoders_filter), (sinks_filter),
907         (gst_factory_list_get_decoders), (gst_factory_list_get_sinks),
908         (gst_factory_list_filter):
909         * gst/playback/gstfactorylists.h:
910         Refactor some common code to filter factories and check caps compat.
911
912         * gst/playback/gstdecodebin.c:
913         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
914         (gst_decode_bin_init), (gst_decode_bin_dispose),
915         (gst_decode_bin_autoplug_continue),
916         (gst_decode_bin_autoplug_factories),
917         (gst_decode_bin_autoplug_select), (analyze_new_pad),
918         (find_compatibles):
919         * gst/playback/gstplaybin.c:
920         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
921         (gst_play_bin_init), (gst_play_bin_finalize),
922         (autoplug_factories_cb), (activate_group):
923         * gst/playback/gstqueue2.c:
924         * gst/playback/gsturidecodebin.c: (proxy_unknown_type_signal),
925         (proxy_autoplug_continue_signal),
926         (proxy_autoplug_factories_signal), (proxy_autoplug_select_signal),
927         (proxy_drained_signal):
928         Add some more debug info and use factor filtering code.
929
930 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
931
932         * gst/audiotestsrc/gstaudiotestsrc.c:
933         * gst/volume/gstvolume.c:
934         * gst/volume/gstvolume.h:
935           Add GAP-flag support.
936
937 2007-11-24  Julien MOUTTE  <julien@moutte.net>
938
939         * tests/examples/seek/seek.c: (main): Increase the range of the
940         rate selector as I would like to test QOS behavior at higher
941         forward and reverse playback speed like say 64x.
942
943 2007-11-23  Sebastian Dröge  <slomo@circular-chaos.org>
944
945         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
946         (audioresample_query), (audioresample_query_type),
947         (gst_audioresample_set_property):
948         Implement latency query.
949
950 2007-11-21  Wim Taymans  <wim.taymans@gmail.com>
951
952         * gst-libs/gst/audio/gstbaseaudiosink.c:
953         (gst_base_audio_sink_drain):
954         Our EOS time contains the base_time, _wait_eos() expects a running_time
955         so we have to subtract the base_time again before calling the function.
956         This fixes an EOS regression where the base_time was added twice and EOS
957         took longer and longer in certain situations.
958         Fixes #498767.
959
960 2007-11-21  Wim Taymans  <wim.taymans@gmail.com>
961
962         * docs/libs/gst-plugins-base-libs-sections.txt:
963         * gst-libs/gst/audio/gstbaseaudiosink.c: (slave_method_get_type),
964         (gst_base_audio_sink_set_provide_clock),
965         (gst_base_audio_sink_get_provide_clock),
966         (gst_base_audio_sink_set_slave_method),
967         (gst_base_audio_sink_get_slave_method),
968         (gst_base_audio_sink_set_property),
969         (gst_base_audio_sink_get_property), (gst_base_audio_sink_drain),
970         (gst_base_audio_sink_none_slaving),
971         (gst_base_audio_sink_handle_slaving):
972         * gst-libs/gst/audio/gstbaseaudiosink.h:
973         Expose methods for some object properties so that subclasses can more
974         easily configure them.
975         Added slave method none, that completely disables slaving to the
976         internal clock.
977         API: gst_base_audio_sink_set_provide_clock()
978         API: gst_base_audio_sink_get_provide_clock()
979         API: gst_base_audio_sink_set_slave_method()
980         API: gst_base_audio_sink_get_slave_method()
981
982         * gst-libs/gst/audio/gstbaseaudiosrc.c:
983         (gst_base_audio_src_set_provide_clock),
984         (gst_base_audio_src_get_provide_clock),
985         (gst_base_audio_src_set_property),
986         (gst_base_audio_src_get_property), (gst_base_audio_src_create):
987         * gst-libs/gst/audio/gstbaseaudiosrc.h:
988         Expose methods for some object properties so that subclasses can more
989         easily configure them.
990         API: gst_base_audio_src_set_provide_clock()
991         API: gst_base_audio_src_get_provide_clock()
992
993 2007-11-20  Wim Taymans  <wim.taymans@gmail.com>
994
995         Patch by: Joe Peterson <lavajoe at gentoo dot org>
996
997         * gst-libs/gst/sdp/gstsdpmessage.c:
998         Fix compilation on FreeBSD (Gentoo). Fixes #498228.
999
1000 2007-11-19  Sebastian Dröge  <slomo@circular-chaos.org>
1001
1002         * tests/check/libs/fft.c: (GST_START_TEST):
1003         Fix scaling to really have dB instead of something else.
1004
1005 2007-11-19  Julien MOUTTE  <julien@moutte.net>
1006
1007         * tests/examples/seek/seek.c: (main): There's a nice macro to check
1008         GTK version, use it.
1009
1010 2007-11-19  Julien MOUTTE  <julien@moutte.net>
1011
1012         * tests/examples/seek/seek.c: (main): Try to support stable version
1013         of GTK.
1014
1015 2007-11-17  Stefan Kost  <ensonic@users.sf.net>
1016
1017         * gst/playback/README:
1018         * gst/playback/test7.c:
1019           Fix the build + little README update.
1020
1021 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
1022
1023         * tests/examples/seek/seek.c: (make_playerbin2_pipeline), (main):
1024         Add playbin2 seek pipeline.
1025
1026 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
1027
1028         * gst/playback/Makefile.am:
1029         * gst/playback/gstplayback.c: (plugin_init):
1030         * gst/playback/test7.c: (update_scale), (warning_cb), (error_cb),
1031         (eos_cb), (about_to_finish_cb), (main):
1032         Add playbin2.
1033         Added gapless playback example.
1034
1035         * gst/playback/gstplaybasebin.c:
1036         * gst/playback/gstplaybasebin.h:
1037         * gst/playback/gstplaybin.c: (gst_play_bin_plugin_init):
1038         * gst/playback/gstqueue2.c:
1039         * gst/playback/test.c:
1040         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init),
1041         (pad_removed_cb):
1042         * gst/playback/gststreaminfo.h:
1043         Change email.
1044
1045         * gst/playback/gstplaybin2.c: (gst_play_bin_get_type),
1046         (gst_play_bin_class_init), (init_group), (gst_play_bin_init),
1047         (gst_play_bin_dispose), (gst_play_bin_set_uri),
1048         (gst_play_bin_set_suburi), (gst_play_bin_set_property),
1049         (gst_play_bin_get_property), (gst_play_bin_handle_message),
1050         (pad_added_cb), (pad_removed_cb), (no_more_pads_cb), (perform_eos),
1051         (drained_cb), (unlink_group), (activate_group),
1052         (setup_next_source), (gst_play_bin_change_state),
1053         (gst_play_bin2_plugin_init):
1054         Added raw first version of playbin2. Does chained oggs and gapless
1055         playback fine. No support for raw sinks yet. No visualisations or
1056         subtitles yet.
1057
1058         * gst/playback/gstplaysink.c: (gst_play_sink_get_type),
1059         (gst_play_sink_class_init), (gst_play_sink_init),
1060         (gst_play_sink_dispose), (gst_play_sink_vis_unblocked),
1061         (gst_play_sink_vis_blocked), (gst_play_sink_set_video_sink),
1062         (gst_play_sink_set_audio_sink), (gst_play_sink_set_vis_plugin),
1063         (gst_play_sink_set_property), (gst_play_sink_get_property),
1064         (post_missing_element_message), (free_chain), (add_chain),
1065         (activate_chain), (gen_video_chain), (gen_text_element),
1066         (gen_audio_chain), (gen_vis_element), (gst_play_sink_get_mode),
1067         (gst_play_sink_set_mode), (gst_play_sink_request_pad),
1068         (gst_play_sink_release_pad), (gst_play_sink_send_event_to_sink),
1069         (gst_play_sink_send_event), (gst_play_sink_change_state):
1070         * gst/playback/gstplaysink.h:
1071         Added Element that abstracts the sinks and their pipelines for playbin2.
1072
1073 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
1074
1075         * gst/playback/gststreamselector.c: (gst_selector_pad_get_type),
1076         (gst_selector_pad_class_init), (gst_selector_pad_init),
1077         (gst_selector_pad_finalize), (gst_selector_pad_reset),
1078         (gst_selector_pad_get_linked_pads), (gst_selector_pad_event),
1079         (gst_selector_pad_getcaps), (gst_selector_pad_bufferalloc),
1080         (gst_selector_pad_chain), (gst_stream_selector_get_type),
1081         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
1082         (gst_stream_selector_init), (gst_stream_selector_set_property),
1083         (gst_stream_selector_get_linked_pad),
1084         (gst_stream_selector_getcaps),
1085         (gst_stream_selector_is_active_sinkpad),
1086         (gst_stream_selector_activate_sinkpad),
1087         (gst_stream_selector_get_linked_pads),
1088         (gst_stream_selector_request_new_pad),
1089         (gst_stream_selector_release_pad):
1090         * gst/playback/gststreamselector.h:
1091         Improve streamselector, make it select and unselect the current pad more
1092         intelligently. 
1093         Subclass GstPad for the sinkpads of the selector.
1094         Handle segments more correctly.
1095         Fix caps negotiation.
1096         Implement release_pad.
1097
1098 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
1099
1100         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
1101         (gst_decode_group_check_if_drained), (source_pad_event_probe),
1102         (remove_fakesink):
1103         Add drained signal fired when decodebin finishes decoding the data.
1104         Remove deprecated STATE_DIRTY message.
1105
1106         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init),
1107         (unknown_type_cb), (new_decoded_pad_cb), (pad_removed_cb),
1108         (analyse_source), (proxy_drained_signal), (make_decoder),
1109         (source_new_pad), (value_list_append_structure_list),
1110         (handle_redirect_message), (handle_message):
1111         Proxy the new drained signal.
1112         Handle pad removed from decodebin.
1113         Handle redirect messages by sorting multiple redirections based on the
1114         connection speed.
1115
1116 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
1117
1118         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
1119
1120         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
1121         Fix leaking headers. Fixes #496761.
1122
1123 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
1124
1125         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
1126
1127         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
1128         (gst_ximagesink_change_state):
1129         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
1130         Don't leak the PAR on errors. Fixes #496731.
1131
1132 2007-11-16  Tim-Philipp Müller  <tim at centricular dot net>
1133
1134         * gst-libs/gst/tag/gstid3tag.c: (user_tag_matches),
1135           (gst_tag_from_id3_user_tag):
1136           Add mapping for audio cd discid tags, so we can extract
1137           them from tags as well (see #347848). Also compare identifiers
1138           in ID3v2 TXXX frames in a case-insensitive way to increase
1139           compatibility when reading tags (discid vs. DiscID vs. DiscId).
1140
1141 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
1142
1143         * gst-plugins-base.doap:
1144         Oops, fix the release name.
1145
1146 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
1147
1148         * gst-plugins-base.doap:
1149         Add 0.10.15 release
1150
1151 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
1152
1153         * configure.ac:
1154         Back to CVS
1155
1156 === release 0.10.15 ===
1157
1158 2007-11-15  Jan Schmidt <jan.schmidt@sun.com>
1159
1160         * configure.ac:
1161           releasing 0.10.15, "No need to argue"
1162
1163 2007-11-15  Jan Schmidt  <jan.schmidt@sun.com>
1164
1165         * win32/vs6/libgstfft.dsp:
1166         Convert line endings to DOS.
1167
1168 2007-11-15  Sebastien Moutte <sebastien@moutte.net>
1169
1170         * win32/vs6/gst_plugins_base.dsw:
1171         * win32/vs6/libgstfft.dsp:
1172         * win32/MANIFEST:
1173         Add a project file for fft plugin and remove socket
1174         based plugin which don't build from the workspace.
1175         * win32/vs6/libgstaudio.dsp:
1176         * win32/vs6/libgstrtp.dsp:
1177         * win32/vs6/libgsttag.dsp:
1178         Convert line endings back to DOS.
1179         Fixes #496724
1180
1181 2007-11-14  Jan Schmidt  <jan.schmidt@sun.com>
1182
1183         * win32/vs6/libgstinterfaces.dsp:
1184         * win32/vs6/libgstrtsp.dsp:
1185         Convert line endings back to DOS
1186
1187 2007-11-14  Jan Schmidt  <jan.schmidt@sun.com>
1188
1189         * gst-libs/gst/fft/kiss_fft_f32.h:
1190         * gst-libs/gst/fft/kiss_fft_f64.h:
1191         * gst-libs/gst/fft/kiss_fft_s16.h:
1192         * gst-libs/gst/fft/kiss_fft_s32.h:
1193         Don't include malloc.h which doesn't exist on Mac OSX.
1194         Instead, pull in glib.h and use g_malloc/g_free for 
1195         consistency. Fixes: #496548
1196
1197 2007-11-09  Stefan Kost  <ensonic@users.sf.net>
1198
1199         * gst/playback/gstdecodebin2.c:
1200           Dont leak ghostpad. Fixes #475451.
1201
1202 2007-11-09  Wim Taymans  <wim.taymans@gmail.com>
1203
1204         * docs/design/design-decodebin.txt:
1205         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
1206         Update some more docs and comments.
1207
1208 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
1209
1210         Patch by: Sebastien Moutte  <sebastien moutte net>
1211
1212         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_ntp_to_unix),
1213           (gst_rtcp_unix_to_ntp):
1214         * gst-libs/gst/rtp/gstrtppayloads.c: (gst_rtp_payload_info_for_name):
1215           Fix some C99-isms and and a missing function that some versions of
1216           MSVC don't like too much (#494346).
1217
1218         * win32/vs6/gst_plugins_base.dsw:
1219         * win32/vs6/libgstaudio.dsp:
1220         * win32/vs6/libgstrtp.dsp:
1221         * win32/vs6/libgsttag.dsp:
1222           Update vs6 projects files (#494346).
1223
1224 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
1225
1226         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1227
1228         * win32/common/libgstaudio.def:
1229         * win32/common/libgstcdda.def:
1230         * win32/common/libgstinterfaces.def:
1231         * win32/common/libgstnetbuffer.def:
1232         * win32/common/libgstpbutils.def:
1233         * win32/common/libgstrtp.def:
1234         * win32/common/libgstrtsp.def:
1235         * win32/common/libgsttag.def:
1236         * win32/common/libgstvideo.def:
1237           More missing symbols to export (fixes #493986).
1238
1239 2007-11-06  Sebastian Dröge  <slomo@circular-chaos.org>
1240
1241         * docs/libs/gst-plugins-base-libs-sections.txt:
1242         * gst-libs/gst/fft/gstfftf32.c:
1243         * gst-libs/gst/fft/gstfftf32.h:
1244         * gst-libs/gst/fft/gstfftf64.c:
1245         * gst-libs/gst/fft/gstfftf64.h:
1246         * gst-libs/gst/fft/gstffts16.c:
1247         * gst-libs/gst/fft/gstffts16.h:
1248         * gst-libs/gst/fft/gstffts32.c:
1249         * gst-libs/gst/fft/gstffts32.h:
1250         * tests/check/libs/fft.c: (GST_START_TEST):
1251         Remove the magnitude and phase calculation functions as these have
1252         very special use cases and can't even be used for the spectrum
1253         element. Also adjust the docs to mention some properties of the used
1254         FFT implemention, i.e. how the values are scaled. Fixes #492098.
1255
1256 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
1257
1258         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
1259           (finish_source):
1260           Avoid crash when there are external subtitles (fixes #491722).
1261
1262 2007-11-03  Tim-Philipp Müller  <tim at centricular dot net>
1263
1264         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
1265         * ext/alsa/gstalsasrc.c: (gst_alsasrc_open):
1266           'Could not open resource for writing' is not an acceptable
1267           error message when we can't open the audio device (see #492334),
1268           even less so when we're trying to open it to record something.
1269
1270 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
1271
1272         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1273
1274         * win32/common/libgstrtp.def:
1275           Add some more missing symbols (#492813).
1276
1277 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
1278
1279         Patch by: Thijs Vermeir <thijsvermeir@gmail.com>
1280
1281         * tests/check/elements/audioconvert.c: (verify_convert):
1282           Add check to make sure that the out caps have a channel layout
1283           set on them where they should have one.
1284
1285 2007-11-01  Tim-Philipp Müller  <tim at centricular dot net>
1286
1287         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
1288
1289         * gst-libs/gst/fft/kiss_fft_s16.h: (KISS_FFT_S16_MALLOC):
1290         * gst-libs/gst/fft/kiss_fft_s32.h: (KISS_FFT_S32_MALLOC):
1291           Include our own _stdint.h instead of sys/types.h, makes MingW happy
1292           (#492306).
1293
1294         * gst-libs/gst/rtsp/gstrtspconnection.c: (gst_rtsp_connection_create):
1295           Use _pipe directly, GLib doesn't have a pipe() macro any longer
1296           (it disappeared in GLib 2.14.0) (#492306).
1297
1298         * gst-libs/gst/sdp/Makefile.am:
1299         * gst-libs/gst/sdp/gstsdpmessage.c:
1300           Fix includes and LIBS for win32/Mingw (#492306).
1301
1302         * tests/examples/dynamic/addstream.c (pause_play_stream):
1303           Use more portable g_usleep() instead of sleep() (#492306).
1304
1305 2007-11-01  Tim-Philipp Müller  <tim at centricular dot net>
1306
1307         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1308
1309         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
1310           (gst_ring_buffer_parse_caps):
1311           Return NULL instead of an enum that happens to be 0, fixes warning
1312           on MSVC (#492114).
1313
1314         * gst-libs/gst/audio/gstringbuffer.h:
1315           No trailing commas in enum list (for gcc-2.9x).
1316
1317         * gst/videotestsrc/videotestsrc.c: (random_char):
1318           Make information loss explicit instead of implicitly truncating to
1319           eight bits via the return value.  Fixes runtime error on MSVC when
1320           using the debug CRT (#492114).
1321
1322         * win32/common/config.h.in:
1323           Fix a bunch of '#undef FOO bar', which MSVC doesn't like (#492114).
1324
1325         * win32/common/libgstinterfaces.def:
1326         * win32/common/libgstrtp.def:
1327           Export a few more symbols (#492114).
1328
1329 2007-11-01  Stefan Kost  <ensonic@users.sf.net>
1330
1331         * gst-libs/gst/audio/audio.c:
1332         * gst-libs/gst/audio/audio.h:
1333           Readd the deprecation guards, but preserve compilability.
1334
1335 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
1336
1337         * gst/audioconvert/gstaudioconvert.c: (find_suitable_channel_layout),
1338           (gst_audio_convert_fixate_channels), (gst_audio_convert_fixate_caps):
1339           Preserve channel layout when fixating the number of channels in the
1340           output caps, or make sure there's a suitable channel position layout
1341           set on the caps if required. Fixes #430677.
1342
1343 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
1344
1345         * tests/check/elements/decodebin.c: (test_text_plain_streams):
1346           Make sure the pipeline really operates in push mode as it should
1347           in this case.
1348
1349 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
1350
1351         * gst-libs/gst/audio/audio.h:
1352           Don't guard deprecated enum with #ifndef DISABLE_DEPRECATED, or
1353           compilation with DISABLE_DEPRECATED and without REMOVE_DEPRECATED
1354           (ie. normal cvs builds) will fail.
1355
1356 2007-10-31  Stefan Kost  <ensonic@users.sf.net>
1357
1358         * docs/libs/Makefile.am:
1359         * gst-libs/gst/audio/audio.c:
1360         * gst-libs/gst/audio/audio.h:
1361         * gst-libs/gst/interfaces/mixer.c:
1362           tell gtk-doc about the deprecation guard. Apply more doc fixes.
1363
1364 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
1365
1366         * tests/check/libs/audio.c: (init_value_to_channel_layout),
1367           (test_channel_layout_value_intersect), (audio_suite):
1368           Add simple unit test to make sure GstValue intersection
1369           of channel layouts works the way I think it does.
1370
1371 2007-10-30  Stefan Kost  <ensonic@users.sf.net>
1372
1373         * docs/libs/gst-plugins-base-libs-sections.txt:
1374         * gst-libs/gst/audio/gstaudiofilter.h:
1375         * gst-libs/gst/interfaces/mixer.h:
1376         * gst-libs/gst/rtp/gstbasertpdepayload.c:
1377         * gst-libs/gst/rtp/gstbasertpdepayload.h:
1378         * gst-libs/gst/sdp/gstsdpmessage.c:
1379           Fix the docs according to what gtk-doc complained about.
1380
1381 2007-10-30  Stefan Kost  <ensonic@users.sf.net>
1382
1383         * tests/icles/stress-playbin.c:
1384           Fix the build.
1385
1386 2007-10-30  Tim-Philipp Müller  <tim at centricular dot net>
1387
1388         * gst/playback/gstdecodebin.c: (close_pad_link), (type_found):
1389         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
1390           Post nice/more useful error message if we don't have a decoder for
1391           the primary type.
1392
1393 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
1394
1395         * gst/playback/gstdecodebin2.c: (gst_decode_group_expose):
1396         Be a bit more useful, unblock the pads after we fired the no-more-pads
1397         signal so that we can use the signal to inspect and connect all pads
1398         without having to keep extra state outside of decodebin.
1399
1400 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
1401
1402         * gst/playback/gsturidecodebin.c:
1403         (gst_uri_decode_bin_autoplug_continue),
1404         (gst_uri_decode_bin_class_init), (no_more_pads_full):
1405         Implement default signal handler so that we return TRUE when nothing is
1406         connected.
1407
1408 2007-10-28  Sebastian Dröge  <slomo@circular-chaos.org>
1409
1410         * gst-libs/gst/riff/riff-media.c:
1411         (gst_riff_wavext_add_channel_layout),
1412         (gst_riff_wave_add_default_channel_layout),
1413         (gst_riff_wavext_get_default_channel_mask),
1414         (gst_riff_create_audio_caps):
1415         Use the ALSA channel layout as default for wav files without channel
1416         layout information. This fixes playback of chan-id.wav on 5.1 systems
1417         for example. Also refactor the channel layout setting a bit and add
1418         more default channel orders. Fixes #489010.
1419
1420 2007-10-26  Tim-Philipp Müller  <tim at centricular dot net>
1421
1422         * tests/check/libs/tag.c: (test_musicbrainz_tag_registration):
1423           GST_TAG_MUSICBRAINZ_SORTNAME is deprecated and we compile with
1424           -DGST_DISABLE_DEPRECATED, so use new GST_TAG_ARTIST_SORTNAME
1425           instead.
1426
1427 2007-10-25  Wim Taymans  <wim.taymans@gmail.com>
1428
1429         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
1430         (gst_decode_bin_dispose), (gst_decode_bin_set_caps),
1431         (gst_decode_bin_set_subs_encoding),
1432         (gst_decode_bin_get_subs_encoding), (gst_decode_bin_set_property),
1433         (gst_decode_bin_get_property), (analyze_new_pad):
1434         Move subtitle encoding property to decodebin2 so that it can set the
1435         property value on all elements that it autoplugs and that require it.
1436         Make caps refcounting more consistent in get/set.
1437
1438         * gst/playback/gsturidecodebin.c: (_gst_boolean_accumulator),
1439         (gst_uri_decode_bin_class_init), (gst_uri_decode_bin_init),
1440         (gst_uri_decode_bin_finalize), (gst_uri_decode_bin_set_property),
1441         (gst_uri_decode_bin_get_property), (proxy_unknown_type_signal),
1442         (proxy_autoplug_continue_signal),
1443         (proxy_autoplug_factories_signal), (proxy_autoplug_select_signal),
1444         (make_decoder):
1445         Proxy properties and relevant signals from the internal decodebin.
1446         Make properties MT safe.
1447
1448 2007-10-25  Tim-Philipp Müller  <tim at centricular dot net>
1449
1450         * gst-libs/gst/tag/tag.h: (GST_TAG_MUSICBRAINZ_SORTNAME):
1451         * gst-libs/gst/tag/tags.c:
1452           Deprecate GST_TAG_MUSICBRAINZ_SORTNAME, replaced by the newly-added
1453           GST_TAG_ARTIST_SORTNAME (in an API and ABI compatible way).
1454
1455         * gst-libs/gst/tag/gstid3tag.c: (tag_matches):
1456           Map ID3v2 TSOP, TSOA and TSOT frames to new SORTNAME tags (#414539).
1457
1458         * gst-libs/gst/tag/gstvorbistag.c: (tag_matches),
1459           (gst_tag_to_vorbis_comments):
1460           Map new SORTNAME tags (these tags aren't even semi-official, so I'm
1461           just mapping everything I found in the wild) (#414539).
1462
1463 2007-10-24  Wim Taymans  <wim.taymans@gmail.com>
1464
1465         Inspired by patch of: René Stadler <mail at renestadler dot de>
1466
1467         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
1468         (gst_decode_bin_autoplug_continue),
1469         (gst_decode_bin_autoplug_factories),
1470         (gst_decode_bin_autoplug_select), (analyze_new_pad), (connect_pad),
1471         (find_compatibles):
1472         * gst/playback/gstplay-marshal.list:
1473         Remove the autoplug-sort signal and replace it with a binding friendly
1474         autoplug-select signal.
1475         Add an autoplug-factories signal that can be used to generate a list of
1476         factories to try to autoplug.
1477         Add the GstPad to the autoplugging signal args as it might be needed to
1478         make a good factory selection.
1479         Fix up the marshallers for this. Fixes #407282.
1480
1481 2007-10-23  Tim-Philipp Müller  <tim at centricular dot net>
1482
1483         * gst-libs/gst/tag/gsttagdemux.c:
1484           Don't abort with an assertion if we receive a seek event with
1485           a start type of NONE (see launchpad bug #155878).
1486
1487 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
1488
1489         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
1490         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
1491         (gst_ximagesink_change_state), (gst_ximagesink_reset):
1492         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_event_thread),
1493         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_xcontext_clear),
1494         (gst_xvimagesink_change_state), (gst_xvimagesink_reset):
1495         Make sure that before we clean up the X resources, we shutdown and join
1496         the event thread.
1497         Also make sure the event thread does not shut down immediatly after
1498         startup because the running variable is not yet correctly set.
1499         Fixes #378770. 
1500
1501 2007-10-16  Wim Taymans  <wim.taymans@gmail.com>
1502
1503         * gst/playback/gstdecodebin.c: (new_pad), (type_found):
1504         Make the window for a race in typefind and shutting down smaller until
1505         we figure out the right locking here. Avoids #485753 usually.
1506
1507         * gst/playback/gstdecodebin2.c: (type_found), (pad_added_group_cb):
1508         Remove unneeded lock causing a race in typefind and shutting down.
1509         Fixes #485753.
1510
1511         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
1512         Also remove sinks when going to NULL because we might not complete the
1513         state change to PAUSED, causing the PAUSED->READY state change not to
1514         happen.
1515
1516 2007-10-16  Wim Taymans  <wim.taymans@gmail.com>
1517
1518         * gst-libs/gst/audio/gstbaseaudiosink.c:
1519         (gst_base_audio_sink_drain), (gst_base_audio_sink_change_state):
1520         Also explicitly release the ringbuffer when going to NULL because it
1521         is required in the setcaps function, before the state change to PAUSED
1522         completes.
1523
1524 2007-10-16  Tim-Philipp Müller  <tim at centricular dot net>
1525
1526         * tests/icles/.cvsignore:
1527         * tests/icles/Makefile.am:
1528         * tests/icles/stress-playbin.c:
1529           Does what it says on the tin.
1530
1531 2007-10-15  Wim Taymans  <wim.taymans@gmail.com>
1532
1533         * gst/playback/gstqueue2.c: (gst_queue_init), (gst_queue_push_one):
1534         Fix queue negotiation. See #486758.
1535
1536 2007-10-12  Jan Schmidt  <Jan.Schmidt@sun.com>
1537
1538         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
1539         (gst_xvimagesink_xwindow_new),
1540         (gst_xvimagesink_update_colorbalance),
1541         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get):
1542
1543         Fix handling of some of the X atoms. If the last parameter is True,
1544         XInternAtom won't create the atom if it doesn't exist, and therefore
1545         might return None. This causes X errors on Xv implementations that
1546         don't provide the colour balance attributes.
1547
1548 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
1549
1550         * gst-libs/gst/tag/gstvorbistag.c:
1551         * tests/check/libs/tag.c:
1552           Extract vorbis comment LICENSE tags correctly.
1553
1554 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
1555
1556         Patch by: Jason Kivlighn  <jkivlighn gmail com>
1557
1558         * gst-libs/gst/tag/gstid3tag.c:
1559         * tests/check/libs/tag.c:
1560           Map ID3v2 WCOP frame to GST_TAG_COPYRIGHT_URI (#447000).
1561
1562 2007-10-10  Tim-Philipp Müller  <tim at centricular dot net>
1563
1564         * gst-libs/gst/tag/gsttagdemux.c:
1565           Don't error out when a buggy downstream element doesn't
1566           handle the newsegment event we send properly (especially
1567           not without posting a meaningful error message on the
1568           bus). See bug #471370 and launchpad bug #136264.
1569
1570 2007-10-10  Wim Taymans  <wim.taymans@gmail.com>
1571
1572         * gst-libs/gst/audio/gstbaseaudiosink.c:
1573         (gst_base_audio_sink_drain):
1574         Use new basesink method to make our EOS drain interruptable.
1575
1576 2007-10-10  Jan Schmidt  <Jan.Schmidt@sun.com>
1577
1578         * gst-libs/gst/rtp/gstrtppayloads.c:
1579         Fix silly search-replace oversight.
1580
1581 2007-10-09  Wim Taymans  <wim.taymans@gmail.com>
1582
1583         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
1584
1585         * gst-libs/gst/rtp/gstbasertppayload.c: (copy_fixed),
1586         (gst_basertppayload_set_outcaps):
1587         Fix caps memleak. Fixes #484989.
1588
1589
1590 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
1591
1592         * gst-libs/gst/rtp/gstbasertpdepayload.c:
1593         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain):
1594         Fix debug output.
1595
1596 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
1597
1598         * gst-libs/gst/audio/gstbaseaudiosrc.c:
1599         (gst_base_audio_src_create):
1600         Also handle the case where there is no clock set on the audio source,
1601         like in the unit tests.
1602
1603 2007-10-08  Jan Schmidt  <Jan.Schmidt@sun.com>
1604
1605         * gst-libs/gst/rtp/gstrtppayloads.c:
1606         Use unsigned G_MAXUINT8 instead of -1 to initialise a guint8
1607         to avoid compiler warnings
1608
1609 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
1610
1611         * gst/playback/gstdecodebin.c: (type_found),
1612         (gst_decode_bin_change_state):
1613         * gst/playback/gstdecodebin2.c: (type_found),
1614         (gst_decode_bin_change_state):
1615         Don't disconnect the have_type signal because we never reconnect it
1616         later on. Instead keep a variable to see if we already detected a type.
1617
1618 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
1619
1620         * gst/playback/gstdecodebin.c: (add_fakesink), (type_found):
1621         * gst/playback/gstdecodebin2.c: (gst_decode_bin_init),
1622         (type_found):
1623         Unlink the signal handler when we found the type, we're not going to do
1624         anything sensible with more type_found signals anyway.
1625
1626 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
1627
1628         * gst-libs/gst/tag/gsttagdemux.c:
1629           Don't leak caps.
1630
1631 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
1632
1633         * gst-libs/gst/tag/Makefile.am:
1634         * gst-libs/gst/tag/gsttagdemux.c:
1635         * gst-libs/gst/tag/gsttagdemux.h:
1636           API: add GstTagDemux base class for simple tag demuxers.
1637
1638         * docs/libs/gst-plugins-base-libs-docs.sgml:
1639         * docs/libs/gst-plugins-base-libs-sections.txt:
1640           Add GstTagDemux to docs.
1641
1642 2007-10-05  Sebastian Dröge  <slomo@circular-chaos.org>
1643
1644         * gst-libs/gst/rtp/gstrtpbuffer.c:
1645         (gst_rtp_buffer_get_payload_subbuffer):
1646         Fix bug introduced with last commit which inverted the logic and
1647         caused all buffers to be dropped. Fixes #483620.
1648         Thanks to Laurent Glayal <spglegle at yahoo dot fr> for noticing.
1649
1650 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
1651
1652         * gst-libs/gst/rtp/gstrtpbuffer.c:
1653           Replace g_return_if_val (as it could be disabled), with regular return
1654           and warning.
1655
1656 2007-10-03  Stefan Kost  <ensonic@users.sf.net>
1657
1658         * tests/check/pipelines/simple-launch-lines.c:
1659           Print message name and not just number.
1660
1661 2007-10-02  Wim Taymans  <wim.taymans@gmail.com>
1662
1663         * gst-libs/gst/audio/gstbaseaudiosink.c:
1664         (gst_base_audio_sink_async_play):
1665         When slaved to the clock, don't try to align a sample with the previous
1666         one when going to PLAYING again.
1667
1668 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
1669
1670         * tests/examples/snapshot/snapshot.c:
1671           Fix the build.
1672
1673 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
1674
1675         * gst-libs/gst/sdp/gstsdpmessage.h:
1676         Add RFC 3556 bandwidth modifiers.
1677
1678 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
1679
1680         * docs/libs/gst-plugins-base-libs-docs.sgml:
1681         * docs/libs/gst-plugins-base-libs-sections.txt:
1682         * gst-libs/gst/rtp/gstrtppayloads.c:
1683         Update documentation.
1684
1685 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
1686
1687         * gst-libs/gst/rtp/Makefile.am:
1688         * gst-libs/gst/rtp/gstrtppayloads.c: (gst_rtp_payload_info_for_pt),
1689         (gst_rtp_payload_info_for_name):
1690         * gst-libs/gst/rtp/gstrtppayloads.h:
1691         Added new file and header to deal with payload info.
1692
1693         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data),
1694         (gst_rtp_buffer_default_clock_rate):
1695         * gst-libs/gst/rtp/gstrtpbuffer.h:
1696         Payload specific stuff is move to new headers.
1697         Implement _default_clock rate using the new payload function.
1698
1699         * gst-libs/gst/sdp/gstsdpmessage.c: (is_multicast_address),
1700         (gst_sdp_parse_line):
1701         * gst-libs/gst/sdp/gstsdpmessage.h:
1702         Add some more comments.
1703
1704 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
1705
1706         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
1707         (sdp_check_header), (sdp_type_find), (plugin_init):
1708         Add typefind function for application/sdp.
1709         Remove some old dirac typefind code that was ifdeffed out.
1710
1711 2007-09-29  Sebastien Moutte <sebastien@moutte.net>
1712
1713         * win32/common/libgstaudio.def:
1714         Add new exported functions.
1715         * win32/vs6/grammar.dsp:
1716         Add autogeneration and copy of some autegenerated files from win32/common
1717         for rtsp library.
1718         * win32/vs6/libgstaudioconvert.dsp:
1719         Add gstaudioquantize.c to the build.
1720         * win32/vs6/libgstinterfaces.dsp:
1721         Add videoorientation.c to the build.
1722         * win32/vs6/libgstriff.dsp:
1723         Add libgsttag to the link libraries list.
1724         * win32/vs6/libgstvolume.dsp:
1725         Add liboil to the link.
1726         * win32/vs6/gst_plugins_base.dsw:
1727         * win32/vs6/libgstrtsp.dsp:
1728         * win32/common/libgstrtsp.def:
1729         Add files to build libgstrtsp library.
1730         
1731 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
1732
1733         * tests/examples/snapshot/snapshot.c: (main):
1734         Print error when pipeline failed to construct.
1735
1736 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
1737
1738         * configure.ac:
1739         * gst-libs/gst/tag/gstid3tag.c:
1740         * gst-libs/gst/tag/gstvorbistag.c:
1741           Add mappings for the new GST_TAG_COMPOSER for vorbis comments
1742           and ID3v2 tags.
1743
1744 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
1745
1746         * gst-libs/gst/floatcast/floatcast.h:
1747           Don't include config.h in an installed public header, this
1748           might break compilation of applications that don't have such
1749           a header and doesn't necessarily do what it's supposed to do
1750           anyway (ie. check for the lrint/lrintf defines) (#442065).
1751           Add docs for the various macros and document how this header
1752           has to be used (link against libm, etc.); add a few FIXMEs;
1753           include math.h for non-c99 code path.  Based on patch by
1754           Jan Schmidt.
1755           
1756 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
1757
1758         * configure.ac:
1759         Use AG_GST_ARG_WITH_PLUGINS and AG_GST_ARG_ENABLE_EXTERNAL instead
1760         of duplicating these macros in configure.ac.
1761
1762 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
1763
1764         * po/hu.po:
1765         * po/sv.po:
1766         * po/uk.po:
1767           Updated translations to 0.10.14
1768
1769 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
1770
1771         translated by: Jakub Bogusz <qboosh@pld-linux.org>
1772
1773         * po/pl.po:
1774           Added Polish translation.
1775
1776 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
1777
1778         translated by: Ilkka Tuohela <hile@iki.fi>
1779
1780         * po/fi.po:
1781           Added Finnish translation.
1782
1783 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
1784
1785         translated by: Jorge González González <aloriel@gmail.com>
1786
1787         * po/es.po:
1788           Added Spanish translation.
1789
1790 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
1791
1792         translated by: Mogens Jaeger <mogens@jaeger.tf>
1793
1794         * po/da.po:
1795           Added Danish translation.
1796
1797 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
1798
1799         translated by: Funda Wang <fundawang@linux.net.cn>
1800
1801         * po/zh_CN.po:
1802           Added Chinese (simplified) translation.
1803
1804 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
1805
1806         translated by: Alexander Shopov <ash@contact.bg>
1807
1808         * po/bg.po:
1809           Added Bulgarian translation.
1810
1811 2007-09-21  Wim Taymans  <wim.taymans@gmail.com>
1812
1813         * gst/playback/gstqueue2.c: (gst_queue_push_one):
1814         Fix compilation wrt printf arguments.
1815
1816 2007-09-20  Wim Taymans  <wim.taymans@gmail.com>
1817
1818         * configure.ac:
1819         * tests/examples/Makefile.am:
1820         * tests/examples/snapshot/.cvsignore:
1821         * tests/examples/snapshot/Makefile.am:
1822         * tests/examples/snapshot/snapshot.c: (main):
1823         Add simple snapshot example program using appsink.
1824
1825 2007-09-20  Stefan Kost  <ensonic@users.sf.net>
1826
1827         * tests/check/generic/states.c:
1828           Improved state change unit test.
1829
1830 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
1831
1832         * docs/plugins/.cvsignore:
1833         * tests/check/.cvsignore:
1834           Ignore registries in any format.
1835
1836 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
1837
1838         * gst-libs/gst/rtp/gstbasertpdepayload.c:
1839         (gst_base_rtp_depayload_chain),
1840         (gst_base_rtp_depayload_set_gst_timestamp):
1841         Only copy timestamp on outgoing packets if the depayloader did not set
1842         one.
1843         Also copy duration on outgoing packets.
1844
1845 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
1846
1847         * gst-libs/gst/rtp/gstbasertppayload.c: (copy_fixed),
1848         (gst_basertppayload_set_outcaps):
1849         Fix compilation because of missing %d in printf.
1850         When fixating caps, fixate what we can and throw away all remaining
1851         unfixed caps, subclasses should do something smart if they need to.
1852
1853 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
1854
1855         * ext/gnomevfs/gstgnomevfssrc.c:
1856           Improve debug logs a bit and be more verbose if things go wrong.
1857
1858 2007-09-17  Jan Schmidt  <Jan.Schmidt@sun.com>
1859
1860         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
1861         (gst_text_overlay_set_property):
1862         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
1863         * gst-libs/gst/audio/gstbaseaudiosink.c:
1864         (gst_base_audio_sink_render):
1865         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_ntp_to_unix),
1866         (gst_rtcp_unix_to_ntp):
1867         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_get_type):
1868         * gst/playback/gstqueue2.c:
1869         * tests/examples/seek/seek.c: (set_scale):
1870         Fix a bunch of compile warnings shown with Forte.
1871
1872         * gst/audiorate/gstaudiorate.c:
1873         Always pull in config.h before including any system headers.
1874
1875 2007-09-17  Wim Taymans  <wim.taymans@gmail.com>
1876
1877         * gst/playback/gstqueue2.c: (update_buffering),
1878         (gst_queue_locked_flush), (gst_queue_locked_enqueue),
1879         (gst_queue_handle_sink_event), (gst_queue_chain),
1880         (gst_queue_push_one), (gst_queue_sink_activate_push),
1881         (gst_queue_src_activate_push), (gst_queue_src_activate_pull):
1882         Also fix #476514 for queue2.
1883
1884 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
1885
1886         * gst-libs/gst/rtp/gstbasertpdepayload.c:
1887         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_setcaps),
1888         (gst_base_rtp_depayload_chain),
1889         (gst_base_rtp_depayload_handle_sink_event),
1890         (gst_base_rtp_depayload_push_full),
1891         (gst_base_rtp_depayload_set_gst_timestamp),
1892         (gst_base_rtp_depayload_change_state):
1893         Remove code to deal with RTP to GST time conversion, we now just copy
1894         the GST timestamp we receive to the outgoing buffers.
1895         Handle segment and flushes correctly.
1896
1897         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
1898         When we have no valid input timestamp, use the previous rtp timestamp on
1899         the outgoing RTP packet instead of the RTP base time.
1900
1901 2007-09-15  David Schleef  <ds@schleef.org>
1902
1903         * ext/alsa/gstalsa.c:
1904         * ext/alsa/gstalsadeviceprobe.c:
1905         * ext/alsa/gstalsamixer.c:
1906         * ext/alsa/gstalsasink.c:
1907         * ext/alsa/gstalsasrc.c:
1908           Change alsa alloca's to malloc to fix warnings on gcc-4.2.
1909
1910 2007-09-15  Wim Taymans  <wim.taymans@gmail.com>
1911
1912         * gst-libs/gst/rtp/gstbasertppayload.c:
1913         (gst_basertppayload_set_outcaps), (gst_basertppayload_push):
1914         Add some debug info when negotiating caps.
1915
1916 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
1917
1918         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
1919         A buffer with an empty payload is also a valid buffer.
1920
1921 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
1922
1923         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_event),
1924         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
1925         (gst_basertppayload_change_state):
1926         Make sure we start our RTP timestamp from the random base RTP
1927         timestamp even if the buffer timestamp starts from some random value.
1928
1929 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
1930
1931         * configure.ac:
1932         * tests/examples/Makefile.am:
1933         * tests/examples/dynamic/.cvsignore:
1934         * tests/examples/dynamic/Makefile.am:
1935         * tests/examples/dynamic/addstream.c: (create_stream),
1936         (pause_play_stream), (message_received), (eos_message_received),
1937         (perform_step), (main):
1938         Add simple exmple app to demonstrate starting and pausing live and
1939         non-live bins in a PLAYING pipeline.
1940
1941 2007-09-14  Julien MOUTTE  <julien@moutte.net>
1942
1943         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add some
1944         typefind for QCP files (RFC #3625)
1945
1946 2007-09-13  Wim Taymans  <wim.taymans@gmail.com>
1947
1948         * gst-libs/gst/audio/gstbaseaudiosink.c:
1949         (gst_base_audio_sink_init):
1950         Disable pull mode scheduling, we're not ready for it yet and it subtly
1951         breaks a lot of things.
1952
1953 2007-09-12  Tim-Philipp Müller  <tim at centricular dot net>
1954
1955         * tests/check/elements/libvisual.c:
1956           Test all libvisual plugins, not just the first one; this reproduces
1957           bug #450336 quite easily.  Looks like a problem with the 'jess'
1958           visualisation.
1959
1960 2007-09-12  Tim-Philipp Müller  <tim at centricular dot net>
1961
1962         * tests/check/Makefile.am:
1963         * tests/check/elements/.cvsignore:
1964         * tests/check/elements/libvisual.c:
1965           Add basic libvisual test case in an attempt to reproduce bug #450336.
1966           Doesn't reproduce that bug, but some other crasher instead (invalid
1967           free), at least with make elements/libvisual.forever and the bumscope
1968           plugin on x86-64/gutsy. Leaving test disabled for now.
1969
1970 2007-09-11  Wim Taymans  <wim.taymans@gmail.com>
1971
1972         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
1973
1974         * gst-libs/gst/rtsp/gstrtspconnection.c:
1975         (gst_rtsp_connection_read_internal), (gst_rtsp_connection_read),
1976         (read_body), (gst_rtsp_connection_receive):
1977         Make sure we can not cancel in the middle of receiving a message.
1978         Fixes #475731.
1979
1980 2007-09-11  Tim-Philipp Müller  <tim at centricular dot net>
1981
1982         Patch by: Josep Torra Valles <josep@fluendo.com>
1983
1984         * gst/playback/gstplaybasebin.c:
1985           Increase upper limit for audio queue a bit; fixes preroll problem
1986           with playbin and decodebin2 when playing a quicktime trailer with
1987           multichannel audio via http (#464666).
1988
1989 2007-09-10  Wim Taymans  <wim.taymans@gmail.com>
1990
1991         * gst-libs/gst/audio/gstbaseaudiosrc.c:
1992         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
1993         (gst_base_audio_src_provide_clock),
1994         (gst_base_audio_src_set_property),
1995         (gst_base_audio_src_get_property), (gst_base_audio_src_create):
1996         * gst-libs/gst/audio/gstbaseaudiosrc.h:
1997         Allow othe clocks than the internal clock to be used for the pipeline.
1998         Add property to disable clock provide.
1999         API: GstBaseAudioSrc::provide-clock
2000
2001 2007-09-10  Stefan Kost  <ensonic@users.sf.net>
2002
2003         * gst/playback/gstdecodebin2.c:
2004           Don't leak request pads. Fixes #475395.
2005
2006 2007-09-09  Sebastian Dröge  <slomo@circular-chaos.org>
2007
2008         Patch by: René Stadler <mail at renestadler dot de>
2009
2010         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
2011         (gst_ximage_buffer_class_init):
2012         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
2013         (gst_xvimage_buffer_class_init):
2014         Correctly chain up finalize with the parent class to prevent
2015         memory leaks. Fixes #474880.
2016
2017 2007-09-09  Sebastian Dröge  <slomo@circular-chaos.org>
2018
2019         * gst/volume/gstvolume.c: (volume_choose_func):
2020         * tests/check/elements/volume.c: (GST_START_TEST):
2021         Revert the latest change: floating point samples are allowed to
2022         have any value, not only values in the range [-1,1]. Thanks to Andy
2023         Wingo for noticing.
2024         Also fix processing of int32 samples with volumes > 4 by making the
2025         unity value smaller which prevents overflows.
2026
2027 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
2028
2029         * gst-libs/gst/rtp/gstrtpbuffer.c:
2030         * tests/check/libs/rtp.c:
2031           Fix gst_rtp_buffer_set_csrc() and enable csrc-related unit test checks.
2032
2033 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
2034
2035         Based on patch by: Haakon Sporsheim  <haakon.sporsheim at tandberg com>
2036
2037         * gst-libs/gst/rtp/gstrtpbuffer.c:
2038           Fix up GstRTPHeader helper struct so that compilers will not under
2039           any circumstances add padding in between our fields, as currently
2040           happens with MSVC on win32, because that would lead to us sending
2041           out RTP payloads with broken RTP headers (#471194).
2042           Fix assertion guards for gst_rtp_buffer_get_csrc() and _set_csrc().
2043           
2044         * tests/check/Makefile.am:
2045         * tests/check/libs/.cvsignore:
2046         * tests/check/libs/rtp.c:
2047           Add some simple unit tests for GstRTPBuffer. Some are disabled
2048           because the code tested still needs fixing (set_csrc() does not work).
2049
2050 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
2051
2052         * win32/MANIFEST:
2053         * win32/common/gstrtsp-enumtypes.c:
2054         * win32/common/gstrtsp-enumtypes.h:
2055         * win32/common/interfaces-enumtypes.c:
2056         * win32/common/interfaces-enumtypes.h:
2057         * win32/common/multichannel-enumtypes.c:
2058           Add rtsp enumtypes (#474384) and update others.
2059
2060 2007-09-06  Stefan Kost  <ensonic@users.sf.net>
2061
2062         * configure.ac:
2063           Fix configure check for HAVE_LIBXML_HTML.
2064
2065 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
2066
2067         * tests/check/libs/.cvsignore:
2068           Ignore more, in case the build bots work again one day.
2069
2070 2007-09-06  Sebastian Dröge  <slomo@circular-chaos.org>
2071
2072         Reviewed by:  Stefan Kost  <ensonic@users.sf.net>
2073
2074         * configure.ac:
2075         * gst-libs/gst/Makefile.am:
2076         * gst-libs/gst/fft/Makefile.am:
2077         * gst-libs/gst/fft/_kiss_fft_guts_f32.h:
2078         * gst-libs/gst/fft/_kiss_fft_guts_f64.h:
2079         * gst-libs/gst/fft/_kiss_fft_guts_s16.h:
2080         * gst-libs/gst/fft/_kiss_fft_guts_s32.h:
2081         * gst-libs/gst/fft/gstfft.c: (gst_fft_next_fast_length):
2082         * gst-libs/gst/fft/gstfft.h:
2083         * gst-libs/gst/fft/gstfftf32.c: (gst_fft_f32_new),
2084         (gst_fft_f32_fft), (gst_fft_f32_inverse_fft), (gst_fft_f32_free),
2085         (gst_fft_f32_window), (gst_fft_f32_magnitude), (gst_fft_f32_phase):
2086         * gst-libs/gst/fft/gstfftf32.h:
2087         * gst-libs/gst/fft/gstfftf64.c: (gst_fft_f64_new),
2088         (gst_fft_f64_fft), (gst_fft_f64_inverse_fft), (gst_fft_f64_free),
2089         (gst_fft_f64_window), (gst_fft_f64_magnitude), (gst_fft_f64_phase):
2090         * gst-libs/gst/fft/gstfftf64.h:
2091         * gst-libs/gst/fft/gstffts16.c: (gst_fft_s16_new),
2092         (gst_fft_s16_fft), (gst_fft_s16_inverse_fft), (gst_fft_s16_free),
2093         (gst_fft_s16_window), (gst_fft_s16_magnitude), (gst_fft_s16_phase):
2094         * gst-libs/gst/fft/gstffts16.h:
2095         * gst-libs/gst/fft/gstffts32.c: (gst_fft_s32_new),
2096         (gst_fft_s32_fft), (gst_fft_s32_inverse_fft), (gst_fft_s32_free),
2097         (gst_fft_s32_window), (gst_fft_s32_magnitude), (gst_fft_s32_phase):
2098         * gst-libs/gst/fft/gstffts32.h:
2099         * gst-libs/gst/fft/kiss_fft_f32.c: (kf_bfly2), (kf_bfly4),
2100         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
2101         (kiss_fft_f32_alloc), (kiss_fft_f32_stride), (kiss_fft_f32),
2102         (kiss_fft_f32_cleanup), (kiss_fft_f32_next_fast_size):
2103         * gst-libs/gst/fft/kiss_fft_f32.h:
2104         * gst-libs/gst/fft/kiss_fft_f64.c: (kf_bfly2), (kf_bfly4),
2105         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
2106         (kiss_fft_f64_alloc), (kiss_fft_f64_stride), (kiss_fft_f64),
2107         (kiss_fft_f64_cleanup), (kiss_fft_f64_next_fast_size):
2108         * gst-libs/gst/fft/kiss_fft_f64.h:
2109         * gst-libs/gst/fft/kiss_fft_s16.c: (kf_bfly2), (kf_bfly4),
2110         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
2111         (kiss_fft_s16_alloc), (kiss_fft_s16_stride), (kiss_fft_s16),
2112         (kiss_fft_s16_cleanup), (kiss_fft_s16_next_fast_size):
2113         * gst-libs/gst/fft/kiss_fft_s16.h:
2114         * gst-libs/gst/fft/kiss_fft_s32.c: (kf_bfly2), (kf_bfly4),
2115         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
2116         (kiss_fft_s32_alloc), (kiss_fft_s32_stride), (kiss_fft_s32),
2117         (kiss_fft_s32_cleanup), (kiss_fft_s32_next_fast_size):
2118         * gst-libs/gst/fft/kiss_fft_s32.h:
2119         * gst-libs/gst/fft/kiss_fftr_f32.c: (kiss_fftr_f32_alloc),
2120         (kiss_fftr_f32), (kiss_fftri_f32):
2121         * gst-libs/gst/fft/kiss_fftr_f32.h:
2122         * gst-libs/gst/fft/kiss_fftr_f64.c: (kiss_fftr_f64_alloc),
2123         (kiss_fftr_f64), (kiss_fftri_f64):
2124         * gst-libs/gst/fft/kiss_fftr_f64.h:
2125         * gst-libs/gst/fft/kiss_fftr_s16.c: (kiss_fftr_s16_alloc),
2126         (kiss_fftr_s16), (kiss_fftri_s16):
2127         * gst-libs/gst/fft/kiss_fftr_s16.h:
2128         * gst-libs/gst/fft/kiss_fftr_s32.c: (kiss_fftr_s32_alloc),
2129         (kiss_fftr_s32), (kiss_fftri_s32):
2130         * gst-libs/gst/fft/kiss_fftr_s32.h:
2131         * gst-libs/gst/fft/kiss_version:
2132         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
2133         * pkgconfig/gstreamer-plugins-base.pc.in:
2134         Add libgstfft, a FFT library based on Kiss FFT which is
2135         BSD licensed. Supported sample formats are int16, int32,
2136         float and double. For those formats a real FFT and IFFT
2137         can be done, different windowing functions can be applied
2138         and functions for extracting the magnitude and phase exist.
2139         Fixes #468619.
2140
2141         * docs/libs/Makefile.am:
2142         * docs/libs/gst-plugins-base-libs-docs.sgml:
2143         * docs/libs/gst-plugins-base-libs-sections.txt:
2144         Integrate libgstfft into the docs.
2145
2146         * tests/check/Makefile.am:
2147         * tests/check/libs/fft.c: (GST_START_TEST), (fft_suite), (main):
2148         Add unit tests for libgstfft, currently only testing the FFT.
2149         Unit tests for IFFT will follow soon.
2150
2151 2007-09-05  Wim Taymans  <wim.taymans@gmail.com>
2152
2153         Patch by: Peter Kjellerstedt  <pkj at axis com>
2154
2155         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_time_init),
2156         (gst_sdp_message_init), (gst_sdp_message_uninit),
2157         (is_multicast_address), (gst_sdp_message_as_text),
2158         (gst_sdp_message_get_origin), (gst_sdp_message_set_connection),
2159         (gst_sdp_message_get_connection), (gst_sdp_message_add_bandwidth),
2160         (gst_sdp_message_add_time), (gst_sdp_message_add_zone),
2161         (gst_sdp_message_get_key), (gst_sdp_message_get_attribute_val_n),
2162         (gst_sdp_message_get_attribute_val), (gst_sdp_message_add_media),
2163         (gst_sdp_media_init), (gst_sdp_media_uninit),
2164         (gst_sdp_media_as_text), (gst_sdp_media_set_port_info),
2165         (gst_sdp_media_connections_len), (gst_sdp_media_add_connection),
2166         (gst_sdp_media_bandwidths_len), (gst_sdp_media_get_bandwidth),
2167         (gst_sdp_media_add_bandwidth), (gst_sdp_media_attributes_len),
2168         (gst_sdp_parse_line), (print_media), (gst_sdp_message_dump):
2169         * gst-libs/gst/sdp/gstsdpmessage.h:
2170         Separate INIT_ARRAY() and related macros into two versions, one for
2171         structures and one for pointers (e.g., INIT_ARRAY() and
2172         INIT_PTR_ARRAY()). This fixes a segmentation error on freeing the
2173         lists of emails and phone numbers.
2174         Add missing const as appropriate.
2175         Change all gint to guint since they all actually represent unsigned
2176         values.
2177         Do not use time as a variable name as it shadows the global time().
2178         Add gst_sdp_message_as_text() and gst_sdp_media_as_text().
2179         Actually implement gst_sdp_message_add_time().
2180         Make gst_sdp_message_add_time() take repeat times as an argument.
2181         Store repeat times in GstSDPTime as a GArray rather than as gchar**.
2182         Corrected the definition of gst_sdp_media_get_bandwidth() (was
2183         misspelled as badwidth).
2184         gst-indented and a little clean up. Fixes #471067.
2185
2186 2007-09-05  Sebastian Dröge  <slomo@circular-chaos.org>
2187
2188         * gst/volume/gstvolume.c: (volume_choose_func),
2189         (volume_process_double), (volume_process_double_clamp),
2190         (volume_process_float_clamp):
2191         Correctly clamp float/double samples in the [-1.0,1.0] range to
2192         prevent weird effects.
2193         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
2194         Add unit tests for all samples types that had none before.
2195
2196 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
2197
2198         * gst-libs/gst/rtp/gstrtpbuffer.c:
2199           Need to include stdlib.h for abs() here too.
2200
2201 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
2202
2203         * gst/playback/gststreaminfo.c:
2204           Fix build.
2205
2206 2007-09-05  Stefan Kost  <ensonic@users.sf.net>
2207
2208         * gst/playback/gststreaminfo.c:
2209           Clean up some half-disabled code and comment.
2210
2211 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
2212
2213         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
2214
2215         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2216         (gst_base_rtp_payload_audio_handle_event):
2217         Return FALSE from the event handler to let the parent class handle the
2218         event. Fixes #446766.
2219
2220         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2221         (gst_base_rtp_depayload_chain), (gst_base_rtp_depayload_push_full):
2222         Mark outgoing buffers as DISCONT if the incomming buffer was DISCONT.
2223
2224         * gst-libs/gst/rtp/gstbasertppayload.c:
2225         Bump the MTU to 1400.
2226
2227 2007-09-03  Johan Dahlin  <jdahlin@async.com.br>
2228
2229         * gst/typefind/gsttypefindfunctions.c (plugin_init): 
2230         Add an audio/x-nsf typefind function for the nsfdec element.
2231
2232 2007-09-03  Renato Filho  <renato.filho@indt.org.br>
2233         * gst/playback/gstplaybasebin.c:
2234         Included "myth://" on stream_uris list for enable buffering to mythtv files
2235
2236 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
2237
2238         * docs/libs/gst-plugins-base-libs-sections.txt:
2239         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_get_rb),
2240         (gst_rtcp_packet_sdes_copy_entry), (gst_rtcp_ntp_to_unix),
2241         (gst_rtcp_unix_to_ntp):
2242         * gst-libs/gst/rtp/gstrtcpbuffer.h:
2243         Fix parsing of RB blocks.
2244         Fix docs.
2245         Added helper functions to convert to/from UNIX and NTP time.
2246         API: gst_rtcp_ntp_to_unix()
2247         API: gst_rtcp_unix_to_ntp()
2248
2249         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data),
2250         (gst_rtp_buffer_get_header_len),
2251         (gst_rtp_buffer_get_extension_data),
2252         (gst_rtp_buffer_get_payload_subbuffer),
2253         (gst_rtp_buffer_get_payload_len), (gst_rtp_buffer_get_payload),
2254         (gst_rtp_buffer_ext_timestamp):
2255         * gst-libs/gst/rtp/gstrtpbuffer.h:
2256         Fix some more docs.
2257         Implement handling of packets with extensions.
2258         Fix padding check in _validate().
2259         Added function to get extension data.
2260         API: gst_rtp_buffer_get_header_len()
2261         API: gst_rtp_buffer_get_extension_data()
2262
2263 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
2264
2265         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2266         (gst_base_rtp_depayload_class_init),
2267         (gst_base_rtp_depayload_set_gst_timestamp):
2268         Add some more docs for the queue-delay property and fix a typo in a
2269         comment.
2270
2271         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
2272         Fix typo.
2273
2274 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
2275
2276         * gst-libs/gst/audio/gstbaseaudiosink.c:
2277         (gst_base_audio_sink_skew_slaving), (gst_base_audio_sink_render),
2278         (gst_base_audio_sink_change_state):
2279         When skew slaving, try to hover around the middle of a segment so that
2280         we at most drift by half a segment.
2281         If we are aligning in the oposite direction of the clock skew, we don't
2282         have to resync.
2283
2284 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
2285
2286         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2287         (gst_base_rtp_depayload_setcaps),
2288         (gst_base_rtp_depayload_set_gst_timestamp):
2289         Be less silly with the segment start, just apply the clock-base to the
2290         timestamp.
2291
2292 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
2293
2294         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2295         (gst_base_rtp_depayload_class_init),
2296         (gst_base_rtp_depayload_finalize),
2297         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
2298         (gst_base_rtp_depayload_handle_sink_event),
2299         (gst_base_rtp_depayload_set_gst_timestamp),
2300         (gst_base_rtp_depayload_change_state):
2301         * gst-libs/gst/rtp/gstbasertpdepayload.h:
2302         Deprecate the queue handling thread thing and remove the code.
2303         Use new method to calculate the extended timestamp.
2304
2305 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
2306
2307         * gst-libs/gst/rtp/gstrtcpbuffer.c:
2308         (gst_rtcp_packet_sdes_copy_entry):
2309         Use g_strndup which does exactly what we want.
2310
2311         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_compare_seqnum),
2312         (gst_rtp_buffer_ext_timestamp):
2313         * gst-libs/gst/rtp/gstrtpbuffer.h:
2314         Add helper function to compare seqnums.
2315         Add helper function to calculate extended timestamps.
2316         API: gst_rtp_buffer_compare_seqnum()
2317         API: gst_rtp_buffer_ext_timestamp()
2318
2319 2007-08-30  Wim Taymans  <wim.taymans@gmail.com>
2320
2321         * gst-libs/gst/rtp/gstrtcpbuffer.c:
2322         (gst_rtcp_packet_sdes_get_entry),
2323         (gst_rtcp_packet_sdes_copy_entry):
2324         * gst-libs/gst/rtp/gstrtcpbuffer.h:
2325         Fix and document SDES item data function.
2326         Add new function that makes a proper copy of SDES item data.
2327         API: gst_rtcp_packet_sdes_copy_entry()
2328
2329 2007-08-30  Stefan Kost  <ensonic@users.sf.net>
2330
2331         * configure.ac:
2332         * gst/Makefile.am:
2333           The tcp and subparse plugins are under gst, but not totaly free of
2334           dependencies. Handle selection inconfigure.ac, so that they show up
2335           on the final list of what is build and what is not. Maybe they should
2336           better be moved to ext.
2337
2338 2007-08-30  Stefan Kost  <ensonic@users.sf.net>
2339
2340         Patch by: Daniel Díaz  <yosoy@danieldiaz.org>
2341
2342         * configure.ac:
2343         * gst/Makefile.am:
2344           Check if libxml provides HTML parser which subparse needs.
2345           Fixes #451970.
2346
2347 2007-08-29  Tim-Philipp Müller  <tim at centricular dot net>
2348
2349         * ext/alsa/gstalsa.c:
2350           Fix typo and compilation on big endian systems.
2351
2352 2007-08-29  Tim-Philipp Müller  <tim at centricular dot net>
2353
2354         * gst/subparse/gstssaparse.c:
2355           Convert SSA newline codes into actual newline characters (#470766).
2356
2357 2007-08-28  Tim-Philipp Müller  <tim at centricular dot net>
2358
2359         * docs/libs/gst-plugins-base-libs-sections.txt:
2360         * gst-libs/gst/pbutils/install-plugins.c:
2361         * gst-libs/gst/pbutils/install-plugins.h:
2362         * tests/check/libs/pbutils.c:
2363           API: also add gst_install_plugins_supported() while we're at it
2364           (see #470456).
2365
2366 2007-08-28  Tim-Philipp Müller  <tim at centricular dot net>
2367
2368         * docs/libs/gst-plugins-base-libs-sections.txt:
2369         * gst-libs/gst/pbutils/missing-plugins.c:
2370         * gst-libs/gst/pbutils/missing-plugins.h:
2371         * tests/check/libs/pbutils.c:
2372           API: add gst_missing_*_installer_detail_new() convenience API so
2373           that applications that know exactly what they're missing can request
2374           installer detail strings for those items directly instead of having
2375           to first create a dummy missing-plugin message and then get the
2376           installer detail string from that.  Fixes #470456.
2377
2378 2007-08-27  Jan Schmidt  <thaytan@mad.scientist.com>
2379
2380         * gst/playback/gstdecodebin.c: (close_pad_link):
2381         We need to set up delayed-linking whenever the caps are non-fixed,
2382         not just when there are multiple types - use gst_pad_is_fixed()
2383         to test.
2384
2385 2007-08-26  Tim-Philipp Müller  <tim at centricular dot net>
2386
2387         * gst-libs/gst/pbutils/missing-plugins.c:
2388           (gst_missing_plugin_message_get_installer_detail):
2389           Add missing separator in PID fallback case.
2390
2391 2007-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
2392
2393         * ext/alsa/Makefile.am:
2394         There is no GST_PLUGINS_BASE_LIBS defined.
2395         
2396         * ext/alsa/gstalsa.c:
2397         * ext/alsa/gstalsasink.c: (gst_alsasink_delay):
2398         * ext/alsa/gstalsasrc.c: (gst_alsasrc_delay):
2399         Add support for ALSA 24-bit formats.
2400         snd_pcm_delay can return an error code, especially
2401         during XRUNS. In that case, the best we can do is assume
2402         delay = 0.
2403
2404         * gst/audioconvert/Makefile.am:
2405         Add flags from -base before any more-remote dependencies.
2406
2407 2007-08-23  Sebastian Dröge  <slomo@circular-chaos.org>
2408
2409         Based on a patch by: Davyd Madeley <davyd at madeley dot id dot au>
2410
2411         * gst/volume/gstvolume.c: (volume_choose_func),
2412         (volume_update_real_volume), (gst_volume_set_volume),
2413         (gst_volume_init), (volume_process_int32),
2414         (volume_process_int32_clamp), (volume_process_int24),
2415         (volume_process_int24_clamp), (volume_process_int16),
2416         (volume_process_int16_clamp), (volume_process_int8),
2417         (volume_process_int8_clamp), (volume_update_volume), (plugin_init):
2418         * gst/volume/gstvolume.h:
2419         Add support for int32, int24 and int8 to the volume element.
2420         Fixes #445529.
2421
2422 2007-08-23  Tim-Philipp Müller  <tim at centricular dot net>
2423
2424         * tests/examples/Makefile.am:
2425           Fix even more.
2426
2427 2007-08-23  Stefan Kost  <ensonic@users.sf.net>
2428
2429         * configure.ac:
2430         * docs/libs/Makefile.am:
2431         * docs/libs/gst-plugins-base-libs-docs.sgml:
2432         * docs/libs/gst-plugins-base-libs-sections.txt:
2433         * ext/gnomevfs/gstgnomevfssrc.c:
2434         * ext/gnomevfs/gstgnomevfssrc.h:
2435         * gst-libs/gst/Makefile.am:
2436         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
2437         * pkgconfig/gstreamer-plugins-base.pc.in:
2438         * sys/v4l/v4lsrc_calls.c:
2439         * tests/examples/Makefile.am:
2440         * win32/common/config.h:
2441           Revert unwanted commit. many thanks to moap. I want a fix for 
2442           https://thomas.apestaart.org/moap/trac/ticket/239
2443
2444 2007-08-23  Stefan Kost  <ensonic@users.sf.net>
2445
2446         * gst/volume/gstvolume.c:
2447           Move passthrough below gst_object_sync_values(). Fixes #442654.
2448
2449 2007-08-22  Wim Taymans  <wim.taymans@gmail.com>
2450
2451         * gst-libs/gst/audio/audio.c:
2452         Clarify the docs a little.
2453
2454 2007-08-22  Stefan Kost  <ensonic@users.sf.net>
2455
2456         * gst/volume/gstvolume.c:
2457           Enable liboil for float and add more details about problems with
2458           int16.
2459
2460 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
2461
2462         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
2463         Fix RGB24 masks as spotted by _ke (Daniel G. Siegel) on IRC.
2464
2465 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
2466
2467         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward):
2468         When calculating the first timestamp of the buffers, don't go below 0
2469         and clip the samples because the offset was on the eos page.
2470         Fixes #466717.
2471
2472 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
2473
2474         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain),
2475         (gst_ogg_demux_collect_chain_info):
2476         Also submit the eos page when trying to find the first timestamp.
2477         See #466717.
2478
2479 2007-08-17  Sebastian Dröge  <slomo@circular-chaos.org>
2480
2481         * gst-libs/gst/audio/audio.h:
2482         Use gst_util_uint64_scale() instead of doing the math
2483         with double for GST_FRAMES_TO_CLOCK_TIME() and
2484         GST_CLOCK_TIME_TO_FRAMES(). For large timestamps this
2485         prevents rounding errors. Fixes #467667.
2486
2487 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
2488
2489         * gst-libs/gst/rtsp/gstrtspconnection.c:
2490         (gst_rtsp_connection_connect), (gst_rtsp_connection_write),
2491         (gst_rtsp_connection_read), (gst_rtsp_connection_poll):
2492         * gst-libs/gst/rtsp/gstrtspconnection.h:
2493         Small cleanups.
2494         On shutdown, don't read the control socket yet.
2495         Set timeout value correctly in all cases.
2496         Add function to check if the server accepts reads or writes.
2497         API: gst_rtsp_connection_poll()
2498
2499         * gst-libs/gst/rtsp/gstrtspdefs.h:
2500         Fix compilation with -pedantic.
2501         Add enum for _poll.
2502
2503 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
2504
2505         Patch by: Olivier Crete  <tester at tester ca>
2506
2507         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
2508         (gst_basertppayload_getcaps):
2509         * gst-libs/gst/rtp/gstbasertppayload.h:
2510         Add getcaps vfunc to basertppayload. See #465146.
2511
2512 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
2513
2514         * gst/playback/gstplaybasebin.c: (queue_threshold_reached):
2515         Only post buffering messages when we are a stream.
2516
2517 2007-08-15  Tim-Philipp Müller  <tim at centricular dot net>
2518
2519         * gst-libs/gst/pbutils/install-plugins.c:
2520         * gst-libs/gst/pbutils/missing-plugins.c:
2521           Small docs fix and addition.
2522
2523 2007-08-13  Tim-Philipp Müller  <tim at centricular dot net>
2524
2525         * tests/icles/.cvsignore:
2526         * tests/icles/Makefile.am:
2527         * tests/icles/test-textoverlay.c:
2528           Add a dumb little test for textoverlay alignments.
2529
2530 2007-08-13  Tim-Philipp Müller  <tim at centricular dot net>
2531
2532         Patch by: Dan Williams  <dcbw redhat com>
2533
2534         * ext/pango/gsttextoverlay.c:
2535         * ext/pango/gsttextoverlay.h:
2536           API: add "line-alignment" property (#459334). Add gtk-doc blurb for
2537           "silent" property so there's a Since tag in the API reference.
2538
2539 2007-08-12  Wim Taymans  <wim.taymans@gmail.com>
2540
2541         * gst-libs/gst/rtp/gstbasertppayload.c:
2542         (gst_basertppayload_set_outcaps):
2543         * gst-libs/gst/rtp/gstbasertppayload.h:
2544         Improve caps negotiation so that downstream elements can confiure
2545         certain RTP properties by fixing them on the caps. See #465146.
2546         Add docs.
2547
2548 2007-08-11  Tim-Philipp Müller  <tim at centricular dot net>
2549
2550         * docs/libs/gst-plugins-base-libs-sections.txt:
2551         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2552         * gst-libs/gst/rtp/gstbasertpdepayload.h:
2553           Mark as deprecated some macros which were presumably meant to be
2554           private API and accidentally exposed in the public header file.
2555           Also actually _init() lock (only works at the moment because the
2556           struct is zeroed out when created and the initial values in the
2557           mutex struct are zeroes too). (#459585)
2558
2559 2007-08-10  Stefan Kost  <ensonic@users.sf.net>
2560
2561         * docs/libs/Makefile.am:
2562           Remove cruft and do some cleanups.
2563
2564         * docs/libs/gst-plugins-base-libs-docs.sgml:
2565           Prepare for comming gtkdoc features (rebase against online docs).
2566
2567 2007-08-10  Michael Smith <msmith@fluendo.com>
2568
2569         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
2570           Debug output fixes.
2571         * tests/check/elements/audiorate.c: (do_perfect_stream_test),
2572         (GST_START_TEST):
2573           Change the number of buffers used; 500 is too many and leads to
2574           timeouts.
2575
2576 2007-08-10  Tim-Philipp Müller  <tim at centricular dot net>
2577
2578         * gst/playback/gstqueue2.c:
2579         * gst/videorate/gstvideorate.c:
2580           Printf format fixes (#465028).
2581
2582 2007-08-09  Michael Smith <msmith@fluendo.com>
2583
2584         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
2585           If we have a large (> 1 second) discontinuity, push a series of
2586           smaller buffers rather than a single very large buffer. Avoids
2587           unreasonably large single buffer allocations when encountering a
2588           large gap.
2589         * tests/check/elements/audiorate.c: (GST_START_TEST),
2590         (audiorate_suite):
2591           Add a test for this.
2592
2593 2007-08-09  Jan Schmidt  <thaytan@mad.scientist.com>
2594
2595         * gst/playback/gstplaybasebin.c: (group_commit),
2596         (queue_remove_probe), (queue_threshold_reached):
2597
2598         Patch by: Josep Torra Valles <josep@fluendo.com>
2599         Fixes: #465015
2600         Make sure we remove the check_queues buffer probe from the 
2601         correct queue to avoid racily going back to "buffering 99%" when
2602         buffering is actually complete.
2603
2604         Also, fix the spelling of Josep's surname in the ChangeLog.
2605
2606 2007-08-09  Stefan Kost  <ensonic@users.sf.net>
2607
2608         * ext/ogg/gstoggmux.c:
2609           Do not leak oggmux instance.
2610         
2611         * ext/vorbis/vorbisenc.c:
2612           Also log values.
2613
2614 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
2615
2616         * po/hu.po:
2617         * po/it.po:
2618         * po/nl.po:
2619         * po/uk.po:
2620         * po/vi.po:
2621           Updated translations.
2622
2623 2007-08-08  Stefan Kost  <ensonic@users.sf.net>
2624
2625         patch by: Yang Hong <hongyang@redflag-linux.com>
2626
2627         * ext/pango/gsttextoverlay.c:
2628         * ext/pango/gsttextoverlay.h:
2629           Add 'silent' property to GstTimeOverlay. Fixes #462979
2630
2631 2007-08-08  Wim Taymans  <wim.taymans@gmail.com>
2632
2633         Patch by: Josep Torra Valles <josep@fluendo.com>
2634
2635         * docs/plugins/gst-plugins-base-plugins.args:
2636         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init),
2637         (gst_uri_decode_bin_init), (gst_uri_decode_bin_set_property),
2638         (gst_uri_decode_bin_get_property), (gen_source_element):
2639         Add connection-speed property. Fixes #464690.
2640
2641 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
2642
2643         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
2644
2645         * configure.ac:
2646         * gst-libs/gst/rtsp/Makefile.am:
2647         * gst-libs/gst/rtsp/gstrtspconnection.c:
2648         (gst_rtsp_connection_connect):
2649         Fix compilation on windows. Fixes #464320.
2650
2651 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
2652
2653         Patch by: Josep Torra Valles <josep@fluendo.com>
2654
2655         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
2656         (gst_play_base_bin_init), (queue_threshold_reached),
2657         (gen_source_element), (setup_substreams),
2658         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
2659         (gst_play_base_bin_get_streaminfo_value_array):
2660         * gst/playback/gstplaybasebin.h:
2661         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
2662         (gst_play_bin_set_property), (gst_play_bin_get_property),
2663         (gst_play_bin_handle_redirect_message):
2664         Move connection-speed property from playbin to playbasebin so that we
2665         can also configure it in source elements that have the connection-speed
2666         property. Fixes #464028.
2667         Add some debug info here and there.
2668
2669 2007-08-06  Sebastian Dröge  <slomo@circular-chaos.org>
2670
2671         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
2672         Properly respond to conversion queries. Fixes #464079.
2673
2674 2007-08-03  Sebastian Dröge  <slomo@circular-chaos.org>
2675
2676         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_init),
2677         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
2678         (gst_audio_test_src_init_sine_table),
2679         (gst_audio_test_src_change_wave), (gst_audio_test_src_create):
2680         * gst/audiotestsrc/gstaudiotestsrc.h:
2681         Add float/double and int32 support to audiotestsrc. Fixes #460422.
2682         Also set the default volume to the default value specified in the
2683         GParamSpec.
2684
2685 2007-08-03  Sebastian Dröge  <slomo@circular-chaos.org>
2686
2687         Patch by: Jens Granseuer <jensgr at gmx dot net>
2688
2689         * gst/audioconvert/gstaudioquantize.c:
2690         Fix C89 incompatibilities and spelling of explanations. Fixes #463215.
2691
2692 2007-08-03  Wim Taymans  <wim.taymans@gmail.com>
2693
2694         * gst-libs/gst/rtsp/gstrtsptransport.c: (gst_rtsp_transport_parse):
2695         Add rdt manager for rdt transport.
2696         Fix parsing of RDT transport.
2697
2698 2007-08-03  Jan Schmidt  <thaytan@mad.scientist.com>
2699
2700         * configure.ac:
2701         Back to CVS
2702
2703 === release 0.10.14 ===
2704
2705 2007-08-03  Jan Schmidt <thaytan@mad.scientist.com>
2706
2707         * configure.ac:
2708           releasing 0.10.14, "Light Years Ahead"
2709
2710 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
2711
2712         * tests/check/libs/audio.c: (GST_START_TEST):
2713         Fix the test to reflect the behaviour of gst_audio_clip_buffer.
2714
2715 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
2716
2717         * gst-libs/gst/audio/audio.c:
2718         When clipping a buffer with no timestamp, assume it is
2719         within the segment without warnings.
2720
2721         Fixes: #460978
2722
2723 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
2724
2725         * gst-libs/gst/rtsp/gstrtspextension.c: (gst_rtsp_extension_send):
2726         Fire the signal on the object, not the interface.
2727
2728 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
2729
2730         * gst-libs/gst/rtsp/.cvsignore:
2731         Ber. Don't include the full path, idiot.
2732
2733 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
2734
2735         * gst-libs/gst/rtsp/.cvsignore:
2736         Ignore generated files.
2737
2738 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
2739
2740         * gst-libs/gst/interfaces/Makefile.am:
2741         * gst-libs/gst/interfaces/interfaces-marshal.list:
2742         * gst-libs/gst/interfaces/rtspextension.c:
2743         * gst-libs/gst/interfaces/rtspextension.h:
2744         * gst-libs/gst/rtsp/Makefile.am:
2745         * gst-libs/gst/rtsp/gstrtsp.h:
2746         * gst-libs/gst/rtsp/gstrtspextension.c:
2747         (gst_rtsp_extension_get_type), (gst_rtsp_extension_iface_init),
2748         (gst_rtsp_extension_detect_server),
2749         (gst_rtsp_extension_before_send), (gst_rtsp_extension_after_send),
2750         (gst_rtsp_extension_parse_sdp), (gst_rtsp_extension_setup_media),
2751         (gst_rtsp_extension_configure_stream),
2752         (gst_rtsp_extension_get_transports),
2753         (gst_rtsp_extension_stream_select), (gst_rtsp_extension_send):
2754         * gst-libs/gst/rtsp/gstrtspextension.h:
2755         * gst-libs/gst/rtsp/rtsp-marshal.list:
2756         Move the rtspextension.h interface into gstrtspextension.h
2757         as part of libgstrtsp instead of libgstinterfaces, because it's
2758         only for use within plugins, not applications. 
2759         Add stuff to do the enum & marshal generation needed in libgstrtsp now.
2760         Use the GST_TYPE_RTSP_RESULT enum type for the return value of the 
2761         signal that the GstRTSPExtension interface emits, since G_TYPE_ENUM
2762         is abstract.
2763
2764 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
2765
2766         * gst-libs/gst/interfaces/Makefile.am:
2767         * gst-libs/gst/interfaces/interfaces-marshal.list:
2768         * gst-libs/gst/interfaces/rtspextension.c:
2769         (gst_rtsp_extension_iface_init),
2770         (gst_rtsp_extension_stream_select), (gst_rtsp_extension_send):
2771         * gst-libs/gst/interfaces/rtspextension.h:
2772         Fix marshaller for the send signal.
2773         Add URL to stream selection interface method.
2774
2775 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
2776
2777         * gst-libs/gst/riff/Makefile.am:
2778         Pull in our dependencies from -base before those from outside.
2779
2780 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
2781
2782         * docs/libs/gst-plugins-base-libs-sections.txt:
2783         * gst-libs/gst/rtsp/gstrtspbase64.c: (gst_rtsp_base64_decode_ip):
2784         * gst-libs/gst/rtsp/gstrtspbase64.h:
2785         API: gst_rtsp_base64_decode_ip()
2786         Added function to decode Base64 in-place.
2787
2788 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
2789
2790         * tests/check/libs/.cvsignore:
2791         Ignore the mixer test binary.
2792
2793 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
2794
2795         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward):
2796         Gratuitous comment change to trigger a rebuild on the buildbots.
2797
2798 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
2799
2800         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_media_get_media),
2801         (gst_sdp_media_get_port), (gst_sdp_media_get_num_ports),
2802         (gst_sdp_media_get_proto), (gst_sdp_media_formats_len),
2803         (gst_sdp_media_get_format), (gst_sdp_media_get_information),
2804         (gst_sdp_media_connections_len), (gst_sdp_media_get_connection),
2805         (gst_sdp_media_bandwidths_len), (gst_sdp_media_get_badwidth),
2806         (gst_sdp_media_get_key), (gst_sdp_media_attributes_len),
2807         (gst_sdp_media_get_attribute), (gst_sdp_media_get_attribute_val_n),
2808         (gst_sdp_media_get_attribute_val):
2809         * gst-libs/gst/sdp/gstsdpmessage.h:
2810         Constify args where we can.
2811
2812 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
2813
2814         * gst-libs/gst/interfaces/Makefile.am:
2815         * gst-libs/gst/interfaces/rtspextension.c:
2816         (gst_rtsp_extension_get_type), (gst_rtsp_extension_iface_init),
2817         (gst_rtsp_extension_detect_server),
2818         (gst_rtsp_extension_before_send), (gst_rtsp_extension_after_send),
2819         (gst_rtsp_extension_parse_sdp), (gst_rtsp_extension_setup_media),
2820         (gst_rtsp_extension_configure_stream),
2821         (gst_rtsp_extension_get_transports),
2822         (gst_rtsp_extension_stream_select), (gst_rtsp_extension_send):
2823         * gst-libs/gst/interfaces/rtspextension.h:
2824         Move interface for RTSP extensions from -good to here.
2825         Added helper methods to invoke interface methods.
2826
2827 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
2828
2829         * docs/libs/gst-plugins-base-libs-sections.txt:
2830         * gst-libs/gst/rtsp/gstrtspdefs.h:
2831         * gst-libs/gst/rtsp/gstrtspmessage.c: (key_value_foreach),
2832         (gst_rtsp_message_get_type), (gst_rtsp_message_parse_request),
2833         (gst_rtsp_message_init_response),
2834         (gst_rtsp_message_parse_response), (gst_rtsp_message_new_data),
2835         (gst_rtsp_message_parse_data), (gst_rtsp_message_add_header),
2836         (gst_rtsp_message_remove_header), (gst_rtsp_message_get_header),
2837         (gst_rtsp_message_append_headers), (gst_rtsp_message_set_body),
2838         (gst_rtsp_message_get_body), (dump_key_value):
2839         * gst-libs/gst/rtsp/gstrtspmessage.h:
2840         * gst-libs/gst/rtsp/gstrtsprange.c: (parse_npt_time),
2841         (parse_npt_range), (parse_clock_range), (parse_smpte_range),
2842         (gst_rtsp_range_parse):
2843         * gst-libs/gst/rtsp/gstrtsprange.h:
2844         * gst-libs/gst/rtsp/gstrtsptransport.c:
2845         * gst-libs/gst/rtsp/gstrtspurl.c:
2846         Fix some more RTSP docs.
2847         Add some missing methods for dealing with messages.
2848
2849 2007-07-24  Wim Taymans  <wim.taymans@gmail.com>
2850
2851         * docs/libs/gst-plugins-base-libs-docs.sgml:
2852         * docs/libs/gst-plugins-base-libs-sections.txt:
2853         * gst-libs/gst/rtsp/gstrtspbase64.c: (gst_rtsp_base64_encode):
2854         * gst-libs/gst/rtsp/gstrtspbase64.h:
2855         * gst-libs/gst/rtsp/gstrtspconnection.c:
2856         (gst_rtsp_connection_connect), (add_auth_header),
2857         (gst_rtsp_connection_write), (gst_rtsp_connection_send),
2858         (read_body), (gst_rtsp_connection_receive),
2859         (gst_rtsp_connection_next_timeout),
2860         (gst_rtsp_connection_reset_timeout),
2861         (gst_rtsp_connection_set_auth):
2862         * gst-libs/gst/rtsp/gstrtspconnection.h:
2863         * gst-libs/gst/rtsp/gstrtspdefs.c: (rtsp_init_status):
2864         * gst-libs/gst/rtsp/gstrtspdefs.h:
2865         * gst-libs/gst/rtsp/gstrtspmessage.h:
2866         * gst-libs/gst/rtsp/gstrtsprange.c: (parse_npt_time),
2867         (parse_npt_range), (parse_clock_range), (parse_smpte_range),
2868         (gst_rtsp_range_parse):
2869         * gst-libs/gst/rtsp/gstrtspurl.h:
2870         Added beginnings of RTSP documentation.
2871
2872 2007-07-24  Wim Taymans  <wim.taymans@gmail.com>
2873
2874         * docs/libs/Makefile.am:
2875         * docs/libs/gst-plugins-base-libs-docs.sgml:
2876         * docs/libs/gst-plugins-base-libs-sections.txt:
2877         * gst-libs/gst/sdp/gstsdp.h:
2878         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_message_set_origin),
2879         (gst_sdp_message_set_connection), (gst_sdp_message_add_bandwidth),
2880         (gst_sdp_message_add_time), (gst_sdp_message_add_zone),
2881         (gst_sdp_message_set_key), (gst_sdp_message_get_attribute_val_n),
2882         (gst_sdp_message_get_attribute_val),
2883         (gst_sdp_message_add_attribute), (gst_sdp_media_new),
2884         (gst_sdp_media_init), (gst_sdp_media_uninit), (gst_sdp_media_free),
2885         (gst_sdp_media_get_media), (gst_sdp_media_set_media),
2886         (gst_sdp_media_get_port), (gst_sdp_media_get_num_ports),
2887         (gst_sdp_media_set_port_info), (gst_sdp_media_get_proto),
2888         (gst_sdp_media_set_proto), (gst_sdp_media_formats_len),
2889         (gst_sdp_media_get_format), (gst_sdp_media_add_format),
2890         (gst_sdp_media_get_information), (gst_sdp_media_set_information),
2891         (gst_sdp_media_connections_len), (gst_sdp_media_get_connection),
2892         (gst_sdp_media_add_connection), (gst_sdp_media_bandwidths_len),
2893         (gst_sdp_media_get_badwidth), (gst_sdp_media_add_bandwidth),
2894         (gst_sdp_media_set_key), (gst_sdp_media_get_key),
2895         (gst_sdp_media_attributes_len), (gst_sdp_media_add_attribute),
2896         (gst_sdp_media_get_attribute_val_n),
2897         (gst_sdp_media_get_attribute_val), (gst_sdp_message_parse_buffer),
2898         (print_media), (gst_sdp_message_dump):
2899         * gst-libs/gst/sdp/gstsdpmessage.h:
2900         Document the SDP library.
2901         Add some of the missing SDPMedia methods.
2902
2903 2007-07-24  Wim Taymans  <wim.taymans@gmail.com>
2904
2905         * configure.ac:
2906         * gst-libs/gst/Makefile.am:
2907         * gst-libs/gst/rtsp/Makefile.am:
2908         * gst-libs/gst/rtsp/gstrtspbase64.c: (gst_rtsp_base64_encode):
2909         * gst-libs/gst/rtsp/gstrtspbase64.h:
2910         * gst-libs/gst/rtsp/gstrtspconnection.c: (inet_aton),
2911         (gst_rtsp_connection_create), (gst_rtsp_connection_connect),
2912         (add_auth_header), (add_date_header), (gst_rtsp_connection_write),
2913         (gst_rtsp_connection_send), (read_line), (read_string), (read_key),
2914         (parse_response_status), (parse_request_line), (parse_line),
2915         (gst_rtsp_connection_read), (read_body),
2916         (gst_rtsp_connection_receive), (gst_rtsp_connection_close),
2917         (gst_rtsp_connection_free), (gst_rtsp_connection_next_timeout),
2918         (gst_rtsp_connection_reset_timeout), (gst_rtsp_connection_flush),
2919         (gst_rtsp_connection_set_auth):
2920         * gst-libs/gst/rtsp/gstrtspconnection.h:
2921         * gst-libs/gst/rtsp/gstrtspdefs.c: (rtsp_init_status),
2922         (gst_rtsp_strresult), (gst_rtsp_method_as_text),
2923         (gst_rtsp_version_as_text), (gst_rtsp_header_as_text),
2924         (gst_rtsp_status_as_text), (gst_rtsp_find_header_field),
2925         (gst_rtsp_find_method):
2926         * gst-libs/gst/rtsp/gstrtspdefs.h:
2927         * gst-libs/gst/rtsp/gstrtspmessage.c: (key_value_foreach),
2928         (gst_rtsp_message_new), (gst_rtsp_message_init),
2929         (gst_rtsp_message_new_request), (gst_rtsp_message_init_request),
2930         (gst_rtsp_message_new_response), (gst_rtsp_message_init_response),
2931         (gst_rtsp_message_init_data), (gst_rtsp_message_unset),
2932         (gst_rtsp_message_free), (gst_rtsp_message_add_header),
2933         (gst_rtsp_message_remove_header), (gst_rtsp_message_get_header),
2934         (gst_rtsp_message_append_headers), (gst_rtsp_message_set_body),
2935         (gst_rtsp_message_take_body), (gst_rtsp_message_get_body),
2936         (gst_rtsp_message_steal_body), (dump_mem), (dump_key_value),
2937         (gst_rtsp_message_dump):
2938         * gst-libs/gst/rtsp/gstrtspmessage.h:
2939         * gst-libs/gst/rtsp/gstrtsprange.c: (parse_npt_time),
2940         (parse_npt_range), (parse_clock_range), (parse_smpte_range),
2941         (gst_rtsp_range_parse), (gst_rtsp_range_free):
2942         * gst-libs/gst/rtsp/gstrtsprange.h:
2943         * gst-libs/gst/rtsp/gstrtsptransport.c: (gst_rtsp_transport_new),
2944         (gst_rtsp_transport_init), (gst_rtsp_transport_get_mime),
2945         (gst_rtsp_transport_get_manager), (parse_mode), (parse_range),
2946         (range_as_text), (rtsp_transport_mode_as_text),
2947         (rtsp_transport_profile_as_text), (rtsp_transport_ltrans_as_text),
2948         (gst_rtsp_transport_parse), (gst_rtsp_transport_as_text),
2949         (gst_rtsp_transport_free):
2950         * gst-libs/gst/rtsp/gstrtsptransport.h:
2951         * gst-libs/gst/rtsp/gstrtspurl.c: (gst_rtsp_url_parse),
2952         (gst_rtsp_url_free), (gst_rtsp_url_set_port),
2953         (gst_rtsp_url_get_port), (gst_rtsp_url_get_request_uri):
2954         * gst-libs/gst/rtsp/gstrtspurl.h:
2955         * gst-libs/gst/sdp/Makefile.am:
2956         * gst-libs/gst/sdp/gstsdp.h:
2957         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_origin_init),
2958         (gst_sdp_connection_init), (gst_sdp_bandwidth_init),
2959         (gst_sdp_time_init), (gst_sdp_zone_init), (gst_sdp_key_init),
2960         (gst_sdp_attribute_init), (gst_sdp_message_new),
2961         (gst_sdp_message_init), (gst_sdp_message_uninit),
2962         (gst_sdp_message_free), (gst_sdp_media_new), (gst_sdp_media_init),
2963         (gst_sdp_media_uninit), (gst_sdp_media_free),
2964         (gst_sdp_message_set_origin), (gst_sdp_message_get_origin),
2965         (gst_sdp_message_set_connection), (gst_sdp_message_get_connection),
2966         (gst_sdp_message_add_bandwidth), (gst_sdp_message_add_time),
2967         (gst_sdp_message_add_zone), (gst_sdp_message_set_key),
2968         (gst_sdp_message_get_key), (gst_sdp_message_get_attribute_val_n),
2969         (gst_sdp_message_get_attribute_val),
2970         (gst_sdp_message_add_attribute), (gst_sdp_message_add_media),
2971         (gst_sdp_media_add_attribute), (gst_sdp_media_add_bandwidth),
2972         (gst_sdp_media_add_format), (gst_sdp_media_get_attribute),
2973         (gst_sdp_media_get_attribute_val_n),
2974         (gst_sdp_media_get_attribute_val), (gst_sdp_media_get_format),
2975         (read_string), (read_string_del), (gst_sdp_parse_line),
2976         (gst_sdp_message_parse_buffer), (print_media),
2977         (gst_sdp_message_dump):
2978         * gst-libs/gst/sdp/gstsdpmessage.h:
2979         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
2980         Move SDP and RTSP from helper objects in -good to a reusable library.
2981         Use a proper gst_ namespace.
2982
2983 2007-07-23  Sebastian Dröge  <slomo@circular-chaos.org>
2984
2985         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
2986         (vorbis_dec_flush_decode):
2987         Use the new buffer clipping function from gstaudio here.
2988
2989 2007-07-23  Sebastian Dröge  <slomo@circular-chaos.org>
2990
2991         * docs/libs/gst-plugins-base-libs-sections.txt:
2992         * gst-libs/gst/audio/audio.c: (gst_audio_buffer_clip):
2993         * gst-libs/gst/audio/audio.h:
2994         * tests/check/libs/audio.c: (GST_START_TEST), (audio_suite):
2995         API: Add buffer clipping function for raw audio buffers. Fixes #456656.
2996         Also add deprecation guards for gst_audio_structure_set_int() to the
2997         header.
2998
2999 2007-07-23  Stefan Kost  <ensonic@users.sf.net>
3000
3001         * docs/libs/gst-plugins-base-libs-sections.txt:
3002           Cleanup the docs.
3003
3004 2007-07-23  Wim Taymans  <wim.taymans@gmail.com>
3005
3006         Patch by: Dan Williams <dcbw at redhat dot com>
3007
3008         * gst/playback/gstplaybasebin.c:
3009         (gst_play_base_bin_get_streaminfo_value_array):
3010         Don't return NULL when querying the stream info value array but instead
3011         return an empty array. Fixes #459204.
3012
3013 2007-07-23  Tim-Philipp Müller  <tim at centricular dot net>
3014
3015         * gst/playback/gsturidecodebin.c:
3016           Init debug category before using it.
3017
3018 2007-07-21  Jan Schmidt  <thaytan@noraisin.net>
3019
3020         * gst-libs/gst/interfaces/mixer.h:
3021         Add padding vars in place of the signal pointers
3022         when building with DISABLE_DEPRECATED so that the
3023         interface structure doesn't change size.
3024
3025 2007-07-20  Jan Schmidt  <thaytan@noraisin.net>
3026
3027         * docs/libs/gst-plugins-base-libs-sections.txt:
3028         * ext/alsa/gstalsamixer.c:
3029         * ext/alsa/gstalsamixer.h:
3030         * ext/alsa/gstalsamixerelement.c:
3031         * ext/alsa/gstalsamixertrack.c:
3032         * gst-libs/gst/interfaces/mixer.c:
3033         * gst-libs/gst/interfaces/mixer.h:
3034         * gst-libs/gst/interfaces/mixeroptions.c:
3035         * gst-libs/gst/interfaces/mixeroptions.h:
3036         * gst-libs/gst/interfaces/mixertrack.c:
3037         * gst-libs/gst/interfaces/mixertrack.h:
3038         * tests/check/Makefile.am:
3039         * tests/check/libs/mixer.c:
3040
3041         Patch By: Marc-Andre Lureau <marcandre.lureau@gmail.com>
3042         Fixes: #152864 
3043
3044         Add support for notifying mixer changes on the message bus, and
3045         implement it in alsamixer.
3046
3047         API: gst_mixer_get_mixer_flags
3048         API: gst_mixer_message_parse_mute_toggled
3049         API: gst_mixer_message_parse_record_toggled
3050         API: gst_mixer_message_parse_volume_changed
3051         API: gst_mixer_message_parse_option_changed
3052         API: GstMixerMessageType
3053         API: GstMixerFlags
3054
3055 2007-07-20  Michael Smith <msmith@fluendo.com>
3056
3057         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
3058         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps):
3059           xcontext->im_format is only for testing XShm support (as the header
3060           file comments document). Use xvimage->im_format for everything else.
3061           Avoids spurious warnings on buffer allocation before setcaps.
3062
3063 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
3064
3065         * tests/examples/volume/Makefile.am:
3066         * tests/icles/Makefile.am:
3067           We should use $(LIBM).
3068
3069 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
3070
3071         * tests/icles/Makefile.am:
3072           This needs -lm.
3073
3074 2007-07-16  Wim Taymans  <wim.taymans@gmail.com>
3075
3076         * gst-libs/gst/rtp/gstbasertppayload.c:
3077         (gst_basertppayload_class_init), (gst_basertppayload_init),
3078         (gst_basertppayload_set_property),
3079         (gst_basertppayload_get_property):
3080         Don't break ABI, restore previous ranges. Keep the default random
3081         selection of timestamp and seqnum offset but as soon as the app sets a
3082         specific value, use that one.
3083
3084 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
3085
3086         Patch by: Bastien Nocera <hadess at hadess dot net>
3087
3088         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
3089         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
3090         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
3091         * sys/xvimage/xvimagesink.h:
3092         Add option to turn off double-buffering for debugging purposes.
3093         Fixes #437169.
3094
3095 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
3096
3097         Patch by: Jorn Baayen <jorn at openedhand dot com>
3098
3099         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
3100         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
3101         (gst_ximagesink_init), (gst_ximagesink_class_init):
3102         * sys/ximage/ximagesink.h:
3103         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
3104         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
3105         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
3106         * sys/xvimage/xvimagesink.h:
3107         add 'handle-expose' property. Useful for video widgets which may want to
3108         be in control of Expose behaviour. Fixes #380625
3109
3110 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
3111
3112         * gst-libs/gst/rtp/gstbasertppayload.c:
3113         (gst_basertppayload_class_init), (gst_basertppayload_init),
3114         (gst_basertppayload_event), (gst_basertppayload_push),
3115         (gst_basertppayload_set_property),
3116         (gst_basertppayload_get_property),
3117         (gst_basertppayload_change_state):
3118         * gst-libs/gst/rtp/gstbasertppayload.h:
3119         Fix ranges of rtp payloader properties so that the full range can be
3120         used in addition to -1 (random).
3121         Fix wrong seqnum reporting in caps.
3122         Fixes #420326.
3123
3124 2007-07-13  Wim Taymans  <wim.taymans@gmail.com>
3125
3126         * gst/videorate/gstvideorate.c: (gst_video_rate_init),
3127         (gst_video_rate_query):
3128         Use boilerplate.
3129         Add latency query, might not be perfect yet but already works a lot
3130         better. Fixes #442557.
3131
3132 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
3133
3134         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
3135         (gst_xvimagesink_setcaps):
3136         * sys/xvimage/xvimagesink.h:
3137         After a caps change, redraw our borders to avoid garbage left there
3138         when the image format changes to a smaller size, like 16:9 -> 4:3
3139         Also, hold the flow_lock a bit longer in the set_caps while we're
3140         fiddling with the xcontext.
3141
3142 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
3143
3144         * Makefile.am:
3145         * configure.ac:
3146         * tests/Makefile.am:
3147         Remove bogus check for libcheck, since we check for
3148         gstreamer-check and it pulls in the required info from there, and we
3149         weren't actually _using_ the information for libcheck ourselves
3150         anyway.
3151
3152 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
3153
3154         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
3155         (gst_ffmpeg_caps_to_pixfmt):
3156         Fix the r_mask test for RGBA32 on little-endian.
3157         Fix a stupid typo that would have obviously broken 
3158         compilation on big-endian, if anyone was testing.
3159
3160 2007-07-12  Wim Taymans  <wim.taymans@gmail.com>
3161
3162         * gst/videotestsrc/videotestsrc.c: (paint_hline_AYUV),
3163         (paint_hline_str4):
3164         * gst/videotestsrc/videotestsrc.h:
3165         Add alpha to the color struct.
3166         Use a default alpha value of 255 instead of 128.
3167
3168 2007-07-12  Wim Taymans  <wim.taymans@gmail.com>
3169
3170         * gst/playback/gstplaybasebin.c: (no_more_pads_full),
3171         (setup_source):
3172         Clear the dynamic pads counter when starting a new uri. This makes
3173         reusing playbin work again.
3174         Fixes #454264.
3175
3176 2007-07-12  Stefan Kost  <ensonic@users.sf.net>
3177
3178         * configure.ac:
3179           Use pkg-config to locate check.
3180
3181 2007-07-12  Tim-Philipp Müller  <tim at centricular dot net>
3182
3183         * configure.ac:
3184         * tests/check/elements/volume.c: (GST_START_TEST):
3185           Fix 'make check' build against core CVS.
3186
3187 2007-07-10  Stefan Kost  <ensonic@users.sf.net>
3188
3189         * gst-libs/gst/interfaces/propertyprobe.c:
3190         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
3191         * gst-libs/gst/tag/gstvorbistag.c:
3192           Make gtk-doc happy.
3193
3194 2007-07-08  Tim-Philipp Müller  <tim at centricular dot net>
3195
3196         * gst-libs/gst/audio/gstbaseaudiosink.c:
3197         (gst_base_audio_sink_callback):
3198           Quick hack to make audiosinks stop at EOS when operating in
3199           pull-mode; needs to be fixed properly some day.
3200
3201 2007-07-06  Stefan Kost  <ensonic@users.sf.net>
3202
3203         * docs/libs/gst-plugins-base-libs-sections.txt:
3204           Fix location of includes in the docs.
3205
3206 2007-07-06  Jan Schmidt  <thaytan@mad.scientist.com>
3207
3208         * gst/ffmpegcolorspace/avcodec.h:
3209         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
3210         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
3211         (gst_ffmpegcsp_avpicture_fill):
3212         * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
3213         (img_get_alpha_info):
3214         Add 2 new pixel formats - ABGR32 and ARGB32, which are reflections
3215         of the existing BGRA32 and RGBA32 formats with the alpha at the other
3216         end of the word. Partially fixes #451908
3217
3218 2007-07-05  Stefan Kost  <ensonic@users.sf.net>
3219
3220         * docs/libs/Makefile.am:
3221         * docs/plugins/Makefile.am:
3222           Simplify --extra-dir as gtkdoc scans recursively.
3223
3224 2007-07-03  Wim Taymans  <wim.taymans@gmail.com>
3225
3226         * gst/adder/gstadder.c: (gst_adder_sink_getcaps),
3227         (gst_adder_request_new_pad):
3228         Make getcaps more robust by not using the proxycaps function. This makes
3229         sure that we don't end up recursively calling getcaps upstream.
3230         See #316248.
3231
3232 2007-06-29  Wim Taymans  <wim.taymans@gmail.com>
3233
3234         * gst/audioconvert/audioconvert.c:
3235         Include math.h to fix compilation.
3236
3237 2007-06-29  Jan Schmidt  <thaytan@mad.scientist.com>
3238
3239         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
3240         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
3241         Add a mapping for YUV format "IYU1", which is a 4:1:1 packed pixel
3242         format, as produced by some dc1394 cameras like the iSight.
3243         See http://www.fourcc.org/yuv.php#IYU1
3244
3245 2007-06-28  Sebastian Dröge  <slomo@circular-chaos.org>
3246
3247         * gst/audioconvert/Makefile.am:
3248         * gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
3249         (check_default), (audio_convert_prepare_context),
3250         (audio_convert_clean_context), (audio_convert_convert):
3251         * gst/audioconvert/audioconvert.h:
3252         * gst/audioconvert/gstaudioconvert.c:
3253         (gst_audio_convert_dithering_get_type),
3254         (gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
3255         (gst_audio_convert_init), (gst_audio_convert_set_caps),
3256         (gst_audio_convert_set_property), (gst_audio_convert_get_property):
3257         * gst/audioconvert/gstaudioconvert.h:
3258         * gst/audioconvert/gstaudioquantize.c:
3259         (gst_audio_quantize_setup_noise_shaping),
3260         (gst_audio_quantize_free_noise_shaping),
3261         (gst_audio_quantize_setup_dither),
3262         (gst_audio_quantize_free_dither),
3263         (gst_audio_quantize_setup_quantize_func),
3264         (gst_audio_quantize_setup), (gst_audio_quantize_free):
3265         * gst/audioconvert/gstaudioquantize.h:
3266         Implement dithering and noise shaping in audioconvert. By default now
3267         TPDF dithering (and no noise shaping) will be used when converting
3268         from a higher bit depth to 20 bit depth or smaller, otherwise
3269         everything will be as it is now.
3270         For the last audioconvert in a pipeline it would make sense to
3271         use some kind of noise shaping, enabling it by default for all
3272         conversions would give undesired results though. Fixes #360246.
3273         * tests/check/elements/audioconvert.c: (setup_audioconvert),
3274         (GST_START_TEST):
3275         Adjust unit test for the new audioconvert.
3276
3277 2007-06-28  Wim Taymans  <wim@fluendo.com>
3278
3279         * gst/playback/gstqueue2.c: (apply_segment), (update_buffering):
3280         Use other metrics as well when estimating the buffer level.
3281
3282 2007-06-28  Wim Taymans  <wim@fluendo.com>
3283
3284         * gst/playback/gstplaybasebin.c: (make_decoder), (setup_source):
3285         Small debug improvement.
3286
3287         * gst/playback/gstqueue2.c: (apply_segment), (update_buffering),
3288         (plugin_init):
3289         Tweak the rate estimation period.
3290         When calculating the buffer filledness in rate estimation mode, don't
3291         mix it with other metrics.
3292
3293 2007-06-28  Wim Taymans  <wim@fluendo.com>
3294
3295         * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
3296         (gst_decode_group_expose), (gst_decode_group_free), (add_fakesink):
3297         When creating the groups, allow for a 5 second, unlimited buffers
3298         preroll phase after which we expose the group.
3299         When the group is exposed, use a small number of buffers up to a 2
3300         second limit. Also disconnect the overrun signal from multiqueue when we
3301         exposed the group because it is not needed anymore.
3302
3303 2007-06-27  Tim-Philipp Müller  <tim at centricular dot net>
3304
3305         * gst-libs/gst/tag/tags.c: (gst_tag_freeform_string_to_utf8):
3306           Don't pass trailing zeroes in fixed-size string arrays in ID3v1 tags
3307           to utf8-validate; fixes recognition of ID3v1 tags in UTF-8 encoding
3308           (#451707); also, output some debugging info when dealing with
3309           freeform strings.
3310
3311         * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite):
3312           Add unit test for the above.
3313
3314 2007-06-27  Tim-Philipp Müller  <tim at centricular dot net>
3315
3316         * gst-libs/gst/pbutils/descriptions.c: (caps_are_rtp_caps):
3317           Add description for Windows Media RTP caps.
3318
3319         * gst-libs/gst/pbutils/missing-plugins.c: (copy_and_clean_caps):
3320           Remove RTP fields that don't define the format from caps.
3321
3322 2007-06-27  Tim-Philipp Müller  <tim at centricular dot net>
3323
3324         * ext/vorbis/vorbisdec.c: (vorbis_dec_decode_buffer):
3325           Skip empty buffers, but not empty header buffers. That way the original
3326           vorbisdec unit test still passes (#451145); also, take into account
3327           that those empty packets might carry a granulepos.
3328
3329         * tests/check/Makefile.am:
3330         * tests/check/elements/vorbisdec.c:
3331         (_create_codebook_header_buffer), (_create_audio_buffer),
3332         (GST_START_TEST), (vorbisdec_suite):
3333           Add unit test that sends an empty packet.
3334
3335 2007-06-27  Wim Taymans  <wim@fluendo.com>
3336
3337         * ext/vorbis/vorbisdec.c: (vorbis_dec_decode_buffer):
3338         Don't error out on 0-sized packets, just emit a warning because this is
3339         not a fatal error. Fixes #451145.
3340
3341 2007-06-25  Stefan Kost  <ensonic@users.sf.net>
3342
3343         * docs/plugins/gst-plugins-base-plugins.args:
3344         * docs/plugins/gst-plugins-base-plugins.signals:
3345         * docs/plugins/inspect/plugin-adder.xml:
3346         * docs/plugins/inspect/plugin-alsa.xml:
3347         * docs/plugins/inspect/plugin-audioconvert.xml:
3348         * docs/plugins/inspect/plugin-audiorate.xml:
3349         * docs/plugins/inspect/plugin-audioresample.xml:
3350         * docs/plugins/inspect/plugin-audiotestsrc.xml:
3351         * docs/plugins/inspect/plugin-cdparanoia.xml:
3352         * docs/plugins/inspect/plugin-decodebin.xml:
3353         * docs/plugins/inspect/plugin-decodebin2.xml:
3354         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
3355         * docs/plugins/inspect/plugin-gdp.xml:
3356         * docs/plugins/inspect/plugin-gnomevfs.xml:
3357         * docs/plugins/inspect/plugin-libvisual.xml:
3358         * docs/plugins/inspect/plugin-ogg.xml:
3359         * docs/plugins/inspect/plugin-pango.xml:
3360         * docs/plugins/inspect/plugin-playbin.xml:
3361         * docs/plugins/inspect/plugin-subparse.xml:
3362         * docs/plugins/inspect/plugin-tcp.xml:
3363         * docs/plugins/inspect/plugin-theora.xml:
3364         * docs/plugins/inspect/plugin-typefindfunctions.xml:
3365         * docs/plugins/inspect/plugin-video4linux.xml:
3366         * docs/plugins/inspect/plugin-videorate.xml:
3367         * docs/plugins/inspect/plugin-videoscale.xml:
3368         * docs/plugins/inspect/plugin-videotestsrc.xml:
3369         * docs/plugins/inspect/plugin-volume.xml:
3370         * docs/plugins/inspect/plugin-vorbis.xml:
3371         * docs/plugins/inspect/plugin-ximagesink.xml:
3372         * docs/plugins/inspect/plugin-xvimagesink.xml:
3373           Update docs with caps info.
3374
3375 2007-06-25  Tim-Philipp Müller  <tim at centricular dot net>
3376
3377         * po/POTFILES.in:
3378           Add more files with translatable strings (#450875).
3379
3380 2007-06-23  Edward Hervey  <edward@fluendo.com>
3381
3382         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_find_chains):
3383         The chain should be freed if we error out here, else it will leak.
3384         * gst/playback/gstdecodebin.c: (disconnect_unlinked_signals),
3385         (cleanup_decodebin):
3386         Don't forget to *properly* remove the signals, else it will leak.
3387
3388 2007-06-22  Jan Schmidt  <thaytan@noraisin.net>
3389
3390         * MAINTAINERS:
3391         Updating all the maintainers files
3392
3393 2007-06-21  Stefan Kost  <ensonic@users.sf.net>
3394
3395         * tests/examples/seek/seek.c: (update_scale), (play_cb), (stop_cb),
3396         (main):
3397           Destroy and recreate parse-launch based pipeline after stop to be able
3398           to play again. Reorder some code and add more comments.
3399
3400 2007-06-20  Jan Schmidt  <thaytan@mad.scientist.com>
3401
3402         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
3403         When handling a delayed-caps notification case, mark
3404         the group as dynamic so that the nbdynamic count is
3405         incremented and decremented correctly. Fixes: #449156
3406         Patch by: Wim Taymans <wim@fluendo.com>
3407
3408 2007-06-19  Andy Wingo  <wingo@pobox.com>
3409
3410         * gst-libs/gst/audio/gstbaseaudiosink.c
3411         (gst_base_audio_sink_init): Enable pull-mode operation.
3412
3413 2007-06-19  Michael Smith <msmith@fluendo.com>
3414
3415         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
3416           Change minimum rate back to 1000 to allow low-sample-rate wav files
3417           to play back.
3418
3419 2007-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
3420
3421         * po/vi.po:
3422           Update translations.
3423
3424 2007-06-15  David Schleef  <ds@schleef.org>
3425
3426         * gst/playback/gstqueue2.c:
3427           Fix compile error from ignored return value.
3428
3429 2007-06-15  Michael Smith <msmith@fluendo.com>
3430
3431         * gst/videoscale/vs_4tap.c: (vs_image_scale_4tap_Y):
3432           Update tmpbuf for all neccesary rows, not just one, as is required
3433           when downscaling.
3434           Fixes #402076.
3435
3436 2007-06-15  Michael Smith <msmith@fluendo.com>
3437
3438         * tests/check/pipelines/oggmux.c: (validate_ogg_page), (is_video),
3439         (eos_buffer_probe):
3440           Add a test that ensures we set DELTA_UNIT on all non-header,
3441           non-video buffers, if we have a video stream.
3442         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
3443         (gst_ogg_mux_process_best_pad):
3444           Move setting delta_pad to earlier, where we inspect all pads, so
3445           that leading audio pages don't get DELTA_UNIT unset if they come
3446           before the first DELTA_UNIT from video pages. Fixes the newly-added
3447           test. Fixes #385527.
3448
3449 2007-06-14  Tim-Philipp Müller  <tim at centricular dot net>
3450
3451         * tests/check/pipelines/streamheader.c: (streamheader_suite):
3452           Disable test_multifdsink_gdp_vorbisenc() on ppc64 since it
3453           fails on the p5-ppc64 build bot and the failure looks like it is due
3454           to the same issue as #348114, ie. a compiler bug.
3455
3456 2007-06-13  Edward Hervey  <edward@fluendo.com>
3457
3458         * gst/playback/gstqueue2.c: (gst_queue_create_read):
3459         Fix build on MacOSX.
3460
3461 2007-06-13  Wim Taymans  <wim@fluendo.com>
3462
3463         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
3464         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain):
3465         Fix compilation on mingw. Fixes #446972.
3466
3467 2007-06-12  Wim Taymans  <wim@fluendo.com>
3468
3469         Patches by: Thiago Sousa Santos <thiagossantos at gmail dot com>
3470
3471         * gst/playback/gstqueue2.c: (update_buffering),
3472         (gst_queue_locked_enqueue):
3473         Fix a division by zero when the max percent is <= 0. Fixes #446572.
3474         also update the buffering status when receiving events. Fixes #446551.
3475
3476 2007-06-11  Wim Taymans  <wim@fluendo.com>
3477
3478         Based on patch by: Thiago Sousa Santos <thiagossantos at gmail dot com>
3479
3480         * gst/playback/gstqueue2.c: (gst_queue_peer_query),
3481         (gst_queue_handle_src_query):
3482         Wait for preroll before attempting to forward a duration query upstream.
3483         Fixes #445505.
3484
3485 2007-06-07  Sebastien Moutte  <sebastien@moutte.net>
3486
3487         * gst-libs/gst/rtp/gstbasertpdepayload.c: 
3488         (gst_base_rtp_depayload_set_gst_timestamp):
3489         Use G_GINT64_CONSTANT macro for int64 constant.
3490         * win32/common/libgstinterfaces.def:
3491         * win32/common/libgsttag.def:
3492         Add new exported functions.
3493
3494 2007-06-07  Tim-Philipp Müller  <tim at centricular dot net>
3495
3496         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
3497           The BOS page of the first Dirac video stream needs to come before
3498           the BOS page of any Vorbis streams or other audio streams, just like
3499           it is with Theora.
3500
3501 2007-06-07  Wim Taymans  <wim@fluendo.com>
3502
3503         * gst/playback/gstqueue2.c: (gst_queue_get_range):
3504         Fix compilation.
3505
3506 2007-06-06  Wim Taymans  <wim@fluendo.com>
3507
3508         Patch by: Thiago Sousa Santos <thiagossantos at gmail dot com>
3509
3510         * gst/playback/gstqueue2.c: (gst_queue_init),
3511         (gst_queue_handle_sink_event), (gst_queue_chain),
3512         (gst_queue_get_range), (gst_queue_src_checkgetrange_function),
3513         (gst_queue_sink_activate_push), (gst_queue_src_activate_push),
3514         (gst_queue_src_activate_pull):
3515         Add pull based scheduling and fix some deadlocks. Fixes #444523.
3516         Does not yet completely work because duration queries upstream won't
3517         block yet.
3518
3519 2007-06-06  Wim Taymans  <wim@fluendo.com>
3520
3521         * configure.ac:
3522         * gst/playback/gstqueue2.c: (gst_queue_create_read):
3523         Some more fseeko checks.
3524
3525 2007-06-06  Wim Taymans  <wim@fluendo.com>
3526
3527         * configure.ac:
3528         check for large file support.
3529
3530 2007-06-05  Sebastian Dröge  <slomo@circular-chaos.org>
3531
3532         Based on a patch by Sven Arvidsson <sa at whiz dot se>:
3533
3534         * gst/subparse/gstsubparse.c: (parse_subrip),
3535         (subviewer_unescape_newlines), (parse_subviewer),
3536         (gst_sub_parse_data_format_autodetect),
3537         (gst_sub_parse_format_autodetect), (gst_subparse_type_find):
3538         * gst/subparse/gstsubparse.h:
3539         Add support for SubViewer version 1 and 2 subtitles. Fixes #394061.
3540         * tests/check/elements/subparse.c: (GST_START_TEST),
3541         (subparse_suite):
3542         Add a unit test for both SubViewer formats.
3543
3544 2007-06-01  Michael Smith <msmith@fluendo.com>
3545
3546         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_do_seek):
3547           Don't overflow intermediate values when seeking to large time values
3548           in audiotestsrc.
3549
3550 2007-06-05  Wim Taymans  <wim@fluendo.com>
3551
3552         * gst/playback/gstqueue2.c: (gst_queue_have_data),
3553         (gst_queue_create_read), (gst_queue_read_item_from_file),
3554         (gst_queue_open_temp_location_file), (gst_queue_locked_enqueue):
3555         Include stdio to define fseeko.
3556
3557 2007-06-05  Wim Taymans  <wim@fluendo.com>
3558
3559         Patch by: Edward Hervey  <edward@fluendo.com>
3560
3561         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
3562         (gst_v4lsrc_query):
3563         Make v4lsrc output segments in GST_FORMAT_TIME. Fixes #442553.
3564
3565 2007-06-05  Tim-Philipp Müller  <tim at centricular dot net>
3566
3567         * gst-libs/gst/riff/Makefile.am:
3568         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_info):
3569           Use gst_tag_utf8_from_freeform_string() from libgsttag instead of
3570           our own implementation.
3571
3572 2007-06-05  Wim Taymans  <wim@fluendo.com>
3573
3574         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3575         (gst_base_rtp_depayload_setcaps),
3576         (gst_base_rtp_depayload_set_gst_timestamp),
3577         (gst_base_rtp_depayload_change_state):
3578         Handle timestamp wraparound.
3579
3580 2007-06-05  Wim Taymans  <wim@fluendo.com>
3581
3582         * gst/playback/gsturidecodebin.c: (no_more_pads_full),
3583         (new_decoded_pad), (remove_pads), (make_decoder), (setup_source),
3584         (gst_uri_decode_bin_change_state):
3585         Make sure we name srcpads uniquely even when using different internal
3586         decodebins.
3587         Signal no-more-pads when no more dynamic elements exist.
3588         Remove pads on cleanup.
3589
3590 2007-06-05  Wim Taymans  <wim@fluendo.com>
3591
3592         Based on patch by: Thiago Sousa Santos <thiagossantos at gmail dot com>
3593
3594         * gst/playback/gstqueue2.c: (gst_queue_class_init),
3595         (gst_queue_init), (gst_queue_finalize),
3596         (gst_queue_write_buffer_to_file), (gst_queue_have_data),
3597         (gst_queue_create_read), (gst_queue_read_item_from_file),
3598         (gst_queue_open_temp_location_file),
3599         (gst_queue_close_temp_location_file), (gst_queue_locked_flush),
3600         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
3601         (gst_queue_is_empty), (gst_queue_is_filled),
3602         (gst_queue_change_state), (gst_queue_set_temp_location),
3603         (gst_queue_set_property):
3604         Add support for filebased buffering. Fixes #441264.
3605
3606 2007-06-05  Wim Taymans  <wim@fluendo.com>
3607
3608         * gst/playback/gstdecodebin2.c: (gst_decode_bin_factory_filter),
3609         (analyze_new_pad), (connect_pad), (expose_pad), (caps_notify_cb),
3610         (caps_notify_group_cb), (gst_decode_group_new),
3611         (gst_decode_group_free):
3612         Add support for delayed caps fixation when autoplugging.
3613         Optimize cases where a multiqueue is not needed/wanted, like right after
3614         anything that is not a demuxer.
3615
3616 2007-06-05  Wim Taymans  <wim@fluendo.com>
3617
3618         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fisbone),
3619         (gst_ogg_pad_submit_packet), (gst_ogg_demux_perform_seek),
3620         (gst_ogg_demux_read_chain), (gst_ogg_demux_collect_chain_info):
3621         consideratly speedup ogg chain detection by not trying to find a base
3622         timestamp for skeleton streams. 
3623
3624 2007-06-05  Wim Taymans  <wim@fluendo.com>
3625
3626         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
3627         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_add_full),
3628         (gst_multi_fd_sink_remove_flush),
3629         (gst_multi_fd_sink_remove_client_link),
3630         (gst_multi_fd_sink_handle_client_write),
3631         (gst_multi_fd_sink_handle_clients):
3632         * gst/tcp/gstmultifdsink.h:
3633         Add support for remove_flush.
3634
3635 2007-06-05  Wim Taymans  <wim@fluendo.com>
3636
3637         * docs/design/draft-keyframe-force.txt:
3638         * ext/theora/theoraenc.c: (theora_enc_sink_event),
3639         (theora_enc_chain):
3640         Add draft design for forcing keyframes in encoders and implement in
3641         theoraenc.
3642
3643 2007-06-05  Jan Schmidt  <thaytan@mad.scientist.com>
3644
3645         * configure.ac:
3646           Back to CVS
3647
3648 === release 0.10.13 ===
3649
3650 2007-06-05  Jan Schmidt <thaytan@mad.scientist.com>
3651
3652         * configure.ac:
3653           releasing 0.10.13, "What's Going on?"
3654
3655 2007-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
3656
3657         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
3658         In riff, the depth is stored in the size field but it just means that
3659         the least significant bits are cleared. We can therefore just play
3660         the sample as if it had a depth == width. Fixes: #440997
3661
3662         Patch by: Wim Taymans <wim@fluendo.com> 
3663         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
3664
3665 2007-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
3666
3667         * gst-libs/gst/floatcast/floatcast.h:
3668         Define inline when needed on win32 builds. Fixes: #441295
3669         Patch by: Sebastien Moutte  <sebastien@moutte.net>
3670
3671 2007-05-29  Wim Taymans  <wim@fluendo.com>
3672
3673         * gst/playback/gstplaybasebin.c: (queue_overrun),
3674         (no_more_pads_full):
3675         Stop buffering when the group is commited because the queues filled up.
3676         Fixes #442024.
3677
3678 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
3679
3680         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
3681         (gst_alsa_mixer_free), (gst_alsa_mixer_update),
3682         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
3683         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
3684         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
3685         * ext/alsa/gstalsamixer.h:
3686         * ext/alsa/gstalsamixerelement.c:
3687         (gst_alsa_mixer_element_interface_supported),
3688         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
3689         (gst_alsa_mixer_element_set_property),
3690         (gst_alsa_mixer_element_get_property),
3691         (gst_alsa_mixer_element_change_state):
3692         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_update):
3693         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_volume_changed),
3694         (gst_mixer_option_changed):
3695         * gst-libs/gst/interfaces/mixer.h:
3696         Revert commits towards #152864 made so far. We'll pick it up again
3697         after the 0.10.13 release.
3698
3699 2007-05-24  Wim Taymans  <wim@fluendo.com>
3700
3701         * gst-libs/gst/audio/gstbaseaudiosink.c:
3702         (gst_base_audio_sink_render):
3703         After an interrupt (PAUSED/flush) assume that the next sample should not
3704         be aligned to the previous sample. Fixes #417992.
3705
3706 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
3707
3708         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
3709           Don't add channels and rate fields to the template caps for
3710           audio/x-dts, as wavparse might not always be able to set them,
3711           which would then lead to 'caps are not a real subset of the
3712           template caps' warnings.
3713
3714 2007-05-24  Jan Schmidt  <thaytan@mad.scientist.com>
3715
3716         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
3717         Handle unknown or invalid pads without crashing, as might occur if
3718         a media file like an mp3 is specified as a subtitle file.
3719         Fixes: #410039
3720
3721 2007-05-24  Jan Schmidt  <thaytan@mad.scientist.com>
3722
3723         * gst/playback/gstplaybin.c: (add_sink), (dummy_blocked_cb),
3724         (setup_sinks):
3725         Block the subtitle bin output queue before ghosting it and linking,
3726         then unblock after. This avoids spurious not-linked errors caused 
3727         by the queue starting up (because it gets linked when it is ghosted). 
3728         Fixes: #350299
3729
3730 2007-05-23  Jan Schmidt  <thaytan@mad.scientist.com>
3731
3732         * tests/check/elements/playbin.c: (test_suburi_error_unknowntype):
3733         Use /dev/zero instead of /dev/urandom to produce an invalid subtitle
3734         file. Avoids flukes where the input gets typefound to some valid but
3735         useless type.
3736
3737 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
3738
3739         * tests/check/Makefile.am:
3740         * tests/check/elements/.cvsignore:
3741         * tests/check/elements/gnomevfssink.c: (setup_gnomevfssink),
3742         (cleanup_gnomevfssink), (GST_START_TEST), (gnomevfssink_suite):
3743           Add unit test for gnomevfssink seeking and position reporting for
3744           file:// URIs.
3745
3746 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
3747
3748         Patch by: Mark Nauwelaerts <manauw at skynet be>
3749
3750         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_init),
3751         (gst_gnome_vfs_sink_open_file), (gst_gnome_vfs_sink_handle_event),
3752         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render):
3753         * ext/gnomevfs/gstgnomevfssink.h:
3754           Fix position reporting, especially after a seek (from upstream),
3755           see #412648.
3756
3757 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
3758
3759         * ext/cdparanoia/gstcdparanoiasrc.c:
3760           Repair umlaut.
3761
3762 2007-05-22  Jan Schmidt  <thaytan@mad.scientist.com>
3763
3764         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
3765         Specify the full valid range for MP3 samplerates. Fixes a regression
3766         caused by extra header checks since the last release.
3767
3768 2007-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
3769
3770         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
3771         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
3772         Fix a locking-order bug I introduced with my changes the other day.
3773         Patch by Mike Smith.
3774
3775 2007-05-21  Michael Smith <msmith@fluendo.com>
3776
3777         * ext/theora/theoradec.c: (theora_handle_data_packet):
3778           Don't look inside 0-length packets (which indicate duplicated
3779           frames)
3780
3781 2007-05-21  Wim Taymans  <wim@fluendo.com>
3782
3783         * ext/cdparanoia/gstcdparanoiasrc.c:
3784         (gst_cd_paranoia_src_read_sector):
3785         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3786         (gst_base_audio_src_create):
3787         Small cleanups.
3788
3789         * ext/theora/theoradec.c: (theora_dec_sink_event):
3790         Fix typo.
3791
3792         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3793         (gst_base_rtp_depayload_set_gst_timestamp):
3794         Add some FIXME
3795
3796         * gst/playback/gstdecodebin.c: (queue_underrun_cb):
3797         And some debug info when a FIXME path is hit.
3798
3799 2007-05-21  Wim Taymans  <wim@fluendo.com>
3800
3801         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
3802         (gst_base_rtp_audio_payload_class_init),
3803         (gst_base_rtp_audio_payload_init),
3804         (gst_base_rtp_audio_payload_finalize),
3805         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
3806         (gst_base_rtp_audio_payload_handle_sample_based_buffer),
3807         (gst_base_rtp_payload_audio_handle_event):
3808         Some cleanups, remove minptime property as it is now in the parent
3809         class.
3810         Override parent class event function.
3811
3812         * gst-libs/gst/rtp/gstbasertppayload.c:
3813         (gst_basertppayload_class_init), (gst_basertppayload_init),
3814         (gst_basertppayload_event), (gst_basertppayload_set_property),
3815         (gst_basertppayload_get_property):
3816         * gst-libs/gst/rtp/gstbasertppayload.h:
3817         Add min-ptime property.
3818         Add handle-event vmethod. Fixes #415001.
3819
3820 2007-05-18  Stefan Kost  <ensonic@users.sf.net>
3821
3822         * gst-libs/gst/audio/gstbaseaudiosink.c
3823           (gst_base_audio_sink_change_state):
3824           Fix typo in comment.
3825
3826         * gst/playback/gstdecodebin.c (gst_decode_bin_class_init,
3827           free_dynamics, pad_probe, close_pad_link, try_to_link_1,
3828           get_our_ghost_pad, remove_element_chain, queue_underrun_cb,
3829           close_link):
3830         * gst/playback/gstplaybin.c (gst_play_bin_set_property,
3831           gen_audio_element, remove_sinks, gst_play_bin_send_event_to_sink):
3832           Remove trailing whitespaces in comments.
3833
3834         * gst/volume/Makefile.am:
3835           Fix tabs.
3836
3837 2007-05-18  Stefan Kost  <ensonic@users.sf.net>
3838
3839         patch by: Marc-Andre Lureau <marcandre.lureau@gmail.com>
3840
3841         * gst-libs/gst/interfaces/mixer.h (mixer_type, option_changed,
3842           set_option, get_option, _gst_reserved):
3843           Revert reordering functions (keep ABI).
3844
3845 2007-05-17  Jan Schmidt  <thaytan@mad.scientist.com>
3846
3847         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
3848         (gst_ximagesink_xwindow_new), (gst_ximagesink_handle_xevents),
3849         (gst_ximagesink_show_frame):
3850         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
3851         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_handle_xevents),
3852         (gst_xvimagesink_show_frame):
3853         When we create our own window, indicate that we handle the 
3854         WM_DELETE client message from the window manager, so that it won't 
3855         kill our window (and our app) along with it. Handle ClientMessage,
3856         post an error on the bus, and close the window. Further buffers
3857         arriving will result in a FlowError because the window has been
3858         destroyed.
3859
3860         Fixes: #393975
3861
3862         Clean up the X event handling loop and make them the same for
3863         both xvimagesink and ximagesink while I'm at it.
3864
3865 2007-05-17  Wim Taymans  <wim@fluendo.com>
3866
3867         * gst/playback/gstdecodebin2.c: (gst_decode_bin_factory_filter):
3868         Make decodebin2 autoplug depayloaders too.
3869
3870         * gst/playback/gsturidecodebin.c: (source_new_pad):
3871         Set the newly created decoder in a usable state when autoplugging a
3872         dynamic source such as RTSP.
3873
3874 2007-05-17  Tim-Philipp Müller  <tim at centricular dot net>
3875
3876         * gst/playback/gststreaminfo.c: (cb_probe):
3877           Ignore video-codec tag for audio streams and ignore audio-codec tags
3878           for video streams. Should make codec name collection a bit more
3879           robust against sloppy demuxers that send tag events containing both
3880           tags down each pad.
3881
3882 2007-05-17  Wim Taymans  <wim@fluendo.com>
3883
3884         * gst/playback/gstqueue2.c: (update_rates):
3885         Tweak the buffering thresholds a little.
3886         Update the buffer size with the previously calculate rate instead of
3887         only when we calculate a new rate so that we get smoother buffering
3888         updates.
3889
3890         * gst/playback/Makefile.am:
3891         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_base_init),
3892         (gst_uri_decode_bin_class_init), (gst_uri_decode_bin_init),
3893         (gst_uri_decode_bin_finalize), (gst_uri_decode_bin_set_property),
3894         (gst_uri_decode_bin_get_property), (unknown_type),
3895         (add_element_stream), (no_more_pads_full), (no_more_pads),
3896         (source_no_more_pads), (new_decoded_pad), (array_has_value),
3897         (gen_source_element), (has_all_raw_caps), (analyse_source),
3898         (remove_decoders), (make_decoder), (remove_source),
3899         (source_new_pad), (setup_source), (decoder_query_init),
3900         (decoder_query_duration_fold), (decoder_query_duration_done),
3901         (decoder_query_position_fold), (decoder_query_position_done),
3902         (decoder_query_latency_fold), (decoder_query_latency_done),
3903         (decoder_query_seeking_fold), (decoder_query_seeking_done),
3904         (decoder_query_generic_fold), (gst_uri_decode_bin_query),
3905         (gst_uri_decode_bin_change_state), (plugin_init):
3906         New element that intergrates a source, optional buffering element and
3907         decodebin.
3908
3909 2007-05-17  Tim-Philipp Müller  <tim at centricular dot net>
3910
3911         * configure.ac:
3912           Bump libtheora requirement to 1.0alpha5 for the pixformat check
3913           (also has a .pc file, so we don't need the fallback check any
3914           longer). Fixes #438840.
3915
3916 2007-05-17  Wim Taymans  <wim@fluendo.com>
3917
3918         * gst/playback/gstqueue2.c: (gst_queue_get_type),
3919         (gst_queue_class_init), (gst_queue_finalize), (update_time_level),
3920         (apply_segment), (apply_buffer), (update_buffering),
3921         (reset_rate_timer), (update_rates), (gst_queue_locked_flush),
3922         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
3923         (gst_queue_handle_sink_event), (gst_queue_is_filled),
3924         (gst_queue_chain), (gst_queue_push_one), (gst_queue_loop),
3925         (plugin_init):
3926         fix build.
3927
3928 2007-05-17  Wim Taymans  <wim@fluendo.com>
3929
3930         * gst/playback/Makefile.am:
3931         * gst/playback/gstqueue2.c: (gst_queue_get_type),
3932         (gst_queue_class_init), (gst_queue_init), (gst_queue_finalize),
3933         (gst_queue_getcaps), (gst_queue_bufferalloc),
3934         (gst_queue_acceptcaps), (update_time_level), (apply_segment),
3935         (apply_buffer), (update_buffering), (reset_rate_timer),
3936         (update_rates), (gst_queue_locked_flush),
3937         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
3938         (gst_queue_handle_sink_event), (gst_queue_is_empty),
3939         (gst_queue_is_filled), (gst_queue_chain), (gst_queue_push_one),
3940         (gst_queue_loop), (gst_queue_handle_src_event),
3941         (gst_queue_handle_src_query), (gst_queue_sink_activate_push),
3942         (gst_queue_src_activate_push), (gst_queue_change_state),
3943         (gst_queue_set_property), (gst_queue_get_property), (plugin_init):
3944         On our way to playbin2 this is the new network queue that does buffering
3945         all by itself using high and low watermarks. It can also measure up and
3946         downstream bandwidth to optimally size the queue.
3947
3948 2007-05-17  Michael Smith <msmith@fluendo.com>
3949
3950         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_do_seek):
3951         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_do_seek):
3952           Use the segment->last_stop value to calculate the next timestamp to
3953           generate after a seek; not the segment->start value.
3954
3955 2007-05-15  David Schleef  <ds@schleef.org>
3956
3957         * docs/Makefile.am: Install docs even when --disable-gtk-doc
3958           is disabled.  This matches the behavior of gtk+.  Fixes #349099.
3959
3960 2007-05-15  Wim Taymans  <wim@fluendo.com>
3961
3962         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
3963         (gst_ogg_demux_perform_seek), (gst_ogg_demux_handle_page):
3964         Some more chained streaming ogg timestamp fixes.
3965
3966 2007-05-15  Wim Taymans  <wim@fluendo.com>
3967
3968         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
3969         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
3970         (gst_ogg_demux_handle_page):
3971         Add some FIXMEs.
3972         Fix chain start/stop segment handling based on patch by
3973         <ahalda at cs dot mcgill dot ca> see #320984.
3974
3975 2007-05-15  Michael Smith <msmith@fluendo.com>
3976
3977         * configure.ac:
3978           We don't require a C++ compiler. So don't require one.
3979
3980 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
3981
3982         * ext/alsa/gstalsamixer.c (source, n_poll_fds, poll_fds,
3983           gst_alsa_mixer_check, gst_alsa_mixer_dispatch,
3984           gst_alsa_mixer_finalize, gst_alsa_mixer_handle_source_callback,
3985           gst_alsa_mixer_handle_callback, gst_alsa_mixer_elem_handle_callback,
3986           gst_alsa_mixer_ensure_track_list, gst_alsa_mixer_update_option,
3987           gst_alsa_mixer_update_track):
3988           Apply some of the cleanup Tim suggested in #152864 afterwards.
3989
3990 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
3991
3992         patch by: Marc-Andre Lureau <marcandre.lureau@gmail.com>
3993
3994         * ext/alsa/gstalsamixer.c (main_context, GstAlsaMixerWatch,
3995           _GstAlsaMixerWatch, source, n_poll_fds, poll_fds,
3996           gst_alsa_mixer_watch_funcs, gst_alsa_mixer_prepare,
3997           gst_alsa_mixer_check, gst_alsa_mixer_dispatch,
3998           gst_alsa_mixer_finalize, gst_alsa_mixer_find_master_mixer,
3999           gst_alsa_mixer_handle_source_callback,
4000           gst_alsa_mixer_handle_callback, gst_alsa_mixer_elem_handle_callback,
4001           gst_alsa_mixer_ensure_track_list, gst_alsa_mixer_free,
4002           gst_alsa_mixer_get_volume, gst_alsa_mixer_set_volume,
4003           gst_alsa_mixer_set_mute, gst_alsa_mixer_set_record,
4004           gst_alsa_mixer_get_option, gst_alsa_mixer_update_option,
4005           gst_alsa_mixer_update_track, _gst_alsa_mixer_set_interface):
4006         * ext/alsa/gstalsamixer.h (handle_source, interface, dir):
4007         * ext/alsa/gstalsamixerelement.c (gst_alsa_mixer_element_details,
4008           gst_alsa_mixer_element_interface_supported,
4009           gst_alsa_mixer_element_finalize, gst_alsa_mixer_element_init,
4010           gst_alsa_mixer_element_set_property,
4011           gst_alsa_mixer_element_get_property,
4012           gst_alsa_mixer_element_change_state):
4013         * ext/alsa/gstalsamixertrack.c (gst_alsa_mixer_track_update):
4014         * gst-libs/gst/interfaces/mixer.c (gst_mixer_volume_changed,
4015           gst_mixer_option_changed):
4016         * gst-libs/gst/interfaces/mixer.h (set_option, get_option,
4017           volume_changed, option_changed, _gst_reserved):
4018           Implement notification for alsamixer. Fixes #152864
4019
4020 2007-05-14  David Schleef  <ds@schleef.org>
4021
4022         * gst/videotestsrc/videotestsrc.c:
4023         * gst/videotestsrc/videotestsrc.h:
4024           Add support for video/x-raw-bayer.
4025
4026 2007-05-12  David Schleef  <ds@schleef.org>
4027
4028         * sys/xvimage/xvimagesink.c:
4029           Add some sanity checking for the XVImage size returned by X.
4030           Related to #377400.
4031
4032 2007-05-12  Wim Taymans  <wim@fluendo.com>
4033
4034         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4035         (gst_base_rtp_depayload_setcaps),
4036         (gst_base_rtp_depayload_set_gst_timestamp):
4037         Parse and use additional caps fields as described in updated
4038         application/x-rtp caps spec.
4039
4040 2007-05-12  Wim Taymans  <wim@fluendo.com>
4041
4042         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
4043         (gst_ogg_demux_collect_chain_info):
4044         If there is a stream in a chain without any data packets, ignore the
4045         stream in the total length calculations. Might be related to #436820.
4046
4047 2007-05-11  Jan Schmidt  <thaytan@mad.scientist.com>
4048
4049         * gst/typefind/gsttypefindfunctions.c: (mpeg_sys_is_valid_pack),
4050         (mpeg_sys_is_valid_pes), (mpeg_sys_is_valid_sys),
4051         (mpeg_sys_type_find), (mpeg_ts_type_find), (mpeg4_video_type_find),
4052         (mpeg_video_type_find), (mpeg_video_stream_type_find),
4053         (plugin_init):
4054
4055         Consolidate and re-work our mpeg system stream detection to probe
4056         more packets and produce a higher confidence result. Fixes a
4057         regression caused by lowering the typefind probability last year
4058         - related to bug #397810. Remove the redundant MPEG-1 specific 
4059         typefind function, as the new one detects both MPEG-1 & MPEG-2
4060         happily.
4061
4062         Also cleanup the MPEG elementary and MPEG-TS detection functions a
4063         little. 
4064
4065         Tested against my media test directory, with some improvements and
4066         no regressions.
4067
4068 2007-05-10  Wim Taymans  <wim@fluendo.com>
4069
4070         * gst/playback/gstplaybasebin.c: (fill_buffer), (check_queue),
4071         (queue_out_of_data):
4072         Connect to the new queue "pushing" signal instead of the broken
4073         "running" one.
4074
4075 2007-05-09  Sebastien Moutte  <sebastien@moutte.net>
4076
4077         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4078         (gst_base_rtp_audio_payload_handle_frame_based_buffer):
4079         Move variable declaration before the first instruction.
4080         * gst/videotestsrc/videotestsrc.c:
4081         Define M_PI if it's not defined yet.
4082         * win32/common/libgstrtp.def:
4083         Add new exported functions.
4084
4085 2007-05-09  Michael Smith <msmith@fluendo.com>
4086
4087         * ext/theora/theoradec.c: (theora_handle_type_packet):
4088           gst_pad_push_event() does not return a GstFlowReturn!
4089
4090 2007-05-09  Wim Taymans  <wim@fluendo.com>
4091
4092         * tests/examples/seek/scrubby.c: (stop_cb), (main):
4093         * tests/examples/seek/seek.c: (do_seek):
4094         Some small cosmetic changes.
4095
4096 2007-05-08  Stefan Kost  <ensonic@users.sf.net>
4097
4098         * gst/adder/gstadder.c (gst_adder_src_event, gst_adder_collected,
4099           gst_adder_change_state):
4100         * gst/adder/gstadder.h (bps, offset, collect_event, segment,
4101           segment_pending, segment_position, segment_rate):
4102           Handle playback-rate on adder.
4103
4104 2007-05-07  Michael Smith <msmith@fluendo.com>
4105
4106         * ext/theora/gsttheoradec.h:
4107         * ext/theora/theoradec.c: (gst_theora_dec_reset),
4108         (theora_dec_sink_event), (theora_handle_comment_packet),
4109         (theora_handle_type_packet), (theora_dec_change_state):
4110           Don't push events (newsegment, tags) before initialising the
4111           decoder.
4112           This is neccesary for seeking to work correctly in gnonlin.
4113
4114 2007-05-04  Stefan Kost  <ensonic@users.sf.net>
4115
4116         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4117         * gst/adder/gstadder.c:
4118         * gst/audiotestsrc/gstaudiotestsrc.c
4119           (gst_audio_test_src_create_white_noise):
4120         * gst/videotestsrc/gstvideotestsrc.c:
4121         * gst/volume/gstvolume.c (VOLUME_UNITY_INT16,
4122           VOLUME_UNITY_INT16_BIT_SHIFT, VOLUME_MAX_DOUBLE,
4123           volume_sink_template, volume_src_template, gst_volume_init,
4124           volume_process_double, volume_process_int16,
4125           volume_process_int16_clamp):
4126           Doc fixes and formatting.
4127
4128 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
4129
4130         * tests/check/Makefile.am:
4131         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
4132           Minimal check for volume's GstController usability; also another
4133           test for #422295.
4134
4135 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
4136
4137         * gst-libs/gst/cdda/gstcddabasesrc.c:
4138         (gst_cdda_base_src_add_track):
4139           Fix it so that it (a) makes sense and (b) doesn't break
4140           everything cdda-related including the unit test.
4141
4142 2007-05-04  Stefan Kost  <ensonic@users.sf.net>
4143
4144         * gst-libs/gst/cdda/gstcddabasesrc.c:
4145         (gst_cdda_base_src_add_track):
4146           Fix build when disabling asserts.
4147
4148 2007-05-03  Tim-Philipp Müller  <tim at centricular dot net>
4149
4150         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
4151           When XShm is not available, we might get row strides that are not
4152           rounded up to multiples of four; this is bad, because virtually
4153           every RGB-processing element in GStreamer assumes rowstrides are
4154           rounded up to multiples of four, so let's allocate at least enough
4155           memory to avoid crashes in this case. The image will still be
4156           displayed distorted though if this happens, so that still needs
4157           fixing (maybe by allocating a bigger image with an 'even' width
4158           and then clipping it appropriately when rendering - something for
4159           Xlib aficionados in any case).
4160
4161 2007-05-03  Michael Smith <msmith@fluendo.com>
4162
4163         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
4164           If a buffer doesn't have a timestamp, assume it's contiguous with
4165           the previous buffer, and synthesise timestamps appropriately.
4166
4167 2007-05-03  Edward Hervey  <edward@fluendo.com>
4168
4169         * tests/check/elements/videorate.c: (GST_START_TEST):
4170         Set buffer timestamp to a valid value in order to test the buffer
4171         really does stay in videorate.
4172
4173 2007-05-03  Edward Hervey  <edward@fluendo.com>
4174
4175         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
4176         There is no sensible way to handle incoming buffers which don't have a
4177         valid timestamp. We therefore discard them and wait for the next one.
4178
4179 2007-05-01  Tim-Philipp Müller  <tim at centricular dot net>
4180
4181         * gst/playback/gstdecodebin.c: (type_found), (plugin_init):
4182         * gst/playback/gstdecodebin2.c: (plugin_init):
4183           Better error message for text files.
4184
4185 2007-04-29  Wim Taymans  <wim@fluendo.com>
4186
4187         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_add_rb):
4188         Fix offset bug in generation RR packets.
4189
4190 2007-04-27  Julien MOUTTE  <julien@moutte.net>
4191
4192         * ext/theora/theoradec.c: (_theora_granule_time),
4193         (theora_dec_push_forward), (theora_handle_data_packet),
4194         (theora_dec_decode_buffer): Calculate buffer duration correctly
4195         to generate a perfect stream (#433888).
4196         * gst/audioresample/gstaudioresample.c:
4197         (audioresample_check_discont): Glib provides ABS.
4198
4199 2007-04-27  Wim Taymans  <wim@fluendo.com>
4200
4201         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_get_rb),
4202         (gst_rtcp_packet_add_rb), (gst_rtcp_packet_sdes_add_item),
4203         (gst_rtcp_packet_sdes_add_entry), (gst_rtcp_packet_bye_add_ssrc),
4204         (gst_rtcp_packet_bye_add_ssrcs), (get_reason_offset),
4205         (gst_rtcp_packet_bye_set_reason):
4206         * gst-libs/gst/rtp/gstrtcpbuffer.h:
4207         Fix RB block parsing and writing.
4208         Add support for constructing BYE packets.
4209
4210 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
4211
4212         * gst-libs/gst/audio/gstbaseaudiosrc.c: (_do_init),
4213         (gst_base_audio_src_create):
4214         * po/POTFILES.in:
4215           When posting a warning message because samples were dropped, post
4216           something more intelligible than he default error message for clock
4217           errors which is just confusing in this context (#432984).
4218
4219 2007-04-25  Wim Taymans  <wim@fluendo.com>
4220
4221         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_buffer_new),
4222         (gst_rtcp_buffer_end), (gst_rtcp_buffer_get_packet_count),
4223         (read_packet_header), (gst_rtcp_packet_move_to_next),
4224         (gst_rtcp_buffer_add_packet), (gst_rtcp_packet_sr_set_sender_info),
4225         (gst_rtcp_packet_rr_set_ssrc), (gst_rtcp_packet_add_rb),
4226         (gst_rtcp_packet_sdes_get_item_count),
4227         (gst_rtcp_packet_sdes_first_item),
4228         (gst_rtcp_packet_sdes_next_item), (gst_rtcp_packet_sdes_get_ssrc),
4229         (gst_rtcp_packet_sdes_first_entry),
4230         (gst_rtcp_packet_sdes_next_entry),
4231         (gst_rtcp_packet_sdes_get_entry), (gst_rtcp_packet_sdes_add_item),
4232         (gst_rtcp_packet_sdes_add_entry):
4233         * gst-libs/gst/rtp/gstrtcpbuffer.h:
4234         Implement code to write SR, RR and SDES packets.
4235
4236 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
4237
4238         Patch by: Christian Kirbach <Christian dot Kirbach at googlemail com>
4239
4240         * sys/ximage/ximagesink.c:
4241           Fix build if XShm is not available (#432362).
4242
4243 2007-04-24  Sebastian Dröge  <slomo@circular-chaos.org>
4244
4245         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init):
4246         Initalize the AudioConvertCtx with zeroes, otherwise it will contain
4247         pointers to random memory which are passed to g_free() when
4248         audio_convert_prepare_context() is called the first time.
4249
4250 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
4251
4252         Patch by: Dan Williams <dcbw redhat com>
4253
4254         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
4255           Don't leak incoming buffer if gst_pad_push() returns a
4256           non-OK flow. Fixes #432755.
4257          
4258         * tests/check/elements/videorate.c: (GST_START_TEST),
4259         (videorate_suite):
4260           Unit test for the above by Yours Truly.
4261
4262 2007-04-23  Stefan Kost  <ensonic@users.sf.net>
4263
4264         * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
4265         (gst_adder_sink_event), (gst_adder_collected):
4266           Fix non-flushing segmented seeks, Fixes #340060 for me
4267
4268 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
4269
4270         Patch by: Olivier Crete  <tester at tester ca>
4271
4272         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4273         (gst_base_rtp_audio_payload_class_init),
4274         (gst_base_rtp_audio_payload_init),
4275         (gst_base_rtp_audio_payload_dispose):
4276           Chain up to parent class in dispose function; get rid of
4277           unnecessary 'diposed' flag in private structure (#415001).
4278
4279 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
4280
4281         * docs/libs/gst-plugins-base-libs.types:
4282         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4283         (gst_base_rtp_audio_payload_class_init):
4284         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4285         * gst-libs/gst/rtp/gstbasertppayload.c:
4286           Some minor docs fixes and additions; also add missing 'Since' bits.
4287
4288 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
4289
4290         Patch by: Zeeshan Ali  <zeenix gmail com>
4291
4292         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4293         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
4294         (gst_base_rtp_audio_payload_handle_sample_based_buffer),
4295         (gst_base_rtp_audio_payload_push):
4296         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
4297           The recently-added gst_base_rtp_audio_payload_push() should take an
4298           object of type GstBaseRTPAudioPayload as first argument (#431672).
4299
4300 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
4301
4302         * gst/audioresample/gstaudioresample.c:
4303           Make more functions static, just because we can.
4304
4305 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
4306
4307         * tests/check/elements/audioresample.c:
4308           Add unit test for audioresample shutdown crasher (#420106).
4309
4310 2007-04-20  Stefan Kost  <ensonic@users.sf.net>
4311
4312         * gst/subparse/gstsubparse.c:
4313         * gst/subparse/samiparse.c:
4314           Use GST_DISABLE_XML here
4315
4316         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
4317         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_get_xv_support),
4318         (gst_xvimagesink_buffer_alloc),
4319         (gst_xvimagesink_navigation_send_event):
4320         * sys/xvimage/xvimagesink.h:
4321           Include stdlib.h when using atoi.
4322           
4323         * tests/check/elements/playbin.c: (playbin_suite):
4324           Use GST_DISABLE_REGISTRY here
4325
4326 2007-04-19  Michael Smith  <msmith@fluendo.com>
4327
4328         * ext/theora/gsttheoraenc.h:
4329         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
4330         (theora_enc_sink_event), (theora_enc_change_state):
4331           Track initialisation state; don't try to use encoder state if we're
4332           not initialised (it'll segfault).
4333
4334 2007-04-18  Stefan Kost  <ensonic@users.sf.net>
4335
4336         * tests/check/pipelines/.cvsignore:
4337         Fix build.
4338
4339 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
4340
4341         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
4342         Allow random depths between 1 and 32 instead of only multiplies of 8.
4343
4344 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
4345
4346         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
4347         Set the maximum number of channels for PCM and float in the correct
4348         place to have it also used when creating the template caps.
4349
4350 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
4351
4352         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
4353         Correctly support 4, 6 and 8 channels with normal PCM and float
4354         wav files.
4355
4356         Fix the depth and signedness calculation in extensible wav files and
4357         also handle 1, 2, 4, 6, 8 channels here when a file without channel
4358         mask is found.
4359
4360         Add support for float, alaw and mulaw in extensible wav files.
4361
4362         This allows correct playback of all but 5 files from
4363         http://www-mmsp.ece.mcgill.ca/Documents/AudioFormats/WAVE/Samples.html
4364         
4365         (gst_riff_create_audio_template_caps):
4366         Add voxware and float formats to the template caps.     
4367
4368 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
4369
4370         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
4371
4372         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
4373         Fix unused variable warning if HAVE_LOCALTIME_R is undefinied
4374
4375         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
4376         * gst/audioresample/gstaudioresample.c: (audioresample_do_output):
4377         Use the correct format strings for integer formats.
4378
4379 2007-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
4380
4381         * ext/theora/theoraenc.c (theora_buffer_from_packet, theora_enc_chain):
4382           Don't use pad_alloc_buffer_and_set_caps to create a small header
4383           packet, or, worse, to create a big temporary video buffer using the
4384           src pad.
4385
4386 2007-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
4387
4388         * gst/gdp/gstgdppay.c (gst_gdp_pay_chain):
4389         * tests/check/pipelines/streamheader.c (tag_event_probe_cb,
4390           GST_START_TEST, buffer_probe_cb, GST_START_TEST):
4391           Fix a bug where serialized IN_CAPS buffers needed to be set IN_CAPS.
4392
4393 2007-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
4394
4395         * tests/check/pipelines/streamheader.c (tag_event_probe_cb,
4396           GST_START_TEST, n_in_caps, buffer_probe_cb, GST_START_TEST,
4397           streamheader_suite):
4398           Add another test set up for failure
4399
4400 2007-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
4401
4402         * tests/check/Makefile.am:
4403         * tests/check/pipelines/streamheader.c (n_tags, tag_event_probe_cb,
4404           GST_START_TEST, streamheader_suite, main):
4405           Add a test for the streamheader bug Wim fixed.
4406
4407 2007-04-13  Jan Schmidt  <thaytan@mad.scientist.com>
4408
4409         * ext/theora/theoradec.c: (theora_dec_sink_event):
4410         Fix misleading comment.
4411
4412 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
4413
4414         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
4415           More sanity checks for the header fields.
4416
4417 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
4418
4419         * gst-libs/gst/tag/tags.c: (gst_tag_freeform_string_to_utf8):
4420           Try encodings from all environment variables, not just those in the
4421           first environment variable that is set.
4422
4423 2007-04-12  Wim Taymans  <wim@fluendo.com>
4424
4425         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps),
4426         (gst_video_rate_chain):
4427         Add some debug.
4428
4429         * tests/check/elements/videorate.c: (GST_START_TEST),
4430         (videorate_suite):
4431         Added check for videorate changing caps handling. Closes #421834.
4432
4433 2007-04-12  Michael Smith  <msmith@fluendo.com>
4434
4435         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
4436           Use scale functions to avoid overflow when calculating duration of 
4437           vorbis buffers.
4438
4439 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
4440
4441         * docs/libs/gst-plugins-base-libs-sections.txt:
4442         * gst-libs/gst/tag/tag.h:
4443         * gst-libs/gst/tag/tags.c: (gst_tag_freeform_string_to_utf8):
4444           API: add gst_tag_freeform_string_to_utf8() (#405072).
4445
4446         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_extract_id3v1_string):
4447           Use gst_tag_freeform_string_to_utf8() here.
4448
4449 2007-04-12  Wim Taymans  <wim@fluendo.com>
4450
4451         * gst/gdp/gstgdppay.c: (gst_gdp_pay_chain),
4452         (gst_gdp_pay_sink_event):
4453         Make sure we set the IN_CAPS flag correctly.
4454
4455         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
4456         Get the IN_CAPS flag before we call functions that mess with the flags.
4457
4458 2007-04-10  Thomas Vander Stichele  <thomas at apestaart dot org>
4459
4460         * gst/gdp/gstgdppay.c (gst_gdp_pay_reset_streamheader,
4461           gst_gdp_pay_chain, gst_gdp_pay_sink_event):
4462           Only stamp buffers with offset/offset_end right before they get
4463           pushed.  This ensures offset continuity, which was not the case
4464           before as shown by
4465           gst-launch -v -m audiotestsrc num-buffers=10 ! audioconvert ! vorbisenc ! gdppay ! identity check-imperfect-offset=TRUE ! fakesink silent=TRUE
4466
4467 2007-04-06  Wim Taymans  <wim@fluendo.com>
4468
4469         * gst/playback/gstplaybin.c: (add_sink),
4470         (gst_play_bin_change_state):
4471         Activate sync in playbin, we are ready to handle it for live streams.
4472
4473 2007-04-06  Tim-Philipp Müller  <tim at centricular dot net>
4474
4475         * tests/check/elements/playbin.c:
4476         (test_sink_usage_video_only_stream), (playbin_suite):
4477           Add small test for stream-info-value-array code paths.
4478
4479 2007-04-05  Wim Taymans  <wim@fluendo.com>
4480
4481         * gst-libs/gst/audio/gstbaseaudiosink.c:
4482         (gst_base_audio_sink_skew_slaving):
4483         Don't try to create invalid calibration parameters by making the
4484         internal time go backwards, instead make external time go forward.
4485
4486 2007-04-05  Wim Taymans  <wim@fluendo.com>
4487
4488         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
4489
4490         * gst/playback/gstplaybasebin.c: (add_stream):
4491         Fix leak in add_stream(), when g_value_set_object() increases the
4492         refcount of streaminfo object. Fixes #426250.
4493
4494 2007-04-03  David Schleef  <ds@schleef.org>
4495
4496         * gst/videotestsrc/gstvideotestsrc.c:
4497         * gst/videotestsrc/gstvideotestsrc.h:
4498         * gst/videotestsrc/videotestsrc.c:
4499         * gst/videotestsrc/videotestsrc.h:
4500           Add a test pattern called "circular", which has concentric
4501           rings with varying radial frequency.  The main purpose of this
4502           pattern is to test fidelity loss in a filter or scaler element.
4503           Notably, this pattern is scale invariant, and is optimally viewed
4504           with a width (and height) of 400.
4505
4506 2007-04-03  Wim Taymans  <wim@fluendo.com>
4507
4508         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
4509
4510         * gst/playback/gstdecodebin2.c: (connect_pad), (expose_pad),
4511         (deactivate_free_recursive):
4512         Decodebin2 doesn't unref pads it obtains in some occasions:
4513         - multiqueue src pads, when either connecting further or exposing
4514         - sink pads of new autoplugged elements
4515         - peer pads when recursively freeing elements
4516         Fixes #425455.
4517
4518 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
4519
4520         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
4521         Add audio/x-raw-float support, now that audioconvert support
4522         non-native endianness floats.
4523
4524 2007-03-30  Tim-Philipp Müller  <tim at centricular dot net>
4525
4526         * docs/libs/gst-plugins-base-libs-docs.sgml:
4527           gstreamer-plugins-base.pc doesn't exist, it's
4528           gstreamer-plugins-base-0.10.pc.
4529
4530 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
4531
4532         Patch by: René Stadler <mail at renestadler dot de>
4533         with some minor changes
4534
4535         * gst-libs/gst/floatcast/floatcast.h:
4536         Use more efficient float endianness conversion functions that don't
4537         involve 2 function calls per value.
4538         * gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
4539         (check_default), (audio_convert_prepare_context):
4540         * gst/audioconvert/gstaudioconvert.c:
4541         (gst_audio_convert_parse_caps), (make_lossless_changes):
4542         Support non-native endianness floats as input and output.
4543         Fixes #339838.
4544         * tests/check/elements/audioconvert.c: (verify_convert),
4545         (GST_START_TEST):
4546         Add unit tests for the non-native endianness float conversions.
4547
4548 2007-03-29  Wim Taymans  <wim@fluendo.com>
4549
4550         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4551         (gst_base_rtp_depayload_base_init),
4552         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
4553         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
4554         (gst_base_rtp_depayload_set_gst_timestamp),
4555         (gst_base_rtp_depayload_change_state),
4556         (gst_base_rtp_depayload_set_property),
4557         (gst_base_rtp_depayload_get_property):
4558         * gst-libs/gst/rtp/gstbasertpdepayload.h:
4559         Add Private structure.
4560         Bring element code to 2007.
4561         Parse clock-base caps param and use it when generating the
4562         newsegment.
4563         Reset variables before going to PAUSED.
4564         Fix some docs.
4565
4566 2007-03-29  Wim Taymans  <wim@fluendo.com>
4567
4568         * docs/libs/gst-plugins-base-libs-docs.sgml:
4569         * docs/libs/gst-plugins-base-libs-sections.txt:
4570         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4571         (gst_base_rtp_audio_payload_get_adapter):
4572         Add RTCP docs.
4573         Fix some more docs.
4574
4575         * gst-libs/gst/rtp/Makefile.am:
4576         * gst-libs/gst/rtp/gstrtcpbuffer.c:
4577         (gst_rtcp_buffer_new_take_data), (gst_rtcp_buffer_new_copy_data),
4578         (gst_rtcp_buffer_validate_data), (gst_rtcp_buffer_validate),
4579         (gst_rtcp_buffer_get_packet_count), (read_packet_header),
4580         (gst_rtcp_buffer_get_first_packet), (gst_rtcp_packet_move_to_next),
4581         (gst_rtcp_buffer_add_packet), (gst_rtcp_packet_remove),
4582         (gst_rtcp_packet_get_padding), (gst_rtcp_packet_get_type),
4583         (gst_rtcp_packet_get_count), (gst_rtcp_packet_get_length),
4584         (gst_rtcp_packet_sr_get_sender_info),
4585         (gst_rtcp_packet_sr_set_sender_info),
4586         (gst_rtcp_packet_rr_get_ssrc), (gst_rtcp_packet_rr_set_ssrc),
4587         (gst_rtcp_packet_get_rb_count), (gst_rtcp_packet_get_rb),
4588         (gst_rtcp_packet_add_rb), (gst_rtcp_packet_set_rb),
4589         (gst_rtcp_packet_sdes_get_chunk_count),
4590         (gst_rtcp_packet_sdes_first_chunk),
4591         (gst_rtcp_packet_sdes_next_chunk), (gst_rtcp_packet_sdes_get_ssrc),
4592         (gst_rtcp_packet_sdes_first_item),
4593         (gst_rtcp_packet_sdes_next_item), (gst_rtcp_packet_sdes_get_item),
4594         (gst_rtcp_packet_bye_get_ssrc_count),
4595         (gst_rtcp_packet_bye_get_nth_ssrc), (gst_rtcp_packet_bye_add_ssrc),
4596         (gst_rtcp_packet_bye_add_ssrcs), (get_reason_offset),
4597         (gst_rtcp_packet_bye_get_reason_len),
4598         (gst_rtcp_packet_bye_get_reason), (gst_rtcp_packet_bye_set_reason):
4599         * gst-libs/gst/rtp/gstrtcpbuffer.h:
4600         Add new helper object for parsing and creating RTCP messages.
4601
4602 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
4603
4604         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
4605         PCM samples with width=8 must be always unsigned, no matter what
4606         depth they have.
4607
4608 2007-03-29  Andy Wingo  <wingo@pobox.com>
4609
4610         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev): Make
4611         perfect offsets also, not just timestamps.
4612
4613         * tests/check/elements/videorate.c (test_more): Test that given
4614         any incoming offsets, that videorate produces perfect offsets.
4615
4616 2007-03-29  Wim Taymans  <wim@fluendo.com>
4617
4618         * gst-libs/gst/riff/riff-ids.h:
4619         Add some more RIFF formats.
4620
4621 2007-03-29  Wim Taymans  <wim@fluendo.com>
4622
4623         * gst-libs/gst/rtp/gstrtpbuffer.c:
4624         (gst_rtp_buffer_default_clock_rate):
4625         * gst-libs/gst/rtp/gstrtpbuffer.h:
4626         Fix fixed payload names and docs.
4627         Added method to get the default clock rates of fixed payload types.
4628         API: GstRTPBuffer::gst_rtp_buffer_default_clock_rate()
4629
4630 2007-03-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4631
4632         * tests/check/pipelines/.cvsignore:
4633         Add new vorbisdec test to cvsignore.
4634
4635 2007-03-28  Wim Taymans  <wim@fluendo.com>
4636
4637         * gst-libs/gst/audio/gstbaseaudiosink.c: (slave_method_get_type),
4638         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
4639         (gst_base_audio_sink_query), (gst_base_audio_sink_get_time),
4640         (gst_base_audio_sink_set_property),
4641         (gst_base_audio_sink_get_property), (gst_base_audio_sink_event),
4642         (clock_convert_external), (gst_base_audio_sink_resample_slaving),
4643         (gst_base_audio_sink_skew_slaving),
4644         (gst_base_audio_sink_handle_slaving), (gst_base_audio_sink_render),
4645         (gst_base_audio_sink_async_play):
4646         * gst-libs/gst/audio/gstbaseaudiosink.h:
4647         Store private stuff in GstBaseAudioSinkPrivate.
4648         Add configurable clock slaving modes property.
4649         API:: GstBaseAudioSink::slave-method property
4650         Some more latency reporting tweaks.
4651         Added skew based clock slaving correction and make it the default until
4652         the resampling method is more robust.
4653
4654 2007-03-27  Sebastian Dröge  <slomo@circular-chaos.org>
4655
4656         * gst/audioconvert/audioconvert.c:
4657         Add docs to the integer pack functions and implement proper
4658         rounding. Before we had rounding towards negative infinity, i.e.
4659         always the smaller number was taken. Now we use natural rounding,
4660         i.e. rounding to the nearest integer and to the one with the largest
4661         absolute value for X.5. The old rounding introduced some minor
4662         distortions. Fixes #420079
4663         * tests/check/elements/audioconvert.c: (GST_START_TEST):
4664         Fix one unit test that assumed the old rounding and added unit tests
4665         for checking signed/unsigned int16 <-> signed/unsigned int16 with
4666         depth 8, one for signed int16 <-> unsigned int16 and one for the new
4667         rounding from signed int32 to signed/unsigned int16.
4668
4669 2007-03-27  Michael Smith  <msmith@fluendo.com>
4670
4671         * gst/audioconvert/gstaudioconvert.c: (strip_width_64),
4672         (gst_audio_convert_transform_caps):
4673           Fix typo in debug line introduced recently, as pointed out on irc.
4674
4675 2007-03-27  Tim-Philipp Müller  <tim at centricular dot net>
4676
4677         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
4678         * tests/check/libs/tag.c: (GST_START_TEST):
4679           Make sure we parse floating-point numbers in vorbis comments
4680           correctly with either '.' or ',' as separator, no matter what
4681           the current locale is. Add unit test for this too.
4682
4683 2007-03-26  Tim-Philipp Müller  <tim at centricular dot net>
4684
4685         Patch by: René Stadler  <mail at renestadler de>
4686
4687         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_to_vorbis_comments):
4688           When writing out floating-point numbers to vorbis comment tags, always
4689           use the same character as separator no matter what the current locale is
4690           (fixes #423051).
4691
4692         * tests/check/libs/tag.c: (GST_START_TEST):
4693           Add unit tests for replaygain tags in vorbis comments (closes #423055).
4694
4695 2007-03-26  Thomas Vander Stichele  <thomas at apestaart dot org>
4696
4697         * ext/vorbis/vorbisdec.c (vorbis_dec_push_forward,
4698           vorbis_handle_data_packet):
4699           Correctly set DURATION to generate a timestamp-continuous stream.
4700           One bug left at the end; see
4701           ihttp://bugzilla.gnome.org/show_bug.cgi?id=423086
4702         * tests/check/Makefile.am:
4703         * tests/check/pipelines/vorbisenc.c (GST_START_TEST):
4704           Add a test to check this.  Without the above patch this test fails.
4705
4706 2007-03-26  Jan Schmidt  <thaytan@mad.scientist.com>
4707
4708         * gst-libs/gst/rtp/Makefile.am:
4709         The base audio payloader uses GstAdapter - we need GST_BASE_LIBS.
4710
4711 2007-03-23  Michael Smith  <msmith@fluendo.com>
4712
4713         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps),
4714         (gst_video_rate_reset), (gst_video_rate_chain):
4715           If videorate changes caps, we can no longer use the old buffer
4716           (which may have a different size, incompatible with our caps).
4717           So don't do that; just duplicate the new frame more times.
4718
4719 2007-03-22  Jan Schmidt  <thaytan@mad.scientist.com>
4720
4721         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
4722         Remove playbin's override of the set_clock vmethod. It's irrelevant
4723         after Wim's commit on the 19th.
4724
4725 2007-03-22  Wim Taymans  <wim@fluendo.com>
4726
4727         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_size),
4728         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
4729         * ext/gnomevfs/gstgnomevfssrc.h:
4730         Don't cache file sizes. Fixes #341078.
4731
4732 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
4733
4734         * gst/playback/gstplaybin.c: (add_sink):
4735           Use GST_PTR_FORMAT to log caps. 
4736
4737 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
4738
4739         Patch by: Young-Ho Cha <ganadist at chollian net>
4740
4741         * gst/subparse/samiparse.c: (handle_start_font):
4742           Special-case some more colour names that pango doesn't handle by
4743           default. Fixes #420578.
4744
4745 2007-03-20  Michael Smith  <msmith@fluendo.com>
4746
4747         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
4748           If we get a zero-sized input buffer, don't pass it to libvorbis, as
4749           that marks EOS internally. After that, libvorbis will buffer all
4750           input data, and encode none of it, eventually leading to memory
4751           exhaustion.
4752
4753 2007-03-19  Wim Taymans  <wim@fluendo.com>
4754
4755         * gst/playback/gstdecodebin.c: (remove_fakesink):
4756         Don't post STATE_DIRTY anymore.
4757
4758         * gst/playback/gstplaybin.c: (add_sink), (gst_play_bin_send_event),
4759         (gst_play_bin_change_state):
4760         Remove stream_time reset in seek handling, core does that now.
4761         Disable clocking for live pipelines by forcing a NULL clock to the
4762         complete pipeline, core is too smart now for our previous hack.
4763         We can always autoplug in PAUSED now.
4764
4765 2007-03-17  David Schleef  <ds@schleef.org>
4766
4767         * REQUIREMENTS:  Update this file, change the formatting to make
4768         it more consistent, plus more machine readable.
4769
4770 2007-03-16  Michael Smith  <msmith@fluendo.com>
4771
4772         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
4773         (strip_width_64), (append_with_other_format):
4774           Previous fix was too simplistic, and broke the tests. Use a better
4775           approach; only strip 64 from widths for integer audio.
4776
4777 2007-03-16  Michael Smith  <msmith@fluendo.com>
4778
4779         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
4780         (gst_audio_convert_transform_caps):
4781           We don't support 64 bit integer audio, so don't try to claim we can.
4782           Stops us producing caps don't match our template caps.
4783           Update comments.
4784
4785 2007-03-15  Michael Smith  <msmith@fluendo.com>
4786
4787         * gst/audioresample/gstaudioresample.c:
4788         (audioresample_check_discont), (audioresample_transform):
4789           Don't trigger discontinuities for very small imperfections; a filter
4790           flush will sound bad, and many plugins have rounding errors leading
4791           to these.
4792
4793 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
4794
4795         Patch by: Olivier Crete <olivier.crete@collabora.co.uk>
4796
4797         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4798         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
4799         API: add "min-ptime" property to RTP base audio payloader.
4800         API: add gst_base_rtp_audio_payload_push().
4801         API: add gst_base_rtp_audio_payload_get_adapter().
4802         Fixes #415001
4803         Indentation/whitespace/documentation fixes.
4804
4805 2007-03-14  Julien MOUTTE  <julien@moutte.net>
4806
4807         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
4808         (audioresample_transform_size), (audioresample_do_output),
4809         (audioresample_transform), (audioresample_pushthrough): Handle
4810         discontinuous streams.
4811         * gst/audioresample/gstaudioresample.h:
4812         * tests/check/elements/audioresample.c:
4813         (test_discont_stream_instance), (GST_START_TEST),
4814         (audioresample_suite): Add a test for discontinuous streams.
4815         * win32/common/config.h: Updated.
4816
4817 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
4818
4819         * po/af.po:
4820         * po/az.po:
4821         * po/cs.po:
4822         * po/en_GB.po:
4823         * po/it.po:
4824         * po/nb.po:
4825         * po/nl.po:
4826         * po/or.po:
4827         * po/sq.po:
4828         * po/sr.po:
4829         * po/sv.po:
4830         * po/uk.po:
4831         * po/vi.po:
4832           Update translations from translation project.
4833
4834 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
4835
4836         * gst/audioresample/debug.h:
4837         * gst/audioresample/resample.c: (resample_init):
4838           Since I really am not interested in a debug line for each sample
4839           being processed, move the library's debugging to its own category,
4840           libaudioresample
4841
4842 2007-03-13  Michael Smith  <msmith@fluendo.com>
4843
4844         * ext/theora/theoradec.c: (theora_handle_type_packet):
4845           Since the plugin doesn't support anything other than 4:2:0 right
4846           now, post an error and fail if we get something else. Won't matter
4847           until libtheora supports the other pixel formats, but hopefully
4848           that'll be soon...
4849
4850 2007-03-10  Sebastien Moutte  <sebastien@moutte.net>
4851
4852         * gst-libs/gst/audio/gstbaseaudiosink.c:(gst_base_audio_sink_render):
4853         Use gst_guint64_to_gdouble for conversion.
4854         * win32/MANIFEST:
4855         Add new files to the win32 MANIFEST.
4856         * win32/common/libgstaudio.def:
4857         * win32/common/libgstpbutils.def:
4858         Add new exported functions.
4859         * win32/vs6/gst_plugins_base.dsw:
4860         * win32/vs6/libgstdecodebin.dsp:
4861         * win32/vs6/libgstplaybin.dsp:
4862         Change the link to libgstpbutils.lib.
4863         * win32/vs6/libgstdecodebin2.dsp:
4864         Add a new project for decodebin2.
4865         * win32/vs6/libgstpbutils.dsp:
4866         Add a new project for pbutils.
4867
4868 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
4869
4870         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
4871           Also accept partial dates with only year and month,
4872           like 1999-12-00 (fixes #410396 even more).
4873
4874         * tests/check/libs/tag.c: (GST_START_TEST):
4875           Add unit test for the above.
4876
4877 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
4878
4879         * tests/check/elements/subparse.c: (GST_START_TEST),
4880         (subparse_suite):
4881           Add unit test for MPL2 subtitle format (#413799).
4882
4883 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
4884
4885         Patch by: Kamil Pawlowski  <kamilpe gmail com>
4886
4887         * gst/subparse/Makefile.am:
4888         * gst/subparse/gstsubparse.c:
4889         (gst_sub_parse_data_format_autodetect),
4890         (gst_sub_parse_format_autodetect), (gst_sub_parse_sink_event),
4891         (gst_subparse_type_find):
4892         * gst/subparse/gstsubparse.h:
4893         * gst/subparse/mpl2parse.c: (mpl2_parse_line), (parse_mpl2):
4894         * gst/subparse/mpl2parse.h:
4895           Add support for MPL2 subtitle format (#413799).
4896
4897 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
4898
4899         * configure.ac:
4900           We require core CVS for the new buffer metadata copy functions.
4901
4902 2007-03-09  Wim Taymans  <wim@fluendo.com>
4903
4904         * gst-libs/gst/tag/gstid3tag.c:
4905         Add read support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
4906         Fixes #414496.
4907
4908         Patch by: Alex Lancaster <alexl at users sourceforge net>
4909
4910 2007-03-09  Wim Taymans  <wim@fluendo.com>
4911
4912         * ext/libvisual/visual.c: (gst_visual_sink_setcaps),
4913         (gst_vis_src_negotiate), (get_buffer), (gst_visual_chain):
4914         Improve adapter usage and comments.
4915
4916 2007-03-09  Wim Taymans  <wim@fluendo.com>
4917
4918         * ext/pango/gsttextrender.c: (gst_text_render_chain):
4919         * ext/vorbis/vorbistag.c: (gst_vorbis_tag_parse_packet):
4920         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_copy):
4921         Use new metadata copy function.
4922
4923         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4924         (gst_ffmpegcsp_transform):
4925         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform):
4926         Basetransform copied the metadata for us.
4927
4928 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
4929
4930         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
4931         (gst_text_overlay_video_event):
4932           Some more logging. Only accept newsegment events in TIME format and
4933           send a WARNING message if they are not in TIME format.
4934
4935         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
4936         (gst_sub_parse_init), (gst_sub_parse_src_event), (handle_buffer),
4937         (gst_sub_parse_chain), (gst_sub_parse_sink_event):
4938         * gst/subparse/gstsubparse.h:
4939           No need to allocate GstSegment structure dynamically, just put it
4940           into the instance structure; ignore newsegment events in BYTE
4941           format and in particular don't let it overwrite our saved TIME
4942           segment from the last seek.
4943
4944 2007-03-09  Michael Smith  <msmith@fluendo.com>
4945
4946         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find):
4947           Replace AC3 typefinder with one that isn't terrible, and actually
4948           works usefully.
4949
4950 2007-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
4951
4952         * gst/audioconvert/gstaudioconvert.c:
4953         (gst_audio_convert_transform):
4954           fix error category and translatable string
4955           
4956
4957 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
4958
4959         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
4960         * pkgconfig/gstreamer-plugins-base.pc.in:
4961           Fix up utils => pbutils here too.
4962
4963 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
4964
4965         * gst/subparse/gstsubparse.c: (handle_buffer):
4966           Break out of loop in chain function as soon as possible if we get
4967           a non-OK flow return.
4968
4969 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
4970
4971         * tests/check/elements/alsa.c: (GST_START_TEST):
4972         Unref the mixer if the state change fails too (if the
4973         alsa devices are inaccessible, for example)
4974
4975 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
4976
4977         * tests/check/Makefile.am:
4978         Don't test libvisual elements in the states check, because libvisual
4979         seems to leak internally.
4980
4981         Re-enable the alsa and states tests now that there's new suppressions
4982         in gst.supp.
4983
4984         * tests/check/elements/alsa.c: (GST_START_TEST):
4985         Don't leak the alsamixer we instantiated.
4986
4987 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
4988
4989         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
4990         (gst_ximagesink_change_state), (gst_ximagesink_reset),
4991         (gst_ximagesink_finalize):
4992         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
4993         (gst_xvimagesink_reset), (gst_xvimagesink_finalize):
4994         Move some cleanup stuff from the state change handler into a _reset()
4995         function that can be called from _finalize(). This ensures that things
4996         get freed even if (for some reason) the NULL->READY state transition
4997         fails in the parent class.
4998         Even if a parent state change fails, process our downward state change
4999         logic instead of bailing out early.
5000         Free the correct xcontext pointer in ximagesink's xcontext_clear.
5001
5002 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
5003
5004         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
5005         Extra log line.
5006
5007         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_init):
5008         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_init):
5009         Use pango_font_description_set_family_static instead of 
5010         pango_font_description_set_family to save a string copy (it was
5011         leaking due to the strdup anyway)
5012
5013         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_finalize):
5014         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_finalize):
5015         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_finalize):
5016         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_finalize):
5017         Chain up in finalize.
5018
5019 2007-03-07  Tim-Philipp Müller  <tim at centricular dot net>
5020
5021         * gst-libs/gst/interfaces/mixertrack.c:
5022         (gst_mixer_track_class_init), (gst_mixer_track_get_property),
5023         (gst_mixer_track_set_property):
5024           API: add "untranslated-label" property which should be set by
5025           implementations at construct time (#414645).
5026
5027         * ext/alsa/gstalsamixeroptions.c: (gst_alsa_mixer_options_new):
5028         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
5029           Set "untranslated-label" when constructing mixer track objects.
5030
5031         * tests/check/elements/alsa.c: (GST_START_TEST), (alsa_suite):
5032           Unit test to check the above.
5033
5034 2007-03-07  Wim Taymans  <wim@fluendo.com>
5035
5036         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
5037         Fix confusing debug message.
5038
5039 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
5040
5041         * gst-plugins-base.doap:
5042         update doap file with new version
5043
5044 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
5045
5046         * configure.ac:
5047         Back to CVS
5048
5049 === release 0.10.12 ===
5050
5051 2007-03-07  Jan Schmidt <thaytan@mad.scientist.com>
5052
5053         * configure.ac:
5054           releasing 0.10.12, "Zombie Horde"
5055
5056 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
5057
5058         * configure.ac:
5059         Bump version to 0.10.11.4 pre-release
5060
5061 2007-03-06  Wim Taymans  <wim@fluendo.com>
5062
5063         * gst-libs/gst/audio/gstbaseaudiosink.c:
5064         (gst_base_audio_sink_async_play):
5065         Fix regression that made GStreamer skip the first samples of audio.
5066         Fixes #414684.
5067
5068 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
5069
5070         * configure.ac:
5071         Bump version to 0.10.11.3 pre-release
5072
5073 2007-03-05  Sebastian Dröge  <slomo@circular-chaos.org>
5074
5075         * po/POTFILES.in:
5076           Update paths for the rename from utils to pbutils to fix the build.
5077
5078 2007-03-05  Tim-Philipp Müller  <tim at centricular dot net>
5079
5080         * gst-libs/gst/pbutils/Makefile.am:
5081           Change directory to install headers in from gst/utils to gst/pbutils
5082           as well.
5083
5084 2007-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
5085
5086         * configure.ac:
5087         * docs/libs/gst-plugins-base-libs-docs.sgml:
5088         * docs/libs/gst-plugins-base-libs-sections.txt:
5089         * gst-libs/gst/Makefile.am:
5090         * gst-libs/gst/interfaces/mixer.c:
5091         * gst-libs/gst/pbutils/Makefile.am:
5092         * gst-libs/gst/pbutils/descriptions.c:
5093         (gst_pb_utils_get_source_description),
5094         (gst_pb_utils_get_sink_description),
5095         (gst_pb_utils_get_decoder_description),
5096         (gst_pb_utils_get_encoder_description),
5097         (gst_pb_utils_get_element_description),
5098         (gst_pb_utils_add_codec_description_to_tag_list),
5099         (gst_pb_utils_get_codec_description), (gst_pb_utils_list_all):
5100         * gst-libs/gst/pbutils/descriptions.h:
5101         * gst-libs/gst/pbutils/install-plugins.c:
5102         * gst-libs/gst/pbutils/install-plugins.h:
5103         * gst-libs/gst/pbutils/missing-plugins.c:
5104         (gst_missing_uri_source_message_new),
5105         (gst_missing_uri_sink_message_new),
5106         (gst_missing_element_message_new),
5107         (gst_missing_decoder_message_new),
5108         (gst_missing_encoder_message_new),
5109         (gst_missing_plugin_message_get_description):
5110         * gst-libs/gst/pbutils/missing-plugins.h:
5111         * gst-libs/gst/pbutils/pbutils.c: (gst_pb_utils_init):
5112         * gst-libs/gst/pbutils/pbutils.h:
5113         * gst-libs/gst/utils/Makefile.am:
5114         * gst-libs/gst/utils/base-utils.c:
5115         * gst-libs/gst/utils/base-utils.h:
5116         * gst-libs/gst/utils/descriptions.c:
5117         * gst-libs/gst/utils/descriptions.h:
5118         * gst-libs/gst/utils/install-plugins.c:
5119         * gst-libs/gst/utils/install-plugins.h:
5120         * gst-libs/gst/utils/missing-plugins.c:
5121         * gst-libs/gst/utils/missing-plugins.h:
5122         * gst-plugins-base.spec.in:
5123         * gst/playback/Makefile.am:
5124         * gst/playback/gstdecodebin.c:
5125         * gst/playback/gstdecodebin2.c:
5126         * gst/playback/gstplaybasebin.c: (setup_subtitle),
5127         (gen_source_element):
5128         * gst/playback/gstplaybin.c: (plugin_init):
5129         * tests/check/Makefile.am:
5130         * tests/check/libs/pbutils.c: (GST_START_TEST),
5131         (test_pb_utils_install_plugins_do_callout), (libgstpbutils_suite):
5132         * tests/check/libs/utils.c:
5133           rename utils to pbutils
5134
5135 2007-03-02  Jan Schmidt  <thaytan@mad.scientist.com>
5136
5137         * docs/plugins/Makefile.am:
5138         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
5139         * docs/plugins/gst-plugins-base-plugins-sections.txt:
5140         * docs/plugins/inspect/plugin-decodebin2.xml:
5141         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
5142         Add documentation for decodebin2 that indicates that the API
5143         is still unstable.
5144
5145 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
5146
5147         * configure.ac:
5148         Update to 0.10.11.2 (0.10.12 pre-release)
5149
5150 2007-03-01  Wim Taymans  <wim@fluendo.com>
5151
5152         * gst-libs/gst/audio/gstbaseaudiosink.c:
5153         (gst_base_audio_sink_async_play):
5154         base time is irrelevant here.
5155
5156 2007-03-01  Wim Taymans  <wim@fluendo.com>
5157
5158         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
5159         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
5160         Improve debugging.
5161
5162         * gst-libs/gst/audio/gstbaseaudiosink.c:
5163         (gst_base_audio_sink_query), (gst_base_audio_sink_event),
5164         (gst_base_audio_sink_render), (gst_base_audio_sink_async_play):
5165         Improve latency and clock slaving calculations.
5166         Improve slave clock calibration.
5167
5168         * gst-libs/gst/audio/gstringbuffer.c:
5169         (gst_ring_buffer_commit_full):
5170         When we are asked to render N sample to 0 bytes, return N.
5171
5172 2007-03-01  Wim Taymans  <wim@fluendo.com>
5173
5174         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
5175         (gst_alsasink_write), (gst_alsasink_reset):
5176         * ext/alsa/gstalsasink.h:
5177         Remove unused dispose function.
5178         Rename lock to not interfere with alsasrc lock.
5179
5180         * ext/alsa/gstalsasrc.c: (gst_alsasrc_finalize),
5181         (gst_alsasrc_class_init), (gst_alsasrc_init), (set_swparams),
5182         (gst_alsasrc_read), (gst_alsasrc_reset):
5183         * ext/alsa/gstalsasrc.h:
5184         Implement finalize function.
5185         Use lock to protect alsa access.
5186         Implement _reset.
5187         Fine tune sw params.
5188
5189 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
5190
5191         * configure.ac:
5192           Convert to new AG_GST style.
5193
5194 2007-02-28  Wim Taymans  <wim@fluendo.com>
5195
5196         Patch by: Ed Catmur <ed at catmur dot co dot uk>
5197
5198         * gst/playback/gstplaybin.c: (gst_play_bin_vis_unblocked),
5199         (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
5200         Fix race condition when rapidly switching visualisations in playbin.
5201         Fixes #401029.
5202
5203 2007-02-28  Jan Schmidt  <thaytan@mad.scientist.com>
5204
5205         * tests/check/Makefile.am:
5206         Include local stuff before system installed things in LDFLAGS and
5207         CFLAGS.
5208
5209 2007-02-28  Wim Taymans  <wim@fluendo.com>
5210
5211         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_sink_activate):
5212         Improve debugging.
5213
5214 2007-02-28  Wim Taymans  <wim@fluendo.com>
5215
5216         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
5217         (gst_v4lsrc_fixate), (gst_v4lsrc_query):
5218         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_new):
5219         Fix duration and timestamping, taking latency into account.
5220         Implement latency query.
5221
5222 2007-02-28  Wim Taymans  <wim@fluendo.com>
5223
5224         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
5225         (gst_audio_clock_new):
5226         Fix clock name.
5227
5228         * gst-libs/gst/audio/gstbaseaudiosink.c:
5229         (gst_base_audio_sink_init), (gst_base_audio_sink_query):
5230         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
5231         (gst_base_audio_src_query), (gst_base_audio_src_get_offset),
5232         (gst_base_audio_src_create):
5233         Improve latency query code.
5234         Use proper clock names.
5235
5236 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
5237
5238         * tests/check/generic/states.c: (GST_START_TEST):
5239           Copy the states.c test from core again
5240         * tests/check/Makefile.am:
5241           ignore cdio and cdparanoiasrc
5242
5243 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
5244
5245         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
5246         (double_hq), (audio_convert_get_func_index), (check_default),
5247         (audio_convert_prepare_context), (audio_convert_convert):
5248           Also make valgrind happy and avoid copying data in some cases.
5249
5250 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
5251
5252         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
5253         (double_hq), (audio_convert_get_func_index),
5254         (audio_convert_prepare_context), (audio_convert_convert):
5255         * gst/audioconvert/gstaudioconvert.c:
5256         (gst_audio_convert_class_init), (gst_audio_convert_get_unit_size),
5257         (gst_audio_convert_transform_caps):
5258         * tests/check/elements/audioconvert.c: (GST_START_TEST),
5259         (audioconvert_suite):
5260           Don't run inplace if that overwrites source data as we go. Add more
5261           tests. Fixes #339837 even more.
5262
5263 2007-02-27  Julien MOUTTE  <julien@moutte.net>
5264
5265         * tests/examples/seek/seek.c: (do_seek), (set_update_scale),
5266         (msg_segment_done): Fix various seeking bugs (Slider was not
5267         updating when doing a non flushing seek, Reverse playback 
5268         on segment seek was wrong).
5269
5270 2007-02-26  Wim Taymans  <wim@fluendo.com>
5271
5272         * tests/examples/seek/seek.c: (stop_seek):
5273         When we stop scrubbing, don't leave the pipeline PLAYING when we
5274         requested a PAUSED state.
5275
5276 2007-02-25  Tim-Philipp Müller  <tim at centricular dot net>
5277
5278         Patch by: René Stadler <mail at renestadler de>
5279
5280         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
5281           Parse date strings in vorbis comments that have an invalid (zero)
5282           month or day (#410396).
5283
5284         * tests/check/libs/tag.c: (GST_START_TEST):
5285           Test case for the above.
5286
5287 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
5288
5289         Patch by: Loïc Minier <lool+gnome at via ecp fr>
5290
5291         * configure.ac:
5292         * ext/alsa/Makefile.am:
5293         * gst/audiotestsrc/Makefile.am:
5294           Fix compilation with LDFLAGS='-Wl,-z,defs' (#410963).
5295
5296 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
5297
5298         * gst/playback/gstplaybin.c:
5299           Improve docs: point out that the application needs to assist playbin
5300           with buffering.
5301
5302 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
5303
5304         * gst-libs/gst/utils/install-plugins.c:
5305         * gst-libs/gst/utils/missing-plugins.c:
5306         * tests/check/libs/utils.c: (missing_msg_check_getters):
5307           Change GStreamer marker prefix in detail string from 'gstreamer.net'
5308           to just 'gstreamer'. Document the caps string component of the
5309           decoder/encoder detail a bit better, since not everyone will be
5310           familiar with the GStreamer media type/caps system (but they better
5311           enjoy nested itemized lists).
5312
5313 2007-02-22  Tim-Philipp Müller  <tim at centricular dot net>
5314
5315         * gst-libs/gst/netbuffer/gstnetbuffer.c:
5316         (notgst_buffer_copy_fields_in_place), (gst_netbuffer_copy):
5317           Fix copying of GstNetBuffer (would crash before, or at least lead to
5318           invalid memory access, #410772), for now by copying the GstBuffer copy
5319           code from the core over here so we can copy the GstBuffer fields on a
5320           provided buffer instance (of type GstNetBuffer in this case). Would be
5321           better to fix this with some support by the core though (and in the long
5322           run change the broken GstBuffer/GstMiniObject copy semantics, #393099).
5323
5324         * tests/check/Makefile.am:
5325           Enable unit test for GstNetBuffer.
5326
5327 2007-02-22  Andy Wingo  <wingo@pobox.com>
5328
5329         * gst-libs/gst/audio/gstbaseaudiosink.c
5330         (gst_base_audio_sink_init): Disable pull-mode activation until we
5331         figure out how to make audio sinks go to PLAYING.
5332
5333 2007-02-22  Stefan Kost  <ensonic@users.sf.net>
5334
5335         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
5336         (double_hq), (audio_convert_get_func_index),
5337         (audio_convert_prepare_context), (audio_convert_convert):
5338         * gst/audioconvert/audioconvert.h:
5339         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_setup_matrix),
5340         (gst_channel_mix_mix_int), (gst_channel_mix_mix_float):
5341         * gst/audioconvert/gstchannelmix.h:
5342         * tests/check/elements/audioconvert.c: (GST_START_TEST):
5343           Add float as an intermediate format, as well as float mixing. Enable
5344           test that was failing before. Fixes #339837
5345
5346 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
5347
5348         * tests/examples/seek/seek.c: (do_seek):
5349         Undo the previous commit: -1 as a stop time implies that the stop
5350         time is the end of file, clearing any previously configured segment.
5351
5352 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
5353
5354         * tests/examples/seek/seek.c: (do_seek):
5355         Don't SEEK_SET with a stop time of -1, use SEEK_NONE instead.
5356
5357 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
5358
5359         * gst/volume/gstvolume.c: (volume_process_int16),
5360         (volume_process_int16_clamp), (volume_set_caps):
5361           Unbreak volume, value remains gint.
5362
5363 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
5364
5365         * gst/volume/gstvolume.c: (volume_choose_func),
5366         (volume_update_real_volume), (gst_volume_set_volume),
5367         (gst_volume_init), (volume_process_double), (volume_process_float),
5368         (volume_process_int16), (volume_process_int16_clamp),
5369         (volume_set_caps), (volume_transform_ip), (volume_update_volume):
5370         * gst/volume/gstvolume.h:
5371           Extend float audio support (double) and some int->uint cleanups.
5372
5373 2007-02-20  Edward Hervey  <edward@fluendo.com>
5374
5375         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
5376         (multi_queue_underrun_cb), (gst_decode_group_check_if_drained),
5377         (sort_end_pads), (gst_decode_group_expose),
5378         (gst_decode_group_hide):
5379         Don't free groups from the streaming threads. Just put them aside and
5380         free them in dispose.
5381
5382 2007-02-20  Edward Hervey  <edward@fluendo.com>
5383
5384         * gst/playback/gstdecodebin2.c: (connect_element),
5385         (pad_added_group_cb), (gst_decode_group_check_if_blocked),
5386         (sort_end_pads), (gst_decode_group_expose):
5387         Handle dynamic pads within groups.
5388         Sort pads before exposing them in order to make playbin happy.
5389         There still is a race with the multiqueue filling up. This should be
5390         solved separately.
5391         Fixes #398721
5392
5393 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
5394
5395         * gst-libs/gst/utils/base-utils.c:
5396         * gst-libs/gst/utils/descriptions.c:
5397         * gst-libs/gst/utils/install-plugins.c:
5398         * gst-libs/gst/utils/missing-plugins.c:
5399           Some more docs (and descriptions for two subtitle formats).
5400
5401 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
5402
5403         * gst-libs/gst/audio/audio.c:
5404           Fix documentation.
5405
5406 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
5407
5408         Patch by: Yves Lefebvre  <ivanohe abacom com>
5409
5410         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps):
5411           Don't leak caps. Fixes #408278.
5412
5413 2007-02-15  Stefan Kost  <ensonic@users.sf.net>
5414
5415         * ext/cdparanoia/gstcdparanoiasrc.h:
5416         * ext/ogg/gstoggdemux.h:
5417         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
5418         (gst_audio_frame_length), (gst_audio_duration_from_pad_buffer),
5419         (gst_audio_is_buffer_framed), (gst_audio_structure_set_int):
5420         * gst-libs/gst/audio/audio.h:
5421         * gst-libs/gst/audio/gstaudiofilter.h:
5422         * gst-libs/gst/interfaces/videoorientation.h:
5423         * gst/adder/gstadder.h:
5424           More docs coverage and some ChangeLog surgery (add missing names)
5425
5426 2007-02-15  Wim Taymans  <wim@fluendo.com>
5427
5428         * sys/ximage/ximagesink.c:
5429         (gst_ximagesink_calculate_pixel_aspect_ratio):
5430         * sys/xvimage/xvimagesink.c:
5431         (gst_xvimagesink_calculate_pixel_aspect_ratio):
5432         Small constifications.
5433
5434 2007-02-15  Wim Taymans  <wim@fluendo.com>
5435
5436         * gst-libs/gst/audio/gstbaseaudiosink.c:
5437         (gst_base_audio_sink_class_init), (gst_base_audio_sink_query),
5438         (gst_base_audio_sink_render), (gst_base_audio_sink_callback),
5439         (gst_base_audio_sink_async_play),
5440         (gst_base_audio_sink_change_state):
5441         Answer latency query.
5442         Use configured latency when syncing.
5443         Fix clock slaving.
5444
5445         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5446         (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
5447         (gst_base_audio_src_query), (gst_base_audio_src_change_state):
5448         Fix possible memleak.
5449         Implement latency query.
5450         Small cleanups.
5451
5452 2007-02-15  Wim Taymans  <wim@fluendo.com>
5453
5454         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
5455         Ignore errors in reset, these are not fatal. They also grab the element
5456         lock which is already taking when this function is called. Fixes
5457         #405451.
5458
5459 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
5460
5461         * configure.ac:
5462           Remove 'tests/examples/xerror/Makefile' from output files again.
5463
5464 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
5465
5466         * configure.ac:
5467         * docs/plugins/Makefile.am:
5468           Also crossref against gst-plugins-base-libs.
5469
5470 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
5471
5472         * configure.ac:
5473         * docs/libs/Makefile.am:
5474         * docs/plugins/Makefile.am:
5475           Add crossreferences to glib/gobject/gstream docs.
5476
5477         * gst-libs/gst/audio/audio.h:
5478           Source formatting.
5479
5480         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
5481           Add own debug category.
5482
5483 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
5484
5485         Patch by: René Stadler <mail at renestadler de>
5486
5487         * gst-libs/gst/tag/gstvorbistag.c:
5488           Add vorbis/FLAC-tag mapping for new GST_TAG_REFERENCE_LEVEL
5489           (#403597).
5490
5491 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
5492
5493         * gst/playback/gstplaybasebin.c: (setup_source):
5494           When we have external subtitles and wait for the subtitle decodebin
5495           to get up and running, we set up a (sync) bus handler for the
5496           subtitle decodebin, so we can stop waiting when it posts an error
5497           message. However, we should do that before we set the subtitle
5498           decodebin's state to playing, otherwise things are racy and we might
5499           miss error messages posted before we had a chance to set up the bus.
5500           This should finally fix totem hanging on .txt pseudo-subtitle files.
5501           
5502 2007-02-10  Sébastien Moutte  <sebastien at moutte dot net>
5503
5504         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:(gst_base_rtp_audio_payload_handle_frame_based_buffer):
5505           Use gst_gdouble_to_guint64 for conversions.
5506         * win32/common/config.h.in:
5507           Add a define for GST_INSTALL_PLUGINS_HELPER
5508         * win32/common/libgstaudio.def:
5509         * win32/common/libgstcdda.def:
5510         * win32/common/libgstnetbuffer.def:
5511         * win32/common/libgstrtp.def:
5512         * win32/common/libgutils.def:
5513           Add new exported functions.
5514         * win32/vs6/gst_plugins_base.dsw:
5515         * win32/vs6/libgstdecodebin.dsp:
5516         * win32/vs6/libgstnetbuffer.dsp:
5517         * win32/vs6/libgstplaybin.dsp:
5518         * win32/vs6/libgstrtp.dsp:
5519         * win32/vs6/libgstvorbis.dsp:
5520         * win32/vs6/libgstcdda.dsp:
5521         * win32/vs6/libgstgdp.dsp:
5522         * win32/vs6/libgstutils.dsp:
5523           Update and add new project files.
5524
5525 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
5526
5527         * gst/subparse/gstsubparse.c: (subrip_remove_unhandled_tag),
5528         (subrip_remove_unhandled_tags), (parse_subrip):
5529           For SubRip (.srt) subtitles, ignore all markup tags we don't
5530           handle (like font tags, for example).
5531
5532         * tests/check/elements/subparse.c:
5533           Add test for this.
5534
5535 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
5536
5537         * gst/playback/gstdecodebin.c: (add_fakesink),
5538         (gst_decode_bin_change_state):
5539         * gst/playback/gstdecodebin2.c: (add_fakesink),
5540         (gst_decode_bin_change_state):
5541           Don't error out if there is no fakesink in the NULL to READY state
5542           change, since when decodebin is re-used, we're only adding the
5543           fakesink element in READY to PAUSED.
5544
5545         * tests/check/elements/decodebin.c:
5546         (new_decoded_pad_plug_fakesink_cb), (GST_START_TEST),
5547         (decodebin_suite):
5548           Minimal unit test to make sure we can use the same decodebin
5549           instance twice (at least with audiotestsrc input).
5550
5551 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
5552
5553         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name):
5554           Try to get devic-name from device string first, and from handle only
5555           as fallback (seems to yield better results and is more robust
5556           against buggy probing code on the application side).
5557
5558 2007-02-08  Tim-Philipp Müller  <tim at centricular dot net>
5559
5560         Based on patch by: Julien Puydt <julien.puydt at laposte net>
5561
5562         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name_no_handle),
5563         (gst_alsa_find_device_name):
5564         * ext/alsa/gstalsa.h:
5565         * ext/alsa/gstalsasink.c: (gst_alsasink_get_property):
5566         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_property):
5567           Improve device-name detection a bit, especially in the case where
5568           the device is not actually open (#405020, #405024). Move common code
5569           into gstalsa.c instead of duplicating it.
5570
5571 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
5572
5573         * gst/audioconvert/gstaudioconvert.c:
5574           Fix up docs chunk so that gtk-doc doesn't complain, and fix typo.
5575
5576 2007-02-06  Julien MOUTTE  <julien@moutte.net>
5577
5578         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
5579         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_clear),
5580         (gst_xvimagesink_interface_supported),
5581         (gst_xvimagesink_probe_get_properties),
5582         (gst_xvimagesink_probe_probe_property),
5583         (gst_xvimagesink_probe_needs_probe),
5584         (gst_xvimagesink_probe_get_values),
5585         (gst_xvimagesink_property_probe_interface_init),
5586         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
5587         (gst_xvimagesink_init), (gst_xvimagesink_class_init),
5588         (gst_xvimagesink_get_type):
5589         * sys/xvimage/xvimagesink.h: Implement PropertyProbe Interface
5590         for XVAdaptors so that one can choose the adaptor to use with 
5591         gstreamer-properties.
5592
5593 2007-02-06  Stefan Kost  <ensonic@users.sf.net>
5594
5595         * gst/audioconvert/gstaudioconvert.c:
5596           Also mention that a conversion from double to float is suboptimal still.
5597
5598 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
5599
5600         * gst-libs/gst/audio/gstaudiofilter.c:
5601         (gst_audio_filter_class_init), (gst_audio_filter_change_state):
5602           Clear our formats structure and free the caps contained in it when
5603           shutting down.
5604
5605 2007-02-05  Andy Wingo  <wingo@pobox.com>
5606
5607         * gst-libs/gst/audio/gstbaseaudiosink.c
5608         (gst_base_audio_sink_callback): Update basesink->offset so that we
5609         pull monotonically increasing offsets instead of, um, seeking back
5610         to 0 each time. Fixes alsasrc ! alsasink!
5611
5612 2007-02-05  Tim-Philipp Müller  <tim at centricular dot net>
5613
5614         * gst/videoscale/gstvideoscale.c:
5615           A width and height of 1 makes us crash, so increase minimum size to
5616           2x2 pixels until someone feels like fixing this (#404512).
5617
5618 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
5619
5620         * tests/check/pipelines/oggmux.c: (GST_START_TEST), (oggmux_suite):
5621           Add small test to make sure request pads are cleaned up properly
5622           even if oggmux never changes state out of NULL.
5623
5624 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
5625
5626         * tests/check/libs/utils.c: (GST_START_TEST):
5627           Fix unit test. Turns out things work much better when you
5628           NULL-terminate string arrays. Should make p5 build bot happy again.
5629
5630 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
5631
5632         * gst-libs/gst/audio/Makefile.am:
5633         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
5634         (gst_audio_filter_template_base_init),
5635         (gst_audio_filter_template_class_init),
5636         (gst_audio_filter_template_init),
5637         (gst_audio_filter_template_set_property),
5638         (gst_audio_filter_template_get_property),
5639         (gst_audio_filter_template_setup),
5640         (gst_audio_filter_template_filter),
5641         (gst_audio_filter_template_filter_inplace), (plugin_init):
5642           Oops, forgot to commit fixed-up example.
5643
5644 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
5645
5646         * docs/libs/gst-plugins-base-libs-sections.txt:
5647         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
5648         (gst_audio_filter_class_init), (gst_audio_filter_init),
5649         (gst_audio_filter_set_caps),
5650         (gst_audio_filter_class_add_pad_templates):
5651         * gst-libs/gst/audio/gstaudiofilter.h:
5652           Port GstAudioFilter to 0.10. This change technically breaks
5653           API and ABI (and thus also every library developer's heart),
5654           but seems justifiable on the grounds that the base class was
5655           completely unusable before (ie. would crash immediately when
5656           actually used). Fixes #403963 (and eventually also #403572).
5657           Also document all of this a bit.
5658
5659 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
5660
5661         * gst-libs/gst/utils/install-plugins.c:
5662         (gst_install_plugins_spawn_child):
5663         * tests/check/libs/utils.c:
5664         (test_base_utils_install_plugins_do_callout):
5665           Lowering log level to see why things fail on the p5 build bot;
5666           fix some typos in unit test messages.
5667
5668 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
5669
5670         * tests/check/libs/utils.c:
5671         (test_base_utils_install_plugins_do_callout):
5672           Don't hard-code temp directory for test helper; use GLib functions
5673           to write out file and do error checking etc.
5674
5675 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
5676
5677         * gst-libs/gst/utils/Makefile.am:
5678         * gst-libs/gst/utils/base-utils.h:
5679         * gst-libs/gst/utils/install-plugins.c:
5680         (gst_install_plugins_context_set_xid),
5681         (gst_install_plugins_context_new),
5682         (gst_install_plugins_context_free),
5683         (gst_install_plugins_get_helper),
5684         (gst_install_plugins_spawn_child),
5685         (gst_install_plugins_return_from_status),
5686         (gst_install_plugins_installer_exited),
5687         (gst_install_plugins_async), (gst_install_plugins_sync),
5688         (gst_install_plugins_return_get_name),
5689         (gst_install_plugins_installation_in_progress):
5690         * gst-libs/gst/utils/install-plugins.h:
5691           API: add API for applications to initiate installation of missing
5692           plugins, ie. gst_install_plugins_async() primarily.
5693           Based on libgimme-codec by Ryan Lortie.
5694
5695         * configure.ac:
5696           Add --with-install-plugins-helper configure option so distros can specify
5697           the path of the helper script or program to call when plugin installation
5698           is requested (distros: please do any argument munging in this helper
5699           script instead of patching GStreamer to pass arguments differently
5700           to another program directly).
5701
5702         * docs/libs/gst-plugins-base-libs-docs.sgml:
5703         * docs/libs/gst-plugins-base-libs-sections.txt:
5704           Build and document new API.
5705
5706         * tests/check/libs/utils.c: (result_cb),
5707         (test_base_utils_install_plugins_do_callout), (GST_START_TEST),
5708         (libgstbaseutils_suite):
5709           Some simple checks for the new API.
5710
5711 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
5712
5713         * tests/check/elements/audioconvert.c: (test_float_conversion):
5714           Add small test for 32bit float <=> 64bit float conversion (works
5715           only one way so far, 32=>64 produces structured noise).
5716
5717 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
5718
5719         * gst/audioconvert/gstaudioconvert.c:
5720         (set_structure_widths_32_and_64), (make_lossless_changes):
5721           We don't support floats with a width of 40, 48 or 56 bits.
5722
5723 2007-02-02  Stefan Kost  <ensonic@users.sf.net>
5724
5725         * gst/audioconvert/audioconvert.c: (float), (double),
5726         (audio_convert_get_func_index):
5727         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
5728         (make_lossless_changes):
5729           Support for 64-bit float audio in audioconvert (#339837)
5730
5731 2007-02-01  Tim-Philipp Müller  <tim at centricular dot net>
5732
5733         Patch by: Holger Wansing  <linux wansing-online de>
5734
5735         * po/LINGUAS:
5736         * po/de.po:
5737           Add German translation (#352069).
5738
5739 2007-02-01  Sebastian Dröge  <slomo@circular-chaos.org>
5740
5741         reviewed by: Wim Taymans <wim@fluendo.com>
5742
5743         * ext/ogg/gstoggmux.c: (gst_ogg_mux_ogg_pad_destroy_notify),
5744         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad):
5745         Use newly added GstCollectPads API to free the allocated resources in
5746         the GstOggPad structures (#402393).
5747
5748 2007-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
5749
5750         * gst/playback/gstplaybin.c: (gen_vis_element):
5751           Add audioresample+audioconvert in front of the visualisation
5752           element, so that elements like libvisual 0.4 that don't support all
5753           samplerates can work.
5754
5755           Fixes: #402505
5756
5757 2007-01-30  Tim-Philipp Müller  <tim at centricular dot net>
5758
5759         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property),
5760         (gst_play_base_bin_get_streaminfo_value_array):
5761           Take some locks and make a copy of the streaminfo value array we
5762           maintain while holding the lock, so that the application can
5763           retrieve the stream-info as a value array in a thread-safe way.
5764
5765 2007-01-30  Wim Taymans  <wim@fluendo.com>
5766
5767         * gst/audioconvert/gstaudioconvert.c:
5768         Don't fail on 0 sized buffers. Fixes #396835.
5769
5770 2007-01-29  David Schleef  <ds@schleef.org>
5771
5772         * gst/typefind/gsttypefindfunctions.c:
5773           Detect BBCD as video/x-dirac, so we can play raw dirac
5774           streams.
5775
5776 2007-01-29  Tim-Philipp Müller  <tim at centricular dot net>
5777
5778         * ext/theora/theoraenc.c: (theora_enc_chain):
5779           Check return value of theora_encode_header(), or we might try to
5780           allocate a random number of bytes. theora_encode_header() can fail
5781           if libtheora has been compiled with encoding support disabled.
5782           Fixes #398110.
5783
5784 2007-01-29  Wim Taymans  <wim@fluendo.com>
5785
5786         * tests/check/gst/.cvsignore:
5787         Do as buildbot says.
5788
5789 2007-01-29  Wim Taymans  <wim@fluendo.com>
5790
5791         * ext/libvisual/visual.c: (gst_visual_src_setcaps):
5792         Fix strides in libvisual. Gst uses X strides.
5793         Inspired by: <ed at catmur dot co dot uk> and 
5794         <tim at centricular dot net>
5795         Fixes #401118.
5796
5797 2007-01-27  Wim Taymans  <wim@fluendo.com>
5798
5799         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
5800         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
5801         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_do_seek),
5802         (gst_ogg_demux_perform_seek),
5803         (gst_ogg_demux_bisect_forward_serialno),
5804         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
5805         (gst_ogg_demux_find_chains), (gst_ogg_demux_handle_page),
5806         (gst_ogg_demux_chain), (gst_ogg_demux_combine_flows),
5807         (gst_ogg_demux_loop_reverse), (gst_ogg_demux_loop):
5808         * ext/ogg/gstoggdemux.h:
5809         Properly propagate streaming errors when we are scanning the file for
5810         chains so that we don't crash when shut down. Might fix some crashers
5811         when quickly switching oggs in RB such as #332503 and #378436.
5812
5813 2007-01-26  Tim-Philipp Müller  <tim at centricular dot net>
5814
5815         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
5816           Map a gnome-vfs HOST_NOT_FOUND error into a GStreamer NOT_FOUND
5817           error code as well.
5818
5819 2007-01-25  Wim Taymans  <wim@fluendo.com>
5820
5821         * gst/playback/gstplaybasebin.c: (remove_source):
5822         Don't try to disconnect a signal from a finalized object.
5823
5824 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
5825
5826         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose):
5827           Cast lock macro parameters to make sure we're actually accessing the
5828           lock member at the right class level. Free list itself in _dispose()
5829           as well and NULL it in case dispose gets called multiple times.
5830
5831 2007-01-25  Edward Hervey  <edward@fluendo.com>
5832
5833         * gst/playback/gstdecodebin2.c:
5834         (gst_decode_bin_dispose),(gst_decode_bin_finalize):
5835         Free GstDecodeGroups no longer used.
5836         (gst_decode_group_expose):
5837         Don't unlock too many times !
5838         (deactivate_free_recursive):
5839         Free iterator once we're done with it.
5840         Fix for recursively deactivating elements (stop at ghostpads).
5841
5842 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
5843
5844         * gst/playback/gstplaybin.c: (handoff):
5845           Fix up caps on the frame buffer before we save it and potentially
5846           make it accessible to other threads via g_object_get; also use
5847           gst_buffer_replace() instead of gst_mini_object_replace().
5848
5849 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
5850
5851         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
5852           Make getting the current frame thread-safe.
5853
5854 2007-01-25  Edward Hervey  <edward@fluendo.com>
5855
5856         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize),
5857         (gst_decode_group_new), (gst_decode_group_free):
5858         Set queues to bigger sizes to cope with HD contents.
5859         Fix some mutex freeing and add comment about MT safe methods.
5860
5861 2007-01-24  Tim-Philipp Müller  <tim at centricular dot net>
5862
5863         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
5864         (gst_text_overlay_text_event):
5865           Don't unnecessarily ref (and then leak) upstream events if the text
5866           pad is not linked. Fixes #399948.
5867
5868         * tests/check/gst-plugins-base.supp:
5869           Add suppression for pango on edgy/x86 for textoverlay test.
5870
5871 2007-01-24  Wim Taymans  <wim@fluendo.com>
5872
5873         * gst-libs/gst/rtp/gstrtpbuffer.h:
5874         Add some more fixed payloads.
5875
5876 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
5877
5878         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
5879           Error out properly if we get an error from libogg while reading the
5880           BOS page(s). Fixes crash parsing 'fuzzed' ogg file (#399340).
5881
5882 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
5883
5884         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize):
5885           Don't leak mutex.
5886
5887         * tests/check/elements/playbin.c:
5888         (test_sink_usage_video_only_stream),
5889         (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
5890         (test_suburi_error_wrongproto), (test_missing_urisource_handler),
5891         (test_missing_suburisource_handler),
5892         (test_missing_primary_decoder), (playbin_suite):
5893           Run all tests once with decodebin and once with decodebin2.
5894           One test does not pass yet with decodebin2.
5895
5896 2007-01-23  Edward Hervey  <edward@fluendo.com>
5897
5898         * ext/ogg/gstoggmux.c: (all_pads_eos), (gst_ogg_mux_collected):
5899         Fix the cases where oggmux doesn't properly figure out that all
5900         sinkpads have gone EOS, and therefore doesn't push out the remaining
5901         buffers and the final EOS event.
5902         Fixes #363379
5903
5904 2007-01-23  Julien MOUTTE  <julien@moutte.net>
5905
5906         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
5907         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
5908         Don't lock on navigation event push, just on keysym to string.
5909         Fixes #397673 again.
5910
5911 2007-01-22  Edward Hervey  <edward@fluendo.com>
5912
5913         * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
5914         (get_current_group), (group_demuxer_event_probe),
5915         (gst_decode_group_expose), (deactivate_free_recursive),
5916         (gst_decode_group_free):
5917         Cleanups.
5918         Don't forget to emit 'no-more-pads' once a group is exposed.
5919         Cleanup elements from a DecodeGroup once we remove it.
5920         Protect call to gst_decode_group_expose() with the decodebin lock.
5921
5922 2007-01-22  Julien MOUTTE  <julien@moutte.net>
5923
5924         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
5925         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
5926         Looking at Xorg code i can't figure out if that XKeysymToString
5927         function is thread sensible or not. Lock it just in case as
5928         recommended by Radek Doulik <rodo at ximian dot com>.
5929
5930 2007-01-22  Julien MOUTTE  <julien@moutte.net>
5931
5932         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
5933         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
5934         Lock that X Call as well. Fixes #397673.
5935
5936 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
5937
5938         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
5939           Don't go into an endless loop if the file starts with 00 00 01 2X,
5940           like quicktime redirect files might. Fixes #396042.
5941
5942         * tests/check/Makefile.am:
5943         * tests/check/gst/.cvsignore:
5944         * tests/check/gst/typefindfunctions.c: (GST_START_TEST),
5945         (typefindfunctions_suite):
5946           Add unit test for the above.
5947
5948 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
5949
5950         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
5951           On second thought, use "depth" field rather than "bpp" field.
5952
5953 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
5954
5955         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
5956           Camtasia caps apparently need a bpp field (#398875).
5957
5958 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
5959
5960         * gst/playback/gstplaybasebin.c: (setup_subtitle),
5961         (gen_source_element), (gst_play_base_bin_change_state):
5962           Attempt at a better error message in case we don't have the required
5963           URI handler installed; post missing-plugin message also when we're
5964           missing an URI handler for the subtitle URI; clean up properly also
5965           when an error occurs and we never made it to PAUSED state.
5966
5967         * tests/check/elements/playbin.c: (GST_START_TEST),
5968         (playbin_suite):
5969           Check that we're also getting a missing-plugin messsage for a
5970           missing subtitle URI handler (and clean up properly).
5971
5972 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
5973
5974         * gst/playback/gstplaybasebin.c: (analyse_source), (setup_source):
5975           Plug a few reference leaks.
5976
5977 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
5978
5979         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
5980           Lower probability a bit if the marker isn't right at the start,
5981           to decrease the chance of false positives.
5982
5983 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
5984
5985         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
5986           Small mpeg2 system stream typefinding improvement: make typefinder
5987           probe a bit into the stream instead of just looking for a marker
5988           at the beginning. Fixes #397810.
5989
5990 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
5991
5992         * gst/audioconvert/gstchannelmix.c:
5993           Remove compatibility cruft for prehistoric GLib versions.
5994
5995 2007-01-17  Tim-Philipp Müller  <tim at centricular dot net>
5996
5997         * gst/playback/Makefile.am:
5998         * gst/playback/gstdecodebin.c: (close_pad_link):
5999         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
6000         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
6001         (gst_play_base_bin_handle_message_func), (unknown_type):
6002           Let decodebin be the element to post missing-plugin messages for
6003           missing decoders (rather than playbin); make playbin implement
6004           GstBin::handle_message so we can suppress missing-plugin messages
6005           for types we're not handling on purpose (don't want to bring up an
6006           installer in those cases).
6007
6008 2007-01-16  Tim-Philipp Müller  <tim at centricular dot net>
6009
6010         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6011         * gst-libs/gst/tag/gstvorbistag.c:
6012         (gst_tag_list_to_vorbiscomment_buffer):
6013         * gst/typefind/gsttypefindfunctions.c: (vorbis_type_find):
6014           Fix potentially unaligned access (#397207).
6015
6016 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
6017
6018         * tests/examples/seek/seek.c: (set_scale), (update_scale),
6019         (do_seek), (stop_seek), (pause_cb), (stop_cb), (loop_toggle_cb),
6020         (rate_spinbutton_changed_cb), (msg_eos), (msg_segment_done),
6021         (main):
6022           Allow to toggle looping while it plays. Fix callback prototype. Clean
6023           up code a bit more. Add copyright header.
6024
6025 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
6026
6027         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
6028           Red and blue mask was swapped (spotted by Dan Williams).
6029
6030 2007-01-15  Stefan Kost  <ensonic@users.sf.net>
6031
6032         * gst-libs/gst/tag/gstid3tag.c:
6033         * gst-libs/gst/tag/gstvorbistag.c:
6034           Use new beats-per-minute tag from core.
6035
6036 2007-01-15  Tim-Philipp Müller  <tim at centricular dot net>
6037
6038         * po/POTFILES.in:
6039           Add new files with translatable strings, so they actually make it
6040           into the template file one day.
6041
6042 2007-01-12  Andy Wingo  <wingo@pobox.com>
6043
6044         * gst-libs/gst/audio/gstbaseaudiosink.c
6045         (gst_base_audio_sink_fixate): Implement, stolen from baseaudiosrc.
6046         (gst_base_audio_sink_activate_pull): Remove the handwavey nego
6047         stuff, as the base class handles this now. Actually tell the ring
6048         buffer to start.
6049         (gst_base_audio_sink_callback): Cast the ring buffer correctly.
6050         How did this work before? Maybe I'm not as awesome a programmer as
6051         I think.
6052
6053         * gst-libs/gst/audio/gstbaseaudiosrc.c
6054         (gst_base_audio_src_fixate): Rework as a basesrc vmethod instead
6055         of a pad function.
6056
6057 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
6058
6059         * gst-libs/gst/utils/missing-plugins.c: (copy_and_clean_caps):
6060           Remove more fields so that the application can better blacklist
6061           formats that have been tried before.
6062
6063 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
6064
6065         * gst-libs/gst/audio/mixerutils.h:
6066           Add G_BEGIN_DECLS and G_END_DECLS guards so these helpers can be
6067           used when compiling with c++ compilers as well.
6068
6069 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
6070
6071         * gst/typefind/gsttypefindfunctions.c:
6072           Fix comment.
6073
6074 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
6075
6076         * gst/playback/gstplaybin.c: (post_missing_element_message),
6077         (gen_video_element), (gen_text_element), (gen_audio_element),
6078         (gen_vis_element):
6079           Post missing-plugin messages also when we error out because
6080           converters, textoverlay or auto*sinks are missing (#161922).
6081
6082 2007-01-10  Wim Taymans  <wim@fluendo.com>
6083
6084         * gst/playback/gstdecodebin.c: (dynamic_add), (close_pad_link),
6085         (is_demuxer_element), (new_caps):
6086         * gst/playback/gstplaybasebin.c: (source_new_pad):
6087         Fix the case where we try to ref a NULL element when we delay a link
6088         because of unfixed caps.
6089         Set the state of autoplugged decodebins to PAUSED.
6090         RTSP now works in playbin, we can remove it from the blacklist.
6091
6092 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
6093
6094         * gst/playback/Makefile.am:
6095         * gst/playback/gstplaybasebin.c: (string_arr_has_str),
6096         (unknown_type), (setup_subtitle), (gen_source_element):
6097         * gst/playback/gstplaybin.c: (plugin_init):
6098           Post missing-plugin messages on the bus for missing sources and
6099           missing decoders/demuxers/depayloaders; fix error code used when
6100           we're missing an URI handler source; for media types that we are not
6101           handling on purpose at the moment, don't print "don't know how to
6102           handle xyz" messages to the terminal or post missing-plugin
6103           messages on the bus.
6104
6105         * tests/check/elements/playbin.c: (create_playbin),
6106         (GST_START_TEST), (gst_codec_src_uri_get_type),
6107         (gst_codec_src_uri_get_protocols), (gst_codec_src_uri_get_uri),
6108         (gst_codec_src_uri_set_uri), (gst_codec_src_uri_handler_init),
6109         (gst_codec_src_init_type), (gst_codec_src_base_init),
6110         (gst_codec_src_create), (gst_codec_src_class_init),
6111         (gst_codec_src_init), (plugin_init), (playbin_suite):
6112           Add some tests for the missing-plugin stuff.
6113
6114 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
6115
6116         * configure.ac:
6117         * gst-libs/gst/Makefile.am:
6118         * gst-libs/gst/utils/Makefile.am:
6119         * gst-libs/gst/utils/base-utils.c: (gst_base_utils_init):
6120         * gst-libs/gst/utils/base-utils.h:
6121         * gst-libs/gst/utils/descriptions.c: (format_info_get_desc),
6122         (find_format_info), (caps_are_rtp_caps),
6123         (gst_base_utils_get_source_description),
6124         (gst_base_utils_get_sink_description),
6125         (gst_base_utils_get_decoder_description),
6126         (gst_base_utils_get_encoder_description),
6127         (gst_base_utils_get_element_description),
6128         (gst_base_utils_add_codec_description_to_tag_list),
6129         (gst_base_utils_get_codec_description), (gst_base_utils_list_all):
6130         * gst-libs/gst/utils/descriptions.h:
6131         * gst-libs/gst/utils/missing-plugins.c:
6132         (missing_structure_get_type), (copy_and_clean_caps),
6133         (gst_missing_uri_source_message_new),
6134         (gst_missing_uri_sink_message_new),
6135         (gst_missing_element_message_new),
6136         (gst_missing_decoder_message_new),
6137         (gst_missing_encoder_message_new),
6138         (missing_structure_get_string_detail),
6139         (missing_structure_get_caps_detail),
6140         (gst_missing_plugin_message_get_installer_detail),
6141         (gst_missing_plugin_message_get_description),
6142         (gst_is_missing_plugin_message):
6143         * gst-libs/gst/utils/missing-plugins.h:
6144           API: add new libgstbaseutils library with functions
6145           - to create and parse missing-plugins messages
6146           - that provide (translated) descriptions for caps/decoders/sources/etc.
6147           Closes #392393.
6148
6149         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
6150         * pkgconfig/gstreamer-plugins-base.pc.in:
6151           Add new lib.
6152
6153         * docs/libs/gst-plugins-base-libs-docs.sgml:
6154         * docs/libs/gst-plugins-base-libs-sections.txt:
6155           Generate docs for new lib and API.
6156
6157         * tests/check/Makefile.am:
6158         * tests/check/libs/.cvsignore:
6159         * tests/check/libs/utils.c: (missing_msg_check_getters),
6160         (GST_START_TEST), (libgstbaseutils_suite):
6161           Add some basic unit tests.
6162
6163 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
6164
6165         * ext/ogg/Makefile.am:
6166           Dist gstoggdemux.h to fix 'make distcheck'.
6167
6168         * sys/v4l/Makefile.am:
6169           Fix 'make distcheck' even more.
6170
6171 2007-01-09  Wim Taymans  <wim@fluendo.com>
6172
6173         * docs/plugins/Makefile.am:
6174         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6175         * docs/plugins/gst-plugins-base-plugins-sections.txt:
6176         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
6177         (gst_ogg_pad_query_types), (gst_ogg_pad_submit_page),
6178         (gst_ogg_chain_reset), (gst_ogg_chain_new_stream),
6179         (gst_ogg_demux_perform_seek):
6180         * ext/ogg/gstoggdemux.h:
6181         Added docs.
6182         Add some more comments.
6183         Small cleanups.
6184
6185 2007-01-09  Wim Taymans  <wim@fluendo.com>
6186
6187         * ext/theora/theoradec.c:
6188         * ext/vorbis/vorbisdec.c:
6189         * gst-libs/gst/audio/gstringbuffer.c:
6190         (gst_ring_buffer_commit_full):
6191         * gst-libs/gst/audio/gstringbuffer.h:
6192         * gst-libs/gst/rtp/gstrtpbuffer.c:
6193         * gst-libs/gst/tag/gstvorbistag.c:
6194         Small documentation updates/fixes
6195
6196 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
6197
6198         * configure.ac:
6199           Require core CVS HEAD for Andy's basesrc/sink API additions.
6200
6201 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
6202
6203         Patch by: Günter Thelen  <daedalus dot inc at gmx net>
6204
6205         * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
6206         (plugin_init):
6207           Add typefinder for flac-in-ogg in conformance with the ogg-mapping
6208           on flac.sf.net (there appear to be other versions of the first
6209           ogg page in the wild) (#391365).
6210
6211 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
6212
6213         * configure.ac:
6214           Check if localtime_r() is available.
6215
6216         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
6217           If localtime_r() is not available, fall back to localtime(). Should
6218           fix build on MingW (#393310).
6219
6220 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
6221
6222         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
6223         * gst/subparse/gstsubparse.h:
6224           Remove spurious 1000 subtrahend when calculating the timestamp from
6225           the frame number and the frame rate . Also, use the frames/second
6226           value specified in the first line of the file, if one is specified
6227           there. Should fix #357503.
6228
6229         * tests/check/elements/subparse.c: (do_test),
6230         (test_tmplayer_do_test), (test_microdvd_do_test), (GST_START_TEST),
6231         (subparse_suite):
6232           Add some basic unit tests for the microdvd subtitle format.
6233
6234 2007-01-07  Julien MOUTTE  <julien@moutte.net>
6235
6236         Patch by: Young-Ho Cha <ganadist at chollian dot net>
6237
6238         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
6239         (gst_xvimage_buffer_finalize), (gst_xvimagesink_xvimage_new),
6240         (gst_xvimagesink_xvimage_put), (gst_lookup_xv_port_from_adaptor),
6241         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps),
6242         (gst_xvimagesink_set_xwindow_id),
6243         (gst_xvimagesink_set_event_handling),
6244         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
6245         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
6246         Fixes: #390076.
6247         Add an adaptor property to select a specific XV adaptor.
6248         * sys/xvimage/xvimagesink.h:
6249
6250 2007-01-07  Julien MOUTTE  <julien@moutte.net>
6251
6252         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
6253         (gst_ximagesink_handle_xerror), (gst_ximagesink_ximage_new),
6254         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
6255         (gst_ximagesink_handle_xevents), (gst_ximagesink_setcaps),
6256         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
6257         (gst_ximagesink_expose), (gst_ximagesink_set_event_handling):
6258         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
6259         (gst_xvimage_buffer_finalize), (gst_xvimagesink_handle_xerror),
6260         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
6261         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_setcaps),
6262         (gst_xvimagesink_change_state), (gst_xvimagesink_set_xwindow_id),
6263         (gst_xvimagesink_expose), (gst_xvimagesink_set_event_handling):
6264         Use flow_lock much more to protect every access to xwindow.
6265         Try to catch erros while creating images in case some drivers are
6266         just generating an XError when the requested image is too big.
6267         Should fix : #354698, #384008, #384060.
6268         * tests/icles/stress-xoverlay.c: (cycle_window), (create_window):
6269         Implement some stress testing of setting window xid.
6270
6271 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
6272
6273         * win32/common/libgsaudio.def:
6274           Add new exported function.
6275         * win32/common/libgstogg.dsp:
6276           Add gstoggaviparse.c to the build.
6277         * win32/common/libgstvideoscale.dsp:
6278           Add vs_4tap.c to the build.
6279         * win32/common/libgstvorbis.dsp:
6280           Add vorbistag.c to the build.
6281         
6282 2007-01-06  Andy Wingo  <wingo@pobox.com>
6283
6284         * gst-libs/gst/audio/gstbaseaudiosink.c
6285         (gst_base_audio_sink_class_init)
6286         (gst_base_audio_sink_init): 
6287         (gst_base_audio_sink_activate_pull): Add an activate_pull function
6288         to baseaudiosink, and tell basesink that we can work in pull mode.
6289         This way the ring buffer thread drives the pipeline directly, if
6290         pull mode is possible. There is some lingering nastiness regarding
6291         capsnego, however.
6292         (gst_base_audio_sink_callback): Implement the callback to pull
6293         data. This interface is a bit light, though -- it should get a
6294         GstFlowReturn return value at least.
6295
6296 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
6297
6298         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_stream_out):
6299         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
6300         * gst/playback/gstdecodebin2.c:
6301         (gst_decode_group_check_if_blocked):
6302           Printf format and missing argument fixes.
6303
6304 2007-01-05  Jan Schmidt  <thaytan@mad.scientist.com>
6305
6306         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header),
6307         (gst_ogm_parse_change_state):
6308         Activate pads before adding them to the element.
6309
6310 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
6311
6312         * tests/examples/seek/scrubby.c: (main):
6313         * tests/examples/seek/seek.c: (main):
6314           Call g_thread_init() first thing in main() (see #391278).
6315
6316 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
6317
6318         * tests/check/Makefile.am:
6319         * tests/check/libs/.cvsignore:
6320         * tests/check/libs/netbuffer.c: (GST_START_TEST),
6321         (netbuffer_suite):
6322           Add test for GstNetBuffer + gst_buffer_copy(). Disabled
6323           for the time being, since it's broken, see #393099.
6324
6325 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
6326
6327         * tests/check/Makefile.am:
6328           Update to use GST_PLUGINS_BASE_CFLAGS as well.
6329
6330 2007-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
6331
6332         * configure.ac:
6333           split out GST_CFLAGS into GST_PLUGINS_BASE_CFLAGS and GST_CFLAGS
6334           so that GST_BASE_CFLAGS can go inbetween them, making sure
6335           we use uninstalled gst-libs headers
6336         * docs/libs/Makefile.am:
6337         * ext/alsa/Makefile.am:
6338         * ext/cdparanoia/Makefile.am:
6339         * ext/gnomevfs/Makefile.am:
6340         * ext/libvisual/Makefile.am:
6341         * ext/ogg/Makefile.am:
6342         * ext/theora/Makefile.am:
6343         * ext/vorbis/Makefile.am:
6344         * gst-libs/gst/audio/Makefile.am:
6345         * gst-libs/gst/cdda/Makefile.am:
6346         * gst-libs/gst/interfaces/Makefile.am:
6347         * gst-libs/gst/riff/Makefile.am:
6348         * gst-libs/gst/rtp/Makefile.am:
6349         * gst-libs/gst/tag/Makefile.am:
6350         * gst/adder/Makefile.am:
6351         * gst/audioconvert/Makefile.am:
6352         * gst/audiorate/Makefile.am:
6353         * gst/audioresample/Makefile.am:
6354         * gst/playback/Makefile.am:
6355         * gst/tcp/Makefile.am:
6356         * gst/videoscale/Makefile.am:
6357         * gst/volume/Makefile.am:
6358         * sys/ximage/Makefile.am:
6359         * sys/xvimage/Makefile.am:
6360         * tests/icles/Makefile.am:
6361           adapt
6362
6363 2007-01-04  Julien MOUTTE  <julien@moutte.net>
6364
6365         * gst-libs/gst/interfaces/xoverlay.c:
6366         (gst_x_overlay_handle_events):
6367         * gst-libs/gst/interfaces/xoverlay.h:
6368         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
6369         (gst_ximagesink_set_xwindow_id),
6370         (gst_ximagesink_set_event_handling),
6371         (gst_ximagesink_xoverlay_init), (gst_ximagesink_set_property),
6372         (gst_ximagesink_get_property), (gst_ximagesink_init),
6373         (gst_ximagesink_class_init):
6374         * sys/ximage/ximagesink.h:
6375         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new),
6376         (gst_xvimagesink_set_xwindow_id),
6377         (gst_xvimagesink_set_event_handling),
6378         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_set_property),
6379         (gst_xvimagesink_get_property), (gst_xvimagesink_init),
6380         (gst_xvimagesink_class_init):
6381         * sys/xvimage/xvimagesink.h:
6382         * tests/icles/stress-xoverlay.c: (toggle_events), (create_window):
6383         Add a method to the XOverlay interface to allow disabling of 
6384         event handling in x[v]imagesink elements. This will let X events
6385         propagate to parent windows which can be usefull in some cases.
6386         Be carefull that the application is then responsible of pushing
6387         navigation events and expose events to the video sink.
6388         Fixes: #387138.
6389
6390 2007-01-03  Tim-Philipp Müller  <tim at centricular dot net>
6391
6392         * gst-libs/gst/tag/gstvorbistag.c:
6393         * tests/check/libs/tag.c: (GST_START_TEST):
6394           Add vorbistag <=> GStreamer tag mapping for GST_TAG_LOCATION
6395           (fixes #392070).
6396
6397 2007-01-01  Tim-Philipp Müller  <tim at centricular dot net>
6398
6399         * configure.ac:
6400         * docs/Makefile.am:
6401         * docs/design/Makefile.am:
6402           Dist design docs.
6403
6404 2006-12-27  Julien MOUTTE  <julien@moutte.net>
6405
6406         * docs/libs/gst-plugins-base-libs-sections.txt: Fix a documentation
6407         typo. Fixes: #390063.
6408
6409 2006-12-27  Julien MOUTTE  <julien@moutte.net>
6410
6411         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
6412         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Plug a
6413         caps leak.
6414         * win32/common/config.h: Updated.
6415
6416 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
6417
6418         * tests/check/elements/gdpdepay.c: (cleanup_gdpdepay),
6419         (setup_gdpdepay_streamheader):
6420         * tests/check/elements/gdppay.c: (cleanup_gdppay),
6421         (setup_gdppay_streamheader):
6422           Fix the dp tests, but activating the pads for the streamheader tests
6423           too and cleaning up conditionaly
6424
6425 2006-12-22  Jan Schmidt  <thaytan@mad.scientist.com>
6426
6427         * gst/ffmpegcolorspace/avcodec.h:
6428         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
6429         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
6430         (gst_ffmpegcsp_avpicture_fill):
6431         * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
6432         (img_get_alpha_info):
6433         Add 2 new caps arrangements, for 24-bit RGB and BGR in 32-bits, but at the
6434         other end of the word. Fixes: #387073.
6435
6436         Add some inconsequential branch hints in a couple of places.
6437
6438 2006-12-21  Tim-Philipp Müller  <tim at centricular dot net>
6439
6440         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
6441         (gst_ffmpeg_caps_to_smpfmt):
6442           The "signed" field in raw audio caps is of boolean type, trying to
6443           extract the value with _get_int() will fail (fix to keep in sync with
6444           the copy in gst-ffmpeg)
6445
6446 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
6447
6448         * tests/check/elements/audioresample.c: (cleanup_audioresample):
6449         * tests/check/elements/audiotestsrc.c: (cleanup_audiotestsrc):
6450         * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
6451         (cleanup_gdpdepay):
6452         * tests/check/elements/gdppay.c: (setup_gdppay), (cleanup_gdppay):
6453         * tests/check/elements/subparse.c: (teardown_subparse):
6454         * tests/check/elements/textoverlay.c: (cleanup_textoverlay):
6455         * tests/check/elements/videorate.c: (cleanup_videorate):
6456         * tests/check/elements/videotestsrc.c: (cleanup_videotestsrc):
6457         * tests/check/elements/volume.c: (cleanup_volume):
6458         * tests/check/elements/vorbisdec.c: (setup_vorbisdec),
6459         (cleanup_vorbisdec):
6460         * tests/check/elements/vorbistag.c: (setup_vorbistag),
6461         (cleanup_vorbistag):
6462           consistent pad (de)activation
6463
6464 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
6465
6466         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
6467           Forgot to register the extensions.
6468
6469 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
6470
6471         * gst/typefind/gsttypefindfunctions.c: (vivo_type_find),
6472         (plugin_init):
6473           Add typefinder for VIVO files (my christmas present to the 90s).
6474
6475 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
6476
6477         * gst/playback/gstdecodebin.c: (type_found):
6478           Special-case the text/plain media type: we only want to recognise it
6479           as a 'raw' decoded media type if it comes from a demuxer or subtitle
6480           parser, but not if the entire stream is of text/plain type. If the
6481           entire stream is text/plain, we should just error out.
6482
6483           This fixes playback of audio files with lyrics in totem. Totem can't
6484           distinguish between text files and subtitle files and passes any
6485           .txt file with the same basename as the main file to playbin as
6486           suburi, and playbin will then throw a 'subtitle found, but no video
6487           stream' error, which isn't entirely helpful. See #380342.
6488
6489           Also, with this change we'll show a slightly more correct error
6490           message in case totem passes a playlist file to us (although a
6491           custom error message wording instead of the default text would
6492           probably not be a bad idea either).
6493
6494           Same problem also needs to be fixed for playbin+decodebin2.
6495
6496         * tests/check/Makefile.am:
6497         * tests/check/elements/decodebin.c: (src_handoff_cb),
6498         (decodebin_new_decoded_pad_cb), (GST_START_TEST),
6499         (decodebin_suite):
6500           Add simple unit test for decodebin for the above.
6501
6502 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
6503
6504         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
6505         * gst/playback/gstdecodebin2.c: (gst_decode_bin_change_state):
6506           Refuse to change state to READY when we failed to create any of the
6507           required elements in our instance init function.
6508
6509 2006-12-15  Tim-Philipp Müller  <tim at centricular dot net>
6510
6511         * docs/libs/gst-plugins-base-libs-sections.txt:
6512           Small docs fixes/updates.
6513
6514         * gst-libs/gst/video/gstvideosink.h:
6515           Remove nonfunctional GST_VIDEO_SINK_CLOCK macro which is a leftover
6516           from the 0.9 days (GST_BASE_SINK_CLOCK, which it points to, was
6517           removed from the base sink API between 0.9.6 and 0.9.7).
6518           API: add GST_VIDEO_SINK_CAST and use it for the height/width
6519           accessor macros, so we don't do a runtime GObject type check every
6520           time we use them.
6521
6522 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
6523
6524         * Makefile.am:
6525         * gst-plugins-base.doap:
6526         * gst-plugins-base.spec.in:
6527           add doap file
6528
6529 2006-12-09  Tim-Philipp Müller  <tim at centricular dot net>
6530
6531         Patch by: Jens Granseuer <jensgr at gmx net>
6532
6533         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
6534         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
6535         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
6536         (gst_base_rtp_audio_payload_handle_sample_based_buffer):
6537         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
6538           Declare variables at the beginning of a block. Fixes #383195.
6539
6540 2006-12-07  Jan Schmidt  <thaytan@mad.scientist.com>
6541
6542         * configure.ac:
6543         Bump version nano - back to CVS.
6544
6545
6546 === release 0.10.11 ===
6547
6548 2006-12-06  Jan Schmidt <thaytan@mad.scientist.com>
6549
6550         * configure.ac:
6551           releasing 0.10.11, "Dumb things"
6552
6553 2006-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
6554
6555         * gst/playback/gstdecodebin.c: (find_dynamic), (dynamic_add),
6556         (close_pad_link), (elem_is_dynamic), (unlinked), (close_link):
6557         Handle the case where an element has multiple pads with 
6558         unfixed caps as well as still possibly producing more dynamic 
6559         pads by storing each case as a distinct entry in the dynamic list.
6560         Fixes #38223 again.
6561
6562 2006-12-04  Wim Taymans  <wim@fluendo.com>
6563
6564         * gst/playback/gstdecodebin.c: (close_pad_link):
6565         Fix #382223, add more dynamic caps handling.
6566
6567 2006-12-04  Wim Taymans  <wim@fluendo.com>
6568
6569         * gst-libs/gst/audio/gstringbuffer.h:
6570         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_init),
6571         (gst_netaddress_set_ip4_interface),
6572         (gst_netaddress_set_ip6_interface), (gst_netaddress_set_loopback),
6573         (gst_netaddress_set_ttl), (gst_netaddress_get_ip4_interface),
6574         (gst_netaddress_get_ip6_interface), (gst_netaddress_get_loopback),
6575         (gst_netaddress_get_ttl):
6576         * gst-libs/gst/netbuffer/gstnetbuffer.h:
6577         * gst/playback/gstdecodebin.c: (close_pad_link):
6578         * tests/examples/seek/seek.c: (end_scrub), (end_seek), (do_seek),
6579         (seek_cb), (stop_seek), (rate_spinbutton_changed_cb):
6580         * win32/common/config.h:
6581
6582 2006-12-01  Michael Smith  <msmith@fluendo.com>
6583
6584         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
6585           Delete bad debug code.
6586           Fixes #381219
6587
6588 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
6589
6590         * gst/videoscale/vs_4tap.c:
6591         * win32/MANIFEST:
6592         * win32/common/config.h:
6593         * win32/vs8/libgstvideoscale.vcproj:
6594         Fix compilation on win32 under VS8
6595         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
6596         Partially fixes #381175
6597
6598 2006-11-30  Michael Smith  <msmith@fluendo.com>
6599
6600         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
6601         (GST_START_TEST):
6602           It would be very bad if, after a discont buffer, we thought every
6603           single following buffer was also discont. So, add to the test to
6604           ensure that this isn't the case.
6605           
6606         * ext/theora/theoraenc.c: (theora_enc_is_discontinuous):
6607           ... it was the case. So fix it.
6608
6609 2006-11-28  Wim Taymans  <wim@fluendo.com>
6610
6611         * gst/playback/gstplaybasebin.c: (check_queue_event):
6612         Improve debug.
6613
6614         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
6615         Fix width and height range from 16 - 4096 to 1 - MAXINT, just like the
6616         padtemplate caps. Refixes #357577.
6617
6618 2006-11-28  Wim Taymans  <wim@fluendo.com>
6619
6620         * gst/playback/gstplaybasebin.c: (check_queue_event),
6621         (queue_threshold_reached), (queue_out_of_data),
6622         (gen_preroll_element):
6623         Add event probe to see when EOS is in a queue and we can disable the
6624         underrun signals. Fixes #357577.
6625
6626 2006-11-28  Edward Hervey  <edward@fluendo.com>
6627
6628         * gst/playback/Makefile.am:
6629         * gst/playback/gstdecodebin2.c: (gst_decode_bin_get_type),
6630         (_gst_boolean_accumulator), (gst_decode_bin_class_init),
6631         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
6632         (gst_decode_bin_init), (gst_decode_bin_dispose),
6633         (gst_decode_bin_finalize), (gst_decode_bin_set_property),
6634         (gst_decode_bin_get_property), (gst_decode_bin_set_caps),
6635         (gst_decode_bin_get_caps), (gst_decode_bin_autoplug_continue),
6636         (gst_decode_bin_autoplug_sort), (analyze_new_pad), (connect_pad),
6637         (connect_element), (expose_pad), (type_found),
6638         (pad_added_group_cb), (pad_removed_group_cb),
6639         (no_more_pads_group_cb), (pad_added_cb), (pad_removed_cb),
6640         (no_more_pads_cb), (find_compatibles), (is_demuxer_element),
6641         (are_raw_caps), (multi_queue_overrun_cb),
6642         (multi_queue_underrun_cb), (gst_decode_group_new),
6643         (get_current_group), (group_demuxer_event_probe),
6644         (gst_decode_group_control_demuxer_pad),
6645         (gst_decode_group_control_source_pad),
6646         (gst_decode_group_check_if_blocked),
6647         (gst_decode_group_check_if_drained), (gst_decode_group_expose),
6648         (gst_decode_group_hide), (gst_decode_group_free),
6649         (gst_decode_group_set_complete), (source_pad_blocked_cb),
6650         (source_pad_event_probe), (gst_decode_pad_new), (add_fakesink),
6651         (remove_fakesink), (find_sink_pad), (gst_decode_bin_change_state),
6652         (plugin_init):
6653         New decodebin2 element.
6654         Closes #370092
6655         * gst/playback/gstplay-marshal.list:
6656         Added marshallers for new signals in decodebin2
6657         * gst/playback/gstplaybasebin.c: (setup_subtitle), (make_decoder):
6658         Use decodebin2 if *and only if* the USE_DECODEBIN2 environment variable
6659         is set.
6660
6661 2006-11-28  Wim Taymans  <wim@fluendo.com>
6662
6663         * gst/playback/gstplaybasebin.c: (setup_source),
6664         (gst_play_base_bin_change_state):
6665         Disable rtsp:// uris for the release, it's not good enough yet.
6666         Remove unused var.
6667
6668 2006-11-26  Wim Taymans  <wim@fluendo.com>
6669
6670         * ext/theora/theoradec.c: (gst_theora_dec_reset),
6671         (theora_dec_push_forward), (theora_dec_push_reverse),
6672         (theora_handle_data_packet), (theora_dec_decode_buffer),
6673         (theora_dec_flush_decode), (theora_dec_chain_reverse),
6674         (theora_dec_chain_forward), (theora_dec_chain):
6675         Implement reverse playback.
6676
6677         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
6678         (vorbis_dec_decode_buffer), (vorbis_dec_flush_decode),
6679         (vorbis_dec_chain_forward):
6680         Clear buffers used for reverse playback in _reset.
6681         No need to set the eos flag, we clip samples using the segment.
6682
6683 2006-11-24  Wim Taymans  <wim@fluendo.com>
6684
6685         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
6686         (gst_ogg_pad_init), (gst_ogg_pad_dispose), (gst_ogg_pad_reset),
6687         (gst_ogg_pad_stream_out), (gst_ogg_pad_submit_page),
6688         (gst_ogg_chain_reset), (gst_ogg_demux_perform_seek):
6689         Some cleanups.
6690         Handle continued pages in reverse mode.
6691
6692 2006-11-24  Wim Taymans  <wim@fluendo.com>
6693
6694         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
6695         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
6696         (vorbis_dec_flush_decode):
6697         Small cleanups.
6698         Don't try to add invalid timestamps.
6699         Clipping will unref the buffer.
6700
6701 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
6702
6703         * gst/adder/gstadder.h:
6704         * gst/audiotestsrc/gstaudiotestsrc.h:
6705           remove obsolete _factory_init protos
6706
6707 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
6708
6709         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
6710           Fix spacing in debug message.
6711
6712 2006-11-23  Wim Taymans  <wim@fluendo.com>
6713
6714         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
6715         (gst_ogg_demux_chain):
6716         Don't just ignore return values from _pad_push().
6717         Small debug improvements.
6718
6719 2006-11-23  Michael Smith  <msmith@fluendo.com>
6720
6721         * ext/ogg/gstoggmux.c: (gst_ogg_mux_process_best_pad):
6722           If our incoming buffer is marked as DISCONT, then increment the page
6723           number (so that the discontinuity is marked in the final ogg
6724           bitstream) and flush the previous page.
6725
6726 2006-11-22  Michael Smith  <msmith@fluendo.com>
6727
6728         * ext/theora/gsttheoraenc.h:
6729         * ext/theora/theoraenc.c: (gst_theora_enc_init),
6730         (theora_enc_reset), (theora_enc_clear), (theora_enc_sink_setcaps),
6731         (theora_buffer_from_packet), (theora_enc_is_discontinuous),
6732         (theora_enc_chain), (theora_enc_change_state):
6733           Mark discontinuities of > 3/4 of a frame, reinit encoder.
6734
6735         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
6736         (GST_START_TEST), (theoraenc_suite):
6737           Enable discontinuity test, fix it.
6738
6739 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
6740
6741         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
6742         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
6743         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
6744         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
6745         (gst_text_overlay_change_state):
6746         * ext/pango/gsttextoverlay.h:
6747           Some textoverlay fixes: for one, in the video chain function,
6748           actually wait for a text buffer to come in if there is none at the
6749           moment and there should be one; also, deal more gracefully with
6750           incoming buffers that do not have a timestamp or duration; discard
6751           text buffer when not needed any longer. Fixes #341681.
6752
6753         * tests/check/Makefile.am:
6754         * tests/check/elements/.cvsignore:
6755         * tests/check/elements/textoverlay.c:
6756         (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2),
6757         (setup_textoverlay), (buffer_is_all_black), (create_black_buffer),
6758         (create_text_buffer), (cleanup_textoverlay), (GST_START_TEST),
6759         (test_video_waits_for_text_send_text_newsegment_thread),
6760         (test_video_waits_for_text_shutdown_element),
6761         (test_render_continuity_push_video_buffers_thread),
6762         (textoverlay_suite):
6763           Add some unit tests for textoverlay.
6764
6765 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
6766
6767         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
6768           Avoid integer underflow when the found probability for mp3 is
6769           smaller than the 'penalty' we subtract if there's not a clean
6770           mp3 header sync at offset 0.
6771
6772 2006-11-21  Stefan Kost  <ensonic@users.sf.net>
6773
6774         * docs/libs/gst-plugins-base-libs-sections.txt:
6775           Add some new symbols to the docs
6776
6777 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
6778
6779         * tests/check/Makefile.am:
6780         * tests/check/elements/ffmpegcolorspace.c:
6781         (ffmpegcolorspace_suite):
6782           Enable ffmpegcolorspace test now that the RGBA32 issue is fixed
6783           (for now not for valgrinding though, since it takes too long).
6784
6785 2006-11-20  Wim Taymans  <wim@fluendo.com>
6786
6787         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
6788         (gst_ffmpeg_pixfmt_to_caps):
6789         Fix RGBA32 caps. Fixes #357038.
6790
6791 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
6792
6793         * gst-libs/gst/interfaces/mixertrack.h:
6794           Add FIXME so we can add some padding here in 0.11
6795
6796 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
6797
6798         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
6799           Fix GstBaseRTPAudioPayload structure so the whole GObject
6800           inheritance business actually works (parent class instance structure
6801           must always come first in the derived class instance structure).
6802
6803 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
6804
6805         * gst/videotestsrc/Makefile.am:
6806         * tests/check/Makefile.am:
6807           Make sure our checks and the videotestsrc plugin link against the
6808           local uninstalled gst libs and not any installed gst libs that
6809           might happen to exist as well.
6810
6811         * tests/check/elements/adder.c: (message_received),
6812         (test_event_message_received), (test_play_twice_message_received):
6813         * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
6814           Fix compiler warnings when compiling against core with disabled
6815           debugging system.
6816
6817 2006-11-16  Michael Smith  <msmith@fluendo.com>
6818
6819         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
6820         (gst_audio_rate_sink_event), (gst_audio_rate_chain):
6821           Fix audiorate, so that it accurately sets offsets and timestamps.
6822           Doesn't change the fundamental algorithmic decisions; so should be
6823           safe.
6824
6825         * tests/check/Makefile.am:
6826           Enable audiorate test now that it passes.
6827
6828 2006-11-09  Stefan Kost  <ensonic@users.sf.net>
6829
6830         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
6831           clear xv when going to NULL, remove // commented non-existant proto
6832
6833         * tests/examples/seek/seek.c: (main):
6834           add missing tooltip description for scrub and play_scrub
6835
6836 2006-11-14  David Schleef  <ds@schleef.org>
6837
6838         * configure.ac:
6839           Bump liboil requirement to 0.3.8.
6840         * gst-libs/gst/riff/riff-media.c:
6841           Add Dirac fourcc.
6842         * gst/videoscale/vs_image.h:
6843         * gst/videoscale/vs_scanline.h:
6844           Use liboil's stdint.h.
6845         * gst/videotestsrc/videotestsrc.c:
6846           Remove liboil related ifdef's, since they aren't needed now, and
6847           won't work with future versions.
6848
6849 2006-11-14  David Schleef  <ds@schleef.org>
6850
6851         * gst/videoscale/Makefile.am:
6852         * gst/videoscale/gstvideoscale.c:
6853         * gst/videoscale/gstvideoscale.h:
6854         * gst/videoscale/vs_4tap.c:
6855         * gst/videoscale/vs_4tap.h:
6856         * gst/videoscale/vs_image.c:
6857         * gst/videoscale/vs_image.h:
6858         * gst/videoscale/vs_scanline.c:
6859         * gst/videoscale/vs_scanline.h:
6860           Add a 4-tap image scaler.  Theoretically looks much prettier.
6861           The tap calculation could use some improvement.
6862
6863 2006-11-14  Wim Taymans  <wim@fluendo.com>
6864
6865         Patch by: Jan David Mol <j dot j dot d dot mol at tudelft dot nl>
6866
6867         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds),
6868         (gst_riff_parse_strf_iavs):
6869         * gst/subparse/gstsubparse.c: (convert_encoding):
6870         * gst/tcp/gstmultifdsink.c:
6871         (gst_multi_fd_sink_handle_client_write):
6872         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
6873         (gst_tcp_read_buffer), (gst_tcp_gdp_read_caps),
6874         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
6875         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_render):
6876         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
6877         (gst_ximagesink_ximage_new):
6878         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
6879         Various gsize and gssize printf fixes. Fixes #372507.
6880
6881 2006-11-13  Wim Taymans  <wim@fluendo.com>
6882
6883         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
6884         (vorbis_dec_push_forward), (vorbis_dec_push_reverse),
6885         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
6886         (vorbis_dec_flush_decode), (vorbis_dec_chain_reverse),
6887         (vorbis_dec_chain_forward), (vorbis_dec_chain):
6888         * ext/vorbis/vorbisdec.h:
6889         First stab at vorbis reverse playback.
6890
6891 2006-11-13  Wim Taymans  <wim@fluendo.com>
6892
6893         * gst-libs/gst/audio/gstbaseaudiosink.c:
6894         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
6895         * gst-libs/gst/audio/gstbaseaudiosink.h:
6896         Make the clock sync code more accurate wrt resampling and playback
6897         at different rates.
6898         
6899         * gst-libs/gst/audio/gstringbuffer.c:
6900         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit):
6901         * gst-libs/gst/audio/gstringbuffer.h:
6902         Use better algorithm to interpolate sample rates. 
6903
6904 2006-11-13  Michael Smith  <msmith@fluendo.com>
6905
6906         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page):
6907           Improve a debug line slightly.
6908
6909         * ext/ogg/gstogmparse.c: (gst_ogm_parse_plugin_init):
6910           Call gst_riff_init() in plugin_init, to avoid getting errors from
6911           the debug system (unrelated changes to another plugin made this turn
6912           up; not sure why).
6913
6914 2006-11-10  Tim-Philipp Müller  <tim at centricular dot net>
6915
6916         Patch by: Sergey Scobich  <sergery.scobich at gmail com>
6917
6918         * win32/common/libgsttag.def:
6919           Add missing symbol (#366492).
6920
6921 2006-11-09  Tim-Philipp Müller  <tim at centricular dot net>
6922
6923         * gst/playback/gststreamselector.c: (gst_stream_selector_dispose):
6924           Don't unref a NULL pad.
6925
6926 2006-11-09  Wim Taymans  <wim@fluendo.com>
6927
6928         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
6929         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_perform_seek),
6930         (gst_ogg_demux_handle_page), (gst_ogg_demux_chain),
6931         (gst_ogg_demux_loop_forward), (gst_ogg_demux_loop_reverse),
6932         (gst_ogg_demux_loop):
6933         Implement first stab at reverse playback.
6934
6935 2006-11-07  Stefan Kost  <ensonic@users.sf.net>
6936
6937         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
6938         (gst_riff_create_video_template_caps):
6939           add h263/h264 variants to the caps, Fixes #363118
6940
6941 2006-11-06  Tim-Philipp Müller  <tim at centricular dot net>
6942
6943         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
6944         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
6945           Use g_strerror instead of strerror so we get UTF-8.
6946
6947 2006-11-03  David Schleef  <ds@schleef.org>
6948
6949         * ext/ogg/gstoggdemux.c:
6950         * ext/ogg/gstoggmux.c:
6951           Add/remove KW-DIRAC header here, since it is ogg-specific.
6952
6953 2006-11-03  Michael Smith  <msmith@fluendo.com>
6954
6955         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
6956           Recognise more mpeg4 elementary video streams.
6957
6958 2006-11-02  Edward Hervey  <edward@fluendo.com>
6959
6960         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
6961         Lower the probability of mp3 typefinding functions if we don't find a
6962         valid mp3 header at the start of the file.
6963         Closes #369482
6964
6965 2006-11-02  Wim Taymans  <wim@fluendo.com>
6966
6967         * ext/theora/gsttheoradec.h:
6968         * ext/theora/theoradec.c: (gst_theora_dec_init),
6969         (theora_dec_sink_event), (theora_dec_chain_forward),
6970         (theora_dec_flush_decode), (theora_dec_chain_reverse),
6971         (theora_dec_chain):
6972         Document and partially implement an algorithm for doing reverse playback
6973         of theora video.
6974
6975 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
6976
6977         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
6978
6979         * win32/common/config.h:
6980         * win32/common/interfaces-enumtypes.c:
6981         * win32/common/libgsttag.def:
6982         * win32/vs8/gst-plugins-base.sln:
6983         * win32/vs8/libgstaudioresample.vcproj:
6984         * win32/vs8/libgstinterfaces.vcproj:
6985         * win32/vs8/libgstogg.vcproj:
6986         * win32/vs8/libgstriff.vcproj:
6987         * win32/vs8/libgsttag.vcproj:
6988         * win32/vs8/libgsttheora.vcproj:
6989         * win32/vs8/libgstvideoscale.vcproj:
6990         * win32/vs8/libgstvorbis.vcproj:
6991           Misc. VS8 build fixes: fix syntax in config.h, add missing entries
6992           to libgsttag.def; add missing dependencies for some vs8 projects;
6993           re-arrange placement of .def files in vs8 projects (#366334).
6994
6995 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
6996
6997         * ext/ogg/gstogg.c:
6998           Remove unused variable.
6999
7000         * ext/ogg/gstoggdemux.c:
7001           Fix Wim's surname in plugin description.
7002
7003 2006-10-31  Wim Taymans  <wim@fluendo.com>
7004
7005         * gst-plugins-base.spec.in:
7006         spec new .h file. Fixes #368310.
7007
7008 2006-10-31  Michael Smith  <msmith@fluendo.com>
7009
7010         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
7011         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
7012         (gst_multi_fd_sink_get_stats),
7013         (gst_multi_fd_sink_remove_client_link),
7014         (gst_multi_fd_sink_queue_buffer),
7015         (gst_multi_fd_sink_handle_clients):
7016         * gst/tcp/gstmultifdsink.h:
7017           Make using the remove or clear signals threadsafe.
7018           Make calling get-stats with an invalid fd not segfault.
7019           Fixes 368273.
7020
7021 2006-10-31  Wim Taymans  <wim@fluendo.com>
7022
7023         * gst-libs/gst/rtp/Makefile.am:
7024         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
7025         (gst_base_rtp_audio_payload_init):
7026         Fix and activate base audio payloader.
7027
7028 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
7029
7030         * gst/typefind/gsttypefindfunctions.c: (qtif_type_find),
7031         (plugin_init):
7032           Add typefinder for QuickTime Image Files (see #366156).
7033
7034 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
7035
7036         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
7037           Another typo fix (#366212).
7038
7039 2006-10-27  Wim Taymans  <wim@fluendo.com>
7040
7041         * gst/volume/gstvolume.c: (volume_transform_ip):
7042         Use stream time to synchronize volume property instead of rather random
7043         timestamps. This is needed when gnonlin does its time shifting.
7044
7045 2006-10-27  Wim Taymans  <wim@fluendo.com>
7046
7047         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
7048
7049         * ext/ogg/gstoggmux.c: (gst_ogg_mux_release_pad):
7050         Remove the pad from the element in release_pad. Fixes #364812.
7051
7052 2006-10-27  Tim-Philipp Müller  <tim at centricular dot net>
7053
7054         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
7055         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
7056           Explicitly create our custom buffer classes at a thread-safe
7057           location as well, since g_type_class_ref() doesn't seem to be
7058           entirely thread-safe either (#365501; also see #349410).
7059
7060 2006-10-26  Tim-Philipp Müller  <tim at centricular dot net>
7061
7062         * gst-libs/gst/riff/riff-read.c: (freeform_string_to_utf8),
7063         (gst_riff_parse_info):
7064           If strings in INFO chunk are not UTF-8, do something similar to
7065           what we do for ID3v1 tags: check a number of environment variables
7066           (GST_AVI_TAG_ENCODING, GST_RIFF_TAG_ENCODING, GST_TAG_ENCODING) for
7067           character sets to try, otherwise try the current locale and/or fall
7068           back on ISO-8859-1. Fixes #360552.
7069
7070 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
7071
7072         * gst/videotestsrc/gstvideotestsrc.c:
7073         (gst_video_test_src_pattern_get_type),
7074         (gst_video_test_src_set_pattern):
7075         * gst/videotestsrc/gstvideotestsrc.h:
7076         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_checkers1),
7077         (gst_video_test_src_checkers2), (gst_video_test_src_checkers4),
7078         (gst_video_test_src_checkers8):
7079         * gst/videotestsrc/videotestsrc.h:
7080           Add a bunch of exciting new checkers patterns.
7081
7082 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
7083
7084         * gst/subparse/Makefile.am:
7085         * gst/subparse/gstsubparse.c:
7086         (gst_sub_parse_data_format_autodetect),
7087         (gst_sub_parse_format_autodetect), (handle_buffer),
7088         (gst_sub_parse_chain), (gst_subparse_type_find), (plugin_init):
7089         * gst/subparse/gstsubparse.h:
7090         * gst/subparse/tmplayerparse.c: (tmplayer_parse_line),
7091         (parse_tmplayer):
7092         * gst/subparse/tmplayerparse.h:
7093           Add support for TMPlayer-type subtitles (#362845).
7094
7095         * tests/check/elements/subparse.c: (test_tmplayer_do_test),
7096         (GST_START_TEST), (subparse_suite):
7097           Add some basic unit tests for the above.
7098
7099 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
7100
7101         * tests/check/elements/audiorate.c: (test_injector_base_init),
7102         (test_injector_class_init), (test_injector_chain),
7103         (test_injector_init), (probe_cb), (do_perfect_stream_test),
7104         (GST_START_TEST), (audiorate_suite):
7105           More tests for audiorate: inject buffers to check behaviour when
7106           buffers overlap.
7107
7108 2006-10-21  Tim-Philipp Müller  <tim at centricular dot net>
7109
7110         * tests/check/Makefile.am:
7111         * tests/check/elements/.cvsignore:
7112         * tests/check/elements/audiorate.c: (probe_cb), (got_buf),
7113         (do_perfect_stream_test), (GST_START_TEST), (audiorate_suite):
7114           Add some basic unit tests for audiorate. Disabled at the moment
7115           since it doesn't pass yet (see bug #363119).
7116
7117 2006-10-20  Tim-Philipp Müller  <tim at centricular dot net>
7118
7119         * gst/subparse/gstsubparse.c: (subrip_fix_up_markup),
7120         (parse_subrip), (handle_buffer):
7121           Add missing closing tags for markup and fix broken markup,
7122           otherwise pango won't render anything (fixes #357531). Also,
7123           make sure the text we send out is always NUL-terminated
7124           (better safe than sorry etc.).
7125
7126         * tests/check/elements/subparse.c: (test_srt_do_test),
7127         (test_srt):
7128           Some more tests for .srt incl. tests for the above stuff.
7129
7130 2006-10-20  Julien MOUTTE  <julien@moutte.net>
7131
7132         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
7133         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
7134         Patch by: Stefan Kost  <ensonic@users.sf.net>
7135         Try to redraw borders only when needed. Apparently this consumes
7136         resources on small devices... :-O (#363607)
7137
7138 2006-10-20  Michael Smith  <msmith@fluendo.com>
7139
7140         * gst/tcp/gstmultifdsink.c:
7141         (gst_multi_fd_sink_client_queue_buffer):
7142           If caps change, then update the client's idea of the caps so that we
7143           don't end up re-sending streamheaders for every single buffer after
7144           the caps change.
7145
7146 2006-10-20  Michael Smith  <msmith@fluendo.com>
7147
7148         * ext/ogg/gstoggparse.c: (gst_ogg_parse_dispose),
7149         (gst_ogg_parse_append_header), (gst_ogg_parse_chain):
7150           Set caps on pushed buffers; fix up refcounting of caps objects.
7151
7152 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
7153
7154         * gst/typefind/gsttypefindfunctions.c: (mmsh_type_find),
7155         (plugin_init):
7156           Typefind mmsh header data packet to application/x-mmsh (#362625).
7157
7158 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
7159
7160         * tests/check/Makefile.am:
7161         * tests/check/elements/.cvsignore:
7162         * tests/check/elements/subparse.c: (buffer_from_static_string),
7163         (setup_subparse), (teardown_subparse), (test_srt_do_test),
7164         (GST_START_TEST), (subparse_suite):
7165           Add very simple unit test for subparse.
7166
7167 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
7168
7169         * gst/subparse/gstsubparse.c: (strip_trailing_newlines),
7170         (parse_subrip):
7171           Strip trailing newlines from subtitle text output.
7172
7173 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
7174
7175         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
7176         (gst_sub_parse_change_state):
7177           Fix memleak; clear subparse->textbuf n state change function.
7178
7179 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
7180
7181         * gst/subparse/gstsubparse.c:
7182         (gst_sub_parse_data_format_autodetect):
7183           Don't require subrip (.srt) files to start with a chunk number of 1.
7184
7185 2006-10-18  Wim Taymans  <wim@fluendo.com>
7186
7187         * gst-libs/gst/audio/gstbaseaudiosink.c:
7188         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
7189         * gst-libs/gst/audio/gstbaseaudiosink.h:
7190         Extract rate from the NEWSEGMENT event.
7191         Use commit_full to also take rate adjustment into account when writing
7192         samples to the ringbuffer.
7193         
7194         * gst-libs/gst/audio/gstringbuffer.c:
7195         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit),
7196         (gst_ring_buffer_read):
7197         * gst-libs/gst/audio/gstringbuffer.h:
7198         Added _commit_full() to also take rate into account.
7199         Use simple interpolation algorithm to resample audio.
7200         API: gst_ring_buffer_commit_full()
7201
7202         * tests/examples/seek/scrubby.c: (speed_cb), (do_seek):
7203         * tests/examples/seek/seek.c: (segment_done):
7204         Don't try to seek with 0.0 rate, just pause instead.
7205         Remove bogus debug line.
7206
7207 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
7208
7209         * gst/playback/gstplaybasebin.c: (subbin_startup_sync_msg),
7210         (setup_source):
7211           Catch async errors when starting up the subtitle bin, so we can
7212           stop waiting and continue with the main film instead of hanging
7213           forever. Fixes #339366.
7214
7215         * tests/check/elements/playbin.c: (playbin_suite):
7216           Enable unit test for the above.
7217
7218 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
7219
7220         * tests/check/Makefile.am:
7221         * tests/check/elements/.cvsignore:
7222         * tests/check/elements/playbin.c: (GST_START_TEST),
7223         (gst_red_video_src_uri_get_type),
7224         (gst_red_video_src_uri_get_protocols),
7225         (gst_red_video_src_uri_get_uri), (gst_red_video_src_uri_set_uri),
7226         (gst_red_video_src_uri_handler_init),
7227         (gst_red_video_src_init_type), (gst_red_video_src_base_init),
7228         (gst_red_video_src_create), (gst_red_video_src_class_init),
7229         (gst_red_video_src_init), (plugin_init), (playbin_suite):
7230           Some small and basic unit tests for playbin; not very useful yet,
7231           but at least a start.
7232
7233 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
7234
7235         * gst/playback/gstplaybin.c: (setup_sinks):
7236           The old pad activation spiel.
7237
7238 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
7239
7240         * gst/playback/gstplaybasebin.c: (setup_source):
7241           Don't hang forever if the subbin already fails to start up in 
7242           the state change to PAUSED (#339366).
7243
7244 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
7245
7246         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_list_channels),
7247         (gst_tuner_set_channel), (gst_tuner_get_channel),
7248         (gst_tuner_list_norms), (gst_tuner_set_norm), (gst_tuner_get_norm),
7249         (gst_tuner_set_frequency), (gst_tuner_get_frequency),
7250         (gst_tuner_signal_strength), (gst_tuner_find_norm_by_name),
7251         (gst_tuner_find_channel_by_name):
7252           Fix some function guards, add some more function guards.
7253
7254 2006-10-17  Jan Schmidt  <thaytan@mad.scientist.com>
7255
7256         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
7257         (remove_element_chain):
7258         Don't return a pad from get_our_ghost_pad unless it is actually the
7259         one we want.
7260         Change a cast in remove_element_chain slightly.
7261
7262 2006-10-13  Julien MOUTTE  <julien@moutte.net>
7263
7264         * tests/examples/seek/seek.c: (do_seek), (start_seek),
7265         (rate_spinbutton_changed_cb), (segment_done), (msg_state_changed):
7266         Segment seeking needs to use the rate and set stop to -1.
7267
7268 2006-10-13  Wim Taymans  <wim@fluendo.com>
7269
7270         * gst-libs/gst/audio/gstbaseaudiosink.c:
7271         (gst_base_audio_sink_setcaps):
7272         Don't crash when ringbuffer is not yet created.
7273         Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
7274         Fixes #361634.
7275
7276         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
7277         * gst/playback/gststreamselector.c:
7278         (gst_stream_selector_request_new_pad):
7279         Activate pads befre adding them to running elements.
7280
7281 2006-10-13  Julien MOUTTE  <julien@moutte.net>
7282
7283         * tests/examples/seek/seek.c: (do_seek), (start_seek),
7284         (rate_spinbutton_changed_cb), (msg_state_changed): Stop the scale
7285         updater when we start grabing the slider. Don't wait for the
7286         pipeline to be PAUSED.
7287
7288 2006-10-13  Tim-Philipp Müller  <tim at centricular dot net>
7289
7290         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_list_tracks),
7291         (gst_mixer_set_volume), (gst_mixer_get_volume),
7292         (gst_mixer_set_mute), (gst_mixer_set_option),
7293         (gst_mixer_get_option), (gst_mixer_mute_toggled),
7294         (gst_mixer_record_toggled), (gst_mixer_volume_changed),
7295         (gst_mixer_option_changed):
7296           Guard mixer interface functions against bogus arguments.
7297
7298 2006-10-12  Julien MOUTTE  <julien@moutte.net>
7299
7300         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
7301         (play_cb), (pause_cb), (stop_cb), (rate_spinbutton_changed_cb),
7302         (msg_state_changed), (main): Use state-changed messages to trigger
7303         start/stop of scale update timer. Indeed the scale slider was
7304         jumping here and there because the update timer was activated 
7305         before seek completed. This fixes instant applying of rate changes
7306         by pressing the spinbutton like a crazy man !
7307
7308 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
7309
7310         Patch by: Sebastien Cote  <sebas642 at yahoo.ca>
7311
7312         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
7313         (gst_basertppayload_finalize):
7314           Fix two small memory leaks (#361456).
7315
7316 2006-10-10  Julien MOUTTE  <julien@moutte.net>
7317
7318         * tests/examples/seek/seek.c: (do_seek),
7319         (rate_spinbutton_changed_cb): When changing spinbutton we try
7320         to change the rate on the fly.
7321
7322 2006-10-10  Wim Taymans  <wim@fluendo.com>
7323
7324         * gst-libs/gst/riff/riff-ids.h:
7325         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
7326         (gst_riff_create_audio_template_caps):
7327         Add WMS caps.
7328
7329 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
7330
7331         Patch by: Josep Torra Valles <josep@fluendo.com>
7332
7333         * ext/gnomevfs/gstgnomevfssink.c:
7334         * ext/gnomevfs/gstgnomevfssrc.c:
7335         Fix URI interface implementation return type.
7336         * ext/pango/gsttextoverlay.c: (gst_text_overlay_set_property):
7337         Fix what looks like a copy/paste issue when assigning values.
7338         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
7339         (gst_audio_filter_template_get_type):
7340         Cast to prevent Forte warnings.
7341         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
7342         Fix URI interface implementation return type.
7343         gst_pad_query_position requires a signed integer pointer as
7344         3rd parameter, GstClockTime is unsigned.
7345         * gst/audioconvert/audioconvert.c:
7346         Fix integer overflow when treated as signed.
7347         * gst/audioresample/resample.c: (resample_add_input_data):
7348         Cast to prevent warnings on Forte.
7349         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette):
7350         Fix integer overflow when treated as signed.
7351         * gst/ffmpegcolorspace/imgconvert_template.h:
7352         Fix integer overflow when treated as signed. RGBA_OUT shifts bits.
7353         * gst/playback/gstdecodebin.c: (queue_filled_cb),
7354         (cleanup_decodebin):
7355         Who initialises a guint to -1!
7356         Cast function pointers to prevent warnings on Forte.
7357         * gst/playback/gstplaybasebin.c: (queue_deadlock_check),
7358         (queue_threshold_reached):
7359         Cast function pointers correctly to prevent warnings on Forte.
7360         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
7361         Cast function pointers correctly to prevent warnings on Forte.
7362         * gst/subparse/gstssaparse.c: (gst_ssa_parse_setcaps):
7363         Obvious change to unsigned, 0xEF > max signed char.
7364         * gst/tcp/gstmultifdsink.c: (get_buffers_max), (count_burst_unit):
7365         GstClockTime is unsigned, initialise correctly.
7366         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
7367         Cast so pointer arithemetic doesn't cause warnings on Forte.
7368         * gst/videorate/gstvideorate.c:
7369         Use correct return value.
7370         * tests/examples/seek/scrubby.c:
7371         GstClockTime is unsigned, initialise correctly.
7372
7373 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
7374
7375         Patch by: Ferenc Gerlits  <fgerlits at gmail com>
7376
7377         * gst/typefind/gsttypefindfunctions.c:
7378           Recognise XML files and XML-like files shorter than 256 bytes as
7379           well (fixes #359237).
7380
7381 2006-10-09  Edgard Lima <edgard.lima@indt.org.br>
7382
7383         Patch by: Renato Filho <renato.filho@indt.org.br>
7384         
7385         * gst/typefind/gsttypefindfunctions.c:
7386         Added typefind functions to video/x-nuv media.
7387         
7388 2006-10-08  Tim-Philipp Müller  <tim at centricular dot net>
7389
7390         * gst-libs/gst/interfaces/xoverlay.c:
7391         (gst_x_overlay_set_xwindow_id), (gst_x_overlay_expose):
7392           Some more guards against invalid input.
7393
7394 2006-10-07  Julien MOUTTE  <julien@moutte.net>
7395
7396         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event): 
7397         Useless goto.
7398         * tests/examples/seek/seek.c: (do_seek),
7399         (rate_spinbutton_changed_cb), (main): Add a rate spinbutton in
7400         seek example to experiment with rates != 1.0 (reverse playback !)
7401
7402 2006-10-06  Stefan Kost  <ensonic@users.sf.net>
7403
7404         * gst-libs/gst/interfaces/xoverlay.c:
7405           Unref message in doc-example (spotted by Robert McQueen)
7406
7407 2006-10-06  Wim Taymans  <wim@fluendo.com>
7408
7409         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
7410         (mpeg1_parse_header), (mpeg1_sys_type_find):
7411         printf fix.
7412
7413 2006-10-06  Wim Taymans  <wim@fluendo.com>
7414
7415         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
7416         (close_pad_link):
7417         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
7418         Activate dynamic pads before adding them to the element.
7419
7420 2006-10-06  Michael Smith  <msmith@fluendo.com>
7421
7422         * gst-libs/gst/floatcast/floatcast.h:
7423           Fix obviously-bogus macros; use the correct types.
7424
7425 2006-10-06  Wim Taymans  <wim@fluendo.com>
7426
7427         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7428         (gst_base_rtp_depayload_change_state):
7429         Also call parent state change function to activate pads.
7430
7431         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
7432         (mpeg1_parse_header), (mpeg1_sys_type_find):
7433         Add some more debug info in mpeg typefinding.
7434
7435 2006-10-06  Michael Smith  <msmith@fluendo.com>
7436
7437         * ext/theora/theoradec.c: (theora_dec_chain):
7438           Zero byte theora packets are valid and well-defined; don't warn on
7439           them.
7440
7441 2006-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
7442
7443         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
7444         (gst_multi_fd_sink_get_stats), (find_limits),
7445         (gst_multi_fd_sink_queue_buffer):
7446           API: add dropped_buffers to the get-stats GValueArray
7447
7448 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
7449
7450         * ext/alsa/gstalsadeviceprobe.c:
7451         (gst_alsa_device_property_probe_get_values):
7452         * ext/alsa/gstalsasink.c: (set_hwparams):
7453         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_elem_pad),
7454         (gst_ogg_chain_new_stream), (gst_ogg_demux_read_chain):
7455         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers),
7456         (gst_ogg_mux_process_best_pad):
7457         * ext/ogg/gstoggparse.c: (gst_ogg_parse_new_stream),
7458         (gst_ogg_parse_chain):
7459         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
7460         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
7461         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_setup),
7462         (gst_vorbis_enc_buffer_check_discontinuous):
7463         * ext/vorbis/vorbisparse.c: (vorbis_parse_src_query):
7464         * gst-libs/gst/audio/gstbaseaudiosink.c:
7465         (gst_base_audio_sink_render):
7466         * gst-libs/gst/cdda/gstcddabasesrc.c:
7467         (gst_cdda_base_src_handle_track_seek):
7468         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7469         (gst_base_rtp_depayload_push_full):
7470         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
7471         * gst/audioresample/resample.c: (resample_input_pushthrough):
7472         * gst/playback/gstplaybasebin.c: (queue_out_of_data):
7473         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
7474         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
7475         (wavpack_type_find):
7476         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
7477         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
7478         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
7479         * tests/check/elements/volume.c: (GST_START_TEST):
7480           Printf format fixes.
7481
7482 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
7483
7484         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_caps):
7485           Fix a simple mistake (see the docs)
7486           Fixes #359580
7487
7488 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
7489
7490         * docs/plugins/Makefile.am:
7491         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7492         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7493         * docs/plugins/gst-plugins-base-plugins.args:
7494         * docs/plugins/gst-plugins-base-plugins.hierarchy:
7495         * docs/plugins/inspect/plugin-adder.xml:
7496         * docs/plugins/inspect/plugin-alsa.xml:
7497         * docs/plugins/inspect/plugin-audioconvert.xml:
7498         * docs/plugins/inspect/plugin-audiorate.xml:
7499         * docs/plugins/inspect/plugin-audioresample.xml:
7500         * docs/plugins/inspect/plugin-audiotestsrc.xml:
7501         * docs/plugins/inspect/plugin-cdparanoia.xml:
7502         * docs/plugins/inspect/plugin-decodebin.xml:
7503         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
7504         * docs/plugins/inspect/plugin-gdp.xml:
7505         * docs/plugins/inspect/plugin-gnomevfs.xml:
7506         * docs/plugins/inspect/plugin-libvisual.xml:
7507         * docs/plugins/inspect/plugin-ogg.xml:
7508         * docs/plugins/inspect/plugin-pango.xml:
7509         * docs/plugins/inspect/plugin-playbin.xml:
7510         * docs/plugins/inspect/plugin-subparse.xml:
7511         * docs/plugins/inspect/plugin-tcp.xml:
7512         * docs/plugins/inspect/plugin-theora.xml:
7513         * docs/plugins/inspect/plugin-typefindfunctions.xml:
7514         * docs/plugins/inspect/plugin-video4linux.xml:
7515         * docs/plugins/inspect/plugin-videorate.xml:
7516         * docs/plugins/inspect/plugin-videoscale.xml:
7517         * docs/plugins/inspect/plugin-videotestsrc.xml:
7518         * docs/plugins/inspect/plugin-volume.xml:
7519         * docs/plugins/inspect/plugin-vorbis.xml:
7520         * docs/plugins/inspect/plugin-ximagesink.xml:
7521         * docs/plugins/inspect/plugin-xvimagesink.xml:
7522           Add vorbistag element to docs; update version numbers to 0.10.10.1.
7523
7524 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
7525
7526         Patch by: James "Doc" Livingston <doclivingston at gmail com>
7527
7528         * ext/vorbis/Makefile.am:
7529         * ext/vorbis/vorbis.c: (plugin_init):
7530         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_class_init),
7531         (vorbis_parse_parse_packet), (vorbis_parse_chain):
7532         * ext/vorbis/vorbisparse.h:
7533         * ext/vorbis/vorbistag.c: (gst_vorbis_tag_base_init),
7534         (gst_vorbis_tag_class_init), (gst_vorbis_tag_init),
7535         (gst_vorbis_tag_parse_packet):
7536         * ext/vorbis/vorbistag.h:
7537           Add new vorbistag element which derives from vorbisparse
7538           and is essentially the same as well, only that it implements
7539           the GstTagSetter interface and can modify the stream's
7540           vorbiscomment on the fly (#335635).
7541
7542         * tests/check/Makefile.am:
7543         * tests/check/elements/.cvsignore:
7544         * tests/check/elements/vorbistag.c: (setup_vorbistag),
7545         (cleanup_vorbistag), (buffer_probe), (start_pipeline),
7546         (get_buffer), (stop_pipeline), (_create_codebook_header_buffer),
7547         (_create_audio_buffer), (GST_START_TEST), (vorbistag_suite):
7548           Add unit test for new vorbistag element.
7549
7550 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
7551
7552         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init),
7553         (vorbis_parse_push_headers), (vorbis_parse_chain):
7554           Set BOS flag in packet structure to fix 'jump depends
7555           on unitialized value' errors in valgrind; various minor
7556           clean-ups.
7557
7558 2006-09-30  Jan Schmidt  <thaytan@mad.scientist.com>
7559
7560         * gst/playback/gstdecodebin.c: (close_pad_link):
7561         Fix typo in a debug statement.
7562
7563         * gst/playback/gstplaybasebin.c: (probe_triggered),
7564         (new_decoded_pad_full), (new_decoded_pad), (subs_new_decoded_pad),
7565         (gen_source_element), (source_new_pad), (analyse_source),
7566         (setup_source):
7567         When handling no_more_pads in new_decoded_pad, make sure to treat
7568         subtitle pads correctly. Fixes playback with subtitle files.
7569
7570         Move a recurring message to LOG level.
7571
7572         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
7573         The maximum value for the Xv colorkey on this Radeon is 0xFFFFFFFF,
7574         which ends up as -1 when cast to an int. Make the logic handle the
7575         max value as an unsigned mask and only change the colorkey when it's
7576         a value we recognise.
7577
7578 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
7579
7580         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
7581         Removed empty * between paragraphs
7582
7583 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
7584
7585         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
7586         * gst-libs/gst/rtp/README:
7587         Moved some documentation into .c file
7588
7589 2006-09-29  Wim Taymans  <wim@fluendo.com>
7590
7591         * gst/playback/gstdecodebin.c: (no_more_pads):
7592         Fix compilation.
7593
7594 2006-09-29  Wim Taymans  <wim@fluendo.com>
7595
7596         * gst/playback/gstdecodebin.c: (new_caps):
7597         Remove g_print
7598
7599         * gst/playback/gstplaybin.c:
7600         Add some docs.
7601
7602 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
7603
7604         * tests/check/Makefile.am:
7605           Re-enable cddabasesrc test to see if it works again
7606           now.
7607
7608 2006-09-29  Wim Taymans  <wim@fluendo.com>
7609
7610         * gst/playback/gstplaybasebin.c: (setup_subtitle),
7611         (gen_source_element):
7612         Handle invalid URIs a bit more gracefully.
7613
7614 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
7615
7616         * tests/check/pipelines/oggmux.c:
7617           Remove obsolete comment.
7618
7619 2006-09-29  Michael Smith  <msmith@fluendo.com>
7620
7621         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
7622         (gst_ogg_mux_release_pad), (gst_ogg_mux_push_buffer),
7623         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
7624         (gst_ogg_mux_send_headers), (gst_ogg_mux_process_best_pad),
7625         (gst_ogg_mux_collected):
7626           Commit patch from James "Doc" Livingston, adds proper EOS handling
7627           in oggmux. GStreamer can, for the first time ever, create a valid
7628           Ogg file! Yay!
7629
7630         * tests/check/pipelines/oggmux.c: (check_chain_final_state),
7631         (oggmux_suite):
7632           Reenable tests now that they pass.
7633
7634 2006-09-29  Wim Taymans  <wim@fluendo.com>
7635
7636         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
7637         Stop reading commands when EOF (we read 0) as well.
7638
7639 2006-09-28  Wim Taymans  <wim@fluendo.com>
7640
7641         * gst/playback/gstdecodebin.c: (dynamic_create), (dynamic_free),
7642         (close_pad_link), (dynamic_remove), (no_more_pads), (new_caps),
7643         (find_dynamic), (unlinked), (close_link):
7644         Implement delayed caps linking needed for element with a lot of
7645         different caps on the src pads that get fixed at runtime.
7646         Improve management of dynamic elements.
7647
7648         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
7649         (group_destroy), (group_commit), (check_queue), (queue_overrun),
7650         (gen_preroll_element), (remove_groups), (unknown_type),
7651         (add_element_stream), (no_more_pads_full), (no_more_pads),
7652         (sub_no_more_pads), (source_no_more_pads), (preroll_unlinked),
7653         (new_decoded_pad), (setup_subtitle), (array_has_value),
7654         (gen_source_element), (source_new_pad), (has_all_raw_caps),
7655         (analyse_source), (remove_decoders), (make_decoder),
7656         (remove_source), (setup_source), (finish_source), (prepare_output),
7657         (gst_play_base_bin_change_state):
7658         * gst/playback/gstplaybasebin.h:
7659         Use more _CAST instead of full type checking casts.
7660         Small cleanups, plug some leaks.
7661         Handle dynamic sources.
7662         Add some helper functions to create lists of strings used for
7663         blacklisting and other stuff.
7664         Refactor some code dealing with analysing the source.
7665         Re-enable sources without pads (like cd:// or other selfcontained
7666         elements).
7667
7668 2006-09-28  Wim Taymans  <wim@fluendo.com>
7669
7670         * gst-libs/gst/audio/gstbaseaudiosink.c:
7671         (gst_base_audio_sink_render):
7672         When we have a timestamp, we can still perform clipping.
7673         When we have no clock, we must play the sample ASAP.
7674
7675 2006-09-28  Wim Taymans  <wim@fluendo.com>
7676
7677         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
7678         Set caps on outgoing buffers.
7679
7680         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
7681         (gst_video_rate_event), (gst_video_rate_chain):
7682         * gst/videorate/gstvideorate.h:
7683         Fix videorate some more. Fixes #357977
7684
7685 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
7686
7687         * tests/check/elements/adder.c: (adder_suite):
7688           Don't set timeout to 6 seconds when we're running
7689           in valgrind ... (and how is 6 seconds longer than
7690           the default anyway?)
7691
7692 2006-09-28  Wim Taymans  <wim@fluendo.com>
7693
7694         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
7695         (gst_audio_rate_sink_event), (gst_audio_rate_convert),
7696         (gst_audio_rate_convert_segments), (gst_audio_rate_chain):
7697         Keep sink and src segment to keep track of time and support more
7698         input formats.
7699         Fix bogus next_offset and run_time calculation, don't understand how
7700         this could have worked before. Fixes #357976.
7701         Remove some unneeded vars.
7702
7703 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
7704
7705         * gst/playback/gstplaybin.c: (remove_sinks):
7706           Only remove visualisation from visbin if there is a visbin (or:
7707           don't throw warnings when closing totem without playing a file).
7708
7709 2006-09-27  Wim Taymans  <wim@fluendo.com>
7710
7711         * gst-libs/gst/audio/gstbaseaudiosink.c:
7712         (gst_base_audio_sink_render):
7713         Add some more info in a WARNING.
7714
7715         * gst-libs/gst/audio/gstbaseaudiosrc.c:
7716         (gst_base_audio_src_create):
7717         Handle PAUSE in create function, use new -core addition to
7718         wait for playing. Fixes pausing and resuming capture from an
7719         audiosrc.
7720
7721         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
7722         (gst_ring_buffer_read):
7723         Constify some more.
7724         Caller supports interrupted reads now.
7725
7726 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
7727
7728         * tests/check/Makefile.am:
7729           Another attempt to make the gen64 buildbot happy.
7730
7731 2006-09-27  Stefan Kost  <ensonic@users.sf.net>
7732
7733         Patch by: Jonathan Matthew <jonathan@kaolin.wh9.net>
7734
7735         * ext/libvisual/visual.c: (gst_visual_clear_actors),
7736         (gst_visual_chain), (gst_visual_change_state):
7737           Libvisual plugin was not passing audio data to libvisual 0.4.0 
7738           correctly. Fixes #357800
7739
7740 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
7741
7742         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline):
7743           Add timeout to _get_state() so we see which pipeline it is
7744           that causes trouble on the gen64 build bot.
7745
7746 2006-09-27  Wim Taymans  <wim@fluendo.com>
7747
7748         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7749         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_push_full),
7750         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_process),
7751         (gst_base_rtp_depayload_set_gst_timestamp):
7752         the source pad always uses fixed caps.
7753
7754 2006-09-27  Wim Taymans  <wim@fluendo.com>
7755
7756         * docs/libs/gst-plugins-base-libs-docs.sgml:
7757         * docs/libs/gst-plugins-base-libs-sections.txt:
7758         * gst-libs/gst/audio/gstaudioclock.c:
7759         * gst-libs/gst/audio/gstaudioclock.h:
7760         * gst-libs/gst/audio/gstaudiosink.c:
7761         * gst-libs/gst/audio/gstaudiosink.h:
7762         * gst-libs/gst/audio/gstaudiosrc.c:
7763         * gst-libs/gst/audio/gstbaseaudiosink.c:
7764         (gst_base_audio_sink_render):
7765         * gst-libs/gst/audio/gstbaseaudiosink.h:
7766         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init):
7767         * gst-libs/gst/audio/gstbaseaudiosrc.h:
7768         * gst-libs/gst/audio/gstringbuffer.h:
7769         Added docs for the audio libs.
7770
7771 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
7772
7773         * tests/check/Makefile.am:
7774           Temporarily disable test that fails on the bots for unknown reasons.
7775
7776 2006-09-26 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
7777
7778         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
7779         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
7780         Moved AudioCodecType into priv
7781         Renamed all gst_basertpaudiopayload to gst_base_rtp_audio_payload prefixes
7782
7783 2006-09-25  Wim Taymans  <wim@fluendo.com>
7784
7785         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
7786         (add_fakesink), (remove_fakesink), (pad_probe), (close_pad_link),
7787         (is_demuxer_element), (try_to_link_1), (get_our_ghost_pad),
7788         (new_pad):
7789         Cleanups and small leak fixes.
7790         Added Depayloaders to valid list of autopluggable elements.
7791
7792 2006-09-25  Wim Taymans  <wim@fluendo.com>
7793
7794         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
7795         (gst_play_bin_vis_blocked), (gst_play_bin_set_property),
7796         (gen_video_element), (gen_text_element), (gen_audio_element),
7797         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
7798         (gst_play_bin_set_clock_func), (gst_play_bin_change_state):
7799         Detect NO_PREROLL state change returns and disable clock distribution to
7800         the sinks so that sync is disabled.
7801         Avoid some type checking and do simple casts instead.
7802         Small cleanups, fix some FIXMEs.
7803         Be more robust when linking user specified elements, catch an report
7804         errors. Fixes #357404.
7805         Fix some leaks in the error paths.
7806
7807 2006-09-25  Stefan Kost  <ensonic@users.sf.net>
7808
7809         * ChangeLog:
7810           ChangeLog surgery for missing bug-number
7811
7812 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
7813
7814         Patch by: Peter Kjellerstedt  <pkj at axis com>
7815
7816         * gst/playback/test.c:
7817           Fix compilation with uClibc and -Werror (#357591).
7818
7819 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
7820
7821         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
7822           Parse dates that are followed by a time as well (#357532).
7823
7824         * tests/check/libs/tag.c: (test_vorbis_tags):
7825           Add unit test for this.
7826
7827 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
7828
7829         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
7830         (gst_audio_convert_transform_caps):
7831         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor):
7832         * gst/videotestsrc/videotestsrc.h:
7833           A few array const-ifications.
7834
7835 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
7836
7837         * tests/check/Makefile.am:
7838           See if this makes the build bots happy.
7839
7840         * tests/check/libs/cddabasesrc.c:
7841           UTF8-ise my name.
7842
7843 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
7844
7845         Patch by: Young-Ho Cha <ganadist at chollian dot net>
7846
7847         * gst/subparse/samiparse.c: (handle_start_font),
7848         (fix_invalid_entities):
7849           More case-insensitivity for certain tags; recognise entities with
7850           decimal codes as special entities as well (#357330).
7851
7852 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
7853
7854         * gst-libs/gst/Makefile.am:
7855           Need to build tag directory before cdda.
7856
7857 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
7858
7859         * docs/libs/gst-plugins-base-libs-sections.txt:
7860         * gst-libs/gst/cdda/Makefile.am:
7861         * gst-libs/gst/cdda/gstcddabasesrc.c:
7862         (gst_cdda_base_src_base_init):
7863         * gst-libs/gst/cdda/gstcddabasesrc.h:
7864         * gst-libs/gst/tag/tag.h:
7865         * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal),
7866         (gst_tag_register_musicbrainz_tags):
7867           Move GST_TAG_CDDA_* tags into libgsttag and make libgstcddabasesrc
7868           depend on libgsttag. This is required so we can extract/read tags like
7869           DISCID without depending on libgstcddabasesrc (which used to register
7870           them).
7871
7872         * gst-libs/gst/tag/gstvorbistag.c:
7873           Add vorbiscomment mapping for CDDB_DISCID and MUSICBRAINZ_DISCID
7874           tags (also see #347848).
7875
7876         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1):
7877           Log vorbis comments we are actually writing. Const-ify array.
7878
7879 2006-09-23  Wim Taymans  <wim@fluendo.com>
7880
7881         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
7882         Improve buffering a bit by avoiding a deadlock because we cannot assume
7883         the underrun is always called.
7884
7885 2006-09-23  Wim Taymans  <wim@fluendo.com>
7886
7887         Patch by: Young-Ho Cha <ganadist at chollian dot net>
7888
7889         * gst-libs/gst/riff/riff-ids.h:
7890         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
7891         (gst_riff_create_audio_template_caps):
7892         Added MPEG-4 AAC and id and caps. Fixes #357289
7893         Added WMA9 Lossless id.
7894
7895 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
7896
7897         * ext/gnomevfs/gstgnomevfssrc.c:
7898           Fix misleading docs addition.
7899
7900         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
7901           Get rid of compiler warning the right way.
7902
7903 2006-09-22  Wim Taymans  <wim@fluendo.com>
7904
7905         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7906         (gst_base_rtp_depayload_finalize),
7907         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
7908         (gst_base_rtp_depayload_push_full),
7909         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_push),
7910         (gst_base_rtp_depayload_process),
7911         (gst_base_rtp_depayload_set_gst_timestamp),
7912         (gst_base_rtp_depayload_queue_release):
7913         * gst-libs/gst/rtp/gstbasertpdepayload.h:
7914         Small cleanups.
7915         Fix some leaks.
7916         Refactored the process method and added methods to push from the process
7917         vmethod.
7918         Use _scale functions.
7919         API: gst_base_rtp_depayload_push_ts
7920         API: gst_base_rtp_depayload_push
7921
7922         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
7923         timestamps are uint.
7924
7925 2006-09-22  Stefan Kost  <ensonic@users.sf.net>
7926
7927         * gst-libs/gst/interfaces/xoverlay.c:
7928           Remove unused statement from doc example.
7929
7930 2006-09-21  Stefan Kost  <ensonic@users.sf.net>
7931
7932         * gst-libs/gst/interfaces/videoorientation.c:
7933         (gst_video_orientation_iface_init),
7934         (gst_video_orientation_get_hflip),
7935         (gst_video_orientation_get_vflip),
7936         (gst_video_orientation_get_hcenter),
7937         (gst_video_orientation_get_vcenter),
7938         (gst_video_orientation_set_hflip),
7939         (gst_video_orientation_set_vflip),
7940         (gst_video_orientation_set_hcenter),
7941         (gst_video_orientation_set_vcenter):
7942           Add since tags to new API docs, ChangeLog surgery (forgot API keyword
7943           in ChangeLog)
7944
7945 2006-09-21  Tim-Philipp Müller  <tim at centricular dot net>
7946
7947         * tests/check/Makefile.am:
7948         * tests/check/elements/.cvsignore:
7949         * tests/check/elements/ffmpegcolorspace.c: (rgb_format_to_caps),
7950         (create_rgb_conversions), (rgb_conversion_free),
7951         (right_shift_colour), (fix_expected_colour), (check_rgb_buf),
7952         (got_buf_cb), (GST_START_TEST), (ffmpegcolorspace_suite):
7953           Add unit test for ffmpegcolorspace (RGB <=> RGB only so far),
7954           but disable for now since it doesn't pass (something wrong with
7955           RGBA somewhere).
7956
7957 2006-09-21  Wim Taymans  <wim@fluendo.com>
7958
7959         * gst/playback/gstplaybasebin.c: (group_commit),
7960         (queue_deadlock_check), (queue_overrun), (queue_threshold_reached),
7961         (queue_out_of_data), (gen_preroll_element),
7962         (preroll_remove_overrun), (probe_triggered):
7963         Refactor handling of overrun detection.
7964         Separate handling of group completion and deadlock detection when doing
7965         network buffering. This should fix some deadlocks that were not detected
7966         because the group was completed.
7967         Add more comments, improve debugging.
7968
7969 2006-09-21  Wim Taymans  <wim@fluendo.com>
7970
7971         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
7972         * tests/check/libs/audio.c:
7973         Some more compilation fixes.
7974
7975 2006-09-21  Wim Taymans  <wim@fluendo.com>
7976
7977         * gst-libs/gst/audio/gstringbuffer.c:
7978         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
7979         (gst_ring_buffer_read):
7980         Early morning compilation fix.
7981
7982 2006-09-20  Wim Taymans  <wim@fluendo.com>
7983
7984         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
7985         * tests/check/elements/multifdsink.c: (GST_START_TEST):
7986         * tests/check/elements/videorate.c: (GST_START_TEST):
7987         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
7988         * tests/check/pipelines/oggmux.c: (eos_buffer_probe):
7989         Fix some warnings.
7990
7991 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
7992
7993         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
7994         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
7995         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
7996           Handcrafted merge to help CVS understanding what I changed and what
7997           not.
7998
7999 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
8000
8001         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
8002         (gst_xvimagesink_get_times):
8003           change colorkey behaviour back according to #354773 comment 6/7
8004
8005 2006-09-19  Michael Smith  <msmith@fluendo.com>
8006
8007         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
8008         (gst_multi_fd_sink_class_init), (get_buffers_max), (find_limits),
8009         (gst_multi_fd_sink_recover_client),
8010         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_set_property),
8011         (gst_multi_fd_sink_get_property):
8012         * gst/tcp/gstmultifdsink.h:
8013           Implement stubbed out properties unit-type, units-soft-max,
8014           units-max, to allow specifying maximum sizes in units other than
8015           buffers.
8016           Fixes #355935
8017
8018 2006-09-19  Wim Taymans  <wim@fluendo.com>
8019
8020         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
8021         (gst_riff_create_audio_template_caps):
8022         Reorder the audio formats a bit for clarity.
8023         Detect and create caps for MSGSM and MSN (WAV49).
8024         Fixes #356596.
8025
8026         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
8027         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
8028         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
8029         Small cleanups, move error handling out of normal flow for clarity.
8030
8031 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
8032
8033         * docs/libs/gst-plugins-base-libs-docs.sgml:
8034         * docs/libs/gst-plugins-base-libs.types:
8035         * gst-libs/gst/interfaces/Makefile.am:
8036         * gst-libs/gst/interfaces/videoorientation.c:
8037         (gst_video_orientation_get_type),
8038         (gst_video_orientation_iface_init),
8039         (gst_video_orientation_get_hflip),
8040         (gst_video_orientation_get_vflip),
8041         (gst_video_orientation_get_hcenter),
8042         (gst_video_orientation_get_vcenter),
8043         (gst_video_orientation_set_hflip),
8044         (gst_video_orientation_set_vflip),
8045         (gst_video_orientation_set_hcenter),
8046         (gst_video_orientation_set_vcenter):
8047         * gst-libs/gst/interfaces/videoorientation.h:
8048           API: Add new interface to control video orientation (fixes #354908)
8049
8050 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
8051
8052         * gst/videotestsrc/gstvideotestsrc.c:
8053           Use G_UNLIKELY in _create and log one more detail.
8054           
8055         (gst_video_test_src_get_times), (gst_video_test_src_create):
8056         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
8057           Use gst_util_uint64_scale_int in _get_times().
8058
8059 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
8060
8061         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support)
8062           Give better warning message (add object and detail).
8063
8064 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
8065
8066         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
8067         (gst_xvimagesink_get_times):
8068           xvimage assumed that XV_COLORKEY can be set in RGB888 format (fixes
8069           #354773), use gst_util_uint64_scale_int in _get_times()
8070
8071 2006-09-18  Michael Smith  <msmith@fluendo.com>
8072
8073         * ext/ogg/gstoggmux.c: (gst_ogg_mux_push_buffer):
8074           Timestamps are unsigned; comparision against GST_CLOCK_TIME_NONE was
8075           always true, leading to dropping all timestamps.
8076
8077 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
8078
8079         * ext/libvisual/visual.c: (gst_vis_src_negotiate),
8080         (gst_visual_chain), (gst_visual_change_state):
8081           update to work also with libvisual 0.4 API, fix double unref (#355914)
8082           
8083         * tools/gst-launch-ext.1.in:
8084         * tools/gst-visualise.1.in:
8085           remove references to old man-pages
8086
8087         * tests/examples/seek/seek.c: (main):
8088           add real meadi-buttons, add tool-tips for the seek-options, arrange
8089           seek options in a table
8090
8091 2006-09-18  Michael Smith  <msmith@fluendo.com>
8092
8093         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear),
8094         (gst_ogg_mux_push_buffer):
8095           Don't generate out-of-order timestamps from oggmux, instead clamp
8096           output timestamps to be >= the previously output ts.
8097           Fixes #355595
8098
8099 2006-09-18  Michael Smith  <msmith@fluendo.com>
8100
8101         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
8102         (gst_multi_fd_sink_class_init):
8103           Updates, fixes, and typo corrections for multifdsink. No functional
8104           changes.
8105
8106 2006-09-17  Michael Smith  <msmith@fluendo.com>
8107
8108         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find):
8109           Don't crash on truncated files - check that we got an 8 byte buffer
8110           before trying to memcmp it.
8111
8112 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
8113
8114         * gst/playback/gstplaybasebin.c: (get_active_source):
8115           Make stream-switching appear instant to the application
8116           (ie. make sure that a g_object_get on 'current-foo' returns
8117           the stream previously set with g_object_set(). Totem needs
8118           this to update stream-related meta-info (like audio-codec)
8119           correctly when switching streams.
8120
8121 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
8122
8123         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer),
8124         (gst_alsa_mixer_ensure_track_list):
8125           Try harder to guess which mixer track is the master mixer
8126           track (instead of just taking the first one that has a pvolume).
8127           Fixes #342228.
8128
8129 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
8130
8131         reviewed by: <delete if not using a buddy>
8132
8133         * gst-libs/gst/audio/audio.h:
8134         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
8135
8136 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
8137
8138         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
8139         (gst_audio_convert_transform_caps):
8140           Get structure-name just once.
8141
8142 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
8143
8144         * tests/check/elements/audioresample.c: (GST_START_TEST):
8145         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
8146         * tests/check/elements/volume.c: (GST_START_TEST):
8147         * tests/check/elements/vorbisdec.c: (GST_START_TEST):
8148         * tests/check/pipelines/oggmux.c: (validate_ogg_page), (eos_watch),
8149         (test_pipeline), (GST_START_TEST):
8150         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
8151         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
8152           Fix big batch of compiler warnings.
8153
8154 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
8155
8156         * ext/gnomevfs/gstgnomevfssrc.c:
8157           Add docs about icydemux usage in connection with gnomevfssrc
8158
8159         * ext/libvisual/visual.c:
8160         * ext/ogg/gstoggaviparse.c:
8161         * ext/ogg/gstoggdemux.c:
8162         * ext/ogg/gstoggmux.c:
8163         * ext/ogg/gstoggparse.c:
8164         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
8165         * gst-libs/gst/audio/gstaudiosink.c:
8166         * gst-libs/gst/audio/gstaudiosrc.c:
8167         * gst/audiorate/gstaudiorate.c:
8168           More G_OBJECT macro fixing.
8169
8170         * gst/audiotestsrc/gstaudiotestsrc.h:
8171           Fix wrong info in header due to copy & paste
8172
8173 2006-09-15  Wim Taymans  <wim@fluendo.com>
8174
8175         * gst-libs/gst/audio/gstbaseaudiosink.c:
8176         (gst_base_audio_sink_get_time), (gst_base_audio_sink_callback):
8177         * gst-libs/gst/audio/gstbaseaudiosrc.c:
8178         (gst_base_audio_src_get_time), (gst_base_audio_src_fixate),
8179         (gst_base_audio_src_get_times), (gst_base_audio_src_get_offset),
8180         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
8181         Do the delay calculation in the source/sink base classes as this is
8182         specific for the capture/playback mode.
8183         Try to fixate a bit better, like round depth up to a multiple of 8
8184         bigger than width.
8185         Handle underruns correctly by marking DISCONT on buffers and adjusting
8186         timestamps to handle the gap.
8187         Set offset/offset_end correctly on buffers.
8188
8189         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_pause),
8190         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
8191         (gst_ring_buffer_read):
8192         Remove resync and underrun recovery from the ringbuffer.
8193         Fix ringbuffer read code on under/overrun.
8194
8195 2006-09-15  Wim Taymans  <wim@fluendo.com>
8196
8197         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
8198         (gst_play_base_bin_init), (fill_buffer), (check_queue),
8199         (queue_threshold_reached), (gst_play_base_bin_set_property),
8200         (gst_play_base_bin_get_property):
8201         * gst/playback/gstplaybasebin.h:
8202         Don't use a 0 low watermark when buffering, it is catching starvation
8203         way too late. Instead, use a 3 second queue with 30 and 95
8204         percent low/high watermarks. 
8205         Added queue-min-threshold property to configure low watermark.
8206         Use new _buffering message API.
8207         Make queue_threshold variable big enough to store a uint64 time value.
8208         API: playbin::queue-min-threshold property.
8209
8210 2006-09-15  Wim Taymans  <wim@fluendo.com>
8211
8212         * configure.ac:
8213         We require 0.10.10.1 now because of _wait_preroll().
8214
8215         * gst-libs/gst/audio/gstbaseaudiosink.c:
8216         (gst_base_audio_sink_render):
8217         Use gst_base_sink_wait_preroll().
8218
8219 2006-09-15  Wim Taymans  <wim@fluendo.com>
8220
8221         * ext/alsa/gstalsasink.c: (xrun_recovery), (gst_alsasink_write):
8222         * ext/alsa/gstalsasrc.c: (xrun_recovery), (gst_alsasrc_read):
8223         Use DEBUG_OBJECT more.
8224
8225 === release 0.10.10 ===
8226
8227 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
8228
8229         patch by: Michael Smith <msmith at fluendo dot com>
8230
8231         * gst/tcp/gstmultifdsink.c: (is_sync_frame),
8232         (gst_multi_fd_sink_client_queue_buffer),
8233         (gst_multi_fd_sink_new_client):
8234         * tests/check/elements/multifdsink.c: (GST_START_TEST),
8235         (multifdsink_suite):
8236           Fix implementation of sync-method 'next-keyframe'
8237           Closes #354594
8238
8239 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
8240
8241         patch by: Wim Taymans <wim at fluendo dot com>
8242
8243         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
8244         This patch removes the RANDOM flag that was incorrectly introduced with
8245         revision 1.91.  Fixes #354590
8246
8247 2006-09-05  Tim-Philipp Müller  <tim at centricular dot net>
8248
8249         * tests/check/Makefile.am:
8250           Random variation in Makefile line to see if it makes the
8251           gen64-base-full bot any happier.
8252
8253 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
8254
8255         * tests/check/pipelines/oggmux.c: (oggmux_suite):
8256           Disable test that fails at the moment (killed after timeout).
8257
8258 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
8259
8260         Patch by: James Livingston  <doclivingston at gmail.com>
8261
8262         * tests/check/Makefile.am:
8263         * tests/check/pipelines/.cvsignore:
8264         * tests/check/pipelines/oggmux.c: (get_page_codec),
8265         (check_chain_final_state), (fail_if_audio), (validate_ogg_page),
8266         (eos_buffer_probe), (start_pipeline), (stop_pipeline), (eos_watch),
8267         (test_pipeline), (test_vorbis), (test_theora), (test_vorbis_theora),
8268         (test_theora_vorbis), (oggmux_suite):
8269           Add simple unit test for oggmux from #337026 with checking for the
8270           EOS flags disabled for the time being.
8271
8272 2006-09-04  Wim Taymans  <wim@fluendo.com>
8273
8274         patch by: Alessandro Dessina <alessandro nnva org>
8275
8276         * ext/ogg/gstoggmux.c:
8277         Add cmml caps to oggmux. Fixes #353912
8278
8279 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
8280
8281         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
8282           Returning a return value often helps. In this case, we
8283           don't need the return value anyway, so just get rid of it.
8284           Should make build bots much happier.
8285
8286 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
8287
8288         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure),
8289         (paint_get_structure), (gst_video_test_src_get_size),
8290         (gst_video_test_src_smpte), (gst_video_test_src_snow),
8291         (gst_video_test_src_unicolor), (paint_setup_AYUV),
8292         (paint_hline_AYUV), (paint_setup_ARGB8888), (paint_setup_ABGR8888),
8293         (paint_setup_RGBA8888), (paint_setup_BGRA8888), (paint_hline_str4):
8294         * gst/videotestsrc/videotestsrc.h:
8295           Add support for AYUV and the various RGBA formats. Initialise
8296           fields of paintinfo structs allocated on the stack.
8297
8298         * tests/check/elements/videotestsrc.c: (right_shift_colour),
8299         (fix_expected_colour), (check_rgb_buf), (got_buf_cb),
8300         (check_rgb_buf), (videotestsrc_suite):
8301           Add unit tests for videotestsrc's RGB output.
8302
8303 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
8304
8305         * gst/videotestsrc/gstvideotestsrc.c:
8306         (gst_video_test_src_pattern_get_type),
8307         (gst_video_test_src_set_pattern):
8308         * gst/videotestsrc/gstvideotestsrc.h:
8309         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor),
8310         (gst_video_test_src_black), (gst_video_test_src_white),
8311         (gst_video_test_src_red), (gst_video_test_src_green),
8312         (gst_video_test_src_blue):
8313         * gst/videotestsrc/videotestsrc.h:
8314           Add more uni-colour patterns ("white", "red", "green", and "blue").
8315
8316 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
8317
8318         * gst/videotestsrc/videotestsrc.c: (paint_setup_YVYU):
8319           Fix stride for YVYU, should be word-aligned (#353658).
8320
8321 2006-08-31  Tim-Philipp Müller  <tim at centricular dot net>
8322
8323         * gst/adder/gstadder.c: (gst_adder_src_event):
8324           Fix build.
8325
8326 2006-08-31  Edward Hervey  <edward@fluendo.com>
8327
8328         * gst/adder/gstadder.c: (forward_event_func),
8329         (gst_adder_src_event), (gst_adder_collected),
8330         (gst_adder_change_state):
8331         * gst/adder/gstadder.h:
8332         Remember the start position asked in the incoming seeks, so we can
8333         output GST_EVENT_NEW_SEGMENT with a correct position value (instead
8334         of assuming it will always be 0).
8335
8336 2006-08-31  Edward Hervey  <edward@fluendo.com>
8337
8338         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
8339         (gst_ogg_demux_finalize), (gst_ogg_demux_perform_seek),
8340         (gst_ogg_demux_loop):
8341         Send the GST_EVENT_NEW_SEGMENT from the streaming thread.
8342
8343 2006-08-30  Tim-Philipp Müller  <tim at centricular dot net>
8344
8345         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8346         (gst_ffmpegcsp_get_unit_size):
8347           Return FALSE instead of returning a random false unit
8348           size when the format isn't known/supported (even if
8349           this shouldn't happen under normal circumstances).
8350
8351 2006-08-29  Wim Taymans  <wim@fluendo.com>
8352
8353         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
8354
8355         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create),
8356         (gst_gnome_vfs_src_start):
8357         Try harder to get the size from a uri by using _info_uri() when
8358         _info_from_handle() does not give us enough info. 
8359         Also follow symlinks when getting the size.
8360         Partially Fixes #332864.
8361
8362 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
8363
8364         Patch by: Viktor Peters  <viktor dot peters at gmail dot com>
8365
8366         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
8367         (gst_alsa_mixer_update), (gst_alsa_mixer_get_volume),
8368         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
8369         (gst_alsa_mixer_set_record):
8370         * ext/alsa/gstalsamixertrack.c:
8371         (gst_alsa_mixer_track_update_alsa_capabilities),
8372         (alsa_track_has_cap), (gst_alsa_mixer_track_new),
8373         (gst_alsa_mixer_track_update):
8374         * ext/alsa/gstalsamixertrack.h:
8375           Improve and fix mixer track handling, in particular better handling
8376           of alsa's pvolume/pswitch/cvolume/cswitch capabilities; create
8377           separate track objects for tracks that have both capture and playback
8378           volume (and label them differently as well so they're not mistakenly
8379           assumed to be duplicates); classify mixer tracks that only affect
8380           the audible volume of something (rather than the capture volume)
8381           as playback tracks. Redefine/fix meaning of RECORD and MUTE flags
8382           for capture tracks to correspond to alsa-pswitch alsa-cswitch
8383           (following the meaning documented in the mixer interface header
8384           file); add support for alsa's exclusive cswitch groups; update/sync
8385           state/flags better if mixer settings are changed by another
8386           application. Fixes #336075.
8387
8388 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
8389
8390         * gst/playback/gstplaybin.c:
8391           Improve docs: add section about BUFFERING messages sent by playbin.
8392
8393 2006-08-29  Michael Smith  <msmith@fluendo.com>
8394
8395         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_push_buffer),
8396         (gst_vorbis_enc_buffer_check_discontinuous),
8397         (gst_vorbis_enc_chain):
8398           Ignore explicit DISCONT marked on buffers (which is often spurious,
8399           particularly when using multiple segments), in favour of solely
8400           using the timestamps/durations.
8401
8402 2006-08-29  Edward Hervey  <edward@fluendo.com>
8403
8404         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
8405         Don't rely on incoming buffers offset anymore, since it is completely
8406         broken when using multiple segments.
8407         Instead convert the incoming buffers timestamp to running time, and
8408         then convert that value to the offsets.
8409         Also inform GstSegment of the last outputted stop position, which is
8410         needed if we received several segments with an unknown stop value.
8411
8412 2006-08-29  Thomas Vander Stichele  <thomas at apestaart dot org>
8413
8414         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
8415           fix buffer unreffing on a header push failure
8416
8417 2006-08-28  Wim Taymans  <wim@fluendo.com>
8418
8419         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_sink_event),
8420         (gst_audio_rate_chain):
8421         Make the metadata of the buffer writable before changing its
8422         flags.
8423
8424 2006-08-28  Wim Taymans  <wim@fluendo.com>
8425
8426         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
8427         (gst_audio_rate_setcaps), (gst_audio_rate_init),
8428         (gst_audio_rate_sink_event), (gst_audio_rate_src_event),
8429         (gst_audio_rate_chain), (gst_audio_rate_change_state):
8430         Fix audiorate some more.
8431         Reset and resync counters on flush and READY.
8432         Handle the DISCONT flag correctly.
8433         Use GstSegment to track position.
8434         Fail when not negotiated.
8435         Fixes #353234.
8436
8437 2006-08-25  Michael Smith  <msmith@fluendo.com>
8438
8439         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
8440           Fix spelling.
8441           Remove accidently included debug line.
8442
8443 2006-08-25  Wim Taymans  <wim@fluendo.com>
8444
8445         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
8446         Small cleanups.
8447         If a buffer is received with no caps, make the buffer metadata
8448         writable and set the caps, making sure that we don't screw up the
8449         refcounts.
8450
8451 2006-08-25  Michael Smith  <msmith@fluendo.com>
8452
8453         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset),
8454         (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_chain):
8455           Fix memory leaks and misleading debug messages, add a couple of
8456           comments.
8457
8458         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats),
8459         (gst_multi_fd_sink_render):
8460           Do not use gst_buffer_make_writable() in a basesink render method,
8461           as it may incorrectly unref the buffer. Instead, use convoluted
8462           dance to avoid copying the buffer except when we need to.
8463
8464 2006-08-25  Michael Smith  <msmith@fluendo.com>
8465
8466         * ext/vorbis/vorbisenc.c:
8467         (gst_vorbis_enc_buffer_check_discontinuous):
8468           Allow very small discontinuities in the timestamps. These we can't
8469           do anything useful with anyway (because vorbis's timestamps have
8470           only sample granularity), and are commonly produced by elements with
8471           minor bugs. Allow up to 1/2 a sample out.
8472           Fixes #351742.
8473
8474 2006-08-24  Wim Taymans  <wim@fluendo.com>
8475
8476         * tests/examples/seek/seek.c: (seek_cb), (start_seek), (stop_seek),
8477         (play_scrub_toggle_cb), (main):
8478         Add a checkbox to enable play scrubbing. Makes it possible to disable
8479         normal scrubbing.
8480
8481 2006-08-23  Stefan Kost  <ensonic@users.sf.net>
8482
8483         * tests/check/elements/.cvsignore:
8484           make buildbot happy
8485
8486 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
8487
8488         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
8489         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init),
8490         (gst_ogm_parse_class_init), (gst_ogm_parse_dispose),
8491         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
8492         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
8493         (gst_ogm_parse_stream_header), (gst_ogm_parse_comment_packet),
8494         (gst_ogm_text_parse_strip_trailing_zeroes),
8495         (gst_ogm_parse_data_packet), (gst_ogm_parse_chain),
8496         (gst_ogm_parse_sink_event), (gst_ogm_parse_change_state):
8497           Refactor ogm parse, do better input checking, misc. clean-ups.
8498           Cache incoming events and push them once the source pad has
8499           been created. Don't pass unterminated strings to sscanf().
8500           Strip trailing zeroes from subtitle text output, since they
8501           are not valid UTF-8. Don't push vorbiscomment packets on
8502           the subtitle text pad. Output perfect streams if possible.
8503
8504 2006-08-23  Wim Taymans  <wim@fluendo.com>
8505
8506         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
8507         Waits for tasks to settle down so that we clean up correctly for 
8508         valgrind.
8509
8510 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
8511
8512         * tests/check/libs/tag.c: (GST_START_TEST), (taglists_are_equal):
8513           Unit test fixes: \377 is more likely to fit into 8 bits than \777;
8514           actually return return value in taglists_are_equal.
8515
8516 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
8517
8518         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
8519           Fix crash due to broken bitstream parsing on x86-64: can't make
8520           any assumptions about sizeof(struct) due to alignment/packing
8521           differences on different architectures. Fixes #351790.
8522
8523 2006-08-22  Wim Taymans  <wim@fluendo.com>
8524
8525         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
8526         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
8527         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
8528         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
8529         (gst_riff_parse_info):
8530         Protect public functions against bad input.
8531         Do some cleanups.
8532         Fix documentation.
8533
8534 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
8535
8536         * gst-libs/gst/riff/riff-ids.h:
8537         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8538           Add voxware audio IDs (even if we can't play it) (#351795).
8539
8540 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
8541
8542         * gst-libs/gst/riff/riff-media.c:
8543         (gst_riff_create_video_template_caps),
8544         (gst_riff_create_audio_template_caps),
8545         (gst_riff_create_iavs_template_caps):
8546           Const-ify some arrays and use G_N_ELEMENTS instead
8547           of wasting oodles of RAM on terminator bits.
8548
8549 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
8550
8551         * gst-libs/gst/tag/gstvorbistag.c:
8552         (gst_tag_list_to_vorbiscomment_buffer):
8553         * tests/check/libs/tag.c: (GST_START_TEST):
8554           And the same for _to_vorbiscomment_buffer(): allow
8555           id_data_len == 0 for speex.
8556
8557 2006-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
8558
8559         * configure.ac:
8560         * docs/plugins/Makefile.am:
8561         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
8562         * docs/plugins/gst-plugins-base-plugins-sections.txt:
8563         * docs/plugins/inspect/plugin-gdp.xml:
8564         * gst/gdp/Makefile.am:
8565         * tests/check/Makefile.am:
8566           Move GDP plugin to -base from -bad.  Closes #347783.
8567
8568 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
8569
8570         * gst-libs/gst/tag/gstvorbistag.c:
8571         (gst_tag_list_from_vorbiscomment_buffer):
8572           Allow id_data_len == 0 (needed for vorbis comments in Speex files).
8573           Also add some checks to make sure we don't memcmp() beyond the end of
8574           vorbiscomment buffer if the ID to check for is larger than the buffer.
8575
8576         * tests/check/libs/tag.c: (GST_START_TEST):
8577           Some more tests for gst_tag_list_from_vorbiscomment_buffer().
8578
8579 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
8580
8581         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1),
8582         (gst_vorbis_enc_set_metadata):
8583           Use vorbis comment utility functions from libgsttag
8584           instead of re-inventing the wheel (partially fixes #347091).
8585
8586 2006-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
8587
8588         * tests/check/elements/audioconvert.c: (GST_START_TEST):
8589         Fix leaks. Wait for state transitions that might happen ASYNC, as well
8590         as some that won't.
8591
8592 2006-08-21  Wim Taymans  <wim@fluendo.com>
8593
8594         * docs/libs/Makefile.am:
8595         * docs/libs/gst-plugins-base-libs-sections.txt:
8596         * docs/libs/gst-plugins-base-libs.types:
8597         Don't try to GObject scan the netbuffer as it's not a GObject.
8598         Fixes #351308.
8599
8600         * gst-libs/gst/netbuffer/gstnetbuffer.c:
8601         * gst-libs/gst/netbuffer/gstnetbuffer.h:
8602         Document GstNetBuffer.
8603
8604 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
8605
8606         * tests/check/elements/audioconvert.c: (GST_START_TEST),
8607         (audioconvert_suite):
8608           Add testcase for caps-size-explosion
8609
8610 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
8611
8612         * gst/audioconvert/gstaudioconvert.c:
8613         (gst_audio_convert_get_unit_size), (set_structure_widths):
8614           Lower debug, use g_assert in _get_unit_size
8615
8616         * gst/audioresample/gstaudioresample.c:
8617         (audioresample_get_unit_size):
8618         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8619         (gst_ffmpegcsp_get_unit_size):
8620         * gst/videoscale/gstvideoscale.c: (gst_video_scale_get_unit_size):
8621           use g_assert in _get_unit_size
8622
8623 2006-08-18  Wim Taymans  <wim@fluendo.com>
8624
8625         * docs/libs/gst-plugins-base-libs-sections.txt:
8626         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_set_packet_len),
8627         (gst_rtp_buffer_pad_to), (gst_rtp_buffer_get_payload_subbuffer),
8628         (gst_rtp_buffer_get_payload_buffer):
8629         * gst-libs/gst/rtp/gstrtpbuffer.h:
8630         Document GstRTPBuffer.
8631         Added function to efficiently strip payload headers.
8632         API: gst_rtp_buffer_get_payload_subbuffer()
8633
8634 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
8635
8636         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
8637         (gst_tag_to_vorbis_comments):
8638           Serialise unknown vorbis comments into GST_TAG_EXTENDED_COMMENT
8639           tags and deserialise them properly as well (#347091).
8640           Add some more gtk-doc blurbs and also some g_return_if_fail().
8641
8642         * tests/check/libs/tag.c: (GST_START_TEST),
8643         (back_to_vorbis_comments), (taglists_are_equal), (tag_suite):
8644           More tests.
8645
8646 2006-08-17  Wim Taymans  <wim@fluendo.com>
8647
8648         * ext/ogg/Makefile.am:
8649         * ext/ogg/gstogg.c: (plugin_init):
8650         * ext/ogg/gstoggaviparse.c: (gst_ogg_avi_parse_get_type),
8651         (gst_ogg_avi_parse_base_init), (gst_ogg_avi_parse_class_init),
8652         (gst_ogg_avi_parse_init), (gst_ogg_avi_parse_finalize),
8653         (gst_ogg_avi_parse_setcaps), (gst_ogg_avi_parse_event),
8654         (gst_ogg_avi_parse_push_packet), (gst_ogg_avi_parse_chain),
8655         (gst_ogg_avi_parse_change_state), (gst_ogg_avi_parse_plugin_init):
8656         Added ogg-in-avi parser element. Fixes #140139.
8657
8658         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
8659         Fixed a bug in oggdemux debug code.
8660
8661         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
8662         (gst_riff_create_audio_template_caps):
8663         Recognise Ogg in the AVI extensible wave format.
8664
8665 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
8666
8667         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
8668           Make buffer durations add up (duration should be next_ts-ts for
8669           perfect streams). Fixes CD ripping to Ogg/Vorbis with vorbisenc
8670           from CVS.
8671
8672         * tests/check/libs/cddabasesrc.c: (gst_cd_foo_src_close),
8673         (test_buffer_timestamps), (cddabasesrc_suite):
8674           Add unit test for the above.
8675
8676         * tests/check/Makefile.am:
8677           Don't know why cddabasesrc test was in VALGRIND_TO_FIX, remove
8678           to see what happens.
8679
8680 2006-08-16  Wim Taymans  <wim@fluendo.com>
8681
8682         * ext/alsa/gstalsasink.c: (gst_alsasink_set_property),
8683         (gst_alsasink_open):
8684         * ext/alsa/gstalsasrc.c: (gst_alsasrc_set_property),
8685         (gst_alsasrc_open):
8686         Avoid setting and using a NULL device name.
8687         Print more info when we fail to open a device.
8688
8689 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
8690
8691         * docs/libs/gst-plugins-base-libs-sections.txt:
8692         * gst-libs/gst/tag/tag.h:
8693         * gst-libs/gst/tag/tags.c: (gst_tag_parse_extended_comment):
8694           API: add gst_tag_parse_extended_comment() (#351426).
8695
8696         * tests/check/Makefile.am:
8697         * tests/check/libs/.cvsignore:
8698         * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite), (main):
8699           Add unit test for gst_tag_parse_extended_comment().
8700
8701 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
8702
8703         * sys/ximage/ximagesink.c: (gst_ximagesink_get_property):
8704         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_property):
8705           Fix leak (#351502).
8706
8707 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
8708
8709         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
8710         * docs/plugins/gst-plugins-base-plugins-sections.txt:
8711         * docs/plugins/gst-plugins-base-plugins.args:
8712         * gst/playback/gstplaybin.c:
8713           Document playbin.
8714           
8715         * docs/plugins/inspect/plugin-adder.xml:
8716         * docs/plugins/inspect/plugin-alsa.xml:
8717         * docs/plugins/inspect/plugin-audioconvert.xml:
8718         * docs/plugins/inspect/plugin-audiorate.xml:
8719         * docs/plugins/inspect/plugin-audioresample.xml:
8720         * docs/plugins/inspect/plugin-audiotestsrc.xml:
8721         * docs/plugins/inspect/plugin-cdparanoia.xml:
8722         * docs/plugins/inspect/plugin-decodebin.xml:
8723         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
8724         * docs/plugins/inspect/plugin-gnomevfs.xml:
8725         * docs/plugins/inspect/plugin-ogg.xml:
8726         * docs/plugins/inspect/plugin-pango.xml:
8727         * docs/plugins/inspect/plugin-playbin.xml:
8728         * docs/plugins/inspect/plugin-subparse.xml:
8729         * docs/plugins/inspect/plugin-tcp.xml:
8730         * docs/plugins/inspect/plugin-theora.xml:
8731         * docs/plugins/inspect/plugin-typefindfunctions.xml:
8732         * docs/plugins/inspect/plugin-video4linux.xml:
8733         * docs/plugins/inspect/plugin-videorate.xml:
8734         * docs/plugins/inspect/plugin-videoscale.xml:
8735         * docs/plugins/inspect/plugin-videotestsrc.xml:
8736         * docs/plugins/inspect/plugin-volume.xml:
8737         * docs/plugins/inspect/plugin-vorbis.xml:
8738         * docs/plugins/inspect/plugin-ximagesink.xml:
8739         * docs/plugins/inspect/plugin-xvimagesink.xml:
8740           Update to CVS version.
8741
8742 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
8743
8744         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
8745         (gst_play_bin_set_property), (gst_play_bin_get_property),
8746         (value_list_append_structure_list),
8747         (gst_play_bin_handle_redirect_message),
8748         (gst_play_bin_handle_message):
8749           API: GstPlayBin::connection-speed
8750           Add "connection-speed" property; re-order redirect messages with
8751           multiple redirect locations depending on the minimum bitrate if
8752           that information is available and a connection speed is set
8753           (#350399).
8754
8755 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
8756
8757         * gst/playback/gstplaybin.c:
8758           Update max volume to the same value that the volume element uses.
8759
8760 2006-08-14  Wim Taymans  <wim@fluendo.com>
8761
8762         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
8763         Less uglyness..
8764
8765 2006-08-14  Wim Taymans  <wim@fluendo.com>
8766
8767         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
8768         (gst_ogg_demux_get_next_page), (gst_ogg_demux_perform_seek),
8769         (gst_ogg_demux_read_chain), (gst_ogg_demux_loop):
8770         Add some more debug info.
8771         Don't crash when a seek failed.
8772         Actually return the result of the seek instead of TRUE.
8773         Ignore multiple BOS pages with the same serial so that we don't create
8774         the same stream multiple times.
8775         Post an error when we fail to do the initial seek.
8776
8777 2006-08-13  Wim Taymans  <wim@fluendo.com>
8778
8779         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
8780         (gst_alsa_detect_channels), (gst_alsa_probe_supported_formats):
8781         Small code cleanup.
8782
8783         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
8784         (gst_alsa_mixer_new):
8785         Remove hack that always set the device to hw:0*.
8786         Properly find the card name for whatever device was configured.
8787         Do some better debugging.
8788         Fixes #350784.
8789
8790         * ext/alsa/gstalsamixerelement.c:
8791         (gst_alsa_mixer_element_set_property),
8792         (gst_alsa_mixer_element_change_state):
8793         Cleanups.
8794         Handle setting of a NULL device name better.
8795
8796 2006-08-11  Wim Taymans  <wim@fluendo.com>
8797
8798         * gst/adder/gstadder.c:
8799         Don't clip float values. Fixes #350900.
8800
8801 2006-08-11  Andy Wingo  <wingo@pobox.com>
8802
8803         * gst/tcp/gsttcp.c: Really fix the build?
8804
8805         * gst/tcp/gsttcp.h: For now, always disable deprecation here --
8806         fixes the build.
8807
8808 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
8809
8810         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes):
8811           Float caps shouldn't have a "signed" field.
8812
8813 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
8814
8815         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query):
8816           Implement SEEKING query in its most basic form, so that we can
8817           at least check if we're seekable or not (#350655).
8818
8819 2006-08-09  Tim-Philipp Müller  <tim at centricular dot net>
8820
8821         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
8822           The checks here are not even close to anything that would
8823           justify MAXIMUM probability, lowering to POSSIBLE until someone
8824           fixes the checks (case at hand: quicktime redirection files
8825           might start with 00 00 01 XX and pass the checks here just
8826           fine, see #350399).
8827
8828 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
8829
8830         Patch by: Sjoerd Simons  <sjoerd at luon net>
8831
8832         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find):
8833           Better detection for multipart/x-mixed-replace: accept leading
8834           whitespaces before the boundary marker as well (as our very own
8835           multipartmux used to produce) (#349068).
8836
8837 2006-08-07  Tim-Philipp Müller  <tim at centricular dot net>
8838
8839         Patch by: Young-Ho Cha  <ganadist at chollian net>
8840
8841         * gst-libs/gst/riff/riff-ids.h:
8842         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
8843         (gst_riff_create_audio_template_caps):
8844           Detect DTS audio streams (#350157).
8845
8846 2006-08-05  Andy Wingo  <wingo@pobox.com>
8847
8848         * ext/theora/gsttheoraparse.h:
8849         * ext/theora/theoraparse.c (gst_theora_parse_class_init)
8850         (theora_parse_dispose, theora_parse_set_property)
8851         (theora_parse_get_property, theora_parse_munge_granulepos)
8852         (theora_parse_push_buffer, theora_parse_change_state):
8853         API: GstTheoraParse::synchronization-points
8854         Add a property 'synchronization-points' to fix badly synchronized oggs.
8855
8856 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
8857
8858         * tests/check/Makefile.am:
8859         * tests/check/libs/.cvsignore:
8860         * tests/check/libs/audio.c: (structure_contains_channel_positions),
8861         (fixed_caps_have_channel_positions), (GST_START_TEST),
8862         (audio_suite), (main):
8863           Add a few tests for the channel position stuff in libgstaudio.
8864
8865 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
8866
8867         * ext/alsa/gstalsa.c: (caps_add_channel_configuration),
8868         (gst_alsa_detect_channels):
8869         * ext/alsa/gstalsasink.c:
8870           Add support for cards that (only) do more than 8 channels,
8871           like the Delta 44 (#345188).
8872
8873         * gst-libs/gst/audio/multichannel.c:
8874         (gst_audio_check_channel_positions):
8875         * gst-libs/gst/audio/multichannel.h:
8876           API: add GST_AUDIO_CHANNEL_POSITION_NONE, which stands for an
8877           unspecified channel position and cannot be combined with any
8878           of the other audio channel positions; adjust position layout
8879           checks accordingly (#345188).
8880
8881 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
8882
8883         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
8884           Recognise ancient RealAudio files (see #349779).
8885
8886 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
8887
8888         Patch by: Jens Granseuer  <jensgr at gmx net>
8889
8890         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
8891           Add typefinder for Interplay's MVE format (#348973).
8892
8893 2006-08-02  Wim Taymans  <wim@fluendo.com>
8894
8895         Patch by: Marcel Moreaux <marcelm at luon dot net>
8896
8897         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8898         (gst_base_rtp_depayload_add_to_queue):
8899         * gst-libs/gst/rtp/gstbasertpdepayload.h:
8900         Handle RTP sequence number rollover.
8901         Disable jitterbuffer by default.
8902
8903 2006-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
8904
8905         * gst/audioresample/gstaudioresample.c: (audioresample_stop),
8906         (audioresample_set_caps):
8907         Don't leak references to the incoming caps. Clean them up when
8908         stopping.
8909
8910         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
8911         (gst_video_scale_finalize):
8912         Don't leak our temporary pixel buffer.
8913
8914         * tests/check/Makefile.am:
8915         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline),
8916         (GST_START_TEST), (simple_launch_lines_suite):
8917
8918         Fix leaks and re-enable the test for valgrind checking.
8919
8920 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
8921
8922         Patch by: Sjoerd Simons  <sjoerd at luon net>
8923
8924         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find),
8925         (plugin_init):
8926           Add typefind function for multipart/x-mixed-replace (#348916).
8927
8928 2006-07-28  Wim Taymans  <wim@fluendo.com>
8929
8930         * gst/adder/gstadder.c: (gst_adder_setcaps),
8931         (gst_adder_query_duration):
8932         Fix leak in duration query.
8933         Reflow some docs and notes.
8934
8935 2006-07-28  Michael Smith  <msmith@fluendo.com>
8936
8937         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST),
8938         (vorbisenc_suite):
8939           Enable Andy's extra vorbisenc test, now that it passes. Also fix one
8940           aspect of it.
8941
8942 2006-07-28  Michael Smith  <msmith@fluendo.com>
8943
8944         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps),
8945         (gst_vorbis_enc_sink_getcaps), (gst_vorbis_enc_buffer_from_packet),
8946         (gst_vorbis_enc_push_buffer),
8947         (gst_vorbis_enc_buffer_check_discontinuous),
8948         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
8949         * ext/vorbis/vorbisenc.h:
8950           Handle discontinuities in the input vorbis stream correctly,
8951           so that the output is properly timestamped (and has good granulepos
8952           values). Needs some oggmux fixes too.
8953
8954 2006-07-27  Wim Taymans  <wim@fluendo.com>
8955
8956         patch by: Kai Vehmanen <kv2004 eca cx>
8957
8958         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8959         (gst_base_rtp_depayload_chain),
8960         (gst_base_rtp_depayload_handle_sink_event),
8961         (gst_base_rtp_depayload_change_state):
8962         Don't send multiple newsegments with different formats.
8963         Fixes #348677.
8964
8965 2006-07-26  Wim Taymans  <wim@fluendo.com>
8966
8967         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
8968         (gst_ogg_demux_do_seek), (gst_ogg_demux_read_chain):
8969         Make seeking in ogg more accurate again by doing the more correct
8970         granuletime to stream time conversion.
8971
8972 2006-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
8973
8974         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
8975         (gst_multi_fd_sink_new_client):
8976           debug a little more understandably
8977           do not use goto as a substitute for break, especially if
8978           break is also being used
8979
8980 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
8981
8982         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
8983         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
8984           Remove GLib-2.6 compatibility cruft.
8985
8986 2006-07-24  Wim Taymans  <wim@fluendo.com>
8987
8988         * gst-libs/gst/audio/gstbaseaudiosink.c:
8989         (gst_base_audio_sink_render):
8990         Don't try to align a sample to an unknown value.
8991
8992 2006-07-24  Wim Taymans  <wim@fluendo.com>
8993
8994         * gst-libs/gst/audio/gstbaseaudiosink.c:
8995         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
8996         When the audio clock is slaved to another clock, never try to align
8997         samples but trust the rate interpolation algorithm.
8998
8999 2006-07-24  Wim Taymans  <wim@fluendo.com>
9000
9001         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
9002         Don't try to calculate silence samples, base class does this much
9003         better now.
9004
9005         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
9006         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps),
9007         (gst_ring_buffer_acquire):
9008         Calculate silence samples correctly.
9009
9010         * gst-libs/gst/audio/gstringbuffer.h:
9011         Add _CAST macro.
9012
9013 2006-07-22  Tim-Philipp Müller  <tim at centricular dot net>
9014
9015         * gst/typefind/gsttypefindfunctions.c: (xml_check_first_element):
9016           Limit search for the first markup tag to the first few kB of
9017           the file. If we don't find one there, it's highly unlikely that
9018           this is an XML(-ish) file.
9019
9020 2006-07-21  Andy Wingo  <wingo@pobox.com>
9021
9022         * tests/check/pipelines/theoraenc.c (test_discontinuity): Similar
9023         test to the one in vorbisenc. Also commented out.
9024
9025         * tests/check/pipelines/vorbisenc.c: 
9026         (test_discontinuity): New test, commented out until Mike lands
9027         some elite vorbisenc patches.
9028
9029         * tests/check/pipelines/theoraenc.c: Port to bufferstraw.
9030         Bufferstraw was actually factored out of these tests. Now we share
9031         code yay.
9032
9033         * configure.ac (GST_MAJORMINOR): Rev core requirements to 0.10.9.1
9034         for bufferstraw addition to gstcheck.
9035
9036 2006-07-21  Wim Taymans  <wim@fluendo.com>
9037
9038         * ext/theora/theoradec.c: (clip_buffer):
9039         Better clipping.
9040
9041 2006-07-21  Wim Taymans  <wim@fluendo.com>
9042
9043         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
9044         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
9045         (gst_audioringbuffer_release), (gst_audioringbuffer_stop):
9046         Fix leak.
9047         Avoid type casting when we can.
9048
9049         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_dispose):
9050         Fix mem leak.
9051
9052 2006-07-20  Tim-Philipp Müller  <tim at centricular dot net>
9053
9054         * ext/alsa/gstalsamixerelement.c:
9055         (gst_alsa_mixer_element_change_state):
9056           Make state change fail if the specified device can't be opened
9057           for some reason.
9058
9059 2006-07-20  Wim Taymans  <wim@fluendo.com>
9060
9061         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
9062         (cb_newpad), (main):
9063         Example of a small audio/video player using decodebin.
9064
9065 2006-07-20  Stefan Kost  <ensonic@users.sf.net>
9066
9067         * gst-libs/gst/riff/riff-ids.h:
9068           Add 'fact' chunk id
9069
9070 2006-07-19  Wim Taymans  <wim@fluendo.com>
9071
9072         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9073         (gst_base_rtp_depayload_chain),
9074         (gst_base_rtp_depayload_change_state):
9075         Don't assert when not negotiated but post a meaningfull 
9076         error message. Fixes #347918.
9077
9078         * gst-libs/gst/rtp/gstbasertppayload.c:
9079         Add comment about better default MTU size.
9080
9081         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
9082         Small cleanups, start docs.
9083
9084 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
9085
9086         Patch by: Martin Szulecki
9087
9088         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_property):
9089           If "device-name" is requested and the device is not
9090           open, try to temporarily open it to obtain this
9091           information (#342494).
9092
9093 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
9094
9095         * gst-libs/gst/tag/gstid3tag.c:
9096           Add TSSE <=> GST_TAG_ENCODER mapping (see #347898).
9097
9098         * gst-libs/gst/tag/gsttageditingprivate.h:
9099         * gst-libs/gst/tag/gstvorbistag.c:
9100           Some more random const-ifications.
9101
9102 2006-07-18  Stefan Kost  <ensonic@users.sf.net>
9103
9104         * gst-libs/gst/riff/riff-ids.h:
9105         * gst-libs/gst/riff/riff-media.c:
9106         (gst_riff_create_video_template_caps):
9107           Add more FOURCCs (sort list to make stuff easier to find),
9108           add comment what those 16 bytes in struct _gst_riff_strh according to
9109           one avi-dumper are
9110
9111 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
9112
9113         * gst-libs/gst/audio/multichannel.c:
9114         (gst_audio_check_channel_positions),
9115         (gst_audio_fixate_channel_positions):
9116           Const-ify two arrays.
9117
9118 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
9119
9120         * ext/alsa/gstalsa.c: (caps_add_channel_configuration):
9121           Fix typo, so that alsasink also advertises 8 channels
9122           if that's supported (tags: can, worms, open, alsa, ph34r).
9123
9124 2006-07-17  Wim Taymans  <wim@fluendo.com>
9125
9126         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
9127         (gst_ogg_pad_submit_packet), (gst_ogg_demux_read_chain):
9128         *sigh*, when is the compiler going to warn when the comments
9129         are out-of-sync with the code.. Refix case of busted theora
9130         headers with 0 granule pos.
9131
9132 2006-07-14  Wim Taymans  <wim@fluendo.com>
9133
9134         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9135         (gst_base_rtp_depayload_wait),
9136         (gst_base_rtp_depayload_change_state),
9137         (gst_base_rtp_depayload_set_property),
9138         (gst_base_rtp_depayload_get_property):
9139         Fix 99% cpu load by waiting for absolute times on the
9140         clock. Fixes #347300.
9141
9142 2006-07-14  Andy Wingo  <wingo@pobox.com>
9143
9144         * ext/theora/gsttheoraparse.h: 
9145         * ext/theora/theoraparse.c (theora_parse_drain_event_queue)
9146         (theora_parse_push_headers, theora_parse_clear_queue)
9147         (theora_parse_drain_queue_prematurely, )
9148         (theora_parse_sink_event, theora_parse_change_state): Queue events
9149         until we initialized our state, like in vorbisparse.
9150
9151         * ext/vorbis/vorbisparse.h: 
9152         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_event_queue)
9153         (vorbis_parse_push_headers, vorbis_parse_clear_queue)
9154         (vorbis_parse_drain_queue_prematurely, )
9155         (vorbis_parse_sink_event, vorbis_parse_change_state): Queue events
9156         until we have initialized our state. Fixes seeking after an
9157         initial pad block.
9158
9159 2006-07-14  Andy Wingo  <wingo@pobox.com>
9160
9161         Patch by: Iain Holmes <iaingnome@gmail.com>
9162         
9163         * ext/ogg/gstoggdemux.c (gst_ogg_demux_finalize): Fix memleak.
9164
9165 2006-07-14  Jan Schmidt  <thaytan@mad.scientist.com>
9166
9167         * configure.ac:
9168         Bump nano back to CVS
9169
9170 === release 0.10.9 ===
9171
9172 2006-07-13  Jan Schmidt <thaytan@mad.scientist.com>
9173
9174         * configure.ac:
9175           releasing 0.10.9, "I walk the line"
9176
9177 2006-07-14  Michael Smith  <msmith@fluendo.com>
9178
9179         * tests/check/pipelines/vorbisenc.c: (stop_pipeline):
9180           Move a g_cond_signal to earlier to avoid sometimes deadlocking
9181           (commonly happens when running this test under valgrind) when trying
9182           to remove the buffer probe.
9183
9184 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
9185
9186         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
9187         Fix missing g_unlock from the previous commit
9188
9189 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
9190
9191         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
9192         (gst_ximagesink_change_state):
9193         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
9194         (gst_xvimagesink_change_state):
9195         Implement a locking order to ensure we always take the object lock
9196         before the x_lock and never vice-versa.
9197
9198 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
9199
9200         * gst/playback/gstdecodebin.c: (find_compatibles):
9201         Fix a caps leak when linking (#347304)
9202
9203         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
9204         (gst_ximagesink_ximage_destroy), (gst_ximagesink_xcontext_clear),
9205         (gst_ximagesink_change_state):
9206         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
9207         (gst_xvimage_buffer_finalize), (gst_xvimagesink_check_xshm_calls),
9208         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
9209         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_change_state):
9210         Don't leak shared memory resources. Use the object lock to protect
9211         against the xcontext disappearing while returning a buffer from the
9212         pipeline. (#347304)
9213
9214 2006-07-12  Edward Hervey  <edward@fluendo.com>
9215
9216         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize),
9217         (vorbis_handle_comment_packet):
9218         gst_tag_list_merge() returns a new object. Take that into account when
9219         using it. This avoids memleak.
9220         Revert previous commit which is not needed.
9221
9222 2006-07-12  Edward Hervey  <edward@fluendo.com>
9223
9224         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize):
9225         Reset the decoder in finalize so that all fields get cleared.
9226
9227 2006-07-12  Wim Taymans  <wim@fluendo.com>
9228
9229         * gst-libs/gst/audio/gstbaseaudiosrc.c:
9230         (gst_base_audio_src_set_clock),
9231         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create):
9232         Don't try to post an error message when setting the clock fails
9233         as this can happen when adding an element to a bin which will then
9234         deadlock. Fixes #347296.
9235
9236 2006-07-12  Edward Hervey  <edward@fluendo.com>
9237
9238         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
9239         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
9240         (vorbis_handle_type_packet):
9241         Post tag messages on the bus even if we're not initialized.
9242         If we're not initialized, we still postpone the event pushing of tags.
9243
9244 2006-07-12  Wim Taymans  <wim@fluendo.com>
9245
9246         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
9247         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
9248         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
9249         Revert last two changes that broke the freeze.
9250
9251 2006-07-12  Wim Taymans  <wim@fluendo.com>
9252
9253         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
9254         basesink calculates silence sample correctly for us.
9255
9256 2006-07-12  Wim Taymans  <wim@fluendo.com>
9257
9258         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
9259         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
9260         Calculate correct silence samples so we don't fill our ringbuffer
9261         with noise.
9262
9263 2006-07-12  Edward Hervey  <edward@fluendo.com>
9264
9265         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
9266         (gst_vorbis_dec_reset), (vorbis_dec_sink_event),
9267         (vorbis_handle_comment_packet), (vorbis_handle_type_packet):
9268         * ext/vorbis/vorbisdec.h:
9269         Delay sending events (newsegment, tags) until the decoder is properly
9270         initialized.
9271         Fixes #347295
9272
9273 2006-07-11  Jan Schmidt  <thaytan@mad.scientist.com>
9274
9275         * tests/check/elements/audioconvert.c: (get_float_mc_caps),
9276         (get_int_mc_caps), (GST_START_TEST), (audioconvert_suite):
9277           Patch from #347221 adding a test for audioconvert
9278           channel remappings.
9279
9280 2006-07-11  Tim-Philipp Müller  <tim at centricular dot net>
9281
9282         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
9283         (gst_ssa_parse_parse_line):
9284           Don't include the terminating NUL in the buffer size,
9285           it's only there for extra paranoia (would add random
9286           '*' characters at the end of each subtitle since the
9287           terminator itself is not valid UTF-8 technically).
9288           Also fix indenting after boilerplate macro.
9289
9290 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
9291
9292         * gst/playback/gstdecodebin.c: (close_pad_link):
9293           Also emit 'unknown-type' signal (which should really be
9294           called unhandled-type) if we found potential decoders/demuxers
9295           in the registry but none of them worked in the end (as in the
9296           case where the plugins don't exist any longer but are still
9297           listed in the registry). Fixes #329798.
9298
9299 2006-07-08  Andy Wingo  <wingo@pobox.com>
9300
9301         * theoraparse.c (theora_parse_push_buffer)
9302         (theora_parse_drain_queue_prematurely, theora_parse_drain_queue):
9303         Add some more debugging. Fix granulepos reconstruction in the face
9304         of discontinuities.
9305
9306 2006-07-06  Wim Taymans  <wim@fluendo.com>
9307
9308         * gst-libs/gst/audio/gstbaseaudiosink.c:
9309         (gst_base_audio_sink_class_init),
9310         (gst_base_audio_sink_provide_clock):
9311         Use gobject_class instead of G_OBJECT_CLASS (klass)
9312
9313         * gst-libs/gst/audio/gstbaseaudiosrc.c:
9314         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
9315         (gst_base_audio_src_set_clock), (gst_base_audio_src_provide_clock),
9316         (gst_base_audio_src_get_time),
9317         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create),
9318         (gst_base_audio_src_create_ringbuffer):
9319         Fix latency and buffer-time constants and properties ala basesink.
9320         Implement pull based scheduling. Fixes #346527.
9321         Set default blocksize in GstBaseSrc to 0, we default to pushing out
9322         one segment.
9323         Refuse slaving to another clock instead of silently not working.
9324         Only provide a clock when we are actually able to do so.
9325         Various small cleanups and compiler hints.
9326
9327 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
9328
9329         Patch by: Lutz Mueller <lutz at topfrose de>
9330
9331         * gst/typefind/gsttypefindfunctions.c: (html_type_find),
9332         (plugin_init):
9333           Add typefinding for text/html (#346581).
9334
9335 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
9336
9337         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
9338         (xml_check_first_element), (xml_type_find), (smil_type_find):
9339           Fix SMIL typefinding, make xml_check_first_element() more
9340           useful.
9341
9342 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
9343
9344         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
9345         (gst_play_base_bin_finalize), (decodebin_element_added_cb),
9346         (decodebin_element_removed_cb), (gst_play_base_bin_set_property):
9347         * gst/playback/gstplaybasebin.h:
9348           Protect list of elements with a subtitle-encoding property and
9349           the subtitle encoding member itself with a lock of their own
9350           instead of using the object lock. This prevents a dead-lock in
9351           the element-remove callback in some circumstances when shutting
9352           down playbin.
9353
9354 2006-07-05  Sebastien Moutte  <sebastien@moutte.net>
9355
9356         * win32/common/libgsttag.def:
9357         Export some new functions.
9358         * win32/vs6/libgstogg.dsp:
9359         Add a link to libgsttag-0.10.lib.
9360
9361 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
9362
9363         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
9364           Some const-ification.
9365
9366 2006-07-04  Wim Taymans  <wim@fluendo.com>
9367
9368         * gst/playback/gstplaybasebin.c: (is_stream), (gen_source_element):
9369         Improve checking if we are dealing with a stream. Added some
9370         more uris that need buffering.
9371
9372 2006-07-03  Edward Hervey  <edward@fluendo.com>
9373
9374         * ext/vorbis/vorbisdec.c: (vorbis_do_clip):
9375         Remove unused variable.
9376
9377 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
9378
9379         * Makefile.am:
9380           include lcov.mak
9381         * configure.ac:
9382           add GCOV_LIBS to GST_LIBS
9383
9384 2006-07-02  Tim-Philipp Müller  <tim at centricular dot net>
9385
9386         Patch by: Michael Sheldon  <webmaster at mikeasoft com>
9387
9388         * ext/alsa/gstalsasrc.c:
9389           Add 32 bps to template caps and increase channels range
9390           from [1,2] to [1,MAX]. See #346326.
9391
9392 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
9393
9394         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
9395           Recognise 'WMVA' video codec fourcc (#345879).
9396           
9397 2006-06-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
9398          
9399         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
9400           Fixed nasty memory leak
9401
9402 2006-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
9403
9404         * gst/tcp/gsttcp.c: (gst_tcp_read_buffer),
9405         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps):
9406           fix logging
9407
9408 2006-06-23  Jan Schmidt  <thaytan@mad.scientist.com>
9409
9410         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
9411         (gst_decode_bin_init), (gst_decode_bin_finalize), (add_fakesink),
9412         (remove_fakesink), (pad_probe), (gst_decode_bin_change_state):
9413         Protect remove_fakesink using a mutex, so that we don't try and
9414         remove the fakesink simultaneously from multiple threads.
9415
9416         When going from READY to PAUSED, restore the fakesink, so that
9417         it is there when decodebin gets reused.
9418
9419 2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>
9420
9421         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9422         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9423         * gst-libs/gst/rtp/gstbasertppayload.c:
9424         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
9425         * gst/tcp/gstmultifdsink.c:
9426         * gst/tcp/gsttcpclientsink.c:
9427         * gst/tcp/gsttcpclientsrc.c:
9428         * gst/tcp/gsttcpserversink.c:
9429         * gst/tcp/gsttcpserversrc.c:
9430         * gst/videorate/gstvideorate.c:
9431         * gst/videotestsrc/gstvideotestsrc.c:
9432         * sys/v4l/gstv4ljpegsrc.c:
9433         * sys/v4l/gstv4lmjpegsink.c:
9434         * sys/v4l/gstv4lsrc.c:
9435         * tests/examples/seek/scrubby.c:
9436         * tests/examples/seek/seek.c:
9437           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503).
9438
9439 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
9440
9441         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
9442           Second field in GEnumValue shouldn't be a description,
9443           but a stringified version of the enum value.
9444
9445 2006-06-22  Wim Taymans  <wim@fluendo.com>
9446
9447         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
9448         (gst_ximage_buffer_free), (gst_ximagesink_ximage_put),
9449         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
9450         Avoid type checking in buffer casts.
9451         Avoid caps copy in buffer_alloc when we can.
9452         Use pad_peer_accept.
9453
9454 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
9455
9456         * gst-libs/gst/tag/tag.h:
9457           Oops, make that 'Since: 0.10.9'.
9458
9459 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
9460
9461         * docs/libs/gst-plugins-base-libs-sections.txt:
9462         * gst-libs/gst/tag/tag.h:
9463         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
9464         (gst_tag_image_type_get_type):
9465           API: add GstTagImageType enum to describe images contained
9466           in image tags (#345641).
9467
9468 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
9469
9470         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
9471           Fix warnings with gst-inspect: "buffers-min" property
9472           should be of G_TYPE_INT and not G_TYPE_INT64. Also fix
9473           typo in property description.
9474
9475 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
9476
9477         Patch by: Cody Russell <bratsche at gnome org>
9478
9479         * gst/audioresample/gstaudioresample.c:
9480         (gst_audioresample_class_init):
9481         * gst/playback/gststreamselector.c:
9482         (gst_stream_selector_class_init):
9483         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
9484         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
9485         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
9486         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
9487         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
9488         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
9489         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
9490         * gst/videotestsrc/gstvideotestsrc.c:
9491         (gst_video_test_src_class_init):
9492         * gst/volume/gstvolume.c: (gst_volume_class_init):
9493           Avoid unnecessary class cast check in class_init
9494           functions (#337747).
9495
9496 2006-06-21  Tim-Philipp Müller  <tim at centricular dot net>
9497
9498         * ext/pango/gsttextoverlay.c: (gst_text_overlay_make_utf8),
9499         (gst_text_overlay_video_chain):
9500           g_markup_escape_text() REALLY doesn't like non-UTF8 input
9501           and doesn't validate its input either (and neither did
9502           textoverlay it seems). Let's do that then and fix #345206.
9503
9504 2006-06-19  Wim Taymans  <wim@fluendo.com>
9505
9506         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
9507         (gst_unit_type_get_type), (gst_multi_fd_sink_class_init),
9508         (gst_multi_fd_sink_init), (gst_multi_fd_sink_add_full),
9509         (gst_multi_fd_sink_add), (gst_multi_fd_sink_handle_client_read),
9510         (find_syncframe), (find_limits), (assign_value),
9511         (count_burst_unit), (gst_multi_fd_sink_new_client),
9512         (gst_multi_fd_sink_handle_client_write),
9513         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_render),
9514         (gst_multi_fd_sink_set_property), (gst_multi_fd_sink_get_property),
9515         (gst_multi_fd_sink_change_state):
9516         * gst/tcp/gstmultifdsink.h:
9517         Added shiny new burst-on-connect methods.
9518         Add properties to control the minimal amount of data queued.
9519         Small cleanups.
9520         API: bytes-min property
9521         API: time-min property
9522         API: buffers-min property
9523         API: burst-unit property
9524         API: burst-value property
9525         API: add-full signal
9526
9527         * gst/tcp/gsttcp-marshal.list:
9528         Added new marshaller code for the new signal.
9529
9530         * tests/check/elements/multifdsink.c: (GST_START_TEST),
9531         (multifdsink_suite):
9532         Added testcases for new burst methods.
9533
9534 2006-06-19  Edward Hervey  <edward@fluendo.com>
9535
9536         * ext/theora/theoradec.c: (clip_buffer), (theora_dec_push):
9537         Implement clipping for accurate seeking.
9538         Closes #345225
9539
9540 2006-06-19  Wim Taymans  <wim@fluendo.com>
9541
9542         Patch by: Philip Jaegenstedt <philip at lysator dot liu dot se>
9543
9544         * gst/videoscale/gstvideoscale.c: (gst_video_scale_prepare_size),
9545         (gst_video_scale_transform):
9546         Make videoscale support RGBA, ARGB, BGRA and ABGR. Fixes #345131
9547
9548 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
9549
9550         * configure.ac:
9551           Fix --disable-external (can't set conditionals conditionally,
9552           #343602).
9553
9554 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
9555
9556         * tests/check/elements/audioresample.c: (test_reuse),
9557         (audioresample_suite):
9558           Add test case for bug #342789 fixed below.
9559
9560 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
9561
9562         * gst/audioresample/gstaudioresample.c:
9563         (gst_audioresample_class_init), (gst_audioresample_init),
9564         (audioresample_start), (audioresample_stop),
9565         (gst_audioresample_set_property), (gst_audioresample_get_property):
9566           Implement GstBaseTransform::start and ::stop so that audioresample
9567           can clear its internal state properly and be reused instead of
9568           causing non-negotiated errors with playbin under some circumstances
9569           (#342789).
9570
9571         * tests/check/elements/audioresample.c: (setup_audioresample),
9572         (cleanup_audioresample):
9573           Need to set element state here so that ::start and ::stop are
9574           called.
9575
9576 2006-06-16  Wim Taymans  <wim@fluendo.com>
9577
9578         Patch by: Young-Ho Cha <ganadist at chollian dot net>
9579
9580         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_vids):
9581         Parse extra data better, apparently it's right behind
9582         the normal strf header size. Fixes #343500.
9583
9584 2006-06-16  Wim Taymans  <wim@fluendo.com>
9585
9586         * ext/alsa/gstalsasink.c: (set_hwparams):
9587         If we fail to set the buffer_time and period_time alsa
9588         parameters, post a warning and leave alsa select a 
9589         default instead of failing. Fixes #342085
9590
9591 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
9592
9593         * docs/libs/gst-plugins-base-libs-sections.txt:
9594         * gst-libs/gst/cdda/gstcddabasesrc.h:
9595           Remove GST_CDDA_TAG_TRACK_TAGS again, it is #ifdef 0'ed
9596           out in the header file and shouldn't be listed in the docs.
9597
9598         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
9599           Must dereference pointer to fourcc in the debug statement.
9600
9601 2006-06-16  Stefan Kost  <ensonic@users.sf.net>
9602
9603         * docs/libs/Makefile.am:
9604         * docs/libs/gst-plugins-base-libs-docs.sgml:
9605         * docs/libs/gst-plugins-base-libs-sections.txt:
9606         * docs/libs/gst-plugins-base-libs.types:
9607         add remaining symbols into correct setions
9608         
9609         * gst-libs/gst/audio/gstringbuffer.c:
9610         fix incomplete docs
9611         
9612         * gst-libs/gst/audio/gstringbuffer.h:
9613         comment out not yet implemented function
9614         
9615         
9616         * gst-libs/gst/floatcast/floatcast.h:
9617         * gst-libs/gst/netbuffer/gstnetbuffer.c:
9618         add short descriptions
9619         
9620         
9621         * gst-libs/gst/interfaces/propertyprobe.c:
9622         fix return value docs   
9623         
9624         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
9625         simplify debug logging
9626         
9627         * gst-libs/gst/riff/riff-read.h:
9628         sync function prototype and docs
9629         
9630         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
9631         remove left over symbol
9632
9633 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
9634
9635         * autogen.sh:
9636         * configure.ac:
9637         * docs/Makefile.am:
9638           Use GST_PLUGIN_DOCS macro in configure.ac, add
9639           --enable-plugin-docs default to autogen.sh and use
9640           ENABLE_PLUGIN_DOCS conditional in Makefile.am (#344039).
9641
9642 2006-06-15  Wim Taymans  <wim@fluendo.com>
9643
9644         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
9645         (gst_ogg_demux_activate_chain), (gst_ogg_demux_combine_flows),
9646         (gst_ogg_demux_loop):
9647         Combine GstFlowReturn from the source pads to give a
9648         meaningfull result to the upstream peer or to stop the
9649         processing task in case of errors.
9650
9651 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
9652
9653         * gst/playback/gststreaminfo.c: (cb_probe):
9654           Try GST_TAG_CODEC as fallback when extracting the
9655           codec name; more debug info.
9656
9657 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
9658
9659         * ext/ogg/Makefile.am:
9660         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
9661           Extract language tags from ogm subtitle streams, so that
9662           the subtitle menu choices are labelled correctly in
9663           Totem (fixes #344708).
9664
9665 2006-06-14  Wim Taymans  <wim@fluendo.com>
9666
9667         Patch by: Alessandro Decina <alessandro at nnva dot org>
9668
9669         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_clear),
9670         (gst_ogg_mux_release_pad), (gst_ogg_mux_get_headers),
9671         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_init_collectpads),
9672         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
9673         Fix various leaks. Fixes #343699.
9674         Add x-smoke mime type.
9675
9676 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
9677
9678         * gst-libs/gst/riff/riff-ids.h:
9679           Add IDs for 'bext' chunks (see #343837).
9680
9681 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
9682
9683         Patch by: Young-Ho Cha  <ganadist at chollian net>
9684
9685         * gst/subparse/samiparse.c: (sami_context_pop_state),
9686         (handle_start_font), (end_sami_element):
9687           Honour font face tags in SAMI subtitles (#344503).
9688
9689 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
9690
9691         * po/POTFILES.in:
9692           add missing files containing translatable strings
9693
9694 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
9695
9696         * docs/libs/tmpl/.cvsignore:
9697           we don't want those *.sgml files in CVS either
9698
9699 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
9700
9701         * docs/libs/.cvsignore:
9702         * tests/check/elements/.cvsignore:
9703         * tests/check/libs/.cvsignore:
9704           ignore more
9705
9706 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
9707
9708         * docs/libs/Makefile.am:
9709           also commiting the changed Makefile.am (added more libs to the
9710           doc-build)
9711
9712 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
9713
9714         * docs/libs/gst-plugins-base-libs-docs.sgml:
9715         * docs/libs/gst-plugins-base-libs-sections.txt:
9716         * docs/libs/gst-plugins-base-libs.types:
9717           first batch of reordering things, add index & hierarchy
9718
9719 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
9720
9721         * configure.ac:
9722           use GST_PKG_CHECK_MODULES, cleans up output
9723
9724 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
9725
9726         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
9727           Add support for burn:// URIs (#343385); const-ify things a bit,
9728           use G_N_ELEMENTS instead of hard-coded array size.
9729
9730 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
9731
9732         Patch by: Young-Ho Cha  <ganadist at chollian net>
9733
9734         * gst/subparse/samiparse.c: (fix_invalid_entities), (parse_sami):
9735           Fix up broken entities before passing them to libxml *sigh*.
9736           (#343303).
9737           
9738 2006-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
9739
9740         * configure.ac:
9741           back to TRUNK
9742
9743 === release 0.10.8 ===
9744
9745 2006-06-09  Thomas Vander Stichele <thomas at apestaart dot org>
9746
9747         * configure.ac:
9748           releasing 0.10.8, "Moar gij ziet mij nie"
9749
9750 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
9751
9752         * configure.ac:
9753         * po/af.po:
9754         * po/az.po:
9755         * po/cs.po:
9756         * po/en_GB.po:
9757         * po/hu.po:
9758         * po/it.po:
9759         * po/nb.po:
9760         * po/nl.po:
9761         * po/or.po:
9762         * po/sq.po:
9763         * po/sr.po:
9764         * po/sv.po:
9765         * po/uk.po:
9766         * po/vi.po:
9767         * win32/common/config.h:
9768           0.10.7.2 prerelease
9769
9770 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
9771
9772         * docs/libs/tmpl/gstaudio.sgml:
9773         * docs/libs/tmpl/gstcolorbalance.sgml:
9774         * docs/libs/tmpl/gstmixer.sgml:
9775         * docs/libs/tmpl/gstringbuffer.sgml:
9776         * docs/libs/tmpl/gsttuner.sgml:
9777         * docs/libs/tmpl/gstxoverlay.sgml:
9778         * gst-libs/gst/audio/audio.c:
9779         * gst-libs/gst/audio/gstringbuffer.c:
9780         * gst-libs/gst/interfaces/colorbalance.c:
9781         * gst-libs/gst/interfaces/mixer.c:
9782         * gst-libs/gst/interfaces/tuner.c:
9783         * gst-libs/gst/interfaces/xoverlay.c:
9784           move last template doc snippets to source code and delete them
9785
9786 2006-06-06  Michael Smith  <msmith@fluendo.com>
9787
9788         * ext/theora/theoraparse.c: (theora_parse_drain_queue_prematurely),
9789         (theora_parse_drain_queue):
9790           Mark DELTA_UNIT on non-keyframes.
9791
9792 2006-06-03  Jan Schmidt  <thaytan@mad.scientist.com>
9793
9794         * gst-libs/gst/audio/gstbaseaudiosink.c:
9795         (gst_base_audio_sink_class_init), (gst_base_audio_sink_setcaps):
9796         * gst-libs/gst/audio/gstbaseaudiosink.h:
9797         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps),
9798         (gst_ring_buffer_samples_done):
9799         * gst-libs/gst/audio/gstringbuffer.h:
9800         Document better the fact that latency_time and buffer_time are values
9801         stored in microseconds, and not the usual GStreamer nanoseconds.
9802         Change the variables (compatibly) that store them from GstClockTime 
9803         to guint64 to make it more clear that they're not storing clock times.
9804         Also, remove the bogus property description that says the user can
9805         specify -1 to get the default value, since that's never been the case.
9806
9807         When computing the default segment size for the ring buffer, make it
9808         an integer number of samples.
9809
9810         When the sub-class indicates a delay greater than the number of
9811         samples we've written return 0 from the audio sink get_time method.
9812
9813 2006-06-02  Michael Smith  <msmith@fluendo.com>
9814
9815         * tests/check/elements/audioconvert.c: (set_channel_positions),
9816         (get_float_mc_caps), (get_int_mc_caps):
9817         * tests/check/elements/audioresample.c:
9818         * tests/check/elements/audiotestsrc.c: (GST_START_TEST):
9819         * tests/check/elements/videorate.c:
9820         * tests/check/elements/videotestsrc.c: (GST_START_TEST):
9821         * tests/check/elements/volume.c:
9822         * tests/check/elements/vorbisdec.c:
9823         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
9824           Don't busy-wait in tests; this was causing test timeouts very
9825           frequently when running under valgrind.
9826
9827 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
9828
9829         * gst/tcp/README:
9830         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_init),
9831         (gst_multi_fd_sink_remove_client_link),
9832         (gst_multi_fd_sink_client_queue_caps),
9833         (gst_multi_fd_sink_client_queue_buffer),
9834         (gst_multi_fd_sink_handle_client_write),
9835         (gst_multi_fd_sink_render):
9836         * gst/tcp/gstmultifdsink.h:
9837           make multifdsink properly deal with streamheader:
9838           - streamheader is taken from caps
9839           - buffers marked with IN_CAPS are not sent
9840           - streamheaders are sent, on connection, from the caps of the
9841             buffer where the client gets positioned to
9842           - further streamheader changes are done every time the client
9843             will receive a buffer with different caps
9844         * tests/check/elements/multifdsink.c: (GST_START_TEST),
9845         (gst_multifdsink_create_streamheader):
9846           add tests for this
9847
9848 2006-06-02  Michael Smith  <msmith@fluendo.com>
9849
9850         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
9851           Reinstate limit on channel count. Vorbis does not define the meaning
9852           of > 6 channels, so they're just independent channels. Gstreamer
9853           currently has no mechanism to represent N independent channels.
9854
9855 2006-06-02  Michael Smith  <msmith@fluendo.com>
9856
9857         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
9858           Don't arbitrarily restrict channel counts and rate in vorbis.
9859           In terms of effects likely on real-world files, this fixes 96kHz
9860           playback of vorbis.
9861
9862 2006-06-02  Michael Smith  <msmith@fluendo.com>
9863
9864         * gst/audioconvert/audioconvert.c: (float):
9865           More correct float->int conversion.
9866
9867 2006-06-02  Michael Smith  <msmith@fluendo.com>
9868
9869         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_perform_seek):
9870           Don't accidently send GST_CLOCK_TIME_NONE as a new segment start
9871           value. Fixes g-critical on trying to play back ogg containing
9872           unknown codec.
9873
9874 2006-06-02  Wim Taymans  <wim@fluendo.com>
9875
9876         * gst/playback/gstplaybasebin.c: (group_create), (group_commit),
9877         (setup_source):
9878         * gst/playback/gstplaybasebin.h:
9879         Make the subtitle detection work from any thread so we don't
9880         deadlock. Fixes #343397.
9881
9882 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
9883
9884         * gst/volume/Makefile.am:
9885           Seriously, it's not *that* hard to get compilation right.  Even
9886           a drunk can do it ! Add LIBOIL CFLAGS and LIBS
9887
9888 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
9889
9890         * gst/volume/gstvolume.c: (volume_choose_func),
9891         (volume_update_real_volume), (gst_volume_class_init),
9892         (gst_volume_init), (volume_process_float), (volume_process_int16),
9893         (volume_process_int16_clamp), (volume_set_caps),
9894         (volume_transform_ip), (plugin_init):
9895         * gst/volume/gstvolume.h:
9896         rewrite the passthrough check, split _int16 and _int16_clamp, fix
9897         another property desc., remove unused param from process function
9898         
9899         * tests/check/elements/volume.c: (volume_suite):
9900         reactivate the passthrough test
9901
9902 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
9903
9904         * ext/alsa/gstalsamixerelement.h:
9905         * ext/alsa/gstalsamixeroptions.h:
9906         * ext/alsa/gstalsamixertrack.h:
9907         * ext/gnomevfs/gstgnomevfssink.h:
9908         * ext/gnomevfs/gstgnomevfssrc.h:
9909         * ext/theora/gsttheoradec.h:
9910         * ext/theora/gsttheoraenc.h:
9911         * ext/theora/gsttheoraparse.h:
9912         * ext/vorbis/vorbisparse.h:
9913         * gst-libs/gst/audio/gstaudioclock.h:
9914         * gst-libs/gst/audio/gstaudiofilter.h:
9915         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
9916         * gst/audioconvert/gstaudioconvert.h:
9917         * gst/audioresample/gstaudioresample.h:
9918         * gst/audiotestsrc/gstaudiotestsrc.h:
9919         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
9920         * gst/playback/gststreamselector.h:
9921         * gst/tcp/gstmultifdsink.h:
9922         * gst/tcp/gsttcpclientsink.h:
9923         * gst/tcp/gsttcpclientsrc.h:
9924         * gst/tcp/gsttcpserversink.h:
9925         * gst/tcp/gsttcpserversrc.h:
9926         * gst/videorate/gstvideorate.h:
9927         * gst/videoscale/gstvideoscale.h:
9928         * gst/videotestsrc/gstvideotestsrc.h:
9929         * gst/volume/gstvolume.h:
9930         * sys/v4l/gstv4ljpegsrc.h:
9931         * sys/v4l/gstv4lmjpegsink.h:
9932         * sys/v4l/gstv4lmjpegsrc.h:
9933         * sys/v4l/gstv4lsrc.h:
9934         * sys/ximage/ximagesink.h:
9935         * sys/xvimage/xvimagesink.h:
9936         * tests/old/testsuite/alsa/sinesrc.h:
9937         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
9938
9939 2006-05-31  Wim Taymans  <wim@fluendo.com>
9940
9941         * ext/libvisual/visual.c: (gst_visual_reset),
9942         (gst_visual_sink_setcaps), (gst_visual_sink_event),
9943         (gst_visual_src_event), (get_buffer), (gst_visual_chain):
9944         Handle DISCONT.
9945         Use running time before doing QoS.
9946         Handle mono too.
9947
9948 2006-05-31  Thomas Vander Stichele  <thomas at apestaart dot org>
9949
9950         * docs/libs/Makefile.am:
9951           set a magic variable to indicate we know the docs are incomplete
9952
9953 2006-05-30  Sebastien Moutte  <sebastien@moutte.net>
9954
9955         * win32/common/libgstvideo.def:
9956           export gst_video_calculate_display_ratio
9957         * win32/vs6/libgstvideoscale.dsp:
9958           add link to libgstvideo-0.10.lib
9959
9960 2006-05-30  Tim-Philipp Müller  <tim at centricular dot net>
9961
9962         * gst/playback/gstplaybasebin.c: (gen_source_element):
9963           Throw a more comprehensible error for rtsp:// URIs (rather
9964           than erroring out with a negotiation error later on) until
9965           we fix playbin to handle rtspsrc etc.
9966
9967 2006-05-30  Wim Taymans  <wim@fluendo.com>
9968
9969         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
9970         (gst_text_overlay_text_event):
9971         Added some FIXMEs.
9972
9973 2006-05-30  Wim Taymans  <wim@fluendo.com>
9974
9975         * gst/adder/gstadder.c: (gst_adder_class_init), (gst_adder_init),
9976         (gst_adder_request_new_pad), (gst_adder_release_pad):
9977         * gst/adder/gstadder.h:
9978         Implement release_request_pad.
9979         Make padcounter atomic.
9980
9981         * tests/check/elements/adder.c: (GST_START_TEST), (adder_suite):
9982         Added check for release_pad in adder.
9983
9984 2006-05-30  Wim Taymans  <wim@fluendo.com>
9985
9986         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream):
9987         Fix build again.
9988
9989 2006-05-30  Thomas Vander Stichele  <thomas at apestaart dot org>
9990
9991         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
9992         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
9993         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
9994         (gst_ogg_pad_submit_page), (gst_ogg_chain_new_stream),
9995         (gst_ogg_demux_seek), (gst_ogg_demux_get_data),
9996         (gst_ogg_demux_get_next_page), (gst_ogg_demux_do_seek),
9997         (gst_ogg_demux_bisect_forward_serialno),
9998         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_chains),
9999         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
10000           add more debugging
10001           clean up printf formats for granulepos and serialno
10002
10003 2006-05-30  Michael Smith  <msmith@fluendo.com>
10004
10005         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
10006         (gst_vorbis_enc_class_init), (gst_vorbis_enc_dispose),
10007         (gst_vorbis_enc_generate_sink_caps), (gst_vorbis_enc_sink_getcaps),
10008         (gst_vorbis_enc_init), (gst_vorbis_enc_buffer_from_header_packet),
10009         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
10010         * ext/vorbis/vorbisenc.h:
10011           Multi-channel caps negotiation, so we can do proper multichannel
10012           vorbis encoding, negotiated through audioconvert.
10013
10014 2006-05-30  Wim Taymans  <wim@fluendo.com>
10015
10016         * tests/check/elements/adder.c: (test_event_message_received),
10017         (test_play_twice_message_received), (GST_START_TEST),
10018         (adder_suite):
10019         Added check to show that #339935 is fixed with ongoing
10020         adder and collectpads fixes.
10021
10022 2006-05-29  Wim Taymans  <wim@fluendo.com>
10023
10024         * gst/adder/gstadder.c: (gst_adder_request_new_pad):
10025         Don't leak pad name.
10026
10027 2006-05-29  Wim Taymans  <wim@fluendo.com>
10028
10029         * gst/adder/gstadder.c: (gst_adder_query_duration),
10030         (forward_event_func), (forward_event), (gst_adder_src_event):
10031         Fix adder seeking.
10032         Make query/seeking code threadsafe.
10033
10034         * tests/check/Makefile.am:
10035         * tests/check/elements/adder.c: (test_event_message_received),
10036         (GST_START_TEST), (test_play_twice_message_received):
10037         Fix adder test case.
10038
10039 2006-05-29  Tim-Philipp Müller  <tim at centricular dot net>
10040
10041         Patch by: Young-Ho Cha  <ganadist at chollian net>
10042
10043         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
10044         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
10045         (set_encoding_element), (decodebin_element_added_cb),
10046         (decodebin_element_removed_cb), (setup_subtitle), (setup_source),
10047         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
10048         * gst/playback/gstplaybasebin.h:
10049           Add 'subtitle-encoding' property to playbin, so applications can
10050           force a subtitle encoding for non-UTF8 subtitles (#342268).
10051
10052         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init),
10053         (gst_sub_parse_set_property):
10054           Rename recently-added 'encoding' property to 'subtitle-encoding'
10055           (so it can be proxied by playbin/decodebin in a generic way
10056           with less danger of false positives).
10057
10058 2006-05-29  Michael Smith  <msmith@fluendo.com>
10059
10060         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
10061         (append_with_other_format), (set_structure_widths),
10062         (gst_audio_convert_transform_caps):
10063           Patch from #341562: give more specific audio caps in get_caps, so
10064           that basetransform  can make better decisions on what caps to
10065           negotiate.
10066
10067 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
10068
10069         * tests/check/elements/volume.c:
10070         make it compile again
10071
10072 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
10073
10074         * tests/check/elements/volume.c: (volume_suite):
10075         disable test until #343196 gets resolved
10076
10077 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
10078
10079         * gst/adder/gstadder.c: (gst_adder_get_type):
10080         Make it easier to copy&paste
10081         
10082         * gst/volume/Makefile.am:
10083         * gst/volume/gstvolume.c: (volume_update_real_volume),
10084         (gst_volume_set_volume), (gst_volume_set_mute),
10085         (gst_volume_class_init), (volume_process_int16), (volume_set_caps),
10086         (volume_transform_ip), (volume_update_mute),
10087         (volume_update_volume):
10088         * gst/volume/gstvolume.h:
10089         Add own debug category, move duplicate code to helper function, fix
10090         property texts, add more comments and prepare ffor liboil-goodness
10091         
10092         * tests/check/Makefile.am:
10093         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
10094         add test for mute and passtrough case, be a bit more verbose to track
10095         failure
10096         
10097         * tests/check/generic/states.c: (GST_START_TEST):
10098         catch elements that fail to instantiate
10099
10100 2006-05-28  Edward Hervey  <edward@fluendo.com>
10101
10102         * tests/check/pipelines/simple-launch-lines.c:
10103         * tests/check/pipelines/theoraenc.c:
10104         * tests/check/pipelines/vorbisenc.c:
10105         Comment out tests using parse_launch() if core was built without
10106         parsing capabilities.
10107
10108 2006-05-27  Edward Hervey  <edward@fluendo.com>
10109
10110         * tests/check/Makefile.am:
10111         Extra bonus points for whoever explains to ensonic that you are meant
10112         to test unit tests thoroughly before commiting them, especially if
10113         you know it's going to break.
10114         De-activated element/adder tests.
10115
10116 2006-05-27  Edward Hervey  <edward@fluendo.com>
10117
10118         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10119         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps):
10120         Marking caps conversion issues as GST_WARNING is way too verbose,
10121         Moving them to GST_LOG.
10122
10123 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
10124
10125         * README:
10126           Replace current README (containing the release notes from
10127           some 0.9.x version) with a proper README taken from the core.
10128
10129 2006-05-26  Wim Taymans  <wim@fluendo.com>
10130
10131         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
10132         (vorbis_dec_src_event), (vorbis_dec_sink_event), (vorbis_do_clip),
10133         (vorbis_dec_push), (vorbis_handle_data_packet), (vorbis_dec_chain),
10134         (vorbis_dec_change_state):
10135         Small cleanups.
10136         Add some FIXMEs
10137         Clip output samples to segment boundaries.
10138
10139 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
10140
10141         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
10142         (gst_ximagesink_xcontext_get), (gst_ximagesink_show_frame):
10143         Improve the errors produced on bad output, including some human
10144         readable description strings.
10145         Handle the (theoretical for ximagesink) case where the XServer 
10146         has a different idea about the size required for a particular 
10147         frame and gives us too small a memory allocation.
10148
10149 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
10150
10151         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
10152         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
10153         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
10154         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
10155         Improve the errors produced on bad output, including some human 
10156         readable description strings.
10157         Handle RGB Xv formats properly by transforming them into our 
10158         big-endian caps description.
10159         Use gst_caps_truncate to ensure that we never try and choose a
10160         non-fixed caps in buffer_alloc.
10161         Handle the case where the XServer has a different idea about the size
10162         required for a particular frame and gives us too small a memory
10163         allocation.
10164         Use -1 to indicate 'no image format', because 0 is a valid XServer
10165         image format number.
10166         Put RGB Xv formats at the end of the caps, so that we always prefer
10167         YUV format frames.
10168         Iterate the available Xv Encodings to determine the maximum width and
10169         height, and then return that in our caps.
10170         (Closes #315312, #337544)
10171
10172 2006-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
10173
10174         * gst/playback/gstdecodebin.c: (remove_fakesink), (pad_probe):
10175         When there is only one unfinished pad and it receives an event that
10176         doesn't match our requirements, we need to set alldone=FALSE so that
10177         the fakesink is not removed yet.
10178
10179 2006-05-25  Tim-Philipp Müller  <tim at centricular dot net>
10180
10181         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
10182           Use gst_type_find_helper_for_buffer() to find the type
10183           of stream from the first packet.
10184
10185         * configure.ac:
10186           Bump requirements to core CVS (needed for vorbis
10187           typefinding to work).
10188
10189 2006-05-24  Edward Hervey  <edward@fluendo.com>
10190
10191         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): 
10192         Added the 'prfl' atom type which MQV (no, it's not a typo) files
10193         contain.  Else they play perfectly fine with qtdemux.
10194
10195 2006-05-23  Stefan Kost  <ensonic@users.sf.net>
10196
10197         * ext/theora/theoradec.c:
10198         * ext/theora/theoraenc.c:
10199         * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
10200         * gst/audiorate/gstaudiorate.c:
10201           make more debug catagories static
10202         
10203         * tests/check/Makefile.am:
10204         * tests/check/elements/adder.c: (message_received),
10205         (test_event_message_received), (GST_START_TEST),
10206         (test_play_twice_message_received), (adder_suite):
10207           added test case for using element twice, extra bonus points for anyone
10208           who can make these test run reliably
10209
10210 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
10211
10212         * ext/theora/theoradec.c: (theora_dec_chain):
10213           Make work with time-stamped input buffers that do not
10214           have a granulepos in BUFFER_OFFSET_END (like theora
10215           buffers coming from matroskademux). Fixes #342448.
10216
10217 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
10218
10219         Patch by: Peter Kjellerstedt  <pkj at axis com>
10220
10221         * gst/tcp/Makefile.am:
10222           fdstresstest doesn't need Gtk+, fix compilation if 
10223           gtk is not available (#342566).
10224
10225 2006-05-19 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
10226          
10227         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
10228           80 line columns
10229           Removed redundant floor()
10230
10231 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
10232
10233         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
10234           On second thought, just skip JUNK chunks automatically, so
10235           the caller doesn't have to handle this. Fixes #342345.
10236           Also, return GST_FLOW_UNEXPECTED if we get a short read,
10237           not GST_FLOW_ERROR.
10238
10239 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
10240
10241         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
10242           Don't bail out on JUNK chunks with a size of 0 (would try to
10243           pull_range 0 bytes before, which sources don't like too much).
10244           See #342345.
10245
10246 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
10247
10248         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
10249         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
10250         Use the gstutil scaling function to preserve 64 bits while calculating
10251         output width and height from the display-aspect-ratio. (A continuation
10252         of #341542)
10253
10254 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
10255
10256         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
10257         (gst_xvimagesink_buffer_alloc):
10258         * sys/xvimage/xvimagesink.h:
10259         When performing buffer allocations, remember the caps and image format
10260         we return so that if the same caps are asked for next time we can
10261         return them immediately without doing any caps intersections.
10262
10263 2006-05-18 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
10264          
10265         * gst-libs/gst/rtp/README:
10266           Some new documentation
10267         * gst-libs/gst/rtp/gstrtpbuffer.h:       
10268           Added GST_RTP_PAYLOAD_DYNAMIC_STRING for use by children       
10269         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
10270         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:     
10271           New RTP audio base payloader class. Supports frame or sample based
10272           codecs.  Not enabled in Makefile.am until approved.
10273
10274 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
10275
10276         * tests/check/elements/alsa.c: (test_device_property_probe):
10277           Fix test case: don't try to free NULL GValueArray when there
10278           are no devices.
10279
10280 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
10281
10282         * tests/check/Makefile.am:
10283         * tests/check/elements/alsa.c: (test_device_property_probe),
10284         (alsa_suite), (main):
10285           Add simple test that runs a device property probe on alsasrc,
10286           alsasink and alsamixer. Disable valgrind check for now (too
10287           many leaks in libasound, and valgrind ignored my suppressions
10288           additions).
10289
10290 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
10291
10292         * ext/alsa/gstalsadeviceprobe.c: (gst_alsa_get_device_list),
10293         (gst_alsa_device_property_probe_probe_property),
10294         (gst_alsa_device_property_probe_needs_probe),
10295         (gst_alsa_device_property_probe_get_values),
10296         (gst_alsa_type_add_device_property_probe_interface):
10297         * ext/alsa/gstalsadeviceprobe.h:
10298         * ext/alsa/gstalsamixerelement.c:
10299         (gst_alsa_mixer_element_init_interfaces):
10300         * ext/alsa/gstalsamixerelement.h:
10301           Clean up and simplify alsa device probing. Make it actually work
10302           for multiple classes. Don't cache results any longer.
10303
10304         * ext/alsa/gstalsasink.c: (gst_alsasink_init_interfaces),
10305         (gst_alsasink_init):
10306         * ext/alsa/gstalsasrc.c: (gst_alsasrc_dispose),
10307         (gst_alsasrc_interface_supported), (gst_implements_interface_init),
10308         (gst_alsasrc_init_interfaces), (gst_alsasrc_set_property):
10309           Make alsasink and alsasrc implement the GstPropertyProbe interface
10310           for device probing (#342181).
10311           Patch by: Martin Szulecki  <gnomebugzilla at sukimashita com>
10312
10313 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
10314
10315         * gst/subparse/samiparse.c: (handle_start_font):
10316           Don't ignore return value of strtol (++compiler_happiness).
10317
10318 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
10319
10320         Patch by: Young-Ho Cha  <ganadist chollian net>
10321
10322         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
10323         (gst_sub_parse_class_init), (gst_sub_parse_init),
10324         (gst_sub_parse_set_property), (gst_sub_parse_get_property),
10325         (convert_encoding):
10326         * gst/subparse/gstsubparse.h:
10327           Add 'encoding' property (#341681).
10328
10329         * gst/subparse/samiparse.c: (characters_sami):
10330           Output is pango markup, so we need to escape text
10331           between tags (#342143).
10332
10333 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
10334
10335         * gst-libs/gst/audio/multichannel.c:
10336         (gst_audio_check_channel_positions):
10337           It's okay to have caps with channels=1 and a channel position
10338           different from GST_AUDIO_CHANNEL_POSITION_FRONT_MONO
10339           (deinterleavers might want to keep the position in the caps,
10340           so that they can be re-interleaved again properly later).
10341           Leave check for unexpected 2-channel layouts intact for now.
10342
10343 2006-05-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10344
10345         * gst/tcp/gsttcp.c: (gst_tcp_socket_read):
10346         Return GST_FLOW_UNEXPECTED when we have an eos on the socket so
10347         basesrc can do its job correctly.
10348
10349 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
10350
10351         * ext/alsa/Makefile.am:
10352         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
10353         (gst_alsa_detect_formats), (get_channel_free_structure),
10354         (caps_add_channel_configuration), (gst_alsa_detect_channels),
10355         (gst_alsa_probe_supported_formats):
10356         * ext/alsa/gstalsa.h:
10357         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
10358           Refactor and improve caps probing code: probe signedness
10359           when we probe the supported formats/widths; set endianness
10360           to the one we actually probed for (ie. cpu endianness).
10361           
10362         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (gst_alsasrc_getcaps),
10363         (gst_alsasrc_close):
10364         * ext/alsa/gstalsasrc.h:
10365           Implement caps probing for alsasrc.
10366
10367 2006-05-15  Wim Taymans  <wim@fluendo.com>
10368
10369         * ext/theora/theoradec.c: (gst_theora_dec_reset),
10370         (theora_dec_src_query), (theora_dec_src_event),
10371         (theora_dec_sink_event), (theora_handle_comment_packet),
10372         (theora_handle_data_packet), (theora_dec_change_state):
10373         Cleanups, add some G_LIKELY.
10374         Use segment helpers instead of our own wrong code.
10375         Clear queued buffers on seek and READY.
10376
10377         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
10378         (vorbis_dec_convert), (vorbis_dec_src_query),
10379         (vorbis_dec_src_event), (vorbis_dec_sink_event),
10380         (vorbis_handle_comment_packet), (vorbis_dec_push),
10381         (vorbis_handle_data_packet), (vorbis_dec_chain),
10382         (vorbis_dec_change_state):
10383         * ext/vorbis/vorbisdec.h:
10384         Remove old useless packetno variable.
10385         Do position query properly.
10386         Add some G_LIKELY.
10387         Do cleanup of queued buffers in new helper function
10388         and use it.
10389
10390 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
10391
10392         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
10393           Query supported sample rates. Fixes #341732.
10394
10395 2006-05-15  Julien MOUTTE  <julien@moutte.net>
10396
10397         * gst/playback/gstdecodebin.c: (cleanup_decodebin),
10398         (gst_decode_bin_change_state): Make decodebin reusable
10399         when going from PAUSE_TO_READY and then back to PAUSED.
10400         Fixes #331678.
10401
10402 2006-05-15  Wim Taymans  <wim@fluendo.com>
10403
10404         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types),
10405         (vorbis_dec_convert), (vorbis_dec_src_query),
10406         (vorbis_dec_sink_query), (vorbis_dec_src_event),
10407         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
10408         (vorbis_dec_clean_queued), (vorbis_dec_push),
10409         (vorbis_handle_data_packet), (vorbis_dec_change_state):
10410         Cleanups. Use refcounting and DEBUG_OBJECT.
10411         Reset segment on flush, use code methods instead of our
10412         own wrong version.
10413         Fix potential memleak.
10414
10415 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
10416
10417         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
10418         (gst_alsasink_init):
10419         * ext/alsa/gstalsasink.h:
10420           Don't leak allocated snd_output_t structure if there's
10421           more than one alsasink instance at a time (#341873).
10422           Also fix GObject macros in header file.
10423           
10424 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
10425
10426         * gst/subparse/gstsubparse.c:
10427         (gst_sub_parse_data_format_autodetect):
10428           Don't use libxml functions in the typefinding code.
10429
10430 2006-05-15  Wim Taymans  <wim@fluendo.com>
10431
10432         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
10433         Fix seeking performance in the case where a non-header 
10434         packet has a 0 granulepos (busted theora case). 
10435         Fixes #341719
10436         (nvdr: thanks Wim for not mentioning who spotted and fixed it in
10437          the first place, you limelight stealer you)
10438
10439 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
10440
10441         * gst/subparse/gstsubparse.c:
10442         (gst_sub_parse_data_format_autodetect):
10443           Improve SAMI typefinding: handle case where there are
10444           whitespaces or newlines in front of the first <SAMI>
10445           tag (#169936).
10446
10447 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
10448
10449         * configure.ac:
10450           Build video4linux plugin even if there's no XVIDEO, just
10451           without implementing the GstXOverlay interface (#334002).
10452          
10453 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
10454
10455         * configure.ac:
10456         * ext/libvisual/visual.c: (gst_visual_actor_plugin_is_gl),
10457         (plugin_init):
10458           Add tentative support for libvisual-0.4 (#336881).
10459
10460 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
10461
10462         Patch by: Young-Ho Cha <ganadist at chollian net>
10463
10464         * gst/subparse/samiparse.c: (handle_start_font):
10465           Need to map "silver" colour explicitly (#169936).
10466
10467 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
10468
10469         Patch by: Young-Ho Cha  <ganadist at chollian net>
10470
10471         * gst/subparse/Makefile.am:
10472         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
10473         (parser_state_dispose), (gst_sub_parse_data_format_autodetect),
10474         (gst_sub_parse_format_autodetect), (feed_textbuf),
10475         (gst_subparse_type_find), (plugin_init):
10476         * gst/subparse/gstsubparse.h:
10477         * gst/subparse/samiparse.c:
10478         * gst/subparse/samiparse.h:
10479           Add support for SAMI subtitles (#169936).
10480
10481 2006-05-14  Michael Smith  <msmith@fluendo.com>
10482
10483         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
10484           Fix #341696: crash when mixing L+R+C to mono or stereo.
10485         * tests/check/Makefile.am:
10486         * tests/check/elements/audioconvert.c: (set_channel_positions),
10487         (get_float_mc_caps), (get_int_mc_caps), (GST_START_TEST),
10488         (audioconvert_suite):
10489           Add test for the above, including some generic framework bits for
10490           testing multichannel things.
10491
10492 === release 0.10.7 ===
10493
10494 2006-05-14  Jan Schmidt <thaytan@mad.scientist.com>
10495
10496         * configure.ac:
10497           releasing 0.10.7, "Leave the gun"
10498
10499 2006-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
10500
10501         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
10502         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
10503         Fix the build.
10504
10505 2006-05-12  Jan Schmidt  <thaytan@mad.scientist.com>
10506
10507         * docs/libs/gst-plugins-base-libs-docs.sgml:
10508         * docs/libs/gst-plugins-base-libs-sections.txt:
10509         * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio):
10510         * gst-libs/gst/video/video.h:
10511         * gst/videoscale/Makefile.am:
10512         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
10513         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
10514         * tests/check/Makefile.am:
10515         * tests/check/libs/video.c: (GST_START_TEST), (video_suite),
10516         (main):
10517           Fix integer overflow problem with pixel-aspect-ratio calculations
10518           in videoscale and xvimagesink (#341542)
10519
10520 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
10521
10522         * gst-libs/gst/tag/gstid3tag.c:
10523           Map GST_IMAGE_TAG to and from ID2v2 APIC frames (#341557).
10524
10525 2006-05-12  Sebastien Moutte  <sebastien@moutte.net>
10526
10527         * win32/MANIFEST:
10528           update win32 files listing
10529
10530 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
10531
10532         patch by: Sjoerd Simons (sjoerd@luon.net)
10533
10534         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
10535         (group_create), (group_destroy), (add_stream),
10536         (gst_play_base_bin_get_property),
10537         (gst_play_base_bin_get_streaminfo_value_array):
10538         * gst/playback/gstplaybasebin.h:
10539           API: GstPlayBaseBin::stream-info-value-array property
10540           use a more bindings-friendly way of exposing streaminfo
10541           using a GValueArray.  Tested in ipython.
10542           Closes #341114
10543
10544 2006-05-11  Wim Taymans  <wim@fluendo.com>
10545
10546         * gst/playback/gstdecodebin.c: (try_to_link_1), (queue_enlarge),
10547         (queue_underrun_cb), (queue_filled_cb):
10548         Also catch queue underruns but don't do anything yet.
10549         Refactor and comment queue enlarging code a bit.
10550
10551         * gst/playback/gstplaybasebin.c: (queue_overrun),
10552         (queue_threshold_reached), (queue_out_of_data),
10553         (gen_preroll_element):
10554         If a queue over/underruns check that we don't create nasty
10555         deadlocks when the min-threshold is not reached but the
10556         max-bytes is. In those cases disable max-bytes when we
10557         know that the queue is fed timed data.
10558         Add more comments.
10559
10560 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
10561
10562         * gst/playback/gstplaybin.c: (gen_audio_element):
10563           Make playbin automatically plug an 'audioresample'
10564           element before the audio sink as well. This solves
10565           problems with sinks that only accept a very specific
10566           sample rate, like esdsink (e.g. #340379).
10567
10568 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
10569
10570         * gst/playback/gstplaybasebin.c: (gen_source_element):
10571           Make http sources send special headers so that we receive
10572           icecast metadata if the http stream is an icecast stream
10573           (otherwise the server will just ignore them). This also
10574           means that from now on users will need the 'icydemux'
10575           element from gst-plugins-good installed if they want to
10576           listen to icecast radio streams. (#341432, #333657).
10577
10578 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
10579
10580         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_remove_client_link),
10581         (gst_multi_fd_sink_new_client), (gst_multi_fd_sink_stop):
10582           remove stupid example from docs - it should come with a simple
10583           C program instead.
10584           Clean up/fix docs
10585         * tests/check/elements/multifdsink.c: (wait_bytes_served),
10586         (fail_if_can_read), (GST_START_TEST),
10587         (gst_multifdsink_create_streamheader), (multifdsink_suite):
10588           add a test for changing streamheader which exposes a bug in
10589           multifdsink
10590
10591 2006-05-11  Michael Smith  <msmith@fluendo.com>
10592
10593         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
10594         (gst_gnome_vfs_src_received_headers_callback):
10595         * ext/gnomevfs/gstgnomevfssrc.h:
10596           Don't set icy-caps unless we have a sane interval value. Move
10597           interval to a local variable; we never use it outside this function.
10598
10599 2006-05-11  Wim Taymans  <wim@fluendo.com>
10600
10601         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
10602         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
10603         Register special buffer types along with the objects so
10604         that they are not registered at runtime from N different
10605         streaming threads since they are not threadsafe.
10606
10607 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
10608
10609         * tests/check/elements/multifdsink.c: (wait_bytes_served),
10610         (GST_START_TEST), (fail_unless_read), (multifdsink_suite):
10611           add two more tests, one doing streamheader
10612
10613 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
10614
10615         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_stop):
10616           clean up the bufqueue when shutting down
10617         * tests/check/Makefile.am:
10618         * tests/check/elements/multifdsink.c: (setup_multifdsink),
10619         (cleanup_multifdsink), (GST_START_TEST), (multifdsink_suite),
10620         (main):
10621           add a test for the leak that was just fixed
10622
10623 2006-05-10  Wim Taymans  <wim@fluendo.com>
10624
10625         * gst/adder/gstadder.c: (gst_adder_setcaps),
10626         (gst_adder_query_duration), (gst_adder_query), (forward_event),
10627         (gst_adder_src_event), (gst_adder_sink_event),
10628         (gst_adder_class_init), (gst_adder_finalize),
10629         (gst_adder_request_new_pad), (gst_adder_collected):
10630         * gst/adder/gstadder.h:
10631         Updated some docs. Added comments and FIXMEs all over the place.
10632         Improve debugging info.
10633         Fix leak on finalize by not calling the parent.
10634         Implement duration query.
10635         Make event forwarding threadsafe.
10636         Correctly send NEWSEGMENT at start and after flush.
10637         Handle EOS correctly.
10638         Post error when not negotiated.
10639
10640         * tests/check/elements/adder.c: (GST_START_TEST):
10641         Added FIXME in the test.
10642
10643 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
10644
10645         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
10646         (gst_text_overlay_halign_get_type),
10647         (gst_text_overlay_wrap_mode_get_type):
10648         * ext/theora/theoradec.c: (theora_handle_type_packet),
10649         (theora_handle_data_packet):
10650         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
10651         (theora_enc_sink_setcaps), (theora_enc_chain):
10652         * gst-libs/gst/cdda/gstcddabasesrc.c:
10653         (gst_cdda_base_src_mode_get_type):
10654         * gst/audiotestsrc/gstaudiotestsrc.c:
10655         (gst_audiostestsrc_wave_get_type):
10656         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
10657         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
10658         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
10659         (gst_sync_method_get_type), (gst_unit_type_get_type),
10660         (gst_client_status_get_type):
10661         * gst/videoscale/gstvideoscale.c:
10662         (gst_video_scale_method_get_type):
10663         * gst/videotestsrc/gstvideotestsrc.c:
10664         (gst_video_test_src_pattern_get_type):
10665         * gst/videotestsrc/videotestsrc.c: (paint_setup_I420),
10666         (paint_setup_YV12), (paint_setup_YUY2), (paint_setup_UYVY),
10667         (paint_setup_YVYU), (paint_setup_IYU2), (paint_setup_Y41B),
10668         (paint_setup_Y42B), (paint_setup_Y800), (paint_setup_YVU9),
10669         (paint_setup_YUV9), (paint_setup_RGB888), (paint_setup_BGR888),
10670         (paint_setup_RGB565), (paint_setup_xRGB1555):
10671           Const-ify GEnumValue and GFlagsValue arrays. Use
10672           GST_ROUND_UP_* macros instead of home-made ones.
10673
10674 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
10675
10676         * configure.ac:
10677           Require core CVS for the new newsegment stuff.
10678
10679 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
10680
10681         Patch by: Sjoerd Simons  <sjoerd at luon net>
10682
10683         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type):
10684           Register nick for enum value (#341160).
10685
10686 2006-05-09  Stefan Kost  <ensonic@users.sf.net>
10687
10688         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find),
10689         (plugin_init):
10690          backout typefind patch #340375
10691          
10692         * tests/check/elements/adder.c: (message_received),
10693         (GST_START_TEST), (adder_suite):
10694           redo, signal-handling of test
10695
10696 2006-05-09  Wim Taymans  <wim@fluendo.com>
10697
10698         * gst/adder/gstadder.c: (gst_adder_request_new_pad),
10699         (gst_adder_collected):
10700         * gst/adder/gstadder.h:
10701         Remove bogus segment merging and forwarding, we don't
10702         care about timestamps anyway and we just produce a
10703         continuous stream. 
10704         Also create a nice NEWSEGMENT event when we start.
10705         Use _scale_int some more.
10706
10707 2006-05-09  Edward Hervey  <edward@fluendo.com>
10708
10709         * tests/icles/stress-xoverlay.c:
10710         Fix if core was built without parsing support.
10711
10712 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
10713
10714         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
10715           Add SEDG (Samsung MPEG-4) fourcc.
10716
10717 2006-05-09  Edward Hervey  <edward@fluendo.com>
10718
10719         * tests/icles/stress-xoverlay.c:
10720         * tests/examples/volume/volume.c:
10721         Fix if core was built without parsing support.
10722
10723         * tests/examples/seek/seek.c:
10724         Disable the parse_launch example if core was built without parsing
10725         support.
10726
10727 2006-05-08  Edward Hervey  <edward@fluendo.com>
10728
10729         * autogen.sh: (CONFIGURE_DEF_OPT): 
10730         libtoolize on Darwin/MacOSX is called glibtoolize
10731
10732 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
10733
10734         * tests/check/Makefile.am:
10735         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST):
10736           Disable the adder test, until the build-slaves posses the kindness to 
10737           either like it or to give valid reason for not doing so 
10738
10739 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
10740
10741         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
10742         (adder_suite):
10743           Shuffle NULL state change around and raise timeout more
10744
10745 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
10746
10747         * gst/typefind/gsttypefindfunctions.c: (mp4_find_box),
10748         (mp4_type_find), (plugin_init):
10749           Add typefind to distinguish between "audio/x-m4a" and new type
10750           "video/mp4". Fixes #340375
10751
10752         * tests/check/elements/adder.c: (adder_suite):
10753           Raise timeout to make buildbot happy
10754
10755 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
10756
10757         * gst/adder/gstadder.c: (gst_adder_sink_event),
10758         (gst_adder_request_new_pad), (gst_adder_change_state):
10759         * gst/adder/gstadder.h:
10760         * tests/check/Makefile.am:
10761         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
10762         (adder_suite), (main):
10763           Add sink-event handling to adder. It tries to merge incomming
10764           newsegment-events. Added test to check if segment_done is comming
10765           through. Fixes #340060
10766
10767 2006-05-05  Andy Wingo  <wingo@pobox.com>
10768
10769         * ext/theora/theoraparse.c (gst_theora_parse_init)
10770         (theora_parse_src_convert, theora_parse_src_query):
10771         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
10772         (vorbis_parse_convert, vorbis_parse_src_query): Add convert and
10773         query functions on the source pads of the theora and vorbis parse
10774         elements. Fixes position querying when doing a remux.
10775
10776 2006-05-05  Michael Smith  <msmith@fluendo.com>
10777
10778         * ext/theora/theoraparse.c: (parse_granulepos),
10779         (theora_parse_drain_queue_prematurely),
10780         (theora_parse_queue_buffer), (theora_parse_sink_event):
10781           Fix flushing.
10782           Fix invalid granulepos outputs when starting with a non-keyframe.
10783
10784 2006-05-05  Jan Schmidt  <thaytan@mad.scientist.com>
10785
10786         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find),
10787         (mpeg1_sys_type_find), (ogganx_type_find), (sw_data_destroy):
10788         Rearrange MPEG system stream detection, fixing some memleaks in the
10789         process.
10790         Constify the data for STARTS_WITH and RIFF helper handlers. Make sure
10791         they clean up their data correctly.
10792         Remove unused ogganx caps and move the 'is_annodex' check to inside
10793         the 'is_ogg' if statement.
10794
10795 2006-05-05  Wim Taymans  <wim@fluendo.com>
10796
10797         * gst/playback/gstdecodebin.c: (cleanup_decodebin):
10798         Properly remove ghostpads. Fixes #340392
10799
10800 2006-05-04  David Schleef  <ds@schleef.org>
10801
10802         * gst/typefind/gsttypefindfunctions.c:
10803
10804 2006-05-03  Jan Schmidt  <thaytan@mad.scientist.com>
10805
10806         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
10807         (mpeg_ts_probe_headers), (mpeg_ts_type_find):
10808
10809         When typefinding an MP3 in push-based mode, don't penalise the
10810         probability down to 74% when we found 5 valid frames just because we
10811         can't peek the end of the file.
10812
10813         Make the probability for detecting MPEG Transport Streams based on the
10814         number of sequential headers we successfully detected.
10815
10816 2006-05-03  Wim Taymans  <wim@fluendo.com>
10817
10818         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
10819         (vorbis_dec_push), (vorbis_dec_chain):
10820         Still produce an error when we receive an empty packet.
10821
10822 2006-05-03  Wim Taymans  <wim@fluendo.com>
10823
10824         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
10825         (gst_ogg_chain_mark_discont), (gst_ogg_chain_new_stream),
10826         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek):
10827         Mark buffers with DISCONT after seek and after activating new
10828         chains.
10829
10830         * ext/theora/gsttheoradec.h:
10831         * ext/theora/theoradec.c: (gst_theora_dec_reset),
10832         (theora_get_query_types), (theora_dec_sink_event),
10833         (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
10834         (theora_dec_change_state):
10835         Fix frame counter.
10836         Detect and mark DISCONT buffers.
10837
10838         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
10839         (vorbis_dec_sink_event), (vorbis_dec_push), (vorbis_dec_chain),
10840         (vorbis_dec_change_state):
10841         * ext/vorbis/vorbisdec.h:
10842         Use GstSegment.
10843         Detect and mark DISCONT buffers.
10844         Don't crash on 0 sized buffers.
10845
10846 2006-05-03  Wim Taymans  <wim@fluendo.com>
10847
10848         * gst/volume/gstvolume.c: (volume_funcfind), (volume_set_caps),
10849         (volume_transform_ip):
10850         Increase "volume" property to 10.0. Fixes #340369.
10851         Set the process function to NULL when capsnego fails so that
10852         we properly error out.
10853
10854 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
10855
10856         * gst/playback/gstplaybin.c: (add_sink):
10857         * gst/playback/test.c: (main):
10858         * gst/playback/test5.c: (dump_element_stats):
10859         * gst/playback/test6.c: (main):
10860           free caps using gst_caps_unref, don't leak caps-strings
10861
10862 2006-05-01  Tim-Philipp Müller  <tim at centricular dot net>
10863
10864         * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
10865         (plugin_init):
10866           Refine musepack typefinding a bit. Return MAXIMUM
10867           probability when we detect stream version 7 to make
10868           sure the mpeg audio typefinder doesn't trump us.
10869
10870 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
10871
10872         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
10873           Protect against unexpected NULL strf_data buffer.
10874
10875 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10876
10877         * tests/check/elements/audioconvert.c: (verify_convert),
10878         (GST_START_TEST):
10879           interpret the out[] buffer in the order the bytes are actually
10880           put in, which is LITTLE_ENDIAN, not BYTE_ORDER.
10881           Other tests should use BYTE_ORDER since the array is filled in
10882           with actual values
10883
10884 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10885
10886         * tests/check/elements/audioconvert.c: (verify_convert),
10887         (GST_START_TEST):
10888           when a test fails, give an indication of which it is
10889
10890 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10891
10892         * gst-libs/gst/cdda/gstcddabasesrc.c:
10893           compile fix; strtol() needs <stdlib.h>
10894
10895 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
10896
10897         * ext/alsa/gstalsamixerelement.c:
10898         * ext/alsa/gstalsasrc.c:
10899         * ext/cdparanoia/gstcdparanoiasrc.c:
10900         * ext/gnomevfs/gstgnomevfssink.c:
10901         * ext/gnomevfs/gstgnomevfssrc.c:
10902         * ext/ogg/gstoggdemux.c:
10903         * ext/ogg/gstoggmux.c:
10904         * ext/ogg/gstoggparse.c:
10905         * ext/ogg/gstogmparse.c:
10906         * ext/pango/gstclockoverlay.c:
10907         * ext/pango/gsttextoverlay.c:
10908         * ext/pango/gsttextrender.c:
10909         * ext/pango/gsttimeoverlay.c:
10910         * ext/theora/theoradec.c:
10911         * ext/theora/theoraenc.c:
10912         * ext/vorbis/vorbisdec.c:
10913         * ext/vorbis/vorbisenc.c:
10914         * gst-libs/gst/audio/gstaudiofilter.c:
10915         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
10916         * gst/audioconvert/gstaudioconvert.c:
10917         * gst/audiorate/gstaudiorate.c:
10918         * gst/audioresample/gstaudioresample.c:
10919         * gst/audiotestsrc/gstaudiotestsrc.c:
10920         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10921         * gst/playback/gstdecodebin.c:
10922         * gst/playback/gstplaybin.c:
10923         * gst/playback/gststreamselector.c:
10924         * gst/subparse/gstsubparse.c:
10925         * gst/tcp/gstmultifdsink.c:
10926         * gst/tcp/gsttcpclientsink.c:
10927         * gst/tcp/gsttcpclientsrc.c:
10928         * gst/tcp/gsttcpserversink.c:
10929         * gst/tcp/gsttcpserversrc.c:
10930         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
10931         * gst/videorate/gstvideorate.c:
10932         * gst/videoscale/gstvideoscale.c:
10933         * gst/videotestsrc/gstvideotestsrc.c:
10934         * gst/volume/gstvolume.c:
10935         * sys/v4l/gstv4ljpegsrc.c:
10936         * sys/v4l/gstv4lmjpegsink.c:
10937         * sys/v4l/gstv4lmjpegsrc.c:
10938         * sys/v4l/gstv4lsrc.c:
10939         * sys/ximage/ximagesink.c:
10940         * sys/xvimage/xvimagesink.c:
10941         * tests/check/libs/cddabasesrc.c:
10942           make GstElementDetails const
10943
10944 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
10945
10946         * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
10947         (gst_adder_init):
10948           send events from src-pad to all sink-pads fixes #338657
10949
10950 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
10951
10952         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps),
10953         (alsasink_parse_spec):
10954           query width capabilities from alsa, fixes #338919
10955
10956 2006-04-28  Wim Taymans  <wim@fluendo.com>
10957
10958         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
10959         (gst_multi_fd_sink_remove_client_link):
10960         * gst/tcp/gstmultifdsink.h:
10961         Fix race condition in multifdsink that can lead to spurious 
10962         duplicate clients. this patch adds a new signal that is fired when
10963         multifdsink has removed all references to the fd.
10964         Fixes #339574.
10965         Updated documentation.
10966         API: client-fd-removed signal added
10967
10968 2006-04-28  Michael Smith  <msmith@fluendo.com>
10969
10970         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats):
10971           When asking g_value_array_new to prealloc elements, we may as well
10972           ask for the right number of elements.
10973
10974 2006-04-28  Wim Taymans  <wim@fluendo.com>
10975
10976         * gst-libs/gst/audio/gstbaseaudiosink.c:
10977         (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
10978         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10979         patch to make timestamp checking more tollerant to rounding 
10980         errors given that real discontinuities are to be marked on
10981         buffers. Fixes some asf files and #338778.
10982         Also avoid some crashers when we receive an event in the 
10983         NULL state.
10984
10985 2006-04-28  Michael Smith  <msmith@fluendo.com>
10986
10987         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
10988         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
10989         (gst_gnome_vfs_src_get_property),
10990         (gst_gnome_vfs_src_send_additional_headers_callback),
10991         (gst_gnome_vfs_src_received_headers_callback),
10992         (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_start),
10993         (gst_gnome_vfs_src_stop):
10994         * ext/gnomevfs/gstgnomevfssrc.h:
10995           Remove ICY handling (mostly) from gnomevfssrc, in favour of
10996           proper shared support within icydemux.
10997
10998 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10999
11000         * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
11001         (gst_video_rate_swap_prev), (gst_video_rate_chain):
11002           fix up docs
11003           fix a leak when no caps negotiated
11004           fix counting of input frames
11005         * tests/check/elements/.cvsignore:
11006         * tests/check/elements/videorate.c: (assert_videorate_stats),
11007         (GST_START_TEST), (videorate_suite):
11008           add tests for these
11009
11010 2006-04-28  Wim Taymans  <wim@fluendo.com>
11011
11012         * gst-libs/gst/audio/gstringbuffer.c:
11013         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
11014         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
11015         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
11016         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
11017         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
11018         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
11019         (gst_ring_buffer_commit), (gst_ring_buffer_read),
11020         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
11021         (gst_ring_buffer_clear), (gst_ring_buffer_may_start):
11022         Check arguments passed to public functions instead of
11023         crashing.
11024
11025 2006-04-28  Wim Taymans  <wim@fluendo.com>
11026
11027         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
11028         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
11029         GstBaseAudioSrc must be live or it does not work.
11030
11031         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audio_src_init):
11032         Don't set live to TRUE as this is the default in the parentclass.
11033
11034 2006-04-28  Wim Taymans  <wim@fluendo.com>
11035
11036         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps),
11037         (gst_video_scale_fixate_caps), (gst_video_scale_src_event):
11038         Videoscale doesn't pass on pixel-aspect ratio. Handle all
11039         fixation cases better. Fixes #338991
11040
11041 2006-04-28  Wim Taymans  <wim@fluendo.com>
11042
11043         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
11044         Handle 0/1 framerate correctly Fixes #331901.
11045
11046 2006-04-28  Wim Taymans  <wim@fluendo.com>
11047
11048         * tests/check/elements/audioconvert.c: (get_float_caps),
11049         (GST_START_TEST), (audioconvert_suite):
11050         Added check for correct clipping when doing float samples
11051         in audioconvert.
11052
11053 2006-04-28  Wim Taymans  <wim@fluendo.com>
11054
11055         * gst/videorate/gstvideorate.c: (gst_video_rate_event),
11056         (gst_video_rate_chain):
11057         Print more debugging info.
11058
11059 2006-04-28  Wim Taymans  <wim@fluendo.com>
11060
11061         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
11062         (resample_set_state_from_caps):
11063         Add support for other formats audioresample can handle such as
11064         32 bits in and float and 64 bits float. Fixes #301759
11065
11066 2006-04-28  Wim Taymans  <wim@fluendo.com>
11067
11068         * gst/audioconvert/audioconvert.c: (float):
11069         correctly clip float samples > 1.0. Fixes #338718
11070
11071 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
11072
11073         Patch by: Young-Ho Cha  <ganadist at chollian net>
11074
11075         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
11076         (gst_text_overlay_render_text):
11077           Don't strip newlines from the text. Also, center lines
11078           within multi-line paragraphs (#339405).
11079
11080 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
11081
11082         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find):
11083           Fix wavpack typefinding to work in more cases (don't peek
11084           for chunks of multiple hundred kBs at once, but process
11085           things step-by-step in smaller units). Fixes #339786.
11086
11087 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
11088
11089         * configure.ac:
11090           back to HEAD
11091
11092 === release 0.10.6 ===
11093
11094 2006-04-28  Thomas Vander Stichele <thomas at apestaart dot org>
11095
11096         * configure.ac:
11097           releasing 0.10.6, "Chao"
11098
11099 2006-04-26  David Schleef  <ds@schleef.org>
11100
11101         * gst/videoscale/gstvideoscale.c: Add call to oil_init().
11102           Fixes #338897.
11103
11104 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
11105
11106         * configure.ac:
11107         * win32/common/config.h:
11108           new prerelease
11109
11110 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
11111
11112         patch by: Wim Taymans
11113
11114         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
11115         (gst_ogg_demux_perform_seek):
11116           make sure correct newsegments are sent, so that the decoder
11117           and the demuxer agree on timestamps.  Fixes playback of a lot
11118           of Ogg files that do not start from 0.  Fixes #339833.
11119
11120 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
11121
11122         Patch by: Edward Hervey  <edward@fluendo.com>
11123
11124         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
11125         * tests/check/Makefile.am:
11126         * tests/check/elements/videorate.c: (assert_videorate_stats),
11127         (setup_videorate), (cleanup_videorate), (GST_START_TEST),
11128         (videorate_suite), (main):
11129           Fix an infinite loop if frames are passed in with wrongly ordered
11130           timestamps.  Fixes #339013.
11131
11132 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
11133
11134         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
11135
11136         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
11137           fix typefinding on some ISO files.  Fixes #339212.
11138
11139 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
11140
11141         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
11142
11143         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
11144           add another H264 fourcc.  Fixes #339047.
11145
11146 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
11147
11148         Patch by: Jan Schmidt
11149
11150         * gst/playback/gststreamselector.c:
11151         (gst_stream_selector_bufferalloc):
11152           Restore old StreamSelector behaviour.
11153           Fixes #338419.
11154
11155 2006-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
11156
11157         * configure.ac:
11158         * win32/common/config.h:
11159           prerelease
11160
11161 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
11162
11163         Patch by: Antoine Tremblay  <hexa00 at gmail dot com>
11164
11165         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11166         (gst_base_rtp_depayload_finalize), (gst_base_rtp_depayload_push):
11167           Fix some memory leaks: on finalize, free buffers left in the queue
11168           before destroying the queue; in _push(), unref rtp_buf even if
11169           the process vfunc returned a NULL buffer as output buffer (#337548);
11170           demote some recuring debug messages to LOG level.
11171
11172 2006-04-11  Wim Taymans  <wim@fluendo.com>
11173
11174         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
11175         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
11176         (gst_ogg_chain_free), (gst_ogg_demux_sink_event),
11177         (gst_ogg_demux_loop):
11178         More cleanups.
11179         Respect segment stop when emiting EOS or SEGMENT_DONE.
11180         Fixes (#337945).
11181
11182 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
11183
11184         * gst/playback/gststreamselector.c:
11185         (gst_stream_selector_get_property):
11186           Don't leak pad name.
11187
11188 2006-04-10  Michael Smith  <msmith@fluendo.com>
11189
11190         * tests/check/Makefile.am:
11191         * tests/check/gst-plugins-base.supp:
11192           Suppress an old libtheora bug (fixed in more recent versions), so 
11193           that FC4 buildslaves can pass.
11194
11195 2006-04-10  Wim Taymans  <wim@fluendo.com>
11196
11197         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
11198         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
11199         (gst_ogg_demux_init), (gst_ogg_demux_finalize),
11200         (gst_ogg_demux_sink_event), (gst_ogg_demux_get_data),
11201         (gst_ogg_demux_loop):
11202         Don't leak events.
11203         Remember what error we got when finding chains, if we
11204         were shutdown, that would not be an error.
11205
11206 2006-04-10  Wim Taymans  <wim@fluendo.com>
11207
11208         * gst-libs/gst/audio/gstbaseaudiosink.c:
11209         (gst_base_audio_sink_event):
11210         Starting the ringbuffer when we did not acquire it can cause
11211         a deadlock, is pointless and causes nasty things for
11212         subclasses. 
11213         Fixes gst-launch audiotestsrc num-buffers=0 ! alsasink.
11214
11215 2006-04-10  Wim Taymans  <wim@fluendo.com>
11216
11217         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
11218         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
11219         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
11220         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
11221         (gst_ogg_demux_deactivate_current_chain),
11222         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
11223         (gst_ogg_demux_bisect_forward_serialno),
11224         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain):
11225         Add some more debugging.
11226
11227 2006-04-10  Wim Taymans  <wim@fluendo.com>
11228
11229         * ext/theora/theoradec.c: (theora_dec_src_event),
11230         (theora_handle_data_packet):
11231         Some more debug info.
11232
11233         * tests/examples/seek/seek.c: (start_seek), (main):
11234         Print element messages too.
11235
11236 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
11237
11238         * gst/audioresample/debug.h:
11239           replace debug macros with variable number of parameters
11240           by a simple alias to gstreamer standard debug macros 
11241          (#define RESAMPLE_ERROR GST_ERROR, __VA_ARGS__ is not
11242           supported by MSVC 6.0 and 7.1)
11243         * gst/audioresample/resample.h:
11244           define M_PI and rint for WIN32
11245         * win32/common/libgstaudio.def:
11246         * win32/common/libgstriff.def:
11247         * win32/common/libgsttag.def:
11248         * win32/common/libgstvideo.def:
11249           add new exported functions
11250         * win32/vs6:
11251           update project files
11252
11253 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
11254
11255         * ext/alsa/gstalsamixeroptions.c:
11256         (gst_alsa_mixer_options_class_init):
11257         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init):
11258         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init):
11259         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
11260         * ext/ogg/gstoggparse.c: (gst_ogg_parse_class_init):
11261         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_class_init):
11262         * gst-libs/gst/audio/gstaudiofilter.c:
11263         (gst_audio_filter_class_init):
11264         * gst-libs/gst/audio/gstaudiosink.c:
11265         (gst_audioringbuffer_class_init):
11266         * gst-libs/gst/audio/gstaudiosrc.c:
11267         (gst_audioringbuffer_class_init):
11268         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_class_init):
11269         * gst-libs/gst/interfaces/colorbalancechannel.c:
11270         (gst_color_balance_channel_class_init):
11271         * gst-libs/gst/interfaces/mixeroptions.c:
11272         (gst_mixer_options_class_init):
11273         * gst-libs/gst/interfaces/mixertrack.c:
11274         (gst_mixer_track_class_init):
11275         * gst-libs/gst/interfaces/tunerchannel.c:
11276         (gst_tuner_channel_class_init):
11277         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_class_init):
11278         * gst-libs/gst/netbuffer/gstnetbuffer.c:
11279         (gst_netbuffer_class_init):
11280         * gst-libs/gst/rtp/gstbasertppayload.c:
11281         (gst_basertppayload_class_init):
11282         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
11283         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
11284         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
11285         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
11286         * gst/playback/gststreamselector.c:
11287         (gst_stream_selector_class_init):
11288         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
11289         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
11290         * sys/v4l/gstv4lcolorbalance.c:
11291         (gst_v4l_color_balance_channel_class_init):
11292         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_class_init):
11293         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
11294         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
11295         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_channel_class_init),
11296         (gst_v4l_tuner_norm_class_init):
11297         * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
11298         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
11299         * tests/old/testsuite/alsa/sinesrc.c: (sinesrc_class_init):
11300         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
11301
11302 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
11303
11304         * ext/pango/gsttextrender.h:
11305         * gst-libs/gst/audio/gstaudiosink.h:
11306         * gst-libs/gst/audio/gstaudiosrc.h:
11307         * gst-libs/gst/audio/gstbaseaudiosink.h:
11308         * gst-libs/gst/audio/gstbaseaudiosrc.h:
11309         * gst-libs/gst/audio/gstringbuffer.h:
11310         * gst-libs/gst/rtp/gstbasertpdepayload.h:
11311         * gst-libs/gst/rtp/gstbasertppayload.h:
11312         * gst-libs/gst/video/gstvideofilter.h:
11313         * gst-libs/gst/video/gstvideosink.h:
11314         * gst/playback/gstplaybasebin.h:
11315         * gst/tcp/gstmultifdsink.h:
11316         * sys/v4l/gstv4lelement.h:
11317         Fix broken GObject macros
11318
11319 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
11320
11321         * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec):
11322         More debug to trace why my USB headset is not working with gst
11323
11324 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
11325
11326         * gst/playback/gstplaybasebin.c: (group_destroy):
11327         Clean up our group elements properly in the case where it never 
11328         got committed - it still got added unconditionally to the bin.
11329
11330 2006-04-07  Wim Taymans  <wim@fluendo.com>
11331
11332         * ext/theora/theoradec.c: (theora_dec_sink_event),
11333         (theora_handle_data_packet), (theora_dec_chain):
11334         Unref unhandled events.
11335         Protect against empty buffers.
11336         Perform QoS on running time.
11337
11338 2006-04-07  Michael Smith  <msmith@fluendo.com>
11339
11340         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_set_header_on_caps),
11341         (gst_vorbis_enc_chain):
11342           Remove leaks from vorbisenc.
11343           Mostly minor changes, the only significant one is that now the
11344           buffers we set as 'streamheader' on the caps are copies of the
11345           original buffers, to avoid circular refcounting problems.
11346
11347 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
11348
11349         * gst/playback/gstplaybasebin.c: (mute_stream), (setup_substreams):
11350           Don't remove our mute-probe if someone else already did so.
11351           Don't set a 2nd one if there is already one pending on the pad.
11352
11353         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
11354         (do_playbin_seek):
11355           When a seek fails, ensure that playbin is still set back to playing.
11356           
11357         * gst/typefind/gsttypefindfunctions.c: (mpeg_ts_probe_headers),
11358         (mpeg_ts_type_find), (plugin_init):
11359           Add a typefind function for mpeg-ts streams. (Closes: #336617)
11360
11361 2006-04-06  Andy Wingo  <wingo@pobox.com>
11362
11363         * gst/videorate/gstvideorate.c (gst_video_rate_reset) 
11364         (gst_video_rate_init): Caps-related parameters should not be reset
11365         by a flush -- move their inits to the instance init function.
11366         (gst_video_rate_flush_prev): Don't complain if gst_pad_push
11367         is not OK, just return the result.
11368
11369         * gst/audiotestsrc/gstaudiotestsrc.c
11370         (gst_audio_test_src_class_init)
11371         (gst_audio_test_src_get_times): Re-enable is-live=true, as was
11372         broken by Stefan's commit on 24 March.
11373
11374         * ext/ogg/gstoggmux.c (gst_ogg_mux_push_buffer): Set caps on
11375         buffers being pushed out. Fixes oggmux ! multifdsink.
11376
11377 2006-04-05  Tim-Philipp Müller  <tim at centricular dot net>
11378
11379         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
11380         (gst_vorbis_dec_init), (vorbis_dec_finalize):
11381         * ext/vorbis/vorbisdec.h:
11382         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_add_interfaces),
11383         (gst_vorbis_enc_base_init), (gst_vorbis_enc_class_init),
11384         (gst_vorbis_enc_sink_setcaps), (gst_vorbis_enc_convert_src),
11385         (gst_vorbis_enc_convert_sink), (gst_vorbis_enc_get_query_types),
11386         (gst_vorbis_enc_src_query), (gst_vorbis_enc_sink_query),
11387         (gst_vorbis_enc_init), (gst_vorbis_enc_get_tag_value),
11388         (gst_vorbis_enc_metadata_set1), (gst_vorbis_enc_set_metadata),
11389         (gst_vorbis_enc_setup), (gst_vorbis_enc_clear),
11390         (gst_vorbis_enc_buffer_from_packet),
11391         (gst_vorbis_enc_buffer_from_header_packet),
11392         (gst_vorbis_enc_push_buffer), (gst_vorbis_enc_push_packet),
11393         (gst_vorbis_enc_set_header_on_caps), (gst_vorbis_enc_sink_event),
11394         (gst_vorbis_enc_chain), (gst_vorbis_enc_output_buffers),
11395         (gst_vorbis_enc_get_property), (gst_vorbis_enc_set_property),
11396         (gst_vorbis_enc_change_state):
11397         * ext/vorbis/vorbisenc.h:
11398           Remove left-over 0.8 cruft; use GST_DEBUG_FUNCPTR; make
11399           vorbisenc adhere to the official nomenclature; use boilerplate
11400           macro.
11401
11402 2006-04-04  Andy Wingo  <wingo@pobox.com>
11403
11404         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
11405         Whoops, fix bug introduced. Bad hacker!
11406         
11407         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
11408         Properly handle the case where you get EOS before any buffers are
11409         received. Use gst_buffer_make_metadata_writable where appropriate.
11410
11411         * ext/theora/theoradec.c (theora_handle_data_packet): This value
11412         is often negative -- make it signed so as not to wrap around.
11413         Fixes segfaults introduced on 9 March.
11414
11415 2006-04-03  Wim Taymans  <wim@fluendo.com>
11416
11417         * ext/theora/gsttheoradec.h:
11418         * ext/theora/theoradec.c: (theora_dec_src_event):
11419         Don't try to store a gdouble in a gboolean.
11420         Small cleanups.
11421
11422 2006-04-03  Michael Smith  <msmith@fluendo.com>
11423
11424         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads):
11425           Oggmux sucks.
11426           Make it suck slightly less by writing out the final page.
11427           Still can't encode a vorbis-in-ogg file correctly, though.
11428
11429 2006-04-03  Andy Wingo  <wingo@pobox.com>
11430
11431         * ext/theora/theoraparse.c (theora_parse_drain_queue): Um, remove
11432         a g_print.
11433
11434         * ext/theora/theora.c (plugin_init): Register theoraparse.
11435
11436         * ext/theora/gsttheoraparse.h: 
11437         * ext/theora/theoraparse.c: New files implementing a theora
11438         parser. Now we can properly remux ogg/theora+vorbis, yay.
11439
11440         * ext/vorbis/vorbisparse.c: Add some docs and a copyright.
11441
11442 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
11443
11444         * gst/audiotestsrc/gstaudiotestsrc.c:
11445           Fixed the sample pipeline (see #323798)
11446
11447 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
11448
11449         * configure.ac:
11450         * win32/common/config.h:
11451         * win32/common/config.h.in:
11452           use AS_VERSION and AS_NANO
11453           more cleanups
11454
11455 2006-03-31  Andy Wingo  <wingo@pobox.com>
11456
11457         * ext/vorbis/vorbisparse.c (vorbis_parse_sink_event): Fix
11458         uninitialized variable return that would happen.
11459         
11460         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_queue): Fix
11461         uninitialized variable return that would never happen.
11462
11463         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init) 
11464         (vorbis_parse_sink_event): Add an event function to flush our
11465         state on a seek, and to drain buffers on a premature EOS.
11466         (vorbis_parse_push_headers, vorbis_parse_clear_queue) 
11467         (vorbis_parse_push_buffer, vorbis_parse_drain_queue_prematurely) 
11468         (vorbis_parse_chain, vorbis_parse_queue_buffer) 
11469         (vorbis_parse_drain_queue): Queue up buffers until we can set
11470         their timestamps and granulepos values.
11471
11472         * ext/vorbis/vorbisparse.h: Include the vorbis decoder headers,
11473         and keep track of data needed for deriving granulepos and
11474         timestamps for buffers.
11475
11476 2006-03-29  Wim Taymans  <wim@fluendo.com>
11477
11478         Patch by: j^ <j at bootlab dot org>
11479
11480         * ext/alsa/gstalsamixerelement.c:
11481         (gst_alsa_mixer_element_class_init):
11482         * ext/alsa/gstalsasink.c:
11483         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
11484         * ext/ogg/gstoggdemux.c:
11485         * ext/ogg/gstoggmux.c:
11486         * ext/ogg/gstoggparse.c:
11487         * ext/pango/gstclockoverlay.c:
11488         * ext/pango/gsttextoverlay.c:
11489         * ext/pango/gsttextrender.c:
11490         * ext/pango/gsttimeoverlay.c:
11491         * ext/theora/theoradec.c:
11492         * ext/theora/theoraenc.c:
11493         * ext/vorbis/vorbisdec.c:
11494         * ext/vorbis/vorbisenc.c:
11495         * gst/audioconvert/gstaudioconvert.c:
11496         * gst/subparse/gstsubparse.c:
11497         * gst/tcp/gstmultifdsink.c:
11498         * gst/tcp/gsttcpclientsink.c:
11499         * gst/tcp/gsttcpclientsrc.c:
11500         * gst/tcp/gsttcpserversink.c:
11501         * gst/tcp/gsttcpserversrc.c:
11502           better/unified long descriptions
11503           Fixes #336477
11504
11505 2006-03-29  Wim Taymans  <wim@fluendo.com>
11506
11507         * tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
11508         (stop_seek):
11509         Don't let double and triple clicks mess up our state.
11510
11511 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
11512
11513         * gst/playback/gstplaybin.c: (gen_video_element),
11514         (gen_text_element), (gen_audio_element), (gen_vis_element):
11515           Error out gracefully when we can't create any of the usual
11516           conversion elements for some reason. Also, don't try to
11517           create an audioscale (sic) element that's not used anyway.
11518
11519 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
11520
11521         * gst/playback/gstplaybasebin.c: (setup_source):
11522           Don't post RESOURCE_NOT_FOUND error when we can't find a source
11523           element for a particular protocol, that's confusing for users.
11524           Instead, post a RESOURCE_FAILED error, so that our own error
11525           message is actually shown in totem etc. (#336303).
11526
11527 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
11528
11529         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
11530
11531         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_finalize),
11532         (gst_gnome_vfs_src_get_icy_metadata):
11533           Fix some minor memory leaks (#336194).
11534
11535 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
11536
11537         * ext/gnomevfs/gstgnomevfs.c:
11538         (gst_gnome_vfs_location_to_uri_string):
11539         * ext/gnomevfs/gstgnomevfs.h:
11540         * ext/gnomevfs/gstgnomevfssink.c:
11541         (gst_gnome_vfs_sink_set_property):
11542         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_set_property):
11543           Make gnomevfssink accept filenames as well as URIs for the
11544           "location" property, just like gnomevfssrc does (and
11545           filesrc/filesink do) (#336190).
11546
11547 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
11548
11549         * tests/check/generic/clock-selection.c: (GST_START_TEST):
11550           set to NULL before unreffing, fixes a valgrind leak.
11551           Why was this not triggering the error that an object needs to
11552           be NULL before unreffing ?
11553         * win32/common/config.h:
11554           update
11555
11556 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
11557
11558         * gst/subparse/gstsubparse.c: (convert_encoding),
11559         (gst_sub_parse_change_state):
11560         * gst/subparse/gstsubparse.h:
11561           Text subtitle files may or may not be UTF-8. If it's not, we
11562           don't really want to see '?' characters in place of non-ASCII
11563           characters like accented characters. So let's assume the input
11564           is UTF-8 until we come across text that is clearly not. If it's
11565           not UTF-8, we don't really know what it is, so try the following:
11566           (a) see whether the GST_SUBTITLE_ENCODING environment variable
11567           is set; if not, check (b) if the current locale encoding is
11568           non-UTF-8 and use that if it is, or (c) assume ISO-8859-15 if
11569           the current locale encoding is UTF-8 and the environment variable
11570           was not set to any particular encoding. Not perfect, but better
11571           than nothing (and better than before, I think) (fixes #172848).
11572
11573 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
11574
11575         * configure.ac:
11576           update core requirement to 0.10.4.1 because of async_playback
11577           vmethod on GstBaseSink
11578
11579 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
11580
11581         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
11582         * gst/adder/gstadder.c: (gst_adder_init):
11583         use DEBUG_FUNCPTR for collectpads
11584
11585 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
11586
11587         * docs/plugins/Makefile.am:
11588         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
11589         * docs/plugins/gst-plugins-base-plugins-sections.txt:
11590         * ext/cdparanoia/gstcdparanoiasrc.c:
11591         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_base_init),
11592         (gst_gnome_vfs_sink_class_init):
11593         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_base_init):
11594         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_base_init):
11595         * ext/ogg/gstoggmux.c:
11596         * ext/ogg/gstoggparse.c: (gst_ogg_parse_base_init):
11597         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
11598         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init):
11599         * ext/pango/gsttextoverlay.c:
11600         * ext/pango/gsttextrender.c:
11601         * ext/theora/theoradec.c:
11602         * ext/theora/theoraenc.c:
11603         * ext/vorbis/vorbisdec.c:
11604         * ext/vorbis/vorbisenc.c:
11605         * gst-libs/gst/audio/gstaudiofilter.c:
11606         (gst_audio_filter_base_init):
11607         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
11608         (gst_audio_filter_template_base_init):
11609         * gst/adder/gstadder.c: (gst_adder_get_type):
11610         * gst/adder/gstadder.h:
11611         * gst/audioconvert/gstaudioconvert.c:
11612         * gst/audiotestsrc/gstaudiotestsrc.c:
11613         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
11614         (gst_audio_test_src_create):
11615         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11616         * gst/playback/gstdecodebin.c:
11617         * gst/playback/gstplaybin.c:
11618         * gst/playback/gststreamselector.c:
11619         (gst_stream_selector_base_init):
11620         * gst/subparse/gstsubparse.c: (gst_sub_parse_base_init):
11621         * gst/volume/gstvolume.c:
11622         * sys/v4l/gstv4lmjpegsink.c:
11623         * sys/v4l/gstv4lmjpegsrc.c:
11624         * tests/check/libs/cddabasesrc.c:
11625         * tests/old/examples/gob/gst-identity2.gob:
11626           Add docs for adder, use GST_ELEMENT_DETAILS macro,
11627           define GstElementDetails at the top
11628
11629 2006-03-23  Sebastien Moutte  <sebastien@moutte.net>
11630
11631         * win32/common/libgstinterfaces.def:
11632         Add a lot of export functions for gst-python
11633         * win32/vs6/libgstinterfaces.dsp:
11634         Add a missing include folder in the project configuration
11635         
11636 2006-03-23  Wim Taymans  <wim@fluendo.com>
11637
11638         * gst-libs/gst/audio/gstbaseaudiosrc.c:
11639         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
11640         (gst_base_audio_src_change_state):
11641         Fix audio sources, forgot to make the ringbuffer
11642         startable...
11643
11644 2006-03-23  Wim Taymans  <wim@fluendo.com>
11645
11646         * gst-libs/gst/audio/gstbaseaudiosrc.c:
11647         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
11648         (gst_base_audio_src_change_state):
11649         unparent instead of unref the ringbuffer.
11650
11651 2006-03-23  Wim Taymans  <wim@fluendo.com>
11652
11653         * gst-libs/gst/audio/gstbaseaudiosink.c:
11654         (gst_base_audio_sink_class_init), (gst_base_audio_sink_async_play),
11655         (gst_base_audio_sink_do_play), (gst_base_audio_sink_change_state):
11656         Implement new async_play vmethod to start slaving and allow
11657         playback start in case of async PLAY state changes. 
11658
11659         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
11660         Enable QoS with new method in base class.
11661
11662 2006-03-23  Wim Taymans  <wim@fluendo.com>
11663
11664         Patch by: Julien MOUTTE <julien at moutte dot net>
11665
11666         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_query),
11667         (gst_video_test_src_do_seek), (gst_video_test_src_create):
11668         Partially handle 0 framerate, only EOS after the first frame
11669         is missing.
11670
11671 2006-03-23  Wim Taymans  <wim@fluendo.com>
11672
11673         Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
11674
11675         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
11676         (gst_riff_create_video_template_caps):
11677         * gst/ffmpegcolorspace/avcodec.h:
11678         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11679         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
11680         (gst_ffmpegcsp_avpicture_fill):
11681         * gst/ffmpegcolorspace/imgconvert.c:
11682         Patch for support of YVU9 AVI files (#334822)
11683
11684 2006-03-22  Edward Hervey  <edward@fluendo.com>
11685
11686         * docs/design/design-decodebin.txt:
11687         Added design document for new decodebin
11688         (Target Caps): text/x-pango-markup is also a default target caps.
11689
11690 2006-03-22  Wim Taymans  <wim@fluendo.com>
11691
11692         * gst-libs/gst/audio/gstbaseaudiosink.c:
11693         (gst_base_audio_sink_dispose):
11694         Since we _parent the ringbuffer, we also need to
11695         _unparent instead of a plain _unref.
11696
11697 2006-03-22  Wim Taymans  <wim@fluendo.com>
11698
11699         * tests/examples/seek/seek.c: (end_scrub), (do_seek), (seek_cb),
11700         (stop_seek), (scrub_toggle_cb), (main):
11701         Add scrub checkbox.
11702
11703 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
11704
11705         * ext/ogg/gstoggparse.c: (gst_ogg_parse_find_stream),
11706         (gst_ogg_parse_chain):
11707           Fix very inefficient usage of linked lists (#335365).
11708
11709 2006-03-21  Edward Hervey  <edward@fluendo.com>
11710
11711         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
11712         * gst/playback/gstplaybin.c: (handoff):
11713         * gst/playback/gststreamselector.c:
11714         (gst_stream_selector_set_property):
11715         gcc 4.1 unreferenced pointer fixes.
11716         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
11717         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
11718         gst_buffer_ref() now takes a GstBuffer*.
11719
11720 2006-03-20  Julien MOUTTE  <julien@moutte.net>
11721
11722         * sys/xvimage/xvimagesink.c:
11723         (gst_xvimagesink_get_format_from_caps): Fix a memleak reported
11724         by Jan Schmidt.
11725
11726 2006-03-19  Tim-Philipp Müller  <tim at centricular dot net>
11727
11728         * gst/typefind/gsttypefindfunctions.c: (id3v2_type_find),
11729         (id3v1_type_find), (apetag_type_find), (plugin_init):
11730           Can't do tag preferences via probability, as tags would then
11731           lose against types that are recognised with MAXIMUM probability
11732           (like .wav); so let all tag typefinders return MAXIMUM themselves
11733           and order them via the rank. Split ID3v1 and ID3v2 typefinders so
11734           that we can prefer APE to ID3v1 (fixes #335028).
11735           
11736 2006-03-17  Wim Taymans  <wim@fluendo.com>
11737
11738         * gst-libs/gst/audio/gstbaseaudiosink.c:
11739         (gst_base_audio_sink_change_state):
11740         * gst-libs/gst/audio/gstringbuffer.c: (wait_segment),
11741         (gst_ring_buffer_may_start):
11742         * gst-libs/gst/audio/gstringbuffer.h:
11743         Only start playback if we are playing.
11744         should fix #330748.
11745
11746 2006-03-17  Jan Schmidt  <thaytan@mad.scientist.com>
11747
11748         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
11749         * win32/common/config.h:
11750           Revert accidental commits to these files.
11751
11752 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
11753
11754         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
11755
11756         * tests/Makefile.am:
11757           Don't try to build tests in tests/icles if we
11758           don't have X (#323852)
11759
11760 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
11761
11762         * gst-libs/gst/tag/gstid3tag.c:
11763           Add TXXX frame identifiers for replaygain stuff as used
11764           by some taggers (see #323721).
11765
11766 2006-03-16  Jan Schmidt  <thaytan@mad.scientist.com>
11767
11768         * gst/playback/gststreamselector.c:
11769         (gst_stream_selector_set_property),
11770         (gst_stream_selector_bufferalloc):
11771           Preserve the existing buggy streamselector behaviour by performing
11772           a fallback buffer allocation when downstream isn't linked yet.
11773           This should really be fixed in playbin by blocking pads until it's
11774           linked them.
11775           Also, use gst_pad_alloc_buffer instead of
11776           gst_pad_alloc_buffer_and_set.
11777
11778 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
11779
11780         * gst-libs/gst/tag/gstid3tag.c:
11781           Don't crash on unknown ID3v2 TXXX frames.
11782           
11783 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
11784
11785         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise):
11786           Chain up to the parent finalize method.
11787           Add 32-bit sample size to the template caps.
11788
11789         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
11790         (gst_riff_create_video_template_caps):
11791           Add the fourcc that the VMWare codec uses.
11792           
11793         * gst/playback/gststreamselector.c:
11794         (gst_stream_selector_set_property),
11795         (gst_stream_selector_bufferalloc),
11796         (gst_stream_selector_request_new_pad):
11797           For the active pad, forward buffer-alloc requests, otherwise
11798           return GST_FLOW_NOT_LINKED. This also prevents xvimagesink
11799           having to memcpy every frame when used by playbin.
11800
11801         * gst/tcp/gstmultifdsink.c:
11802         (gst_multi_fd_sink_handle_client_write):
11803           Get negotiated caps from the sink pad, rather than the sink
11804           pad's peer.
11805
11806 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
11807
11808         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
11809         
11810         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_pop_callbacks):
11811           Don't forget to set src->callbacks_pushed to FALSE again when
11812           popping them, otherwise re-activation in a different mode won't
11813           work (#334620).
11814
11815 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
11816
11817         Patch by: Sebastien Moutte  <sebastien moutte net>
11818
11819         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ff_vid_caps_new),
11820         (gst_ff_aud_caps_new), (gst_ffmpeg_pixfmt_to_caps),
11821         (gst_ffmpeg_smpfmt_to_caps):
11822           Replace __VA_ARGS__ caps creation macros with varargs functions.
11823           Makes things compile on MSVC (#320765), looks nicer, and we can
11824           tell the compiler to check for the NULL terminator.
11825
11826 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
11827
11828         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
11829
11830         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
11831           Make sure the buffer we copy into is really always big
11832           enough, this time for real (#333488).
11833           
11834 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
11835
11836         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
11837           Add support for 24bpp DIB (#305279).
11838
11839 2006-03-14  Wim Taymans  <wim@fluendo.com>
11840
11841         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_init):
11842         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
11843         * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcsp_init):
11844         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
11845         (gst_video_scale_init), (gst_video_scale_src_event):
11846         Re-enable QoS after the release.
11847         Rework videoscale to use the base class src_event handler.
11848
11849 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
11850
11851         * configure.ac:
11852           back to CVS.
11853
11854 === release 0.10.5 ===
11855
11856 2006-03-13  Thomas Vander Stichele <thomas at apestaart dot org>
11857
11858         * configure.ac:
11859           releasing 0.10.5, "Net"
11860
11861 2006-03-13  Tim-Philipp Müller  <tim at centricular dot net>
11862
11863         * docs/plugins/Makefile.am:
11864           Part of previous cdparanoiasrc docs fixes, forgot to commit.
11865           
11866 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
11867
11868         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
11869         * docs/plugins/gst-plugins-base-plugins-sections.txt:
11870         * docs/plugins/gst-plugins-base-plugins.hierarchy:
11871           Add cdparanoiasrc to docs.
11872
11873         * gst-libs/gst/cdda/gstcddabasesrc.c:
11874           More GstCddaBaseSrc docs.
11875
11876 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
11877
11878         * docs/libs/gst-plugins-base-libs-sections.txt:
11879         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_user_tag):
11880         * gst-libs/gst/tag/tag.h:
11881           API: libgsttag: new method gst_tag_from_id3_user_tag().
11882
11883 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
11884
11885         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
11886           NULL-terminate array of mpeg4 video file extensions.
11887           Fixes crash on PPC (#334226).
11888
11889 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
11890
11891         * ext/gnomevfs/gstgnomevfssrc.c:
11892         (gst_gnome_vfs_src_check_get_range):
11893           gnome_vfs_uri_is_local() alone is not a good indicator
11894           whether we can operate in pull-mode with a specific URI,
11895           as it returns FALSE for file:// URIs that point to an
11896           NFS-mounted path. Be more conservative here: whitelist
11897           local files, blacklist http URIs and use the old
11898           mechanism for anything else (fixes #334216).
11899
11900 2006-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
11901
11902         * configure.ac:
11903           back to trunk
11904
11905 === release 0.10.4 ===
11906
11907 2006-03-10  Thomas Vander Stichele <thomas at apestaart dot org>
11908
11909         * configure.ac:
11910           releasing 0.10.4, "Power"
11911
11912 2006-03-10  Jan Schmidt  <thaytan@mad.scientist.com>
11913
11914         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
11915         Disable max-lateness by setting it to -1 for now, so that 
11916         we can bed QoS stuff in thoroughly between now and the next
11917         release.
11918
11919 2006-03-10  Tim-Philipp Müller  <tim at centricular dot net>
11920
11921         Patch by: Fabrizio Gennari
11922
11923         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
11924           Make sure we don't read beyond the palette buffer in case of
11925           broken or manipulated files (#333488)
11926
11927 2006-03-10  Edward Hervey  <edward@fluendo.com>
11928
11929         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
11930         Fix for variable not initialized.
11931
11932 2006-03-09  Wim Taymans  <wim@fluendo.com>
11933
11934         * ext/libvisual/visual.c: (gst_visual_get_type),
11935         (gst_visual_src_setcaps), (gst_vis_src_negotiate),
11936         (gst_visual_chain):
11937         Small cleanups.
11938
11939         * ext/theora/gsttheoradec.h:
11940         * ext/theora/theoradec.c: (gst_theora_dec_init),
11941         (gst_theora_dec_reset), (_theora_granule_time),
11942         (theora_dec_src_convert), (theora_dec_sink_convert),
11943         (theora_dec_src_query), (theora_dec_src_event),
11944         (theora_dec_sink_event), (theora_handle_comment_packet),
11945         (theora_handle_header_packet), (theora_dec_push),
11946         (theora_handle_data_packet), (theora_dec_chain),
11947         (theora_dec_change_state):
11948         Add simple QoS.
11949
11950 2006-03-09  Wim Taymans  <wim@fluendo.com>
11951
11952         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
11953         (audiocast_register_listener), (gst_gnome_vfs_src_start):
11954         Some cleanups.
11955
11956 2006-03-09  Wim Taymans  <wim@fluendo.com>
11957
11958         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
11959         Don't try to activate NULL chains.
11960
11961 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
11962
11963         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
11964           Fix invalid memory access to region before peek'd data (#332964).
11965
11966 2006-03-09  Wim Taymans  <wim@fluendo.com>
11967
11968         Patch by: Christophe Fergeau
11969
11970         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
11971         * ext/pango/gsttextrender.c: (gst_text_render_init):
11972         * gst/adder/gstadder.c: (gst_adder_init):
11973         Don't leak padtemplates, closes #333510.
11974
11975 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
11976
11977         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
11978           Fix invalid memory access: make sure string passed to
11979           regexec() is NUL-termianted.
11980
11981 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
11982
11983         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
11984         (mp3_type_find):
11985           Refactor mpeg/audio typefinding to make it more maintainable
11986           and easier to fine-tune. Make probing into middle of the file
11987           work properly (fixes #333900, also see #152688).
11988
11989 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
11990
11991         * gst/typefind/gsttypefindfunctions.c:
11992         (utf8_type_find_have_valid_utf8_at_offset):
11993           Remove part from previous commit that was bogus:
11994           g_utf8_validate() does in fact not accept embedded
11995           zeroes, so we don't need to check for those (thanks
11996           to Mike for the hint).
11997
11998 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
11999
12000         * gst/typefind/gsttypefindfunctions.c:
12001         (utf8_type_find_count_embedded_zeroes),
12002         (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
12003           Make plain/text typefinder more conservative: firstly, check
12004           for embedded zeroes, which are perfectly valid UTF-8 characters,
12005           but also a fairly good sign that something is not a plain text
12006           file; secondly, probe into the middle of the file if possible.
12007           If we can't probe into the middle, limit the probability value
12008           to be returned to TYPE_FIND_POSSIBLE (see #333900).
12009
12010 2006-03-08  Michael Smith  <msmith@fluendo.com>
12011
12012         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
12013           Make typefind function name for mpeg4 video unique.
12014
12015 2006-03-08  Wim Taymans  <wim@fluendo.com>
12016
12017         * ext/libvisual/visual.c: (gst_visual_init),
12018         (gst_visual_clear_actors), (gst_visual_dispose),
12019         (gst_visual_reset), (gst_visual_src_setcaps),
12020         (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
12021         (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
12022         (gst_visual_chain), (gst_visual_change_state):
12023         Cleanups, post nice errors.
12024         Handle sink and src events.
12025         Implement simple QoS.
12026
12027         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
12028         Use new basesink methods to configure max-lateness.
12029         Small doc update.
12030
12031         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12032         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
12033         Debug statement cleanups.
12034
12035         * gst/volume/gstvolume.c: (gst_volume_class_init):
12036         Simple cleanup.
12037
12038 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
12039
12040         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
12041         (gst_text_overlay_init), (gst_text_overlay_set_property),
12042         (gst_text_overlay_get_property):
12043           Revert API/ABI break from March 1. Keep 'halign' and 'valign'
12044           as string type properties, but mark them deprecated. Add
12045           'halignment' and 'valignment' properties that use enums
12046           instead of strings.
12047
12048 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
12049
12050         Patch by: Fabrizio Gennari
12051
12052         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
12053           Allow palettes with less than 256 colours in AVI files
12054           (#333488)
12055
12056 2006-03-07  Julien MOUTTE  <julien@moutte.net>
12057
12058         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
12059         (gst_text_overlay_video_event): Fix wrong EOS handling on text
12060         pad. We were releasing the queued text buffer when we should keep
12061         it until video pad gets EOS or discard the text buffer because it's
12062         too old. That was eating the last subtitle buffer. Add some more
12063         debug.
12064
12065 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
12066
12067         * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
12068         (gst_text_overlay_video_chain):
12069           Fix invalid memory access (we can't access a buffer after it's been
12070           pushed downstream without taking a reference); fix memory leak (if
12071           there's no text to render, bail out before allocating stuff).
12072
12073 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
12074
12075         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
12076         (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
12077         * ext/pango/gsttextoverlay.h:
12078           If input is plain text, escape it before passing it to
12079           pango_layout_set_markup().
12080
12081 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
12082
12083         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
12084           Don't ignore flow return from gst_pad_push().
12085
12086 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
12087
12088         Patch by: Fabrizio Gennari
12089
12090         * ext/libvisual/visual.c: (gst_visual_getcaps),
12091         (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
12092         * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
12093         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
12094         (gst_vorbisenc_convert_sink):
12095         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
12096         (gst_audio_duration_from_pad_buffer):
12097         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
12098         (gst_audio_filter_chain):
12099         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12100         (gst_base_rtp_depayload_setcaps):
12101         * gst-libs/gst/video/video.c: (gst_video_frame_rate),
12102         (gst_video_get_size):
12103         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
12104           Don't leak references returned by gst_pad_get_parent()
12105           (#333663)
12106
12107 2006-03-06  Stefan Kost  <ensonic@users.sf.net>
12108
12109         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
12110           change location param details
12111         * gst/volume/gstvolume.c: (plugin_init):
12112           correct plugin description
12113
12114 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
12115
12116         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
12117         (gst_gnome_vfs_src_check_get_range):
12118           Override GstBaseSrc::check_get_range() in order to avoid opening
12119           the resource just to check whether we can operate in pull-mode or
12120           not - we can predict that pretty well from the URI alone. Should
12121           fix problems with last.fm (#331690). (Requires latest core CVS).
12122
12123 2006-03-06  Wim Taymans  <wim@fluendo.com>
12124
12125         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
12126         (gst_video_sink_class_init):
12127         Throw away frames that are later than 20 ms.
12128
12129 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
12130
12131         Patch by: Fabrizio Gennari
12132
12133         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
12134           Set depth on WMA caps (#333545)
12135
12136 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
12137
12138         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
12139         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
12140           put Theora BOS pages before others.  This hardcodes
12141           the Ogg/Theora I profile, but hey.
12142
12143 2006-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
12144
12145         * ext/ogg/README:
12146           updated with some examples
12147         * ext/theora/theoraenc.c: (granulepos_to_timestamp),
12148         (granulepos_add), (theora_buffer_from_packet):
12149         * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
12150         (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
12151         (gst_vorbisenc_chain):
12152           implement strategy from ext/ogg/README
12153         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
12154         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
12155         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
12156         (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
12157           Fix muxer so that oggz-validate is happy with all streams;
12158           except for no eos mark, and the BOS page ordering
12159         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
12160         (check_buffer_granulepos):
12161         * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
12162           update tests to check for OFFSET being set as requested
12163           fixed type of granulepos, it's not a ClockTime
12164
12165 2006-03-05  Julien MOUTTE  <julien@moutte.net>
12166
12167         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
12168         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
12169         Check that the xvimage we are creating has a correct size
12170         before returning it. (#314897)
12171
12172 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
12173
12174         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
12175           Give id3 and ape tag typefinders a rank slightly higher
12176           than PRIMARY to ensure they're always run before any of
12177           the other typefinders (in particular wav and mp3) (#324186).
12178
12179 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
12180
12181         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
12182           Add support for '3IVD' fourcc (#333403).
12183
12184 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
12185
12186         * configure.ac:
12187           Bump requirements to GStreamer CVS for the new error enum.
12188
12189         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
12190           Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
12191           space left on the device (fixes #333352).
12192
12193 2006-03-04  Sebastien Moutte  <sebastien@moutte.net>
12194
12195         * win32/vs6:
12196           add a project file for libgstvolume
12197           update the workspace
12198
12199 2006-03-03  Thomas Vander Stichele  <thomas at apestaart dot org>
12200
12201         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
12202         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
12203         (GST_START_TEST):
12204           Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
12205           Set IN_CAPS on header buffers
12206
12207 2006-03-02  Wim Taymans  <wim@fluendo.com>
12208
12209         * docs/plugins/Makefile.am:
12210         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12211         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12212         Add audioresample to docs.
12213
12214         * gst/audioconvert/gstaudioconvert.c:
12215         Add revision date.
12216
12217         * gst/audioresample/gstaudioresample.c:
12218         (gst_audioresample_base_init), (gst_audioresample_class_init),
12219         (gst_audioresample_init), (gst_audioresample_dispose),
12220         (audioresample_get_unit_size), (audioresample_transform_caps),
12221         (resample_set_state_from_caps), (audioresample_transform_size),
12222         (audioresample_set_caps), (audioresample_event),
12223         (audioresample_do_output), (audioresample_transform),
12224         (audioresample_pushthrough), (gst_audioresample_set_property),
12225         (gst_audioresample_get_property), (plugin_init):
12226         * gst/audioresample/gstaudioresample.h:
12227         Added docs.
12228         Small code cleanups.
12229
12230 2006-03-02  Wim Taymans  <wim@fluendo.com>
12231
12232         * docs/plugins/Makefile.am:
12233         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12234         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12235         Added videoscale to docs.
12236
12237         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
12238         (gst_video_rate_swap_prev), (gst_video_rate_event),
12239         (gst_video_rate_chain):
12240         Fix typo in docs.
12241
12242         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
12243         (gst_video_scale_init), (gst_video_scale_prepare_size),
12244         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
12245         (gst_video_scale_fixate_caps), (gst_video_scale_transform):
12246         * gst/videoscale/gstvideoscale.h:
12247         Added docs, examples.
12248         Some code cleanups.
12249         Post errors instead of g_warning.
12250
12251 2006-03-02  Wim Taymans  <wim@fluendo.com>
12252
12253         * docs/libs/gst-plugins-base-libs-docs.sgml:
12254         * docs/libs/gst-plugins-base-libs-sections.txt:
12255         * docs/libs/gst-plugins-base-libs.types:
12256         * docs/plugins/Makefile.am:
12257         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12258         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12259         Added some more docs to libs and plugins.
12260
12261         * gst-libs/gst/audio/gstringbuffer.c:
12262         (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
12263         * gst-libs/gst/audio/gstringbuffer.h:
12264         Document ringbuffer some more.
12265
12266         * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
12267         (gst_video_rate_setcaps), (gst_video_rate_reset),
12268         (gst_video_rate_init), (gst_video_rate_flush_prev),
12269         (gst_video_rate_swap_prev), (gst_video_rate_event),
12270         (gst_video_rate_chain), (gst_video_rate_change_state):
12271         * gst/videorate/gstvideorate.h:
12272         Fix videorate to use segments.
12273         Make it work with 0/1 framerates (closes #331903)
12274         Handle EOS correctly.
12275         Added docs.
12276
12277 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
12278
12279         * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
12280         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
12281         (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
12282           In state change function, first chain up to parent class,
12283           then handle downwards state change stuff. Remove some
12284           commented out cruft from 0.8 code.
12285
12286 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
12287
12288         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
12289         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
12290         (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
12291         (gst_ogm_parse_chain):
12292           Don't remove/re-add source pad if the new caps are the same as
12293           the old caps anyway (#333042). When removing source pad, don't
12294           unref it afterwards - we didn't ref it when adding. Sprinkle some
12295           GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
12296           after using gst_pad_get_parent(). Return downstream flow return
12297           value in chain function.
12298
12299 2006-03-02  Wim Taymans  <wim@fluendo.com>
12300
12301         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12302         * docs/plugins/gst-plugins-base-plugins.args:
12303         * docs/plugins/gst-plugins-base-plugins.hierarchy:
12304         * docs/plugins/gst-plugins-base-plugins.interfaces:
12305         * docs/plugins/gst-plugins-base-plugins.signals:
12306         Fix hierarchy, added some more elements to the docs.
12307
12308         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12309         (gst_ffmpegcsp_get_type):
12310         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
12311         Fix docs for ffmpegcolorspace.
12312
12313 2006-03-01  Tim-Philipp Müller  <tim at centricular dot net>
12314
12315         * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
12316         (apetag_type_find), (ape_type_find), (plugin_init):
12317           Some typefinding fine-tuning:
12318           - rank ID3/APE tags in order of preference via probabilities, so that
12319             ID3v2 > APEv2 > APEv1 > ID3v1.
12320           - three or four bytes don't really justify MAXIMUM probability,
12321             change those to 'very likely' (musepack and monkeysaudio).
12322
12323 2006-03-01  Wim Taymans  <wim@fluendo.com>
12324
12325         * docs/plugins/Makefile.am:
12326         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12327         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12328         * ext/alsa/gstalsamixer.c:
12329         * ext/alsa/gstalsamixer.h:
12330         * ext/alsa/gstalsamixerelement.c:
12331         (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
12332         * ext/alsa/gstalsamixerelement.h:
12333         * ext/alsa/gstalsasink.c:
12334         * ext/alsa/gstalsasink.h:
12335         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
12336         (gst_alsasrc_init):
12337         * ext/alsa/gstalsasrc.h:
12338         Added alsa docs.
12339         Small code cleanups.
12340
12341 2006-03-01  Wim Taymans  <wim@fluendo.com>
12342
12343         * ext/theora/Makefile.am:
12344         Dist new header too,
12345
12346 2006-03-01  Wim Taymans  <wim@fluendo.com>
12347
12348         * docs/plugins/Makefile.am:
12349         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12350         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12351         * ext/gnomevfs/gstgnomevfssink.h:
12352         * ext/gnomevfs/gstgnomevfssrc.h:
12353         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
12354         * ext/vorbis/vorbisdec.h:
12355         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
12356         * ext/vorbis/vorbisenc.h:
12357         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
12358         (vorbis_parse_chain), (vorbis_parse_change_state):
12359         * ext/vorbis/vorbisparse.h:
12360         * gst/audioconvert/gstaudioconvert.h:
12361         * gst/tcp/gsttcpserversink.h:
12362         * gst/videotestsrc/gstvideotestsrc.c:
12363         * gst/videotestsrc/gstvideotestsrc.h:
12364         * gst/volume/gstvolume.c:
12365         * gst/volume/gstvolume.h:
12366         Fix some more docs.
12367         Added docs for vorbisdec and vorbisparse.
12368         Fix vorbisparse.
12369
12370 2006-03-01  Wim Taymans  <wim@fluendo.com>
12371
12372         * docs/plugins/Makefile.am:
12373         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12374         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12375         * ext/pango/gstclockoverlay.h:
12376         * ext/pango/gsttextoverlay.h:
12377         * ext/pango/gsttextrender.h:
12378         * ext/pango/gsttimeoverlay.h:
12379         * ext/theora/gsttheoradec.h:
12380         * ext/theora/gsttheoraenc.h:
12381         * ext/theora/theoradec.c:
12382         * ext/theora/theoraenc.c:
12383         * gst/audioconvert/gstaudioconvert.h:
12384         * gst/audiotestsrc/gstaudiotestsrc.h:
12385         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
12386         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
12387         * gst/tcp/gstmultifdsink.h:
12388         Updated/added documentation.
12389
12390         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
12391         (gst_text_overlay_halign_get_type),
12392         (gst_text_overlay_wrap_mode_get_type),
12393         (gst_text_overlay_base_init), (gst_text_overlay_class_init),
12394         (gst_text_overlay_init), (gst_text_overlay_set_property),
12395         (gst_text_overlay_get_property):
12396         Fix up properties to be enums instead of string to make bindings,
12397         introspection and automatic GUI creation possible.
12398         Add getters for the properties.
12399
12400 2006-02-28  Sebastien Moutte  <sebastien@moutte.net>
12401
12402         * gst/audiotestsrc/gstaudiotestsrc.c:
12403           added defines of M_PI and M_PI_2
12404         * gst/ffmpegcolorspace/avcodec.h:
12405           removed #include "stdint.h" for win32 as _stdint.h is 
12406           autogenerated to win32/common
12407         * win32/common/libgstaudio.def:
12408         * win32/common/libgsttag.def:
12409           added some exports
12410         * win32/vs6:
12411           some project files bugs corrected
12412         * win32/vs7:
12413           project files are reset to the default vs7 configuration 
12414           (they link to msvcr71.dll using default optimizations)
12415           
12416 2006-02-28  Wim Taymans  <wim@fluendo.com>
12417
12418         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
12419         Fix some docs.
12420
12421 2006-02-28  Edward Hervey  <edward@fluendo.com>
12422
12423         * ext/alsa/gstalsasrc.c:
12424         Set proper class on the ElementDetails:
12425         Source/Audio instead of Src/Audio/
12426
12427 2006-02-28  Edward Hervey  <edward@fluendo.com>
12428
12429         * gst/videoscale/vs_scanline.c:
12430         (vs_scanline_resample_nearest_RGBA):
12431         Revert optimization in videoscale. It should go in liboil and have
12432         an appropriate liboil function.
12433
12434 2006-02-28  Wim Taymans  <wim@fluendo.com>
12435
12436         * gst-libs/gst/audio/gstbaseaudiosink.c:
12437         (gst_base_audio_sink_provide_clock):
12438         Don't try to provide a clock in the NULL state.
12439
12440 2006-02-28  Wim Taymans  <wim@fluendo.com>
12441
12442         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
12443         (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
12444         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
12445         (gst_ogg_demux_deactivate_current_chain),
12446         (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
12447         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
12448         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
12449         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
12450         Use GstSegment infrastructure to remove duplicated code
12451         and handle more seek cases correctly.
12452
12453 2006-02-28  Wim Taymans  <wim@fluendo.com>
12454
12455         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12456         (gst_ffmpegcsp_transform):
12457         Don't ignore return code from ffmpeg convert function.
12458
12459         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
12460         Split out some long statements to ease debugging.
12461
12462 2006-02-27  Jan Schmidt  <thaytan@mad.scientist.com>
12463
12464         * ext/libvisual/visual.c: (gst_visual_init),
12465         (gst_vis_src_negotiate), (get_buffer), (plugin_init):
12466         Don't use gst_pad_use_fixed_caps, because it prevents downstream from
12467         being able to renegotiate the size. Instead, use the negotiation
12468         algorithm from the goom plugin to pick an initial output caps. 
12469
12470         Also, allow theoretical libvisual plugins that might support non-GL 
12471         output even if they also do GL.
12472
12473 2006-02-26  Julien MOUTTE  <julien@moutte.net>
12474
12475         * ext/libvisual/visual.c: (gst_visual_init),
12476         (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
12477         (plugin_init): Load only non GL plugins. Fix some memleaks and 
12478         possible negotiation issues.
12479
12480 2006-02-25  Julien MOUTTE  <julien@moutte.net>
12481
12482         * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
12483
12484 2006-02-24  Michael Smith  <msmith@fluendo.com>
12485
12486         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
12487         (cmml_type_find), (plugin_init):
12488           Fix CMML type find function to not require a specific minor version
12489           of the CMML header.
12490
12491           Add an MPEG4 video elementary stream typefind function.
12492
12493 2006-02-04  Michael Smith  <msmith@fluendo.com>
12494
12495         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
12496         (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
12497         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
12498         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
12499         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
12500         (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
12501           Annodex support in ogg demuxer. Doesn't do very much without the
12502           other annodex patches (to come).
12503
12504 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
12505
12506         Patch by: Fabrizio Gennari <fabrizio dot get at tiscali dot it>
12507
12508         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
12509           Pick up palette for MS video v1 (#327028)
12510
12511 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
12512
12513         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12514         (gst_ffmpegcsp_caps_remove_format_info),
12515         (gst_ffmpegcsp_get_unit_size):
12516           The 'palette_data' field from incoming RGB caps shouldn't be
12517           proxied on outgoing YUV caps; also, restrict unit size
12518           adjustment in case of paletted data only to the unit that
12519           actually has a palette. Fixes #330711.
12520
12521 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
12522
12523         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12524         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
12525         (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
12526         (gst_ffmpegcsp_get_unit_size):
12527           Plug some memory leaks.
12528
12529 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
12530
12531         * sys/ximage/Makefile.am:
12532         * sys/xvimage/Makefile.am:
12533           Add some _CFLAGS and _LIBS that seem to be missing
12534           and/or required for Cygwin (see #317048).
12535
12536 2006-02-22  Wim Taymans  <wim@fluendo.com>
12537
12538         * ext/alsa/gstalsasrc.c:
12539         Fix description as pointed out by caugier.
12540
12541 2006-02-22  Tommi Myöhänen  <ext-tommi do myohanen at nokia dot com>
12542
12543         Reviewed by : Edward Hervey  <edward@fluendo.com>
12544
12545         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
12546         (qt_type_find):
12547         Better 3gp typefinding (#331526).
12548
12549 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
12550
12551         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
12552           Don't send EOS event here, the base class will send one for us.
12553
12554         * gst/playback/gstplaybasebin.c: (prepare_output):
12555           Subpictures without video stream aren't allowed either.
12556         
12557         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
12558           Fix debug statement copy'n'paste-o.
12559
12560 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
12561
12562         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
12563           Fix issues with mixer keeping state when muting/unmuting
12564           and when changing the volume whilst muted (see #331763
12565           and #331765).
12566
12567 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
12568
12569         * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
12570         (parse_subrip), (gst_sub_parse_format_autodetect):
12571           Set right caps given that we send escaped text. Also,
12572           honour <i></i>, <b></b> and <u></u> markers that can be found
12573           in .srt files (fixes #310202).
12574
12575 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
12576
12577         * gst-libs/gst/audio/mixerutils.c:
12578         (element_factory_rank_compare_func):
12579           Make order in which elements are tried more determinable.
12580
12581 2006-02-20  Julien MOUTTE  <julien@moutte.net>
12582
12583         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
12584         (remove_element_chain), (cleanup_decodebin),
12585         (gst_decode_bin_change_state): Make decodebin reusable by
12586         fixing remove_element_chain first and then introduce a
12587         cleaner in state change to ->NULL. (Closes #331678)
12588
12589 2006-02-19  Wim Taymans  <wim@fluendo.com>
12590
12591         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
12592         use 0666 mask when creating files so umask gets applied
12593         correctly. Fixes #331295.
12594
12595 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
12596
12597         * gst/subparse/Makefile.am:
12598         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
12599         (gst_ssa_parse_dispose), (gst_ssa_parse_init),
12600         (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
12601         (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
12602         (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
12603         (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
12604         * gst/subparse/gstssaparse.h:
12605         * gst/subparse/gstsubparse.c: (plugin_init):
12606           Add very basic parser for SSA subtitle streams (as often
12607           found in matroska files).
12608
12609 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
12610
12611         * gst/playback/gstdecodebin.c: (mimetype_is_raw):
12612           That should be text/x-pango-markup, not text/x-pango-layout.
12613
12614 2006-02-19  Julien MOUTTE  <julien@moutte.net>
12615
12616         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
12617         Polishing.
12618
12619 2006-02-19  Julien MOUTTE  <julien@moutte.net>
12620
12621         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
12622         (gst_text_overlay_finalize), (gst_text_overlay_init),
12623         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
12624         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
12625         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
12626         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
12627         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
12628         Fix state change deadlock.
12629
12630 2006-02-19  Julien MOUTTE  <julien@moutte.net>
12631
12632         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
12633         (gst_text_overlay_finalize), (gst_text_overlay_init),
12634         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
12635         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
12636         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
12637         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
12638         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
12639         * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
12640         and subtitles files.
12641
12642 2006-02-19  Julien MOUTTE  <julien@moutte.net>
12643
12644         * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
12645         should be considered as raw.
12646
12647 2006-02-19  Julien MOUTTE  <julien@moutte.net>
12648
12649         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
12650         (cb_probe):
12651         * gst/playback/gststreaminfo.h: Introduce language informations.
12652
12653 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
12654
12655         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
12656         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
12657         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
12658         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
12659         Set shared memory segments to be deleted as soon as we have attached,
12660         that way they get cleaned up automatically if we crash.
12661
12662 2006-02-18  Julien MOUTTE  <julien@moutte.net>
12663
12664         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text): 
12665         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
12666         functions are called with lock held.
12667
12668 2006-02-18  Julien MOUTTE  <julien@moutte.net>
12669
12670         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
12671         (gst_text_overlay_finalize), (gst_text_overlay_init),
12672         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
12673         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
12674         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
12675         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
12676         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
12677         (gst_text_overlay_change_state): Refactoring of textoverlay
12678         without collectpads. This now supports sparse subtitles coming
12679         from a demuxer instead of a sub file. Seeking is still broken 
12680         though. Need to discuss with wtay some more on how to handle
12681         seeking correctly.
12682         * ext/pango/gsttextoverlay.h:
12683         * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
12684         subtitles coming from the demuxer.
12685
12686 2006-02-17  Wim Taymans  <wim@fluendo.com>
12687
12688         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
12689         (gst_vorbisenc_convert_sink):
12690         Use some more scaling functions.
12691
12692 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
12693
12694         * ext/cdparanoia/gstcdparanoiasrc.c:
12695         (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
12696         (gst_cd_paranoia_paranoia_callback),
12697         (gst_cd_paranoia_src_signal_is_being_watched),
12698         (gst_cd_paranoia_src_read_sector):
12699         * ext/cdparanoia/gstcdparanoiasrc.h:
12700           Add back 'transport-error' and 'uncorrected-error' signals and
12701           make them actually be fired when bad stuff happens (#319340).
12702
12703 2006-02-17  Wim Taymans  <wim@fluendo.com>
12704
12705         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
12706         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
12707         (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
12708         (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
12709         (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
12710         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
12711         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
12712         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
12713         (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
12714         (gst_ring_buffer_clear):
12715         Small cleanups.
12716         Added some G_LIKELY.
12717
12718 2006-02-17  Wim Taymans  <wim@fluendo.com>
12719
12720         * gst-libs/gst/audio/TODO:
12721         Update TODO
12722
12723         * gst-libs/gst/audio/gstbaseaudiosink.c:
12724         (gst_base_audio_sink_get_offset):
12725         When trying to play samples ASAP and we don't have a
12726         previous sample, try to play at position 0 instead of
12727         an invalid position.
12728
12729 2006-02-17  Wim Taymans  <wim@fluendo.com>
12730
12731         * ext/alsa/gstalsasink.c: (gst_alsasink_open),
12732         (gst_alsasink_reset):
12733         Also release lock when we get an error in _reset();
12734         fix an error message.
12735
12736 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
12737
12738         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
12739         (gst_alsasink_init), (get_channel_free_structure),
12740         (caps_add_channel_configuration), (gst_alsasink_getcaps),
12741         (gst_alsasink_close):
12742         * ext/alsa/gstalsasink.h:
12743           Add support for more than 2 channels (#326720).
12744
12745 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
12746
12747         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
12748           Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
12749           with 4 or 6 channels, assume a default channel layout to make things
12750           work (not sure there's anything else we can do in those cases).
12751
12752 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
12753
12754         * gst-libs/gst/audio/multichannel.c:
12755           Minor docs fix.
12756
12757         * gst-libs/gst/riff/Makefile.am:
12758         * gst-libs/gst/riff/riff-ids.h:
12759         * gst-libs/gst/riff/riff-media.c:
12760         (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
12761           Add support for WAVEFORMATEX, eg. PCM audio with more than two
12762           channels and a channel layout map.
12763           
12764 2006-02-16  Mathieu Garcia <b0nk at free dot fr>
12765
12766         Reviewed by Edward Hervey  <edward@fluendo.com>
12767
12768         * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA): 
12769         C-level optimization of the RGBA nearest neighbour function.
12770         Eventually this might end up in liboil with vectorized versions.
12771
12772 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
12773
12774         * gst-libs/gst/audio/multichannel.c:
12775         (gst_audio_get_channel_positions):
12776           When we have more than 2 channels, but no channel layout is
12777           specified in the caps, return some default channel layout
12778           to the caller and warn about about a possibly buggy element
12779           (could be buggy filtercaps as well of course) (#317038).
12780
12781 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
12782
12783         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
12784           Add gst-libs/gst/cdda to list of lib search paths.
12785
12786 2006-02-15  Andy Wingo  <wingo@pobox.com>
12787
12788         * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
12789         timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
12790         to the Lord Jesus that I do not have to touch the ogg muxer ever
12791         again.
12792
12793 2006-02-15  Edward Hervey  <edward@fluendo.com>
12794
12795         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
12796         quicktime movie files can also contain 'uuid' atoms.
12797
12798 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
12799
12800         * gst/audioconvert/plugin.c: (plugin_init):
12801           Register the GstAudioChannelPosition enum type with the type
12802           system in the plugin_init function, so that it is known before
12803           any element actually makes use of multi-channel stuff. This is
12804           required for example if one wants to be able to deserialise/use
12805           a caps string with channel positions before any pipeline has
12806           been setup and started, like with gst-launch.
12807
12808 2006-02-14  Wim Taymans  <wim@fluendo.com>
12809
12810         * gst-libs/gst/audio/gstringbuffer.c:
12811         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
12812         (gst_ring_buffer_samples_done), (wait_segment),
12813         (gst_ring_buffer_commit), (gst_ring_buffer_clear):
12814         Add some compiler G_(UN_)LIKELY help.
12815         SIGNAL the ringbuffer waiters when going to PAUSED as well to
12816         make sure they can exit their functions. Should fix #330748
12817
12818 2006-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
12819
12820         * Makefile.am:
12821         * configure.ac:
12822         * win32/MANIFEST:
12823         * win32/common/_stdint.h:
12824           Windows does not have long long; copy the generated _stdint.h
12825         * win32/common/interfaces-enumtypes.c:
12826         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
12827         (gst_mixer_track_flags_get_type),
12828         (gst_tuner_channel_flags_get_type):
12829         * win32/common/multichannel-enumtypes.c:
12830         (gst_audio_channel_position_get_type):
12831           update
12832
12833 2006-02-13  Wim Taymans  <wim@fluendo.com>
12834
12835         * gst-libs/gst/audio/gstbaseaudiosink.c:
12836         (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
12837         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
12838         Always sync on first sample we receive when starting.
12839
12840 2006-02-13  Wim Taymans  <wim@fluendo.com>
12841
12842         * gst/playback/gstplaybin.c: (gen_vis_element):
12843         Update vis bin docs.
12844         Move queue after tee so we don't queue video buffers but
12845         audio samples instead. Fixes problems where the video queue
12846         is filled and the audio queue empty.
12847
12848 2006-02-13  Tim-Philipp Müller  <tim at centricular dot net>
12849
12850         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
12851           No need to push an EOS event here, GstBaseSrc will do that for us
12852           when we return FLOW_UNEXPECTED.
12853           
12854 2006-02-12  Wim Taymans  <wim@fluendo.com>
12855
12856         * gst-libs/gst/audio/gstbaseaudiosink.c:
12857         (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
12858         (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
12859         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
12860         Use scale functions when possible.
12861         Fix error messages.
12862         Free clockid when after waiting for EOS.
12863         Use G_(UN_)LIKLY when it makes sense.
12864         Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
12865
12866 2006-02-12  Edward Hervey  <edward@fluendo.com>
12867
12868         * gst/playback/gstplaybasebin.c: (prepare_output): 
12869         Remove stray semi-colon (fixes #330888).
12870
12871 2006-02-12  Jan Schmidt  <thaytan@mad.scientist.com>
12872
12873         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
12874         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
12875         Fix up the XShm call testing so that we catch errors, and don't
12876         cause new ones by attempting to detach from a segment we failed
12877         to attach to. Fixes #312439.
12878
12879 2006-02-10  Edward Hervey  <edward@fluendo.com>
12880
12881         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
12882         Added flv file typefind (video/x-flv).
12883
12884 2006-02-10  Edward Hervey  <edward@fluendo.com>
12885
12886         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
12887         (gst_riff_create_video_template_caps):
12888         Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
12889         Also added the caps to the default set of riff video caps.
12890
12891 2006-02-09  Andy Wingo  <wingo@pobox.com>
12892
12893         * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
12894         time and the end time of the last packet in the page.
12895         (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
12896         on the pages in our queue, set the duration as well. Reflow a
12897         debug statement.
12898         (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
12899         Fixes bad muxing order.
12900
12901 2006-02-09  Thomas Vander Stichele  <thomas at apestaart dot org>
12902
12903         * gst-libs/gst/rtp/gstbasertppayload.c:
12904         (gst_basertppayload_setcaps), (gst_basertppayload_push):
12905           update seqnum before setting it on the packet; this makes sure
12906           that the timestamp and seqnum properties match after pushing
12907           a buffer
12908
12909 2006-02-09  Andy Wingo  <wingo@pobox.com>
12910
12911         * gst-libs/gst/audio/gstringbuffer.c
12912         (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
12913         overflow after 13.5 hours of recording. Kapow!
12914
12915         * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
12916         the buffer size -- we don't care about underrun/overrun reporting
12917         right now, just need to return a useful value.
12918
12919 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
12920
12921         * configure.ac:
12922           Back to CVS
12923
12924 === release 0.10.3 ===
12925
12926 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
12927
12928         * configure.ac:
12929           releasing 0.10.3, "Under Pressure"
12930
12931 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
12932
12933         * configure.ac:
12934         Drat. Bump libtool version number for new API.
12935         Prelease 0.10.2.3 (of 0.10.3)
12936
12937 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
12938
12939         * configure.ac:
12940         * win32/common/config.h:
12941         0.10.2.2 prerelease (of 0.10.3).
12942
12943 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
12944
12945         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
12946           Revert Andy's newsegment change pending a more correct
12947           fix.
12948
12949 2006-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
12950
12951         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
12952         (qt_type_find), (plugin_init):
12953           detect more files as 3gp
12954           group and reorder the iso file formats
12955
12956 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
12957
12958         * ext/vorbis/vorbis.c: (plugin_init):
12959           Register musicbrainz tags, so apps don't have to.
12960
12961 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
12962
12963         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
12964         (gst_tag_to_vorbis_tag):
12965           Make sure we called gst_tag_register_musicbrainz_tags()
12966           before possibly mapping a vorbiscomment string from/to a
12967           musicbrainz tag.
12968
12969 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
12970
12971         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
12972           In case we can't find the required number of consecutive
12973           mpeg audio frames to positively identify an MPEG audio
12974           stream, check if there's at least a valid mpeg audio
12975           frame right at offset 0 and if so suggest mpeg/audio
12976           caps with a very low probability (#153004).
12977
12978 2006-02-07  Andy Wingo  <wingo@pobox.com>
12979
12980         * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
12981         a TIME segment if we get timestamped buffers. Requires recent
12982         fixes in core to work properly.
12983
12984 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
12985
12986         * gst/playback/gstplaybasebin.c: (prepare_output):
12987           Don't print the URI as part of the error message, it
12988           makes error dialogs look rather ugly, especially if
12989           the URI is very long or has characters in it that
12990           need escaping.
12991
12992 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
12993
12994         * gst/playback/gstplaybasebin.c: (prepare_output):
12995           Error out if we have only text or subtitles, but nothing
12996           else. Also error out if we have subtitles but no video
12997           stream.
12998
12999 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
13000
13001         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
13002           Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
13003           Post an error message on the bus when we encounter an
13004           error, which will hopefully be more meaningful than the
13005           'Internal Flow Error' message users get to see if we
13006           just return GST_FLOW_ERROR.
13007
13008 2006-02-07  Andy Wingo  <wingo@pobox.com>
13009
13010         * configure.ac (GST_MAJORMINOR): Update core version req to
13011         0.10.2.2, for the collectpads API addition (#330244).
13012
13013 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
13014
13015         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
13016           Return FALSE from plugin_init() when GnomeVFS can't
13017           be initialised for some reason (#328423).
13018
13019 2006-02-06  Julien MOUTTE  <julien@moutte.net>
13020
13021         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event): 
13022         Stick to seeking theory until i find the bug.
13023         * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
13024
13025 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
13026
13027         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
13028         (theora_enc_finalize), (theora_enc_sink_setcaps),
13029         (theora_set_header_on_caps), (theora_enc_chain),
13030         (theora_enc_change_state):
13031         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
13032           Make theoraenc and the tests leak free. Like, really.
13033
13034 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
13035
13036         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
13037         (theora_enc_finalize), (theora_enc_sink_setcaps):
13038           Add a finalize method to ensure we clean up state even if
13039           someone omitted the state change back to NULL.
13040
13041         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
13042         (gst_vorbisenc_chain):
13043           Free some more leaked bits.
13044
13045         * tests/check/pipelines/theoraenc.c: (start_pipeline),
13046         (stop_pipeline):
13047           Wait for state changes to happen if they're ASYNC.
13048
13049           This ought to teach those fancy pants buildbots a lesson.
13050
13051 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
13052
13053         * gst-libs/gst/tag/gstid3tag.c:
13054           Add mapping for ID3 International Standard Recording Code
13055           tag "TSRC"
13056
13057 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
13058
13059         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
13060           Don't leak tag names.
13061
13062 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
13063
13064         * docs/libs/gst-plugins-base-libs-docs.sgml:
13065         * docs/libs/gst-plugins-base-libs-sections.txt:
13066         * gst-libs/gst/tag/gstid3tag.c:
13067         * gst-libs/gst/tag/gstvorbistag.c:
13068         * gst-libs/gst/tag/tags.c:
13069           Split libgsttag docs into multiple sections.
13070
13071 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
13072
13073         * docs/libs/Makefile.am:
13074         * docs/libs/gst-plugins-base-libs-docs.sgml:
13075         * docs/libs/gst-plugins-base-libs-sections.txt:
13076         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
13077         * gst-libs/gst/tag/gstvorbistag.c:
13078         * gst-libs/gst/tag/tag.h:
13079         * gst-libs/gst/tag/tags.c:
13080           Add libgsttag to the docs.
13081
13082 2006-02-05  Julien MOUTTE  <julien@moutte.net>
13083
13084         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
13085         (gst_text_overlay_init), (gst_text_overlay_src_event),
13086         (gst_text_overlay_collected): Fix clockoverlay.
13087
13088 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
13089
13090         * docs/libs/compiling.sgml:
13091           Fix typo: it's pkg-config, not pkg-gconfig
13092
13093         * docs/libs/gst-plugins-base-libs-docs.sgml:
13094         * docs/libs/gst-plugins-base-libs-sections.txt:
13095         * docs/libs/tmpl/gstgconf.sgml:
13096           There is no libgstgconf in 0.10, remove it
13097           from the docs.
13098
13099 2006-02-05  Julien MOUTTE  <julien@moutte.net>
13100
13101         * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
13102         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
13103         (gst_text_overlay_src_event), (gst_text_overlay_collected):
13104         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
13105         (gst_sub_parse_class_init), (gst_sub_parse_init),
13106         (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
13107         (parse_mpsub), (parser_state_init), (handle_buffer),
13108         (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
13109         * gst/subparse/gstsubparse.h: Introduce seeking code.
13110
13111 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
13112
13113         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
13114           Add comment about LANGUAGE tag inconsistency (we want
13115           ISO-639-1, but extract three-letter identifiers?)
13116
13117         * po/POTFILES.in:
13118           Add two translatable files.
13119
13120 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
13121
13122         * gst-libs/gst/tag/Makefile.am:
13123         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
13124         * gst-libs/gst/tag/tag.h:
13125         * gst-libs/gst/tag/tags.c:
13126         (gst_tag_register_musicbrainz_tags_internal),
13127         (gst_tag_register_musicbrainz_tags):
13128           Forward-port some tags stuff from the 0.8 branch. This is
13129           mostly the addition of musicbrainz tags and their mapping
13130           to vorbistags, and a vorbistag mapping of the language tag.
13131
13132 2006-02-05  Julien MOUTTE  <julien@moutte.net>
13133
13134         * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
13135         refactoring.
13136
13137 2006-02-04  David Schleef  <ds@schleef.org>
13138
13139         * ext/ogg/gstoggmux.c:
13140         * gst/typefind/gsttypefindfunctions.c:
13141           Add Dirac typefinding and add dirac format to oggmux.
13142
13143 2006-02-03  Tim-Philipp Müller  <tim at centricular dot net>
13144
13145         * gst/playback/gstdecodebin.c: (try_to_link_1):
13146           Don't put essential function call into
13147           g_return_*() macro, otherwise it'll all be
13148           replaced by NOOPs when compiling with
13149           G_DISABLE_CHECKS defined.
13150
13151 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
13152
13153         * ext/ogg/gstoggdemux.c:
13154         * ext/ogg/gstoggparse.c:
13155         * gst/tcp/gsttcpserversink.c:
13156         * sys/v4l/v4lsrc_calls.c:
13157         * sys/v4l/v4lsrc_calls.h:
13158         Just make it compile with --disable-gst-debug.
13159
13160 2006-02-03  Wim Taymans  <wim@fluendo.com>
13161
13162         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
13163         (gst_alsasink_class_init), (gst_alsasink_init),
13164         (gst_alsasink_write), (gst_alsasink_reset):
13165         * ext/alsa/gstalsasink.h:
13166         Add lock to protect alsa calls.
13167         Implement reset to flush samples ASAP, does not work
13168         with dmix though.
13169
13170 2006-02-02  Wim Taymans  <wim@fluendo.com>
13171
13172         * gst-libs/gst/audio/gstbaseaudiosink.c:
13173         (gst_base_audio_sink_provide_clock):
13174         Ugh.. getting late I guess...
13175
13176 2006-02-02  Wim Taymans  <wim@fluendo.com>
13177
13178         * gst-libs/gst/audio/gstbaseaudiosink.c:
13179         (gst_base_audio_sink_provide_clock),
13180         (gst_base_audio_sink_set_property),
13181         (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
13182         Don't try to provide a clock when we are not negotiated since
13183         we might not be able to make it run.
13184
13185 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
13186
13187         * gst/playback/gstdecodebin.c: (try_to_link_1):
13188           Unlinking two source pads is ... hard.
13189
13190 2006-02-02  Wim Taymans  <wim@fluendo.com>
13191
13192         * gst-libs/gst/audio/TODO:
13193         Updated.
13194
13195         * gst-libs/gst/audio/gstbaseaudiosink.c:
13196         (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
13197         On EOS, wait till the last sample is played before posting EOS.
13198
13199 2006-02-01  Philippe Kalaf <burger at speedy dot org>
13200
13201         Patch by: Kai Vehmanen
13202         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13203           Adds ability to enable newsegment bypass by setting queue_delay to
13204           zero. Also avoid thread being started if queue_delay is zero.
13205
13206 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
13207
13208         * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
13209           Make test work again by connecting fakesinks to each decoded pad,
13210           which makes the pipeline wait until each fakesink has a buffer
13211           queued before going to PAUSED state. At that point we know the
13212           decodebin pads are negotiated.
13213
13214 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
13215
13216         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
13217         (gst_cdda_base_src_handle_event):
13218         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
13219           Pass unhandled queries to the parent class's query function.
13220
13221 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
13222
13223         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
13224         (gst_ogg_pad_src_query):
13225         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
13226         * ext/theora/theoradec.c: (theora_dec_src_query),
13227         (theora_dec_sink_query):
13228         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
13229         (vorbis_dec_sink_query):
13230         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
13231         (gst_vorbisenc_sink_query):
13232         * gst/adder/gstadder.c: (gst_adder_query):
13233           Pass unhandled queries upstream instead of just
13234           dropping them (#326447). Also, fix supported
13235           query types list for some elements.
13236
13237 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
13238
13239         * gst/typefind/gsttypefindfunctions.c: (au_type_find),
13240         (paris_type_find), (ilbc_type_find), (plugin_init):
13241           Fix typefinding for audio/x-au, audio/x-paris and
13242           audio/iLBC-sh. We cannot use the START_WITH macros
13243           here, because there can only be one typefind factory
13244           with the same name (caps), so the second one would
13245           replace the first one and the first one would never
13246           be called when doing typefinding (see #161712).
13247           
13248
13249 2006-01-31  Wim Taymans  <wim@fluendo.com>
13250
13251         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
13252         (vorbis_handle_header_packet), (vorbis_dec_push),
13253         (vorbis_handle_data_packet):
13254         Use scale_int when we can, add some more scaling.
13255         Check packettype before parsing it.
13256
13257 2006-01-31  Wim Taymans  <wim@fluendo.com>
13258
13259         * ext/theora/theoradec.c: (_theora_granule_time),
13260         (theora_dec_src_convert), (theora_dec_sink_convert):
13261         Call right _scale functions.
13262         Use parameter instead of some other random value.
13263
13264 2006-01-31  Wim Taymans  <wim@fluendo.com>
13265
13266         * ext/theora/theoradec.c: (_theora_granule_frame),
13267         (_theora_granule_time), (_inc_granulepos),
13268         (theora_dec_src_convert), (theora_dec_sink_convert),
13269         (theora_handle_type_packet), (theora_handle_data_packet),
13270         (theora_dec_chain):
13271         Use higher precision timestamps calculation.
13272         Convert some other conversions to _scale.
13273
13274 2006-01-31  Stefan Kost  <ensonic@users.sf.net>
13275
13276         * gst/audiotestsrc/gstaudiotestsrc.c:
13277         (gst_audio_test_src_create_sine_table), (plugin_init):
13278         * gst/volume/gstvolume.c: (plugin_init):
13279           initialize gst_controller before using
13280
13281 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
13282
13283         * tests/check/pipelines/theoraenc.c:
13284         * tests/check/pipelines/vorbisenc.c:
13285         Define constant using G_GINT64_CONSTANT to avoid errors when
13286         passing it around - otherwise it gets truncated to 32 bits.
13287
13288         Fixes failing tests.
13289
13290 2006-01-31  Andy Wingo  <wingo@pobox.com>
13291
13292         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
13293         caps being set doesn't have a framerate value. Basically a stopgap
13294         measure.
13295
13296         * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
13297         technically correct enough to put into core though.
13298         (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
13299         DURATION. Fixes theoraenc ! oggmux.
13300
13301         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
13302         fraction, not double.
13303
13304 2006-01-31  Sebastien Moutte  <sebastien@moutte.net>
13305
13306         * win32/vs7:
13307         add vs7 project files created by Sergey Scobich
13308
13309 2006-01-30  Sebastien Moutte  <sebastien@moutte.net>
13310
13311         * win32/vs8:
13312         add vs8 project files created by Sergey Scobich
13313         
13314 2006-01-30  Andy Wingo  <wingo@pobox.com>
13315
13316         * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
13317         timestamp + duration, not just timestamp -- ogg pages should be
13318         ordered by stop time. Necessary fix given the change in vorbis
13319         timestamps.
13320
13321         * ext/theora/theoraenc.c (theora_enc_sink_setcaps) 
13322         (gst_theora_enc_init): Pull the granule shift out of the encoder.
13323         (granulepos_add): New function, handles the messiness of adjusting
13324         granulepos values.
13325         (theora_buffer_from_packet):
13326         (theora_enc_chain):
13327         (theora_enc_sink_event): Use granulepos_add, not +.
13328
13329         * tests/check/pipelines/theoraenc.c
13330         (check_buffer_granulepos_from_starttime): Just check the frame
13331         count, not the actual granulepos -- we can't dictate to the
13332         encoder when it should be placing keyframes.
13333
13334 2006-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
13335
13336         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
13337           SERVICE_NOT_AVAILABLE happens for example when you're trying to
13338           play an http:// stream from a server that's not serving
13339
13340 2006-01-30  Andy Wingo  <wingo@pobox.com>
13341
13342         * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET): 
13343         * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
13344         remove the UINT64_CONSTANT macro, doesn't appear to be needed or
13345         available.
13346
13347         * ext/theora/gsttheoraenc.h:
13348         * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
13349         although theoraenc was timestamping correctly. Added handling of
13350         streams that start with nonzero timestamps.
13351
13352         * tests/check/Makefile.am:
13353         * tests/check/pipelines/theoraenc.c: New file, basically does same
13354         tests as vorbisenc.
13355
13356         * tests/check/pipelines/vorbisenc.c: I claim these bugs.
13357
13358 2006-01-30  Wim Taymans  <wim@fluendo.com>
13359
13360         * gst-libs/gst/audio/gstaudiosink.c:
13361         (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
13362         (gst_audioringbuffer_pause):
13363         Implement pause that does not wait for completion.
13364
13365         * gst-libs/gst/audio/gstbaseaudiosink.c:
13366         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
13367         Don't drop buffers when going to PAUSED but perform preroll on
13368         remaining samples now that core base class supports this.
13369
13370         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
13371         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
13372         (gst_ring_buffer_commit):
13373         Pause should not signal waiters.
13374         Implement return value of _commit correctly.
13375
13376 2006-01-30  Andy Wingo  <wingo@pobox.com>
13377
13378         * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
13379
13380         * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
13381         updated to timestamp from the first sample, not the last.
13382         (gst_vorbisenc_buffer_from_header_packet): New function, takes
13383         special care of granulepos and timestamp for header packets.
13384         (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
13385         when the first buffer has a nonzero timestamp.
13386
13387         * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
13388         (GstVorbisEnc.subgranule_offset): New members. Take care of the
13389         case when the first audio buffer we get has a nonzero timestamp.
13390         (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
13391         properly timestamp vorbis buffers with the time of the first
13392         sample, not the last.
13393         
13394         * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
13395         vorbis_granule_time_copy -- now it takes the granule/subgranule
13396         offset into account.
13397
13398         * tests/check/pipelines/vorbisenc.c: New test for correctness of
13399         timestamps, durations, and granulepos on buffers produced by
13400         vorbisenc.
13401
13402 2006-01-30  Jan Schmidt  <thaytan@mad.scientist.com>
13403
13404         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
13405         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
13406           Patch from Eric Jonas to support conversions to/from UYVY 
13407           (Fixes: #324626)
13408
13409 2006-01-30  Julien MOUTTE  <julien@moutte.net>
13410
13411         * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
13412         (setup_subtitle), (setup_source), (set_active_source):
13413         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
13414         (gen_text_element), (gen_audio_element), (gen_vis_element),
13415         (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
13416
13417 2006-01-29  Sebastien Moutte  <sebastien@moutte.net>
13418
13419         * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
13420         * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
13421                 use gst_guint64_to_gdouble to be compliant with vs6
13422         * gst/playback/gstdecodebin.c: (try_to_link_1)
13423         * gst/videorate/videorate.c: (gst_video_rate_blank_data)
13424                 use G_GINT64_CONSTANT for int64 constants
13425         * win32/common/libgstinterfaces.def:
13426                 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
13427         * win32/vs6:
13428                 update and add new project files
13429                 
13430 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
13431
13432         * Makefile.am:
13433         * win32/MANIFEST:
13434         * win32/common/interfaces-enumtypes.c:
13435         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
13436         (gst_mixer_track_flags_get_type),
13437         (gst_tuner_channel_flags_get_type):
13438         * win32/common/interfaces-enumtypes.h:
13439         * win32/common/multichannel-enumtypes.c:
13440         (gst_audio_channel_position_get_type):
13441         * win32/common/multichannel-enumtypes.h:
13442           add a win32-update rule like in core, and copy over enumtypes files
13443
13444 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
13445
13446         * win32/MANIFEST:
13447         * win32/common/config.h:
13448         * win32/common/config.h.in:
13449           add config files just like in core
13450
13451 2006-01-28  Tim-Philipp Müller  <tim at centricular dot net>
13452
13453         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
13454           Make gcc-4.1 happy (part of #327357).
13455
13456 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
13457
13458         * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
13459         (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
13460         (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
13461         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
13462         (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
13463         (gst_alsasrc_unprepare), (gst_alsasrc_read):
13464           Update all error messages.  All of them should either use
13465           the default translated message, or actually provide a
13466           translatable string.
13467           Make the string for channel count problems meaningful.
13468
13469 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
13470
13471         * sys/v4l/v4l_calls.c: (gst_v4l_open):
13472           check for and throw RESOURCE_BUSY
13473
13474 2006-01-27  David Schleef  <ds@schleef.org>
13475
13476         * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
13477           checked in this change -- it requires liboil features not
13478           in 0.3.6.  Revert parts.
13479
13480 2006-01-27  David Schleef  <ds@schleef.org>
13481
13482         * REQUIREMENTS:
13483         * configure.ac: update liboil requirement to 0.3.6
13484         * gst/videoscale/Makefile.am:
13485         * gst/videoscale/vs_scanline.c: liboilify
13486
13487 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
13488
13489         * ext/libvisual/visual.c: (get_buffer):
13490           When pad_alloc returns a GstFlowReturn other
13491           than GST_FLOW_OK, make sure it is passed upstream.
13492
13493 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
13494
13495         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
13496         (gst_alsasink_class_init):
13497           Free the device name string.
13498
13499         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
13500         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
13501         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
13502           Don't remove a pad from the collectpads structure until it
13503           is released - it's a request pad, and may receive data again
13504           if the element gets moved back to PLAYING state.
13505
13506         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
13507           Ensure we turn on double buffering on the Xv port, and
13508           set the colour key to something dark and mysterious that
13509           isn't black.
13510
13511 2006-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
13512
13513         * ext/alsa/gstalsaplugin.c: (plugin_init):
13514         * ext/cdparanoia/gstcdparanoiasrc.c:
13515         (gst_cd_paranoia_src_base_init), (plugin_init):
13516         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
13517         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
13518           - a library should not call setlocale. see "Libraries" node in
13519             gettext manual
13520           - make sure all plugins that use translation do bindtextdomain
13521             to point to the localedir
13522         * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
13523         (setup_sinks), (plugin_init):
13524           all this, and check for NULL when creating sinks
13525
13526 2006-01-27  Julien MOUTTE  <julien@moutte.net>
13527
13528         * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
13529         (plugin_init): Make typefinding of subtitles work again.
13530
13531 2006-01-26  Tim-Philipp Müller  <tim at centricular dot net>
13532
13533         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
13534         (mp3_type_frame_length_from_header), (mp3_type_find),
13535         (wavpack_type_find), (m4a_type_find), (ircam_type_find),
13536         (plugin_init):
13537           Backport a bunch of typefinding fixes from the 0.8 branch.
13538           Also, improve wavpack typefinding: if we can't peek the
13539           entire wavpack block, try to parse the bits we can get and
13540           see if we find what we're looking for in those.
13541
13542 2006-01-26  Julien MOUTTE  <julien@moutte.net>
13543
13544         * sys/ximage/ximagesink.c:
13545         (gst_ximagesink_calculate_pixel_aspect_ratio):
13546         * sys/xvimage/xvimagesink.c:
13547         (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
13548         more cases of pixel aspect ratio.
13549
13550 2006-01-26  Edward Hervey  <edward@fluendo.com>
13551
13552         * gst/playback/gstdecodebin.c: (pad_probe):
13553         Also consider the flush-start and tag events as unblockers
13554         for the pad probes.
13555
13556 2006-01-26  Julien MOUTTE  <julien@moutte.net>
13557
13558         * gst/playback/gstplaybin.c: (gst_play_bin_init),
13559         (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
13560         (gst_play_bin_vis_blocked), (gst_play_bin_set_property): 
13561         On the fly visualisation switch, works disabling, enabling as
13562         well but it won't be able to enable vis in a playbin that was
13563         created with no visualisation.
13564
13565 2006-01-25  Wim Taymans  <wim@fluendo.com>
13566
13567         * gst-libs/gst/audio/gstbaseaudiosink.c:
13568         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
13569         Undo previous commit that returned WRONG_STATE sooner, it breaks 
13570         resume after pause.
13571
13572 2006-01-25  Wim Taymans  <wim@fluendo.com>
13573
13574         * gst-libs/gst/audio/gstbaseaudiosink.c:
13575         (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
13576         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
13577         Improve debugging.
13578         Post error when caps cannot be parsed.
13579         Resync on discontinuity in the stream.
13580         Clip samples to segment boundaries.
13581         return WRONG_STATE sooner when we are flushing.
13582
13583         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
13584         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
13585         Make audiosrc operate in TIME.
13586         Set TIMESTAMP and DURATION on buffers.
13587
13588 2006-01-24  Tim-Philipp Müller  <tim at centricular dot net>
13589
13590         * tests/examples/seek/seek.c: (main):
13591           Output tag messages as well.
13592
13593 2006-01-23  Edward Hervey  <edward@fluendo.com>
13594
13595         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
13596         (free_pad_probes), (remove_fakesink), (pad_probe),
13597         (close_pad_link), (gst_decode_bin_change_state):
13598         Replace GstPadBlockCallback with pad probes that detect
13599         first buffer AND eos before removing fakesink.
13600         Fixes hang with demuxers doing EOS while pre-rolling.
13601         Solves #328279
13602
13603 2006-01-23  Andy Wingo  <wingo@pobox.com>
13604
13605         * ext/alsa/gstalsasink.c:
13606         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13607         (gst_base_rtp_depayload_setcaps),
13608         (gst_base_rtp_depayload_add_to_queue),
13609         (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
13610         
13611         Patch by: Jens Granseuer <jensgr at gmx dot net>
13612
13613 2006-01-22  Julien MOUTTE  <julien@moutte.net>
13614
13615         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
13616         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
13617         (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some 
13618         frames. We might get a frame destroyed after changing state to
13619         NULL, adding a safety check on xcontext.
13620
13621 2006-01-22  Tim-Philipp Müller  <tim at centricular dot net>
13622
13623         * gst-libs/gst/interfaces/xoverlay.c:
13624           Fix prepare-xwindow-id code example in the docs - we need to
13625           ignore all messages that aren't element messages as well.
13626           
13627 2006-01-21  Julien MOUTTE  <julien@moutte.net>
13628
13629         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
13630           I think one day i'll completely undestand how caps negotiation
13631           is supposed to work. This refactoring handles buffer_alloc
13632           called with caps we can't handle. We definitely don't want a
13633           set_caps with those caps, so we define and allocate a buffer
13634           we would like to receive.
13635
13636 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
13637
13638         * gst/playback/gstplaybasebin.c: (setup_source):
13639           Free iterator when done.
13640
13641 2006-01-17  Jan Schmidt  <thaytan@mad.scientist.com>
13642
13643         * gst-libs/gst/audio/gstbaseaudiosink.c:
13644         (gst_base_audio_sink_render):
13645           Fix playback of non-synchronised streams by assuming a rate
13646           of 1.0 instead of a random one.
13647
13648           Makes this work again:
13649
13650           gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
13651           endianness=(int)4321, signed=(boolean)true, width=(int)16,
13652           depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
13653           audioresample ! alsasink
13654
13655 === release 0.10.2 ===
13656
13657 2006-01-16  Thomas Vander Stichele <thomas at apestaart dot org>
13658
13659         * configure.ac:
13660           releasing 0.10.2, "Then the devil is six"
13661
13662 2006-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
13663
13664         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
13665         * gst/playback/gststreamselector.c:
13666         (gst_stream_selector_set_property):
13667           Comment out broken code that connects to the state-changed signal.
13668           At this point, changing current stream selection is broken, but 
13669           stuff like gst-launch playbin current-audio=1 works and filters
13670           to the chosen stream.
13671
13672 2006-01-16  Thomas Vander Stichele  <thomas at apestaart dot org>
13673
13674         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
13675           Fix #327216 (null dereference in vorbisdec)
13676
13677 2006-01-16  Tim-Philipp Müller  <tim at centricular dot net>
13678
13679         * ext/theora/theoradec.c: (theora_handle_comment_packet):
13680           Post taglist actually on bus instead of just freeing it
13681           (fixes #327114 and totem bug #327080).
13682
13683         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
13684           Use gst_element_found_tags_for_pad(), so that the tags
13685           are sent downstream as an event as well.
13686
13687 2006-01-15  Thomas Vander Stichele  <thomas at apestaart dot org>
13688
13689         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
13690         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
13691         (gst_ximagesink_buffer_alloc):
13692         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
13693         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
13694         (gst_xvimagesink_buffer_alloc):
13695           move all regularly occurring messages to GST_LOG level
13696           add some more object logs
13697
13698 2006-01-14  Thomas Vander Stichele  <thomas at apestaart dot org>
13699
13700         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
13701           fix a silly segfault
13702
13703 2006-01-14  Tim-Philipp Müller  <tim at centricular dot net>
13704
13705         * docs/libs/gst-plugins-base-libs-docs.sgml:
13706         * docs/libs/gst-plugins-base-libs-sections.txt:
13707         * gst-libs/gst/audio/mixerutils.c:
13708         * gst-libs/gst/audio/mixerutils.h:
13709           Add docs for mixerutils stuff.
13710
13711 2006-01-13  Tim-Philipp Müller  <tim at centricular dot net>
13712
13713         * gst/playback/gstplaybasebin.c: (setup_source):
13714           Fix playback for sources that emit raw audio or
13715           raw video streams (e.g.: cd audio sources) (#325984).
13716
13717 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
13718
13719         * gst-libs/gst/audio/mixerutils.c:
13720         (gst_audio_mixer_filter_do_filter):
13721           actually save the element we create
13722
13723 2006-01-12  Tim-Philipp Müller  <tim at centricular dot net>
13724
13725         * gst-libs/gst/cdda/gstcddabasesrc.c:
13726         (gst_cdda_base_src_handle_track_seek):
13727           No need to post a tag message on the bus when seeking
13728           within the same track, only post it when the current
13729           track changes.
13730
13731 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
13732
13733         * gst/playback/gstplaybasebin.c: (group_destroy),
13734         (probe_triggered), (new_decoded_pad), (mute_group_type),
13735         (set_active_source):
13736         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
13737         * gst/playback/gststreamselector.c:
13738         (gst_stream_selector_base_init),
13739         (gst_stream_selector_set_property),
13740         (gst_stream_selector_request_new_pad):
13741           Reenable stream selection. These mechanisms need a complete overhaul
13742           in the face of 0.8->0.10 changes though.
13743
13744 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
13745
13746         * ext/ogg/gstoggdemux.c:
13747           Change the pad template to src_%d to match the pads that 
13748           are created from it. decodebin needs this information in order
13749           to decide that oggdemux is capable of producing multiple pads
13750           (and hence needs queues inserted).
13751
13752         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
13753         (gst_ogg_mux_collected):
13754           Make debug output more useful by using GST_PTR_FORMAT.
13755
13756 2006-01-11  Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
13757
13758         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
13759
13760         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
13761           Set depth and width for alaw/mulaw (fixes #326601).
13762
13763 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
13764
13765         * tests/icles/Makefile.am:
13766           don't build the tests if we don't have the libs
13767
13768 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
13769
13770         * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
13771         (gst_cd_paranoia_paranoia_callback):
13772           Don't try to free NULL pointers.
13773
13774 2006-01-10  Edward Hervey  <edward@fluendo.com>
13775
13776         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
13777         (gst_audio_rate_change_state), (plugin_init):
13778         Add debugging category.
13779         Fix type issues.
13780         Add case for incoming buffers without valid offset/offset_end.
13781
13782 2006-01-10  Michael Smith  <msmith@fluendo.com>
13783
13784         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
13785           Don't leak GCond in audio sources.
13786
13787 2006-01-10  Jan Schmidt  <thaytan@mad.scientist.com>
13788
13789         * gst/playback/gstplaybin.c: (gen_audio_element):
13790           Don't leak an autoaudiosink/alsasink when we generate
13791           a new audio element. (old code, I guess)
13792
13793 2006-01-10  Michael Smith  <msmith@fluendo.com>
13794
13795         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
13796           Support float audio in audiorate.
13797           Use width rather than depth for selecting sample width.
13798
13799 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
13800
13801         * gst/videotestsrc/videotestsrc.h:
13802           Use GLib types here (that way we don't have to include the
13803           generated _stdint.h header, which makes life easier for win32
13804           folks that don't use autotools for the build) (#325990, patch
13805           by: Sergey Scobich).
13806
13807 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
13808
13809         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
13810         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
13811         (gst_ring_buffer_pause), (wait_segment):
13812         * gst-libs/gst/audio/gstringbuffer.h:
13813           Name (private) union, makes Forte compiler happy (this time
13814           for real) (#324900).
13815
13816 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
13817
13818         * gst-libs/gst/audio/Makefile.am:
13819           Link against libgstinterfaces, needed for mixer
13820           and property probe stuff.
13821
13822 2006-01-09  Edward Hervey  <edward@fluendo.com>
13823
13824         * gst-libs/gst/Makefile.am:
13825
13826 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
13827
13828         * gst-libs/gst/audio/Makefile.am:
13829         * gst-libs/gst/audio/mixerutils.c:
13830         (gst_audio_mixer_filter_do_filter),
13831         (gst_audio_mixer_filter_check_element),
13832         (gst_audio_mixer_filter_probe_feature),
13833         (element_factory_rank_compare_func),
13834         (gst_audio_default_registry_mixer_filter):
13835         * gst-libs/gst/audio/mixerutils.h:
13836           Add gst_audio_default_registry_mixer_filter() utility
13837           function.
13838
13839 2006-01-03  Michael Smith  <msmith@fluendo.com>
13840
13841         * gst/audioresample/resample.h:
13842           As before, but for o_buf
13843
13844 2006-01-03  Michael Smith  <msmith@fluendo.com>
13845
13846         * gst/audioresample/resample.h:
13847           Declare struct _ResampleState.buffer as unsigned char *, not void *,
13848           since we do arithmetic on it.
13849
13850 2006-01-02  Tim-Philipp Müller  <tim at centricular dot net>
13851
13852         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
13853         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
13854         (gst_ring_buffer_pause), (wait_segment):
13855         * gst-libs/gst/audio/gstringbuffer.h:
13856           Sun's Forte compiler doesn't seem to like anonymous structs,
13857           so use same setup as in GstBaseSrc (fixes #324900).
13858
13859 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
13860
13861         * configure.ac:
13862         * gst/volume/Makefile.am:
13863         * gst/volume/demo.c:
13864           move old example to tests/examples/volume/volune.c
13865         * tests/examples/Makefile.am:
13866         * tests/examples/seek/seek.c: (main):
13867           change window-close event from "delete-event" to "destroy"
13868         * tests/examples/volume/Makefile.am:
13869         * tests/examples/volume/volume.c: (value_changed_callback),
13870         (setup_gui), (message_received), (eos_message_received), (main):
13871           fix event handling and bus usage
13872
13873 2005-12-29  Stefan Kost  <ensonic@users.sf.net>
13874
13875         * gst/audiotestsrc/gstaudiotestsrc.c:
13876         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
13877         (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
13878         (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
13879         (gst_audio_test_src_create_square),
13880         (gst_audio_test_src_create_saw),
13881         (gst_audio_test_src_create_triangle),
13882         (gst_audio_test_src_create_silence),
13883         (gst_audio_test_src_create_white_noise),
13884         (gst_audio_test_src_create_pink_noise),
13885         (gst_audio_test_src_init_sine_table),
13886         (gst_audio_test_src_create_sine_table),
13887         (gst_audio_test_src_change_wave),
13888         (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
13889         (gst_audio_test_src_create), (gst_audio_test_src_set_property):
13890         * gst/audiotestsrc/gstaudiotestsrc.h:
13891           update to basesrc changes, implement segmented seeking and eos
13892           handling, add a 'sine-tab' waveform for performance critical playback
13893
13894 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
13895
13896         * po/POTFILES.in:
13897           ... and this time the other modified file that I missed last time.
13898
13899 2005-12-29  Michael Smith  <msmith@fluendo.com>
13900
13901         * gst/playback/gstdecodebin.c: (new_pad):
13902           Fix non-C89 variable declaration not at the start of a block. Should
13903           help some compilers.
13904
13905 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
13906
13907         * tests/check/Makefile.am:
13908           And now fix 'make distcheck' (builddir != srcdir)
13909
13910 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
13911
13912         * configure.ac:
13913         * ext/cdparanoia/Makefile.am:
13914         * ext/cdparanoia/gstcdparanoia.c:
13915         * ext/cdparanoia/gstcdparanoia.h:
13916         * ext/cdparanoia/gstcdparanoiasrc.c:
13917         (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
13918         (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
13919         (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
13920         (gst_cd_paranoia_paranoia_callback),
13921         (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
13922         (gst_cd_paranoia_src_set_property),
13923         (gst_cd_paranoia_src_get_property), (plugin_init):
13924         * ext/cdparanoia/gstcdparanoiasrc.h:
13925           New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
13926           plugin again (there are still fixes required to playbin to make
13927           cdda:// uris work there).
13928
13929 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
13930
13931         * tests/check/Makefile.am:
13932           Fix test case compilation.
13933
13934 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
13935
13936         * gst-libs/gst/cdda/gstcddabasesrc.c:
13937         (gst_cdda_base_src_update_duration),
13938         (gst_cdda_base_src_calculate_cddb_id):
13939           An integer is not a string. Fix access to uninitialised variable.
13940
13941         * tests/check/Makefile.am:
13942           Add cddabasesrc unit test; also actually enable the vorbis test.
13943
13944         * tests/check/generic/states.c:
13945           Blacklist new cd audio elements as well.
13946
13947         * tests/check/libs/cddabasesrc.c:
13948           Unit test for GstCddaBaseSrc (discid calculation mostly).
13949
13950 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
13951
13952         * docs/libs/Makefile.am:
13953         * docs/libs/gst-plugins-base-libs-docs.sgml:
13954         * docs/libs/gst-plugins-base-libs-sections.txt:
13955         * docs/libs/gst-plugins-base-libs.types:
13956           Add docs for libgstcdda/GstCddaBaseSrc.
13957
13958         * gst-libs/gst/interfaces/mixertrack.h:
13959           Do one struct member per line with a semicolon at the end, that way
13960           even gtk-doc might parse it without complaining.
13961
13962 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
13963
13964         * configure.ac:
13965         * gst-libs/gst/Makefile.am:
13966         * gst-libs/gst/cdda/Makefile.am:
13967         * gst-libs/gst/cdda/base64.c:
13968         * gst-libs/gst/cdda/base64.h:
13969         * gst-libs/gst/cdda/gstcddabasesrc.c:
13970         (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
13971         (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
13972         (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
13973         (gst_cdda_base_src_get_property),
13974         (gst_cdda_base_src_get_track_from_sector),
13975         (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
13976         (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
13977         (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
13978         (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
13979         (gst_cdda_base_src_uri_get_protocols),
13980         (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
13981         (gst_cdda_base_src_uri_handler_init),
13982         (gst_cdda_base_src_setup_interfaces),
13983         (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
13984         (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
13985         (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
13986         (gst_cdda_base_src_add_tags),
13987         (gst_cdda_base_src_add_index_associations),
13988         (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
13989         (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
13990         (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
13991         (gst_cdda_base_src_create):
13992         * gst-libs/gst/cdda/gstcddabasesrc.h:
13993         * gst-libs/gst/cdda/sha1.c:
13994         * gst-libs/gst/cdda/sha1.h:
13995           Add new libgstcdda with GstCddaBaseSrc class.
13996
13997 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
13998
13999         * ext/gnomevfs/gstgnomevfssink.h:
14000           Use GstBaseSinkClass as parent_class member for class struct, not
14001           GstBaseSink.
14002
14003 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
14004
14005         Patch by: Michael Benes
14006
14007         * gst/videotestsrc/gstvideotestsrc.c:
14008         (gst_video_test_src_class_init), (gst_video_test_src_start):
14009           Add start method to reset running time and number of frames sent
14010           when starting up (fixes #324696)
14011
14012 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
14013
14014         * docs/plugins/Makefile.am:
14015         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
14016         * docs/plugins/gst-plugins-base-plugins-sections.txt:
14017         * docs/plugins/gst-plugins-base-plugins.args:
14018         * docs/plugins/gst-plugins-base-plugins.hierarchy:
14019         * docs/plugins/gst-plugins-base-plugins.signals:
14020           Add docs stuff for gnomevfssrc and gnomevfssink.
14021
14022         * ext/gnomevfs/gstgnomevfssrc.c:
14023           Fix example pipeline in gtk-doc blurb.
14024
14025 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
14026
14027         * ext/gnomevfs/Makefile.am:
14028         * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
14029         (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
14030         (gst_gnome_vfs_handle_get_type), (plugin_init):
14031         * ext/gnomevfs/gstgnomevfs.h:
14032         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
14033         (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
14034         (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
14035         (gst_gnome_vfs_sink_set_property),
14036         (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
14037         (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
14038         (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
14039         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
14040         (gst_gnome_vfs_sink_uri_get_type),
14041         (gst_gnome_vfs_sink_uri_get_protocols),
14042         (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
14043         (gst_gnome_vfs_sink_uri_handler_init):
14044         * ext/gnomevfs/gstgnomevfssink.h:
14045           Port gnomevfssink; add gtk-doc blurb.
14046
14047         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
14048         (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
14049         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
14050         (gst_gnome_vfs_src_uri_get_type),
14051         (gst_gnome_vfs_src_uri_get_protocols),
14052         (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
14053         (gst_gnome_vfs_src_uri_handler_init),
14054         (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
14055         (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
14056         (gst_gnome_vfs_src_send_additional_headers_callback),
14057         (gst_gnome_vfs_src_received_headers_callback),
14058         (gst_gnome_vfs_src_push_callbacks),
14059         (gst_gnome_vfs_src_pop_callbacks),
14060         (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
14061         (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
14062         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
14063         * ext/gnomevfs/gstgnomevfssrc.h:
14064           s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
14065           file; add gtk-doc blurb with example pipelines.
14066
14067 === release 0.10.1 ===
14068
14069 2005-12-23  Thomas Vander Stichele <thomas at apestaart dot org>
14070
14071         * configure.ac:
14072           releasing 0.10.1, "Dobro Dedek"
14073
14074 2005-12-21  Edgard Lima <edgard.lima@indt.org.br>
14075
14076         * gst/typefind/gsttypefindfunctions.c:
14077         iLBC30 and iLBC20 added to typefind.
14078
14079 2005-12-20  Thomas Vander Stichele  <thomas at apestaart dot org>
14080
14081         * gst-libs/gst/audio/gstbaseaudiosink.c:
14082         (gst_base_audio_sink_class_init):
14083         * gst-libs/gst/audio/gstbaseaudiosrc.c:
14084         (gst_base_audio_src_class_init):
14085           update strings, values are in microseconds
14086           change the default sink buffer time to something that is smaller
14087           (to help software volume mixing have a slightly lower delay) but
14088           still be acceptable on Wim's laptop
14089
14090 2005-12-20  Edward Hervey  <edward@fluendo.com>
14091
14092         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
14093         Made a quack, forgot to add DUCK to the riff video template.
14094
14095 2005-12-19  Edward Hervey  <edward@fluendo.com>
14096
14097         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
14098         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
14099         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
14100         (gst_ogm_parse_chain):
14101         Make sure pads are initialized correctly.
14102         * gst-libs/gst/riff/riff-ids.h:
14103         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
14104         (gst_riff_create_video_template_caps):
14105         Add a whole bunch of FOURCC <=> MimeType.
14106         Extend the riff video pad template to support the newly added fourcc.
14107
14108 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
14109
14110         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
14111         (gst_ogg_demux_activate_chain):
14112           Extra debug output when activating/deactivating chains.
14113
14114         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
14115         (is_demuxer_element), (try_to_link_1), (remove_element_chain),
14116         (unlinked):
14117           Remove a queue from our list when it becomes unlinked.
14118           Don't add queues to elements in class 'Demux' if they
14119           can only produce one pad 
14120
14121 2005-12-18  Julien MOUTTE  <julien@moutte.net>
14122
14123         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
14124         (gst_video_sink_get_type): Add a debug category.
14125
14126 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
14127
14128         * gst-libs/gst/rtp/gstbasertpdepayload.c:
14129         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
14130           Handle downstream newsegment by sending our own newsegment before the
14131           next buffer to be released. (#323900)
14132
14133 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
14134
14135         * gst-libs/gst/rtp/gstbasertpdepayload.c:
14136         (gst_base_rtp_depayload_set_gst_timestamp):
14137           add queue delay to new segment as well (as opposed to just the first
14138           buffer). (bug #322347)
14139
14140 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
14141
14142         * ext/libvisual/visual.c: (make_valid_name):
14143           change some char* into char[]
14144         * gst/audiotestsrc/gstaudiotestsrc.c:
14145         (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
14146         (gst_audio_test_src_create):
14147         * gst/audiotestsrc/gstaudiotestsrc.h:
14148           prepare to handle EOS and SEGMENT_DONE
14149
14150 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
14151
14152         * tests/check/generic/states.c: (GST_START_TEST):
14153           Blacklist cdparanoia element in state test.
14154
14155 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
14156
14157           Patch by: Benjamin Pineau
14158
14159         * gst/tcp/gsttcp.c:
14160         * gst/tcp/gsttcpclientsink.c:
14161         * gst/tcp/gsttcpserversink.c:
14162         * gst/tcp/gsttcpserversrc.c:
14163           Add <string.h> includes for memset and FD_ZERO (fixes #323878)
14164
14165 2005-12-15  Michael Smith  <msmith@fluendo.com>
14166
14167         * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
14168         (gst_video_rate_chain):
14169           Fix timestamping for videorate when the first buffer it sees has a
14170           non-zero timestamp. Fix some misleading debug output.
14171
14172 2005-12-15  Michael Smith  <msmith@fluendo.com>
14173
14174         * gst/audioresample/gstaudioresample.c:
14175           Don't leak all input buffers to audioresample.
14176
14177 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
14178
14179         * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
14180           Don't operate on empty text buffers. Strip newlines and
14181           tabs only from the end of the text, but leave them intact
14182           in the middle. Fix typo in gtk-doc description.
14183
14184 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
14185
14186         * gst/playback/gstplaybasebin.c:
14187         * gst/playback/gstplaybin.c: (handoff):
14188           Make sure the video frame buffer we return to apps via the
14189           "frame" property always has caps set on it. Modify
14190           _gst_gvalue_set_object() macro to handle NULL objects
14191           gracefully too.
14192
14193 2005-12-14  Stefan Kost  <ensonic@users.sf.net>
14194
14195         * gst/audiotestsrc/gstaudiotestsrc.c:
14196         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
14197         (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
14198         (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
14199         (gst_audio_test_src_create):
14200         * gst/audiotestsrc/gstaudiotestsrc.h:
14201         Adjust to some recent api changes and add wtays new cool seeking
14202         capabillities
14203
14204 2005-12-14  Tim-Philipp Müller  <tim at centricular dot net>
14205
14206         * ext/alsa/Makefile.am:
14207         * ext/alsa/gstalsadeviceprobe.c:
14208         * ext/alsa/gstalsadeviceprobe.h:
14209           Helper functions to add device probing via the GstPropertyProbe
14210           interface to a class.
14211
14212         * ext/alsa/gstalsamixer.h:
14213           Comment out GST_ALSA_MIXER, it returns a struct that's not
14214           used.
14215
14216         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
14217           Add some debug info. 
14218
14219         * ext/alsa/gstalsamixerelement.c:
14220         (gst_alsa_mixer_element_interface_supported),
14221         (gst_implements_interface_init),
14222         (gst_alsa_mixer_element_init_interfaces),
14223         (gst_alsa_mixer_element_class_init),
14224         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
14225         (gst_alsa_mixer_element_set_property),
14226         (gst_alsa_mixer_element_get_property),
14227         (gst_alsa_mixer_element_change_state):
14228         * ext/alsa/gstalsamixerelement.h:
14229           Add 'device' and 'device-name' properties. Add GstPropertyProbe
14230           for device handling (gnome-volume-control will need that).
14231
14232 2005-12-12  Christian Schaller  <uraeus@gnome.org>
14233
14234         * ext/Makefile.am: fix cdparanoia entry
14235         * gst-plugins-base.spec.in: add cdparanoia
14236
14237 2005-12-12  Michael Smith  <msmith@fluendo.com>
14238
14239         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
14240           Use the correct function to free list of typefind factories.
14241
14242 2005-12-12  Wim Taymans  <wim@fluendo.com>
14243
14244         * gst/videotestsrc/gstvideotestsrc.c:
14245         (gst_video_test_src_class_init), (gst_video_test_src_init),
14246         (gst_video_test_src_parse_caps), (gst_video_test_src_query),
14247         (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
14248         (gst_video_test_src_create):
14249         * gst/videotestsrc/gstvideotestsrc.h:
14250         Implement seeking in videotestsrc.
14251         Small cleanups.
14252
14253 2005-12-12  Wim Taymans  <wim@fluendo.com>
14254
14255         * ext/cdparanoia/Makefile.am:
14256         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
14257         (gst_paranoia_endian_get_type), (_do_init),
14258         (cdparanoia_class_init), (cdparanoia_init),
14259         (cdparanoia_set_property), (cdparanoia_get_property),
14260         (cdparanoia_do_seek), (cdparanoia_is_seekable),
14261         (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
14262         (cdparanoia_convert), (cdparanoia_get_query_types),
14263         (cdparanoia_query), (cdparanoia_set_index),
14264         (cdparanoia_uri_set_uri):
14265         * ext/cdparanoia/gstcdparanoia.h:
14266         Partially ported cdparanoia now that basesrc can support a
14267         plugin like this..
14268
14269 2005-12-12  Wim Taymans  <wim@fluendo.com>
14270
14271         * tests/examples/seek/scrubby.c: (main):
14272         Set higher priority for bus events so they don't get reordered with
14273         gtk gui events.
14274
14275         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
14276         (flush_toggle_cb), (main):
14277         Added checkbox to disable flushing seeks. 
14278         Disable scrubbing when doing non flushing seeks.
14279
14280 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
14281
14282         * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
14283         (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
14284         (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
14285         (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
14286           Implement some sort of event handling that doesn't rely on
14287           g_return_if_fail; make sure we always push the last chunk of an 
14288           .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
14289           state change function; remove some old cruft. Seeking is still
14290           rather unlikely to work though.
14291
14292         * tools/.cvsignore:
14293           Ignore more.
14294
14295 2005-12-11  Julien MOUTTE  <julien@moutte.net>
14296
14297         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): 
14298         Fixed a leak of the current image reference when cleaning up.
14299         Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
14300
14301 2005-12-09  Michael Smith  <msmith@fluendo.com>
14302
14303         * tools/Makefile.am:
14304         * tools/gst-launch-ext-m.m:
14305           Remove gst-launch-ext. It doesn't work, and is no longer
14306           particularly useful.
14307
14308 2005-12-08  Luca Ognibene  <luogni@tin.it>
14309
14310         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
14311           don't pass random values to ogmparse convert function.
14312           Make seeking possible in the exile1.ogm file.
14313
14314 2005-12-07  Tim-Philipp Müller  <tim at centricular dot net>
14315
14316         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
14317         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
14318           Work around refcount problem with g_value_set_object() that occur
14319           if the core has been compiled against GLib-2.6 (g_value_set_object()
14320           will only g_object_ref() the element, but the caller will
14321           gst_object_unref() it and bad things will happen due to the way
14322           GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
14323           totem for people on FC4 using Thomas's 0.10 RPMs.
14324           
14325 2005-12-07  Edward Hervey  <edward@fluendo.com>
14326
14327         Time to welcome ogm to 0.10 :)
14328         
14329         * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
14330         (gst_ogg_pad_typefind):
14331         Oggdemux can now properly typefind elements with dynamic pads.
14332         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
14333         Properly set caps on src pad, and set caps on outgoing buffers.
14334
14335 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
14336
14337         * ext/alsa/gstalsamixer.h:
14338         * ext/alsa/gstalsamixerelement.h:
14339         * ext/alsa/gstalsamixeroptions.h:
14340         * ext/alsa/gstalsamixertrack.h:
14341         * ext/alsa/gstalsasink.c:
14342         * ext/alsa/gstalsasink.h:
14343         * ext/alsa/gstalsasrc.c:
14344         * ext/alsa/gstalsasrc.h:
14345         * ext/cdparanoia/gstcdparanoia.h:
14346         * ext/gnomevfs/gstgnomevfsuri.h:
14347         * ext/ogg/gstoggdemux.c:
14348         * ext/ogg/gstoggmux.c:
14349         * ext/pango/gsttextoverlay.h:
14350         * ext/theora/theoradec.c:
14351         * ext/theora/theoraenc.c:
14352         * ext/vorbis/vorbisdec.h:
14353         * ext/vorbis/vorbisenc.c:
14354         * ext/vorbis/vorbisenc.h:
14355         * ext/vorbis/vorbisparse.h:
14356         * gst-libs/gst/audio/gstaudioclock.h:
14357         * gst-libs/gst/audio/gstaudiosink.c:
14358         * gst-libs/gst/audio/gstaudiosink.h:
14359         * gst-libs/gst/audio/gstaudiosrc.c:
14360         * gst-libs/gst/audio/gstaudiosrc.h:
14361         * gst-libs/gst/audio/gstbaseaudiosink.c:
14362         * gst-libs/gst/audio/gstbaseaudiosink.h:
14363         * gst-libs/gst/audio/gstbaseaudiosrc.c:
14364         * gst-libs/gst/audio/gstbaseaudiosrc.h:
14365         * gst-libs/gst/audio/gstringbuffer.h:
14366         * gst-libs/gst/audio/multichannel.h:
14367         * gst-libs/gst/floatcast/floatcast.h:
14368         * gst-libs/gst/interfaces/colorbalance.c:
14369         * gst-libs/gst/interfaces/colorbalance.h:
14370         * gst-libs/gst/interfaces/colorbalancechannel.h:
14371         * gst-libs/gst/interfaces/mixer.h:
14372         * gst-libs/gst/interfaces/mixeroptions.h:
14373         * gst-libs/gst/interfaces/mixertrack.h:
14374         * gst-libs/gst/interfaces/navigation.h:
14375         * gst-libs/gst/interfaces/propertyprobe.h:
14376         * gst-libs/gst/interfaces/tuner.h:
14377         * gst-libs/gst/interfaces/tunerchannel.h:
14378         * gst-libs/gst/interfaces/tunernorm.h:
14379         * gst-libs/gst/interfaces/xoverlay.h:
14380         * gst-libs/gst/netbuffer/gstnetbuffer.h:
14381         * gst-libs/gst/riff/riff-ids.h:
14382         * gst-libs/gst/riff/riff-media.h:
14383         * gst-libs/gst/riff/riff-read.h:
14384         * gst-libs/gst/rtp/gstbasertpdepayload.h:
14385         * gst-libs/gst/rtp/gstbasertppayload.c:
14386         * gst-libs/gst/rtp/gstbasertppayload.h:
14387         * gst-libs/gst/rtp/gstrtpbuffer.c:
14388         * gst-libs/gst/rtp/gstrtpbuffer.h:
14389         * gst-libs/gst/tag/gsttageditingprivate.h:
14390         * gst-libs/gst/tag/gstvorbistag.c:
14391         (gst_tag_list_from_vorbiscomment_buffer):
14392         * gst-libs/gst/tag/tag.h:
14393         * gst-libs/gst/video/video.h:
14394         * gst/adder/gstadder.c:
14395         * gst/adder/gstadder.h:
14396         * gst/audioconvert/audioconvert.c:
14397         * gst/audioconvert/audioconvert.h:
14398         * gst/audioconvert/gstaudioconvert.c:
14399         * gst/audioconvert/gstchannelmix.c:
14400         * gst/audioconvert/gstchannelmix.h:
14401         * gst/audiorate/gstaudiorate.c:
14402         * gst/audioresample/buffer.h:
14403         * gst/audioresample/functable.h:
14404         * gst/audioresample/gstaudioresample.c:
14405         * gst/audioresample/resample.h:
14406         * gst/ffmpegcolorspace/avcodec.h:
14407         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
14408         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
14409         * gst/ffmpegcolorspace/imgconvert.c:
14410         * gst/ffmpegcolorspace/imgconvert_template.h:
14411         * gst/playback/gstdecodebin.c:
14412         * gst/playback/gstplaybasebin.h:
14413         * gst/playback/gstplaybin.c:
14414         * gst/playback/gststreaminfo.h:
14415         * gst/tcp/gstfdset.c:
14416         * gst/tcp/gstfdset.h:
14417         * gst/tcp/gstmultifdsink.c:
14418         * gst/tcp/gstmultifdsink.h:
14419         * gst/tcp/gsttcp.h:
14420         * gst/tcp/gsttcpclientsrc.c:
14421         * gst/tcp/gsttcpclientsrc.h:
14422         * gst/tcp/gsttcpplugin.h:
14423         * gst/tcp/gsttcpserversink.c:
14424         * gst/tcp/gsttcpserversrc.c:
14425         * gst/typefind/gsttypefindfunctions.c:
14426         * gst/videorate/gstvideorate.c:
14427         * gst/videotestsrc/gstvideotestsrc.h:
14428         * gst/videotestsrc/videotestsrc.h:
14429         * sys/v4l/gstv4lcolorbalance.h:
14430         * sys/v4l/gstv4ltuner.h:
14431         * sys/v4l/gstv4lxoverlay.h:
14432         * sys/v4l/v4l_calls.h:
14433         * sys/v4l/videodev_mjpeg.h:
14434         * tests/check/elements/audioconvert.c:
14435         * tests/check/elements/audioresample.c:
14436         * tests/check/elements/audiotestsrc.c:
14437         * tests/check/elements/videotestsrc.c:
14438         * tests/check/elements/volume.c:
14439         * tests/examples/seek/scrubby.c:
14440         * tests/examples/seek/seek.c:
14441           expand tabs
14442
14443 === release 0.10.0 ===
14444
14445 2005-12-05 Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
14446
14447         * configure.ac:
14448           releasing 0.10.0, "Mont-d'or"
14449
14450 2005-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
14451
14452         * tests/examples/seek/Makefile.am:
14453         Build fix for when gtk is not available.
14454
14455 2005-12-05  Andy Wingo  <wingo@pobox.com>
14456
14457         * ext/libvisual/visual.c: (get_buffer):
14458         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
14459         * ext/pango/gsttextrender.c: (gst_text_render_chain):
14460         * ext/theora/theoradec.c: (theora_handle_data_packet):
14461         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
14462         (theora_enc_chain):
14463         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
14464         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
14465         Update for alloc_buffer changes.
14466
14467 2005-12-05  Andy Wingo  <wingo@pobox.com>
14468
14469         patch by: Kai Vehmanen <kv2004 eca cx>
14470         
14471         * gst-libs/gst/rtp/gstbasertpdepayload.c
14472         (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
14473
14474 2005-12-04  Andy Wingo  <wingo@pobox.com>
14475
14476         patch by: Sebastien Cote <sebas642 yahoo ca>
14477         
14478         * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
14479         Fixes #319172.
14480
14481 2005-12-02  Tim-Philipp Müller  <tim at centricular dot net>
14482
14483         * docs/plugins/Makefile.am:
14484         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
14485         * docs/plugins/gst-plugins-base-plugins-sections.txt:
14486         * docs/plugins/gst-plugins-base-plugins.hierarchy:
14487         * ext/pango/gstclockoverlay.c:
14488         * ext/pango/gsttextoverlay.c: 
14489         * ext/pango/gsttextrender.c:
14490         * ext/pango/gsttimeoverlay.c:
14491           Add gtk-doc blurbs to pango elements.
14492
14493 2005-12-02  Wim Taymans  <wim@fluendo.com>
14494
14495         * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
14496         * gst/audioresample/buffer.h:
14497         * gst/audioresample/gstaudioresample.c:
14498         * gst/audioresample/gstaudioresample.h:
14499         * gst/audioresample/resample.c: (resample_input_flush),
14500         (resample_input_pushthrough), (resample_input_eos),
14501         (resample_get_output_size_for_input),
14502         (resample_get_input_size_for_output), (resample_get_output_size),
14503         (resample_get_output_data):
14504         * gst/audioresample/resample.h:
14505         * gst/audioresample/resample_ref.c: (resample_scale_ref):
14506         Fix audioresample, seek torture, new segments, reverse negotiation
14507         etc.. work fine.
14508
14509 2005-12-02  Wim Taymans  <wim@fluendo.com>
14510
14511         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
14512         Small cleanups.
14513
14514 2005-12-02  Wim Taymans  <wim@fluendo.com>
14515
14516         * gst/audioconvert/gstaudioconvert.c:
14517         (gst_audio_convert_transform):
14518         Post errors.
14519
14520 === release 0.9.7 ===
14521
14522 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
14523
14524         * configure.ac:
14525           releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
14526
14527 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
14528
14529         * Makefile.am:
14530         * po/hu.po:
14531         * win32/MANIFEST:
14532         * win32/gst.sln:
14533           add win32 MANIFEST file
14534           do something to the hungarian translation
14535
14536 2005-12-01  Tim-Philipp Müller  <tim at centricular dot net>
14537
14538         * ext/Makefile.am:
14539           Add $(PANGO_DIR) to SUBDIRS
14540
14541         * ext/pango/gstclockoverlay.c:
14542         * ext/pango/gsttimeoverlay.c:
14543           Fix and improve element descriptions.
14544
14545 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
14546
14547         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
14548         * docs/plugins/inspect/plugin-libvisual.xml:
14549         * docs/plugins/inspect/plugin-pango.xml:
14550           add pango plugin to docs
14551
14552 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
14553
14554         * configure.ac:
14555         * ext/Makefile.am:
14556           moved pango to base
14557
14558 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
14559
14560         * configure.ac:
14561         * tests/Makefile.am:
14562         * tests/icles/.cvsignore:
14563         * tests/icles/Makefile.am:
14564         * tests/icles/stress-xoverlay.c: (myclock), (open_display),
14565         (close_display), (resize_window), (move_window), (create_window),
14566         (terminate_playback), (pause_playback), (start_playback), (main):
14567           add stress test for xoverlay from Julien
14568
14569 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
14570
14571         * docs/libs/tmpl/gstcolorbalance.sgml:
14572         * gst-libs/gst/rtp/gstbasertpdepayload.c:
14573         * gst-libs/gst/rtp/gstbasertppayload.c:
14574         * gst-libs/gst/rtp/gstrtpbuffer.c:
14575         * gst-libs/gst/rtp/gstrtpbuffer.h:
14576           Do burger's rename for rtp payloaders and depayloaders
14577
14578 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
14579
14580         * win32/:
14581           add Visual Studio 6 build files
14582
14583 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
14584
14585         * docs/libs/gst-plugins-base-libs-docs.sgml:
14586         * docs/libs/gst-plugins-base-libs-sections.txt:
14587         * docs/libs/tmpl/gstaudio.sgml:
14588         * docs/libs/tmpl/gstringbuffer.sgml:
14589         * gst-libs/gst/interfaces/xoverlay.c:
14590         * gst-libs/gst/video/gstvideofilter.c:
14591         * gst-libs/gst/video/gstvideosink.c:
14592           update documentation
14593
14594 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
14595
14596         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
14597         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
14598         (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
14599         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
14600         (gst_multi_fd_sink_get_stats),
14601         (gst_multi_fd_sink_remove_client_link),
14602         (gst_multi_fd_sink_handle_client_read),
14603         (gst_multi_fd_sink_client_queue_data),
14604         (gst_multi_fd_sink_client_queue_caps),
14605         (gst_multi_fd_sink_client_queue_buffer),
14606         (gst_multi_fd_sink_new_client),
14607         (gst_multi_fd_sink_handle_client_write),
14608         (gst_multi_fd_sink_recover_client),
14609         (gst_multi_fd_sink_queue_buffer),
14610         (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
14611         (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
14612         (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
14613         (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
14614         * gst/tcp/gstmultifdsink.h:
14615         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
14616         (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
14617         (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
14618         (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
14619         (gst_tcp_client_sink_set_property),
14620         (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
14621         (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
14622         * gst/tcp/gsttcpclientsink.h:
14623         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
14624         (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
14625         (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
14626         (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
14627         (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
14628         (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
14629         * gst/tcp/gsttcpclientsrc.h:
14630         * gst/tcp/gsttcpplugin.c: (plugin_init):
14631         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
14632         (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
14633         (gst_tcp_server_sink_finalize),
14634         (gst_tcp_server_sink_handle_server_read),
14635         (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
14636         (gst_tcp_server_sink_set_property),
14637         (gst_tcp_server_sink_get_property),
14638         (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
14639         * gst/tcp/gsttcpserversink.h:
14640         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
14641         (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
14642         (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
14643         (gst_tcp_server_src_set_property),
14644         (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
14645         (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
14646         * gst/tcp/gsttcpserversrc.h:
14647           more borgifying
14648
14649 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
14650
14651         * docs/plugins/Makefile.am:
14652         * docs/plugins/gst-plugins-base-plugins.args:
14653         * docs/plugins/inspect/plugin-libvisual.xml:
14654         * gst/audioconvert/plugin.h:
14655         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
14656         (gst_audio_rate_base_init), (gst_audio_rate_class_init),
14657         (gst_audio_rate_setcaps), (gst_audio_rate_init),
14658         (gst_audio_rate_chain), (gst_audio_rate_set_property),
14659         (gst_audio_rate_get_property), (gst_audio_rate_change_state),
14660         (plugin_init):
14661         * gst/audiotestsrc/gstaudiotestsrc.c:
14662         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
14663         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
14664         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
14665         (gst_audio_test_src_get_query_types),
14666         (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
14667         (gst_audio_test_src_create_square),
14668         (gst_audio_test_src_create_saw),
14669         (gst_audio_test_src_create_triangle),
14670         (gst_audio_test_src_create_silence),
14671         (gst_audio_test_src_create_white_noise),
14672         (gst_audio_test_src_init_pink_noise),
14673         (gst_audio_test_src_generate_pink_noise_value),
14674         (gst_audio_test_src_create_pink_noise),
14675         (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
14676         (gst_audio_test_src_create), (gst_audio_test_src_set_property),
14677         (gst_audio_test_src_get_property), (gst_audio_test_src_start),
14678         (plugin_init):
14679         * gst/audiotestsrc/gstaudiotestsrc.h:
14680         * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
14681         (gst_sub_parse_base_init), (gst_sub_parse_class_init),
14682         (gst_sub_parse_init), (gst_sub_parse_formats),
14683         (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
14684         (convert_encoding), (get_next_line),
14685         (gst_sub_parse_data_format_autodetect),
14686         (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
14687         (gst_sub_parse_loop), (gst_sub_parse_chain),
14688         (gst_sub_parse_change_state), (gst_sub_parse_type_find),
14689         (plugin_init):
14690         * gst/subparse/gstsubparse.h:
14691         * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
14692         (gst_video_rate_base_init), (gst_video_rate_class_init),
14693         (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
14694         (gst_video_rate_setcaps), (gst_video_rate_blank_data),
14695         (gst_video_rate_init), (gst_video_rate_event),
14696         (gst_video_rate_chain), (gst_video_rate_set_property),
14697         (gst_video_rate_get_property), (gst_video_rate_change_state),
14698         (plugin_init):
14699         * gst/videoscale/gstvideoscale.c:
14700         (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
14701         (gst_video_scale_src_template_factory),
14702         (gst_video_scale_sink_template_factory),
14703         (gst_video_scale_get_type), (gst_video_scale_base_init),
14704         (gst_video_scale_class_init), (gst_video_scale_init),
14705         (gst_video_scale_set_property), (gst_video_scale_get_property),
14706         (gst_video_scale_transform_caps), (gst_video_scale_get_format),
14707         (gst_video_scale_prepare_size), (parse_caps),
14708         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
14709         (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
14710         (gst_video_scale_transform), (gst_video_scale_handle_src_event),
14711         (plugin_init):
14712         * gst/videoscale/gstvideoscale.h:
14713         * gst/videotestsrc/gstvideotestsrc.c:
14714         (gst_video_test_src_pattern_get_type),
14715         (gst_video_test_src_base_init), (gst_video_test_src_class_init),
14716         (gst_video_test_src_init), (gst_video_test_src_src_fixate),
14717         (gst_video_test_src_set_pattern),
14718         (gst_video_test_src_set_property),
14719         (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
14720         (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
14721         (gst_video_test_src_event), (gst_video_test_src_get_times),
14722         (gst_video_test_src_create), (plugin_init):
14723         * gst/videotestsrc/gstvideotestsrc.h:
14724         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
14725         (gst_video_test_src_smpte), (gst_video_test_src_snow),
14726         (gst_video_test_src_black):
14727         * gst/videotestsrc/videotestsrc.h:
14728           borgify further
14729           clean up docs a little
14730
14731 2005-11-30  Wim Taymans  <wim@fluendo.com>
14732
14733         * gst-libs/gst/rtp/gstbasertpdepayload.h:
14734         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
14735         (gst_basertppayload_event), (gst_basertppayload_push),
14736         (gst_basertppayload_change_state):
14737         * gst-libs/gst/rtp/gstbasertppayload.h:
14738         closed #320644.
14739
14740 2005-11-30  Julien MOUTTE  <julien@moutte.net>
14741
14742         * docs/libs/gst-plugins-base-libs-docs.sgml:
14743         * docs/libs/gst-plugins-base-libs-sections.txt:
14744         * gst-libs/gst/video/gstvideofilter.c:
14745         * gst-libs/gst/video/gstvideosink.c:
14746         * gst-libs/gst/video/gstvideosink.h: Adding docs.
14747
14748 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
14749
14750         * LICENSE:
14751           move
14752         * po/af.po:
14753         * po/az.po:
14754         * po/cs.po:
14755         * po/en_GB.po:
14756         * po/hu.po:
14757         * po/it.po:
14758         * po/nb.po:
14759         * po/nl.po:
14760         * po/or.po:
14761         * po/sq.po:
14762         * po/sr.po:
14763         * po/sv.po:
14764         * po/uk.po:
14765         * po/vi.po:
14766         * Makefile.am:
14767           update
14768         * scripts/autoplugins.sh:
14769           remove
14770
14771 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
14772
14773         * Makefile.am:
14774         * configure.ac:
14775         * examples/Makefile.am:
14776         * examples/capsfilter/Makefile.am:
14777         * examples/capsfilter/capsfilter1.c:
14778         * examples/gob/Makefile.am:
14779         * examples/gob/gst-identity2.gob:
14780         * examples/indexing/.cvsignore:
14781         * examples/indexing/Makefile.am:
14782         * examples/indexing/indexmpeg.c:
14783         * examples/seeking/.cvsignore:
14784         * examples/seeking/Makefile.am:
14785         * examples/seeking/cdparanoia.c:
14786         * examples/seeking/cdplayer.c:
14787         * examples/seeking/chained.c:
14788         * examples/seeking/scrubby.c:
14789         * examples/seeking/seek.c:
14790         * examples/stats/Makefile.am:
14791         * examples/stats/mp2ogg.c:
14792         * examples/switch/.cvsignore:
14793         * examples/switch/Makefile.am:
14794         * examples/switch/switcher.c:
14795         * tests/Makefile.am:
14796         * tests/check/generic/.cvsignore:
14797         * tests/check/pipelines/.cvsignore:
14798         * tests/examples/Makefile.am:
14799         * tests/examples/seek/Makefile.am:
14800           reorganize stuff under tests/
14801
14802 2005-11-30  Edward Hervey  <edward@fluendo.com>
14803
14804         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
14805         Go away you stupid GstStaticPadTemplate memleak.
14806
14807 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
14808
14809         * gst-libs/gst/net/Makefile.am:
14810         * gst-libs/gst/net/README:
14811         * gst-libs/gst/net/gstnetbuffer.c:
14812         * gst-libs/gst/net/gstnetbuffer.h:
14813           this was moved to "netbuffer"
14814
14815 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
14816
14817         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
14818         (gst_video_filter_class_init), (gst_video_filter_init):
14819         * gst-libs/gst/video/gstvideofilter.h:
14820           borgify name to bring in line with other classes
14821
14822 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
14823
14824         * gst/audioscale/.cvsignore:
14825         * gst/audioscale/Makefile.am:
14826         * gst/audioscale/README:
14827         * gst/audioscale/audioscale.vcproj:
14828         * gst/audioscale/dtof.c:
14829         * gst/audioscale/dtos.c:
14830         * gst/audioscale/functable.c:
14831         * gst/audioscale/gstaudioscale.c:
14832         * gst/audioscale/gstaudioscale.h:
14833         * gst/audioscale/private.h:
14834         * gst/audioscale/resample.c:
14835         * gst/audioscale/resample.h:
14836         * gst/audioscale/test.c:
14837           remove
14838
14839 2005-11-30  Edward Hervey  <edward@fluendo.com>
14840
14841         * gst-libs/gst/netbuffer/Makefile.am:
14842         really, really tired
14843
14844 2005-11-30  Edward Hervey  <edward@fluendo.com>
14845
14846         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
14847         Update for new GstTypeFindFactory _register()
14848
14849 2005-11-30  Edward Hervey  <edward@fluendo.com>
14850
14851         * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir): 
14852         Let's not override libgstnet from core for no reason...
14853         (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
14854         Ok, maybe not so quick next time.
14855
14856 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
14857
14858         * configure.ac:
14859         * gst-libs/gst/Makefile.am:
14860           moved gst-libs/gst/net to netbuffer through CVS surgery
14861           remove old directory
14862           updating build to accomodate
14863           (#322257)
14864
14865 2005-11-29  Andy Wingo  <wingo@pobox.com>
14866
14867         * pkgconfig/gstreamer-plugins-base.pc.in:
14868         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
14869         * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
14870         (#322257).
14871
14872 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
14873
14874         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
14875         3rd time's the charm. Correct ref-counting for discarded buffers.
14876
14877 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
14878
14879         * gst/playback/gststreamselector.c:
14880         (gst_stream_selector_class_init),
14881         (gst_stream_selector_set_property),
14882         (gst_stream_selector_get_property),
14883         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
14884         Fix ref-counting
14885
14886 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
14887
14888         * gst/subparse/gstsubparse.c: (feed_textbuf):
14889           Don't access already unref'ed buffer.
14890
14891 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
14892
14893         * gst/playback/gststreamselector.c:
14894         (gst_stream_selector_class_init), (gst_stream_selector_init),
14895         (gst_stream_selector_dispose), (gst_stream_selector_set_property),
14896         (gst_stream_selector_get_property),
14897         (gst_stream_selector_get_linked_pad),
14898         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
14899         * gst/playback/gststreamselector.h:
14900         Add the active-pad property for playbin to use shortly. Ignore buffers
14901         from any other pad, returning GST_FLOW_NOT_LINKED
14902
14903 2005-11-29  Julien MOUTTE  <julien@moutte.net>
14904
14905         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
14906         patch from bug #322704 (Alessandro Decina).
14907
14908 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
14909
14910         * gst-libs/gst/audio/Makefile.am:
14911           folded audiofilter into the audio library
14912
14913 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
14914
14915         * gst/videoscale/gstvideoscale.h:
14916         * gst/videoscale/gstvideoscale.c:
14917           remove unimplemented scale methods
14918
14919 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
14920
14921         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
14922           Don't leak caps.
14923
14924 2005-11-28  Julien MOUTTE  <julien@moutte.net>
14925
14926         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
14927         (gst_ximagesink_setcaps):
14928         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
14929         (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
14930         happens (only visible on ximagesink but bug is in xv too) set_caps was
14931         destroying the internal x[v]image used to memcpy non locally alloced
14932         buffers so that it got renewed on next _chain. The issue is that 
14933         _expose will try to put that image as it reffed it in _put.
14934         Using gst_buffer_unref instead of destroy fixes it !
14935
14936 2005-11-28  Edward Hervey  <edward@fluendo.com>
14937
14938         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
14939         (try_to_link_1), (queue_filled_cb):
14940         Better use of the queues. Start with a small size queue and only increase
14941         the size of the queues when the other queues are empty.
14942
14943 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
14944
14945         * gst-libs/gst/video/Makefile.am:
14946           compile in copied-over videofilter into the video library
14947         * gst-libs/gst/video/videosink.h:
14948           rename the header to gstvideosink.h since it's a base GstObject class
14949         * sys/ximage/ximagesink.h:
14950         * sys/xvimage/xvimagesink.h:
14951           use the new header
14952
14953 2005-11-28  Wim Taymans  <wim@fluendo.com>
14954
14955         * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
14956         * gst/playback/gstplaybasebin.h:
14957         Prepare to handle errors betters.
14958
14959         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
14960         Set sinks to PAUSED first before adding and linking them so that
14961         we don't interrupt dataflow.
14962
14963 2005-11-28  Wim Taymans  <wim@fluendo.com>
14964
14965         * gst-libs/gst/audio/TODO:
14966         Updated TODO
14967
14968         * gst-libs/gst/audio/gstaudiosink.c:
14969         (gst_audioringbuffer_open_device),
14970         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
14971         (gst_audioringbuffer_release):
14972         Small cleanups.
14973
14974         * gst-libs/gst/audio/gstbaseaudiosink.c:
14975         (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
14976         (gst_base_audio_sink_change_state):
14977         Slave to the master clock when going to PLAYING and unslave when
14978         going to PAUSED.
14979
14980         * gst-libs/gst/audio/gstringbuffer.c:
14981         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
14982         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
14983         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
14984         (gst_ring_buffer_clear_all), (wait_segment),
14985         (gst_ring_buffer_commit), (gst_ring_buffer_read),
14986         (gst_ring_buffer_advance):
14987         * gst-libs/gst/audio/gstringbuffer.h:
14988         Add some docs and cleanups.
14989
14990 2005-11-28  Julien MOUTTE  <julien@moutte.net>
14991
14992         * sys/xvimage/xvimagesink.c:
14993         (gst_xvimagesink_navigation_send_event): Fix navigation events
14994         coordinates translation with pixel aspect ratios.
14995
14996 2005-11-28  Julien MOUTTE  <julien@moutte.net>
14997
14998         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
14999         Use calculated video geometry from _setcaps instead of buffer
15000         caps to respect pixel aspect ratio. (fixes #322388)
15001
15002 2005-11-28  Julien MOUTTE  <julien@moutte.net>
15003
15004         * docs/libs/tmpl/gstcolorbalance.sgml:
15005         * docs/libs/tmpl/gstmixer.sgml:
15006         * docs/libs/tmpl/gstxoverlay.sgml:
15007         * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
15008         interface.
15009
15010 2005-11-28  Julien MOUTTE  <julien@moutte.net>
15011
15012         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
15013         Refuse to create an XvImage if we can't find the format.
15014
15015 2005-11-28  Edward Hervey  <edward@fluendo.com>
15016
15017         * gst-libs/gst/riff/riff-media.c:
15018         (gst_riff_create_audio_template_caps):
15019         Add ATRAC3 to the list of riff-possible audio caps.
15020         I know we still don't have a plugin for atrac3, but it's saner to output
15021         that than a cryptic mimetype.
15022
15023 2005-11-27  Edward Hervey  <edward@fluendo.com>
15024
15025         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
15026         Don't try to create a zero-sized subbuffer.
15027
15028 2005-11-27  Julien MOUTTE  <julien@moutte.net>
15029
15030         * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
15031         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
15032         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
15033         (gst_ximagesink_expose): Fixed a tricky race.
15034         * sys/ximage/ximagesink.h:
15035         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
15036         (gst_xvimagesink_expose): Fixed a tricky race.
15037         * sys/xvimage/xvimagesink.h:
15038
15039 2005-11-27  Edward Hervey  <edward@fluendo.com>
15040
15041         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
15042         (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
15043         Remove unused properties, and add queues between demuxers and decoders
15044         so that a lot more files can preroll properly.
15045
15046 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
15047
15048         * gst-libs/gst/net/Makefile.am:
15049         * gst-libs/gst/rtp/Makefile.am:
15050         * gst-libs/gst/tag/Makefile.am:
15051           remove silly include
15052         * gst/tags/Makefile.am:
15053         * gst/tags/gsttagediting.c:
15054         * gst/tags/gsttageditingprivate.h:
15055         * gst/tags/tagedit.vcproj:
15056           remove directory, is as good as empty
15057
15058 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
15059
15060         * configure.ac:
15061           added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
15062         * gst-libs/Makefile.am:
15063         * gst-libs/gst/audio/Makefile.am:
15064         * gst-libs/gst/interfaces/Makefile.am:
15065         * gst-libs/gst/net/Makefile.am:
15066         * gst-libs/gst/riff/Makefile.am:
15067         * gst-libs/gst/rtp/Makefile.am:
15068         * gst-libs/gst/tag/Makefile.am:
15069         * gst-libs/gst/video/Makefile.am:
15070           and use them
15071
15072 2005-11-27  Julien MOUTTE  <julien@moutte.net>
15073
15074         * docs/libs/tmpl/gstcolorbalance.sgml:
15075         * docs/libs/tmpl/gstmixer.sgml:
15076         * docs/libs/tmpl/gstxoverlay.sgml:
15077         * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
15078         * sys/ximage/ximagesink.h:
15079         * sys/xvimage/xvimagesink.h: More and more documentation.
15080
15081 2005-11-26  Julien MOUTTE  <julien@moutte.net>
15082
15083         * docs/libs/gst-plugins-base-libs-docs.sgml:
15084         * docs/libs/gst-plugins-base-libs-sections.txt:
15085         * docs/libs/tmpl/gstcolorbalance.sgml:
15086         * docs/libs/tmpl/gstmixer.sgml:
15087         * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
15088         to documentation.
15089
15090 2005-11-26  Julien MOUTTE  <julien@moutte.net>
15091
15092         * docs/plugins/Makefile.am:
15093         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
15094         * docs/plugins/gst-plugins-base-plugins-sections.txt:
15095         * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
15096
15097 2005-11-26  Julien MOUTTE  <julien@moutte.net>
15098
15099         * docs/plugins/Makefile.am:
15100         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
15101         * docs/plugins/gst-plugins-base-plugins-sections.txt:
15102         * docs/plugins/inspect/plugin-adder.xml:
15103         * docs/plugins/inspect/plugin-alsa.xml:
15104         * docs/plugins/inspect/plugin-audioconvert.xml:
15105         * docs/plugins/inspect/plugin-audiorate.xml:
15106         * docs/plugins/inspect/plugin-audioresample.xml:
15107         * docs/plugins/inspect/plugin-audiotestsrc.xml:
15108         * docs/plugins/inspect/plugin-decodebin.xml:
15109         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
15110         * docs/plugins/inspect/plugin-gnomevfs.xml:
15111         * docs/plugins/inspect/plugin-ogg.xml:
15112         * docs/plugins/inspect/plugin-playbin.xml:
15113         * docs/plugins/inspect/plugin-subparse.xml:
15114         * docs/plugins/inspect/plugin-tcp.xml:
15115         * docs/plugins/inspect/plugin-theora.xml:
15116         * docs/plugins/inspect/plugin-typefindfunctions.xml:
15117         * docs/plugins/inspect/plugin-video4linux.xml:
15118         * docs/plugins/inspect/plugin-videorate.xml:
15119         * docs/plugins/inspect/plugin-videoscale.xml:
15120         * docs/plugins/inspect/plugin-videotestsrc.xml:
15121         * docs/plugins/inspect/plugin-volume.xml:
15122         * docs/plugins/inspect/plugin-vorbis.xml:
15123         * docs/plugins/inspect/plugin-ximagesink.xml:
15124         * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
15125         * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
15126
15127 2005-11-26  Edward Hervey  <edward@fluendo.com>
15128
15129         * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
15130         Properly return GstFlowReturn from gst_pad_push in chain functions.
15131
15132 2005-11-25  Michael Smith  <msmith@fluendo.com>
15133
15134         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
15135         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
15136         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
15137         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
15138           Handle various conditions better when we don't understand a stream.
15139           Removes a heap of CRITICALs on ogg streams containing unknown data.
15140
15141 2005-11-24  Andy Wingo  <wingo@pobox.com>
15142
15143         * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
15144         Be threadsafe.
15145
15146 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
15147
15148         * configure.ac: back to HEAD
15149
15150 === release 0.9.6 ===
15151
15152 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
15153
15154         * configure.ac:
15155           releasing 0.9.6, "White Eight"
15156
15157 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
15158
15159         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
15160         * docs/plugins/inspect/plugin-sine.xml:
15161           remove sinesrc some more
15162
15163 2005-11-23  Wim Taymans  <wim@fluendo.com>
15164
15165         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
15166         If we are reading too slowly, jump forward in the ringbuffer
15167         instead of blocking.
15168
15169 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
15170
15171         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
15172         (gst_visual_chain):
15173         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
15174         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
15175         (gst_videorate_chain):
15176         * gst/videotestsrc/gstvideotestsrc.c:
15177         (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
15178         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
15179         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
15180         (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
15181         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
15182         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
15183           Updates for API changes
15184
15185 2005-11-23  Wim Taymans  <wim@fluendo.com>
15186
15187         * gst-libs/gst/audio/gstbaseaudiosink.c:
15188         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
15189         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
15190         Fix for calibration API change.
15191
15192 2005-11-23  Michael Smith <msmith@fluendo.com>
15193
15194         * gst-libs/gst/audio/multichannel.c:
15195         (gst_audio_get_channel_positions),
15196         (gst_audio_set_channel_positions),
15197         (gst_audio_set_structure_channel_positions_list),
15198         (gst_audio_fixate_channel_positions):
15199           Use gst_value_array_*() functions on value arrays, not
15200           gst_value_list_*().
15201
15202 2005-11-23  Edward Hervey  <edward@fluendo.com>
15203
15204         * autogen.sh:
15205         eheh, sinesrc is gone. Replacing sample srcfile by existing one.
15206         Fixes autogen
15207
15208 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
15209
15210         * check/Makefile.am:
15211         * check/elements/videotestsrc.c: (setup_videotestsrc),
15212         (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
15213         (main):
15214           add a test for videotestsrc
15215
15216 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
15217
15218         * gst/sine/.cvsignore:
15219         * gst/sine/Makefile.am:
15220         * gst/sine/gstsinesrc.c:
15221         * gst/sine/gstsinesrc.h:
15222         * gst/sine/sinesrc.vcproj:
15223           and remove sinesrc from the repository.  Closes #321446
15224
15225 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
15226
15227         * configure.ac:
15228         * gst-plugins-base.spec.in:
15229           remove sinesrc from the build
15230
15231 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
15232
15233         * check/Makefile.am:
15234         * check/elements/audiotestsrc.c: (setup_audiotestsrc),
15235         (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
15236         (main):
15237           add a test for audiotestsrc, testing all waves.  Even seems
15238           leak-free at first glance, nice job Stefan
15239
15240 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
15241
15242         * po/af.po:
15243         * po/az.po:
15244         * po/cs.po:
15245         * po/en_GB.po:
15246         * po/hu.po:
15247         * po/it.po:
15248         * po/nb.po:
15249         * po/nl.po:
15250         * po/or.po:
15251         * po/sq.po:
15252         * po/sr.po:
15253         * po/sv.po:
15254         * po/uk.po:
15255         * po/vi.po:
15256           Translation string updates
15257
15258         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
15259         (gst_v4lsrc_set_caps):
15260         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
15261         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
15262         * sys/v4l/v4lsrc_calls.h:
15263           Improve v4lsrc, by making it work again.
15264
15265 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
15266
15267         * ext/libvisual/visual.c: (gst_visual_chain):
15268           Fix the fps calculations.
15269
15270         * gst/ffmpegcolorspace/avcodec.h:
15271           Move structure element for clarity
15272
15273         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
15274         * gst-libs/gst/interfaces/tunernorm.h:
15275         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
15276         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
15277         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
15278         (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
15279         (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
15280         (gst_v4lmjpegsrc_getcaps):
15281         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
15282         (gst_v4lsrc_set_caps):
15283         * sys/v4l/gstv4lsrc.h:
15284         * sys/v4l/v4l_calls.c: (gst_v4l_open):
15285         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
15286         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
15287         * sys/v4l/v4lsrc_calls.h:
15288           Fractional framerates...
15289
15290 2005-11-22  Wim Taymans  <wim@fluendo.com>
15291
15292         * gst-libs/gst/audio/gstbaseaudiosink.c:
15293         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
15294         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
15295         And we provide a clock by default, of course...
15296
15297 2005-11-22  Wim Taymans  <wim@fluendo.com>
15298
15299         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
15300         This clock can be slaved to a master clock now.
15301
15302         * gst-libs/gst/audio/gstbaseaudiosink.c:
15303         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
15304         (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
15305         (gst_base_audio_sink_set_clock),
15306         (gst_base_audio_sink_set_property),
15307         (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
15308         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
15309         * gst-libs/gst/audio/gstbaseaudiosink.h:
15310         Handle slaving the internal clock to the clock selected in the
15311         pipeline.
15312         Add property to make the basesink not provide a clock.
15313
15314         * gst-libs/gst/rtp/gstbasertpdepayload.c:
15315         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
15316         (gst_base_rtp_depayload_wait):
15317         * gst-libs/gst/rtp/gstbasertpdepayload.h:
15318         We can use the clock in GstElement, no need to store it ourselves.
15319
15320 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
15321
15322         * docs/libs/tmpl/gstaudio.sgml:
15323           update
15324         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
15325         (gst_paranoia_endian_get_type):
15326         * ext/theora/theoraenc.c: (gst_border_mode_get_type):
15327         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
15328         * gst/audiotestsrc/gstaudiotestsrc.c:
15329         (gst_audiostestsrc_wave_get_type):
15330         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
15331         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
15332         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
15333         (gst_sync_method_get_type), (gst_unit_type_get_type),
15334         (gst_client_status_get_type), (gst_multifdsink_class_init),
15335         (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
15336         (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
15337         (gst_multifdsink_get_property):
15338         * gst/tcp/gstmultifdsink.h:
15339         * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
15340         * gst/videotestsrc/gstvideotestsrc.c:
15341         (gst_videotestsrc_pattern_get_type):
15342           remove deprecated properties
15343           fix up enums to correctly have short lowercase dashed nicks
15344
15345 2005-11-22  Michael Smith <msmith@fluendo.com>
15346
15347         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
15348         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
15349           Add underscore.
15350
15351 2005-11-22  Michael Smith <msmith@fluendo.com>
15352
15353         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
15354         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
15355           Use utility method for scaling clocktime for fractional framerates.
15356
15357 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
15358
15359         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
15360         (gst_visual_chain):
15361         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
15362         * ext/theora/theoradec.c: (theora_handle_type_packet):
15363         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
15364         (theora_enc_chain):
15365         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
15366         * gst-libs/gst/video/video.c: (gst_video_frame_rate):
15367         * gst-libs/gst/video/video.h:
15368         * gst/ffmpegcolorspace/avcodec.h:
15369         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
15370         (gst_ffmpeg_caps_to_pixfmt):
15371         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15372         (gst_ffmpegcsp_set_caps):
15373         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
15374         (gst_videorate_setcaps), (gst_videorate_blank_data),
15375         (gst_videorate_chain):
15376         * gst/videotestsrc/gstvideotestsrc.c:
15377         (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
15378         (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
15379         (gst_videotestsrc_event), (gst_videotestsrc_create):
15380         * gst/videotestsrc/gstvideotestsrc.h:
15381         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
15382         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
15383         (gst_ximagesink_get_times), (gst_ximagesink_init):
15384         * sys/ximage/ximagesink.h:
15385         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
15386         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
15387         (gst_xvimagesink_get_times), (gst_xvimagesink_init):
15388         * sys/xvimage/xvimagesink.h:
15389           Convert elements to use fractions for their framerate.
15390           V4L elements to come later tonight.
15391
15392 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
15393
15394         * gst-libs/gst/audio/audio.c:
15395         * gst-libs/gst/audio/audio.h:
15396           remove some deprecated functions
15397
15398 2005-11-22  Andy Wingo  <wingo@pobox.com>
15399
15400         * Update for gst_tag_setter API changes.
15401
15402 2005-11-22  Andy Wingo  <wingo@pobox.com>
15403
15404         * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
15405         (gst_ogg_demux_perform_seek):
15406         * ext/theora/theoradec.c (theora_dec_sink_event):
15407         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
15408         update-funcnames.
15409
15410 2005-11-22  Wim Taymans  <wim@fluendo.com>
15411
15412         * examples/seeking/seek.c: (main):
15413         Give higher priority to bus signals than the gtk events
15414         to fix a race condition in the segment looping.
15415
15416 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
15417
15418         * ext/theora/Makefile.am:
15419         * ext/vorbis/Makefile.am:
15420         * gst-libs/gst/tag/Makefile.am:
15421         * gst-plugins-base.spec.in:
15422           Rename libgsttagedit to libgsttag (#322117).
15423
15424 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
15425
15426         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
15427         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
15428           Call gst_x_overlay_prepare_xwindow_id() to give applications
15429           a final chance to set their own xwindow id before the video
15430           sink creates its own window.
15431
15432 2005-11-22  Julien MOUTTE  <julien@moutte.net>
15433
15434         * sys/xvimage/xvimagesink.c:
15435         (gst_xvimagesink_navigation_send_event): Handle navigation
15436         events correcly with borders if applicable.
15437
15438 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
15439
15440         Patch by: Luca Ognibene
15441
15442         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
15443         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
15444         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15445         (gst_ffmpegcsp_caps_remove_format_info):
15446         * gst/ffmpegcolorspace/imgconvert.c:
15447         * gst/ffmpegcolorspace/imgconvert_template.h:
15448           Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
15449           #318353); use gst_structure_has_name().
15450
15451 2005-11-22  Julien MOUTTE  <julien@moutte.net>
15452
15453         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
15454         (gst_ximagesink_class_init): Add debug macros on functions.
15455         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
15456         (gst_xvimagesink_xwindow_draw_borders),
15457         (gst_xvimagesink_xvimage_put),
15458         (gst_xvimagesink_xwindow_update_geometry),
15459         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
15460         (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
15461         (gst_xvimagesink_xcontext_clear),
15462         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
15463         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
15464         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
15465         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
15466         (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
15467         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
15468         * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
15469         expose while being PAUSED, out of data flow navigation events, etc..
15470
15471 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
15472
15473         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
15474         * gst-libs/gst/audio/audio.h:
15475           fix prototype - wondering why the test worked regardless
15476
15477 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
15478
15479         * check/Makefile.am:
15480         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
15481         * gst-libs/gst/audio/audio.h:
15482           add a method that returns a proper GstClockTime
15483
15484 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
15485
15486         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
15487         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
15488         * gst-libs/gst/interfaces/xoverlay.h:
15489           Remove everything having to do with the desired size; add 
15490           gst_x_overlay_prepare_xwindow_id() function; remove the
15491           'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
15492           post a message on the bus instead (#321816).
15493
15494         * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
15495         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
15496         (gst_xvimagesink_xoverlay_init):
15497           Remove desired size stuff (#321816).
15498
15499 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
15500
15501         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
15502         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
15503         (mpeg_video_type_find), (mpeg_video_stream_type_find):
15504           Terminate vararg functions with NULL instead of 0 to 
15505           make gcc4 happy.
15506
15507 2005-11-21  Andy Wingo  <wingo@pobox.com>
15508
15509         patch by: Sebastien Cote <sebas642@yahoo.ca>
15510         
15511         * gst-libs/gst/rtp/gstrtpbuffer.h: 
15512         * gst-libs/gst/rtp/gstrtpbuffer.c
15513         (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
15514
15515 2005-11-21  Andy Wingo  <wingo@pobox.com>
15516
15517         * gst/playback/gstplaybin.c (gen_audio_element) 
15518         (gen_video_element): Use the new MISSING_PLUGIN core error
15519         category. Closes #320060.
15520
15521         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): 
15522         * gst/videorate/gstvideorate.c (gst_videorate_event):
15523         * ext/theora/theoradec.c (theora_dec_sink_event): 
15524         * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
15525         stream lock.
15526
15527         * gst/subparse/gstsubparse.c (gst_subparse_src_event):
15528         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
15529         stream lock changes.
15530
15531 2005-11-21  Wim Taymans  <wim@fluendo.com>
15532
15533         * gst-libs/gst/audio/gstbaseaudiosink.c:
15534         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
15535         (gst_base_audio_sink_provide_clock),
15536         (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
15537         (gst_base_audio_sink_change_state):
15538         * gst/audioresample/gstaudioresample.c:
15539         Segment update fix.
15540
15541 2005-11-21  Andy Wingo  <wingo@pobox.com>
15542
15543         * *.h:
15544         * *.c: Ran scripts/update-macros. Oh yes.
15545
15546 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
15547
15548         * sys/ximage/Makefile.am:
15549         * sys/ximage/ximage.c:
15550           Rename ximage plugin to ximagesink (#321426) (Don't forget to
15551           remove your old libgstximage.* manually if necessary).
15552
15553 2005-11-21  Michael Smith <msmith@fluendo.com>
15554
15555         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
15556           Minimal fix for bug #320200: set the min/max bitrate in the correct
15557           units. A better fix would be to upgrade to the RATEMANAGE2
15558           interface, rather than using the deprecated interface used here, but
15559           that would require an update in our libvorbis dependency (to 1.1),
15560           which is probably undesirable.
15561
15562 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
15563
15564         * ext/libvisual/visual.c: (get_buffer):
15565         * gst-libs/gst/audio/gstbaseaudiosrc.c:
15566         (gst_base_audio_src_fixate):
15567         * gst/audioconvert/gstaudioconvert.c:
15568         (gst_audio_convert_fixate_caps):
15569         * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
15570         * gst/audiotestsrc/gstaudiotestsrc.c:
15571         (gst_audiotestsrc_src_fixate):
15572         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
15573         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
15574         * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
15575         * gst/videotestsrc/gstvideotestsrc.c:
15576         (gst_videotestsrc_src_fixate):
15577         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
15578         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
15579           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
15580           (#322027)
15581
15582
15583 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
15584
15585         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
15586         (gst_riff_create_iavs_caps):
15587         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
15588         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
15589         (gst_riff_parse_info):
15590         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
15591         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
15592         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
15593           Fixes for GST_FOURCC_FORMAT API change.
15594
15595 2005-11-21  Andy Wingo  <wingo@pobox.com>
15596
15597         patch by: Alessandro Dessina <alessandro nnva org>
15598
15599         * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
15600         * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
15601         (gst_ogg_parse_chain):
15602         * ext/theora/theoraenc.c (theora_set_header_on_caps):
15603         * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
15604         * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
15605         gst_value_list calls on arrays. Fixes #321962.
15606
15607 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
15608
15609         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
15610         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
15611         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
15612         * gst/adder/gstadder.c: (gst_adder_init),
15613         (gst_adder_request_new_pad), (gst_adder_collected),
15614         (gst_adder_change_state):
15615           Update for gst_collectpads_foo() to gst_collect_pads_foo()
15616           API change.
15617
15618 2005-11-21  Michael Smith <msmith@fluendo.com>
15619
15620         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
15621         (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
15622           Properly handle pad_push return values.
15623
15624 2005-11-20  Jan Schmidt  <thaytan@mad.scientist.com>
15625
15626         * gst-libs/gst/tag/Makefile.am:
15627         * gst-libs/gst/tag/gstvorbistag.c:
15628         (gst_tag_list_to_vorbiscomment_buffer):
15629           Remove obsolete vorbistag element and debug category.
15630
15631         * gst/playback/gstplaybasebin.c: (check_queue):
15632           Don't divide by 0 when queue-threshold is 0.
15633
15634         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
15635           Don't modify an existing pixel-aspect-ratio if we fail to read
15636           a new one.
15637
15638 2005-11-20  Wim Taymans  <wim@fluendo.com>
15639
15640         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
15641         (gst_vorbisenc_push_packet):
15642         GST_PAD_IS_USABLE is gone, use the return value of
15643         the push or pad_alloc_buffer instead.
15644
15645 2005-11-18  Julien MOUTTE  <julien@moutte.net>
15646
15647         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
15648         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
15649         (gst_ximagesink_ximage_destroy),
15650         (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
15651         (gst_ximagesink_xwindow_new),
15652         (gst_ximagesink_xwindow_update_geometry),
15653         (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
15654         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
15655         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
15656         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
15657         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
15658         (gst_ximagesink_navigation_send_event),
15659         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
15660         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
15661         (gst_ximagesink_finalize), (gst_ximagesink_init),
15662         (gst_ximagesink_class_init):
15663         * sys/ximage/ximagesink.h: Refactoring of ximagesink.
15664         This new version brings correct software scaling, non flickering
15665         window while resizing, pixel aspect ratio handling, usage of
15666         hardware buffer pools, out of data flow event thread for 
15667         navigation and handling of expose events even when being PAUSED,
15668         a new property to keep video aspect ratio when resizing, etc...
15669
15670 2005-11-18  Julien MOUTTE  <julien@moutte.net>
15671
15672         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
15673         (gst_videoscale_fixate_caps): Introduce back caps fixate with
15674         handling of PAR.
15675
15676 2005-11-18  Edward Hervey  <bilboed@dvdsrc.fluendo.com>
15677
15678         * gst/playback/gstdecodebin.c: (gst_decode_bin_init): 
15679         Unsetting IS_SINK flag from the fakesink, so decodebin
15680         never behaves as a sink.
15681
15682 2005-11-17  Wim Taymans  <wim@fluendo.com>
15683
15684         * gst-libs/gst/audio/gstbaseaudiosrc.c:
15685         (gst_base_audio_src_change_state):
15686         Fix the audiosrc base class again, we did not unflush.
15687
15688 2005-11-17  Julien MOUTTE  <julien@moutte.net>
15689
15690         * examples/seeking/seek.c: (make_dv_pipeline),
15691         (make_vorbis_theora_pipeline), (make_avi_pipeline),
15692         (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
15693         to ogg/vorbis/theora pipeline.
15694
15695 2005-11-17  Wim Taymans  <wim@fluendo.com>
15696
15697         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
15698         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
15699         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
15700         Fix EOS on multiple streams.
15701         More debugging.
15702
15703 2005-11-16  Wim Taymans  <wim@fluendo.com>
15704
15705         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
15706         (gst_ogg_demux_perform_seek):
15707         Segment done must include stream time.
15708
15709         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
15710         (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
15711         (gst_ogg_mux_change_state):
15712         Fix ogg muxer again.
15713
15714 2005-11-16  Wim Taymans  <wim@fluendo.com>
15715
15716         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
15717         Fix compile again.
15718
15719 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
15720
15721         * ext/libvisual/visual.c: (gst_visual_init):
15722         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
15723         * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
15724         (gst_ogg_parse_chain):
15725         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
15726         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
15727         * ext/theora/theoradec.c: (gst_theora_dec_init):
15728         * ext/theora/theoraenc.c: (gst_theora_enc_init):
15729         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
15730         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
15731         * gst/adder/gstadder.c: (gst_adder_class_init),
15732         (gst_adder_dispose):
15733         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
15734         * gst/subparse/gstsubparse.c: (gst_subparse_init):
15735         * gst/videorate/gstvideorate.c: (gst_videorate_init):
15736           Fix a whole set of pad template leaks
15737
15738 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
15739
15740         * check/generic/states.c: (GST_START_TEST):
15741           fix the test so that it only checks for elements that are part of
15742           this source module
15743
15744 2005-11-16  Michael Smith <msmith@fluendo.com>
15745
15746         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
15747         (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
15748         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
15749         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
15750         (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
15751         (gst_ogg_mux_change_state):
15752           Fix leaking collectpads.
15753
15754 2005-11-16  Edward Hervey  <edward@fluendo.com>
15755
15756         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
15757         (gst_videorate_event), (gst_videorate_chain):
15758         Handle segment seeks
15759
15760 2005-11-16  Wim Taymans  <wim@fluendo.com>
15761
15762         * gst-libs/gst/audio/gstbaseaudiosink.c:
15763         (gst_base_audio_sink_provide_clock),
15764         (gst_base_audio_sink_change_state):
15765         Set ringbuffer to non-flushing when going to PAUSED, set to
15766         flushing again when going to READY.
15767
15768         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
15769         (gst_ring_buffer_stop):
15770         Start in flushing mode by default.
15771         Don't set flushing in the _stop method, let the app call
15772         this explicitly.
15773
15774 2005-11-16  Julien MOUTTE  <julien@moutte.net>
15775
15776         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
15777         * gst-libs/gst/video/videosink.h: Add helper function needed
15778         for video sinks.
15779
15780 2005-11-16  Tim-Philipp Müller  <tim at centricular dot net>
15781
15782         * gst/videoscale/gstvideoscale.c:
15783         (gst_videoscale_handle_src_event):
15784           Don't leak reference to pad parent.
15785
15786 2005-11-16  Wim Taymans  <wim@fluendo.com>
15787
15788         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
15789         Set ringbuffer to flushing when stopping so that we don't
15790         block on wait_segment anymore and livelock.
15791
15792 2005-11-16  Wim Taymans  <wim@fluendo.com>
15793
15794         * examples/seeking/seek.c: (send_event), (do_seek),
15795         (loop_toggle_cb), (segment_done), (main):
15796         Added looping checkbox.
15797
15798 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
15799
15800         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15801         (gst_ogg_demux_init):
15802         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
15803         (gst_vorbis_dec_init):
15804           revert unrefs, they don't pass make check
15805
15806 2005-11-15  Johan Dahlin  <johan@gnome.org>
15807
15808         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15809         (gst_ogg_demux_init), (gst_ogg_demux_finalize):
15810         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
15811         (gst_vorbis_dec_init):
15812         Fix pad template leaks. 
15813
15814 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
15815
15816         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
15817           Make state change function thread safe.
15818
15819 2005-11-15  Edward Hervey  <edward@fluendo.com>
15820
15821         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
15822         (gst_ogg_demux_class_init):
15823         Implement GstElement::send_event, so we can send seek events
15824         in GST_STATE_READY
15825
15826 2005-11-14  Julien MOUTTE  <julien@moutte.net>
15827
15828         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
15829         Discovered how to take away flickering while resizing the
15830         window. Please don't put that in ximagesink, refactoring in
15831         progress.
15832
15833 2005-11-14  Michael Smith <msmith@fluendo.com>
15834
15835         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
15836         (gst_multifdsink_render):
15837           Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
15838
15839 2005-11-14  Tim-Philipp Müller  <tim at centricular dot net>
15840
15841         * gst/playback/gstplaybin.c: (gen_audio_element):
15842           Use autoaudiosink, it tends to be more widely available than
15843           autoaudiiosink.
15844           
15845 2005-11-14  Andy Wingo  <wingo@pobox.com>
15846
15847         * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
15848         as well if it is available. Fixes #316442.
15849
15850 2005-11-14  Michael Smith <msmith@fluendo.com>
15851
15852         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
15853         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
15854         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
15855         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
15856         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
15857         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
15858         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
15859         (gst_vorbisenc_change_state):
15860           Fix a small memory leak in vorbisenc.
15861           Fix large memory leaks in oggmux, also fix lots of state change
15862           bugs in oggmux.
15863
15864 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
15865
15866         * gst/videotestsrc/gstvideotestsrc.c:
15867         (gst_videotestsrc_class_init), (gst_videotestsrc_init),
15868         (gst_videotestsrc_src_fixate):
15869           move fixation to a fixate function
15870           remove negotiate function, basesrc's is good enough
15871           fixes a bug for check when using the element alone
15872
15873 2005-11-13  Edward Hervey  <edward@fluendo.com>
15874
15875         * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
15876         (key_toggle_cb), (main):
15877         Added checkboxes for adding/removing the accurate and key_unit seek
15878         flags.
15879
15880 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15881
15882         * configure.ac: back to HEAD
15883
15884 === release 0.9.5 ===
15885
15886 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
15887
15888         * configure.ac:
15889           releasing 0.9.5, "No No Kia"
15890
15891 2005-11-11  Edward Hervey  <edward@fluendo.com>
15892
15893         * examples/seeking/seek.c: (make_parselaunch_pipeline):
15894         Added parse-launch syntax seeking mode for the seeking example.
15895         This should help stress-test even more cases.
15896         Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
15897
15898 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
15899
15900         * sys/xvimage/xvimagesink.c:
15901         (gst_xvimagesink_navigation_send_event):
15902           Check whether peer pad exists before sending navigation events
15903           to it.
15904
15905 2005-11-11  Michael Smith <msmith@fluendo.com>
15906
15907         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
15908         (gst_vorbisenc_buffer_from_packet):
15909         * ext/vorbis/vorbisenc.h:
15910           Set duration on encoded buffers. This allows oggmux's
15911           max_page_delay parameter to actually work.
15912
15913 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
15914
15915         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
15916         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
15917         (gst_ffmpegcsp_avpicture_fill):
15918         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15919         (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
15920           Make palettes work again (see #132341). Use our own macros
15921           for rounding up.
15922
15923 2005-11-10  Andy Wingo  <wingo@pobox.com>
15924
15925         * gst/playback/gstplaybasebin.c (prepare_output): Fix format
15926         string doober.
15927
15928 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
15929
15930         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15931         (gst_ffmpegcsp_transform_caps):
15932           Prefer passthrough in transform_caps
15933
15934 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
15935
15936         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
15937           check for ALSA errors properly, instead of relying on ALSA's
15938           error strings to serve to the user.
15939
15940 2005-11-10  Wim Taymans  <wim@fluendo.com>
15941
15942         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
15943         (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
15944         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
15945         Modernise the seek code.
15946
15947 2005-11-10  Michael Smith <msmith@fluendo.com>
15948         
15949         * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
15950         (setup_substreams), (set_active_source):
15951           Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
15952           trying to go to NULL if we failed to read a file.
15953
15954 2005-11-10  Wim Taymans  <wim@fluendo.com>
15955
15956         * gst/audiotestsrc/gstaudiotestsrc.c:
15957         (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
15958         (gst_audiotestsrc_create):
15959         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
15960         (gst_sinesrc_get_times), (gst_sinesrc_create):
15961         * gst/videotestsrc/gstvideotestsrc.c:
15962         (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
15963         (gst_videotestsrc_create):
15964         The base class can now sync for us.
15965
15966 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
15967
15968         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
15969           a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
15970           name=source autoprobe=false autoprobe-fps=false copy-mode=1
15971           device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
15972           format=(fourcc)I420" ! xvimagesink
15973
15974 2005-11-10  Tim-Philipp Müller  <tim at centricular dot net>
15975
15976         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
15977         (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
15978         (gst_sinesrc_newsegment):
15979           Send newsegment event in TIME format, set duration if
15980           num-buffers is set, fix duration querying.
15981
15982 2005-11-10  Michael Smith <msmith@fluendo.com>
15983
15984         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
15985         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
15986         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
15987         (gst_ogg_mux_collected):
15988          Fix EOS handling, partially. Now forwarding an EOS event once we have
15989          EOS on all pads works correctly. However, we still don't properly set
15990          EOS on the actual ogg stream pages.
15991
15992 2005-11-09  Tim-Philipp Müller  <tim at centricular dot net>
15993
15994         * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
15995           Set elements to NULL state before disposing of them.
15996
15997 2005-11-08  Sebastien Cote  <sebas642 at yahoo dot ca>
15998
15999         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
16000
16001         * gst-libs/gst/rtp/gstbasertpdepayload.c:
16002         (gst_base_rtp_depayload_init),
16003         (gst_base_rtp_depayload_set_gst_timestamp):
16004         * gst-libs/gst/rtp/gstbasertpdepayload.h:
16005           We need to send a newsegment event for each instance, not
16006           just for the first instance of this class (get rid of
16007           static variable in function). (#321011).
16008           
16009 2005-11-08  Michael Smith <msmith@fluendo.com>
16010
16011         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
16012         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
16013         (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
16014         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
16015           Forward port rewrite of muxing strategy to 0.9 version of oggmux.
16016           This makes us mux things correctly according to the ogg muxing
16017           rules. Still not handling EOS correctly right now, though.
16018
16019 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
16020
16021         * gst/audioconvert/gstaudioconvert.c:
16022           Fix typo in docs. 
16023
16024 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
16025
16026         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
16027         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
16028           Initialise segment_stop to GST_CLOCK_TIME_NONE when
16029           creating a new chain; should fix live streaming. Also
16030           add more debug output and fix a typo.
16031
16032 2005-11-08  Brian Cameron  <brian dot cameron at sun dot com>
16033
16034         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
16035
16036         * gst/volume/gstvolume.c: (volume_set_caps):
16037           Fix compilation on Solaris with Forte. (#320923)
16038
16039 2005-11-08  Wim Taymans  <wim@fluendo.com>
16040
16041         * gst-libs/gst/audio/gstbaseaudiosink.c:
16042         (gst_base_audio_sink_render):
16043         No need to do a typecheck.
16044
16045 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
16046
16047         * ext/alsa/gstalsa.h:
16048           We register a debug category, so let's use it.
16049
16050 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
16051
16052         * gst-libs/gst/rtp/gstbasertpdepayload.c:
16053         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
16054         Fixed a small problem.
16055
16056 2005-11-04  Wim Taymans  <wim@fluendo.com>
16057
16058         * examples/seeking/Makefile.am:
16059         * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
16060         (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
16061         (make_playerbin_pipeline), (format_value), (update_scale),
16062         (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
16063         (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
16064         (print_usage), (main):
16065         Added app for playback speed testing.
16066
16067         * examples/seeking/seek.c: (dynamic_link),
16068         (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
16069         (make_mpeg_pipeline), (do_seek), (set_update_scale),
16070         (message_received), (main):
16071         Updated seek example.
16072
16073 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
16074
16075         * gst-libs/gst/rtp/gstbasertpdepayload.c:
16076         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
16077         (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
16078         (gst_base_rtp_depayload_set_clock):
16079         * gst-libs/gst/rtp/gstbasertpdepayload.h:
16080         Don't sleep on the bench (system clock) when you have a nice 
16081         comfortable bed (Gstreamer clock) to sleep on.
16082
16083 2005-11-03  Wim Taymans  <wim@fluendo.com>
16084
16085         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
16086         (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
16087         (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
16088         Handle the case where a pad_block failed.
16089
16090 2005-11-02  Sebastien Cote  <sebas642@yahoo.ca> 
16091
16092         reviewed by: Zeeshan Ali  <zeenix@gmail.com>
16093
16094         * gst-libs/gst/rtp/gstbasertpdepayload.c:
16095         (gst_base_rtp_depayload_add_to_queue),
16096         (gst_base_rtp_depayload_push),
16097         (gst_base_rtp_depayload_set_gst_timestamp),
16098         (gst_base_rtp_depayload_queue_release):
16099           Fixes some bugs in the depayloader's queuing/de-queueing code.
16100
16101 2005-10-31  Michael Smith <msmith@fluendo.com>
16102
16103         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
16104         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
16105         (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
16106           Patch from Alessandro Decina <alessandro@nnva.org>.
16107           Make oggdemux only find the final time in a chain, not per-pad,
16108           since the per-pad information can be very expensive to locate, and
16109           it isn't used anywhere. This makes reading a file containing
16110           OggSkeleton reasonably fast.
16111           Also, make chain finding work when there are logical bitstreams that
16112           can't be decoded. Fixes #319110.
16113
16114 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
16115
16116         * gst-libs/gst/rtp/gstbasertpdepayload.c:
16117         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
16118         (gst_base_rtp_depayload_chain),
16119         (gst_base_rtp_depayload_add_to_queue),
16120         (gst_base_rtp_depayload_push),
16121         (gst_base_rtp_depayload_set_gst_timestamp),
16122         (gst_base_rtp_depayload_queue_release),
16123         (gst_base_rtp_depayload_start_thread),
16124         (gst_base_rtp_depayload_set_property),
16125         (gst_base_rtp_depayload_get_property):
16126         * gst-libs/gst/rtp/gstbasertpdepayload.h:
16127         Some random fixes, to fullfill the desires of thomas.
16128
16129 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
16130
16131         * gst-libs/gst/rtp/gstbasertpdepayload.c:
16132         (gst_base_rtp_depayload_add_to_queue),
16133         (gst_base_rtp_depayload_push):
16134         Fixed the queueing algorithm.
16135
16136 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
16137
16138         * gst-libs/gst/rtp/gstbasertpdepayload.c:
16139         (gst_base_rtp_depayload_push):
16140         A small fix
16141
16142 2005-10-31  Wim Taymans  <wim@fluendo.com>
16143
16144         * gst-libs/gst/audio/gstringbuffer.h:
16145         Don't break ABI.
16146
16147         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16148         (gst_ffmpeg_caps_to_pixfmt):
16149         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16150         (gst_ffmpegcsp_set_caps):
16151         Some more comments.
16152         Handle missing required caps fields better.
16153
16154 2005-10-31  Wim Taymans  <wim@fluendo.com>
16155
16156         * gst-libs/gst/audio/gstbaseaudiosink.c:
16157         (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
16158         (gst_base_audio_sink_render):
16159         * gst-libs/gst/audio/gstringbuffer.c:
16160         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
16161         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
16162         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
16163         (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
16164         (gst_ring_buffer_read):
16165         * gst-libs/gst/audio/gstringbuffer.h:
16166         Add flushing mode to the ringbuffer so that it in all cases does
16167         not try to handle more audio. This makes sure it does not try to
16168         block anymore when flushing and fixes a livelock.
16169
16170 2005-10-29  Tim-Philipp Müller  <tim at centricular dot net>
16171
16172         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
16173         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
16174         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
16175           Explicitly check for -1 values before doing a conversion
16176           and always map them to -1. (#315545)
16177
16178 2005-10-28  Thomas Vander Stichele  <thomas at apestaart dot org>
16179
16180         * gst/playback/gstplaybin.c: (gen_video_element):
16181           first try autovideosink, then xvimagesink, then error out
16182         * po/POTFILES.in:
16183           add translatable file
16184         * po/af.po:
16185         * po/az.po:
16186         * po/cs.po:
16187         * po/en_GB.po:
16188         * po/hu.po:
16189         * po/it.po:
16190         * po/nb.po:
16191         * po/nl.po:
16192         * po/or.po:
16193         * po/sq.po:
16194         * po/sr.po:
16195         * po/sv.po:
16196         * po/uk.po:
16197         * po/vi.po:
16198           update translations
16199
16200 2005-10-27  Philippe Khalaf <burger at speedy dot org> 
16201
16202         * gst-libs/gst/rtp/gstbasedepayload.c:
16203         * gst-libs/gst/rtp/gstbasedepayload.h:
16204           Minor cleanups
16205
16206 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
16207
16208         * gst/playback/.cvsignore:
16209         * gst/playback/decodetest.c:
16210         * gst/playback/test3.c:
16211           Port these two tests as well.
16212
16213 2005-10-27  Wim Taymans  <wim@fluendo.com>
16214
16215         * ext/theora/theoradec.c: (theora_dec_src_query),
16216         (theora_dec_sink_event):
16217         * ext/theora/theoraenc.c: (theora_enc_sink_event),
16218         (theora_enc_change_state):
16219         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
16220         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
16221         Take proper locks when handling events.
16222
16223 2005-10-27  Wim Taymans  <wim@fluendo.com>
16224
16225         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
16226         (gst_adder_change_state):
16227         Fix timestamps and fix deadlock when stopping the collectpads.
16228
16229 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
16230
16231         * gst-libs/gst/rtp/gstrtpbuffer.h:
16232         Declaring the payload types as strings too so that they can be used
16233         in the padtemplate inialization.
16234
16235 2005-10-26  Andre Magalhaes  <andrunko@gmail.com>
16236
16237         reviewed by: Zeeshan Ali   <zeenix@gmail.com>
16238
16239         * gst-libs/gst/rtp/gstbasertpdepayload.c:
16240         (gst_base_rtp_depayload_class_init):
16241         Fixes a small but nasty bug. The derived elements no longer segfaults
16242         on finalization.
16243
16244 2005-10-26  Michael Smith <msmith@fluendo.com>
16245
16246         * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
16247           When clearing an audioconvert context, set tmpbufsize to zero, so
16248           we'll allocate it again later if required.
16249           This fixes audioconvert re-negotiating formats, which previously
16250           segfaulted with a NULL destination buffer.
16251
16252 2005-10-26  Zeeshan Ali <zeenix@gmail.com>
16253
16254         * gst-libs/gst/rtp/gstbasertpdepayload.c:
16255         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
16256         (gst_base_rtp_depayload_set_gst_timestamp),
16257         (gst_base_rtp_depayload_queue_release):
16258         Fixed a smalll memleak.
16259
16260 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
16261         * gst-libs/gst/rtp/gstbasertpdepayload.c:
16262         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
16263         (gst_base_rtp_depayload_finalize),
16264         (gst_base_rtp_depayload_setcaps),
16265         (gst_base_rtp_depayload_add_to_queue),
16266         (gst_base_rtp_depayload_push),
16267         (gst_base_rtp_depayload_set_gst_timestamp),
16268         (gst_base_rtp_depayload_queue_release),
16269         (gst_base_rtp_depayload_thread),
16270         (gst_base_rtp_depayload_change_state):
16271         * gst-libs/gst/rtp/gstbasertpdepayload.h:
16272         Changed the C++ comments to C comments
16273
16274 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
16275
16276         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
16277         * gst/tcp/gsttcpclientsrc.h:
16278         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
16279         * gst/tcp/gsttcpserversrc.h:
16280           Remove unused 'curoffset' structure member.
16281
16282 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
16283
16284         * gst-libs/gst/rtp/gstbasertpdepayload.c:
16285         (gst_base_rtp_depayload_base_init),
16286         (gst_base_rtp_depayload_finalize):
16287         * gst-libs/gst/rtp/gstbasertpdepayload.h:
16288         * gst-libs/gst/rtp/gstbasertppayload.h:
16289           The pad-template on the sinkpad should be set by the derived classes.
16290           Also added some useful macros.
16291
16292 2005-10-24  Wim Taymans  <wim@fluendo.com>
16293
16294         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
16295         Correctly flush decoder samples even if we could not
16296         copy them to an output buffer. Fixes #319618.
16297
16298 2005-10-24  Julien MOUTTE  <julien@moutte.net>
16299
16300         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
16301         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
16302         the caps against our xcontext caps.
16303
16304 2005-10-24  Wim Taymans  <wim@fluendo.com>
16305
16306         * gst-libs/gst/audio/gstbaseaudiosink.c:
16307         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
16308         Remove g_print
16309         Use sync property from baseclass to disable sync.
16310
16311 2005-10-24  Wim Taymans  <wim@fluendo.com>
16312
16313         * gst-libs/gst/audio/gstbaseaudiosink.c:
16314         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
16315         Buffers with no timestamps get aligned with previous buffers or
16316         on underrun, played ASAP.
16317
16318 2005-10-24  Julien MOUTTE  <julien@moutte.net>
16319
16320         * gst-libs/gst/video/video.h:
16321         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16322         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
16323         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
16324         here comes my change on caps for framerate and geometry range.
16325         We are now accepting 1 to MAXINT for width and height, and from
16326         0.0 to MAXDOUBLE for framerate. That allows duration less png frames
16327         to be blended correctly in videomixer.
16328
16329 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
16330
16331         * configure.ac:
16332           back to HEAD
16333
16334 === release 0.9.4 ===
16335
16336 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
16337
16338         * NEWS:
16339         * RELEASE:
16340         * configure.ac:
16341           releasing 0.9.4, "Velociraptor"
16342
16343 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
16344
16345         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
16346         * po/POTFILES.in:
16347           STOPPED -> FAILED
16348
16349 2005-10-21  Wim Taymans  <wim@fluendo.com>
16350
16351         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
16352         (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
16353         (pad_blocked), (close_pad_link), (new_pad):
16354         Don't try to remove elements twice.
16355
16356 2005-10-21  Wim Taymans  <wim@fluendo.com>
16357
16358         * ext/theora/theoradec.c: (theora_dec_src_query),
16359         (theora_dec_sink_event):
16360         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
16361         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
16362         (vorbis_handle_data_packet):
16363         * ext/vorbis/vorbisdec.h:
16364         Fix old naming.
16365
16366         * gst-libs/gst/audio/gstbaseaudiosink.c:
16367         (gst_base_audio_sink_render):
16368         Don't try to sync on buffers without a timestamp.
16369
16370 2005-10-21  Wim Taymans  <wim@fluendo.com>
16371
16372         * ext/theora/theoradec.c: (theora_dec_src_query),
16373         (theora_dec_sink_event):
16374         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
16375         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
16376         (vorbis_handle_data_packet):
16377         * ext/vorbis/vorbisdec.h:
16378         Fix old naming.
16379
16380 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
16381
16382         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
16383         (gst_vorbisenc_src_query):
16384           Implement position and duration queries.
16385
16386         * gst/playback/test3.c: (update_scale), (main):
16387           Fix for async state changes and print nicer output.
16388
16389 2005-10-20  Wim Taymans  <wim@fluendo.com>
16390
16391         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
16392         (dump_element_stats), (main):
16393         * gst/playback/test6.c: (main):
16394         Fix tests again
16395
16396 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
16397
16398         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
16399         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
16400           Don't use functions for position queries when handling
16401           duration queries.
16402
16403 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
16404
16405         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
16406         (vorbis_handle_data_packet), (vorbis_dec_chain),
16407         (vorbis_dec_change_state):
16408         * ext/vorbis/vorbisdec.h:
16409           Vorbis streams can be embedded in other container formats
16410           than ogg, container formats where the demuxer might set 
16411           timestamps on encoded vorbis buffers instead of those silly 
16412           granulepos thingies. In short: make vorbisdec handle 
16413           timestamps on incoming buffers as well.
16414
16415 2005-10-20  Wim Taymans  <wim@fluendo.com>
16416
16417         * gst/playback/gstplaybasebin.c: (group_destroy),
16418         (gst_play_base_bin_change_state):
16419         Fix leak.
16420         Handle case where playbasebin is now ASYNC because
16421         decodebin is.
16422
16423 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
16424
16425         * gst/audioconvert/Makefile.am:
16426         * gst/audioconvert/bufferframesconvert.c:
16427         * gst/audioconvert/plugin.c: (plugin_init):
16428         * gst/audioconvert/plugin.h:
16429           And bye bye buffer-frames-convert
16430
16431 2005-10-19  Wim Taymans  <wim@fluendo.com>
16432
16433         * check/elements/audioconvert.c:
16434         * docs/libs/tmpl/gstaudio.sgml:
16435         * docs/libs/tmpl/gstcolorbalance.sgml:
16436         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
16437         (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
16438         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
16439         * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
16440         * gst-libs/gst/audio/audio.h:
16441         * gst/audioconvert/audioconvert.h:
16442         * gst/audioconvert/gstaudioconvert.c:
16443         (gst_audio_convert_parse_caps):
16444         * gst/volume/gstvolume.c:
16445         Bye bye buffer-frames.
16446
16447 2005-10-19  Wim Taymans  <wim@fluendo.com>
16448
16449         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
16450         (query_positions_elems), (query_positions_pads), (update_scale),
16451         (do_seek), (set_update_scale), (message_received), (main):
16452         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
16453         (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
16454         (gst_ogg_demux_loop):
16455         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
16456         * ext/theora/theoradec.c: (theora_dec_src_query),
16457         (theora_dec_sink_event):
16458         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
16459         (vorbis_dec_sink_event), (vorbis_handle_data_packet):
16460         * gst/adder/gstadder.c: (gst_adder_query):
16461         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
16462         * gst/playback/test3.c: (update_scale):
16463         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
16464         (dump_element_stats), (main):
16465         * gst/playback/test6.c: (main):
16466         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
16467         Query API update.
16468
16469 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
16470
16471         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
16472         (xml_check_first_element), (xml_type_find), (smil_type_find),
16473         (plugin_init):
16474           Add typefinding for SMIL and for generic XML. Based on patch by
16475           Akos Maroy (#308663).
16476
16477 2005-10-18  Wim Taymans  <wim@fluendo.com>
16478
16479         * gst/playback/Makefile.am:
16480         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
16481         (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
16482         (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
16483         (try_to_link_1), (new_pad), (no_more_pads), (type_found),
16484         (gst_decode_bin_change_state):
16485         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
16486         (gst_play_bin_send_event_to_sink):
16487         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
16488         (dump_element_stats), (main):
16489         * gst/playback/test6.c: (main):
16490         Make playbin async, it'll commit state to paused when all streams
16491         are detected.
16492         Remove ugly hack.
16493         Added test6.c to show async behaviour.
16494
16495 2005-10-18  Wim Taymans  <wim@fluendo.com>
16496
16497         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
16498         (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
16499         Fix for segment-start/stop API change.
16500
16501 2005-10-18  Wim Taymans  <wim@fluendo.com>
16502
16503         * check/Makefile.am:
16504         * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
16505         (main):
16506         Add future test for clock selection.
16507
16508 2005-10-18  Wim Taymans  <wim@fluendo.com>
16509
16510         * ext/alsa/gstalsasink.c: (gst_alsasink_init),
16511         (gst_alsasink_close):
16512         Set handle to NULL.
16513
16514         * gst-libs/gst/audio/gstringbuffer.c:
16515         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
16516         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
16517         (gst_ring_buffer_start), (gst_ring_buffer_pause),
16518         (gst_ring_buffer_stop), (gst_ring_buffer_commit),
16519         (gst_ring_buffer_read):
16520         More debug info.
16521
16522 2005-10-17  Stefan Kost  <ensonic@users.sf.net>
16523
16524         * gst/audiotestsrc/Makefile.am:
16525         * gst/sine/Makefile.am:
16526         * gst/volume/Makefile.am:
16527           fix broken build of controllerized plugins
16528
16529 2005-10-17  Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
16530
16531         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
16532
16533         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
16534         (gst_riff_create_video_template_caps):
16535           Add support for Indeo-3 (IV32).
16536
16537 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
16538
16539         * configure.ac:
16540           rewrite
16541
16542 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
16543
16544         * gst-libs/gst/video/video.c: (gst_video_get_size):
16545         * gst/audiotestsrc/gstaudiotestsrc.c:
16546           doc updates
16547
16548 2005-10-17  Andy Wingo  <wingo@pobox.com>
16549
16550         * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
16551         with the collectpads change.
16552         (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
16553
16554         * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
16555
16556         * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
16557
16558         * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
16559         alloc_buffer flow return to callers.
16560         (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
16561         change. Fix some memleaks in theoraenc.
16562
16563         * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
16564         in strange circumstance.
16565
16566 2005-10-17  Julien MOUTTE  <julien@moutte.net>
16567
16568         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16569         (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
16570         from caps, let's use the caps...
16571
16572 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
16573
16574         * configure.ac:
16575           put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
16576
16577 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
16578
16579         * gst-libs/gst/interfaces/Makefile.am:
16580           fix silly typo
16581
16582 2005-10-16  Andy Wingo  <wingo@pobox.com>
16583
16584         * gst/playback/gstdecodebin.c
16585         (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
16586         function!
16587         (try_to_link_1): Increase kraziness level.
16588
16589 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
16590
16591         * configure.ac:
16592           restructure like the core one
16593         * gst-libs/gst/audio/Makefile.am:
16594         * gst-libs/gst/interfaces/Makefile.am:
16595         * gst-libs/gst/net/Makefile.am:
16596         * gst-libs/gst/riff/Makefile.am:
16597         * gst-libs/gst/rtp/Makefile.am:
16598         * gst-libs/gst/tag/Makefile.am:
16599         * gst-libs/gst/video/Makefile.am:
16600           use correct linker flags, now the libs are properly versioned
16601         * check/elements/audioconvert.c: (verify_convert):
16602         * ext/alsa/gstalsaplugin.c:
16603         * ext/cdparanoia/gstcdparanoia.c:
16604         * ext/gnomevfs/gstgnomevfs.c:
16605         * ext/libvisual/visual.c:
16606         * ext/ogg/gstogg.c:
16607         * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
16608         * ext/theora/theora.c:
16609         * ext/vorbis/vorbis.c:
16610         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
16611         * gst-libs/gst/tag/gsttagediting.c:
16612         * gst-libs/gst/video/video.c:
16613         * gst/adder/gstadder.c:
16614         * gst/audioconvert/plugin.c:
16615         * gst/audiorate/gstaudiorate.c:
16616         * gst/audioresample/gstaudioresample.c:
16617         * gst/audioresample/resample_ref.c: (resample_scale_ref):
16618         * gst/audioscale/gstaudioscale.c:
16619         * gst/audioscale/resample.c:
16620         * gst/audiotestsrc/gstaudiotestsrc.c:
16621         * gst/ffmpegcolorspace/gstffmpeg.c:
16622         * gst/playback/gstdecodebin.c: (close_pad_link):
16623         * gst/playback/gstplaybin.c: (gen_video_element),
16624         (gen_audio_element):
16625         * gst/sine/gstsinesrc.c:
16626         * gst/subparse/gstsubparse.c:
16627         * gst/tags/gsttagediting.c:
16628         * gst/tcp/gsttcpplugin.c:
16629         * gst/typefind/gsttypefindfunctions.c:
16630         * gst/videorate/gstvideorate.c:
16631         * gst/videoscale/gstvideoscale.c:
16632         * gst/videotestsrc/gstvideotestsrc.c:
16633         * gst/volume/gstvolume.c:
16634         * sys/v4l/gstv4l.c:
16635         * sys/ximage/ximage.c:
16636         * sys/xvimage/xvimagesink.c:
16637           fix up defines
16638
16639 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
16640
16641         * ext/vorbis/vorbisenc.c:
16642         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
16643         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
16644         (gst_tag_to_vorbis_comments):
16645           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
16646
16647 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
16648
16649         * examples/stats/mp2ogg.c:
16650         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16651           typo fixes
16652
16653 2005-10-13  Michael Smith <msmith@fluendo.com>
16654
16655         * ext/ogg/gstoggmux.c:
16656           Use magic glib macros to define constants as 64 bit, to ensure
16657           appropriate vararg passing.
16658
16659 2005-10-13  Michael Smith <msmith@fluendo.com>
16660
16661         * ext/ogg/gstoggmux.c:
16662         * gst/audioconvert/audioconvert.c: (float):
16663           Don't use LL suffix, as it's not portable, and neither of these
16664           uses required it anyway.
16665
16666 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
16667
16668         * examples/indexing/indexmpeg.c: (main):
16669         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
16670         (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
16671         (cdparanoia_convert), (cdparanoia_query):
16672         * ext/cdparanoia/gstcdparanoia.h:
16673         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
16674         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
16675         (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
16676         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
16677         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
16678         * gst/playback/gststreamselector.c: (gst_stream_selector_init):
16679         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
16680         (gst_multifdsink_render), (gst_multifdsink_start),
16681         (gst_multifdsink_stop):
16682         * gst/tcp/gstmultifdsink.h:
16683         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
16684         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
16685         (gst_tcpclientsink_stop):
16686         * gst/tcp/gsttcpclientsink.h:
16687         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
16688         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
16689         (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
16690         * gst/tcp/gsttcpclientsrc.h:
16691         * gst/tcp/gsttcpserversink.h:
16692         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
16693         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
16694         (gst_tcpserversrc_stop):
16695         * gst/tcp/gsttcpserversrc.h:
16696         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
16697         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
16698         * sys/ximage/ximagesink.c: (gst_ximagesink_init):
16699           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
16700           moved bitshift from macro to enum definition
16701
16702 2005-10-12  Wim Taymans  <wim@fluendo.com>
16703
16704         * examples/seeking/Makefile.am:
16705         Oops.
16706
16707 2005-10-12  Wim Taymans  <wim@fluendo.com>
16708
16709         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
16710         (gst_ring_buffer_read), (gst_ring_buffer_clear):
16711         Don't assert on normal stuff.
16712
16713         * gst/playback/gstplaybin.c: (do_playbin_seek):
16714         API fix.
16715
16716 2005-10-12  Wim Taymans  <wim@fluendo.com>
16717
16718         * check/pipelines/simple_launch_lines.c: (run_pipeline):
16719         * examples/seeking/Makefile.am:
16720         * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
16721         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
16722         (do_seek), (set_update_scale), (message_received), (main):
16723         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
16724         (gst_ring_buffer_read), (gst_ring_buffer_clear):
16725         Update for _get_state() API change.
16726
16727 2005-10-11  Wim Taymans  <wim@fluendo.com>
16728
16729         * gst-libs/gst/audio/gstbaseaudiosink.c:
16730         (gst_base_audio_sink_render):
16731         * gst-libs/gst/audio/gstbaseaudiosrc.c:
16732         (gst_base_audio_src_create):
16733         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
16734         (gst_ring_buffer_read):
16735         Cleanups.
16736         Commit and read from ringbuffer in samples rather than bytes.
16737
16738 2005-10-11  Wim Taymans  <wim@fluendo.com>
16739
16740         * gst-libs/gst/audio/gstbaseaudiosink.c:
16741         (gst_base_audio_sink_render):
16742         Respect segment rate and accum when scheduling samples.
16743
16744 2005-10-11  Julien MOUTTE  <julien@moutte.net>
16745
16746         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
16747         (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
16748         EOS correctly, that needs more work.
16749
16750 2005-10-11  Wim Taymans  <wim@fluendo.com>
16751
16752         * check/generic/states.c: (GST_START_TEST):
16753         remove old property.
16754
16755         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
16756         (gst_ogg_demux_perform_seek):
16757         * ext/theora/theoradec.c: (theora_dec_sink_event):
16758         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
16759         (vorbis_handle_data_packet):
16760         * gst-libs/gst/rtp/gstbasertpdepayload.c:
16761         (gst_base_rtp_depayload_set_gst_timestamp):
16762         * gst/videorate/gstvideorate.c: (gst_videorate_event):
16763         Update for newsegment API change.
16764
16765 2005-10-11  Michael Smith <msmith@fluendo.com>
16766
16767         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
16768         (do_playbin_seek), (gst_play_bin_send_event):
16769           Override send_event differently, so that we can takes bits of
16770           functionality from GstPipeline (special handling for seeks,
16771           including pausing/resuming, and resetting stream time) and still get
16772           the appropriate behaviour of only forwarding event to a single sink,
16773           rather than all of them.
16774           Unfortunately requires a lot of code duplication, but the
16775           alternatives are equally ugly in the end.
16776
16777 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
16778
16779         * check/elements/audioconvert.c: (setup_audioconvert),
16780         (cleanup_audioconvert), (get_int_caps), (verify_convert),
16781         (GST_START_TEST), (audioconvert_suite):
16782           clean up tests a little, fix some leaks.
16783
16784 2005-10-10  Wim Taymans  <wim@fluendo.com>
16785
16786         * ext/alsa/gstalsasink.c:
16787         Also allow unsigned int.
16788
16789         * gst-libs/gst/audio/gstbaseaudiosrc.c:
16790         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
16791         Small cleanup
16792
16793 2005-10-10  Wim Taymans  <wim@fluendo.com>
16794
16795         * check/pipelines/simple_launch_lines.c: (run_pipeline):
16796         Small update, use API as stated in design docs.
16797
16798         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
16799         (update_scale), (do_seek), (seek_cb), (set_update_scale),
16800         (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
16801         (message_received), (main):
16802         Updated seek example for GOption. Some usability improvements.
16803
16804 2005-10-10  Wim Taymans  <wim@fluendo.com>
16805
16806         * gst/audioconvert/audioconvert.h:
16807         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
16808         (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
16809         Alloc temp storage somewhere else where we can do it more
16810         portable.
16811
16812 2005-10-10  Wim Taymans  <wim@fluendo.com>
16813
16814         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
16815         (gst_tcpserversrc_start):
16816         Don't block in accept while doing the state change, move
16817         to poll and make cancellable.
16818
16819 2005-10-09  Philippe Khalaf <burger@speedy.org>
16820
16821         * gst-libs/gst/rtp/rtpbasedepayload.c:
16822         Set timestamp and add queue delay to timestamp
16823         * gst-libs/gst/rtp/rtpbuffer.h:
16824         Set correct payload type for h263
16825
16826 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
16827
16828         * gst/audiotestsrc/gstaudiotestsrc.c:
16829         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
16830         (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
16831         (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
16832         (gst_audiotestsrc_create_triangle),
16833         (gst_audiotestsrc_create_silence),
16834         (gst_audiotestsrc_create_white_noise),
16835         (gst_audiotestsrc_init_pink_noise),
16836         (gst_audiotestsrc_generate_pink_noise_value),
16837         (gst_audiotestsrc_create_pink_noise),
16838         (gst_audiotestsrc_change_wave):
16839         * gst/audiotestsrc/gstaudiotestsrc.h:
16840           fixed typo, added pink noise
16841
16842 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
16843
16844         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
16845         (plugin_init):
16846           Add wavpack and spc typefind functions from 0.8 branch.
16847
16848 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
16849
16850         * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
16851         (ar_type_find), (msdos_type_find), (plugin_init):
16852           Add typefind functions for tar archives, ar archives,
16853           RAR archives, and msdos-executables (dlls, exe, etc.).
16854           Some of those would be wrongly identified as mpeg
16855           streams of some sort before (#315550).
16856
16857 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
16858
16859         * configure.ac:
16860         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16861         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16862         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
16863         * gst/audiotestsrc/Makefile.am:
16864         * gst/audiotestsrc/gstaudiotestsrc.c:
16865         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
16866         (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
16867         (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
16868         (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
16869         (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
16870         (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
16871         (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
16872         (gst_audiotestsrc_create_silence),
16873         (gst_audiotestsrc_create_white_noise),
16874         (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
16875         (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
16876         (gst_audiotestsrc_start), (plugin_init):
16877         * gst/audiotestsrc/gstaudiotestsrc.h:
16878           add new plugin and element
16879         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
16880           use gobject_class
16881
16882 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
16883
16884         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
16885         (gst_adder_init), (gst_adder_request_new_pad),
16886         (gst_adder_change_state):
16887           Add query function to source pad, so adder reports the correct
16888           time/sample position when queried (#315457); fix state change
16889           function; use GST_DEBUG_FUNCPTR() for pad functions.
16890
16891 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
16892
16893         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
16894           Fix leaks in typefind registration
16895           Clean up the gratuitous commenting and whitespacing a little
16896
16897 2005-10-08  Wim Taymans  <wim@fluendo.com>
16898
16899         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
16900         Only actually wait for the thread to be stopped if it's 
16901         running.
16902
16903 2005-10-08  Wim Taymans  <wim@fluendo.com>
16904
16905         * gst-libs/gst/audio/gstbaseaudiosink.c:
16906         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
16907         If we receive EOS we can start playback of what we had.
16908
16909 2005-10-08  Wim Taymans  <wim@fluendo.com>
16910
16911         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
16912         (gst_multifdsink_finalize), (multifdsink_hash_remove),
16913         (gst_multifdsink_stop):
16914         Fix crasher when going to NULL multiple times.
16915
16916 2005-10-06  Wim Taymans  <wim@fluendo.com>
16917
16918         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
16919         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
16920         * gst-libs/gst/audio/gstbaseaudiosrc.h:
16921         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
16922         patch from Edgard Lima <edgard.lima@indt.org.br>
16923         Fixed gstbaseaudiosrc adding ring buffer sync to it.
16924
16925 2005-10-06  Wim Taymans  <wim@fluendo.com>
16926
16927         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
16928         Report the FLOW_RETURN as string in the error message.
16929
16930         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
16931         Don't assert when clearing an unnegotiated buffer.
16932
16933 2005-10-04  Michael Smith <msmith@fluendo.com>
16934
16935         * gst/playback/gstplaybasebin.c: (group_destroy),
16936         (gen_preroll_element), (remove_groups), (setup_source):
16937         * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
16938         (setup_sinks), (gst_play_bin_send_event),
16939         (gst_play_bin_change_state):
16940           Set state to NULL before removing from bin. Fix refcounting.
16941
16942 2005-10-04  Michael Smith <msmith@fluendo.com>
16943
16944         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
16945           Correct refcounting in send_event() function. Previously was wrong
16946           if the first sink was unable to handle the event.
16947
16948 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
16949
16950         * configure.ac:
16951           back to development
16952
16953 === release 0.9.3 ===
16954
16955 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
16956
16957         * configure.ac:
16958           Releasing 0.9.3, "De Facto"
16959
16960 2005-10-03  Andy Wingo  <wingo@pobox.com>
16961
16962         * gst/playback/gstdecodebin.c (try_to_link_1)
16963         (remove_element_chain): set element to NULL before removing it.
16964
16965 2005-10-02  Johan Dahlin  <johan@gnome.org>
16966
16967         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols): 
16968         protect gst_gnomevfs_get_supported_uris by a mutex, to make it
16969         MT safe.
16970
16971 2005-10-02  Andy Wingo  <wingo@pobox.com>
16972
16973         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear) 
16974         (gst_ring_buffer_prepare_read): 
16975         * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
16976         Demote to LOG.
16977
16978 2005-09-29  Wim Taymans  <wim@fluendo.com>
16979
16980         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
16981         * ext/theora/theoradec.c: (theora_handle_data_packet):
16982         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
16983         Propagate error codes from alloc_buffer too.
16984
16985 2005-09-29  Wim Taymans  <wim@fluendo.com>
16986
16987         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
16988         We use fixed caps.
16989
16990         * gst/playback/Makefile.am:
16991         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
16992         (dump_element_stats), (main):
16993         Added example stream introspection code.
16994
16995 2005-09-28  Stefan Kost  <ensonic@users.sf.net>
16996
16997         * gst/adder/gstadder.c: (gst_adder_collected):
16998           fix adder for float elements
16999
17000 2005-09-28  Wim Taymans  <wim@fluendo.com>
17001
17002         * gst-libs/gst/audio/gstbaseaudiosink.c:
17003         (gst_base_audio_sink_class_init),
17004         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
17005         * gst-libs/gst/audio/gstbaseaudiosrc.c:
17006         (gst_base_audio_src_class_init),
17007         (gst_base_audio_src_provide_clock):
17008         get_clock -> provide_clock
17009
17010 2005-09-28  Andy Wingo  <wingo@pobox.com>
17011
17012         * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
17013         and unlocking.
17014
17015         * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
17016         unlocking.
17017
17018         * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
17019         Actually add the pad template.
17020         (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
17021
17022         * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
17023         I'm at it...
17024
17025         * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
17026         from fdsrc. Get caps in create() instead of start() so it can be
17027         interrupted. Interruption somewhat untested.
17028
17029         * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
17030         Proper EOS handling.
17031
17032 2005-09-27  Andy Wingo  <wingo@pobox.com>
17033
17034         * gst/tcp/gsttcpclientsrc.c: Cleaned up.
17035
17036         * gst/tcp/gsttcpserversrc.c: Cleaned up.
17037
17038         * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
17039
17040         * gst/tcp/gsttcp.h: 
17041         * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
17042         out of tcpclientsrc.c. Cancellable.
17043         (gst_tcp_socket_read): Made private, cancellable, with better
17044         diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
17045         (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
17046         whole buffer, and better diagnostics.
17047         (gst_tcp_gdp_read_caps): Same.
17048
17049         * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
17050
17051 2005-09-26  Andy Wingo  <wingo@pobox.com>
17052
17053         * gst/sine/gstsinesrc.h:
17054         * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
17055         change the 'sync' property to 'is-live' and implement it halfway,
17056         update for controller api change.
17057
17058         * gst/volume/gstvolume.c (volume_transform_ip): Update for
17059         controller api change.
17060
17061 2005-09-24  Wim Taymans  <wim@fluendo.com>
17062
17063         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
17064         * gst-libs/gst/audio/gstaudiosink.c:
17065         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
17066         (gst_audioringbuffer_stop):
17067         * gst-libs/gst/audio/gstbaseaudiosink.c:
17068         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
17069         (gst_base_audio_sink_change_state):
17070         * gst-libs/gst/audio/gstbaseaudiosink.h:
17071         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
17072         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
17073         (gst_ring_buffer_commit), (gst_ring_buffer_read):
17074         * gst-libs/gst/audio/gstringbuffer.h:
17075         Fix sync again. Moved sample alignment to basesink.
17076
17077 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
17078
17079         * docs/plugins/Makefile.am:
17080         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17081         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17082         * gst/volume/gstvolume.c:
17083           add/fix docs
17084         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
17085         * gst-libs/gst/audio/audio.h:
17086           add conversion macros for frames <-> clocktime
17087
17088 2005-09-23  David Schleef  <ds@schleef.org>
17089
17090         * gst/audioresample/Makefile.am:
17091         * gst/audioresample/debug.h:
17092         * gst/audioresample/gstaudioresample.c:
17093         * gst/audioresample/resample.c: Convert to using gst debugging
17094
17095 2005-09-22  Wim Taymans  <wim@fluendo.com>
17096
17097         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
17098         (gst_play_bin_send_event):
17099         Only seek on one sink, the first one that succeeds.
17100
17101 2005-09-22  Michael Smith <msmith@fluendo.com>
17102
17103         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
17104         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
17105         Don't flush encoder state unless we have an initialised encoder.
17106         Clear out encoder state on PAUSED_TO_READY.
17107
17108 2005-09-22  Wim Taymans  <wim@fluendo.com>
17109
17110         * gst-libs/gst/rtp/gstbasertppayload.c:
17111         (gst_basertppayload_class_init), (gst_basertppayload_init),
17112         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
17113         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
17114         (gst_basertppayload_is_filled), (gst_basertppayload_push),
17115         (gst_basertppayload_set_property),
17116         (gst_basertppayload_get_property),
17117         (gst_basertppayload_change_state):
17118         * gst-libs/gst/rtp/gstbasertppayload.h:
17119         Added max-ptime to control amount of data in the rtp packets.
17120
17121 2005-09-21  Andy Wingo  <wingo@pobox.com>
17122
17123         * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
17124         thingies.
17125
17126         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
17127         can be called multiple times, dogs.
17128
17129 2005-09-21  Wim Taymans  <wim@fluendo.com>
17130
17131         * gst-libs/gst/rtp/gstbasertppayload.c:
17132         (gst_basertppayload_class_init), (gst_basertppayload_init),
17133         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
17134         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
17135         (gst_basertppayload_push), (gst_basertppayload_get_property),
17136         (gst_basertppayload_change_state):
17137         Allow 0 ssrc too.
17138
17139 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
17140
17141         * docs/libs/compiling.sgml:
17142           fixing typos
17143
17144 2005-09-20  Wim Taymans  <wim@fluendo.com>
17145
17146         * gst-libs/gst/rtp/gstbasertppayload.c:
17147         (gst_basertppayload_class_init), (gst_basertppayload_init),
17148         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
17149         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
17150         (gst_basertppayload_push), (gst_basertppayload_set_property),
17151         (gst_basertppayload_get_property),
17152         (gst_basertppayload_change_state):
17153         * gst-libs/gst/rtp/gstbasertppayload.h:
17154         Added property to configure sequence number offsets.
17155
17156 2005-09-20  Wim Taymans  <wim@fluendo.com>
17157
17158         * gst-libs/gst/rtp/gstbasertppayload.c:
17159         (gst_basertppayload_class_init), (gst_basertppayload_init),
17160         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
17161         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
17162         (gst_basertppayload_push), (gst_basertppayload_set_property),
17163         (gst_basertppayload_get_property),
17164         (gst_basertppayload_change_state):
17165         * gst-libs/gst/rtp/gstbasertppayload.h:
17166         Make timestamp offset configurable.
17167
17168 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
17169
17170         * check/pipelines/simple_launch_lines.c: (run_pipeline):
17171           fix wrong pop/unref
17172
17173 2005-09-19  Torsten Schoenfeld  <kaffeetisch at gmx dot net>
17174
17175         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
17176
17177         * gst-libs/gst/interfaces/propertyprobe.c:
17178         (gst_property_probe_probe_property_name),
17179         (gst_property_probe_needs_probe_name),
17180         (gst_property_probe_get_values_name),
17181         (gst_property_probe_probe_and_get_values_name):
17182           Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
17183           G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
17184
17185 2005-09-19  Thomas Vander Stichele  <thomas at apestaart dot org>
17186
17187         * check/Makefile.am:
17188           have some tests be disabled for valgrinding
17189         * check/elements/vorbisdec.c: (cleanup_vorbisdec),
17190         (GST_START_TEST):
17191         * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
17192           Fix A Leak.  Chain To Parent Finalize.
17193
17194 2005-09-19  Wim Taymans  <wim@fluendo.com>
17195
17196         * examples/seeking/seek.c: (make_wav_pipeline), (main):
17197         Fixed wav pipeline.
17198
17199 2005-09-19  Wim Taymans  <wim@fluendo.com>
17200
17201         * gst-libs/gst/rtp/gstbasertppayload.c:
17202         (gst_basertppayload_class_init), (gst_basertppayload_init),
17203         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
17204         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
17205         (gst_basertppayload_push), (gst_basertppayload_get_property),
17206         (gst_basertppayload_change_state):
17207         Posting ERROR and WARNING messages is good.
17208
17209 2005-09-19  Wim Taymans  <wim@fluendo.com>
17210
17211         * gst-libs/gst/rtp/gstbasertpdepayload.c:
17212         (gst_base_rtp_depayload_add_to_queue),
17213         (gst_base_rtp_depayload_push),
17214         (gst_base_rtp_depayload_set_gst_timestamp),
17215         (gst_base_rtp_depayload_queue_release):
17216         This one was not supposed to go in.
17217
17218 2005-09-19  Wim Taymans  <wim@fluendo.com>
17219
17220         * check/pipelines/simple_launch_lines.c: (run_pipeline):
17221         Fix for bus API.
17222
17223         * gst-libs/gst/rtp/gstbasertpdepayload.c:
17224         (gst_base_rtp_depayload_chain),
17225         (gst_base_rtp_depayload_add_to_queue),
17226         (gst_base_rtp_depayload_push),
17227         (gst_base_rtp_depayload_set_gst_timestamp),
17228         (gst_base_rtp_depayload_queue_release):
17229         Some cleanups.
17230
17231         * gst-libs/gst/rtp/gstbasertppayload.c:
17232         (gst_basertppayload_class_init), (gst_basertppayload_init),
17233         (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
17234         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
17235         (gst_basertppayload_get_property),
17236         (gst_basertppayload_change_state):
17237         Added debugging category.
17238
17239 2005-09-18  David Schleef  <ds@schleef.org>
17240
17241         * gst/playback/gstdecodebin.c: free plugin list correctly
17242         * gst/playback/gstplaybin.c: emit warning if autovideosink
17243           and autoaudiosink can't be found (instead of segfaulting)
17244
17245 2005-09-17  Thomas Vander Stichele  <thomas at apestaart dot org>
17246
17247         * check/elements/audioconvert.c: (GST_START_TEST):
17248           try out 24 bit conversion
17249
17250 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
17251
17252         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
17253         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
17254         (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
17255         * ext/vorbis/vorbisenc.h:
17256           Fix EOS handling.  Still needs a fix in the ogg muxer to
17257           mark the last page as eos.
17258
17259 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
17260
17261         * common/gtk-doc-plugins.mak:
17262         * docs/plugins/Makefile.am:
17263         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17264         * gst/ffmpegcolorspace/Makefile.am:
17265         * gst/ffmpegcolorspace/avcodec.h:
17266         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17267         * gst/tcp/gstmultifdsink.c:
17268           fix up ffmpegcolorspace docs; extract header
17269
17270 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
17271
17272         * common/gtk-doc-plugins.mak:
17273         * docs/plugins/Makefile.am:
17274         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17275         * ext/theora/Makefile.am:
17276         * ext/theora/gsttheoraenc.h:
17277         * ext/theora/theoraenc.c:
17278         * ext/vorbis/vorbisenc.c:
17279           pick up signals and args for vorbis; add some docs for vorbis
17280
17281 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
17282
17283         * common/gstdoc-scangobj:
17284         * common/gtk-doc-plugins.mak:
17285         * docs/libs/Makefile.am:
17286         * docs/plugins/gst-plugins-base-plugins.args:
17287         * docs/plugins/gst-plugins-base-plugins.hierarchy:
17288         * docs/plugins/gst-plugins-base-plugins.interfaces:
17289         * docs/plugins/gst-plugins-base-plugins.prerequisites:
17290         * docs/plugins/gst-plugins-base-plugins.signals:
17291           only scanobj stuff from our source module.  Not sure yet
17292           if that's correct, given the hierarchy stuff :)
17293
17294 2005-09-15  Wim Taymans  <wim@fluendo.com>
17295
17296         * gst/audioconvert/gstaudioconvert.c:
17297         And enable 24 bits mode as well..
17298
17299 2005-09-15  Wim Taymans  <wim@fluendo.com>
17300
17301         * gst-libs/gst/rtp/Makefile.am:
17302         * gst-libs/gst/rtp/gstbasertppayload.c:
17303         (gst_basertppayload_get_type), (gst_basertppayload_base_init),
17304         (gst_basertppayload_class_init), (gst_basertppayload_init),
17305         (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
17306         (gst_basertppayload_chain), (gst_basertppayload_set_options),
17307         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
17308         (gst_basertppayload_set_property),
17309         (gst_basertppayload_get_property),
17310         (gst_basertppayload_change_state):
17311         * gst-libs/gst/rtp/gstbasertppayload.h:
17312         Added rtp payloader base class.
17313
17314 2005-09-15  Andy Wingo  <wingo@pobox.com>
17315
17316         * configure.ac (plugindir): Remove the EOL matcher from the
17317         regexp, as it causes me problems. Libtool? Make? Who knows?
17318
17319 2005-09-14  David Schleef  <ds@schleef.org>
17320
17321         * check/generic/states.c: 
17322         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
17323         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
17324           Fixes for changes in registry API.
17325
17326         * configure.ac: Only export gst_plugins_desc.  Add -no-undefined
17327           to GST_PLUGIN_LDFLAGS.
17328         * ext/libvisual/visual.c: Make the library shut up.
17329         * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
17330         * gst-libs/gst/audio/gstaudiofilter.c: same
17331
17332 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
17333
17334         * docs/plugins/Makefile.am:
17335         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17336         * docs/plugins/inspect/plugin-libvisual.xml:
17337         * docs/plugins/tmpl/element-tcpserversink.sgml:
17338         * ext/theora/theoraenc.c:
17339           add libvisual plugin and theoraenc element to docs
17340
17341 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
17342
17343         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17344         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17345         * ext/theora/theoraenc.c:
17346           add theoraenc
17347
17348 2005-09-13  Tim-Philipp Müller  <tim at centricular dot net>
17349
17350         * gst/audioconvert/Makefile.am:
17351           Audioconvert derives from GstBaseTransform and should
17352           link to the library with our base elements to avoid
17353           unresolved symbols. Makes things work with MinGW (#316160)
17354
17355         * gst/playback/test4.c: (main):
17356           Fix MinGW build problem and use g_usleep() instead of 
17357           sleep() (#316162)
17358
17359 2005-09-12  Wim Taymans  <wim@fluendo.com>
17360
17361         * gst/audioconvert/audioconvert.c: (float),
17362         (audio_convert_prepare_context), (audio_convert_convert):
17363         * gst/audioconvert/audioconvert.h:
17364         Cleanups, speedups, simplifications, added back support
17365         for 24 bits.
17366
17367 2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>
17368
17369         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17370         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17371         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
17372         * docs/plugins/tmpl/element-tcpserversink.sgml:
17373         * gst/ffmpegcolorspace/gstffmpeg.c:
17374         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17375         * gst/videotestsrc/gstvideotestsrc.c:
17376         * gst/volume/gstvolume.c:
17377           add more elements to the docs
17378
17379 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
17380
17381         * check/Makefile.am:
17382         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
17383         (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
17384           Add extra tests for basetransform based components. 
17385           Comment out the test_element_negotiation test until we decide
17386           if it's testing correct behaviour.
17387         * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
17388         (gst_visual_chain), (gst_visual_change_state):
17389           Slightly more correct but still bogus timestamping.
17390           Fix state change function.
17391         * gst/audioconvert/gstaudioconvert.c:
17392         (gst_audio_convert_class_init):
17393         * gst/audioresample/gstaudioresample.c:
17394         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17395         (gst_ffmpegcsp_class_init):
17396         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
17397         (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
17398         (gst_videoscale_prepare_image):
17399         * gst/volume/gstvolume.c: (gst_volume_class_init),
17400         (volume_transform_ip):
17401           Basetransform updates. Enable passthrough modes.
17402         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
17403         (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
17404         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
17405           Negotiation fix that allows the window to return to the original
17406           size and renegotiate passthrough upstream. Extra debug output.
17407
17408 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
17409
17410         * gst/sine/gstsinesrc.c:
17411         * gst/volume/gstvolume.c:
17412           fix up header include
17413
17414 2005-09-09  Stefan Kost  <ensonic@users.sf.net>
17415
17416         * gst-libs/gst/audio/gstbaseaudiosink.c:
17417         (gst_base_audio_sink_render):
17418         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
17419         * gst/volume/gstvolume.c: (gst_volume_class_init),
17420         (volume_transform):
17421           fixing lost sync, some more debugging
17422
17423 2005-09-08  Jan Schmidt  <thaytan@mad.scientist.com>
17424
17425         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
17426         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
17427         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
17428         (gst_xvimagesink_check_xshm_calls):
17429           Fix compilation when XShm is not available.
17430
17431 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
17432
17433         * ext/libvisual/visual.c: (gst_visual_dispose),
17434         (gst_visual_getcaps), (gst_visual_src_setcaps),
17435         (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
17436         (gst_visual_change_state):
17437           Finish fixing up libvisual plugin so that it runs. 
17438
17439 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
17440
17441         * ext/vorbis/vorbisenc.c:
17442         * gst-libs/gst/tag/gstvorbistag.c:
17443           gsttaginterface.h -> gsttagsetter.h
17444
17445 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
17446
17447         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
17448           added another test that failes for me (test is not active by default)
17449
17450 2005-09-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17451
17452         * configure.ac:
17453           v4l2 is no longer in gst-plugins-base
17454
17455 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
17456
17457         * configure.ac:
17458           In the output at the end, don't show the first plugin on the same
17459           line as "Core plug-ins, always built:".
17460           Indent the output as for other plugin categories
17461         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
17462           #define that can be used to not use peer buffer_alloc functions for
17463           test purposes.
17464         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
17465         (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
17466         (gst_ximagesink_show_frame):
17467         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
17468         (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
17469         (gst_xvimagesink_show_frame):
17470           Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
17471           fails gracefully instead of XError aborting or deadlocking.
17472
17473 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
17474
17475         * ext/libvisual/Makefile.am:
17476           link against gst-base-libs
17477
17478 2005-09-06  David Schleef  <ds@schleef.org>
17479
17480         * configure.ac: Enable libvisual plugin.
17481         * ext/libvisual/Makefile.am:
17482         * ext/libvisual/visual.c: Fixes to make it compile.
17483
17484 === release 0.9.2 ===
17485
17486 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
17487
17488         * NEWS:
17489         * RELEASE:
17490         * configure.ac:
17491         * docs/random/ChangeLog-0.8:
17492           releasing 0.9.2, "Spoon"
17493
17494 2005-09-05  Michael Smith <msmith@fluendo.com>
17495
17496         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
17497           libvorbis accepts quality as low as -0.1, not just 0.0. So accept
17498           that in the vorbisenc element.
17499
17500 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
17501
17502         * common/gtk-doc-plugins.mak:
17503         * docs/plugins/Makefile.am:
17504           fix distcheck
17505         * gst/audioresample/resample.c:
17506           fix wrong docstring
17507
17508 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
17509
17510         * common/gst-xmlinspect.py:
17511         * common/gtk-doc-plugins.mak:
17512           only inspect plugins for this given package
17513           require gst-python 0.9
17514
17515 2005-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
17516
17517         * Makefile.am:
17518         * autogen.sh:
17519         * common/gst-xmlinspect.py:
17520         * configure.ac:
17521         * docs/Makefile.am:
17522         * docs/plugins/inspect/plugin-alsa.xml:
17523         * docs/plugins/inspect/plugin-audioresample.xml:
17524         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
17525         * docs/plugins/inspect/plugin-ogg.xml:
17526         * docs/plugins/tmpl/element-gnomevfssink.sgml:
17527         * docs/plugins/tmpl/element-multifdsink.sgml:
17528         * docs/plugins/tmpl/element-tcpserversink.sgml:
17529         * docs/plugins/tmpl/element-vorbisenc.sgml:
17530         * gst-plugins-base.spec.in:
17531           various doc-related updates
17532
17533 2005-08-31  Wim Taymans  <wim@fluendo.com>
17534
17535         * gst-libs/gst/audio/gstbaseaudiosink.c:
17536         (gst_base_audio_sink_render):
17537         Resync if the buffer timestamps drift more than a 10th 
17538         of a second.
17539
17540 2005-08-31  Tim-Philipp Müller  <tim at centricular dot net>
17541
17542         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
17543         (gst_v4lsrc_get_property):
17544           The 'timestamp-offset' property is registered as an int64, so
17545           let's use g_value_{set|get}_int64() in our setter and getter
17546           functions (makes it work and fixes warnings with gst-inspect).
17547
17548 2005-08-30  Wim Taymans  <wim@fluendo.com>
17549
17550         * check/elements/audioconvert.c: (setup_audioconvert):
17551         * check/elements/audioresample.c: (setup_audioresample):
17552         * check/elements/volume.c: (setup_volume):
17553         Fix checks.
17554
17555 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
17556
17557         * common/gtk-doc-plugins.mak:
17558         * common/plugins.xsl:
17559         * docs/plugins/Makefile.am:
17560           make module a param
17561
17562 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
17563
17564         * examples/seeking/seek.c: (make_mp3_pipeline),
17565         (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
17566         (play_cb), (pause_cb), (stop_cb):
17567           update the example
17568
17569 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
17570
17571         * gst/volume/gstvolume.c: (gst_volume_class_init),
17572         (volume_transform):
17573           do not update controlled params, if buffer has no timestamp
17574
17575 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
17576
17577         * configure.ac:
17578         * gst/sine/Makefile.am:
17579         * gst/volume/Makefile.am:
17580           controllerized elements also need to link against controller-libs ;)
17581
17582 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
17583
17584         * docs/libs/tmpl/gstcolorbalance.sgml:
17585         * docs/libs/tmpl/gstgconf.sgml:
17586         * docs/libs/tmpl/gstmixer.sgml:
17587         * docs/libs/tmpl/gstringbuffer.sgml:
17588         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
17589         (gst_sinesrc_create):
17590         * gst/volume/gstvolume.c: (gst_volume_class_init),
17591         (volume_transform):
17592           controllerized two audio plugins
17593
17594 2005-08-29  Andy Wingo  <wingo@pobox.com>
17595
17596         * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push) 
17597         (vorbis_handle_data_packet): Fix some int overflow errors.
17598
17599         * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
17600         -1.
17601         (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
17602         valid.
17603         (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
17604         if it's valid. Fixed streaming-mode playback.
17605
17606         * check/elements/volume.c (cleanup_volume): Fix for running
17607         CK_FORK=no.
17608
17609         * check/elements/audioconvert.c: Convert from native endian, not
17610         little endian.
17611
17612 2005-08-29  Michael Smith <msmith@fluendo.com>
17613
17614         * ext/ogg/Makefile.am:
17615         * ext/ogg/gstogg.c: (plugin_init):
17616         * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
17617         (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
17618         (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
17619         (gst_ogg_parse_class_init), (gst_ogg_parse_init),
17620         (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
17621         (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
17622         (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
17623         (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
17624         Add an ogg parser element.
17625
17626 2005-08-28  Andy Wingo  <wingo@pobox.com>
17627
17628         * Updates for two-arg init from GST_BOILERPLATE_FULL.
17629
17630 2005-08-26  Wim Taymans  <wim@fluendo.com>
17631
17632         * gst/audioconvert/audioconvert.c: (if), (float),
17633         (audio_convert_get_func_index), (check_default),
17634         (audio_convert_clean_fmt), (audio_convert_prepare_context),
17635         (audio_convert_clean_context), (audio_convert_get_sizes),
17636         (audio_convert_convert):
17637         Cleanups.
17638
17639 2005-08-26  Wim Taymans  <wim@fluendo.com>
17640
17641         * gst/audioconvert/audioconvert.c: (if), (float),
17642         (audio_convert_get_func_index), (check_default),
17643         (audio_convert_clean_fmt), (audio_convert_prepare_context),
17644         (audio_convert_clean_context), (audio_convert_get_sizes),
17645         (audio_convert_convert):
17646         More elegant and working temp buffer selection algo.
17647
17648 2005-08-26  Wim Taymans  <wim@fluendo.com>
17649
17650         * gst/audioconvert/audioconvert.c: (if), (float),
17651         (audio_convert_get_func_index), (check_default),
17652         (audio_convert_clean_fmt), (audio_convert_prepare_context),
17653         (audio_convert_clean_context), (audio_convert_get_sizes),
17654         (get_temp_buffer), (audio_convert_convert):
17655         Use realloc else we lose our original data.
17656
17657 2005-08-26  Thomas Vander Stichele  <thomas at apestaart dot org>
17658
17659         * gst/audioresample/gstaudioresample.c:
17660           use base class' newsegment to properly timestamp
17661
17662 2005-08-26  Wim Taymans  <wim@fluendo.com>
17663
17664         * gst/audioconvert/audioconvert.c: (if), (float),
17665         (audio_convert_get_func_index), (check_default),
17666         (audio_convert_clean_fmt), (audio_convert_prepare_context),
17667         (audio_convert_clean_context), (audio_convert_get_sizes),
17668         (get_temp_buffer), (audio_convert_convert):
17669         * gst/audioconvert/gstaudioconvert.c:
17670         (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
17671         (gst_audio_convert_transform_caps),
17672         (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
17673         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
17674         Oops, allocate enough space to perform the channel mix.
17675
17676 2005-08-26  Wim Taymans  <wim@fluendo.com>
17677
17678         * gst/audioconvert/Makefile.am:
17679         * gst/audioconvert/audioconvert.c: (if), (float),
17680         (audio_convert_get_func_index), (check_default),
17681         (audio_convert_clean_fmt), (audio_convert_prepare_context),
17682         (audio_convert_clean_context), (audio_convert_get_sizes),
17683         (get_temp_buffer), (audio_convert_convert):
17684         * gst/audioconvert/audioconvert.h:
17685         * gst/audioconvert/gstaudioconvert.c:
17686         (gst_audio_convert_class_init), (gst_audio_convert_init),
17687         (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
17688         (gst_audio_convert_get_unit_size),
17689         (gst_audio_convert_transform_caps),
17690         (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
17691         (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
17692         * gst/audioconvert/gstaudioconvert.h:
17693         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
17694         (gst_channel_mix_fill_identical),
17695         (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
17696         (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
17697         (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
17698         (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
17699         (gst_channel_mix_mix):
17700         * gst/audioconvert/gstchannelmix.h:
17701         Cleanups, librarify a bit, optimize, better negotiation and more.
17702
17703 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
17704
17705         * ext/ogg/gstoggdemux.c: (ogg_find_peek):
17706         Another from MikeS:
17707         During typefinding, don't support negative offsets
17708         (offsets from the end of the stream) in our typefind->peek() function
17709         - nothing embedded in ogg ever needs them. However, we need to recognise
17710         those requests and reject them, otherwise we return invalid pointers.
17711
17712 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
17713
17714         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
17715         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
17716         (vorbisdec_finalize), (vorbis_handle_type_packet):
17717           Big shout-out to MikeS for fixing this giant memory leak.
17718           Huzzah!
17719
17720 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
17721
17722         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
17723         (audio_convert_get_unit_size):
17724           plug some leaks
17725
17726 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
17727
17728         * check/Makefile.am:
17729         * check/elements/audioconvert.c: (setup_audioconvert),
17730         (cleanup_audioconvert), (get_int_caps), (verify_convert),
17731         (GST_START_TEST), (audioconvert_suite), (main):
17732           add a test for audioconvert
17733         * gst/audioresample/gstaudioresample.c:
17734         * gst/audioresample/gstaudioresample.h:
17735           set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
17736           note that for buffers of 1/3 sec this means DURATION(c) is 
17737           one nanosecond more than for a and b
17738
17739 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
17740
17741         * check/Makefile.am:
17742         * check/elements/audioresample.c: (setup_audioresample),
17743         (cleanup_audioresample), (fail_unless_perfect_stream),
17744         (test_perfect_stream_instance), (GST_START_TEST),
17745           add a check for audioresample
17746         (audioresample_suite), (main):
17747         * check/elements/volume.c: (GST_START_TEST):
17748           remove unused method
17749         * gst/audioresample/gstaudioresample.c:
17750           set correct buffer parameters since we're changing them
17751         * gst/audioresample/resample_ref.c: (resample_scale_ref):
17752           add some debug
17753
17754 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
17755
17756         * gst/audioresample/debug.c:
17757         * gst/audioresample/gstaudioresample.c:
17758           add room for extra overlap samples when asked to transform size
17759           protect against possible mem corruption and check for discrepancies
17760           between written size and outbuffer's size so we can warn for
17761           potential problems
17762         * gst/audioresample/resample.c: (resample_init),
17763         (resample_get_output_size_for_input), (resample_get_output_size),
17764         (resample_set_n_channels), (resample_set_format):
17765           set debug level based on RESAMPLE_DEBUG env var
17766           make sure that get_output_size* returns a whole number of
17767           sample_size
17768           set sample_size each time either channel or format is set
17769         * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
17770         * gst/audioresample/resample_functable.c:
17771         (resample_scale_functable):
17772         * gst/audioresample/resample_ref.c: (resample_scale_ref):
17773           remove r->sample_size, it's done in resample.c now
17774           add some debugging to the ref implementation
17775           make sure we only give back bytes that are wholes of the sample
17776           size
17777
17778 2005-08-25  Jan Schmidt  <thaytan@mad.scientist.com>
17779         * gst/playback/gstplaybasebin.c: (fill_buffer):
17780         Revert unpopular change for GST_MESSAGE_SRC to GObject.
17781
17782 2005-08-25  Stefan Kost  <ensonic@users.sf.net>
17783
17784         * gst/volume/gstvolume.c:
17785           made set_caps function static
17786
17787 2005-08-24  Wim Taymans  <wim@fluendo.com>
17788
17789         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
17790         (gst_vorbisenc_change_state):
17791         Stop leaking taglists.
17792
17793 2005-08-24  Wim Taymans  <wim@fluendo.com>
17794
17795         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
17796         (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
17797         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
17798         (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
17799         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
17800         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
17801         Parse seeking events better.
17802         Unref static caps.
17803         Generate correct newsegment events, fixes seeking in live oggs.
17804
17805         * ext/theora/theoradec.c: (theora_dec_src_query),
17806         (theora_dec_src_event), (theora_dec_src_getcaps),
17807         (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
17808         Use newsegment values to report correct play time.
17809
17810         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
17811         (vorbis_dec_src_event), (vorbis_dec_sink_event):
17812         * ext/vorbis/vorbisdec.h:
17813         Parse and use newsegment values to report correct play time.
17814
17815         * gst-libs/gst/audio/gstbaseaudiosink.c:
17816         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
17817         Clear ringbuffer on flush.
17818         Use newsegment values to calculate playback time.
17819
17820         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
17821         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
17822         Basesink does newsegment calculations for us now.
17823
17824 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
17825
17826         * check/Makefile.am:
17827         * configure.ac:
17828           add core's plugins to the mix so that playbin works
17829         * check/generic/states.c: (GST_START_TEST):
17830           set a 0 timeout on pipelines, so they don't force the next
17831           state change
17832         * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
17833         (gst_play_base_bin_change_state):
17834           remove the crappy error handling and do GST error handling
17835
17836 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
17837
17838         * check/Makefile.am:
17839         * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
17840           add same test as to core, it bitches out on playbin atm.
17841
17842 2005-08-24  Wim Taymans  <wim@fluendo.com>
17843
17844         * configure.ac:
17845         Remove audioscale.
17846
17847 2005-08-24  Wim Taymans  <wim@fluendo.com>
17848
17849         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
17850         (gst_videoscale_prepare_size), (parse_caps),
17851         (gst_videoscale_set_caps), (gst_videoscale_get_size),
17852         (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
17853         (gst_videoscale_transform):
17854         * gst/videoscale/gstvideoscale.h:
17855         Refactor, make use of BaseTranform really well.
17856
17857 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
17858
17859         * configure.ac:
17860           compile audioresample
17861         * gst/audioresample/Makefile.am:
17862         * gst/audioresample/buffer.c:
17863         * gst/audioresample/functable.c:
17864         * gst/audioresample/gstaudioresample.c:
17865         * gst/audioresample/gstaudioresample.h:
17866         * gst/audioresample/resample.c:
17867         (resample_get_output_size_for_input):
17868         * gst/audioresample/resample.h:
17869         * gst/audioresample/resample_chunk.c:
17870         * gst/audioresample/resample_functable.c:
17871         * gst/audioresample/resample_ref.c:
17872           port to use basetransform; doesn't work in all cases yet
17873
17874 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
17875
17876         * gst/audioconvert/gstaudioconvert.c:
17877         (gst_audio_convert_class_init), (gst_audio_convert_init),
17878         (audio_convert_get_unit_size), (audio_convert_transform_caps),
17879         (audio_convert_fixate_caps), (audio_convert_set_caps),
17880         (audio_convert_transform),
17881         (gst_audio_convert_buffer_to_default_format),
17882         (gst_audio_convert_buffer_from_default_format),
17883         (gst_audio_convert_channels):
17884         * gst/audioconvert/gstchannelmix.c:
17885         * gst/audioconvert/gstchannelmix.h:
17886           port to basetransform
17887         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17888         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
17889         (gst_ffmpegcsp_get_unit_size):
17890         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
17891         (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
17892           fix for basetransform changes
17893
17894 2005-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
17895
17896         * check/Makefile.am:
17897           Add CHECK_CFLAGS and LDFLAGS
17898
17899         * gst/playback/gstplaybasebin.c: (fill_buffer):
17900           GST_MESSAGE_SRC became a GObject
17901
17902 2005-08-24  Wim Taymans  <wim@fluendo.com>
17903
17904         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
17905         (gst_ring_buffer_clear_all):
17906         * gst-libs/gst/audio/gstringbuffer.h:
17907         Added function to clear the ringbuffer.
17908
17909 2005-08-24  Andy Wingo  <wingo@pobox.com>
17910
17911         * sys/v4l/gstv4lelement.c (gst_v4lelement_start) 
17912         (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
17913         of _open and _close.
17914
17915         * sys/v4l/gstv4lxoverlay.h:
17916         * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
17917         an Xv connection here, instead of all the time. Make Xv only be
17918         loaded if you axe for it. Kindof a workaround for buggy behaviour
17919         of Xv when using remote xservers (XvQueryExtension would block).
17920         (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
17921         replace the _open and _close public API. Only start the xv
17922         connection if necessary.
17923         (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
17924
17925 2005-08-23  David Schleef  <ds@schleef.org>
17926
17927         * gst/audioresample/Makefile.am: Leet audioresampling code
17928         * gst/audioresample/buffer.c:
17929         * gst/audioresample/buffer.h:
17930         * gst/audioresample/debug.c:
17931         * gst/audioresample/debug.h:
17932         * gst/audioresample/functable.c:
17933         * gst/audioresample/functable.h:
17934         * gst/audioresample/gstaudioresample.c:
17935         * gst/audioresample/gstaudioresample.h:
17936         * gst/audioresample/resample.c:
17937         * gst/audioresample/resample.h:
17938         * gst/audioresample/resample_chunk.c:
17939         * gst/audioresample/resample_functable.c:
17940         * gst/audioresample/resample_ref.c:
17941
17942 2005-08-23  Wim Taymans  <wim@fluendo.com>
17943
17944         * examples/seeking/seek.c: (make_vorbis_pipeline),
17945         (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
17946         Small seek updates.
17947
17948 2005-08-23  Andy Wingo  <wingo@pobox.com>
17949
17950         * gst-libs/gst/audio/gstbaseaudiosrc.c
17951         (gst_base_audio_src_fixate): Only fixate endianness if it is
17952         present in the caps.
17953
17954 2005-08-22  Andy Wingo  <wingo@pobox.com>
17955
17956         * ext/alsa/gstalsasink.c (gst_alsasink_get_property): 
17957         * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
17958         device-name property.
17959
17960         * gst-libs/gst/audio/gstaudiosrc.h:
17961         * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
17962         close_device in the ring buffer, like gstaudiosink.
17963
17964         * ext/alsa/gstalsamixer.h:
17965         * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
17966         macro to implement the interface without much code. Cleanups. 
17967
17968         * ext/alsa/gstalsasrc.h:
17969         * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
17970         READY.
17971
17972         * ext/alsa/Makefile.am: Add new files.
17973         * ext/alsa/gstalsamixerelement.c: 
17974         * ext/alsa/gstalsamixerelement.c: Split element code out from
17975         mixer code so that alsasrc can be a mixer too.
17976
17977 2005-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
17978
17979         * check/elements/volume.c: (setup_volume), (cleanup_volume),
17980         (GST_START_TEST):
17981         * check/elements/vorbisdec.c: (setup_vorbisdec),
17982         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
17983         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
17984         (vorbis_handle_identification_packet),
17985         (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
17986         (vorbis_handle_header_packet), (vorbis_dec_push),
17987         (vorbis_dec_chain):
17988           use the setup/teardown methods to save code.  save code is good.
17989
17990 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
17991
17992         * check/Makefile.am:
17993           add ext dir for plugins
17994           add vorbisdec test conditionally
17995         * check/elements/volume.c: (setup_volume), (cleanup_volume),
17996         (GST_START_TEST), (volume_suite):
17997           add a test with wrong caps
17998         * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
17999         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
18000           add a vorbisdec test
18001         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
18002         (gst_ogg_demux_chain), (gst_ogg_demux_loop):
18003           clean up debug output
18004         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
18005           yay, fix a segfault/security issue in vorbisdec
18006           gst-launch fakesrc ! vorbisdec wasn't happy
18007         * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
18008         (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
18009         (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
18010         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
18011         (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
18012         (gst_vorbisenc_set_metadata), (get_constraints_string),
18013         (update_start_message), (gst_vorbisenc_setup),
18014         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
18015         (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
18016         (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
18017         (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
18018         * ext/vorbis/vorbisenc.h:
18019           march in line
18020         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18021         (gst_ffmpegcsp_transform):
18022           have the kow come home
18023         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
18024           debug my func ptr
18025         * gst/volume/gstvolume.c: (volume_set_caps):
18026           add a debug
18027
18028 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
18029
18030         * Makefile.am:
18031         * check/.cvsignore:
18032         * check/Makefile.am:
18033         * check/elements/.cvsignore:
18034         * check/elements/volume.c: (chain_func), (event_func),
18035         (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
18036         (main):
18037         * configure.ac:
18038           add unit test structure for gst-plugins-base
18039           add a test for volume
18040         * gst/volume/gstvolume.c: (gst_volume_list_tracks),
18041         (gst_volume_set_volume), (gst_volume_get_volume),
18042         (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
18043         (volume_funcfind), (volume_process_float), (volume_process_int16),
18044         (volume_set_caps), (volume_transform), (volume_update_mute),
18045         (volume_update_volume), (volume_set_property),
18046         (volume_get_property):
18047           document a little; use basetransform vmethod _set_caps
18048
18049 2005-08-19  Andy Wingo  <wingo@pobox.com>
18050
18051         * ext/alsa/gstalsamixertrack.h:
18052         * ext/alsa/gstalsamixertrack.c:
18053         * ext/alsa/gstalsamixeroptions.h:
18054         * ext/alsa/gstalsamixeroptions.c:
18055         * ext/alsa/gstalsamixer.h:
18056         * ext/alsa/gstalsamixer.c: Port to 0.9.
18057
18058         * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
18059         Remove gstalsa.c and alsaclock. No more cruft here.
18060         
18061 2005-08-18  Wim Taymans  <wim@fluendo.com>
18062
18063         * gst-libs/gst/rtp/gstbasertpdepayload.c:
18064         (gst_base_rtp_depayload_chain),
18065         (gst_base_rtp_depayload_add_to_queue),
18066         (gst_base_rtp_depayload_push),
18067         (gst_base_rtp_depayload_queue_release):
18068         * gst-libs/gst/rtp/gstbasertpdepayload.h:
18069         Fix for RTPBuffer changes.
18070
18071         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
18072         (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
18073         (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
18074         (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
18075         (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
18076         (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
18077         (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
18078         (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
18079         (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
18080         (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
18081         (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
18082         (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
18083         (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
18084         (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
18085         (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
18086         (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
18087         (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
18088         (gst_rtpbuffer_get_payload):
18089         * gst-libs/gst/rtp/gstrtpbuffer.h:
18090         Don't subclass GstBuffer but add methods and helper functions
18091         to construct and manipulate RTP packets in regular GstBuffers.
18092
18093 2005-08-18  Stefan Kost  <ensonic@users.sf.net>
18094
18095         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
18096           moved statement below switch
18097         * gst/volume/gstvolume.c: (gst_volume_class_init):
18098           added debug ptr
18099
18100 2005-08-16  Wim Taymans  <wim@fluendo.com>
18101
18102         * gst-libs/gst/audio/gstbaseaudiosrc.c:
18103         (gst_base_audio_src_change_state):
18104         Open and close device in READY<->NULL state change.
18105
18106 2005-08-16  Andy Wingo  <wingo@pobox.com>
18107
18108         * examples/seeking/Makefile.am: Don't compile non-compiling
18109         compiled objects with the compiler.
18110
18111         * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
18112         elements.
18113
18114 2005-08-12  Philippe Khalaf <burger@speedy.org>
18115         * gst-libs/gst/rtp/gstbasertpdepayload.c:
18116         * gst-libs/gst/rtp/gstbasertpdepayload.h:
18117           Made a thread to release the queue.
18118           Removed timestamp conversion for now.
18119
18120 2005-08-10  Philippe Khalaf <burger@speedy.org>
18121         * gst-libs/gst/rtp/gstbasertpdepayload.c:
18122         * gst-libs/gst/rtp/gstbasertpdepayload.h:
18123           Added rtp timestamp -> gst timestamp conversion.
18124           Fixed several problems with queue.
18125
18126 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
18127
18128         * gst-libs/gst/audio/gstaudioclock.h:
18129         * gst-libs/gst/audio/gstaudiofilter.h:
18130         * gst-libs/gst/audio/gstaudiosink.h:
18131         * gst-libs/gst/audio/gstaudiosrc.h:
18132         * gst-libs/gst/audio/gstbaseaudiosink.h:
18133         * gst-libs/gst/audio/gstbaseaudiosrc.h:
18134         * gst-libs/gst/audio/gstringbuffer.h:
18135         * gst-libs/gst/net/gstnetbuffer.h:
18136         * gst-libs/gst/rtp/gstbasertpdepayload.h:
18137         * gst-libs/gst/rtp/gstrtpbuffer.h:
18138           Add padding (you will need to rebuild gst-plugins-base,
18139           gst-plugins and all applications afterwards!)
18140
18141 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
18142
18143         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
18144         (gst_riff_parse_chunk):
18145           Fix bug in debug message and add some more debug messages.
18146
18147 2005-08-08  Edward Hervey  <edward@fluendo.com>
18148
18149         * gst-libs/gst/riff/riff-media.c:
18150         backported updates since branch
18151
18152 2005-08-08  Andy Wingo  <wingo@pobox.com>
18153
18154         * gst-libs/gst/audio/gstbaseaudiosink.c
18155         (gst_base_audio_sink_change_state): Open the device in NULL->READY
18156         like good elements should. Close on READY->NULL too.
18157
18158         * gst-libs/gst/audio/gstaudiosink.c
18159         (gst_audioringbuffer_open_device,
18160         (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
18161         (gst_audioringbuffer_release): Updates for new ring buffer API,
18162         hook into the new audio sink api.
18163
18164         * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
18165         (GstAudioSinkClass.close): Just open and close the device -- no
18166         resource allocation or configuration.
18167         (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
18168         vmethods, handle device setup and resource allocation.
18169
18170         * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
18171         (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
18172         base class API.
18173
18174         * gst-libs/gst/audio/gstringbuffer.h
18175         (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
18176         New vmethods.
18177
18178         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
18179         (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
18180         New API functions. The device should be opened before acquiring
18181         and closed after releasing.
18182
18183 2005-08-08  Tim-Philipp Müller  <tim at centricular dot net>
18184
18185         * gst-libs/gst/interfaces/mixer.h:
18186           Reset padding to GST_PADDING.
18187
18188 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18189
18190         * gst/playback/gstplaybin.c: (remove_sinks):
18191           Remove visualization from parent explicitely; works around some
18192           apparent refcount issue that I haven't tracked down yet.
18193
18194 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18195
18196         * ext/alsa/gstalsasink.c: (set_hwparams):
18197           Assign debug category, add negotiation debug msgs.
18198
18199 2005-08-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18200
18201         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
18202           Fix error code for file-not-found to NOT_FOUND.
18203
18204 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
18205
18206         * common/gtk-doc-plugins.mak:
18207         * docs/plugins/Makefile.am:
18208         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
18209         * docs/plugins/gst-plugins-base-plugins-sections.txt:
18210           renamed to actual element names, so much nicer to look at
18211         * docs/plugins/tmpl/gstmultifdsink.sgml:
18212           remove
18213         * docs/plugins/tmpl/multifdsink.sgml:
18214         * docs/plugins/tmpl/tcpserversink.sgml:
18215           add
18216         * ext/alsa/gstalsa.c:
18217         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
18218         * ext/ogg/gstoggmux.c:
18219         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
18220         * gst/playback/gstdecodebin.c:
18221         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
18222         * gst/tcp/gsttcpserversink.c:
18223           various fixes and documentation additions
18224
18225 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
18226
18227         * common/Makefile.am:
18228         * common/gstdoc-scangobj:
18229         * common/gtk-doc-plugins.mak:
18230         * common/gtk-doc.mak:
18231           add a custom scangobj that uses the registry
18232           add a custom gtk-doc-plugins.mak that uses it
18233           some doc build fixes
18234         * configure.ac:
18235         * docs/Makefile.am:
18236         * docs/plugins/Makefile.am:
18237         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
18238         * docs/plugins/gst-plugins-base-plugins-sections.txt:
18239         * docs/plugins/gst-plugins-base-plugins.types:
18240         * docs/plugins/tmpl/gstmultifdsink.sgml:
18241           add docs for one element, multifdsink
18242         * gst/adder/gstadder.h:
18243         * gst/volume/gstvolume.h:
18244           don't privatize enum
18245         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
18246         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
18247         (gst_sync_method_get_type), (gst_client_status_get_type),
18248         (gst_multifdsink_class_init),
18249         (gst_multifdsink_client_queue_buffer),
18250         (gst_multifdsink_handle_client_write):
18251         * gst/tcp/gstmultifdsink.h:
18252         * gst/tcp/gsttcp.h:
18253         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
18254         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
18255         (gst_tcpclientsink_render):
18256         * gst/tcp/gsttcpclientsink.h:
18257         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
18258         (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
18259         (gst_tcpclientsrc_start):
18260         * gst/tcp/gsttcpclientsrc.h:
18261         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
18262         (gst_tcpserversrc_init), (gst_tcpserversrc_create):
18263         * gst/tcp/gsttcpserversrc.h:
18264         * gst/typefind/gsttypefindfunctions.c:
18265           remove superfluous Type stuff
18266
18267 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18268
18269         * gst/playback/gstplaybin.c: (gen_video_element):
18270           Enable videoscale.
18271
18272 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18273
18274         * gst-libs/gst/gconf/gconf.c:
18275         * gst-libs/gst/gconf/gconf.h:
18276           Fix some Andy Problem [tm].
18277
18278 2005-08-04  Andy Wingo  <wingo@pobox.com>
18279
18280         * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
18281         * gst/ffmpegcolorspace/gstffmpegcolorspace.c
18282         (gst_ffmpegcsp_get_size): Adapt to API changes.
18283
18284         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
18285         Implement an in-place do-nothing transform.
18286
18287 2005-08-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18288
18289         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
18290         (gst_ximagesink_renegotiate_size):
18291           Do not set new window sizes yet if we prepare a new buffer size
18292           for upstream renegotiation (software scaling) at some point in the
18293           future, because this new size waqs not actually accepted yet. Once
18294           accepted, renegotiation later on will set the new sizes just fine.
18295           Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
18296           embedding testcase.
18297
18298 2005-08-03  Andy Wingo  <wingo@pobox.com>
18299
18300         * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
18301         (gst_ximagesink_buffer_alloc): 
18302         Protect the height, width, and desired_caps with the pool_lock.
18303         Fixes videotestsrc ! queue ! ximagesink.
18304
18305 2005-08-02  Edward Hervey  <edward@fluendo.com>
18306
18307         * gst/volume/gstvolume.c:
18308         include left from controller cleanup
18309
18310 2005-08-02  Jan Schmidt  <thaytan@mad.scientist.com>
18311         * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
18312           Stop collectpads before calling the parent state
18313           change function on PAUSED->READY.
18314
18315 2005-08-01  Jan Schmidt  <thaytan@mad.scientist.com>
18316         * configure.ac:
18317           When testing for X libs, use the X CFlags 
18318         * gst/adder/gstadder.c: (gst_adder_change_state):
18319           Stop the collectpads before calling parent state change function
18320           on PAUSED->READY, otherwise we deadlock deactivating pads.
18321
18322 2005-08-01  Stefan Kost  <ensonic@users.sf.net>
18323
18324         * configure.ac:
18325         * docs/libs/tmpl/gstcolorbalance.sgml:
18326         * docs/libs/tmpl/gstmixer.sgml:
18327         * examples/Makefile.am:
18328         * gst/sine/Makefile.am:
18329         * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
18330         (gst_sinesrc_set_property), (plugin_init):
18331         * gst/sine/gstsinesrc.h:
18332         * gst/volume/Makefile.am:
18333         * gst/volume/gstvolume.c: (gst_volume_set_volume),
18334         (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
18335         (volume_process_float), (volume_process_int16),
18336         (volume_set_property), (plugin_init):
18337         * gst/volume/gstvolume.h:
18338           deactivate and remove dparams (libgstcontrol)
18339
18340 2005-07-29  Wim Taymans  <wim@fluendo.com>
18341
18342         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
18343         Convert me to BaseTransform!! help..
18344
18345 2005-07-29  Andy Wingo  <wingo@pobox.com>
18346
18347         * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
18348         sinks.
18349
18350         * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
18351         support of both endiannesses.
18352
18353 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
18354
18355         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
18356           Fix confusing debug message (s/event/query/)
18357
18358 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
18359
18360         * gst/videotestsrc/videotestsrc.h:
18361           Use "_stdint.h" instead of <stdint.h>
18362
18363 2005-07-27  Wim Taymans  <wim@fluendo.com>
18364
18365         * ext/vorbis/Makefile.am:
18366         Revert wrong commit.
18367
18368 2005-07-27  Wim Taymans  <wim@fluendo.com>
18369
18370         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
18371         More compilation fixen.
18372
18373 2005-07-27  Wim Taymans  <wim@fluendo.com>
18374
18375         * gst-libs/gst/audio/gstbaseaudiosink.c:
18376         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
18377         (gst_base_audio_sink_create_ringbuffer),
18378         (gst_base_audio_sink_change_state):
18379         Fix compilation.
18380
18381 2005-07-27  Wim Taymans  <wim@fluendo.com>
18382
18383         * examples/seeking/seek.c: (setup_dynamic_link),
18384         (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
18385         (query_positions_elems), (query_positions_pads), (do_seek):
18386         Update seek example.
18387
18388         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
18389         (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
18390         (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
18391         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
18392         (gst_ogg_demux_handle_event),
18393         (gst_ogg_demux_deactivate_current_chain),
18394         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
18395         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
18396         (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
18397         (gst_ogg_demux_loop):
18398         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
18399         * ext/theora/theoradec.c: (theora_dec_src_event),
18400         (theora_dec_src_getcaps), (theora_dec_sink_event),
18401         (theora_dec_push), (theora_dec_chain):
18402         * ext/vorbis/Makefile.am:
18403         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
18404         (vorbis_dec_sink_event), (vorbis_dec_push),
18405         (vorbis_handle_data_packet):
18406         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
18407         (gst_vorbisenc_chain):
18408         * gst/playback/gststreaminfo.c: (cb_probe):
18409         * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
18410         * gst/videorate/gstvideorate.c: (gst_videorate_event):
18411         * gst/videoscale/gstvideoscale.c:
18412         (gst_videoscale_handle_src_event):
18413         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
18414         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
18415         (gst_ximagesink_navigation_send_event):
18416         * sys/xvimage/xvimagesink.c:
18417         (gst_xvimagesink_navigation_send_event):
18418         Various event updates and cleanups
18419
18420 2005-07-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18421
18422         * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
18423           Fix segfault for I420/YV12.
18424
18425 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18426
18427         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
18428           Report bitrate.
18429
18430 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18431
18432         * gst/playback/gstplaybin.c: (gen_video_element),
18433         (gen_audio_element):
18434           Switch to auto*sink elements as default sinks; add volume element
18435           so that volume control in totem works.
18436
18437 2005-07-21  Wim Taymans  <wim@fluendo.com>
18438
18439         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
18440         * gst/playback/gstplaybin.c: (setup_sinks),
18441         (gst_play_bin_change_state):
18442         Refcount fix and more comments.
18443
18444 2005-07-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18445
18446         * sys/ximage/Makefile.am:
18447         * sys/ximage/ximage.c: (plugin_init):
18448         * sys/ximage/ximagesink.c:
18449         Prepare for adding ximagesrc, rename of plugin to ximage etc.
18450         
18451
18452 2005-07-21  Wim Taymans  <wim@fluendo.com>
18453
18454         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
18455         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
18456         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
18457         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
18458         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
18459         (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
18460         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
18461         (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
18462         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
18463         Generate correct disconts for live chained oggs.
18464
18465         * gst-libs/gst/audio/gstbaseaudiosink.c:
18466         (gst_base_audio_sink_render),
18467         (gst_base_audio_sink_create_ringbuffer),
18468         (gst_base_audio_sink_change_state):
18469         Handle discont math correctly.
18470
18471         * gst/playback/gstplaybin.c: (add_sink):
18472         Some small debug cleanup.
18473
18474 2005-07-21  Wim Taymans  <wim@fluendo.com>
18475
18476         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
18477         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
18478         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
18479         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
18480         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
18481         (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
18482         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
18483         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
18484         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
18485         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
18486         (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
18487         (gst_ogg_demux_change_state), (gst_ogg_print):
18488         Reorganize code to send the right disconts when in streaming
18489         mode.
18490
18491 2005-07-20  Andy Wingo  <wingo@pobox.com>
18492
18493         * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
18494         fix (?), fixes a seggie mcfalterson (#310894).
18495
18496 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18497
18498         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
18499         (gst_ogg_mux_set_header_on_caps):
18500         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
18501         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
18502         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
18503         * gst-libs/gst/audio/multichannel.c:
18504         (gst_audio_set_channel_positions),
18505         (gst_audio_set_structure_channel_positions_list):
18506         * gst/playback/gstdecodebin.c: (dynamic_create):
18507         * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
18508         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
18509           Fixes for API changes in core.
18510
18511 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18512
18513         * gst/playback/gstplaybasebin.c: (fill_buffer):
18514           Use _new_custom() so we can set custom message types for buffering
18515           messages.
18516
18517 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18518
18519         * configure.ac:
18520         * gst-libs/gst/Makefile.am:
18521         * gst-libs/gst/gconf/.cvsignore:
18522         * gst-libs/gst/gconf/Makefile.am:
18523         * gst-libs/gst/gconf/test-gconf.c:
18524         * pkgconfig/Makefile.am:
18525         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
18526         * pkgconfig/gstreamer-gconf.pc.in:
18527           Remove gconf stuff, use gconf elements instead from now on.
18528
18529 2005-07-20  Wim Taymans  <wim@fluendo.com>
18530
18531         * gst-libs/gst/audio/TODO:
18532         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
18533         (gst_audio_clock_get_internal_time):
18534         * gst-libs/gst/audio/gstaudioclock.h:
18535         * gst-libs/gst/audio/gstbaseaudiosink.c:
18536         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
18537         (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
18538         (gst_base_audio_sink_render),
18539         (gst_base_audio_sink_create_ringbuffer),
18540         (gst_base_audio_sink_change_state):
18541         Make sure the audio clock always returns an increasing value.
18542
18543 2005-07-19  Andy Wingo  <wingo@pobox.com>
18544
18545         * gst/videotestsrc/: Cleanups.
18546
18547 2005-07-19  Wim Taymans  <wim@fluendo.com>
18548
18549         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
18550         Better debugging.
18551
18552 2005-07-19  Wim Taymans  <wim@fluendo.com>
18553
18554         * examples/seeking/seek.c: (make_dv_pipeline),
18555         (make_vorbis_theora_pipeline), (query_rates),
18556         (query_positions_elems), (query_positions_pads), (do_seek):
18557         Make correct DV pipeline.
18558
18559 2005-07-18  Andy Wingo  <wingo@pobox.com>
18560
18561         * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
18562         default. Also because it's the only thing that really works. (This
18563         is used in the GConf elements).
18564         Use AS_LIBTOOL_TAGS.
18565
18566 2005-07-18  Wim Taymans  <wim@fluendo.com>
18567
18568         * gst/playback/gstdecodebin.c: (remove_element_chain):
18569         * gst/playback/gstplaybin.c: (add_sink):
18570         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
18571         (gst_stream_info_set_mute):
18572         * gst/playback/gststreamselector.c:
18573         (gst_stream_selector_get_linked_pad),
18574         (gst_stream_selector_getcaps), (gst_stream_selector_chain):
18575         More leak and compile fixes.
18576
18577 2005-07-18  Wim Taymans  <wim@fluendo.com>
18578
18579         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
18580         (query_rates), (query_positions_elems), (query_positions_pads),
18581         (do_seek), (seek_cb), (stop_seek):
18582         Updated seek example. 
18583
18584         * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
18585         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
18586         (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
18587         * gst/playback/gstplaybin.c: (add_sink):
18588         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
18589         (gst_stream_info_set_mute):
18590         Some refcount leak fixes.
18591
18592 2005-07-16  Wim Taymans  <wim@fluendo.com>
18593
18594         * gst-libs/gst/audio/gstbaseaudiosink.c:
18595         (gst_base_audio_sink_render):
18596         Align samples even if we have roundoff errors in the 
18597         timestamp conversion.
18598
18599 2005-07-16  Wim Taymans  <wim@fluendo.com>
18600
18601         * docs/libs/tmpl/gstringbuffer.sgml:
18602         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
18603         (query_rates), (query_positions_elems), (query_positions_pads),
18604         (update_scale), (do_seek):
18605         Updated seek example.
18606
18607         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
18608         (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
18609         (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
18610         (gst_ogg_demux_loop):
18611         Push out correct discont values.
18612
18613         * ext/theora/theoradec.c: (theora_dec_src_convert),
18614         (theora_dec_sink_convert), (theora_dec_src_getcaps),
18615         (theora_dec_sink_event), (theora_handle_type_packet),
18616         (theora_handle_header_packet), (theora_dec_push),
18617         (theora_handle_data_packet), (theora_dec_chain),
18618         (theora_dec_change_state):
18619         Better timestamping.
18620
18621         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
18622         (vorbis_dec_sink_event), (vorbis_dec_push),
18623         (vorbis_handle_data_packet), (vorbis_dec_chain):
18624         * ext/vorbis/vorbisdec.h:
18625         Better timestamping.
18626
18627         * gst-libs/gst/audio/gstbaseaudiosink.c:
18628         (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
18629         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
18630         Handle syncing on timestamps instead of sample offsets. Make
18631         use of DISCONT values as described in design docs.
18632
18633         * gst-libs/gst/audio/gstbaseaudiosrc.c:
18634         (gst_base_audio_src_get_time):
18635         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
18636         (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
18637         (gst_ring_buffer_read):
18638         * gst-libs/gst/audio/gstringbuffer.h:
18639         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
18640         (gst_ximagesink_show_frame):
18641         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
18642         Correcly convert buffer timestamp to stream time.
18643
18644 2005-07-16  Wim Taymans  <wim@fluendo.com>
18645
18646         * gst/audioconvert/gstaudioconvert.c:
18647         (gst_audio_convert_get_buffer):
18648         Timestamp buffers correctly.
18649
18650         * gst/playback/gstplaybin.c: (gen_video_element):
18651         Make internal fakesink silent.
18652
18653 2005-07-15  Wim Taymans  <wim@fluendo.com>
18654
18655         * gst/ffmpegcolorspace/Makefile.am:
18656         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18657         (gst_ffmpegcsp_caps_remove_format_info),
18658         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
18659         (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
18660         (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
18661         (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
18662         Ported ffmpegcolorspace to basetransform.
18663
18664         * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
18665         * gst/volume/gstvolume.c: (volume_transform):
18666         Ported to new API.
18667
18668 2005-07-14  Wim Taymans  <wim@fluendo.com>
18669
18670         * gst/videotestsrc/Makefile.am:
18671         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
18672         (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
18673         (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
18674         (gst_videotestsrc_init), (gst_videotestsrc_event),
18675         (gst_videotestsrc_create), (gst_videotestsrc_start),
18676         (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
18677         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
18678         (gst_videotestsrc_get_property):
18679         * gst/videotestsrc/gstvideotestsrc.h:
18680         Make videotestsrc a pushsrc.
18681
18682 2005-07-14  Wim Taymans  <wim@fluendo.com>
18683
18684         * gst/tcp/gstfdset.c: (gst_fdset_free):
18685         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
18686         (gst_multifdsink_add), (gst_multifdsink_remove),
18687         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
18688         (gst_multifdsink_remove_client_link),
18689         (gst_multifdsink_client_queue_data),
18690         (gst_multifdsink_client_queue_caps),
18691         (gst_multifdsink_client_queue_buffer),
18692         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
18693         (gst_multifdsink_stop):
18694         * gst/tcp/gstmultifdsink.h:
18695         0.8 backporting.
18696
18697         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
18698         Also draw image when not from a pool.
18699
18700 2005-07-14  Wim Taymans  <wim@fluendo.com>
18701
18702         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
18703         (mute_stream), (silence_stream):
18704         Small debug additions.
18705
18706 2005-07-14  Wim Taymans  <wim@fluendo.com>
18707
18708         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
18709         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
18710         (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
18711         Better error recovery, ignore unconnected pads and
18712         non-fatal errors.
18713
18714 2005-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
18715
18716         * docs/libs/tmpl/gstaudio.sgml:
18717         * docs/libs/tmpl/gstcolorbalance.sgml:
18718         * docs/libs/tmpl/gstgconf.sgml:
18719         * docs/libs/tmpl/gstmixer.sgml:
18720         * docs/libs/tmpl/gstringbuffer.sgml:
18721         * docs/libs/tmpl/gsttuner.sgml:
18722         * gst-libs/gst/audio/gstbaseaudiosrc.c:
18723         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
18724         (gst_tcpclientsrc_class_init):
18725         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
18726         (gst_tcpserversrc_class_init):
18727         * sys/v4l/gstv4lelement.c:
18728           more autistic cleanliness in functions/names/defines
18729
18730 2005-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
18731
18732         * configure.ac:
18733           make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
18734           added manually to each Makefile.am so we are sure it goes
18735           *last* and doesn't add -L flags before linking in libs of our
18736           own, like, say, internal .la libs, that then accidentally pick
18737           up the installed copy.
18738         * docs/libs/Makefile.am:
18739         * ext/alsa/Makefile.am:
18740         * ext/cdparanoia/Makefile.am:
18741         * ext/gnomevfs/Makefile.am:
18742         * ext/libvisual/Makefile.am:
18743         * ext/ogg/Makefile.am:
18744         * ext/theora/Makefile.am:
18745         * ext/vorbis/Makefile.am:
18746         * gst-libs/gst/video/Makefile.am:
18747         * gst/adder/Makefile.am:
18748         * gst/audioconvert/Makefile.am:
18749         * gst/audiorate/Makefile.am:
18750         * gst/audioscale/Makefile.am:
18751         * gst/ffmpegcolorspace/Makefile.am:
18752         * gst/playback/Makefile.am:
18753         * gst/sine/Makefile.am:
18754         * gst/subparse/Makefile.am:
18755         * gst/tags/Makefile.am:
18756         * gst/tcp/Makefile.am:
18757         * gst/typefind/Makefile.am:
18758         * gst/videorate/Makefile.am:
18759         * gst/videoscale/Makefile.am:
18760         * gst/videotestsrc/Makefile.am:
18761         * gst/volume/Makefile.am:
18762         * sys/v4l/Makefile.am:
18763         * sys/ximage/Makefile.am:
18764         * sys/xvimage/Makefile.am:
18765           adapt properly to this change. This should make sure that
18766           plugins and libs properly link to the as-yet-uninstalled
18767           copies of stuff like libgstinterfaces and libgstvideo
18768
18769 2005-07-13  Andy Wingo  <wingo@pobox.com>
18770
18771         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
18772         (gst_v4lsrc_fixate): Fixate on format as well.
18773
18774         * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy) 
18775         (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
18776         buffer points to it.
18777         (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
18778         rather just doing X calls ourselves. Also fixes a memleak.
18779
18780 2005-07-12  Andy Wingo  <wingo@pobox.com>
18781
18782         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property) 
18783         (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init) 
18784         (gst_v4lsrc_create): Re-add the copy-mode property, default to
18785         TRUE to avoid deadlocks if an element holds on to our buffers.
18786
18787 2005-07-11  Thomas Vander Stichele  <thomas at apestaart dot org>
18788
18789         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
18790         (gst_sinesrc_init), (gst_sinesrc_create),
18791         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
18792         (gst_sinesrc_start):
18793         * gst/sine/gstsinesrc.h:
18794           removing num-buffers property before moving it
18795
18796 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
18797
18798         * configure.ac:
18799           use overridable ERROR_CFLAGS
18800         * docs/libs/gst-plugins-base-libs.types:
18801         * docs/libs/tmpl/gstringbuffer.sgml:
18802         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
18803         (gst_alsasink_class_init):
18804         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
18805         (gst_alsasrc_class_init):
18806         * gst-libs/gst/audio/audio.h:
18807         * gst-libs/gst/audio/gstaudioclock.h:
18808         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
18809         (gst_audio_filter_base_init), (gst_audio_filter_class_init),
18810         (gst_audio_filter_link), (gst_audio_filter_init),
18811         (gst_audio_filter_chain), (gst_audio_filter_set_property),
18812         (gst_audio_filter_get_property),
18813         (gst_audio_filter_class_add_pad_templates):
18814         * gst-libs/gst/audio/gstaudiofilter.h:
18815         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
18816         (gst_audio_filter_template_get_type),
18817         (gst_audio_filter_template_base_init),
18818         (gst_audio_filter_template_class_init),
18819         (gst_audio_filter_template_init),
18820         (gst_audio_filter_template_set_property),
18821         (gst_audio_filter_template_get_property), (plugin_init),
18822         (gst_audio_filter_template_setup),
18823         (gst_audio_filter_template_filter),
18824         (gst_audio_filter_template_filter_inplace):
18825         * gst-libs/gst/audio/gstaudiosink.c:
18826         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
18827         (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
18828         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
18829         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
18830         (gst_audio_sink_base_init), (gst_audio_sink_class_init),
18831         (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
18832         * gst-libs/gst/audio/gstaudiosink.h:
18833         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
18834         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
18835         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
18836         (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
18837         (gst_audioringbuffer_delay), (gst_audio_src_base_init),
18838         (gst_audio_src_class_init), (gst_audio_src_init),
18839         (gst_audio_src_create_ringbuffer):
18840         * gst-libs/gst/audio/gstaudiosrc.h:
18841         * gst-libs/gst/audio/gstbaseaudiosink.c:
18842         (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
18843         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
18844         (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
18845         (gst_base_audio_sink_set_property),
18846         (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
18847         (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
18848         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
18849         (gst_base_audio_sink_create_ringbuffer),
18850         (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
18851         * gst-libs/gst/audio/gstbaseaudiosink.h:
18852         * gst-libs/gst/audio/gstbaseaudiosrc.c:
18853         (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
18854         (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
18855         (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
18856         (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
18857         (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
18858         (gst_base_audio_src_event), (gst_base_audio_src_create),
18859         (gst_base_audio_src_create_ringbuffer),
18860         (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
18861         * gst-libs/gst/audio/gstbaseaudiosrc.h:
18862         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
18863         (gst_ring_buffer_class_init), (gst_ring_buffer_init),
18864         (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
18865         (gst_ring_buffer_debug_spec_caps),
18866         (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
18867         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
18868         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
18869         (gst_ring_buffer_start), (gst_ring_buffer_pause),
18870         (gst_ring_buffer_stop), (gst_ring_buffer_delay),
18871         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
18872         (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
18873         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
18874         (gst_ring_buffer_clear):
18875         * gst-libs/gst/audio/gstringbuffer.h:
18876         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
18877         (gst_video_sink_class_init), (gst_video_sink_get_type):
18878         * gst-libs/gst/video/videosink.h:
18879         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
18880         (gst_multifdsink_class_init),
18881         (gst_multifdsink_handle_client_write),
18882         (gst_multifdsink_change_state):
18883         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
18884         (gst_tcpclientsink_setcaps):
18885         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
18886         (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
18887         (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
18888         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
18889         (gst_ximagesink_send_pending_navigation),
18890         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
18891         (gst_ximagesink_class_init), (gst_ximagesink_get_type):
18892         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
18893         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
18894         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
18895         (gst_xvimagesink_send_pending_navigation),
18896         (gst_xvimagesink_navigation_send_event),
18897         (gst_xvimagesink_set_xwindow_id),
18898         (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
18899         (gst_xvimagesink_get_type):
18900         more macro splitting
18901
18902 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
18903
18904         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
18905           plug a memleak, allows me to import 1479 albums in one go
18906           in jamboree
18907         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
18908         (vorbis_handle_type_packet), (vorbis_dec_chain),
18909         (vorbis_dec_change_state):
18910           fix some format strings
18911
18912 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
18913
18914         * docs/libs/tmpl/gstcolorbalance.sgml:
18915         * docs/libs/tmpl/gstmixer.sgml:
18916         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
18917         (gst_alsasink_set_property), (gst_alsasink_get_property):
18918         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
18919         (gst_alsasrc_set_property), (gst_alsasrc_get_property):
18920           add device property
18921
18922 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
18923
18924         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
18925         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
18926         (audiocast_register_listener), (audiocast_thread_run),
18927         (gst_gnomevfssrc_send_additional_headers_callback),
18928         (gst_gnomevfssrc_received_headers_callback),
18929         (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
18930         (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
18931         (gst_gnomevfssrc_get_size):
18932           add/clean up debugging
18933         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
18934           cleanups
18935
18936 2005-07-07  Andy Wingo  <wingo@pobox.com>
18937
18938         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
18939         framerate. Need to get a handle on when exactly this function is
18940         called, tho.
18941
18942         * sys/v4l/v4lsrc_calls.h:
18943         * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
18944         (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
18945         (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
18946
18947         * sys/v4l/v4l_calls.h: Cast to V4lElement.
18948         * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
18949         v4lelements are sources.
18950
18951         * sys/v4l/gstv4lxoverlay.h:
18952         * sys/v4l/gstv4lxoverlay.c:
18953         * sys/v4l/gstv4ltuner.h:
18954         * sys/v4l/gstv4ltuner.c: Header loc fixen.
18955         
18956         * sys/v4l/gstv4lsrc.h:
18957         * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
18958         PushSrc/BaseSrc. Removed most sync-related properties, videorate
18959         or something should handle that. Made a live source.
18960
18961         * sys/v4l/gstv4lelement.h:
18962         * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
18963         signals. Some cleanups.
18964
18965         * sys/v4l/gstv4lcolorbalance.h: Interface header update.
18966
18967         * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
18968         stuff.
18969
18970         * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
18971         stuff.
18972
18973         * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
18974
18975 2005-07-07  Wim Taymans  <wim@fluendo.com>
18976
18977         * ext/theora/theoradec.c: (theora_get_query_types),
18978         (theora_dec_src_getcaps), (theora_dec_push):
18979         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
18980         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
18981         Remove deprecated/unused query types.
18982
18983 2005-07-06  Wim Taymans  <wim@fluendo.com>
18984
18985         * ext/alsa/Makefile.am:
18986         * ext/alsa/gstalsaplugin.c: (plugin_init):
18987         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
18988         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
18989         (gst_alsasrc_dispose), (gst_alsasrc_base_init),
18990         (gst_alsasrc_class_init), (gst_alsasrc_init),
18991         (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
18992         (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
18993         (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
18994         (gst_alsasrc_reset):
18995         * ext/alsa/gstalsasrc.h:
18996         * gst-libs/gst/audio/Makefile.am:
18997         * gst-libs/gst/audio/gstaudiosink.c:
18998         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
18999         (gst_audioringbuffer_start):
19000         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
19001         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
19002         (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
19003         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
19004         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
19005         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
19006         (gst_audiosrc_base_init), (gst_audiosrc_class_init),
19007         (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
19008         * gst-libs/gst/audio/gstaudiosrc.h:
19009         * gst-libs/gst/audio/gstbaseaudiosink.c:
19010         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
19011         (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
19012         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
19013         * gst-libs/gst/audio/gstbaseaudiosrc.c:
19014         (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
19015         (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
19016         (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
19017         (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
19018         (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
19019         (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
19020         (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
19021         (gst_baseaudiosrc_change_state):
19022         * gst-libs/gst/audio/gstbaseaudiosrc.h:
19023         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
19024         (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
19025         (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
19026         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
19027         (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
19028         (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
19029         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
19030         * gst-libs/gst/audio/gstringbuffer.h:
19031         Added audiosource base classes.
19032         Ported alsasrc, still very basic.
19033
19034 2005-07-06  Wim Taymans  <wim@fluendo.com>
19035
19036         * ext/theora/theoradec.c: (theora_dec_src_getcaps),
19037         (theora_dec_push), (theora_handle_data_packet):
19038         Prepare for better timestamp fix later.
19039
19040         * gst/audioconvert/gstaudioconvert.c:
19041         List most accurate caps first
19042
19043         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
19044         Use proper pad task function.
19045
19046         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
19047         (gst_xvimagesink_show_frame):
19048         Fix deadlock when alloc failed.
19049
19050 2005-07-05  Andy Wingo  <wingo@pobox.com>
19051
19052         * ext/gnomevfs/gstgnomevfssrc.c:
19053         * gst/sine/gstsinesrc.c:
19054         * gst/tcp/gsttcpserversrc.c:
19055         * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
19056
19057         * sys/v4l/: Port from 0.8.
19058
19059         * Many files: Null if we got it....
19060
19061 2005-07-05  Andy Wingo  <wingo@pobox.com>
19062
19063         * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read): 
19064         * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
19065         Signedness fixes.
19066
19067 2005-07-05  Wim Taymans  <wim@fluendo.com>
19068
19069         * configure.ac:
19070         * gst/tcp/Makefile.am:
19071         * gst/tcp/README:
19072         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
19073         (gst_multifdsink_base_init), (gst_multifdsink_class_init),
19074         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
19075         (is_sync_frame), (gst_multifdsink_handle_client_write),
19076         (gst_multifdsink_render), (gst_multifdsink_start),
19077         (gst_multifdsink_stop), (gst_multifdsink_change_state):
19078         * gst/tcp/gstmultifdsink.h:
19079         * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
19080         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
19081         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
19082         * gst/tcp/gsttcp.h:
19083         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
19084         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
19085         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
19086         (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
19087         * gst/tcp/gsttcpclientsink.h:
19088         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
19089         (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
19090         (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
19091         (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
19092         (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
19093         * gst/tcp/gsttcpclientsrc.h:
19094         * gst/tcp/gsttcpplugin.c: (plugin_init):
19095         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
19096         * gst/tcp/gsttcpserversink.h:
19097         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
19098         (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
19099         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
19100         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
19101         (gst_tcpserversrc_stop):
19102         * gst/tcp/gsttcpserversrc.h:
19103         * gst/tcp/gsttcpsink.c:
19104         * gst/tcp/gsttcpsink.h:
19105         * gst/tcp/gsttcpsrc.c:
19106         * gst/tcp/gsttcpsrc.h:
19107         Ported tcp plugins to 0.9. 
19108         
19109
19110 2005-07-05  Andy Wingo  <wingo@pobox.com>
19111
19112         * gst/playback/gstplaybasebin.c (fill_buffer):
19113         message_new_application fixen.
19114
19115         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
19116         Style fix.
19117
19118 2005-07-04  Wim Taymans  <wim@fluendo.com>
19119
19120         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
19121         Set caps on output buffer.
19122
19123 2005-07-04  Andy Wingo  <wingo@pobox.com>
19124
19125         * ext/gnomevfs/gstgnomevfssrc.c
19126         (gst_gnomevfssrc_received_headers_callback) 
19127         (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
19128         hopefully.
19129
19130         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
19131         No refcount leakage.
19132
19133         * configure.ac: Enable -Werror.
19134         
19135         * ext/theora/theoradec.c (theora_dec_src_getcaps):
19136         * gst/audioconvert/bufferframesconvert.c
19137         (buffer_frames_convert_fixate):
19138         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
19139         (gst_audio_convert_fixate):
19140         * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
19141         (gst_sinesrc_create): Fixate func changes.
19142         
19143         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
19144         (gst_ximagesink_buffer_alloc): Unused var.
19145
19146 2005-07-01  Andy Wingo  <wingo@pobox.com>
19147
19148         * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
19149         getcaps to do explicit caps. Needs to be done in all decoders,
19150         possibly via a base class.
19151
19152         * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
19153
19154         * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
19155         caps on the sink pad, just rely on the pad template. Also, setting
19156         ANY caps on a pad is not valid because the caps are not fixed.
19157
19158         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
19159         caps on the buffer, and get the width from the desired_caps if
19160         they're set.
19161         (gst_ximagesink_renegotiate_size): Implement via setting the
19162         desired_caps on the ximagesink.
19163         (gst_ximagesink_setcaps): Only reset the width of the player if it
19164         wasn't already set. Not sure if this is right.
19165         (gst_ximagesink_show_frame): Memcpy only for normal buffers.
19166
19167         * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
19168         that the user wants. NULL unless the window has been resized.
19169
19170         * gst/volume/gstvolume.c (volume_transform): Adapt to
19171         basetransform refcount changes.
19172         
19173 2005-07-01  Andy Wingo  <wingo@pobox.com>
19174
19175         * gst/videoscale/gstvideoscale.c:
19176         * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
19177         from BaseTransform, implements a transform_caps. Removed dead code
19178         including some PAR stuff that was never reached -- should probably
19179         be added back somehow.
19180
19181 2005-07-01  Andy Wingo  <wingo@pobox.com>
19182
19183         * gst/videoscale: Merge David's work from 0.8 branch. Changes to
19184         come later.
19185
19186 2005-06-30  Thomas Vander Stichele  <thomas at apestaart dot org>
19187
19188         * configure.ac:
19189         * docs/libs/Makefile.am:
19190         * docs/libs/gst-plugins-libs.types:
19191         * ext/alsa/Makefile.am:
19192         * ext/alsa/gstalsamixer.h:
19193         * ext/alsa/gstalsamixeroptions.h:
19194         * ext/alsa/gstalsamixertrack.h:
19195         * gst-libs/gst/Makefile.am:
19196         * gst-libs/gst/colorbalance/.cvsignore:
19197         * gst-libs/gst/colorbalance/Makefile.am:
19198         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
19199         * gst-libs/gst/colorbalance/colorbalance.c:
19200         * gst-libs/gst/colorbalance/colorbalance.h:
19201         * gst-libs/gst/colorbalance/colorbalance.vcproj:
19202         * gst-libs/gst/colorbalance/colorbalancechannel.c:
19203         * gst-libs/gst/colorbalance/colorbalancechannel.h:
19204         * gst-libs/gst/interfaces/Makefile.am:
19205         * gst-libs/gst/interfaces/colorbalance.c:
19206         (gst_color_balance_class_init):
19207         * gst-libs/gst/interfaces/colorbalance.h:
19208         * gst-libs/gst/interfaces/interfaces-marshal.list:
19209         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
19210         * gst-libs/gst/interfaces/mixer.h:
19211         * gst-libs/gst/interfaces/mixeroptions.h:
19212         * gst-libs/gst/interfaces/navigation.c:
19213         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
19214         * gst-libs/gst/interfaces/tuner.h:
19215         * gst/volume/Makefile.am:
19216         * gst/volume/gstvolume.c:
19217         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
19218         * sys/ximage/Makefile.am:
19219         * sys/ximage/ximagesink.c:
19220         * sys/xvimage/Makefile.am:
19221         * sys/xvimage/xvimagesink.c:
19222           fold in all interfaces into an interfaces dir, preserving CVS
19223           history
19224
19225 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19226
19227         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
19228           Fix build after riff changes.
19229
19230 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19231
19232         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
19233         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
19234         (gst_riff_create_video_template_caps),
19235         (gst_riff_create_audio_template_caps),
19236         (gst_riff_create_iavs_template_caps):
19237         * gst-libs/gst/riff/riff-media.h:
19238         * gst-libs/gst/riff/riff-read.h:
19239         * gst-libs/gst/riff/riff.c: (gst_riff_init):
19240           Add gst_riff_init() to initialize the debug category, instead
19241           of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
19242
19243 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19244
19245         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
19246           Oops, I shouldn't apply hacks.
19247
19248 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19249
19250         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
19251           Remove pad_loop function which doesn't work.
19252
19253 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19254
19255         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
19256           Send EOS when deactivating.
19257         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
19258         (check_queue), (queue_threshold_reached), (queue_out_of_data),
19259         (gen_preroll_element), (probe_triggered), (mute_stream),
19260         (silence_stream), (new_decoded_pad), (setup_substreams),
19261         (set_active_source):
19262         * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
19263         (remove_sinks), (add_sink):
19264         * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
19265           Change for new probe API.
19266
19267 2005-06-29  Wim Taymans  <wim@fluendo.com>
19268
19269         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
19270         * gst-libs/gst/audio/gstbaseaudiosink.c:
19271         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
19272         (gst_baseaudiosink_change_state):
19273         * gst-libs/gst/audio/gstbaseaudiosink.h:
19274         * gst-libs/gst/audio/gstringbuffer.c:
19275         (gst_ringbuffer_set_callback):
19276         Fix compilation error.
19277         Ringbuffer starts out as not running.
19278         Free our clock in dispose.
19279         When releasing the ringbuffer we need to renegotiate so
19280         clear the pad caps.
19281
19282 2005-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
19283
19284         * autogen.sh:
19285         * configure.ac:
19286         * docs/Makefile.am:
19287         * docs/libs/Makefile.am:
19288         * docs/libs/gst-plugins-libs-docs.sgml:
19289         * docs/libs/gst-plugins-libs-sections.txt:
19290         * docs/libs/gst-plugins-libs.types:
19291         * docs/libs/tmpl/gstaudio.sgml:
19292         * docs/libs/tmpl/gstcolorbalance.sgml:
19293         * docs/libs/tmpl/gstringbuffer.sgml:
19294         * gst-libs/gst/audio/gstringbuffer.c:
19295         (gst_ringbuffer_set_callback):
19296           reinstate gtk-doc docs for plugin libs
19297
19298 2005-06-28  Wim Taymans  <wim@fluendo.com>
19299
19300         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
19301         (gst_ogg_demux_init):
19302         Removed pad loop function.
19303
19304 2005-06-28  Wim Taymans  <wim@fluendo.com>
19305
19306         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
19307         If we're building a chain we are not in an error case
19308         when we queue a buffer.
19309
19310 2005-06-28  Andy Wingo  <wingo@pobox.com>
19311
19312         * *.c: Don't cast to GstObject before reffing/unreffing.
19313
19314 2005-06-27  Andy Wingo  <wingo@pobox.com>
19315
19316         * gst/videotestsrc/gstvideotestsrc.c
19317         (gst_videotestsrc_activate_push): Activation API changes.
19318
19319         * gst/playback/gstdecodebin.c (gst_decode_bin_change_state) 
19320         (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
19321         they have refs on the decodebin.
19322
19323         * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
19324         parent class.
19325         (gst_ogg_pad_typefind): Don't leak a pad ref.
19326         (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
19327         (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push) 
19328         (gst_ogg_demux_sink_activate_pull): Changes for activation API.
19329
19330 2005-06-27  Edward Hervey  <edward@fluendo.com>
19331
19332         * ext/theora/theoradec.c: (theora_dec_change_state): 
19333         re-arranged call to parent's state change in order to avoid locks (or
19334         worse).
19335
19336 2005-06-26  Edward Hervey  <edward@fluendo.com>
19337
19338         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
19339         2nd argument of 'unknow-type' signal is a GstCaps and not a
19340         GstMiniObject
19341
19342 2005-06-25  Jan Schmidt  <thaytan@mad.scientist.com>
19343         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
19344           Set the worker thread's running flag to TRUE before starting the
19345           thread.
19346         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
19347           Catch a failure to add typefind to the bin.
19348
19349 2005-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
19350
19351         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
19352         (gst_sinesrc_init), (gst_sinesrc_create),
19353         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
19354         (gst_sinesrc_start):
19355         * gst/sine/gstsinesrc.h:
19356           add num-buffers and timestamp-offset properties
19357         * gst/videotestsrc/gstvideotestsrc.c:
19358         (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
19359         (gst_videotestsrc_get_property):
19360           add timestamp-offset property
19361
19362 2005-06-23  Christian Schaller  <uraeus@gnome.org>
19363
19364         * configure.ac: add videorate
19365         * gst-plugins-base.spec.in: add videorate
19366
19367 2005-06-23  Wim Taymans  <wim@fluendo.com>
19368
19369         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
19370         (gst_videorate_getcaps), (gst_videorate_setcaps),
19371         (gst_videorate_event), (gst_videorate_chain):
19372         Fixed videorate, fixating an already fixated caps is not
19373         an error.
19374
19375 2005-06-23  Wim Taymans  <wim@fluendo.com>
19376
19377         * ext/ogg/README:
19378         * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
19379         Buffer on caps is not boxed anymore.
19380
19381 2005-06-22  Wim Taymans  <wim@fluendo.com>
19382
19383         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
19384         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
19385         Set buffers on caps as miniobjects and not as boxed.
19386
19387 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
19388
19389         * configure.ac:
19390           back to HEAD
19391
19392 === release 0.9.1 ===
19393
19394 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
19395
19396         * .cvsignore:
19397         * NEWS:
19398         * README:
19399         * RELEASE:
19400         * configure.ac:
19401         * po/af.po:
19402         * po/az.po:
19403         * po/cs.po:
19404         * po/en_GB.po:
19405         * po/hu.po:
19406         * po/it.po:
19407         * po/nb.po:
19408         * po/nl.po:
19409         * po/or.po:
19410         * po/sq.po:
19411         * po/sr.po:
19412         * po/sv.po:
19413         * po/uk.po:
19414         * po/vi.po:
19415           updates for release
19416
19417 2005-06-09  Andy Wingo  <wingo@pobox.com>
19418
19419         * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
19420         
19421 2005-06-09  Andy Wingo  <wingo@pobox.com>
19422
19423         * configure.ac:
19424         * gst-libs/gst/Makefile.am:
19425         * gst-libs/gst/net/Makefile.am:
19426         Add gstnet to build.
19427
19428 2005-06-09  Andy Wingo  <wingo@pobox.com>
19429
19430         * gst-libs/gst/gconf/gconf.c:
19431         * gst/playback/test.c:
19432         * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
19433         fixes.
19434
19435         * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
19436
19437         * ext/theora/theoraenc.c (theora_enc_chain): 
19438         * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
19439
19440         * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
19441         RealPad.
19442
19443 2005-06-02  Wim Taymans  <wim@fluendo.com>
19444
19445         * gst-libs/gst/net/Makefile.am:
19446         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
19447         * pkgconfig/gstreamer-libs.pc.in:
19448         Added net stuff, version net lib.
19449
19450 2005-06-02  Wim Taymans  <wim@fluendo.com>
19451
19452         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
19453         (query_rates), (query_positions_elems), (query_positions_pads),
19454         (do_seek):
19455         Updated seek example.
19456
19457 2005-06-02  Andy Wingo  <wingo@pobox.com>
19458
19459         * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
19460         * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
19461         list.
19462
19463         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
19464         remove the typefind, the bin dispose will do it for us. When it's
19465         removed and unreffed, the signal handler will be disconnected,
19466         too.
19467         (unlinked): It's too difficult to disconnect from unlinked
19468         handlers, as they are on pads not elements. Just punt if the pads
19469         aren't grandkids of the bin.
19470
19471 2005-06-02  Wim Taymans  <wim@fluendo.com>
19472
19473         * ext/ogg/README:
19474         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
19475         (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
19476         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
19477         * ext/theora/theoradec.c: (theora_dec_src_query),
19478         (theora_handle_data_packet):
19479         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
19480         (theora_enc_chain):
19481         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
19482         (vorbis_handle_data_packet):
19483         * gst/audioconvert/bufferframesconvert.c:
19484         (buffer_frames_convert_chain):
19485         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19486         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
19487         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
19488         (gst_ffmpegcsp_chain):
19489         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
19490         (gst_videorate_getcaps), (gst_videorate_setcaps),
19491         (gst_videorate_event), (gst_videorate_chain):
19492         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
19493         (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
19494         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
19495         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
19496         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
19497         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
19498         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
19499         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
19500         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
19501         Cleanups and buffer alloc.
19502
19503 2005-05-31  Wim Taymans  <wim@fluendo.com>
19504
19505         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
19506         Don't try to call the delay method when the device is not
19507         opened.
19508
19509 2005-05-31  Wim Taymans  <wim@fluendo.com>
19510
19511         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
19512         Get actual segment size and buffer size after opening
19513         the device.
19514
19515 2005-05-30  Wim Taymans  <wim@fluendo.com>
19516
19517         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
19518         (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
19519         Also FLUSH upstream, makes the loop function exit faster.
19520         
19521         * ext/theora/theoradec.c: (theora_dec_src_query):
19522         Some more debug info in the query.
19523         
19524         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
19525         (gst_ximagesink_setcaps):
19526         Release lock on par error, better error reporting.
19527
19528 2005-05-26  Wim Taymans  <wim@fluendo.com>
19529
19530         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
19531         (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
19532         (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
19533         Clear chains in READY
19534         Queue packets until the chain is activated.
19535
19536 2005-05-25  Wim Taymans  <wim@fluendo.com>
19537
19538         * gst-libs/gst/audio/gstaudiosink.c:
19539         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
19540         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
19541         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
19542         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
19543         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
19544         (gst_audiosink_create_ringbuffer):
19545         * gst-libs/gst/audio/gstbaseaudiosink.c:
19546         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
19547         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
19548         (gst_baseaudiosink_set_property), (build_linear_format),
19549         (debug_spec_caps), (debug_spec_buffer),
19550         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
19551         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
19552         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
19553         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
19554         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
19555         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
19556         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
19557         (gst_ringbuffer_play), (gst_ringbuffer_pause),
19558         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
19559         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
19560         (wait_segment), (gst_ringbuffer_commit),
19561         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
19562         (gst_ringbuffer_clear):
19563         Various small cleanups.
19564
19565         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
19566         (gst_audio_convert_change_state):
19567         * gst/subparse/gstsubparse.c: (gst_subparse_chain):
19568         No need to take the locks anymore.
19569
19570 2005-05-25  Wim Taymans  <wim@fluendo.com>
19571
19572         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
19573         (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
19574         (remove_element_chain), (no_more_pads), (unlinked), (close_link),
19575         (type_found):
19576         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
19577         (group_destroy), (group_commit), (queue_overrun),
19578         (gen_preroll_element), (no_more_pads), (preroll_unlinked),
19579         (mute_stream), (new_decoded_pad), (setup_substreams),
19580         (setup_source), (mute_group_type), (set_active_source),
19581         (gst_play_base_bin_change_state):
19582         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
19583         (gen_video_element), (gen_text_element), (gen_audio_element),
19584         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
19585         * gst/playback/gststreaminfo.c: (gst_stream_info_new),
19586         (gst_stream_info_dispose), (gst_stream_info_set_mute):
19587         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
19588         Some playbin cleanups mostly refcounting sloppyness.
19589
19590 2005-05-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19591
19592         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
19593           Work with streaming input.
19594
19595 2005-05-25  Wim Taymans  <wim@fluendo.com>
19596
19597         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19598         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
19599         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
19600         (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
19601         No need to take the STREAM lock anymore.
19602
19603 2005-05-25  Wim Taymans  <wim@fluendo.com>
19604
19605         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
19606         (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
19607         (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
19608         (gst_ogg_demux_chain), (gst_ogg_demux_loop),
19609         (gst_ogg_demux_sink_activate):
19610         * ext/theora/theoradec.c: (theora_dec_src_event),
19611         (theora_handle_comment_packet), (theora_dec_chain),
19612         (theora_dec_change_state):
19613         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
19614         (vorbis_handle_data_packet), (vorbis_dec_chain),
19615         (vorbis_dec_change_state):
19616         Remove STREAM locks as they are taken in core now.
19617         Never set bogus granulepos on vorbis/theora.
19618         Fix leaks in theoradec tag parsing.
19619
19620 2005-05-25  Wim Taymans  <wim@fluendo.com>
19621
19622         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
19623         Fix memleaks, GST_BUFFER_DATA() is not freed.
19624
19625 2005-05-25  Wim Taymans  <wim@fluendo.com>
19626
19627         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
19628         Open non-blocking, set to blocking mode afterwards to avoid
19629         lockups when audio device is busy.
19630
19631 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19632
19633         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
19634           This can't be good.
19635
19636 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19637
19638         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
19639         (gst_audio_convert_chain), (gst_audio_convert_link_src),
19640         (gst_audio_convert_setcaps):
19641           Implement instant setup switching.
19642
19643 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19644
19645         * gst/playback/gstplaybasebin.c: (probe_triggered):
19646           Fix missing unlock.
19647         * gst/playback/gstplaybin.c: (add_sink):
19648           First add, then link (otherwise pad link fails).
19649
19650 2005-05-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
19651
19652         * examples/Makefile.am:
19653         fix buildbot (make distcheck)
19654
19655 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19656
19657         * gst/playback/gstplaybin.c: (gen_vis_element):
19658           Remove some wrong code. Doesn't work yet.
19659
19660 2005-05-19  Wim Taymans  <wim@fluendo.com>
19661
19662         * gst-libs/gst/net/Makefile.am:
19663         * gst-libs/gst/net/README:
19664         * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
19665         (gst_netbuffer_class_init), (gst_netbuffer_init),
19666         (gst_netbuffer_finalize), (gst_netbuffer_copy),
19667         (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
19668         (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
19669         (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
19670         * gst-libs/gst/net/gstnetbuffer.h:
19671         Added buffer subclass to store extra to/from addresses for
19672         network sources/sinks.
19673
19674 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19675
19676         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
19677           Don't lock an unassigned variable.
19678
19679 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19680
19681         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
19682           Increase buffer for video, decrease buffer for other media types.
19683         * gst/playback/gstplaybin.c: (gen_video_element),
19684         (gen_audio_element):
19685           Change names for debugging purposes.
19686
19687 2005-05-18  Wim Taymans  <wim@fluendo.com>
19688
19689         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19690         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
19691         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
19692         (gst_ffmpegcsp_chain):
19693         Enable buffer alloc passthrough if the source and dest
19694         formats are the same.
19695
19696 2005-05-17  Wim Taymans  <wim@fluendo.com>
19697
19698         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
19699         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
19700         (gst_ogg_demux_chain_unlocked):
19701         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
19702         (gst_audio_convert_caps_remove_format_info),
19703         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
19704         (gst_audio_convert_fixate), (gst_audio_convert_change_state):
19705         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19706         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
19707         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
19708         (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
19709         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
19710         (gst_ffmpegcsp_get_property):
19711         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
19712         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
19713         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
19714         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
19715         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
19716         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
19717         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
19718         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
19719         Leak fixes in oggdemux.
19720         Some cleanups in audioconvert.
19721         Make passthrough work along with buffer_alloc etc.
19722         Make buffer_alloc and buffer recycling actually work in
19723         xvimagesink.
19724
19725 2005-05-17  Thomas Vander Stichele  <thomas at apestaart dot org>
19726
19727         * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
19728           make the compiler happy
19729
19730 2005-05-17  Wim Taymans  <wim@fluendo.com>
19731
19732         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
19733         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
19734         (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
19735         (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
19736         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
19737         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
19738         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
19739         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
19740         (gst_xvimagesink_set_xwindow_id):
19741         * sys/xvimage/xvimagesink.h:
19742         Port xvimagesink to new MiniObject.
19743
19744 2005-05-17  Wim Taymans  <wim@fluendo.com>
19745
19746         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
19747         (gst_audiofilter_chain):
19748         * gst-libs/gst/audio/gstaudiosink.c:
19749         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
19750         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
19751         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
19752         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
19753         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
19754         (gst_audiosink_create_ringbuffer):
19755         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
19756         (gst_audio_convert_caps_remove_format_info),
19757         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
19758         (gst_audio_convert_fixate), (gst_audio_convert_channels):
19759         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19760         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
19761         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
19762         Fix passthrough in ffmpegcolorspace.
19763         Fix memset in audiosink on wrong memory.
19764
19765 2005-05-16  David Schleef  <ds@schleef.org>
19766
19767         * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
19768         to GstMiniObject.
19769
19770 2005-05-16  David Schleef  <ds@schleef.org>
19771
19772         Port from GstData to GstMiniObject.
19773         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
19774         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
19775         (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
19776         (gst_ogg_mux_collected):
19777         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
19778         * ext/theora/theoradec.c: (theora_handle_comment_packet),
19779         (theora_handle_data_packet):
19780         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
19781         (theora_set_header_on_caps), (theora_enc_chain):
19782         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
19783         (vorbis_handle_comment_packet):
19784         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
19785         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
19786         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
19787         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
19788         * gst/audioconvert/gstaudioconvert.c:
19789         (gst_audio_convert_get_buffer):
19790         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
19791         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
19792         (mute_stream), (silence_stream):
19793         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
19794         * gst/volume/gstvolume.c: (volume_transform):
19795         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
19796         (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
19797         (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
19798         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
19799         (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
19800         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
19801         (gst_ximagesink_buffer_alloc):
19802         * sys/ximage/ximagesink.h:
19803
19804 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19805
19806         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
19807         (fill_buffer), (check_queue), (queue_threshold_reached),
19808         (queue_out_of_data):
19809         * gst/playback/gstplaybasebin.h:
19810           Post buffer-fullness on the bus.
19811
19812 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19813
19814         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19815         (try_to_link_1):
19816         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
19817         (group_commit), (probe_triggered), (setup_source),
19818         (gst_play_base_bin_change_state):
19819         * gst/playback/gstplaybasebin.h:
19820         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
19821         (gst_play_bin_init), (remove_sinks), (setup_sinks),
19822         (gst_play_bin_change_state):
19823           Move setup_output_pads into a virtual function, remove
19824           group-switch (no longer needed) and redirect (handled by bus
19825           now) signals.
19826
19827 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19828
19829         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
19830         (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
19831         (get_active_group), (get_building_group), (group_destroy),
19832         (group_commit), (check_queue), (queue_overrun),
19833         (queue_threshold_reached), (queue_out_of_data),
19834         (gen_preroll_element), (remove_groups), (unknown_type),
19835         (add_element_stream), (no_more_pads), (probe_triggered),
19836         (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
19837         (setup_substreams), (setup_source), (finish_source),
19838         (prepare_output), (muted_group_change_state),
19839         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
19840         (gst_play_base_bin_change_state):
19841         * gst/playback/gstplaybasebin.h:
19842         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
19843         (gst_play_bin_init), (gst_play_bin_set_property),
19844         (gen_video_element), (gen_text_element), (gen_audio_element),
19845         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
19846         (gst_play_bin_change_state):
19847         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
19848         (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
19849         (stream_info_change_state), (gst_stream_info_set_mute),
19850         (gst_stream_info_get_property):
19851         * gst/playback/gststreaminfo.h:
19852         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
19853         (gst_stream_selector_get_linked_pad),
19854         (gst_stream_selector_getcaps),
19855         (gst_stream_selector_get_linked_pads),
19856         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
19857         * gst/playback/gststreamselector.h:
19858           Rough port of playbin. Needs some more work, but is mostly done,
19859           and uses a few locks in important places, which should make stuff
19860           like chain-switches clean. Still uses GST_STATE() in a few places,
19861           which isn't all that good an idea, subtitles/elements disabled
19862           because no elements to test with and thus probably broken, query
19863           and event handling moved to GstBin, internal thread removed
19864           alltogether because the pipeline does that for us now. Can play
19865           Ogg/Vorbis files. Haven't tested anything else yet.
19866
19867 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19868
19869         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
19870           Do no-more-pads (needed for autoplugging).
19871
19872 2005-05-10  Andy Wingo  <wingo@pobox.com>
19873
19874         * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
19875         message to the bus with the tags. Still not sent downstream tho.
19876
19877         * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
19878         get_parent.
19879         (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
19880         avoid refcounting hassles.
19881
19882 2005-05-09  Andy Wingo  <wingo@pobox.com>
19883
19884         * gst/volume/Makefile.am:
19885         * gst/volume/demo.c
19886         * gst/volume/gstvolume.h
19887         * gst/volume/gstvolume.c: Port to 0.9 API, derive from
19888         basetransform. Probably need an audio filter base class.
19889
19890 2005-05-09  Wim Taymans  <wim@fluendo.com>
19891
19892         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
19893         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
19894         (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
19895         (gst_vorbisenc_chain):
19896         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
19897         (gst_audio_convert_caps_remove_format_info),
19898         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
19899         (gst_audio_convert_fixate), (gst_audio_convert_channels):
19900         Make caps writable before writing to it.
19901         Fix negotiation in audioconvert some more.
19902
19903 2005-05-09  Wim Taymans  <wim@fluendo.com>
19904
19905         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
19906         (gst_videorate_getcaps), (gst_videorate_setcaps),
19907         (gst_videorate_event), (gst_videorate_chain):
19908         Better negotiation.
19909
19910 2005-05-09  Wim Taymans  <wim@fluendo.com>
19911
19912         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
19913         (gst_videorate_getcaps), (gst_videorate_setcaps),
19914         (gst_videorate_blank_data), (gst_videorate_init),
19915         (gst_videorate_event), (gst_videorate_chain),
19916         (gst_videorate_change_state):
19917         Port videorate, do a better job at negotiation while we're at
19918         it.
19919
19920 2005-05-09  Jan Schmidt  <thaytan@mad.scientist.com>
19921
19922         * configure.ac:
19923           Disable libvisual
19924
19925         * examples/Makefile.am:
19926         * gst-libs/gst/audio/Makefile.am:
19927         * gst-libs/gst/riff/Makefile.am:
19928         * gst-libs/gst/tag/Makefile.am:
19929         * gst-libs/gst/video/Makefile.am:
19930           Fixups for missing variables.
19931
19932 2005-05-09  Wim Taymans  <wim@fluendo.com>
19933
19934         * examples/seeking/seek.c: (make_theora_pipeline),
19935         (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
19936         (query_rates), (query_positions_elems), (query_positions_pads),
19937         (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
19938         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
19939         (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
19940         (gst_ogg_pad_typefind), (gst_ogg_demux_init),
19941         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
19942         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
19943         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
19944         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
19945         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
19946         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
19947         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
19948         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
19949         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
19950         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
19951         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
19952         (theora_dec_src_convert), (theora_dec_sink_convert),
19953         (theora_dec_src_query), (theora_dec_sink_query),
19954         (theora_dec_src_event), (theora_dec_sink_event),
19955         (theora_handle_comment_packet), (theora_handle_type_packet),
19956         (theora_handle_header_packet), (theora_handle_data_packet),
19957         (theora_dec_chain):
19958         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
19959         (vorbis_dec_convert), (vorbis_dec_src_query),
19960         (vorbis_dec_sink_query), (vorbis_dec_src_event),
19961         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
19962         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
19963         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
19964         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
19965         (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
19966         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
19967         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
19968         (gst_play_bin_query):
19969         * gst/playback/test3.c: (update_scale):
19970         * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
19971         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
19972         * gst/subparse/gstsubparse.c: (gst_subparse_init):
19973         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
19974         (gst_videotestsrc_src_query):
19975         * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
19976         (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
19977         (paint_hline_YUV9):
19978         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
19979         Port to new query API.
19980         Updated seek.
19981         Cleanups in x[v]imagesink
19982
19983 2005-05-09  Andy Wingo  <wingo@pobox.com>
19984
19985         * ext/alsa/gstalsasink.h:
19986         * ext/gnomevfs/gstgnomevfssrc.c:
19987         (gst_gnomevfssrc_get_icy_metadata):
19988         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
19989         (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
19990         * ext/theora/theoradec.c (theora_dec_src_query)
19991         (theora_dec_src_event, theora_dec_sink_event)
19992         (theora_handle_comment_packet, theora_handle_data_packet):
19993         * ext/theora/theoraenc.c (theora_enc_chain):
19994         * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
19995         (vorbis_dec_sink_event, vorbis_handle_comment_packet):
19996         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
19997         * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
19998         (qt_type_find):
19999         * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
20000         (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
20001         (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
20002         (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
20003         (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
20004         (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
20005         (paint_setup_xBGR8888, paint_setup_RGBx8888)
20006         (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
20007         (paint_setup_RGB565, paint_setup_xRGB1555):
20008         * gst/videotestsrc/videotestsrc.h:
20009         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
20010         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
20011         (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
20012         GCC4 fixes.
20013         
20014         * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
20015         gst_pad_query_position. Fixes oggdemux.
20016
20017 2005-05-08  David Schleef  <ds@schleef.org>
20018
20019         * configure.ac: Require liboil.
20020         * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
20021         a few more.
20022         * gst/videotestsrc/videotestsrc.c:
20023         * gst/videotestsrc/videotestsrc.h:
20024
20025 2005-05-06  Wim Taymans  <wim@fluendo.com>
20026
20027         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20028         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
20029         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
20030         Well, unreffing a buffer right before pushing it is asking
20031         for trouble..
20032
20033 2005-05-06  Christian Schaller  <uraeus@gnome.org>
20034
20035         * pkgconfig/gstreamer-libs.pc.in: add missing library calls
20036
20037 2005-05-06  Wim Taymans  <wim@fluendo.com>
20038
20039         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
20040         (gst_audio_convert_caps_remove_format_info),
20041         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
20042         (gst_audio_convert_fixate), (gst_audio_convert_channels):
20043         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20044         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
20045         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
20046         * gst/sine/Makefile.am:
20047         * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
20048         (gst_sinesrc_class_init), (gst_sinesrc_init),
20049         (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
20050         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
20051         (gst_sinesrc_update_freq):
20052         * gst/sine/gstsinesrc.h:
20053         * gst/tcp/gstmultifdsink.c:
20054         * sys/xvimage/xvimagesink.c:
20055         Fixed negotiation wrt _peer_get_caps()
20056         Some cleanups.
20057
20058
20059 2005-05-06  Wim Taymans  <wim@fluendo.com>
20060
20061         * gst-libs/gst/audio/gstaudiosink.c:
20062         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
20063         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
20064         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
20065         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
20066         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
20067         (gst_audiosink_create_ringbuffer):
20068         * gst-libs/gst/audio/gstbaseaudiosink.c:
20069         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
20070         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
20071         (gst_baseaudiosink_set_property), (build_linear_format),
20072         (debug_spec_caps), (debug_spec_buffer),
20073         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
20074         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
20075         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
20076         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
20077         * gst-libs/gst/audio/gstbaseaudiosink.h:
20078         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
20079         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
20080         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
20081         (gst_ringbuffer_play), (gst_ringbuffer_pause),
20082         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
20083         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
20084         (wait_segment), (gst_ringbuffer_commit),
20085         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
20086         (gst_ringbuffer_clear):
20087         * gst-libs/gst/audio/gstringbuffer.h:
20088         Make the base audiosink return an error when there is no
20089         audiobuffer negotiated.
20090
20091 2005-05-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
20092
20093         * ext/Makefile.am:
20094         Disable cdparanoia until someone ports it!
20095
20096 2005-05-06  Wim Taymans  <wim@fluendo.com>
20097
20098         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
20099         (gst_ogg_demux_sink_activate):
20100         And revert after wingo's revert.. sigh..
20101
20102 2005-05-05  Andy Wingo  <wingo@pobox.com>
20103
20104         * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
20105         GObject.
20106         * configure.ac: Return audiorate and subparse from the ghetto.
20107         Re-enable -Wall -Werror.
20108         * gst/subparse/gstsubparse.c:
20109         * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
20110         or chain-based. Cleaned up a bit. Not tested.
20111         
20112 2005-05-05  Christian Schaller <christian@fluendo.com> 
20113
20114         * Makefile.am: remove stuff that is not building
20115         * configure.ac: remove stuff that is not building
20116         * examples/Makefile.am: remove stuff that is not building
20117         * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
20118         * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
20119         * sys/Makefile.am: remove stuff that is not building
20120         * testsuite/Makefile.am: remove stuff that is not building
20121
20122 2005-05-05  Andy Wingo  <wingo@pobox.com>
20123
20124         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
20125         * gst-libs/gst/tag/gstvorbistag.c:
20126         (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
20127         * gst/adder/gstadder.h:
20128         * gst/audioconvert/gstchannelmix.c:
20129         (gst_audio_convert_fill_one_other):
20130         * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
20131         (gst_audiorate_init), (gst_audiorate_chain):
20132         * gst/playback/gstplaybasebin.c: (setup_source):
20133         * gst/playback/test3.c: (update_scale):
20134         Some GCC4 fixes
20135         
20136         * po/af.po:
20137         * po/az.po:
20138         * po/cs.po:
20139         * po/en_GB.po:
20140         * po/hu.po:
20141         * po/it.po:
20142         * po/nb.po:
20143         * po/nl.po:
20144         * po/or.po:
20145         * po/sq.po:
20146         * po/sr.po:
20147         * po/sv.po:
20148         * po/uk.po:
20149         * po/vi.po: Foo
20150
20151 2005-05-05  Wim Taymans  <wim@fluendo.com>
20152
20153         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
20154         (gst_audio_convert_caps_remove_format_info),
20155         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
20156         (gst_audio_convert_change_state), (gst_audio_convert_channels):
20157         * gst/videotestsrc/gstvideotestsrc.c:
20158         (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
20159         (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
20160         (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
20161         (gst_videotestsrc_init), (gst_videotestsrc_loop):
20162         Don't ignore _push() return values.
20163         Make sure no processing is done when shutting down.
20164         Videotestsrc pad activation fix.
20165
20166 2005-05-05  Wim Taymans  <wim@fluendo.com>
20167
20168         * gst/adder/Makefile.am:
20169         * gst/adder/gstadder.c: (gst_adder_setcaps),
20170         (gst_adder_class_init), (gst_adder_init),
20171         (gst_adder_request_new_pad), (gst_adder_collected),
20172         (gst_adder_change_state):
20173         * gst/adder/gstadder.h:
20174         Ported adder as an example of a mixer element using
20175         collect pads. Needs more negotiation work.
20176
20177 2005-05-05  Wim Taymans  <wim@fluendo.com>
20178
20179         * ext/theora/theoradec.c: (_inc_granulepos),
20180         (theora_dec_src_event), (theora_dec_sink_event),
20181         (theora_handle_comment_packet), (theora_handle_type_packet),
20182         (theora_handle_header_packet), (theora_handle_data_packet),
20183         (theora_dec_chain):
20184         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
20185         (gst_theora_enc_init), (theora_enc_sink_setcaps),
20186         (theora_push_buffer), (theora_push_packet),
20187         (theora_enc_sink_event), (theora_enc_chain),
20188         (theora_enc_change_state), (theora_enc_set_property),
20189         (theora_enc_get_property):
20190         Added stream lock to decoder so that we can serialize
20191         the discont event.
20192         More theoraenc porting, recover from errors, do clean
20193         shutdown.
20194
20195 2005-05-05  Wim Taymans  <wim@fluendo.com>
20196
20197         * ext/ogg/Makefile.am:
20198         * ext/ogg/README:
20199         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
20200         (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
20201         (gst_ogg_print):
20202         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
20203         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
20204         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
20205         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
20206         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
20207         (gst_ogg_mux_change_state):
20208         Ported ogg muxer.
20209
20210 2005-05-05  Wim Taymans  <wim@fluendo.com>
20211
20212         * docs/design-audiosinks.txt:
20213         * gst-libs/gst/audio/TODO:
20214         * gst-libs/gst/audio/gstaudiosink.c:
20215         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
20216         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
20217         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
20218         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
20219         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
20220         (gst_audiosink_create_ringbuffer):
20221         * gst-libs/gst/audio/gstbaseaudiosink.c:
20222         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
20223         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
20224         (gst_baseaudiosink_set_property), (build_linear_format),
20225         (debug_spec_caps), (debug_spec_buffer),
20226         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
20227         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
20228         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
20229         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
20230         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
20231         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
20232         (gst_ringbuffer_release), (gst_ringbuffer_play),
20233         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
20234         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
20235         (gst_ringbuffer_set_sample), (wait_segment),
20236         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
20237         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
20238         More work on the audiosink, mostly debugging and a race in
20239         shutdown.
20240
20241 2005-04-28  Wim Taymans  <wim@fluendo.com>
20242
20243         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
20244         (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
20245         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
20246         (vorbis_dec_src_query), (vorbis_dec_src_event),
20247         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
20248         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
20249         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
20250         Don't crap out when seeking back to position 0.
20251
20252 2005-04-28  Wim Taymans  <wim@fluendo.com>
20253
20254         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
20255         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
20256         (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
20257         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
20258         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
20259         Make audio sink configurable, use alsasink as default.
20260
20261 2005-04-28  Wim Taymans  <wim@fluendo.com>
20262
20263         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
20264         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
20265         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
20266         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
20267         (vorbis_dec_change_state):
20268         * ext/vorbis/vorbisdec.h:
20269         Refactor, use STREAM_LOCK.
20270
20271 2005-04-28  Wim Taymans  <wim@fluendo.com>
20272
20273         * ext/theora/theoradec.c: (_inc_granulepos),
20274         (theora_dec_sink_event), (theora_handle_comment_packet),
20275         (theora_handle_type_packet), (theora_handle_header_packet),
20276         (theora_handle_data_packet), (theora_dec_chain),
20277         (theora_dec_change_state):
20278         Refactor a bit, use STREAM_LOCK.
20279
20280 2005-04-28  Wim Taymans  <wim@fluendo.com>
20281
20282         * ext/alsa/Makefile.am:
20283         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
20284         (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
20285         (gst_alsa_link), (gst_alsa_close_audio):
20286         * ext/alsa/gstalsaplugin.c: (plugin_init):
20287         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
20288         (gst_alsasink_dispose), (gst_alsasink_base_init),
20289         (gst_alsasink_class_init), (gst_alsasink_init),
20290         (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
20291         (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
20292         (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
20293         (gst_alsasink_reset):
20294         * ext/alsa/gstalsasink.h:
20295         Implement alsasink with simple open/write/close API. 
20296         Make alsa dir build by disabling compilation of code.
20297
20298 2005-04-28  Wim Taymans  <wim@fluendo.com>
20299
20300         * gst-libs/gst/audio/Makefile.am:
20301         * gst-libs/gst/audio/audio.h:
20302         * gst-libs/gst/audio/audioclock.c:
20303         * gst-libs/gst/audio/audioclock.h:
20304         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
20305         (gst_audio_clock_class_init), (gst_audio_clock_init),
20306         (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
20307         * gst-libs/gst/audio/gstaudioclock.h:
20308         * gst-libs/gst/audio/gstaudiosink.c:
20309         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
20310         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
20311         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
20312         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
20313         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
20314         (gst_audiosink_create_ringbuffer):
20315         * gst-libs/gst/audio/gstbaseaudiosink.c:
20316         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
20317         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
20318         (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
20319         (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
20320         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
20321         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
20322         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
20323         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
20324         * gst-libs/gst/audio/gstbaseaudiosink.h:
20325         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
20326         (gst_ringbuffer_init), (gst_ringbuffer_finalize),
20327         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
20328         (gst_ringbuffer_release), (gst_ringbuffer_play),
20329         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
20330         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
20331         (gst_ringbuffer_set_sample), (wait_segment),
20332         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
20333         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
20334         * gst-libs/gst/audio/gstringbuffer.h:
20335         Make ringbuffer faster and more simple by removing the locks
20336         in the playback thread.
20337         Add sample accurate playback based on buffer sample offsets.
20338         Make the baseaudiosink provide a clock.
20339         Parse caps in the base class.
20340         Correctly handle seeking, flushing and state changes.
20341
20342 2005-04-25  Thomas Vander Stichele  <thomas at apestaart dot org>
20343
20344         * configure.ac:
20345         * gst/audioconvert/Makefile.am:
20346         * gst/audioscale/Makefile.am:
20347           Fix part of the build.  Come on guys, autogen didn't even work :)
20348
20349 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20350
20351         * configure.ac:
20352         * gst-libs/gst/Makefile.am:
20353         * gst-libs/gst/media-info/.cvsignore:
20354         * gst-libs/gst/media-info/Makefile.am:
20355         * gst-libs/gst/media-info/README:
20356         * gst-libs/gst/media-info/media-info-priv.c:
20357         * gst-libs/gst/media-info/media-info-priv.h:
20358         * gst-libs/gst/media-info/media-info-test.c:
20359         * gst-libs/gst/media-info/media-info.c:
20360         * gst-libs/gst/media-info/media-info.h:
20361         * gst-libs/gst/media-info/media-info.vcproj:
20362         * pkgconfig/Makefile.am:
20363         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
20364         * pkgconfig/gstreamer-media-info.pc.in:
20365           Remove media-info, which is also successed by playbin (see Totem
20366           implementation).
20367
20368 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20369
20370         * configure.ac:
20371         * examples/Makefile.am:
20372         * examples/gstplay/.cvsignore:
20373         * examples/gstplay/Makefile.am:
20374         * examples/gstplay/player.c:
20375         * gst-libs/gst/Makefile.am:
20376         * gst-libs/gst/play/.cvsignore:
20377         * gst-libs/gst/play/Makefile.am:
20378         * gst-libs/gst/play/play.c:
20379         * gst-libs/gst/play/play.h:
20380         * gst-libs/gst/play/play.vcproj:
20381         * pkgconfig/Makefile.am:
20382         * pkgconfig/gstreamer-play-uninstalled.pc.in:
20383         * pkgconfig/gstreamer-play.pc.in:
20384           Remove libgstplay, playbin is now the official successor.
20385
20386 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20387
20388         * configure.ac:
20389         * gst-libs/gst/Makefile.am:
20390         * gst-libs/gst/xwindowlistener/Makefile.am:
20391         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
20392         * gst-libs/gst/xwindowlistener/xwindowlistener.h:
20393           Remove deprecated xwindowlistener (I've moved xwindowlistening
20394           in the v4l/v4l2 plugins over to serverside).
20395
20396 2005-04-25  David Schleef  <ds@schleef.org>
20397
20398         * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
20399         to examples/dynparams.  Examples do not belong interspersed with
20400         source code.
20401         * examples/dynparams/demo-dparams.c:
20402         * gst/sine/Makefile.am:
20403         * gst/sine/demo-dparams.c:
20404
20405 2005-04-25  David Schleef  <ds@schleef.org>
20406
20407         Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
20408         * gst-libs/gst/audio/Makefile.am:
20409         * gst-libs/gst/riff/Makefile.am:
20410         * gst-libs/gst/tag/Makefile.am:
20411         * gst-libs/gst/video/Makefile.am:
20412         * gst-libs/gst/xwindowlistener/Makefile.am:
20413
20414         Convert to 0.9 API, seems to work:
20415         * sys/ximage/Makefile.am:
20416         * sys/ximage/ximagesink.c:
20417
20418 2005-04-24  David Schleef  <ds@schleef.org>
20419
20420         Link plugins against libraries:
20421         * ext/alsa/Makefile.am:
20422         * gst/tcp/Makefile.am:
20423
20424         Remove asm code that should be in liboil
20425         * gst/videoscale/Makefile.am:
20426         * gst/videoscale/videoscale_x86_asm.s:
20427
20428         gettext wants these checked in:
20429         * po/af.po:
20430         * po/az.po:
20431         * po/cs.po:
20432         * po/en_GB.po:
20433         * po/hu.po:
20434         * po/it.po:
20435         * po/nb.po:
20436         * po/nl.po:
20437         * po/or.po:
20438         * po/sq.po:
20439         * po/sr.po:
20440         * po/sv.po:
20441         * po/uk.po:
20442         * po/vi.po:
20443
20444 2005-04-24  David Schleef  <ds@schleef.org>
20445
20446         Convert gst_main() to g_main_loop_run()
20447         * gst/playback/decodetest.c: (main):
20448         * gst/playback/test2.c: (main):
20449         * gst/playback/test3.c: (main):
20450         * gst/playback/test4.c: (main):
20451
20452         Link plugins against libraries:
20453         * ext/libvisual/Makefile.am:
20454         * sys/xvimage/Makefile.am:
20455
20456 2005-04-24  David Schleef  <ds@schleef.org>
20457
20458         * configure.ac: Remove idct and resample libs
20459         * gst-libs/gst/Makefile.am: same
20460
20461         Remove usage of gst_library_load():
20462         * ext/alsa/gstalsaplugin.c: (plugin_init):
20463         * ext/libvisual/visual.c: (plugin_init):
20464         * ext/ogg/gstogg.c: (plugin_init):
20465         * ext/theora/theora.c: (plugin_init):
20466         * ext/vorbis/vorbis.c: (plugin_init):
20467         * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
20468         * gst/audioscale/gstaudioscale.c:
20469         * gst/adder/gstadder.c: (plugin_init):
20470         * gst/audioconvert/plugin.c: (plugin_init):
20471         * sys/ximage/ximagesink.c: (plugin_init):
20472         * sys/xvimage/xvimagesink.c: (plugin_init):
20473         * gst/tcp/gsttcpplugin.c: (plugin_init):
20474
20475         Link plugins against libraries:
20476         * ext/ogg/Makefile.am:
20477         * ext/theora/Makefile.am:
20478         * ext/vorbis/Makefile.am:
20479         * gst/audioconvert/Makefile.am:
20480
20481         Create proper libraries:
20482         * gst-libs/gst/riff/Makefile.am:
20483         * gst-libs/gst/audio/Makefile.am:
20484         * gst-libs/gst/video/Makefile.am:
20485
20486         Move resample library to audioscale plugin directory:
20487         * gst-libs/gst/resample/Makefile.am:
20488         * gst-libs/gst/resample/README:
20489         * gst-libs/gst/resample/dtof.c:
20490         * gst-libs/gst/resample/dtos.c:
20491         * gst-libs/gst/resample/functable.c:
20492         * gst-libs/gst/resample/private.h:
20493         * gst-libs/gst/resample/resample.c:
20494         * gst-libs/gst/resample/resample.h:
20495         * gst-libs/gst/resample/resample.vcproj:
20496         * gst-libs/gst/resample/test.c:
20497         * gst/audioscale/Makefile.am:
20498         * gst/audioscale/README:
20499         * gst/audioscale/dtof.c:
20500         * gst/audioscale/dtos.c:
20501         * gst/audioscale/functable.c:
20502         * gst/audioscale/private.h:
20503         * gst/audioscale/resample.c:
20504         * gst/audioscale/resample.h:
20505         * gst/audioscale/test.c:
20506
20507         Move tagedit library to gst-libs:
20508         * gst-libs/gst/tag/Makefile.am:
20509         * gst-libs/gst/tag/gstid3tag.c:
20510         * gst-libs/gst/tag/gsttagediting.c:
20511         * gst-libs/gst/tag/gsttageditingprivate.h:
20512         * gst-libs/gst/tag/gstvorbistag.c:
20513         * gst/tags/Makefile.am:
20514         * gst/tags/gstid3tag.c:
20515         * gst/tags/gstvorbistag.c:
20516
20517         Fix for core changes:
20518         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
20519         (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
20520         (gst_sinesrc_getrange):
20521
20522 2005-04-23  David Schleef  <ds@schleef.org>
20523
20524         * gst-libs/gst/Makefile.am: Remove idct.  It hasn't been used
20525         in gst-plugins in a long time, and properly belongs in liboil.
20526         * gst-libs/gst/idct/Makefile.am:
20527         * gst-libs/gst/idct/README:
20528         * gst-libs/gst/idct/dct.h:
20529         * gst-libs/gst/idct/doieee:
20530         * gst-libs/gst/idct/fastintidct.c:
20531         * gst-libs/gst/idct/floatidct.c:
20532         * gst-libs/gst/idct/idct.c:
20533         * gst-libs/gst/idct/idct.h:
20534         * gst-libs/gst/idct/idtc.vcproj:
20535         * gst-libs/gst/idct/ieeetest.c:
20536         * gst-libs/gst/idct/intidct.c:
20537
20538 2005-04-20  Wim Taymans  <wim@fluendo.com>
20539
20540         * docs/design-audiosinks.txt:
20541         * gst-libs/gst/audio/Makefile.am:
20542         * gst-libs/gst/audio/TODO:
20543         * gst-libs/gst/audio/gstaudiosink.c:
20544         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
20545         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
20546         (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
20547         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
20548         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
20549         (gst_audioringbuffer_delay), (gst_audiosink_base_init),
20550         (gst_audiosink_class_init), (gst_audiosink_init),
20551         (gst_audiosink_create_ringbuffer):
20552         * gst-libs/gst/audio/gstaudiosink.h:
20553         * gst-libs/gst/audio/gstbaseaudiosink.c:
20554         (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
20555         (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
20556         (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
20557         (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
20558         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
20559         (gst_baseaudiosink_create_ringbuffer),
20560         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
20561         * gst-libs/gst/audio/gstbaseaudiosink.h:
20562         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
20563         (gst_ringbuffer_class_init), (gst_ringbuffer_init),
20564         (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
20565         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
20566         (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
20567         (gst_ringbuffer_play), (gst_ringbuffer_pause),
20568         (gst_ringbuffer_resume), (gst_ringbuffer_stop),
20569         (gst_ringbuffer_callback), (gst_ringbuffer_delay),
20570         (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
20571         (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
20572         * gst-libs/gst/audio/gstringbuffer.h:
20573         An attempt at a set of audio base classes together with some
20574         design docs.
20575
20576 2005-04-20  Wim Taymans  <wim@fluendo.com>
20577
20578         * gst/audioconvert/Makefile.am:
20579         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
20580         (gst_audio_convert_caps_remove_format_info),
20581         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
20582         (gst_audio_convert_channels):
20583         Link against audio libs.
20584         Fix audio convert plugin.
20585
20586 2005-04-20  Wim Taymans  <wim@fluendo.com>
20587
20588         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
20589         (gst_ogg_demux_sink_activate):
20590         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
20591         (theora_set_header_on_caps), (theora_enc_sink_event),
20592         (theora_enc_chain):
20593         Fix theora encoder.
20594
20595 2005-04-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20596
20597         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
20598         * gst/playback/gstdecodebin.c: (find_compatibles):
20599           Work with staticpadtemplates in elementfactories.
20600
20601 2005-04-12  Wim Taymans  <wim@fluendo.com>
20602
20603         * gst/playback/README:
20604         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
20605         (compare_ranks), (print_feature), (gst_decode_bin_init),
20606         (dynamic_create), (dynamic_free), (find_compatibles),
20607         (mimetype_is_raw), (close_pad_link), (got_redirect),
20608         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
20609         (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
20610         (gst_decode_bin_change_state):
20611         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
20612         (gst_play_base_bin_init), (group_destroy), (group_commit),
20613         (check_queue), (queue_overrun), (queue_threshold_reached),
20614         (queue_out_of_data), (gen_preroll_element), (unknown_type),
20615         (new_decoded_pad), (setup_subtitle), (gen_source_element),
20616         (got_redirect), (setup_source), (play_base_eos),
20617         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
20618         (gst_play_base_bin_remove_element):
20619         * gst/playback/gstplaybasebin.h:
20620         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
20621         (gst_play_bin_init), (gst_play_bin_dispose),
20622         (gst_play_bin_set_property), (gen_video_element),
20623         (gen_text_element), (gen_audio_element), (remove_sinks),
20624         (gst_play_bin_send_event):
20625         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
20626         (stream_info_change_state), (gst_stream_info_set_mute):
20627         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
20628         (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
20629         (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
20630         (gst_stream_selector_chain):
20631         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
20632         (main):
20633         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
20634         (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
20635         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
20636         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
20637         Raw and crude port of decodebin. 
20638         Make playbin compile.
20639
20640 2005-04-06  Wim Taymans  <wim@fluendo.com>
20641
20642         * ext/gnomevfs/Makefile.am:
20643         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
20644         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
20645         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
20646         (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
20647         (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
20648         (gst_gnomevfssrc_stop):
20649         * ext/ogg/Makefile.am:
20650         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
20651         (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
20652         * ext/theora/Makefile.am:
20653         * ext/theora/theoradec.c: (_inc_granulepos),
20654         (theora_dec_sink_event), (theora_dec_chain):
20655         * ext/vorbis/Makefile.am:
20656         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
20657         (vorbis_dec_sink_event), (vorbis_dec_chain):
20658         * gst-libs/gst/audio/Makefile.am:
20659         * sys/xvimage/Makefile.am:
20660         Make gnomevfssrc extend the source base class.
20661         Fix linking against libs in various plugins.
20662
20663 2005-04-06  Andy Wingo  <wingo@pobox.com>
20664
20665         * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
20666         GST_BASE_LIBS.
20667
20668         * configure.ac: Add check and AC_SUBST for libgstbase.
20669
20670 2005-03-31  Wim Taymans  <wim@fluendo.com>
20671
20672         * examples/seeking/Makefile.am:
20673         * examples/seeking/cdparanoia.c: (main):
20674         * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
20675         (play_cb), (pause_cb), (stop_cb), (main):
20676         * examples/seeking/playbin.c:
20677         * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
20678         (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
20679         (make_sid_pipeline), (make_vorbis_pipeline),
20680         (make_theora_pipeline), (make_vorbis_theora_pipeline),
20681         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
20682         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
20683         (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
20684         (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
20685         (stop_cb), (main):
20686         * examples/seeking/spider_seek.c:
20687         * examples/seeking/vorbisfile.c:
20688         * ext/gnomevfs/Makefile.am:
20689         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
20690         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
20691         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
20692         (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
20693         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
20694         (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
20695         (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
20696         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
20697         * ext/ogg/README:
20698         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
20699         (gst_ogg_pad_class_init), (gst_ogg_pad_init),
20700         (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
20701         (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
20702         (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
20703         (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
20704         (gst_ogg_pad_event), (gst_ogg_pad_reset),
20705         (gst_ogg_demux_factory_filter), (compare_ranks),
20706         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
20707         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
20708         (gst_ogg_chain_new), (gst_ogg_chain_free),
20709         (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
20710         (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
20711         (gst_ogg_demux_class_init), (gst_ogg_demux_init),
20712         (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
20713         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
20714         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
20715         (gst_ogg_demux_get_prev_page),
20716         (gst_ogg_demux_deactivate_current_chain),
20717         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
20718         (gst_ogg_demux_bisect_forward_serialno),
20719         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
20720         (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
20721         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
20722         (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
20723         (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
20724         (gst_ogg_demux_change_state), (gst_ogg_print):
20725         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
20726         (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
20727         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
20728         (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
20729         (gst_ogg_mux_loop):
20730         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
20731         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
20732         (theora_dec_src_convert), (theora_dec_sink_convert),
20733         (theora_dec_src_query), (theora_dec_src_event),
20734         (theora_dec_sink_event), (theora_dec_chain),
20735         (theora_dec_change_state):
20736         * ext/theora/theoraenc.c: (gst_theora_enc_init),
20737         (theora_enc_sink_setcaps), (theora_buffer_from_packet),
20738         (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
20739         (theora_enc_change_state):
20740         * ext/vorbis/Makefile.am:
20741         * ext/vorbis/oggvorbisenc.c:
20742         * ext/vorbis/oggvorbisenc.h:
20743         * ext/vorbis/vorbis.c: (plugin_init):
20744         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
20745         (vorbis_dec_src_query), (vorbis_dec_src_event),
20746         (vorbis_dec_sink_event), (vorbis_dec_chain),
20747         (vorbis_dec_change_state):
20748         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
20749         (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
20750         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
20751         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
20752         (gst_vorbisenc_change_state):
20753         * ext/vorbis/vorbisenc.h:
20754         * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
20755         * gst-libs/gst/audio/audioclock.c:
20756         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
20757         (gst_audiofilter_init), (gst_audiofilter_chain):
20758         * gst-libs/gst/audio/testchannels.c: (main):
20759         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
20760         * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
20761         (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
20762         (gmip_find_track_streaminfo), (gmip_find_track_format):
20763         * gst-libs/gst/media-info/media-info.c:
20764         (gst_media_info_read_idler):
20765         * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
20766         (gst_play_get_all_by_interface):
20767         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
20768         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
20769         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
20770         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
20771         (gst_riff_parse_info):
20772         * gst-libs/gst/riff/riff-read.h:
20773         * gst-libs/gst/riff/riff.c: (plugin_init):
20774         * gst-libs/gst/video/Makefile.am:
20775         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
20776         (gst_videosink_class_init), (gst_videosink_get_type):
20777         * gst-libs/gst/video/videosink.h:
20778         * gst/audioconvert/bufferframesconvert.c:
20779         (buffer_frames_convert_init), (buffer_frames_convert_fixate),
20780         (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
20781         * gst/audioconvert/channelmixtest.c: (main):
20782         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
20783         (gst_audio_convert_chain),
20784         (gst_audio_convert_caps_remove_format_info),
20785         (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
20786         (gst_audio_convert_setcaps), (_fixate_caps_to_int),
20787         (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
20788         (gst_audio_convert_buffer_to_default_format),
20789         (gst_audio_convert_buffer_from_default_format),
20790         (gst_audio_convert_channels):
20791         * gst/audioconvert/gstchannelmix.h:
20792         * gst/ffmpegcolorspace/avcodec.h:
20793         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20794         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
20795         (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
20796         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
20797         * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
20798         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
20799         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
20800         (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
20801         (mpeg_video_type_find), (mpeg_video_stream_type_find),
20802         (dv_type_find):
20803         * gst/videotestsrc/gstvideotestsrc.c:
20804         (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
20805         (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
20806         (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
20807         (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
20808         (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
20809         (gst_videotestsrc_init), (gst_videotestsrc_src_query),
20810         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
20811         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
20812         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
20813         (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
20814         (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
20815         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
20816         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
20817         (gst_xvimagesink_navigation_send_event),
20818         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
20819         (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
20820         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
20821         * sys/xvimage/xvimagesink.h:
20822         Plugin port to 0.9, ogg/theora playback should work in the seek
20823         example now.
20824         Removed old examples.
20825         Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
20826         explained in 0.9 TODO doc.
20827
20828
20829 2005-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20830
20831         * autogen.sh:
20832         * configure.ac:
20833         * ext/Makefile.am:
20834         * gst/Makefile.am:
20835         * po/POTFILES.in:
20836         * po/af.po:
20837         * po/az.po:
20838         * po/cs.po:
20839         * po/en_GB.po:
20840         * po/hu.po:
20841         * po/it.po:
20842         * po/nb.po:
20843         * po/nl.po:
20844         * po/or.po:
20845         * po/sq.po:
20846         * po/sr.po:
20847         * po/sv.po:
20848         * po/uk.po:
20849         * po/vi.po:
20850         * sys/Makefile.am:
20851         * testsuite/Makefile.am:
20852           remove a whole bunch of plugins.  This module now contains a set
20853           of free reference plugins/elements as agreed.
20854
20855 2005-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
20856
20857         * configure.ac:
20858           hunting season on 0.9 is now OPEN
20859
20860 2005-02-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20861
20862         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
20863           Kick the hell out of gcc for not warning me about a symbol conflict.
20864
20865 2005-02-22  Luca Ognibene  <luogni@tin.it>
20866
20867         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20868
20869         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
20870           Don't leak caps string (fixes #168134)
20871
20872         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
20873         (gst_jpegenc_init), (gst_jpegenc_finalize),
20874         (gst_jpegenc_change_state):
20875           Don't leak line buffers and context struct (fixes #168133).
20876
20877 2005-02-21  Tim-Philipp Müller  <tim at centricular dot net>
20878
20879         * configure.ac:
20880         * ext/dirac/gstdiracdec.cc:
20881         (gst_diracdec_chain):
20882           Since dirac 0.5.0 the framerate in dirac is expressed as a
20883           rational number. Fix build and up requirement to 0.5.0, and
20884           also pass parameters to gst_diracdec_link in the right order
20885           (fixes #167959).
20886
20887 2005-02-21  Maciej Katafiasz  <mathrick@freedesktop.org>
20888
20889         * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
20890         * ext/faad/gstfaad.h:
20891         TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with 
20892         certain invalid muxed streams, where some packets will contain 
20893         junk after decoder data. Partially fixes #149158.
20894
20895 2005-02-21  Jan Schmidt <thaytan@mad.scientist.com>
20896         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
20897           Make sure we only write to writable buffers
20898
20899 2005-02-20  Tim-Philipp Müller  <tim at centricular dot net>
20900
20901         * gst-libs/gst/riff/riff-media.c:
20902         (gst_riff_create_audio_caps_with_data):
20903           Do actually fix invalid RIFF fmt header values for alaw
20904           and mulaw audio instead of just saying so.
20905
20906         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
20907           Give gst_riff_create_audio_caps_with_data() a chance to
20908           fix up broken format header fields before extracting any
20909           parameters from the header. (fixes #167633)
20910
20911 2005-02-19  Martin Holters  <martin.holters@gmx.de>
20912
20913         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20914
20915         * gst/audioconvert/bufferframesconvert.c:
20916         (buffer_frames_convert_link):
20917           Don't leak othercaps. (fixes #167878)
20918
20919 2005-02-19  Arwed v. Merkatz  <v.merkatz@gmx.net>
20920
20921         * configure.ac:
20922         * ext/libvisual/visual.c: (gst_visual_srclink),
20923         (gst_visual_change_state):
20924           Support libvisual 0.2.0.
20925
20926 2005-02-18  Tim-Philipp Müller  <tim at centricular dot net>
20927
20928         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
20929         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
20930           Use same rowstrides for I420 as used everywhere else.
20931
20932 2005-02-17  Tim-Philipp Müller  <tim at centricular dot net>
20933
20934         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
20935           Declare variables at beginning of block and make gcc-2.95 happy
20936           (fixes # 167482, patch by Gergely Nagy).
20937           
20938         * gst/tcp/gsttcpclientsrc.c:
20939         * gst/tcp/gsttcpclientsrc.h:
20940           Move some includes into the header, so that struct sockaddr_in is
20941           defined when it should be defined on FreeBSD as well (fixes
20942           #167483).
20943           
20944         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
20945           Don't pass uninitialised values to setsockopt() here either.
20946
20947 2005-02-17  Luca Ognibene  <luogni at tin dot it>
20948
20949         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20950
20951         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
20952           Don't pass uninitialised values to setsockopt(). (fixes #167704)
20953
20954 2005-02-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20955
20956         * gst/playback/gstplaybin.c: (add_sink):
20957           Invert bin_add/link order to workaround deadlock in opt.
20958
20959 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20960
20961         * gst/modplug/gstmodplug.cc:
20962           Add missing break causing position queries to fail.
20963
20964 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20965
20966         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
20967           Granpos can apparently be -1, which screws up calculations...
20968
20969 2005-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
20970
20971         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
20972         (gst_ximagesink_send_pending_navigation),
20973         (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
20974         (gst_ximagesink_init):
20975         * sys/ximage/ximagesink.h:
20976         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
20977         (gst_xvimagesink_send_pending_navigation),
20978         (gst_xvimagesink_navigation_send_event),
20979         (gst_xvimagesink_finalize), (gst_xvimagesink_init):
20980         * sys/xvimage/xvimagesink.h:
20981           Use a mutex protected list to marshal navigation
20982           events into the stream thread from whichever thread
20983           sends them.
20984
20985 2005-02-15  Tim-Philipp Müller  <tim at centricular dot net>
20986
20987         * gst/speed/demo-mp3.c: (time_tick_cb), (main):
20988           Display current position and track length; misc. clean-ups.
20989           
20990         * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
20991         (speed_init), (speed_chain):
20992           Add query function, so that the stream length and current position
20993           get adjusted when queried (note that current position queries may
20994           still be wrong if the audio sink returns values based on buffer
20995           timestamps instead of passing on the query).
20996
20997 2005-02-13  Benjamin Otte  <otte@gnome.org>
20998
20999         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
21000         (gst_audio_convert_channels):
21001           create channel conversion matrix when linking
21002         * gst/audioconvert/.cvsignore:
21003         * gst/audioconvert/Makefile.am:
21004         * gst/audioconvert/channelmixtest.c: (main):
21005           add (ugly) test that ensures stereo <=> mono conversion works
21006           correctly
21007
21008 2005-02-13  Benjamin Otte  <otte@gnome.org>
21009
21010         * gst/audioconvert/gstchannelmix.h:
21011           include missing header file
21012         * gst/audioconvert/gstchannelmix.c:
21013         (gst_audio_convert_fill_compatible):
21014           use same sign for both channels when converting to/from compatible
21015           channel. Previously used different signs made the signals cancel
21016           each other out and appear like silence. (fixes #167269)
21017
21018 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
21019
21020         * gst/ffmpegcolorspace/avcodec.h:
21021         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
21022         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
21023         (gst_ffmpegcsp_avpicture_fill):
21024         * gst/ffmpegcolorspace/imgconvert.c:
21025           Convert to and from YV12 (fixes #156379).
21026
21027 2005-02-12  Julien MOUTTE  <julien@moutte.net>
21028
21029         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
21030         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
21031         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
21032         (gst_ximagesink_expose), (gst_ximagesink_set_property),
21033         (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
21034         methods from chain and negotiation and vice versa (Fixes #166142).
21035         * sys/ximage/ximagesink.h: Add stream_lock.
21036         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
21037         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
21038         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
21039         (gst_xvimagesink_expose): Check for xcontext before trying to link.
21040
21041 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
21042
21043         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
21044           Don't send "Hey! You gave me a NULL pointer you naughty person" as
21045           error message when we can't open the DVD device (when dvdnav_open()
21046           fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
21047           the above). Send something more useful instead (fixes #167117).
21048
21049 2005-02-11  Julien MOUTTE  <julien@moutte.net>
21050
21051         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
21052         (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
21053         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
21054         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
21055         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
21056         (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
21057         methods from chain and negotiation and vice versa (Fixes #166142).
21058         Fix a possible bug of images in the buffer pool being discarded because
21059         we are looking at the wrong geometry.
21060         * sys/xvimage/xvimagesink.h: Add stream_lock.
21061
21062 2005-02-11  David Schleef  <ds@schleef.org>
21063
21064         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
21065         unsigned int. (fixes #167128)
21066
21067 2005-02-11  David Schleef  <ds@schleef.org>
21068
21069         * gst/librfb/Makefile.am: Testing stuff before committing is
21070           for wimps... and people with fast machines.  Fix stupid
21071           mistake.
21072
21073 2005-02-11  David Schleef  <ds@schleef.org>
21074
21075         * configure.ac: Pull in librfb from my CVS tree, because it is
21076           too small and annoying to be separate.  Move rfbsrc plugin
21077           to gst/.
21078         * ext/Makefile.am:
21079         * ext/librfb/Makefile.am:
21080         * ext/librfb/gstrfbsrc.c:
21081         * gst/librfb/Makefile.am:
21082         * gst/librfb/gstrfbsrc.c:
21083         * gst/librfb/rfb.c:
21084         * gst/librfb/rfb.h:
21085         * gst/librfb/rfbbuffer.c:
21086         * gst/librfb/rfbbuffer.h:
21087         * gst/librfb/rfbbytestream.c:
21088         * gst/librfb/rfbbytestream.h:
21089         * gst/librfb/rfbcontext.h:
21090         * gst/librfb/rfbdecoder.c:
21091         * gst/librfb/rfbdecoder.h:
21092         * gst/librfb/rfbutil.h:
21093
21094 2005-02-10  Tim-Philipp Müller  <tim at centricular dot net>
21095
21096         * gst/speed/Makefile.am:
21097         * gst/speed/demo-mp3.c: (main):
21098         * gst/speed/filter.func:
21099         * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
21100         (speed_class_init), (speed_init), (speed_chain_int16),
21101         (speed_chain_float32), (speed_chain), (speed_set_property),
21102         (speed_get_property), (speed_change_state):
21103         * gst/speed/gstspeed.h:
21104           Fix speed element and make it chain-based (fixes #156467),
21105           and make it handle more than one channel.
21106
21107 2005-02-10  Jan Schmidt  <thaytan@mad.scientist.com>
21108
21109         * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
21110         (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
21111         (gst_dtsdec_chain), (gst_dtsdec_change_state):
21112         * ext/dts/gstdtsdec.h:
21113           Don't clobber the stack constructing the channels array.
21114           Make the element chain-based. DTS tracks can now be played.
21115           
21116 2005-02-09  Tim-Philipp Müller  <tim at centricular dot net>
21117
21118         * gst-libs/gst/audio/multichannel.h:
21119         * gst-libs/gst/gconf/gconf.h:
21120         * gst-libs/gst/idct/idct.h:
21121         * gst-libs/gst/media-info/media-info-priv.h:
21122         * gst-libs/gst/play/play.h:
21123         * gst-libs/gst/resample/private.h:
21124         * gst-libs/gst/resample/resample.h:
21125         * gst-libs/gst/riff/riff-ids.h:
21126         * gst-libs/gst/video/video.h:
21127         * gst-libs/gst/video/videosink.h:
21128           Add G_BEGIN_DECLS and G_END_DECLS around headers where
21129           missing, so that they work when included from C++ code.
21130
21131 2005-02-09  David Schleef  <ds@schleef.org>
21132
21133         * testsuite/gst-lint: Check for non-statically scoped
21134           parent_class variables.  This won't be a problem once
21135           plugins are loaded with RTLD_LOCAL.
21136
21137 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21138
21139         * ext/mplex/gstmplexibitstream.cc:
21140           gcc madness.
21141
21142 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21143
21144         * ext/ogg/gstogmparse.c:
21145         * gst/debug/gstnavigationtest.c:
21146           Die, thou faulty symbol pollutors (non-static parent_class).
21147
21148 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21149
21150         * ext/mplex/gstmplexibitstream.cc:
21151           Fix event handling (#165525).
21152
21153 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21154
21155         * ext/mikmod/gstmikmod.c:
21156         * gst/modplug/gstmodplug.cc:
21157           Add missing endianness to template (fixes #165509).
21158
21159 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21160
21161         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
21162           Fix wrong order of reading of optional bytes (#165290).
21163
21164 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21165
21166         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
21167           Implement FILLER event awareness.
21168
21169 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21170
21171         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
21172           Fix track calculations (#166208).
21173
21174 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
21175
21176         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21177
21178         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
21179         * ext/libpng/gstpngenc.c:
21180           Fix byte-order, use proper fixed caps. Fixes #164197.
21181
21182 2005-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
21183
21184         * configure.ac:
21185           Add dvdlpcmdec 
21186
21187         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
21188         (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
21189           Don't push buffers if the src pad isn't negotiated yet.
21190           
21191         * gst/audioconvert/gstaudioconvert.c:
21192         (gst_audio_convert_buffer_to_default_format),
21193         (gst_audio_convert_buffer_from_default_format):
21194           Add support for 24-bit width.
21195
21196         * gst/dvdlpcmdec/.cvsignore:
21197         * gst/dvdlpcmdec/Makefile.am:
21198         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
21199         (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
21200         (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
21201         (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
21202         (plugin_init):
21203         * gst/dvdlpcmdec/gstdvdlpcmdec.h:
21204           New decoder for rearranging DVD LPCM into our audio/x-raw-int
21205           format. Needs support for the channels maps if someone can find 
21206           a DVD LPCM track with > 2 channels.
21207
21208         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
21209         (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
21210         (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
21211         * gst/mpegstream/gstdvddemux.h:
21212         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
21213         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
21214         (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
21215         * gst/mpegstream/gstmpegdemux.h:
21216         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
21217         (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
21218         (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
21219         (gst_mpeg_parse_handle_src_query),
21220         (gst_mpeg_parse_handle_src_event):
21221           Use audio/x-dvd-lpcm for LPCM output.
21222           Add DTS output.
21223
21224 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
21225
21226         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21227
21228         * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
21229         (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
21230           Add BGRA handling (#165736).
21231
21232 2005-02-08  Francis Labonte  <francis_labonte@hotmail.com>
21233
21234         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21235
21236         * gst/law/alaw-decode.c: (alawdec_link):
21237         * gst/law/alaw-encode.c: (alawenc_link):
21238         * gst/law/mulaw-decode.c: (mulawdec_link):
21239         * gst/law/mulaw-encode.c: (mulawenc_link):
21240           Fix caps memleaks (#166600).
21241
21242 2005-02-08  Tim-Philipp Müller  <tim at centricular dot net>
21243
21244         * ext/tarkin/mem.h:
21245         * ext/tarkin/wavelet.h:
21246         * ext/tarkin/yuv.h:
21247         * gst/ffmpegcolorspace/avcodec.h:
21248           Include "_stdint.h" instead of <stdint.h>. Fixes build on
21249           systems that don't have stdint.h, like Solaris9 (fixes #166631).
21250
21251 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21252
21253         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
21254         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
21255         (gst_xvimagesink_change_state):
21256           Clear window on PAUSED->READY instead of READY->PAUSED. Stop
21257           Xv video (and thereby regenerate Xv colourkey) in clear() so
21258           that PLAY -> READY -> PLAY works (fixes #162504).
21259
21260 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21261
21262         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
21263           Switch to list instead of range, since MJPEG-devices really just
21264           support decimations, not any size.
21265
21266 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
21267         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
21268         (gst_mpeg2dec_reset), (free_all_buffers),
21269         (gst_mpeg2dec_alloc_buffer), (handle_sequence):
21270         * ext/mpeg2dec/gstmpeg2dec.h:
21271           The libmpeg2 user-allocated buffer management is awkward, 
21272           to say the least. Hopefully this fixes things.
21273
21274 2005-02-04  Andy Wingo  <wingo@pobox.com>
21275
21276         * gst/audioconvert/bufferframesconvert.c
21277         (buffer_frames_convert_fixate): New function, fixates to 256
21278         frames per buffer by default. (Much better than 1.)
21279         (buffer_frames_convert_init): Set the fixate function for both src
21280         and sink pad.
21281         (buffer_frames_convert_link): After success setting nonfixed caps,
21282         get the negotiated caps so we can know how many buffer-frames it
21283         will be. No idea how this worked at all before.
21284
21285 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
21286
21287         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
21288         (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
21289         (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
21290         (handle_sequence), (handle_picture):
21291         * ext/mpeg2dec/gstmpeg2dec.h:
21292           Rearrange buffer tracking and refcounting and refactor
21293           a little for readability. 
21294
21295 2005-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
21296         * sys/v4l/gstv4l.c: (plugin_init):
21297         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
21298         (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
21299         (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
21300         (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
21301         * sys/v4l/gstv4ljpegsrc.h:
21302         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
21303         * sys/v4l/v4l_calls.h:
21304         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
21305         (gst_v4lsrc_get_fps):
21306         * sys/v4l/v4lsrc_calls.h:
21307           Add new v4ljpegsrc for handling the ov51x hacky "I'll give
21308           you jpeg inside rgb frames" driver.
21309           Don't error in the v4lsrc link function, just return 
21310           REFUSED.
21311
21312 2005-02-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21313
21314         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
21315         (gst_qcamsrc_open):
21316           Use GST_ELEMENT_ERROR, not g_warning, if open failed.
21317
21318 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21319
21320         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
21321           Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
21322
21323 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21324
21325         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
21326           Reset negotiated state on PAUSED->READY.
21327
21328 2005-02-02  David Schleef  <ds@schleef.org>
21329
21330         * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
21331         whereever possible.  (Fixes #165997)
21332         * examples/capsfilter/capsfilter1.c: (main):
21333         * examples/dynparams/filter.c: (create_ui):
21334         * examples/seeking/cdparanoia.c: (get_track_info), (main):
21335         * examples/seeking/chained.c: (main):
21336         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
21337         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
21338         (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
21339         (make_mpeg_pipeline), (make_mpegnt_pipeline):
21340         * examples/seeking/spider_seek.c: (make_spider_pipeline):
21341         * examples/switch/switcher.c: (main):
21342         * ext/dv/demo-play.c: (main):
21343         * ext/faad/gstfaad.c: (gst_faad_change_state):
21344         * ext/mad/gstmad.c: (gst_mad_chain):
21345         * ext/smoothwave/demo-osssrc.c: (main):
21346         * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
21347         (gst_gconf_render_bin_from_description),
21348         (gst_gconf_get_default_audio_sink),
21349         (gst_gconf_get_default_video_sink),
21350         (gst_gconf_get_default_audio_src),
21351         (gst_gconf_get_default_video_src),
21352         (gst_gconf_get_default_visualization_element):
21353         * gst/level/demo.c: (main):
21354         * gst/level/plot.c: (main):
21355         * gst/playback/gstplaybin.c: (gen_video_element),
21356         (gen_audio_element):
21357         * gst/playback/test.c: (gen_video_element), (gen_audio_element):
21358         * gst/playondemand/demo-mp3.c: (setup_pipeline):
21359         * gst/sine/demo-dparams.c: (main):
21360         * gst/spectrum/demo-osssrc.c: (main):
21361         * gst/speed/demo-mp3.c: (main):
21362         * gst/volume/demo.c: (main):
21363         * testsuite/embed/embed.c: (main):
21364
21365 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
21366
21367         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
21368         (gst_tcpclientsink_finalize):
21369         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
21370         (gst_tcpclientsrc_finalize):
21371         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
21372         (gst_tcpserversink_init), (gst_tcpserversink_finalize):
21373         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
21374         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
21375           Don't leak the hostname when shutting down.
21376           In tcpserversrc, take a copy of the default hostname.
21377
21378 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21379
21380         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
21381           Set caps to systemstream=TRUE.
21382
21383 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21384
21385         * testsuite/Makefile.am:
21386           Fix more OSX buildbots.
21387
21388 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
21389
21390         * ext/mpeg2dec/gstmpeg2dec.c:
21391           Don't send things to NULL PAD_PEERs
21392
21393         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
21394           Copy-on-write the incoming buffer.
21395
21396         * gst/mpegstream/gstdvddemux.h:
21397         * gst/mpegstream/gstmpegclock.h:
21398         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
21399         (normal_seek), (gst_mpeg_demux_handle_src_event):
21400         * gst/mpegstream/gstmpegdemux.h:
21401         * gst/mpegstream/gstmpegpacketize.h:
21402         * gst/mpegstream/gstmpegparse.c:
21403         (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
21404         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
21405         (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
21406         (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
21407         (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
21408         * gst/mpegstream/gstmpegparse.h:
21409         * gst/mpegstream/gstrfc2250enc.h:
21410           Various changes to the way time is computed that make seeking and
21411           total time estimation much better here.
21412           Use G_BEGIN/END_DECLS instead of __cplusplus
21413
21414         * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
21415           Use gst_buffer_stamp instead of only copying the TIMESTAMP
21416
21417 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21418
21419         * gst/subparse/gstsubparse.c:
21420           Fix OSX buildbot.
21421
21422 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
21423
21424         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
21425         (theora_enc_chain), (theora_enc_change_state):
21426         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
21427         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
21428         (gst_vorbisenc_change_state):
21429         * ext/vorbis/vorbisenc.h:
21430           Set granulepos and timestamp correctly for streams not
21431           starting at 0, taking into account the initial delay.
21432
21433 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
21434
21435         * gst/mpegstream/gstdvddemux.c:
21436           Add audio/x-dts to audio pad template caps
21437
21438 2005-01-30  David Schleef  <ds@schleef.org>
21439
21440         * ext/polyp/polypsink.c: (gst_polypsink_base_init),
21441         (create_context), (gst_polypsink_link): Fix silly endianness
21442         bug.  Add some debugging.  Remove float from caps; it doesn't
21443         work.  Attempt to get remote audio working.
21444
21445 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21446
21447         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
21448           Add 3IV2 fourcc.
21449
21450 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21451
21452         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
21453         (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
21454         (gst_avi_demux_stream_data):
21455         * gst/avi/gstavidemux.h:
21456           Invert DIB images. Fixes #132341.
21457
21458 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21459
21460         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21461         (gst_ffmpegcsp_chain):
21462           D'oh, reference the palette data, not the palette structure.
21463           Fixes color distortion in #132341.
21464
21465 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21466
21467         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
21468           PAR can be non-fixed when not provided as argument (#162626).
21469
21470 2005-01-29  David Moore  <dcm@acm.org>
21471
21472         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21473
21474         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
21475         (gst_qtdemux_loop_header):
21476           Re-apply patch from #142272 that allows non-seekable sources,
21477           re-proposed by Daniel Drake <dsd@gentoo.org>.
21478
21479 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21480
21481         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
21482           Use the src template for creating the src pad (#162330).
21483
21484 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21485
21486         * configure.ac:
21487         * ext/musepack/Makefile.am:
21488         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
21489         (gst_musepackdec_init), (gst_musepackdec_dispose),
21490         (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
21491         (gst_musepack_stream_init), (gst_musepackdec_loop),
21492         (gst_musepackdec_change_state):
21493         * ext/musepack/gstmusepackdec.cpp:
21494         * ext/musepack/gstmusepackdec.h:
21495         * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
21496         (gst_musepack_reader_read), (gst_musepack_reader_seek),
21497         (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
21498         (gst_musepack_reader_canseek), (gst_musepack_init_reader):
21499         * ext/musepack/gstmusepackreader.cpp:
21500         * ext/musepack/gstmusepackreader.h:
21501           Update to 1.1 API (#165446).
21502
21503 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21504
21505         * ext/Makefile.am:
21506           Unbreak buildbot.
21507
21508 2005-01-28  Andy Wingo  <wingo@pobox.com>
21509
21510         * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
21511         to reflect a different dubious internet source. Add a reference
21512         and some commentary.
21513
21514 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21515
21516         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
21517         (gst_stream_selector_get_caps), (gst_stream_selector_chain):
21518         * gst/playback/gststreamselector.h:
21519           Be more selective when we're redoing caps negotiation from
21520           within the chain function on a stream change.
21521
21522 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21523
21524         * configure.ac:
21525         * ext/Makefile.am:
21526         * ext/amrnb/Makefile.am:
21527         * ext/amrnb/amrnb.c: (plugin_init):
21528         * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
21529         (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
21530         (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
21531         (gst_amrnbdec_state_change):
21532         * ext/amrnb/amrnbdec.h:
21533         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
21534         (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
21535         (gst_amrnbparse_init), (gst_amrnbparse_formats),
21536         (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
21537         (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
21538         (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
21539         * ext/amrnb/amrnbparse.h:
21540           Add support for AMR-NB (mobile phone audio format; #155163, #163286).
21541         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
21542           Add AMR-NB/-WB raw formats.
21543         * ext/alsa/gstalsa.c: (gst_alsa_link):
21544           Keep valid time when changing format.
21545         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
21546         (qtdemux_parse_trak):
21547           Add some more format-specific options (#140141, #143555, #155163).
21548
21549 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21550
21551         * gst/matroska/matroska-demux.c:
21552         (gst_matroska_demux_parse_blockgroup):
21553           Fix logic error in timing of subtitle stream synchronization.
21554         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
21555           Add skip-chunk, which is found in kodak-camera streams.
21556
21557 2005-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
21558
21559         * po/LINGUAS:
21560         * po/vi.po:
21561           Adding Vietnamese translation (submitted by Clytie Siddall)
21562
21563 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21564
21565         * gst/playback/gstdecodebin.c: (try_to_link_1):
21566           Use realpad for signal.
21567
21568 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21569
21570         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
21571           Fix category so decodebin picks it up.
21572
21573 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21574
21575         * ext/mad/Makefile.am:
21576         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
21577         (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
21578         (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
21579         (found_type), (gst_id3demux_bin_change_state):
21580         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
21581         (gst_id3_tag_init), (gst_id3_tag_handle_event),
21582         (gst_id3_tag_src_link), (gst_id3_tag_chain),
21583         (gst_id3_tag_change_state), (plugin_init):
21584         * ext/mad/gstmad.h:
21585           Add id3demuxbin (which is a simple bin consisting of id3demux
21586           and typefind), take over rank from id3demux, remove typefind
21587           code from id3demux. Makes all broken mp3s that I know of work,
21588           and thereby fixes #152688.
21589
21590 2005-01-27  Edward Hervey  <bilboed@bilboed.com>
21591
21592         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21593
21594         * ext/mad/gstmad.c: (gst_mad_src_event):
21595         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
21596           Allow seeks on audio pad, make mad forward those (#164826).
21597         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
21598           Set duration (#165335).
21599
21600 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21601
21602         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
21603         (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
21604         (gst_asf_demux_process_ext_content_desc),
21605         (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
21606         (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
21607         * gst/asfdemux/gstasfdemux.h:
21608           Improve metadata display, e.g. if the metadata comes before the
21609           streams are loaded (which is perfectly valid).
21610
21611 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21612
21613         * tools/gst-launch-ext-m.m:
21614           Fix AVI/ASF pipelines (#165340).
21615
21616 2005-01-26  Amaury Jacquot  <sxpert@esitcom.org>
21617         * ext/cairo/gsttextoverlay.c: include  string.h and strings.h to fix
21618         build failure on amd64
21619
21620 2005-01-26  Tim-Philipp Müller  <tim at centricular dot net>
21621
21622         * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
21623         (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
21624           Check environment variables GST_ID3V2_TAG_ENCODING,
21625           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
21626           list of character encodings to force interpretation of non-unicode
21627           strings stored in an ID3v2 tag to a particular encoding. If none
21628           is specified, try to use current locale's encoding, then fall back
21629           to ISO-8859-1 (which will always succeed). (Resolves #149274)
21630         * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
21631         (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
21632           Check environment variables GST_ID3V1_TAG_ENCODING,
21633           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
21634           list of character encodings to use in case a string encountered
21635           in an ID3v1 tag is not valid UTF-8 already. If no encoding is
21636           specified, try to use the current locale's encoding, then fall
21637           back to ISO-8859-1 (which will always succeed).
21638
21639 2005-01-25  Benjamin Otte  <otte@gnome.org>
21640
21641         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
21642           - on half framerate, compute the rate in advance so the comparisons
21643             don't compare wrong values
21644           - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
21645             behaviour
21646           - don't use mad_header_decode anymore, mad_frame_decode does that
21647             automatically
21648           - when getting rid of consumed bytes, reset the stream's skiplen
21649           (fixes #163867)
21650
21651 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
21652
21653         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
21654           Use 1/2 a second for default max_discont, as PES streams from DVB
21655           seem to have larger spacings in the SCR. 
21656           Fix a typo.
21657
21658 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21659
21660         * gst/playback/gstplaybasebin.c: (group_commit):
21661           Notify delayed stream-info availability.
21662
21663 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
21664         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
21665         (gst_a52dec_handle_event), (gst_a52dec_chain):
21666         Add some debug output. Check that a discont has a valid
21667         time associated.
21668         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
21669         (gst_alsa_sink_loop):
21670         Ignore TAG events. A little extra debug for broken timestamps.
21671         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
21672         (dvdnavsrc_change_state):
21673         Ensure we send a discont to engage the link before we send any
21674         other events.
21675         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
21676         (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
21677         (_seek_chapter), (seek_sector), (dvdreadsrc_get),
21678         (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
21679         Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
21680         dvd://title works in totem because typefinding sends a seek that ends
21681         up going back to chapter 1 regardless.
21682         * ext/mpeg2dec/gstmpeg2dec.c:
21683         * ext/mpeg2dec/gstmpeg2dec.h:
21684         Output correct timestamps and handle disconts.
21685         * ext/ogg/gstoggdemux.c: (get_relative):
21686         Small guard against a null dereference.
21687         * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
21688         (gst_textoverlay_set_property):
21689         Free memory when done. Don't call gst_event_filler_get_duration on
21690         EOS events. Use GST_LOG and GST_WARNING instead of g_message and
21691         g_warning.
21692         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
21693         (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
21694         (gst_sw_srclink), (gst_smoothwave_chain):
21695         Draw solid lines, prettier colours.
21696         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
21697         Add a default palette that'll work for some movies.
21698         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
21699         (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
21700         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
21701         * gst/mpegstream/gstdvddemux.h:
21702         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
21703         (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
21704         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
21705         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
21706         * gst/mpegstream/gstmpegparse.h:
21707         Use PTM/NAV events when for timestamp adjustment when connected to 
21708         dvdnavsrc. Don't use many discont events where one suffices.
21709         * gst/playback/gstplaybasebin.c: (group_destroy),
21710         (gen_preroll_element), (gst_play_base_bin_add_element):
21711         * gst/playback/gstplaybasebin.h:
21712         Make sure we remove subtitles from the same bin we put them in.
21713         * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
21714         (gst_subparse_buffer_format_autodetect),
21715         (gst_subparse_change_state):
21716         Fix some memleaks and invalid accesses.
21717         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
21718         (oggskel_type_find), (cmml_type_find), (plugin_init):
21719         Some typefind functions for Annodex v3.0 files
21720         * gst/wavparse/gstwavparse.h:
21721         GstRiffReadClass is the correct parent class.
21722
21723 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21724
21725         * gst-libs/gst/riff/riff-media.c:
21726         (gst_riff_create_video_caps_with_data):
21727           Add extradata to huffyuv (fixes #165013).
21728         * gst-libs/gst/riff/riff-read.c:
21729         (gst_riff_read_strf_vids_with_data):
21730           Fix extradata extraction if it is in the chunk size.
21731
21732 2005-01-25  Edward Hervey  <bilboed@bilboed.com>
21733
21734         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21735
21736         * gst/effectv/gstquark.c: (gst_quarktv_class_init),
21737         (gst_quarktv_change_state), (gst_quarktv_dispose):
21738           Memory free'ing location fix (#164708).
21739
21740 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21741
21742         * gst/playback/gstplaybasebin.c: (group_commit),
21743         (gen_preroll_element), (probe_triggered), (gen_source_element),
21744         (setup_source), (gst_play_base_bin_change_state),
21745         (gst_play_base_bin_add_element):
21746           Don't block for streams.
21747         * gst/playback/gststreaminfo.c: (stream_info_change_state),
21748         (gst_stream_info_set_mute):
21749           Use gst_pad_set_active_recursive.
21750
21751 2005-01-25  Andy Wingo  <wingo@pobox.com>
21752
21753         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
21754         for #ifndef HAVE_XVIDEO.
21755
21756 2005-01-24  Jeffrey C. Ollie
21757
21758         reviewed by: Maciej Katafiasz  <mathrick@freedesktop.org>
21759
21760         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
21761         * ext/gsm/gstgsmdec.h:
21762         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
21763         * ext/gsm/gstgsmenc.h:
21764         Fix rate to 8kHz as per spec, removes obscure errors when no rate
21765         was given by property. Add proper buffer timestamps and offsets.
21766
21767 2005-01-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21768
21769         * gst-libs/gst/riff/riff-media.c:
21770         (gst_riff_create_audio_caps_with_data):
21771           Audio can be <8000Hz.
21772
21773 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21774
21775         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
21776           Explicit state change to workaround refcount bugs.
21777
21778 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21779
21780         * gst/avi/gstavimux.c: (gst_avimux_write_tag),
21781         (gst_avimux_riff_get_avi_header):
21782           Fix...
21783
21784 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21785
21786         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
21787         (gst_riff_read_element_data):
21788         * gst-libs/gst/riff/riff-read.h:
21789           Add _peek version (req'ed in CDXA).
21790         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
21791         (gst_cdxaparse_loop):
21792           Fix parsing in playbin.
21793         * gst/playback/gstdecodebin.c: (close_pad_link):
21794           Ignore current_ pads, they cause major annoyance.
21795
21796 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21797
21798         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
21799           Safety guard.
21800
21801 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21802
21803         * gst/avi/gstavimux.c: (gst_avimux_write_tag):
21804           Fix padding...
21805
21806 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21807
21808         * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
21809           Allow for 0-sized buffers. Fixes length query problems in
21810           starwars.mkv from the testsuite.
21811
21812 2005-01-19  Tim-Philipp Müller  <tim at centricular dot net>
21813
21814         * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
21815         (gst_video_box_i420), (gst_video_box_chain):
21816           Fix row strides for I420 (fixes #163159)
21817           
21818 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21819
21820         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
21821           MPEG2 has a useful rate property, so we can actually use that.
21822           For MPEG-1, continue using the bytes/time properties.
21823
21824 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21825
21826         * gst-libs/gst/riff/riff-media.c:
21827         (gst_riff_create_video_caps_with_data),
21828         (gst_riff_create_video_template_caps):
21829           Add intel-h263.
21830
21831 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21832
21833         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
21834           Fail if caps negotiation fails. Should fix #162184, and should
21835           definately be in there regardless of it fixing the actual bug.
21836         * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
21837         (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
21838         (gst_avimux_riff_get_avix_header),
21839         (gst_avimux_riff_get_video_header),
21840         (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
21841         (gst_avimux_start_file), (gst_avimux_handle_event),
21842         (gst_avimux_change_state):
21843         * gst/avi/gstavimux.h:
21844           Refactor structure writing to use GST_WRITE_UINT macros, add
21845           metadata writing support.
21846
21847 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21848
21849         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
21850           Elements may already be destroyed when this function is called.
21851
21852 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21853
21854         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
21855         (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
21856           More memory leak fixes (#149162).
21857
21858 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21859
21860         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
21861         (gst_qtdemux_add_stream):
21862           Fix two memleaks.
21863
21864 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21865
21866         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
21867           Argh...
21868
21869 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21870
21871         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
21872           Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
21873           when fixating to six channels in Totem.
21874
21875 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
21876
21877         * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
21878           Fix compile warnings on Solaris 10 buildbot
21879
21880 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
21881
21882         * ext/dvdread/dvdreadsrc.c: (_read):
21883           Don't read beyond the last cell in a chapter (fixes 
21884           invalid memory access)
21885
21886 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
21887
21888         * ext/dvdread/stream_labels.c:
21889         (dvdreadsrc_get_audio_stream_labels):
21890           Use NULL for an empty GList instead of g_list_alloc(); fix 
21891           memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead 
21892           of GString (easier to bulk free later)
21893
21894 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
21895
21896         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21897
21898         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
21899         (gst_ffmpeg_pixfmt_to_caps):
21900           Fix BGRA32 caps (#164209).
21901
21902 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
21903
21904         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21905
21906         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
21907         (gst_ffmpeg_caps_to_pixfmt):
21908           alpha_mask can be RGBA/ABGR. Fixes #164265.
21909
21910 2005-01-17  Francis Labonte  <francis_labonte@hotmail.com>
21911
21912         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21913
21914         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
21915         (gst_mpeg2dec_alloc_buffer):
21916         * ext/mpeg2dec/gstmpeg2dec.h:
21917           Crop if decoding size is not the actual image size (#163676).
21918
21919 2005-01-17  Steve Baker  <steve@stevebaker.org>
21920
21921         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21922
21923         * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
21924         (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
21925           Add libsndfile typefind functions (#163309).
21926
21927 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21928
21929         * tools/gst-launch-ext-m.m:
21930           Add .aac, fix .m1v/.m2v (#163891).
21931
21932 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21933
21934         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
21935           Sanity check, don't wait endlessly since the clock might not
21936           actually run at this point (which is a deadlock). Fixes #164069.
21937
21938 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21939
21940         * gst/playback/gstplaybasebin.c: (probe_triggered):
21941           Of course, only pause if group is done...
21942
21943 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21944
21945         * gst/playback/gstplaybasebin.c: (probe_triggered):
21946           Thread safety.
21947
21948 2005-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
21949
21950         * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
21951           Don't return state change success when the parent
21952           failed.
21953
21954 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21955
21956         * gst/avi/gstavimux.c: (gst_avimux_handle_event):
21957           Free events (fix memleak in #162905).
21958
21959 2005-01-15  Gergely Nagy  <algernon@bonehunter.rulez.org>
21960
21961         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21962
21963         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
21964         (gst_ffmpeg_caps_to_pixfmt):
21965           Fix for depth = 15. Fixes #161675.
21966
21967 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21968
21969         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
21970           Set FPS correctly, even for webcams and the like.
21971         * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
21972           Don error on setting while capturing.
21973
21974 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
21975
21976         * ext/dv/gstdvdec.c:
21977         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
21978         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
21979           I'm a bad boy. using /1001. to force C to do float division
21980           and not integer division (as it did in my last commit)
21981           Thanks to David I. Lehn for pointing this mistake.
21982
21983 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21984
21985         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
21986           Revert Johan's 1.35->1.36 since it breaks compat.
21987
21988 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
21989
21990         * ext/dv/gstdvdec.c:
21991         * ext/libfame/gstlibfame.c:
21992         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
21993         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
21994           replace framerate aproximations by their real value
21995           (24000/1001, 30000/1001, 60000/1001)
21996           Finish fixing bug #164049
21997
21998 2005-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
21999
22000         * ext/ogg/gstoggmux.c:
22001           eos/bos debugging
22002         * gst/tcp/gstmultifdsink.c:
22003         * gst/tcp/gstmultifdsink.h:
22004         * gst/tcp/gsttcp.c:
22005         * gst/tcp/gsttcp.h:
22006         * gst/tcp/gsttcpclientsink.c:
22007         * gst/tcp/gsttcpclientsrc.c:
22008         * gst/tcp/gsttcpserversink.c:
22009         * gst/tcp/gsttcpserversrc.c:
22010           improve reusability of elements after state changes and errors
22011           make multifdsink throw away streamheaders when receiving new ones
22012
22013 2005-01-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22014
22015         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
22016           Fix for if items are already in list...
22017
22018 2005-01-12  Benjamin Otte  <otte@gnome.org>
22019
22020         * gst/adder/gstadder.c: (gst_adder_loop):
22021           fix adder a bit so it doesn't screw up with events as much anymore
22022
22023 2005-01-12  Jan Schmidt  <thaytan@mad.scientist.com>
22024
22025         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
22026         (pixbufscale_scale), (gst_pixbufscale_chain):
22027         * ext/gdk_pixbuf/pixbufscale.h:
22028           Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
22029           to ensure rowstrides are calculated the same way as 
22030           ffmpegcolorspace
22031           Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
22032           that we pick up duration and offset also.
22033
22034 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22035
22036         * gst/avi/gstavimux.c: (gst_avimux_class_init),
22037         (gst_avimux_pad_unlink), (gst_avimux_release_pad):
22038           Reusability fixes.
22039
22040 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22041
22042         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
22043         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
22044         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
22045         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
22046           Update flags when requested.
22047
22048 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22049
22050         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
22051           Fix dmix.
22052
22053 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22054
22055         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
22056         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
22057         (probe_triggered), (new_decoded_pad), (gen_source_element),
22058         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
22059         * gst/playback/gstplaybasebin.h:
22060         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
22061         (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
22062         (gst_play_bin_change_state):
22063           Implement group-switch signal for use in apps to clear metadata
22064           cache, clean up subtitle, add suburi property instead of # hack,
22065           some error-out fixes.
22066
22067 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22068
22069         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
22070           Debug.
22071         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
22072           If we got a state change in the _get handler, don't return success.
22073
22074 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
22075
22076         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
22077         (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
22078           Make jpegdec quiet on MJPEG decoding
22079         * gst/asfdemux/README:
22080           Fix mimetypes for MJPEG and H263
22081
22082 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22083
22084         * ext/theora/theoradec.c: (theora_dec_chain):
22085           Fix broken code generation by gcc by swapping arguments.
22086         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
22087           Fix \n in debug.
22088
22089 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
22090
22091         * TODO:
22092           delete this file, it is by far outdated
22093         * ext/alsa/gstalsa.1: remove
22094         * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
22095         (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
22096         (gst_alsa_get_caps):
22097           Add HW probing for supported sample rates. Fixes #161704
22098
22099 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22100
22101         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
22102           Don't crash, biatch! :).
22103
22104 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22105
22106         * ext/musepack/gstmusepackreader.cpp:
22107         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
22108           Some work on tags - still doesn't work in playbin...
22109         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
22110           Handle events...
22111
22112 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22113
22114         * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
22115           Also shove tags on kid pads.
22116
22117 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22118
22119         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
22120           Don't bail on unknown events.
22121         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
22122           Don't crash on events before negotiation.
22123         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
22124           Send tags on pads, too.
22125         * gst/playback/gststreamselector.c:
22126         (gst_stream_selector_request_new_pad):
22127           Forward events on first pad if no input was selected yet.
22128
22129 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22130
22131         * gst/playback/gstplaybasebin.c: (setup_substreams):
22132           Don't disable streamtype if the stream doesn't exist, since
22133           then playing a video after audio will disable both and nothing
22134           will happen. Fixes the testsuite.
22135
22136 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22137
22138         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
22139         (gst_v4l_xoverlay_set_xwindow_id):
22140         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
22141         (gst_v4l2_xoverlay_set_xwindow_id):
22142           Add debug categories, fix overlay disabling.
22143
22144 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
22145
22146         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
22147         * ext/alsa/gstalsa.h:
22148           Add HW probing for period_count/size and buffer_size MIX/MAX
22149           Adjust default/user defined value if out of bounds
22150           Should fix bug #162024
22151
22152 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22153
22154         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
22155           Fix warning (#161191).
22156
22157 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
22158
22159         * ext/dvdread/stream_labels.c:
22160         (dvdreadsrc_get_audio_stream_labels):
22161           Fix warning (init the good variable in switch default)
22162
22163 2005-01-09  Koop Mast  <kwm@rainbow-runner.nl>
22164
22165         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22166
22167         * gst/tta/gstttaparse.c: (gst_tta_src_event):
22168           Fix gcc-2.95 compile (#163485).
22169
22170 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22171
22172         * configure.ac:
22173         * ext/flac/gstflacenc.c: (gst_flacenc_init),
22174         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
22175         (gst_flacenc_tell_callback), (gst_flacenc_chain),
22176         (gst_flacenc_change_state):
22177         * ext/flac/gstflacenc.h:
22178           Update for API change in flac-1.1.1. Update requirement in
22179           configure.ac. Fixes #162974.
22180
22181 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22182
22183         * gst/playback/gstplaybasebin.c: (group_destroy):
22184           Remove hack to get rid of assert and get rid of unlinked
22185           signals properly.
22186
22187 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22188
22189         * gst/playback/gstplaybasebin.c: (setup_source):
22190           Set source to NULL so that resources are free'ed. Fixes issues
22191           with playback of CDDA and similar device-accessing things.
22192
22193 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22194
22195         * testsuite/embed/Makefile.am:
22196           test->noinst, fix make test in buildbot.
22197
22198 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
22199
22200         * ext/dvdread/stream_labels.c: new file
22201         * ext/dvdread/stream_labels.h: new file
22202         * ext/dvdread/Makefile.am:
22203         * ext/dvdread/dvdreadsrc.c: (_seek_title):
22204           Extract audio stream label from DVD IFO files.
22205           It only dump them on the console for now, still have to
22206           make playbin aware of them.
22207
22208 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22209
22210         * gst/playback/gstplaybasebin.c: (setup_source):
22211           Fix hanging subs.
22212
22213 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22214
22215         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
22216         (gen_preroll_element), (remove_groups), (setup_subtitle),
22217         (gen_source_element), (setup_source):
22218         * gst/playback/gstplaybasebin.h:
22219           Multiple .sub files is just a stupid idea... Fix some threading
22220           mistakes. Interestingly, external .sub files cause playbin to
22221           hang, I don't know why... Parsing fixes contributed by Fran??ois
22222           Kooman <fkooman@tuxed.net>.
22223
22224 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22225
22226         * testsuite/embed/Makefile.am:
22227           Fix buildbot.
22228
22229 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
22230
22231         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22232
22233         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
22234         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
22235         (gst_pngenc_set_property):
22236         * ext/libpng/gstpngenc.h:
22237           Add compression level property (#163323).
22238
22239 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22240
22241         * configure.ac:
22242         * examples/capsfilter/capsfilter1.c: (main):
22243         * examples/seeking/spider_seek.c: (make_spider_pipeline):
22244         * ext/dvdread/Makefile.am:
22245         * ext/dvdread/demo-play:
22246         * ext/dvdread/demo-play.c:
22247         * gconf/gstreamer.schemas.in:
22248         * gst-libs/gst/gconf/gconf.c:
22249         * sys/v4l/TODO:
22250         * testsuite/Makefile.am:
22251         * testsuite/embed/Makefile.am:
22252         * testsuite/embed/embed.c: (cb_expose), (main):
22253           Remove all references to xvideosink, fix examples (#140845).
22254         * gst/playback/gstplaybasebin.c: (group_destroy):
22255           Apparently, disposal does not unlink - so do explicitely.
22256         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
22257           Add debug.
22258
22259 2005-01-09  Maciej Katafiasz <mathrick@freedesktop.org>
22260
22261         * README: fix PKG_CONFIG_PATH instructions, what was there
22262         previously was breaking default search path, not nice. 
22263         Fixes #163358
22264
22265 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22266
22267         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
22268         (gst_audioscale_chain):
22269           %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
22270           when resampling - how the ^@$^!@^! is this possible?!?
22271
22272 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22273
22274         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
22275           Reset variables on READY.
22276         * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
22277         (gst_matroska_mux_loop):
22278           Require data before writing header.
22279
22280 2005-01-09  Francis Labonte  <francis_labonte@hotmail.com>
22281
22282         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22283
22284         * ext/mad/gstmad.c: (gst_mad_chain):
22285           Don't call mad_stream_sync() directly after recovering sync.
22286           Fixes #151661.
22287
22288 2005-01-09  Martin Eikermann  <meiker@upb.de>
22289
22290         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22291
22292         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
22293         (snapshot_handler), (gst_snapshot_sinkconnect),
22294         (gst_snapshot_chain):
22295           Allocate resources when required, fix recursive signal emission
22296           and fix caps. Fixes #161667.
22297
22298 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
22299
22300         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22301
22302         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
22303         (gst_pngdec_chain):
22304           Handle only 8-bppc (bits-per-pixel-component) images, better
22305           error handling and correct strides. Fixes #163177.
22306         * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
22307         (gst_pngenc_chain):
22308           Better error handling. Fixes #163348.
22309
22310 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22311
22312         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
22313         (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
22314         (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
22315         (dvdnavsrc_uri_handler_init):
22316           Add DVD-nav URI (dvdnav://) for Totem testing purposes.
22317         * gst/playback/gstplaybasebin.c: (gen_source_element):
22318           Add MMS to streaming URIs.
22319
22320 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22321
22322         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
22323         * sys/xvimage/xvimagesink.c:
22324         (gst_xvimagesink_navigation_send_event):
22325           Check for pad availability before sending event.
22326
22327 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22328
22329         * gst-plugins.spec.in:
22330           Add subparse.
22331
22332 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22333
22334         * configure.ac:
22335           Since we use functions from CVS, up requirement.
22336
22337 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22338
22339         * gst/playback/Makefile.am:
22340         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
22341         (group_destroy), (group_commit), (group_is_muted),
22342         (gen_preroll_element), (add_stream), (unknown_type),
22343         (probe_triggered), (preroll_unlinked), (mute_stream),
22344         (silence_stream), (new_decoded_pad), (setup_substreams),
22345         (setup_source), (get_active_source), (mute_group_type),
22346         (muted_group_change_state), (set_active_source),
22347         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
22348         (play_base_eos), (gst_play_base_bin_change_state):
22349         * gst/playback/gstplaybasebin.h:
22350         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
22351         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
22352         (gst_stream_info_dispose), (stream_info_mute_pad),
22353         (stream_info_change_state), (gst_stream_info_set_mute):
22354         * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
22355         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
22356         (gst_stream_selector_init), (gst_stream_selector_dispose),
22357         (gst_stream_selector_get_linked_pad),
22358         (gst_stream_selector_get_caps), (gst_stream_selector_link),
22359         (gst_stream_selector_get_linked_pads),
22360         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
22361         * gst/playback/gststreamselector.h:
22362           Adding stream selection support plus required properties for
22363           applications to use this. Fully fixes #100931.
22364
22365 2005-01-08  Benjamin Otte  <otte@gnome.org>
22366
22367         * gst/games/gstpuzzle.c: (nav_event_handler):
22368           - handle nav events differently: forward every event no matter if it
22369             was handled or not.
22370           - translate events
22371           You can now cheat by using navigationtest ! puzzle and moving the
22372           mouse close to the edge of a tile. ;)
22373
22374 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22375
22376         * configure.ac:
22377         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
22378         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
22379         (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
22380         (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
22381         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
22382         (gst_ogm_parse_plugin_init):
22383         * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
22384         (gst_textoverlay_link), (gst_textoverlay_getcaps),
22385         (gst_textoverlay_event), (gst_textoverlay_video_chain),
22386         (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
22387         * ext/pango/gsttextoverlay.h:
22388         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
22389         (gst_matroska_demux_handle_seek_event),
22390         (gst_matroska_demux_sync_streams),
22391         (gst_matroska_demux_parse_blockgroup),
22392         (gst_matroska_demux_subtitle_caps),
22393         (gst_matroska_demux_plugin_init):
22394         * gst/matroska/matroska-ids.h:
22395         * gst/playback/gstdecodebin.c: (close_pad_link):
22396         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
22397         (gen_preroll_element), (remove_groups), (add_stream),
22398         (new_decoded_pad), (setup_subtitles), (gen_source_element),
22399         (setup_source):
22400         * gst/playback/gstplaybasebin.h:
22401         * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
22402         * gst/subparse/Makefile.am:
22403         * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
22404         (gst_subparse_base_init), (gst_subparse_class_init),
22405         (gst_subparse_init), (gst_subparse_formats),
22406         (gst_subparse_eventmask), (gst_subparse_event),
22407         (gst_subparse_handle_event), (convert_encoding), (get_next_line),
22408         (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
22409         (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
22410         (parse_mpsub_deinit), (parse_mpsub_init),
22411         (gst_subparse_buffer_format_autodetect),
22412         (gst_subparse_format_autodetect), (gst_subparse_loop),
22413         (gst_subparse_change_state), (gst_subparse_type_find),
22414         (plugin_init):
22415         * gst/subparse/gstsubparse.h:
22416         * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
22417         (plugin_init):
22418           Add subtitle support, .sub parser (supports SRT and MPsub),
22419           OGM text support, Matroska UTF-8 text support, deadlock fixes
22420           all over the place, subtitle awareness in decodebin/playbin
22421           and some fixes to textoverlay to handle subtitles in a stream
22422           correctly. Fixes #100931.
22423
22424 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22425
22426         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
22427           Check for pad availability before doing a query on it.
22428
22429 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
22430
22431         * ext/dv/gstdvdec.c:
22432           really fix bpp24/32 dvdec caps (classic rgba indeed)
22433         * gst/asfdemux/gstasfdemux.c:
22434         (gst_asf_demux_process_ext_content_desc):
22435           don't send text tags if they are empty (bis repetita)
22436
22437 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
22438
22439         * ext/dv/gstdvdec.c:
22440          remove unneeded comment from dvdec
22441           (related to DV 4CC codes in AVI files)
22442           moved them in gstreamer/docs/random/mimetypes
22443         * gst/asfdemux/gstasfdemux.c:
22444         (gst_asf_demux_process_ext_content_desc):
22445          don't send text tags if they are empty
22446          fix mem leak on error path
22447         * gst/ffmpegcolorspace/avcodec.h:
22448         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
22449         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
22450         (gst_ffmpegcsp_avpicture_fill):
22451         * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
22452         * gst/ffmpegcolorspace/imgconvert_template.h:
22453          adds BGR32 and BGRA32 to ffmpegcolorspace
22454           (still bad colors, fixing it on next commit)
22455           helps with dvdec outputing BGR32
22456
22457 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
22458
22459         * ext/dv/gstdvdec.c:
22460          Fix audio caps i just broke (missing ',')
22461         * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
22462         (gst_matroska_mux_reset):
22463          Fix typo + add FIXME about old "x-gst-metadata" crap
22464
22465 2005-01-07  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
22466
22467         * ext/dv/demo-play.c: (main):
22468          xvideosink -> xvimagesink
22469         * ext/dv/gstdvdec.c:
22470          change rgb 32/32 caps to 24/32 (no alpha)
22471          change nb of channels to be a list (2 or 4, not 2)
22472          change sample rate to be a list (32, 44.1, 48 kHz) not a range
22473         * gst/asfdemux/gstasfdemux.c:
22474         (gst_asf_demux_process_ext_content_desc):
22475          Add 'date/year' to extracted metadata list
22476
22477 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22478
22479         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
22480           The return value of fixate_to does not imply that the requested
22481           value was set, so don't assume.
22482
22483 2005-01-07  Gergely Nagy  <algernon@bonehunter.rulez.org>
22484
22485         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22486
22487         * ext/libpng/gstpngdec.c:
22488         * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
22489         (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
22490         * ext/libpng/gstpngenc.h:
22491           Alpha support (encoder; #163161), mime fixage.
22492
22493 2005-01-07  Sebastien Cote  <sc5@hermes.usherb.ca>
22494
22495         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22496
22497         * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
22498         (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
22499         (gst_faac_set_property), (gst_faac_get_property):
22500         * ext/faac/gstfaac.h:
22501           Allow for ADTS output (#153434).
22502
22503 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22504
22505         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
22506           Fix against template (#150576).
22507
22508 2005-01-06  Benjamin Otte  <otte@gnome.org>
22509
22510         * gst/games/gstpuzzle.c: (draw_puzzle):
22511           don't draw a puzzle if either width or height of tiles would be 0.
22512
22513 2005-01-06  Benjamin Otte  <otte@gnome.org>
22514
22515         * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
22516         (gst_puzzle_class_init), (gst_puzzle_finalize):
22517           no memleaks, please
22518         (gst_puzzle_create), (gst_puzzle_init),
22519         (gst_puzzle_set_property), (gst_puzzle_setup):
22520           change initialization code around so we don't reshuffle on resize
22521         (draw_puzzle):
22522           fix another stupid typo
22523
22524 2005-01-06  Benjamin Otte  <otte@gnome.org>
22525
22526         * gst/games/gstvideoimage.c: (copy_hline_YUY2):
22527           fix stupid typo that borked copying on YUY2
22528
22529 2005-01-06  Benjamin Otte  <otte@gnome.org>
22530
22531         * gst/games/gstpuzzle.c: (draw_puzzle):
22532           fix edges when image sizes aren't multiples of tile sizes
22533
22534 2005-01-06  Benjamin Otte  <otte@gnome.org>
22535
22536         * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
22537           make RGB endianness work correctly
22538         (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
22539           refactor and fix race with initial shuffling
22540         (nav_event_handler):
22541           allow using the mouse to puzzle
22542         (draw_puzzle):
22543           insist on tiles having width and height as multiples of 4 to get
22544           clean YUV image handling
22545         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
22546         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
22547           s/DEBUG/LOG/ for common messages
22548         (gst_xvimagesink_navigation_send_event):
22549           fix mouse event translation to not include screen PAR
22550         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
22551           fix mouse event translation to actually work
22552
22553 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
22554
22555         * gst/asfdemux/gstasfdemux.c:
22556         (gst_asf_demux_process_ext_content_desc):
22557          Extract TrackNumber metadata + clean up code
22558         * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
22559          Hope this is the good fix (var used unitialised)
22560
22561 2005-01-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22562
22563         * ext/faad/gstfaad.c: (gst_faad_chain):
22564           Only increment timestamp if it's valid. Fixes raw AAC streams.
22565
22566 2005-01-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22567
22568         * configure.ac:
22569         * gst/games/Makefile.am:
22570         * gst/games/gstpuzzle.c:
22571           add a puzzle game with...
22572         * gst/games/gstvideoimage.c:
22573         * gst/games/gstvideoimage.h:
22574           ... full colorspace support (that includes YUV9 and RGB16)) stolen
22575           from videotestsrc and made into something that would be a nice
22576           library for a lot of other plugins.
22577
22578 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
22579
22580         * configure.ac:
22581          don't compile faad plugin if a RC of 2.0 is found
22582          Fixes #155346 (and FC1 buildbot)
22583         * gst/asfdemux/gstasfdemux.c:
22584         (gst_asf_demux_process_ext_content_desc):
22585          try to make Solaris compiler happier
22586
22587 2005-01-06  Paul Jack  <pjack@sfaf.org>
22588
22589         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22590
22591         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
22592           Fix segfault (#161667).
22593
22594 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22595
22596         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
22597           Fix framerate reporting.
22598
22599 2005-01-05  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
22600
22601         * gst-libs/gst/riff/riff-ids.h:
22602         * gst/wavenc/riff.h:
22603          Add AMR (VBR and CBR) ids to riff.h audio codec list
22604         * gst/asfdemux/gstasfdemux.c:
22605         (gst_asf_demux_process_ext_content_desc),
22606         (gst_asf_demux_process_object):
22607           Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
22608
22609 2005-01-05  Martin Eikermann  <meiker@upb.de>
22610
22611         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22612
22613         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
22614         (gst_dvd_demux_handle_discont):
22615         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
22616         (gst_mpeg_demux_handle_discont):
22617           Recreate pads on new-media (#160730).
22618         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
22619           Send discont even if manager changes timestamps (#161929).
22620
22621 2005-01-05  Sebastien Cote  <sc5@hermes.usherb.ca>
22622
22623         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22624
22625         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
22626           Fix invalid memory access (#159211).
22627
22628 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22629
22630         * examples/gstplay/player.c: (main):
22631           Don't iterate.
22632         * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
22633           Add visualizations.
22634         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
22635         (gst_a52dec_handle_frame):
22636           Set duration.
22637         * ext/dvdnav/gst-dvd:
22638           Add audioconvert. Fixes #161325.
22639         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
22640           Explicitely case to gint64. Possible valgrind error.
22641         * gst-libs/gst/play/play.c: (caps_set), (setup_size),
22642         (gst_play_tick_callback), (gst_play_change_state),
22643         (gst_play_dispose), (gst_play_init), (gst_play_class_init),
22644         (gst_play_set_location), (gst_play_get_location),
22645         (gst_play_seek_to_time), (gst_play_set_data_src),
22646         (gst_play_set_video_sink), (gst_play_set_audio_sink),
22647         (gst_play_set_visualization), (gst_play_connect_visualization),
22648         (gst_play_get_framerate), (gst_play_get_all_by_interface),
22649         (gst_play_new):
22650           Use playbin. Fixes #139749 and #147744.
22651         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
22652           Add genre tag.
22653         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
22654         (audioscale_get_type), (gst_audioscale_base_init),
22655         (gst_audioscale_class_init), (gst_audioscale_expand_caps),
22656         (gst_audioscale_getcaps), (gst_audioscale_fixate),
22657         (gst_audioscale_link), (gst_audioscale_get_buffer),
22658         (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
22659         (gst_audioscale_init), (gst_audioscale_dispose),
22660         (gst_audioscale_chain), (gst_audioscale_set_property),
22661         (gst_audioscale_get_property), (plugin_init):
22662           Indent properly.
22663         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
22664           Fix LPCM.
22665         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
22666         (qtdemux_tag_add_str), (qtdemux_tag_add_num),
22667         (qtdemux_tag_add_gnre), (qtdemux_video_caps):
22668           Add more metadata (fixes #162656).
22669
22670 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
22671
22672         * configure.ac:
22673           back to cvs
22674
22675 === release 0.8.7 ===
22676
22677 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
22678
22679         * NEWS:
22680         * RELEASE:
22681         * configure.ac:
22682           releasing 0.8.7, "Hyperspace"
22683
22684 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
22685
22686         patch by: Tim-Philipp Müller  <t.i.m@zen.co.uk>
22687
22688         * gst/playback/gstplaybasebin.c:
22689          Fix for #162924 - free caps after use, not before
22690
22691 2005-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
22692
22693         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
22694
22695         * gst/playback/gstplaybasebin.c:
22696         * gst/wavparse/gstwavparse.c:
22697           Fix for #154773 - fixes playback of small .wav files
22698
22699 2005-01-03  Thomas Vander Stichele  <thomas at apestaart dot org>
22700
22701         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
22702
22703         * gst/audioscale/gstaudioscale.c:
22704           Fix for #162819 - make audioscale reusable
22705           Fixes playback of more than one file with playbin/totem
22706
22707 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
22708
22709         * gst/ffmpegcolorspace/avcodec.h:
22710         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
22711         * gst/ffmpegcolorspace/imgconvert.c:
22712           clean up the mess that made me cry and avoid needless duplication
22713
22714 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
22715
22716         * gst/ffmpegcolorspace/imgconvert.c:
22717           give some indication of why we're segfaulting
22718
22719 2004-12-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22720
22721         * configure.ac:
22722           Fix indentation, fix v4l2 plugin detection.
22723         * ext/Makefile.am:
22724           Fix libmms location (Maciej, use diff -u!).
22725         * ext/alsa/gstalsa.c: (gst_alsa_init):
22726           Initialize caps cache to NULL.
22727         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
22728           Only change state on audiosink if it exists.
22729
22730 2004-12-28  Maciej Katafiasz  <mathrick@mathrick.org>
22731
22732         * gst/matroska/matroska-demux.c:
22733         * gst/matroska/matroska-ids.h:
22734         * gst/matroska/matroska-demux.h:
22735         Fix Vorbis streams failing to decode in some files, where cluster_time
22736         isn't 0, because then it doesn't send codec_priv before actual data.
22737         Remove time-based test and replace it with marker set on beginning of
22738         new stream
22739
22740 2004-12-28  David Schleef  <ds@schleef.org>
22741
22742         Merge patch from Ronald fixing problems with streaming
22743         text.
22744         * ext/cairo/gstcairo.c: (plugin_init):
22745         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
22746         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
22747         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
22748         (gst_textoverlay_font_init), (gst_textoverlay_init),
22749         (gst_textoverlay_set_property):
22750         * ext/cairo/gsttextoverlay.h:
22751
22752 2004-12-27  David Schleef  <ds@schleef.org>
22753
22754         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
22755         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
22756         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
22757         (gst_textoverlay_font_init), (gst_textoverlay_init),
22758         (gst_textoverlay_set_property): Improvements to actually
22759         render text as white on black outline on video, including
22760         font selection and horizontal/vertical alignment.  (Ronald's
22761         christmas present)
22762         * ext/cairo/gsttextoverlay.h:
22763
22764 2004-12-26  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
22765
22766         * ext/ogg/gstogg.c:
22767         * ext/ogg/gstogmparse.c:
22768           fix ogm[audio/video]parse plugin registration
22769           (riff won't load if bytestream is already loaded)
22770
22771 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
22772
22773         * gst/audioconvert/gstchannelmix.c:
22774           fix for GLIB < 2.4
22775
22776 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
22777
22778         * Makefile.am:
22779         * configure.ac:
22780           disable docs again until it actually passes make distcheck.
22781
22782 2004-12-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22783
22784         * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
22785         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
22786         (plugin_init):
22787           Add 3GP (variables name Q3GP because they can't start with a
22788           number). Add samr audio fourcc (used in .3gp files), decoder
22789           is work in progress. Also do a GST_WARNING instead of ERROR
22790           in case of unknown nodes, to decrease output.
22791
22792 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
22793
22794         * Makefile.am:
22795           really fix dist
22796
22797 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
22798
22799         * configure.ac:
22800         * ext/speex/gstspeexdec.h:
22801         * ext/speex/gstspeexenc.h:
22802           Fixes #158382.  Make speex plugin compatible with both 1.0 and 1.1.
22803           Fix detection code in configure.ac
22804
22805 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22806
22807         * gst/matroska/matroska-demux.c:
22808         (gst_matroska_demux_parse_blockgroup):
22809           Save position, so that queries give proper return values. Don't
22810           know how this could ever have worked before...
22811
22812 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
22813
22814         * configure.ac:
22815           Put additional LAME check inside the conditional.  Fixes #152339
22816
22817 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22818
22819         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
22820         (gst_avi_demux_stream_scan):
22821           Add some more debug. Fix logic error when setting movi offset
22822           while reading index.
22823
22824 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22825
22826         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
22827         (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
22828         (gst_avi_demux_process_next_entry):
22829           Add some debugging. Better detection of broken indexes and the
22830           accompanying index recovery. No infinite loops on state changes
22831           when we're still in our loopfunction.
22832
22833 2004-12-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22834
22835         * configure.ac:
22836           Fix up.
22837
22838 2004-12-22  Archana Shah  <archana.shah@wipro.com>
22839
22840         Reviewed by:  Ronald S. Bultje <rbultje@ronald.bitfreak.net>
22841
22842         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
22843           Normalizing the value before setting
22844         (gst_sunaudiomixer_get_volume):
22845           Normalizing the value after getting. Fixes bug# 161980
22846
22847 2004-12-22  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
22848
22849         * Makefile.am: Make sure docs gets disted
22850         * docs/Makefile.am: Make sure all needed files get disted
22851         * gst-plugins.spec.in: latest updates
22852
22853 2004-12-22  Wim Taymans  <wim@fluendo.com>
22854
22855         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
22856         Revert patch 1.38 as clock distribution over schedulers does
22857         not work correcly in the core yet.
22858
22859 2004-12-21  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
22860
22861         * sys/oss/README: remove this file, which predates my birth
22862           (and which content is by far outdated)
22863
22864 2004-12-20  Stefan Kost  <ensonic@users.sf.net>
22865
22866         * Makefile.am:
22867         * configure.ac:
22868         * docs/Makefile.am:
22869         * docs/libs/Makefile.am:
22870         * docs/libs/gst-plugins-libs-docs.sgml:
22871         * docs/libs/gst-plugins-libs-sections.txt:
22872         * docs/libs/tmpl/gstgconf.sgml:
22873         * docs/upload.mak:
22874         * docs/version.entities.in:
22875           Added boilerplate gtk-doc files for plugin-libs documentation.
22876
22877 2004-12-19  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
22878
22879         * gst/auparse/gstauparse.c: fix int and float audio caps
22880
22881 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22882
22883         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
22884         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
22885           g_assert() can be a macro, don't use #ifdef inside it.
22886
22887 2004-12-19  Edward Hervey  <bilboed@bilboed.com>
22888
22889         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22890
22891         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
22892         (gst_videorate_init), (gst_videorate_chain),
22893         (gst_videorate_change_state):
22894           Event handling (fixes #159986).
22895
22896 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22897
22898         * gst-libs/gst/riff/riff-media.c:
22899         (gst_riff_create_video_caps_with_data):
22900           Add BLZ0 (Blizzard's version of DivX) fourcc.
22901
22902 2004-12-18  David Schleef  <ds@schleef.org>
22903
22904         * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
22905         portability fix.
22906
22907 2004-12-18  David Schleef  <ds@schleef.org>
22908
22909         * gst/tta/ttadec.h: Disable some header code that isn't used
22910         and clearly isn't portable.
22911
22912 2004-12-18  David Schleef  <ds@schleef.org>
22913
22914         * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
22915         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
22916         (avcodec_get_pix_fmt), (avpicture_layout),
22917         (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
22918         (get_convert_table_entry), (img_convert), (img_get_alpha_info):
22919         Fix code to not use GCC extensions (and c99 extensions that
22920         Forte does not like.)
22921
22922 2004-12-19  Tim-Philipp Müller  <t.i.m@zen.co.uk>
22923
22924         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22925
22926         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
22927         (gst_deinterlace_chain):
22928           Rowstride fixes. Fixes #161039.
22929         * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
22930         (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
22931         (gst_video_crop_getcaps), (gst_video_crop_link),
22932         (gst_video_crop_i420), (gst_video_crop_chain),
22933         (gst_video_crop_change_state):
22934           Rework of negotiation. Actually works now. Fixes #158650.
22935
22936 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22937
22938         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
22939           That was very stupid.
22940
22941 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22942
22943         * gst/matroska/matroska-demux.c:
22944         (gst_matroska_demux_parse_blockgroup):
22945           Fix possible crasher.
22946
22947 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22948
22949         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
22950         (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
22951           Lace sizes can be zero.
22952
22953 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22954
22955         * ext/musepack/gstmusepackdec.cpp:
22956           Fetch error return values. Fixes #161624.
22957         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
22958           Really EOS.
22959
22960 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22961
22962         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
22963           Work for truncated (unfinished download etc.) files. Fixes #160514.
22964
22965 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22966
22967         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
22968           Fix for integer overflow. Makes #156001 not crash. Probably masks
22969           the real bug.
22970
22971 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22972
22973         * gst/ac3parse/gstac3parse.c: (plugin_init):
22974           Parsers never have ranks. Fixes #159651.
22975
22976 2004-12-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22977
22978         * gst/playback/gstdecodebin.c: (compare_ranks):
22979           make sure the facotries are ordered the same every time even if they
22980           have the same rank by using the name
22981         * gst/playback/gstdecodebin.c: (find_compatibles):
22982           make sure we don't add factories to the list twice
22983
22984 2004-12-16  David Schleef  <ds@schleef.org>
22985
22986         * configure.ac: look for musepack headers as musepack/*.h
22987         (fixes #159847)
22988         * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
22989         * ext/musepack/gstmusepackreader.h: same
22990
22991 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22992
22993         * gst-libs/gst/riff/riff-read.c:
22994         (gst_riff_read_strf_auds_with_data):
22995           Read extradata correctly (fixes #155879).
22996
22997 2004-12-16  David Schleef  <ds@schleef.org>
22998
22999         * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
23000         audio.  does _not_ attempt or allow conversion unless channels
23001         is 1 or 2.
23002
23003 2004-12-16  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
23004
23005         * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
23006
23007 2004-12-16  David Schleef  <ds@schleef.org>
23008
23009         * gst/audioscale/gstaudioscale.c: the resample library only
23010         handles 1 or 2 channels.  Change caps to compensate.
23011
23012 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23013
23014         * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
23015         (gst_matroska_demux_audio_caps):
23016           Some MPEG-AAC hacks, because else it doesn't work...
23017
23018 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23019
23020         * gst-libs/gst/riff/riff-media.c:
23021         (gst_riff_create_video_caps_with_data),
23022         (gst_riff_create_video_template_caps):
23023           Add h264.
23024
23025 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23026
23027         * gst-libs/gst/audio/Makefile.am:
23028           Try to fix buildbot.
23029
23030 2004-12-16  Thomas Vander Stichele  <thomas at apestaart dot org>
23031
23032         * gst/tcp/gstmultifdsink.c:
23033           Clean up and uniformize debugging.
23034
23035 2004-12-16  Edward Hervey  <bilboed@bilboed.com>
23036
23037         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23038
23039         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
23040         (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
23041         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
23042         (gst_mpeg_demux_change_state):
23043           Reset on ready. Fixes 160276.
23044
23045 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
23046
23047         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23048
23049         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23050         (gst_ffmpegcsp_pad_link):
23051           Fix memleak (#154815).
23052
23053 2004-12-16  James Bowes  <bowes@cs.dal.ca>
23054
23055         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23056
23057         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
23058         (gst_musicbrainz_init), (gst_musicbrainz_chain),
23059         (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
23060         * ext/musicbrainz/gsttrm.h:
23061           Add support for using a proxy server when getting a trm id from
23062           the MusicBrainz database (#149613).
23063
23064 2004-12-16  Christophe Fergeau  <teuf@gnome.org>
23065
23066         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23067
23068         * gst/playback/gstdecodebin.c: (new_pad), (close_link):
23069         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
23070           Fix memleaks (#157233).
23071
23072 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
23073
23074         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23075
23076         * gst-libs/gst/resample/resample.c: (gst_resample_close):
23077         * gst-libs/gst/resample/resample.h:
23078         * gst/audioscale/gstaudioscale.c:
23079           Fix memleak (#159215).
23080
23081 2004-12-16  Toni Willberg  <toniw@iki.fi>
23082
23083         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23084
23085         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
23086         * sys/oss/oss_probe.c: (main):
23087           Check for mono/stereo support (similar to samplerate probing),
23088           fixes #159433. Also add missing copyright header to oss_probe.c.
23089
23090 2004-12-15  David Schleef  <ds@schleef.org>
23091
23092         * configure.ac: add audioresample and cairo plugins.  Remove
23093         HAVE_MMX stuff, because it's not used.
23094         * ext/Makefile.am: same
23095         * ext/audioresample/Makefile.am: You are not ready for an
23096         audio resampling element based on audioresample.
23097         * ext/audioresample/gstaudioresample.c:
23098         * ext/audioresample/gstaudioresample.h:
23099         * ext/cairo/Makefile.am: You are not ready for overlay elements
23100         based on cairo.  Don't look too closely, these elements kinda
23101         suck right now.
23102         * ext/cairo/gstcairo.c: new
23103         * ext/cairo/gsttextoverlay.c: new
23104         * ext/cairo/gsttextoverlay.h: new
23105         * ext/cairo/gsttimeoverlay.c: new
23106         * ext/cairo/gsttimeoverlay.h: new
23107         * gst-libs/gst/media-info/media-info-priv.h: fix compile
23108         problem with compilers that don't support variadic macros.
23109
23110 2004-12-15  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
23111
23112         Reviewed by:  David Schleef  <ds@schleef.org>
23113
23114         * sys/sunaudio/gstsunaudio.c: (plugin_init):  Apply patch from
23115         Bala, registering sunaudiosrc (oops!), and cleaning up code a
23116         bit.  Also ran indent-gst.
23117         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
23118         (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
23119         (gst_sunaudiosrc_setparams):
23120
23121 2004-12-14  David Schleef  <ds@schleef.org>
23122
23123         * gst/festival/gstfestival.c: (gst_festival_chain): Set the
23124         output rate to 16000.  Should fix #160235.
23125
23126 2004-12-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
23127
23128         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
23129         Add typefinding for mpeg2 pes streams
23130
23131 2004-12-13  David Schleef  <ds@schleef.org>
23132
23133         * configure.ac:  Applied patch from bug #143659, making default
23134         sources and sinks OS-dependent (for Solaris), and added code
23135         for OS/X.
23136         * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
23137
23138 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
23139
23140         * gst-libs/gst/riff/riff-media.c:
23141           forgot to add h2.64 to avidemux template caps
23142
23143 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
23144
23145         * gst/wavenc/riff.h:
23146         * gst-libs/gst/riff/riff-media.c:
23147         * gst-libs/gst/riff/riff-ids.h:
23148         * gst/avi/gstavimux.c
23149         add 4CC code for VideoSoft h264 in AVI (VSSH)
23150           fixes bug #160655
23151         remove s323 from riff, it's quicktime specific :(
23152
23153 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
23154
23155         * gst/asfdemux/README
23156         * gst/wavenc/riff.h
23157         * gst-libs/gst/riff/riff-ids.h
23158         * gst-libs/gst/riff/riff-media.c
23159         * gst/qtdemux/qtdemux.c:
23160           add new 4CC codes for h263 related codecs
23161           fixes partially bug #155163
23162
23163 2004-12-12  Christian Fredrik Kalager Schaller  <christian at fluendo dot com>
23164
23165         * configure.ac: Update polyaudio requirement to 0.7
23166         * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
23167
23168 2004-12-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
23169
23170         * gst/interleave/deinterleave.c:
23171         fix my name's spelling! :)
23172
23173 2004-12-11  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
23174
23175         * AUTHORS ChangeLog
23176         * gst/auparse/gstauparse.c
23177         * gst/interleave/deinterleave.c
23178         * gst/law/:
23179                 alaw-decode.c alaw-encode.c
23180                 mulaw-decode.c mulaw-encode.c
23181         * gst/oneton/gstoneton.c
23182         * sys/osxaudio/:
23183                 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
23184         * sys/osxvideo/:
23185                 cocoawindow.h cocoawindow.m
23186                 osxvideosink.h osxvideosink.m
23187
23188         put the same mail address for Zaheer Abbas Merali everywhere
23189
23190 2004-12-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23191
23192         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
23193           Align by packetsize, and assert that we a packet available before
23194           playing. The first makes webstreams work (they often include
23195           trailing padding data in a packet), the second allows pausing a
23196           ASF stream in totem without getting demux errors afterwards.
23197
23198 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23199
23200         * ext/ogg/gstoggdemux.c: (get_relative):
23201           Check for non-NULL before accessing member (end-of-chain).
23202
23203 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23204
23205         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
23206         (cdparanoia_set_property), (cdparanoia_get_property):
23207         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
23208         (dvdnavsrc_set_property), (dvdnavsrc_get_property):
23209         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
23210         (dvdreadsrc_init), (dvdreadsrc_set_property),
23211         (dvdreadsrc_get_property):
23212         * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
23213         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
23214           Synchronize property names where not yet the case. Devices are
23215           now device=X, other versions are deprecated (but still exist).
23216           Also use g_free() unconditionally.
23217         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
23218         (setup_source), (gst_play_base_bin_get_property):
23219           Expose source.
23220
23221 2004-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
23222
23223         * configure.ac: move GCONF macro outside conditional for the am
23224           conditional. Fixes #160439
23225
23226 2004-12-08  David Schleef  <ds@schleef.org>
23227
23228         * tools/gst-visualise-m.m: Switch to elements that currently
23229         exist.
23230
23231 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23232
23233         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
23234           We love wrong commas.
23235
23236 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23237
23238         * gst/matroska/matroska-demux.c:
23239         (gst_matroska_demux_handle_src_query):
23240           Don't set DEFAULT, unsupported - makes length display incorrectly
23241           in some cases.
23242
23243 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
23244
23245         * gst/monoscope/README: remove blurb about files being GPL
23246         * gst/monoscope/gstmonoscope.c: Change license field to LGPL
23247         * gst/monoscope/monoscope.c: Change license to BSD with explanation
23248           monoscope is now effectively LGPL licensed
23249
23250 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
23251
23252         * gst/monoscope/README: Update information to be more correct
23253         * gst/monoscope/convolve.c: Relicense to LGPL
23254         * gst/monoscope/convolve.h: Relicense to LGPL
23255
23256 2004-12-06  Arwed v. Merkatz <v.merkatz@gmx.net>
23257
23258         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
23259           set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
23260         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
23261           set default_duration for mpeg1 audio
23262
23263 2004-12-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23264
23265         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
23266         * ext/alsa/gstalsa.h:
23267           refactor big chunks of the core caps negotiation code to make it
23268           a lot faster, because people claim it's really slow
23269           (actually, just cache the getcaps when the device is opened)
23270
23271 2004-12-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23272
23273         * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
23274         (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
23275         (gst_a52dec_handle_frame), (gst_a52dec_chain),
23276         (gst_a52dec_change_state), (plugin_init):
23277         * ext/a52dec/gsta52dec.h:
23278           Do something useful with timestamps. Make chain-based (since
23279           there's really no reason to be loopbased).
23280         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
23281           Update current_byte/frame correctly.
23282
23283 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23284
23285         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
23286         (gst_ape_demux_stream_init):
23287           Forward tags, too.
23288
23289 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23290
23291         * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
23292           Let's make sure we're done typefinding when detecting tags.
23293
23294 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23295
23296         * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
23297         (gst_ebml_read_init), (gst_ebml_read_use_event),
23298         (gst_ebml_read_element_id), (gst_ebml_peek_id),
23299         (gst_ebml_read_seek), (gst_ebml_read_skip),
23300         (gst_ebml_read_reserve), (gst_ebml_read_buffer),
23301         (gst_ebml_read_master):
23302         * gst/matroska/ebml-read.h:
23303         * gst/matroska/matroska-demux.c:
23304         (gst_matroska_demux_parse_contents),
23305         (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
23306           Disgustingly evil hack for working around INTERRUPT events and
23307           their extremely annoying habit of being a pain in the ass. We
23308           simply peek a cluster before reading any of it.
23309
23310 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23311
23312         * ext/musepack/gstmusepackdec.cpp:
23313           There's also floating point libmusepacks.
23314
23315 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23316
23317         * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
23318         (gst_faad_chanpos_to_gst), (gst_faad_chain):
23319           Set DURATION even if source buffer didn't. Also use increasing
23320           timestamps.
23321         * gst-libs/gst/riff/riff-media.c:
23322         (gst_riff_create_audio_caps_with_data):
23323           Block_align can have larger values than 8192.
23324
23325 2004-12-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23326
23327         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
23328         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
23329         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
23330         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
23331           Fix caps.
23332
23333 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23334
23335         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
23336           Fix logic bug.
23337
23338 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23339
23340         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
23341           Yay, another one.
23342
23343 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23344
23345         * ext/esd/esdsink.c: (gst_esdsink_chain):
23346           Make error actually say something useful (fixes #156798).
23347         * gst-libs/gst/riff/riff-media.c:
23348         (gst_riff_create_video_caps_with_data),
23349         (gst_riff_create_video_template_caps):
23350           Add Intel Video 5.0 fourcc (IV50).
23351
23352 2004-12-01  Christophe Fergeau  <teuf@gnome.org>
23353
23354         * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
23355         detection on mono and stereo mp3 files.
23356
23357 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23358
23359         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
23360           Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
23361           the contained stream).
23362
23363 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23364
23365         * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
23366           Oops, remove debug.
23367
23368 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
23369
23370         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23371
23372         * gst/law/alaw-decode.c: (alawdec_getcaps):
23373         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
23374           Prevent warnings when negotiating caps (fixes #159338).
23375
23376 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23377
23378         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23379         (gst_ffmpegcsp_chain):
23380           Remove old leftover that shouldn't be there...
23381
23382 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
23383
23384         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23385
23386         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
23387           Don't forward DISCONT events (fixes #159684).
23388
23389 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23390
23391         * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
23392           Unlink manually since sometimes bin disposal (and therefore
23393           pad unlinking) is delayed, which will cause a new media file
23394           to not be able to start playing instantly.
23395
23396 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23397
23398         * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
23399           On mute of an unlinked stream, check for pad availability so
23400           we don't crash on unlinked pad.
23401
23402 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23403
23404         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
23405         (gst_avi_demux_massage_index):
23406           Fix quite humiliating bug in omitting 0-sized index chunks but
23407           forgetting to count them for timestamps.
23408
23409 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23410
23411         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
23412           Actually leave the loop if we failed to sync. Don't crash.
23413
23414 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23415
23416         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
23417         (gst_dvd_demux_process_private):
23418         * gst/mpegstream/gstdvddemux.h:
23419           Fix crash (#159759). Doesn't work, though. :-(.
23420
23421 2004-11-28  Benjamin Otte  <otte@gnome.org>
23422
23423         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
23424           more overwriting protection due to modifying channels one by one
23425           instead of all at once
23426
23427 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23428
23429         * gst/audioconvert/gstchannelmix.c:
23430         (gst_audio_convert_fill_normalize):
23431           Normalize using absolute values.
23432
23433 2004-11-28  Julien MOUTTE  <julien@moutte.net>
23434
23435         * configure.ac:
23436         * ext/Makefile.am:
23437         * ext/directfb/Makefile.am:
23438         * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
23439         (gst_directfbvideosink_get_pixel_format),
23440         (gst_directfbvideosink_get_format_from_fourcc),
23441         (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
23442         (gst_directfbvideosink_sink_link),
23443         (gst_directfbvideosink_change_state),
23444         (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
23445         (gst_directfbvideosink_buffer_alloc),
23446         (gst_directfbvideosink_interface_supported),
23447         (gst_directfbvideosink_interface_init),
23448         (gst_directfbvideosink_navigation_send_event),
23449         (gst_directfbvideosink_navigation_init),
23450         (gst_directfbvideosink_set_property),
23451         (gst_directfbvideosink_get_property),
23452         (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
23453         (gst_directfbvideosink_base_init),
23454         (gst_directfbvideosink_class_init),
23455         (gst_directfbvideosink_get_type), (plugin_init):
23456         * ext/directfb/directfbvideosink.h: Adding a first version of
23457         directfbvideosink.
23458         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
23459         more.
23460
23461 2004-11-28  Benjamin Otte  <otte@gnome.org>
23462
23463         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
23464           walk the samples backwards if out_channels > in_channels so we don't
23465           overwrite data
23466
23467 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23468
23469         * gst/audioconvert/Makefile.am:
23470         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
23471         (gst_audio_convert_link), (gst_audio_convert_change_state),
23472         (gst_audio_convert_channels):
23473         * gst/audioconvert/gstchannelmix.c:
23474         (gst_audio_convert_unset_matrix),
23475         (gst_audio_convert_fill_identical),
23476         (gst_audio_convert_fill_compatible),
23477         (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
23478         (gst_audio_convert_fill_others),
23479         (gst_audio_convert_fill_normalize),
23480         (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
23481         (gst_audio_convert_passthrough), (gst_audio_convert_mix):
23482         * gst/audioconvert/gstchannelmix.h:
23483           Implement a channel mixer.
23484
23485 2004-11-28  Martin Soto  <martinsoto@users.sourceforge.net>
23486
23487         * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
23488         * ext/alsa/gstalsa.h:
23489         * ext/alsa/gstalsa.c (gst_alsa_set_clock):
23490         Make alsasink actually honor gst_element_set_clock and use that
23491         clock instead of its internal one.
23492
23493 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
23494
23495         * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
23496         (gst_play_base_bin_change_state): nullify source and decoder when
23497         going from READY to NULL so that we don't try to do weird stuff with
23498         them when going from NULL to READY
23499         * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
23500         instead of g_object_unref
23501         (gen_video_element), (gen_audio_element): more refcounting fixes, now
23502         it should be correct
23503         (gst_play_bin_change_state): don't call remove_sinks if we are
23504         currently disposing the object
23505
23506 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23507
23508         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
23509           Don't forget bass if it's there. Else left channel is silent...
23510
23511 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23512
23513         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
23514         (gst_a52dec_change_state):
23515           Don't do sample adjusting anymore, we use float audio now.
23516         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
23517           Don't fixate to non-existing properties.
23518
23519 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23520
23521         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
23522         (gst_a52dec_change_state):
23523           Advertise that we can do surround sound.
23524
23525 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23526
23527         * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
23528           Add buffer-frames=0.
23529         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
23530         (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
23531         (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
23532         (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
23533         (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
23534         (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
23535         (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
23536         (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
23537         (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
23538         * ext/dvdread/dvdreadsrc.h:
23539           Add seeking, querying for bytes, sectors, title, angle and
23540           chapter. Handle multiple chapters. Relicense to LGPL because
23541           Billy agreed on that (thanks Billy!).
23542
23543 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
23544
23545         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
23546         call parent dispose method
23547
23548 2004-11-27  Martin Soto  <martinsoto@users.sourceforge.net>
23549
23550         * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
23551         (gst_audio_clock_get_internal_time):
23552         Fix active <-> inactive transitions: ensure time value always
23553         grows and avoid abrupt value changes.
23554
23555 2004-11-27  Arwed v. Merkatz <v.merkatz@gmx.net>
23556
23557         * configure.ac:
23558         * gst/tta/Makefile.am:
23559         * gst/tta/crc32.h:
23560         * gst/tta/filters.h:
23561         * gst/tta/gsttta.c:
23562         * gst/tta/gstttadec.c:
23563         * gst/tta/gstttadec.h:
23564         * gst/tta/gstttaparse.c:
23565         * gst/tta/gstttaparse.h:
23566         * gst/tta/ttadec.h:
23567           added TTA parser and decoder
23568
23569 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23570
23571         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
23572         (probe_triggered), (check_queue), (buffer_underrun),
23573         (buffer_running), (buffer_overrun), (gen_source_element),
23574         (setup_source):
23575         * gst/playback/gstplaybasebin.h:
23576           Implement buffering. Needs some more work.
23577
23578 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23579
23580         * ext/theora/theoradec.c: (theora_dec_chain):
23581           Fix ilog mask range overflow.
23582
23583 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23584
23585         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
23586           Don't omit the last (which in case of dmix is the only :) )
23587           channel count. Don't set channels if <= 2.
23588
23589 2004-11-26  Christophe Fergeau  <teuf@gnome.org>
23590
23591         * gst/playback/gstplaybin.c: (gen_video_element),
23592         (gen_audio_element): Removed 2 obsolete comments
23593
23594 2004-11-26  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
23595
23596         * ext/vorbis/oggvorbisenc.c
23597         * ext/vorbis/vorbisenc.c :
23598           change description fields of those plugins to differentiate them
23599           (pitivi show Encoders by description, they had the same one)
23600
23601 2004-11-25  Christophe Fergeau  <teuf@gnome.org>
23602
23603         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23604
23605         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
23606         (gst_play_bin_set_property), (gen_video_element),
23607         (gen_audio_element):
23608           Refcounting fixes for provided audio-/videosinks.
23609
23610 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23611
23612         * gst/playback/gstplaybin.c: (gen_video_element),
23613         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
23614           Don't reference all sinks, but only the video- and audiosinks.
23615           The vis. element should be disposed when we're done with it.
23616           We don't have any reason to keep it around. This fixes warnings
23617           when reusing playbin for playing multiple audio files with
23618           vis. enabled. Also release audio device on pause - idea stolen
23619           from Rhythmbox.
23620
23621 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23622
23623         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
23624         (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
23625         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
23626         * ext/alsa/gstalsaplugin.c: (plugin_init):
23627         * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
23628         (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
23629         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
23630         (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
23631         (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
23632         (gst_faad_change_state), (plugin_init):
23633         * ext/faad/gstfaad.h:
23634         * ext/vorbis/vorbis.c: (plugin_init):
23635         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
23636         * gst-libs/gst/audio/Makefile.am:
23637         * gst-libs/gst/audio/audio.c: (plugin_init):
23638         * gst-libs/gst/audio/multichannel.c:
23639         (gst_audio_check_channel_positions),
23640         (gst_audio_get_channel_positions),
23641         (gst_audio_set_channel_positions),
23642         (gst_audio_set_structure_channel_positions_list),
23643         (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
23644         (gst_audio_fixate_channel_positions):
23645         * gst-libs/gst/audio/multichannel.h:
23646         * gst-libs/gst/audio/testchannels.c: (main):
23647         * gst/audioconvert/gstaudioconvert.c:
23648         (gst_audio_convert_class_init), (gst_audio_convert_init),
23649         (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
23650         (gst_audio_convert_parse_caps), (gst_audio_convert_link),
23651         (gst_audio_convert_fixate), (gst_audio_convert_channels):
23652         * gst/audioconvert/plugin.c: (plugin_init):
23653           Surround sound support.
23654
23655 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23656
23657         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
23658           Fix position for discont if we're close as well. Nitpicking, but
23659           saves a few milliseconds of extra waiting or skipping.
23660
23661 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23662
23663         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
23664           We sometimes need parsers for playback, so add those too.
23665
23666 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23667
23668         * configure.ac:
23669         * gst/apetag/Makefile.am:
23670         * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
23671         (gst_ape_demux_base_init), (gst_ape_demux_class_init),
23672         (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
23673         (gst_ape_demux_get_src_query_types),
23674         (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
23675         (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
23676         (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
23677         (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
23678         (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
23679         (gst_ape_demux_stream_data), (gst_ape_demux_loop),
23680         (gst_ape_demux_change_state):
23681         * gst/apetag/apedemux.h:
23682         * gst/apetag/apetag.c: (plugin_init):
23683         * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
23684         (plugin_init):
23685           APE v1/2 tag reader plus typefind function.
23686
23687 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23688
23689         * configure.ac:
23690         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
23691         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
23692           Remove hacks for older core. Require newer core version
23693           accordingly.
23694
23695 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23696
23697         * gst/cdxaparse/Makefile.am:
23698         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
23699         (gst_cdxaparse_class_init), (gst_cdxaparse_init),
23700         (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
23701         * gst/cdxaparse/gstcdxaparse.h:
23702         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
23703         (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
23704         (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
23705         (gst_cdxastrip_get_src_query_types),
23706         (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
23707         (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
23708         (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
23709         (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
23710         * gst/cdxaparse/gstcdxastrip.h:
23711           SVCD/VCD header stripping separated from CDXA image parsing.
23712         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
23713         (plugin_init):
23714           Add VCD/SVCD header typefinding for VCD/SVCD.
23715         * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
23716         (gst_vcdsrc_class_init), (gst_vcdsrc_init),
23717         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
23718         (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
23719         (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
23720         (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
23721         (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
23722         (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
23723         (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
23724         (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
23725         (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
23726         * sys/vcd/vcdsrc.h:
23727           Fix up, add seeking, querying, URI interface. Works in totem now.
23728
23729 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
23730
23731         * configure.ac:
23732           back to CVS
23733
23734 === release 0.8.6 ===
23735
23736 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
23737
23738         * NEWS:
23739         * RELEASE:
23740         * configure.ac:
23741         * po/af.po:
23742         * po/az.po:
23743         * po/cs.po:
23744         * po/en_GB.po:
23745         * po/hu.po:
23746         * po/it.po:
23747         * po/nb.po:
23748         * po/nl.po:
23749         * po/or.po:
23750         * po/sq.po:
23751         * po/sr.po:
23752         * po/sv.po:
23753         * po/uk.po:
23754           releasing 0.8.6, "IOU Love"
23755
23756 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
23757
23758         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
23759
23760         * gst/playback/gstplaybasebin.c:
23761           Fix unplayable files error handling.  Fixes #158365
23762
23763 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
23764
23765         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
23766
23767         * gst/typefind/gsttypefindfunctions.c:
23768           Fix broken mp3 typefinding.  Fixes #158375
23769
23770 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
23771
23772         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
23773
23774         * ext/ogg/gstoggdemux.c:
23775           Fix sync on broken files.  Fixes #158976
23776
23777 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
23778
23779         patch by: Edward Hervey <bilboed@bilboed.com>
23780
23781         * ext/libpng/gstpngenc.c:
23782           Copy over buffer properties.  Fixes #158832
23783
23784 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
23785
23786         patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
23787
23788         * ext/dvdread/dvdreadsrc.c:
23789           Fixes invalid reads (#158462)
23790
23791 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
23792
23793         * sys/v4l/gstv4lsrc.c:
23794         * sys/v4l/gstv4lsrc.h:
23795         * sys/v4l/v4lsrc_calls.c:
23796           Probe less and cache it.  Fixes #159187.
23797
23798 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
23799
23800         * gst/videorate/gstvideorate.c:
23801           Handle all video formats. Fixes #159186.
23802
23803 2004-11-16  Jan Schmidt  <thaytan@mad.scientist.com>
23804         * gst/synaesthesia/gstsynaesthesia.c:
23805         (gst_synaesthesia_class_init), (gst_synaesthesia_init),
23806         (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
23807         (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
23808         (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
23809         (gst_synaesthesia_change_state), (plugin_init):
23810         Fix up synaesthesia to work under different samplerates/ buffer sizes.
23811         Force 320x200 output, as that's the only thing the underlying
23812         synaesthesia implementation supports. Still needs to be made
23813         re-entrant.
23814
23815 2004-11-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23816
23817         * configure.ac:
23818           Fix mpeg2enc configure check (similar to mplex check below).
23819
23820 2004-11-14  Koop Mast  <kwm@rainbow-runner.nl>
23821
23822         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23823
23824         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
23825           Fix for gcc-2.95 (fixes #158221).
23826
23827 2004-11-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23828
23829         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
23830           Re-add clock distribution hack (until new core is released).
23831           Fixes #158125.
23832
23833 2004-11-13  Arwed v. Merkatz  <v.merkatz@gmx.net>
23834         * configure.ac:
23835           fix mplex configure check segfaulting on some systems (bug #140994)
23836
23837 2004-11-13  Benjamin Otte  <otte@gnome.org>
23838
23839         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
23840           add debugging
23841         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
23842           do a wait when we enter the loop func with no data available to
23843           write instead of getting into an 100% CPU loop by just returning and
23844           being called again by the scheduler
23845
23846 2004-11-13  Jan Schmidt  <thaytan@mad.scientist.com>
23847
23848         * configure.ac:
23849         * ext/libvisual/visual.c: (gst_visual_get_type),
23850         (libvisual_log_handler), (gst_visual_getcaps),
23851         (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
23852         (plugin_init):
23853           Update libvisual to 0.1.7. Link in the debug handling to gstreamer
23854         * ext/smoothwave/Makefile.am:
23855         * ext/smoothwave/demo-osssrc.c: (main):
23856         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
23857         (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
23858         (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
23859         (plugin_init):
23860         * ext/smoothwave/gstsmoothwave.h:
23861           Make gstsmoothwave a working element in the 20th century.
23862
23863         * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
23864           Fix incorrect link function
23865
23866 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23867
23868         * gst/volume/gstvolume.c:
23869           Allow buffer-frames=0.
23870
23871 2004-11-12 Iain <iaingnome@gmail.com>
23872
23873         * configure.ac: Check for polypaudio
23874
23875         * ext/Makefile.am: Build the polyp dir
23876
23877         * ext/polyp: The polypsink sources.
23878
23879 2004-10-30 Iain <iaingnome@gmail.com>
23880
23881         * gst/interleave/interleave.c (interleave_unlink): Change the src pads
23882         caps to reflect the new number of channels.
23883
23884 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23885
23886         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
23887           Fix for negotiation order problem. This would show when the
23888           ALSA loopfuction was called before any other function. ALSA
23889           wouldn't do anything because we're not negotiated yet, leading
23890           to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
23891
23892 2004-11-11  Tim-Philipp Müller  <t.i.m@zen.co.uk>
23893
23894         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23895
23896         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
23897           No warnings (#157986).
23898
23899 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23900
23901         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
23902           Prefer apev1/2 and id3v1 (at end of file) over musepack.
23903
23904 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23905
23906         * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
23907           Signal no-more-pads (so it works in playbin).
23908
23909 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23910
23911         * ext/musepack/gstmusepackreader.cpp:
23912           Workaround for older core.
23913
23914 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23915
23916         * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
23917           Actually test for odd width/height rather than testing whether
23918           a temporary variable that was 0 before we subtracted 1 is now
23919           not equal to zero (which it always is).
23920
23921 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
23922
23923         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
23924         Fix compilation if HAVE_XVIDEO is not defined
23925
23926 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
23927
23928         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
23929         Fix compilation if HAVE_XVIDEO is not defined
23930
23931 2004-11-11  Jan Schmidt  <thaytan@mad.scientist.com>
23932
23933         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
23934         (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
23935         (gst_goom_change_state), (plugin_init):
23936         Use the bytestream adapter so goom doesn't depend on the input
23937         buffer size.
23938         Add a debug category
23939
23940 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23941
23942         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
23943           Only set hardware parameters *after* negotiation. Before
23944           negotiation, it will set ANY and that seems to cause crashes
23945           (see e.g. #151288, #153227).
23946
23947 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23948
23949         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
23950           This seems to be antique leftover. It needs to pass error
23951           checking.
23952         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
23953         (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
23954         (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
23955         (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
23956           Fix GstXOverlay implementation (#151059).
23957
23958 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23959
23960         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
23961           Don't assert (#157853).
23962
23963 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23964
23965         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
23966           Fix bytes/samples confustion.
23967         (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
23968           Fix for underrun (#144389).
23969
23970 2004-11-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23971
23972         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
23973           Disable halfway-seek for pending release (since it needs a new
23974           core release).
23975
23976 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
23977
23978         * sys/v4l/gstv4lsrc.c:
23979         * sys/v4l/gstv4lsrc.h:
23980         * sys/v4l/v4lsrc_calls.c:
23981           add autoprobe-fps property so we can separate autoprobing parts
23982
23983 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
23984
23985         * sys/v4l/gstv4lsrc.c:
23986         * sys/v4l/v4lsrc_calls.c:
23987         initialise fourcc to catch unset fourcc's, and debug
23988
23989 2004-11-09  Wim Taymans  <wim@fluendo.com>
23990
23991         * gst/playback/README:
23992         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
23993         * gst/playback/gstplaybin.c: (gst_play_bin_init),
23994         (gst_play_bin_dispose), (gst_play_bin_set_property),
23995         (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
23996         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
23997         (gst_play_bin_get_formats), (gst_play_bin_convert),
23998         (gst_play_bin_get_query_types), (gst_play_bin_query):
23999         Cleanups and some more documentation.
24000
24001 2004-11-09  Jan Schmidt  <thaytan@mad.scientist.com>
24002
24003         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
24004         (gst_cacasink_init), (gst_cacasink_chain):
24005         * ext/libcaca/gstcacasink.h:
24006         Cacasink inherits from VideoSink, so let that store the clock.
24007
24008 2004-11-09  Wim Taymans  <wim@fluendo.com>
24009
24010         * gst/playback/README:
24011         * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
24012         (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
24013         (probe_triggered), (preroll_unlinked), (new_decoded_pad),
24014         (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
24015         * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
24016         (setup_sinks):
24017         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
24018         (gst_stream_info_is_mute), (gst_stream_info_set_property):
24019         * gst/playback/gststreaminfo.h:
24020         Updated README.
24021         Only switch groups if all streams have muted (EOSed).
24022         Send Tags in sync with the stream playback instead of in
24023         the playback/preroll phase.
24024         Some cleanups, free the fakesrc elements.
24025
24026 2004-11-09  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24027
24028         * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
24029           buffer-frames property was missing
24030         * ext/arts/gst_arts.c:
24031           rate missing from sinkcaps
24032         * ext/audiofile/gstafparse.c:
24033         * ext/audiofile/gstafsink.c:
24034         * ext/audiofile/gstafsrc.c:
24035         * ext/swfdec/gstswfdec.c:
24036           int audio doesn't know buffer-frames
24037         * ext/cdparanoia/gstcdparanoia.c:
24038           int audio doesn't know chunksize either
24039         * ext/nas/nassink.c:
24040           it's endianness, not endianess
24041         * gst-libs/gst/audio/audio.h:
24042           make float standard pad template caps really describe float
24043         * gst/law/mulaw.c: (linear_factory):
24044           signed only, please
24045         * gst/mpegstream/gstdvddemux.c:
24046           widths of 20 are not valid
24047
24048 2004-11-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24049
24050         Submitted by: Luca Ferretti <elle.uca@infinito.it>
24051
24052         * po/LINGUAS:
24053         * po/it.po:
24054           Add Italian
24055
24056 2004-11-08  Wim Taymans  <wim@fluendo.com>
24057
24058         * gst/playback/README:
24059         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
24060         * gst/playback/gstplaybasebin.c: (probe_triggered),
24061         (gst_play_base_bin_change_state):
24062         Updated README, added more comments for fixmes etc..
24063
24064 2004-11-08  Wim Taymans  <wim@fluendo.com>
24065
24066         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
24067         We can remove this hack now.
24068
24069 2004-11-08  Wim Taymans  <wim@fluendo.com>
24070
24071         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
24072         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
24073         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
24074         Only mix AYUV for maximum quality.
24075
24076 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24077
24078         * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
24079         (gst_ogg_demux_push), (gst_ogg_pad_push):
24080           Let's act as if we're synchronized now! :).
24081         * ext/theora/theoradec.c: (theora_dec_chain):
24082           Add some debug.
24083
24084 2004-11-08  Wim Taymans  <wim@fluendo.com>
24085
24086         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
24087         (gst_alpha_set_property), (gst_alpha_sink_link),
24088         (gst_alpha_set_ayuv), (gst_alpha_set_i420),
24089         (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
24090         (gst_alpha_init_params), (gst_alpha_chain):
24091         Implement alpha functions for AYUV too, this increases
24092         accuracy quite a bit.
24093
24094 2004-11-08  Wim Taymans  <wim@fluendo.com>
24095
24096         * gst/ffmpegcolorspace/avcodec.h:
24097         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
24098         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
24099         (gst_ffmpegcsp_avpicture_fill):
24100         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24101         (gst_ffmpegcsp_caps_remove_format_info):
24102         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
24103         (shrink12), (img_get_alpha_info), (deinterlace_line),
24104         (deinterlace_line_inplace):
24105         * gst/ffmpegcolorspace/imgconvert_template.h:
24106         Added AYUV colorspace and handle RGBA a bit more respectful.
24107
24108 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24109
24110         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
24111           Actually always send a discont (cornercase when resending the
24112           same serial-tagged chain twice).
24113
24114 2004-11-08  Julien MOUTTE  <julien@moutte.net>
24115
24116         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
24117         (gst_ximagesink_finalize):
24118         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
24119         (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
24120
24121 2004-11-08  Wim Taymans  <wim@fluendo.com>
24122
24123         * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
24124         Don't segfault on NULL data.
24125
24126 2004-11-08  Wim Taymans  <wim@fluendo.com>
24127
24128         * gst/playback/gstdecodebin.c: (unlinked):
24129         * gst/playback/gstplay-marshal.list:
24130         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
24131         (gst_play_base_bin_init), (group_create), (get_active_group),
24132         (get_building_group), (group_destroy), (group_commit),
24133         (queue_overrun), (remove_groups), (add_stream), (unknown_type),
24134         (add_element_stream), (no_more_pads), (probe_triggered),
24135         (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
24136         (state_change), (setup_source), (gst_play_base_bin_get_property),
24137         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
24138         (gst_play_base_bin_link_stream),
24139         (gst_play_base_bin_get_streaminfo):
24140         * gst/playback/gstplaybasebin.h:
24141         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
24142         (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
24143         Add support for chained ogg files. Prepare for playlist
24144         support. This patch introduces the concept of pad groups, which
24145         together compose one playable media file.
24146
24147 2004-11-07  David Schleef  <ds@schleef.org>
24148
24149         * testsuite/gst-lint: Check for pad templates that aren't statically
24150         scoped.
24151
24152 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24153
24154         * configure.ac:
24155         * ext/Makefile.am:
24156         * ext/musepack/Makefile.am:
24157         * ext/musepack/gstmusepackdec.cpp:
24158         * ext/musepack/gstmusepackdec.h:
24159         * ext/musepack/gstmusepackreader.cpp:
24160         * ext/musepack/gstmusepackreader.h:
24161           Add musepack decoder.
24162         * ext/faad/gstfaad.c: (gst_faad_base_init):
24163           Make pad templates static.
24164         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
24165         (plugin_init):
24166           Add musepack typefinder, make mp3 typefinding work halfway stream,
24167           which doesn't actually work yet because id3demux doesn't implement
24168           _get_length().
24169
24170 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24171
24172         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
24173         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
24174           Fix interrupt event handling (#144436).
24175
24176 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24177
24178         * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
24179           Hide unused glory.
24180
24181 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
24182
24183         reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24184
24185         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
24186           Fix weird caps (#157548).
24187
24188 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
24189
24190         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24191
24192         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
24193           Add missing NULL terminator (#157543).
24194
24195 2004-11-05  Thomas Vander Stichele  <thomas at apestaart dot org>
24196
24197         * gst/tcp/gsttcp.h:
24198         * gst/tcp/gsttcpclientsink.c:
24199         * gst/tcp/gsttcpclientsrc.c:
24200         * gst/tcp/gsttcpserversink.c:
24201         * gst/tcp/gsttcpserversrc.c:
24202           ports can go up to 65535.  Move common defines to gsttcp.h
24203
24204 2004-11-05  Wim Taymans  <wim@fluendo.com>
24205
24206         * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
24207         (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
24208         Added two more colorspaces.
24209
24210 2004-11-05  Wim Taymans  <wim@fluendo.com>
24211
24212         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
24213         (gst_ffmpegcsp_avpicture_fill):
24214         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
24215         (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
24216         (img_convert), (deinterlace_line), (deinterlace_line_inplace):
24217         More stride fixes.
24218
24219 2004-11-05  Wim Taymans  <wim@fluendo.com>
24220
24221         * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
24222         (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
24223         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
24224         (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
24225         (gst_videomixer_loop):
24226         More stride fixes.
24227
24228 2004-11-05  Benjamin Otte  <otte@gnome.org>
24229
24230         * ext/mad/gstmad.c: (gst_mad_chain):
24231           don't overflow data buffer. Flush not needed sync data when syncing
24232           failed.
24233
24234 2004-11-04  Wim Taymans  <wim@fluendo.com>
24235
24236         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
24237         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
24238         (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
24239         (gst_alpha_init_params), (gst_alpha_chain),
24240         (gst_alpha_change_state):
24241         Updated the chroma keying algorithm with something more
24242         sophisticated.
24243
24244 2004-11-03  Wim Taymans  <wim@fluendo.com>
24245
24246         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
24247         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
24248         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
24249         Fix stride issues. Does not completely work for odd
24250         heights.
24251
24252 2004-11-03  Wim Taymans  <wim@fluendo.com>
24253
24254         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
24255         (gst_alpha_chroma_key), (gst_alpha_chain):
24256         Fix stride issues. Does not completely work for odd
24257         heights.
24258
24259 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
24260
24261         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
24262         * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
24263         leak fixes
24264
24265 2004-11-03  Wim Taymans  <wim@fluendo.com>
24266
24267         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
24268         (gst_ffmpegcsp_avpicture_fill):
24269         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
24270         (avpicture_alloc):
24271         * gst/ffmpegcolorspace/imgconvert_template.h:
24272         Use correct _fill function to get correct strides.
24273
24274 2004-11-02  David Schleef  <ds@schleef.org>
24275
24276         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
24277         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
24278         (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
24279         Change all g_print()s to debugging.  Add a bunch of consistency
24280         checks.
24281
24282 2004-11-02  Wim Taymans  <wim@fluendo.com>
24283
24284         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
24285         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
24286         (unlinked), (no_more_pads), (close_link):
24287         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
24288         (unknown_type), (add_element_stream), (new_decoded_pad),
24289         (removed_decoded_pad), (setup_source):
24290         * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
24291         (gst_stream_info_class_init), (gst_stream_info_init),
24292         (gst_stream_info_new), (gst_stream_info_dispose),
24293         (stream_info_mute_pad), (gst_stream_info_set_property),
24294         (gst_stream_info_get_property):
24295         * gst/playback/gststreaminfo.h:
24296         Fix playback of multiple files.
24297         a slightly different approach to handling dynamic pad removals.
24298         This one only looks at pads that we have linked.
24299
24300 2004-11-01  Christophe Fergeau  <teuf@gnome.org>
24301
24302         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
24303         free" warning from libc.
24304
24305 2004-11-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24306
24307         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
24308         (get_unconnected_element), (remove_starting_from), (pad_removed),
24309         (close_link):
24310           Implement support for dynamic pad changing. We listen to "live"
24311           pad removals (i.e. while playing) and re-setup autoplugging
24312           after that. Playbasebin/playbin need some more work for this
24313           to finally work, but decodebin supports (and replugs) chained
24314           ogg now.
24315
24316 2004-11-02  Jan Schmidt  <thaytan@mad.scientist.com>
24317
24318         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
24319         (gst_alsa_finalize):
24320         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
24321         (gst_cdaudio_finalize):
24322         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
24323         (cdparanoia_finalize):
24324         * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
24325         * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
24326         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
24327         (dvdreadsrc_finalize):
24328         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
24329         (gst_flacdec_finalize):
24330         * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
24331         (gst_flacenc_finalize):
24332         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
24333         (gst_gnomevfssink_finalize):
24334         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
24335         (gst_gnomevfssrc_finalize):
24336         * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
24337         (gst_fameenc_finalize):
24338         * ext/nas/nassink.c: (gst_nassink_class_init),
24339         (gst_nassink_finalize):
24340         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
24341         (gst_sdlvideosink_class_init):
24342         * ext/sndfile/gstsf.c: (gst_sf_dispose):
24343         * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
24344         * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
24345         * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
24346         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
24347         (gst_x_window_listener_dispose):
24348         * gst/audioscale/gstaudioscale.c:
24349         * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
24350         (play_on_demand_finalize):
24351         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
24352         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
24353         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
24354         (cdplayer_finalize):
24355         * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
24356         (gst_glimagesink_class_init):
24357         * sys/oss/gstosselement.c: (gst_osselement_class_init),
24358         (gst_osselement_finalize):
24359         * sys/oss/gstosssink.c: (gst_osssink_dispose):
24360         * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
24361         * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
24362           Fixes a bunch of problems with finalize and dispose functions,
24363           either assumptions that dispose is only called once, or not calling
24364           the parent class dispose/finalize function
24365
24366 2004-11-01  Stefan Kost  <ensonic@users.sf.net>
24367
24368         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
24369           added two api precondition guards
24370           use g_strdup with getenv to fix crash when using ENVVAR
24371
24372 2004-11-01  Jan Schmidt  <thaytan@mad.scientist.com>
24373         * ext/esd/esdsink.c: (gst_esdsink_class_init),
24374         (gst_esdsink_finalize):
24375         Use a finalize function, not dispose, and more importantly,
24376         call the parent class finalize function too
24377
24378 2004-11-01  Johan Dahlin  <johan@gnome.org>
24379
24380         * ext/ogg/gstoggdemux.c:
24381         * gst/tags/gstvorbistag.c:
24382         Plug leaks.
24383
24384 2004-10-31  Benjamin Otte  <otte@gnome.org>
24385
24386         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
24387           lotsa memleaks today. But they're all small...
24388
24389 2004-10-31  Benjamin Otte  <otte@gnome.org>
24390
24391         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
24392           another memleak crushed
24393
24394 2004-10-31  Benjamin Otte  <otte@gnome.org>
24395
24396         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
24397           fix memleak
24398
24399 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24400
24401         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
24402           Hack to prevent crash when going to READY inside signal handler
24403           while this function is active.
24404
24405 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24406
24407         * gst/ffmpegcolorspace/Makefile.am:
24408         * gst/ffmpegcolorspace/avcodec.h:
24409         * gst/ffmpegcolorspace/common.h:
24410         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
24411         * gst/ffmpegcolorspace/dsputil.h:
24412         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
24413         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
24414         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
24415         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
24416         (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
24417         (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
24418         (gst_ffmpegcsp_avpicture_fill):
24419         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
24420         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24421         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
24422         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
24423         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
24424         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
24425         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
24426         (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
24427         * gst/ffmpegcolorspace/imgconvert.c:
24428         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
24429         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
24430         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
24431         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
24432         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
24433         (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
24434         (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
24435         (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
24436         (img_convert_init), (img_apply_table), (shrink41), (shrink21),
24437         (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
24438         (grow21), (grow22), (grow41), (grow44), (conv411),
24439         (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
24440         (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
24441         (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
24442         (avpicture_free), (is_yuv_planar), (img_convert),
24443         (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
24444         (deinterlace_line_inplace), (deinterlace_bottom_field),
24445         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
24446         * gst/ffmpegcolorspace/imgconvert_template.h:
24447         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
24448         * gst/ffmpegcolorspace/mmx.h:
24449         * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
24450         (av_fast_realloc), (av_mallocz_static), (av_free_static),
24451         (av_freep), (avcodec_get_context_defaults),
24452         (avcodec_alloc_context), (avcodec_init):
24453           Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
24454           handling plus update from ffmpeg CVS. Large clean-up.
24455
24456 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24457
24458         * gst/playback/Makefile.am:
24459           We need the marshallers for decodebin, too.
24460
24461 2004-10-30  David Schleef  <ds@schleef.org>
24462
24463         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
24464           quicktime typefinding work with 64-bit offsets.
24465
24466 2004-10-30  Jan Schmidt  <thaytan@mad.scientist.com>
24467
24468         * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
24469           Set EOS on the element when processing an EOS event.
24470         * ext/speex/gstspeexdec.h:
24471         * ext/speex/gstspeexenc.h:
24472           Only keep a const ptr to the mode
24473         * gst-libs/gst/riff/riff-media.c:
24474         (gst_riff_create_audio_caps_with_data),
24475         (gst_riff_create_audio_template_caps):
24476           Allow WMAV3, with up to 6 channels.
24477         * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
24478           Don't call gst_pad_set_event_function on a sink pad.
24479         * gst/mpegstream/gstdvddemux.c:
24480         (gst_dvd_demux_get_subpicture_stream),
24481         (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
24482           Copy the explicit caps that were set across to the cur_* pads,
24483           instead of trying to use a possibly non-existent negotiated caps.
24484           Reset the type of subpicture pads to UNKNOWN after calling
24485           init_stream, so that the caps get set.
24486
24487 2004-10-29  Martin Pitt  <martin.pitt@canonical.com>
24488
24489         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24490
24491         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
24492           Don't touch buffer if it is of size 0 (fixes #151064).
24493
24494 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24495
24496         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
24497           Synchronized discont handling.
24498
24499 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24500
24501         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
24502         (gst_ogg_demux_push):
24503           Make seeking sort-of exact again (fixes #156387).
24504
24505 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24506
24507         * gst/playback/gstplaybasebin.c: (unknown_type),
24508         (add_element_stream), (new_decoded_pad),
24509         (gst_play_base_bin_change_state):
24510         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
24511         (gst_stream_info_init), (gst_stream_info_new),
24512         (gst_stream_info_dispose), (gst_stream_info_get_property):
24513         * gst/playback/gststreaminfo.h:
24514           Make caps explicitely available. Makes testing for unsupported
24515           types possible. Improves error reporting.
24516
24517 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24518
24519         * gst/audioconvert/gstaudioconvert.c:
24520         (gst_audio_convert_buffer_to_default_format):
24521           Really don't touch read-only buffers (#156563).
24522
24523 2004-10-29  Sebastien Cote  <sc5@hermes.usherb.ca>
24524
24525         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24526
24527         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
24528           Fix memleak (#155223).
24529
24530 2004-10-29  Wim Taymans  <wim@fluendo.com>
24531
24532         * gst/tcp/.cvsignore:
24533         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
24534         (gst_multifdsink_class_init), (gst_multifdsink_init),
24535         (gst_multifdsink_add), (gst_multifdsink_remove),
24536         (gst_multifdsink_remove_client_link), (is_sync_frame),
24537         (gst_multifdsink_new_client),
24538         (gst_multifdsink_handle_client_write),
24539         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
24540         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
24541         (gst_multifdsink_get_property):
24542         * gst/tcp/gstmultifdsink.h:
24543         Added burst on connect sync_method, deprecated sync_clients,
24544         streamlined the sync code some more.
24545
24546 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24547
24548         * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
24549         (gst_play_base_bin_change_state):
24550           Improve error reporting.
24551
24552 2004-10-28  Wim Taymans  <wim@fluendo.com>
24553
24554         * gst/tcp/Makefile.am:
24555         * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
24556         * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
24557         (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
24558         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
24559         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
24560         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
24561         (gst_fdset_wait):
24562         Added more locks around fdset structures. Fixed/reworked
24563         the poll array resizing code.
24564         Added stress test for fdset.
24565
24566 2004-10-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24567
24568         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
24569         fix build
24570
24571 2004-10-28  Benjamin Otte  <otte@gnome.org>
24572
24573         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
24574           fix link function to always query channels and query width for
24575           floats
24576         * configure.ac:
24577           add equalizer dir
24578         * gst/equalizer/Makefile.am:
24579         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
24580         (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
24581         (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
24582         (arg_to_scale), (setup_filter),
24583         (gst_iir_equalizer_compute_frequencies),
24584         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
24585         (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
24586         (plugin_init):
24587           add an equalizer
24588
24589 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
24590
24591         Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
24592
24593         * po/LINGUAS:
24594         * po/nb.po:
24595           Added Norwegian Bokmaal translation
24596
24597 2004-10-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24598
24599         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
24600           Don't break on options (fixes #156488).
24601
24602 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
24603
24604         * configure.ac:
24605         * ext/cdaudio/Makefile.am:
24606         * sys/Makefile.am:
24607           fix build on older automake
24608
24609 2004-10-26  Wim Taymans  <wim@fluendo.com>
24610
24611         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
24612         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
24613         Allow a little margin when negotiating the framerate.
24614
24615 2004-10-26  Stefan Kost  <ensonic@users.sf.net>
24616
24617         * gst/level/gstlevel.c:
24618           synchonised naming of pads and pad-templates
24619
24620 2004-10-26  Wim Taymans  <wim@fluendo.com>
24621
24622         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
24623         (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
24624         (_find_streams_check), (gst_ogg_demux_push):
24625         Fix EOS again. Needs to be done in a better way. We should not
24626         remove the pad if there is no new chained stream.
24627
24628 2004-10-26 Iain <iaingnome@gmail.com>
24629
24630         * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
24631         * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
24632         of the caps.
24633         * gst/interleave/interleave.c (interleave_class_init): Hook up release
24634         pad.
24635         (interleave_release_pad): Remove the pad.
24636         * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
24637         * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
24638         the set device.
24639         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
24640         attrs
24641         (gst_xvimagesink_xcontext_clear): Free the xcontext.
24642         (gst_xvimagesink_finalize): Free the par.
24643
24644 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24645
24646         * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
24647         (gst_avimux_stop_file):
24648           First calculate the rate, and only then use it. Hdr.rate is a
24649           multiple and not a derivative of hdr.scale. Scale is not the
24650           same as blockalign but is solely related to rate.
24651
24652 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24653
24654         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
24655         (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
24656           Implement seeking.
24657
24658 2004-10-25  James Henstridge  <james@jamesh.id.au>
24659
24660         Reviewed by:  David Schleef  <ds@schleef.org>
24661
24662         * examples/gstplay/player.c: (got_stream_length), (main):
24663         * examples/seeking/cdplayer.c: (update_scale):
24664         * examples/seeking/seek.c: (format_value), (update_scale):
24665         * examples/seeking/spider_seek.c: (format_value), (update_scale),
24666         (stop_seek):
24667         Build fixes on AMD64.
24668
24669 2004-10-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24670
24671         reviewed by: Ronald Bultje <rbultje at gnome dot org>
24672
24673         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
24674         Fix for some v4l cards which hang in v4lsrc
24675
24676 2004-10-25  Wim Taymans  <wim@fluendo.com>
24677
24678         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
24679         (gst_ogg_demux_push), (gst_ogg_chains_clear):
24680         Make sure to remove the pad when a new chain is
24681         encountered. Set some vars to NULL so we don't try
24682         to reference freed memory.
24683
24684 2004-10-25  Wim Taymans  <wim@fluendo.com>
24685
24686         * examples/seeking/Makefile.am:
24687         * examples/seeking/cdplayer.c: (update_scale):
24688         * examples/seeking/chained.c: (unlinked), (new_pad), (main):
24689         * examples/seeking/playbin.c: (make_playerbin_pipeline),
24690         (format_value), (update_scale), (iterate), (start_seek),
24691         (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
24692         (print_usage), (main):
24693         Added some more examples, update others.
24694
24695 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24696
24697         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
24698         * ext/speex/gstspeexdec.c: (speex_dec_chain):
24699         * ext/theora/theoradec.c: (theora_dec_chain):
24700         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
24701           Add codec-name metadata.
24702
24703 2004-10-25  Takao Fujiwara  <Takao.Fujiwara@Sun.COM>
24704
24705         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24706
24707         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
24708         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
24709         * ext/alsa/gstalsamixertrack.h:
24710         * po/POTFILES.in:
24711           ALSA mixer track label internationalization (#154054).
24712
24713 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24714
24715         * ext/theora/theoradec.c: (theora_dec_chain):
24716           Export bitrate as metadata.
24717
24718 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24719
24720         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
24721         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
24722         * ext/alsa/gstalsamixertrack.h:
24723           Fix names, fix loop.
24724
24725 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24726
24727         * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
24728         (speex_dec_convert):
24729           sinkconvert function so oggdemux can get the file length (totem).
24730
24731 2004-10-25  James Morrison  <ja2morri@csclub.uwaterloo.ca>
24732
24733         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24734
24735         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
24736           Don't push incomplete packets.
24737         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
24738           Fix MPEG-4 audio typefinding.
24739
24740 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24741
24742         * sys/v4l/Makefile.am:
24743         * sys/v4l/gstv4l.c: (plugin_init):
24744         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
24745         (gst_v4lelement_init), (gst_v4lelement_dispose),
24746         (gst_v4lelement_change_state):
24747         * sys/v4l/gstv4lelement.h:
24748         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
24749         (gst_v4l_xoverlay_close), (idle_refresh),
24750         (gst_v4l_xoverlay_set_xwindow_id):
24751         * sys/v4l/gstv4lxoverlay.h:
24752         * sys/v4l/v4l-overlay_calls.c:
24753         * sys/v4l/v4l_calls.h:
24754         * sys/v4l2/Makefile.am:
24755         * sys/v4l2/gstv4l2.c: (plugin_init):
24756         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
24757         (gst_v4l2element_init), (gst_v4l2element_dispose),
24758         (gst_v4l2element_change_state):
24759         * sys/v4l2/gstv4l2element.h:
24760         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
24761         (gst_v4l2_xoverlay_close), (idle_refresh),
24762         (gst_v4l2_xoverlay_set_xwindow_id):
24763         * sys/v4l2/gstv4l2xoverlay.h:
24764         * sys/v4l2/v4l2-overlay_calls.c:
24765         * sys/v4l2/v4l2_calls.h:
24766           Remove client-side overlay handling, use the X-server v4l plugin
24767           for that. Nicer overlay, less code. Also make the plugin
24768           compileable without X (but then without overlay, obviously).
24769           Makes xwindowlistener obsolete, should we remove that?
24770
24771 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24772
24773         * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
24774         (gst_osssrc_src_query):
24775         * sys/oss/gstosssrc.h:
24776           OK, so people want offset in DEFAULT. This time, actually fix all
24777           cases.
24778         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
24779           Add FPS properly.
24780
24781 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24782
24783         * gst/asfdemux/gstasfmux.c:
24784         * gst/avi/gstavimux.c:
24785           Framerate.
24786
24787 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24788
24789         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
24790           Fix properties (channel, norm, frequency).
24791
24792 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24793
24794         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
24795           Flag typo.
24796         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
24797           No warnings.
24798
24799 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24800
24801         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
24802           Fix hang.
24803
24804 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24805
24806         * sys/v4l2/gstv4l2element.h:
24807           Yet Another Hack (tm) for kernel header borkedness.
24808         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
24809         (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
24810         (gst_v4l2src_link), (gst_v4l2src_getcaps),
24811         (gst_v4l2src_change_state):
24812         * sys/v4l2/gstv4l2src.h:
24813         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
24814         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
24815           Fix caps, keep track of state, work.
24816
24817 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24818
24819         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
24820           Quiet.
24821
24822 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24823
24824         * sys/oss/gstosssrc.c: (gst_osssrc_get):
24825           Don't mix bytes and samples.
24826
24827 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24828
24829         * ext/ogg/gstoggmux.c:
24830           Basic pad template which accepts OGM tracks, speex, flac, vorbis
24831           and theora. Any is incorrect.
24832         * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
24833           Fix caps.
24834         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
24835         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
24836         (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
24837         (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
24838         * sys/v4l/gstv4lmjpegsrc.h:
24839         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
24840         (gst_v4lsrc_change_state):
24841         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
24842         (gst_v4lmjpegsrc_capture_stop):
24843           Fix caps. Keep track of internal state. Work.
24844
24845 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24846
24847         * ext/Makefile.am:
24848           Fix the build fixes.
24849
24850 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24851
24852         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
24853         (gst_ogg_demux_src_event), (_find_chain_seek),
24854         (gst_ogg_pad_push):
24855           Check for pad availability before using it.
24856         * ext/ogg/gstoggdemux.c: (_find_chain_process):
24857           Fix parsing of chained ogg. Needs more work on the decoder side.
24858
24859 2004-10-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24860
24861         * gst/spectrum/Makefile.am:
24862         * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
24863         (idle_func):
24864           Fix demo and reenable it. Yes, I'm currently playing with audio
24865           analysis tools
24866
24867 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24868
24869         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
24870           We love it if files that start at zero work too...
24871
24872 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24873
24874         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
24875           Handle files with missing EOS headers.
24876
24877 2004-10-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24878
24879         * gst/tcp/gsttcpserversink.c:
24880         (gst_tcpserversink_handle_server_read),
24881         (gst_tcpserversink_init_send):
24882         Zero some variables first (need for accept not to return EINVAL)
24883
24884 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24885
24886         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
24887         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
24888         * ext/theora/theoradec.c: (theora_dec_sink_convert),
24889         (theora_dec_chain):
24890         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
24891         (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
24892           Seeking and querying finetune.
24893
24894 2004-10-20  Thomas Vander Stichele  <thomas at apestaart dot org>
24895
24896         * configure.ac:
24897         * ext/Makefile.am:
24898         * ext/raw1394/Makefile.am:
24899           fix the build
24900
24901 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24902
24903         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
24904           Wrong return.
24905         * gst/playback/Makefile.am:
24906         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
24907         * gst/playback/gstplay-marshal.list:
24908         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
24909           Fix marshallers.
24910
24911 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24912
24913         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
24914           Silence.
24915
24916 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24917
24918         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
24919         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
24920         (gst_ogg_pad_push):
24921           Yay for non-lineair granulepos in theora.
24922
24923 2004-10-18  Wim Taymans  <wim@fluendo.com>
24924
24925         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
24926         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
24927         * ext/dv/gstdvdec.h:
24928         Make sure we renegotiate aspect ratio when the camera switches.
24929
24930 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24931
24932         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
24933         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
24934           Start at zero.
24935         * ext/theora/theoradec.c: (theora_dec_chain):
24936           Skip headers. Bad idea for chained ogg, but fixes seeking.
24937
24938 2004-10-18  Wim Taymans  <wim@fluendo.com>
24939
24940         * configure.ac:
24941         I swear, this is the last time I touch this.
24942
24943 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24944
24945         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
24946         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
24947         (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
24948           Faster seeking.
24949         * ext/theora/theoradec.c: (theora_dec_sink_convert):
24950           Time-to-default conversion.
24951         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
24952           Don't error on unknown packets, just skip. We should probably
24953           read them if we want to support chained ogg.
24954
24955 2004-10-18  Wim Taymans  <wim@fluendo.com>
24956
24957         * configure.ac:
24958         Added cdaudio to wrong list.
24959
24960 2004-10-18  Wim Taymans  <wim@fluendo.com>
24961
24962         * configure.ac:
24963         Revive cdaudio.
24964
24965 2004-10-18  Wim Taymans  <wim@fluendo.com>
24966
24967         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
24968         (gst_dvdec_video_link), (gst_dvdec_push):
24969         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
24970         (gst_smokeenc_resync), (gst_smokeenc_chain):
24971         Fix mimetype on smoke encoder.
24972         Add aspect ratio to dvdec. Not sure if these
24973         values are correct though....
24974
24975 2004-10-18  Wim Taymans  <wim@fluendo.com>
24976
24977         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
24978         Fix vorbis property descriptions and ranges.
24979
24980 2004-10-18  Wim Taymans  <wim@fluendo.com>
24981
24982         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
24983         Really do nothing when no data is available.
24984         Go to the playing state when the stream is not seekable
24985         instead of failing.
24986
24987 2004-10-18  Wim Taymans  <wim@fluendo.com>
24988
24989         * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
24990         (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
24991         (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
24992         (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
24993         (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
24994         Added uri handler for cd://
24995         Port to new API.
24996
24997 2004-10-18  Wim Taymans  <wim@fluendo.com>
24998
24999         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
25000         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
25001         (try_to_link_1), (no_more_pads), (close_link), (type_found):
25002         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
25003         (remove_prerolls), (unknown_type), (add_element_stream),
25004         (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
25005         (gst_play_base_bin_remove_element),
25006         (gst_play_base_bin_link_stream):
25007         * gst/playback/gstplaybin.c: (gen_video_element),
25008         (gen_vis_element), (remove_sinks), (setup_sinks):
25009         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
25010         (gst_stream_info_get_type), (gst_stream_info_class_init),
25011         (gst_stream_info_init), (gst_stream_info_new),
25012         (gst_stream_info_dispose), (stream_info_mute_pad),
25013         (gst_stream_info_set_property), (gst_stream_info_get_property):
25014         * gst/playback/gststreaminfo.h:
25015         Add sink padtemplate to decodebin.
25016         Added some more comments.
25017         Make queue size configurable in playbasebin.
25018         Added possibility to use elements as sinks (ex cdaudio).
25019
25020 2004-10-15  Wim Taymans  <wim@fluendo.com>
25021
25022         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
25023         (gst_speexenc_chain):
25024         Fix speex timestamps so that it gets muxed properly.
25025
25026 2004-10-15  Wim Taymans  <wim@fluendo.com>
25027
25028         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
25029         (gst_dv1394src_base_init), (gst_dv1394src_class_init),
25030         (gst_dv1394src_init), (gst_dv1394src_dispose),
25031         (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
25032         (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
25033         (gst_dv1394src_event), (gst_dv1394src_get_formats),
25034         (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
25035         (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
25036         (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
25037         (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
25038         * ext/raw1394/gstdv1394src.h:
25039         Added conversion/query functions.
25040         Update buffer timestamps,
25041         Added signals.
25042         Added uri dv:// so it might play from the firewire in playbin.
25043         Fix a possible leak.
25044         Added debugging.
25045
25046 2004-10-15  Wim Taymans  <wim@fluendo.com>
25047
25048         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
25049         (gst_dv1394src_init), (gst_dv1394src_set_property),
25050         (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
25051         (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
25052         * ext/raw1394/gstdv1394src.h:
25053         Added AV/C VTR control support needed for some cameras.
25054         Added automatic port detection.
25055         Added properties for selecting the channel.
25056         The configure.ac script is not yet updated to reflect the
25057         new libavc1394 and librom1394 dependencies.
25058
25059 2004-10-15  Wim Taymans  <wim@fluendo.com>
25060
25061         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
25062         (qtdemux_parse), (gst_qtdemux_handle_esds):
25063         An esds box is not a container.
25064         Fix parsing of mp4v boxes.
25065         Do not try to renegotiate fps for each frame. Need to
25066         find a better method. This should fix mp4 playback.
25067
25068 2004-10-14  David Schleef  <ds@schleef.org>
25069
25070         * configure.ac: update for swfdec-0.3 and liboil-0.2
25071         * ext/swfdec/gstswfdec.c: update for swfdec-0.3
25072         * ext/swfdec/gstswfdec.h: same
25073         * gst/videofilter/gstvideobalance.c: update for liboil-0.2
25074         * gst/videotestsrc/videotestsrc.c: same
25075
25076 2004-10-14  Wim Taymans  <wim@fluendo.com>
25077
25078         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
25079         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
25080         (is_sync_frame), (gst_multifdsink_new_client),
25081         (gst_multifdsink_handle_client_write),
25082         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
25083         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
25084         Turn warnings into info.
25085         Don't allow a state change in the streaming thread.
25086
25087 2004-10-14  Thomas Vander Stichele  <thomas at apestaart dot org>
25088
25089         * ext/vorbis/oggvorbisenc.c:
25090         * ext/vorbis/vorbisdec.c:
25091           fix template sample rate
25092
25093 2004-10-13  Wim Taymans  <wim@fluendo.com>
25094
25095         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
25096         Decoding the header first fixes some problems in resyncing
25097         in more mp3s.
25098
25099 2004-10-12  Wim Taymans  <wim@fluendo.com>
25100
25101         * gst/playback/gstplaybin.c: (gen_video_element),
25102         (gen_vis_element), (remove_sinks), (setup_sinks):
25103         Added vis plugin support, need to configure the vis
25104         element to activate it.
25105
25106 2004-10-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25107
25108         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
25109         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
25110           Some debug.
25111         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
25112         (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
25113         (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
25114         (gst_avi_demux_stream_index), (gst_avi_demux_skip),
25115         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
25116         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
25117         * gst/avi/gstavidemux.h:
25118           Support for openDML-2.0 indx/ix## chunks. Support for broken index
25119           recovery (where, if part of the index is broken, we will still read
25120           the rest of the index and recover the broken part by stream
25121           scanning). More broken media support. EOS workarounds. General AVI
25122           braindamage headache recovery. Aspirin included.
25123
25124 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25125
25126         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
25127         (cdparanoia_event), (cdparanoia_query):
25128           Get rid of hideous lead-in.
25129
25130 2004-10-11  Wim Taymans  <wim@fluendo.com>
25131
25132         * gst/playback/gstplaybasebin.c: (setup_source):
25133         Wrong var used to get g_list_next.
25134
25135 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25136
25137         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
25138         (cdparanoia_get), (cdparanoia_open):
25139           Report discid as metadata, add duration.
25140
25141 2004-10-11  Wim Taymans  <wim@fluendo.com>
25142
25143         * gst/playback/gstplaybasebin.c: (setup_source):
25144         Cleanup the previous pipeline a little earlier for the
25145         case that a source element provides raw data.
25146
25147 2004-10-11  Benjamin Otte  <otte@gnome.org>
25148
25149         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
25150           reset v1 tag offset when there is no v1 tag. Fixes id3demux always
25151           consuming the last 128 bytes, even though it was valid mp3 data.
25152
25153 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
25154
25155         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
25156         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
25157         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
25158         Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
25159
25160 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
25161
25162         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
25163         Fix for webcams that support only specific width or height
25164
25165 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
25166
25167         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25168
25169         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
25170           Fix wrong discont event setup (fixes #154967).
25171
25172 2004-10-09  Sebastien Cote  <sc5@hermes.usherb.ca>
25173
25174         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25175
25176         * gst/auparse/gstauparse.c: (gst_auparse_chain):
25177           Error out on invalid data (fixes #154807).
25178
25179 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
25180
25181         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25182
25183         * ext/dvdread/dvdreadsrc.c: (_read):
25184           Make titles > 0 work again (fixes #154834).
25185
25186 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25187
25188         * gst-libs/gst/riff/riff-media.c:
25189         (gst_riff_create_video_template_caps):
25190           WMV3 missing in template caps.
25191
25192 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25193
25194         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
25195           OK, so the original code was too strict. It makes random AVI files
25196           hang for seconds upon opening, which is unacceptable and is far
25197           beyond the original goal of getting multiple chunks for one-chunk
25198           sounc stream files. So now do just that.
25199
25200 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25201
25202         * gst/playback/gstplaybasebin.c: (setup_source),
25203         (gst_play_base_bin_change_state):
25204           Actually clean up streaminfo if output fails. This would trigger
25205           if, for example, there was no CD in the drive. No preroll, so
25206           a streaminfo structure is created, but the subsequent state change
25207           of the thread fails.
25208         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
25209           Don't change state if parent failed.
25210
25211 2004-10-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25212
25213         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
25214         (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
25215         (gen_video_element), (remove_sinks):
25216           Add small bits of code for screenshot handling.
25217
25218 2004-10-08  Wim Taymans  <wim@fluendo.com>
25219
25220         * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
25221         (gen_video_element), (gen_audio_element), (setup_sinks):
25222         Don't assume the user provided sinks are named "sink"...
25223
25224 2004-10-08  Wim Taymans  <wim@fluendo.com>
25225
25226         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
25227         (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
25228         (gst_play_base_bin_link_stream):
25229         Do not try to autoplug sources that generate raw streams like
25230         cdparanoia.
25231         disconnect the preroll overrun signal when we don't need it anymore.
25232
25233 2004-10-08  Milosz Derezynski  <internalerror.rez@fhtw-berlin.de>
25234
25235         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
25236         Added reworked patch from #154903 from milosz derezynski (deadchip).
25237
25238 2004-10-08  Wim Taymans  <wim@fluendo.com>
25239
25240         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
25241         (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
25242         (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
25243         (cdparanoia_convert), (cdparanoia_uri_get_type),
25244         (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
25245         (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
25246         * ext/cdparanoia/gstcdparanoia.h:
25247         This adds the cdda://<tracknum> uri.
25248
25249 2004-10-08  Wim Taymans  <wim@fluendo.com>
25250
25251         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
25252         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
25253         (try_to_link_1), (no_more_pads), (close_link), (type_found):
25254         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
25255         (unknown_type), (gst_play_base_bin_remove_element),
25256         (gst_play_base_bin_link_stream):
25257         * gst/playback/gstplaybasebin.h:
25258         * gst/playback/gstplaybin.c: (gst_play_bin_init),
25259         (gst_play_bin_set_property), (gen_video_element),
25260         (gen_audio_element), (setup_sinks):
25261         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
25262         (gst_stream_info_get_type), (gst_stream_info_class_init),
25263         (gst_stream_info_init), (gst_stream_info_new),
25264         (gst_stream_info_dispose), (stream_info_mute_pad),
25265         (gst_stream_info_set_property), (gst_stream_info_get_property):
25266         * gst/playback/gststreaminfo.h:
25267         Reuse the audio and video bins.
25268         Some internal cleanups in the stream selection code.
25269
25270 2004-10-08  Julien MOUTTE  <julien@moutte.net>
25271
25272         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
25273         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
25274         * sys/ximage/ximagesink.h:
25275         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
25276         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
25277         * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
25278         not coming from those elements. Moreover these elements should not keep
25279         the xid they have been given when in NULL state.
25280
25281 2004-10-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25282
25283         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
25284         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
25285         * sys/ximage/ximagesink.h:
25286         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
25287         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
25288         * sys/xvimage/xvimagesink.h:
25289           Actually only create a new toplevel window if we're not gonna
25290           embed it right after.
25291
25292 2004-10-07  Wim Taymans  <wim@fluendo.com>
25293
25294         * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
25295         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
25296         * gst/playback/gstplaybin.c: (setup_sinks):
25297         Implement muting/unmuting of streams, mute streams that are not
25298         used.
25299
25300 2004-10-07  Wim Taymans  <wim@fluendo.com>
25301
25302         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
25303         (plugin_init):
25304         Added lame audio/x-ac3 typefind function.
25305
25306 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
25307
25308         * configure.ac:
25309           bump nano to cvs
25310
25311 === release 0.8.5 ===
25312
25313 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
25314
25315         * NEWS:
25316         * RELEASE:
25317         * configure.ac:
25318           releasing 0.8.5, "Take You On"
25319
25320 2004-10-06  Wim Taymans  <wim@fluendo.com>
25321
25322         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
25323         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
25324         (no_more_pads), (close_link), (type_found):
25325         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
25326         * gst/playback/gstplaybin.c: (gen_video_element):
25327         Do not signal the no_more_pads after the first pad when
25328         we are plugging a non dynamic element with multiple
25329         output pads (like swfdec, dvdec, ...).
25330
25331 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
25332
25333         * configure.ac:
25334           bump for prerelease
25335
25336 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
25337
25338         * gst/wavparse/gstwavparse.c:
25339           add ATRAC3 to STATIC CAPS to fix a warning
25340
25341         * gst/matroska/ebml-read.c:
25342         * gst-libs/gst/riff/riff-read.c:
25343           fix typos
25344
25345 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
25346
25347         * gst-libs/gst/riff/riff-media.c:
25348           generate caps for ATRAC3 audio streams
25349
25350         * gst/realmedia/rmdemux.c:
25351           generate caps for ATRAC3 audio streams
25352
25353 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
25354
25355         * gst/wavparse/Makefile.am
25356         * gst/wavparse/riff.h
25357         * gst/wavparse/wavparse.vcproj
25358           riff.h removal (unused and duplication with riff-ids.h)
25359
25360 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
25361
25362         * gst/wavparse/gstwavparse.h
25363           remove duplicated defines for audio codec codes
25364
25365         * gst-libs/gst/riff/riff-ids.h
25366         * gst/wavenc/riff.h:
25367           add "4CC" code for ATRAC3 audio streams
25368           add "4CC" code for ITU_G721_ADPCM (unused for now)
25369
25370 2004-10-06  Wim Taymans  <wim@fluendo.com>
25371
25372         * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
25373         Actually _do_ negotiation. Pass gdouble as arg instead
25374         of guint64 for the framerate.
25375
25376 2004-10-06  Wim Taymans  <wim@fluendo.com>
25377
25378         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
25379         (find_compatibles), (close_pad_link), (try_to_link_1),
25380         (no_more_pads), (close_link), (type_found):
25381         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
25382         * gst/playback/gstplaybin.c: (gen_video_element),
25383         (gen_audio_element):
25384         Set state on newly added element to READY so that negotiation
25385         can happen ASAP.
25386         Addes some more debug info.
25387         Do not try to plug pads with multiple caps structures or ANY
25388         because it is too dangerous since we do not do dynamic
25389         replugging.
25390
25391 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
25392
25393         written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
25394
25395         * po/LINGUAS:
25396         * po/or.po:
25397           add Oriya translation
25398
25399 2004-10-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25400
25401         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
25402           Prevent overwrite of size member. Makes audio sound crappy.
25403
25404 2004-10-05  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
25405
25406         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
25407         Add rmvb to the list of known RealMedia extensions
25408
25409 2004-10-05  Wim Taymans  <wim@fluendo.com>
25410
25411         * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
25412         (mngdec_openstream), (mngdec_closestream),
25413         (mngdec_handle_sink_event), (mngdec_readdata),
25414         (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
25415         (mngdec_getcanvasline), (mngdec_refresh),
25416         (gst_mngdec_change_state):
25417         Set the framerate correctly.
25418
25419 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25420
25421         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
25422           There was something wrong with the index massaging.
25423
25424 2004-10-04  Wim Taymans  <wim@fluendo.com>
25425
25426         * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
25427         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
25428         (gst_smokedec_chain):
25429         * ext/jpeg/gstsmokedec.h:
25430         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
25431         (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
25432         * ext/jpeg/gstsmokeenc.h:
25433         * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
25434         (smokecodec_decode_new), (smokecodec_info_free),
25435         (smokecodec_set_quality), (smokecodec_get_quality),
25436         (smokecodec_set_threshold), (smokecodec_get_threshold),
25437         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
25438         (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
25439         (smokecodec_encode), (smokecodec_parse_id),
25440         (smokecodec_parse_header), (smokecodec_decode):
25441         * ext/jpeg/smokecodec.h:
25442         * ext/jpeg/smokeformat.h:
25443         Updated smoke, new bitstream, allows embedding in ogg.
25444
25445 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25446
25447         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
25448           Fix seeking in some files. All this code is no longer needed (and
25449           actually breaks stuff) because we now synchronize the full index
25450           right when reading the header.
25451
25452 2004-10-04  Wim Taymans  <wim@fluendo.com>
25453
25454         * configure.ac:
25455         configure update for libmng.
25456
25457 2004-10-04  Wim Taymans  <wim@fluendo.com>
25458
25459         * ext/libmng/Makefile.am:
25460         * ext/libmng/gstmng.c: (plugin_init):
25461         * ext/libmng/gstmng.h:
25462         * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
25463         (gst_mngdec_base_init), (gst_mngdec_class_init),
25464         (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
25465         (gst_mngdec_loop), (gst_mngdec_get_property),
25466         (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
25467         (mngdec_closestream), (mngdec_handle_sink_event),
25468         (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
25469         (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
25470         (gst_mngdec_change_state):
25471         * ext/libmng/gstmngdec.h:
25472         * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
25473         (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
25474         (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
25475         (gst_mngenc_chain), (gst_mngenc_get_property),
25476         (gst_mngenc_set_property):
25477         * ext/libmng/gstmngenc.h:
25478         Added basic MNG decoder. Needs more work. The encoder does
25479         not work yet.
25480
25481 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25482
25483         * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
25484         (gst_rmdemux_loop), (gst_rmdemux_add_stream),
25485         (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
25486           Don't hang on length=0 chunks. Some negotiation fixes. Signal
25487           no-more-pads.
25488
25489 2004-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
25490
25491         * configure.ac:
25492           you need at least 1.0.4 of speex
25493
25494 2004-10-04 Iain <iaingnome@gmail.com>
25495
25496         * ext/speex/gstspeexdec.h: Revert the includes changes.
25497
25498         * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
25499
25500 2004-09-30 Iain <iaingnome@gmail.com>
25501
25502         * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
25503         found during init or set as a property instead of hardcoding /dev/audio
25504
25505 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25506
25507         * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
25508         (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
25509         (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
25510         (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
25511         (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
25512         (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
25513         (gst_rmdemux_dump_data):
25514           Use debug category, fix EOS handling. filesrc ! rmdemux now
25515           works.
25516
25517 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25518
25519         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
25520         (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
25521         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
25522           Improve allocation, cutting and sorting of the index. How takes a
25523           few seconds instead of minutes.
25524
25525 2004-10-03  Christophe Fergeau  <teuf@gnome.org>
25526
25527         * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
25528           fixed compilation
25529
25530 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25531
25532         * gst-libs/gst/riff/riff-media.c:
25533         (gst_riff_create_video_caps_with_data),
25534         (gst_riff_create_video_template_caps):
25535           Add wing commander format mimetype/fourccs.
25536         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
25537           Don't crash if some value is 0.
25538
25539 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25540
25541         * gst-libs/gst/riff/riff-media.c:
25542         (gst_riff_create_video_caps_with_data),
25543         (gst_riff_create_video_template_caps):
25544           Add DIB fourcc (raw, palettized 8-bit RGB).
25545         * gst-libs/gst/riff/riff-read.c:
25546         (gst_riff_read_strf_vids_with_data):
25547           Oops, fix strf_data reading bug.
25548         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
25549           Use a non-NULL tag.
25550         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
25551           Time for hacks. Sorry Dave. At least one quicktime movie (a
25552           trailer) that I've encountered contains multiple video tracks.
25553           One of those is the actual video track, the other are one-frame
25554           tracks (images). Unfortunately, the number of frames according
25555           to the trak header is 1 for each, so that doesn't help. So
25556           instead, I look at the duration and discard tracks with a
25557           duration shorter than 20% of the length of the stream. Better
25558           than nothing.
25559
25560 2004-10-01  Christian Schaller <christian@fluendo.com>
25561
25562         * ext/ivorbis/vorbis.c:
25563           Patch from Phil Blundell (Bug 152341)
25564
25565 2004-10-01  Wim Taymans  <wim@fluendo.com>
25566
25567         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
25568         (speex_dec_get_formats), (speex_dec_convert),
25569         (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
25570         (speex_dec_chain), (gst_speexdec_get_property),
25571         (gst_speexdec_set_property):
25572         Small cleanups.
25573
25574 2004-10-01  Wim Taymans  <wim@fluendo.com>
25575
25576         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
25577         (gst_wavparse_stream_init), (gst_wavparse_fmt),
25578         (gst_wavparse_other), (gst_wavparse_loop),
25579         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
25580         (gst_wavparse_srcpad_event):
25581         * gst/wavparse/gstwavparse.h:
25582         Added some more debugging info.
25583         Fix the case where the length of the file is 0.
25584         Make sure we seek to sample borders.
25585
25586 2004-10-01  Wim Taymans  <wim@fluendo.com>
25587
25588         * gst/playback/README:
25589         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
25590         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
25591         (try_to_link_1), (no_more_pads), (close_link), (type_found):
25592         Add some debug info to decodebin, update README
25593
25594 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25595
25596         * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
25597           Don't use g_print(); use GST_DEBUG().
25598
25599 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25600
25601         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
25602         (gst_ogg_mux_queue_pads):
25603           Handle EOS properly.
25604
25605 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
25606
25607         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25608
25609         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
25610         (gst_faad_chain), (gst_faad_change_state):
25611         * ext/faad/gstfaad.h:
25612           Allow playback of raw (unframed) MPEG AAC files (#148993).
25613
25614 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
25615
25616         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25617
25618         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
25619           Throw error if we didn't recognize the stream. Fixes #152289.
25620
25621 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25622
25623         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
25624           Fix negotiation.
25625
25626 2004-10-01  Francis Labonte  <francis_labonte@hotmail.com>
25627
25628         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25629
25630         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
25631           Fix memleak.
25632
25633 2004-10-01  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
25634
25635         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25636
25637         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
25638           Solve #152805.
25639         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
25640           Solve 152806.
25641
25642 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25643
25644         * gst-libs/gst/riff/riff-media.c:
25645         (gst_riff_create_video_caps_with_data),
25646         (gst_riff_create_audio_caps_with_data):
25647           Add codec_data handling (like asfdemux used to do).
25648         * gst/asfdemux/gstasf.c: (plugin_init):
25649         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
25650         (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
25651           Use riff-media for caps creation instead of our own (mostly
25652           broken) copy of its functions.
25653
25654 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25655
25656         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
25657           Don't actually error out if we get another return value than
25658           -EINVAL. Opposite to what I first thought, drivers have random
25659           return values for this, although -EINVAL is the expected return
25660           value. Since this is not fatal, we shouldn't use
25661           GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
25662
25663 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25664
25665         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
25666         (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
25667         (dvdreadsrc_get_property), (_open), (_seek), (_read),
25668         (dvdreadsrc_get), (dvdreadsrc_open_file),
25669         (dvdreadsrc_change_state):
25670           Fix. Don't do one big huge loop around the whole DVD, that will
25671           cache all data and thus eat sizeof(dvd) (several GB) before we
25672           see something.
25673         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
25674           Actually NULL'ify event after using it.
25675         * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
25676         (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
25677         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
25678         (gst_ebml_read_seek), (gst_ebml_read_skip):
25679           Handle events.
25680         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
25681         (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
25682         (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
25683           Fix timing (this will probably break if I seek using menus, but
25684           I didn't get there yet). VOBs and normal DVDs should now work.
25685           Add a mpeg2-only pad with high rank so this get autoplugged for
25686           MPEG-2 movies.
25687         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
25688         (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
25689         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
25690         (gst_mpeg_demux_get_audio_stream),
25691         (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
25692         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
25693           Use this as second rank for MPEG-1 and MPEG-2. Still use this for
25694           MPEG-1 but use dvddemux for MPEG-2.
25695         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
25696         (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
25697         (gst_mpeg_parse_parse_packhead):
25698           Timing. Only add pad template if it exists. Add sink template from
25699           class and not from ourselves. This means we will always use the
25700           correct sink template even if it is not the one defined in this
25701           file.
25702
25703 2004-09-29  Wim Taymans  <wim@fluendo.com>
25704
25705         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
25706         (gst_mpeg_demux_parse_pes):
25707         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
25708         Fix playback of mpeg again, timestamps where screwed up by
25709         patch 1.61.
25710
25711 2004-09-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25712
25713         * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
25714           Only return true if we actually filled something in. Prevents
25715           player applications from showing a random length for flac files.
25716         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
25717         (gst_riff_read_use_event), (gst_riff_read_handle_event),
25718         (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
25719         (gst_riff_read_strf_vids_with_data),
25720         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
25721           OK, ok, so I implemented event handling. Apparently it's normal
25722           that we receive random events at random points without asking
25723           for it.
25724         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
25725         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
25726         (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
25727         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
25728         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
25729         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
25730         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
25731         * gst/avi/gstavidemux.h:
25732           Implement non-lineair chunk handling and subchunk processing.
25733           The first solves playback of AVI files where the audio and video
25734           data of individual buffers that we read are not synchronized.
25735           This should not happen according to the wonderful AVI specs, but
25736           of course it does happen in reality. It is also a prerequisite for
25737           the second. Subchunk processing allows us to cut chunks in small
25738           pieces and process each of these pieces separately. This is
25739           required because I've seen several AVI files with incredibly large
25740           audio chunks, even some files with only one audio chunk for the
25741           whole file. This allows for proper playback including seeking.
25742           This patch is supposed to fix all AVI A/V sync issues.
25743         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
25744         (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
25745           Work.
25746         * gst/modplug/gstmodplug.cc:
25747           Proper return value setting for the query() function.
25748         * gst/playback/gstplaybasebin.c: (setup_source):
25749           Being in non-playing state (after, e.g., EOS) is not necessarily
25750           a bad thing. Allow for that. This fixes playback of short files.
25751           They don't actually playback fully now, because the clock already
25752           runs. This means that small files (<500kB) with a small length
25753           (<2sec) will still not or barely play. Other files, such as mod
25754           or flx, will work correctly, however.
25755
25756 2004-09-28  Wim Taymans  <wim@fluendo.com>
25757
25758         * ext/speex/gstspeex.c: (plugin_init):
25759         * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
25760         (gst_speex_dec_class_init), (speex_dec_get_formats),
25761         (speex_get_event_masks), (speex_get_query_types),
25762         (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
25763         (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
25764         (gst_speexdec_get_property), (gst_speexdec_set_property),
25765         (speex_dec_change_state):
25766         * ext/speex/gstspeexdec.h:
25767         * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
25768         (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
25769         (gst_speexenc_base_init), (gst_speexenc_class_init),
25770         (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
25771         (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
25772         (gst_speexenc_src_query), (gst_speexenc_init),
25773         (gst_speexenc_get_tag_value), (comment_init), (comment_add),
25774         (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
25775         (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
25776         (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
25777         (gst_speexenc_chain), (gst_speexenc_get_property),
25778         (gst_speexenc_set_property), (gst_speexenc_change_state):
25779         * ext/speex/gstspeexenc.h:
25780         Rewrote speex encoder, make sure it can be embedded in ogg.
25781         Implemented speex decoder.
25782
25783 2004-09-28  Christian Schaller <christian@fluendo.com>
25784
25785         * configure.ac:
25786         Remove kioslave plugin. Markey is brewing a new working one
25787         * ext/Makefile.am: Remove kioslave plugin
25788         * ext/kio: remove
25789         * gst-plugins.spec.in: remove kio plugin from spec
25790
25791 2004-09-27  Wim Taymans  <wim@fluendo.com>
25792
25793         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
25794         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
25795         (is_sync_frame), (gst_multifdsink_client_queue_buffer),
25796         (gst_multifdsink_new_client),
25797         (gst_multifdsink_handle_client_write),
25798         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
25799         (gst_multifdsink_handle_clients):
25800         * gst/tcp/gstmultifdsink.h:
25801         Make syncing to keyframes actually work for new clients and lagging
25802         clients.
25803
25804 2004-09-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25805
25806         * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
25807         (gst_navigationtest_handle_src_event), (draw_box_planar411),
25808         (gst_navigationtest_planar411), (gst_navigationtest_change_state):
25809         * gst/debug/gstnavigationtest.h:
25810           make navigationtest display button-press and button-release events
25811
25812 2004-09-26 Iain <iaingnome@gmail.com>
25813
25814         * gst/interleave/interleave.c (all_channels_new_media): Checks if all
25815         the channels have received a new media event.
25816         (interleave_buffered_loop): Compresses a new media event on all
25817         channels into one.
25818
25819 2004-09-26 Iain <iaingnome@gmail.com>
25820
25821         * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
25822         call the sinkpad's default event handler and not the srcpads. He also
25823         says this is confusing :)
25824         (gst_wavenc_stop_file): Company says that seek events only go upstream
25825         we should send a discontinuous downstream instead.
25826
25827 2004-09-25  Christian Schaller <christian@fluendo.com>
25828
25829         * Update SPEC file to be usable in conjunction with Fedora Core,
25830           Fedora.us and freshrpms packages
25831         * Fix typo in multifilesrc test Makefile
25832
25833 2004-09-24  Wim Taymans  <wim@fluendo.com>
25834
25835         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
25836         Only signal the no_more_pads signal when we have
25837         added the stream to our list.
25838
25839 2004-09-24  Wim Taymans  <wim@fluendo.com>
25840
25841         * gst/playback/gstplaybasebin.c: (remove_prerolls),
25842         (new_decoded_pad):
25843         * gst/playback/gstplaybasebin.h:
25844         * gst/playback/gstplaybin.c: (setup_sinks):
25845         Don't try to preroll or decode more than one audio/video
25846         track.
25847
25848 2004-09-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25849
25850         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
25851           Throw error if we failed to find a suitable output. This should
25852           throw an error if we successfully set up a pipeline (e.g. because
25853           we recognized a media file) but found no decodable streams in it
25854           (e.g. because it contains only media stream types for which we
25855           have no decoders, or because it's not a media type).
25856
25857 2004-09-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25858
25859         * ext/dirac/Makefile.am:
25860         * ext/dirac/gstdirac.cc:
25861         * ext/dirac/gstdiracdec.cc:
25862         * ext/dirac/gstdiracdec.h:
25863           Do something. Don't actually know if this works because I don't
25864           have a demuxer yet.
25865         * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
25866           Add channels=1 to caps returned from _getcaps().
25867         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
25868         (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
25869         (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
25870         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
25871         (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
25872         (gst_ogm_parse_change_state):
25873           Separate between audio/video so ogmaudioparse actually uses the
25874           audio pad templates. Both audio and video work now, including
25875           autoplugging. Also use sometimes-srcpad hack.
25876         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
25877           Handle events better. Don't hang on infinite loops.
25878         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
25879         (gst_avi_demux_init), (gst_avi_demux_reset),
25880         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
25881         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
25882         (gst_avi_demux_change_state):
25883         * gst/avi/gstavidemux.h:
25884           Improve A/V sync. Still not perfect.
25885         * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
25886         (gst_ebml_read_skip):
25887           Handle events better.
25888         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
25889         (gst_qtdemux_loop_header), (qtdemux_parse_trak),
25890         (qtdemux_audio_caps):
25891           Add IMA4. Improve event handling. Save offset after a seek when
25892           the headers are at the end of the file so that we don't end up in
25893           an infinite loop.
25894         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
25895           Add low-priority typefind support for files with no length.
25896
25897 2004-09-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
25898
25899         * testsuite/multifilesink/Makefile.am:
25900         fix typo
25901
25902 2004-09-22  Julien MOUTTE  <julien@moutte.net>
25903
25904         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
25905         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
25906         mistakes from thaytan's patches.
25907
25908 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
25909
25910         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
25911           For completeness, XSync in the destroy function as xvimage does.
25912
25913 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
25914
25915         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
25916            Correct caps negotiation
25917         * gst/volume/gstvolume.c: (volume_chain_float),
25918         (volume_chain_int16):
25919            Modify debug output to be little more informative
25920         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
25921         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
25922         (gst_xvimagesink_xvimage_destroy):
25923           Add XSync calls after detaching from the shared memory segment to
25924           avoid a crash.
25925
25926 2004-09-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
25927
25928         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
25929         (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
25930         * ext/vorbis/vorbis.c: (plugin_init):
25931         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
25932         (gst_vorbisenc_chain):
25933         * ext/vorbis/vorbisenc.h:
25934         remove explicit newmedia support from oggmux and vorbisenc
25935         add debug category to vorbisenc
25936         * gst/multifilesink/gstmultifilesink.c:
25937         (gst_multifilesink_class_init), (gst_multifilesink_init),
25938         (gst_multifilesink_dispose), (gst_multifilesink_set_location),
25939         (gst_multifilesink_set_property), (gst_multifilesink_next_file),
25940         (gst_multifilesink_handle_event), (gst_multifilesink_chain),
25941         (plugin_init):
25942         * gst/multifilesink/gstmultifilesink.h:
25943         add support for streamheader in multifilesink
25944
25945 2004-09-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25946
25947         * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
25948         (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
25949         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
25950           Prevent infinite loops. More correct error reporting.
25951         * gst/auparse/gstauparse.c: (gst_auparse_chain):
25952           Error out if negotiation fails.
25953         * gst/playback/gstplaybasebin.c: (setup_source),
25954         (gst_play_base_bin_change_state), (gst_play_base_bin_error),
25955         (gst_play_base_bin_found_tag):
25956           Error/tag forwarding. Pre-roll fixes for source errors on state
25957           changes (e.g. "file does not exist") to prevent hangs.
25958
25959 2004-09-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
25960
25961         * testsuite/multifilesink/Makefile.am:
25962         * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
25963         (gst_newmedia_class_init), (gst_newmedia_init),
25964         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
25965         (newfile_signal), (test_signal), (main):
25966         * testsuite/multifilesink/multifilesrc_test.c: (main):
25967         * testsuite/multifilesink/oggtheora_test.c:
25968         (gst_newmedia_base_init), (gst_newmedia_class_init),
25969         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
25970         (test_format), (newfile_signal), (test_signal), (main):
25971         * testsuite/multifilesink/oggvorbis_test.c:
25972         (gst_newmedia_base_init), (gst_newmedia_class_init),
25973         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
25974         (test_format), (newfile_signal), (test_signal), (main):
25975         * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
25976         (gst_newmedia_class_init), (gst_newmedia_init),
25977         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
25978         (newfile_signal), (test_signal), (main):
25979         New media tests
25980
25981 2004-09-20  Christian Schaller <christian@fluendo.com>
25982
25983         * Fix mikmod license to LGPL as they have relicensed
25984         * Move Dirac and Effectv into LGPL section of README_license
25985
25986 2004-09-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25987
25988         * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
25989         (gst_mad_change_state):
25990           Allow for mp3 rate/channels changes. However, only very
25991           conservatively. Reason that we *have* to enable this is smiply
25992           because the mad find_sync() function is not good enough, it will
25993           regularly sync on random data as valid frames and therefore make
25994           us provide random caps as *final* caps of the stream. The best fix
25995           I could think of is to simply require several of the same stream
25996           changes in a row before we change caps.
25997           The actual testcase that works now is #
25998         * ext/ogg/Makefile.am:
25999         * ext/ogg/gstogg.c: (plugin_init):
26000         * ext/ogg/gstogmparse.c:
26001           OGM support (video only for now; I need an audio sample file).
26002         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
26003         (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
26004         (gst_asf_demux_add_video_stream):
26005           WMV extradata.
26006         * gst/playback/gstplaybasebin.c: (unknown_type):
26007           Don't error out on single unknown-types after all. It's wrong.
26008           If we found type of video and audio but not of a subtitle stream,
26009           it will still error out (which is unwanted). Will find a better fix
26010           later on.
26011         * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
26012         (ogmaudio_type_find), (plugin_init):
26013           OGM support.
26014
26015 2004-09-20  Johan Dahlin  <johan@gnome.org>
26016
26017         * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
26018         after setting caps.
26019
26020 2004-09-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
26021
26022         * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
26023         * gst/wavenc/gstwavenc.h:
26024         Added newmedia support to wavenc
26025
26026 2004-09-17  Wim Taymans  <wim@fluendo.com>
26027
26028         * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
26029         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
26030         (gst_fdset_fd_can_write), (gst_fdset_wait):
26031         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
26032         (gst_multifdsink_init), (gst_multifdsink_add),
26033         (gst_multifdsink_remove), (gst_multifdsink_get_stats),
26034         (gst_multifdsink_remove_client_link),
26035         (gst_multifdsink_client_queue_buffer),
26036         (gst_multifdsink_handle_client_write),
26037         (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
26038         (gst_multifdsink_close), (gst_multifdsink_change_state):
26039         * gst/tcp/gstmultifdsink.h:
26040         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
26041         (gst_tcpserversink_removed):
26042         Small cleanups in fdset.c
26043         Use a hastable to map fd to the client structure for faster
26044         lookup in _remove and get_stats.
26045         Added virtual function to close the fds.
26046         Handle clients even when the select/poll call was unblocked because
26047         of a command.
26048         Implement syncing to keyframe in the recovery procedure.
26049
26050 2004-09-16 Iain <iaingnome@gmail.com>
26051
26052         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
26053         try caps.
26054
26055 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26056
26057         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
26058           Caps are only set if the type of the stream is unknown, but this
26059           is initialized in ->init_stream(), so set to UNKNOWN after calling
26060           ->init_stream() so that capsnego starts.
26061
26062 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26063
26064         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
26065         (gst_avi_demux_stream_data):
26066           Just hardcode for raw audio then. AVI audio sucks.
26067
26068 2004-09-15  Arwed v. Merkatz  <v.merkatz@gmx.net>
26069
26070         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
26071         * gst/matroska/matroska-mux.c: (audiosink_templ),
26072         (gst_matroska_mux_audio_pad_link):
26073         * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
26074         Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
26075
26076 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26077
26078         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
26079         (gst_avi_demux_stream_data):
26080           Try to fix a/v sync issues.
26081
26082 2004-09-15  David Schleef  <ds@schleef.org>
26083
26084         * configure.ac: remove NASM check, since we don't use it.  Update
26085         dirac check to 0.4
26086         * ext/dirac/gstdiracdec.cc: update to current 0.4 API
26087         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
26088         Initialized variables.
26089         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
26090         (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
26091         (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
26092         SVQ3 format
26093
26094 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26095
26096         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
26097         (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
26098         * gst/avi/gstavidemux.h:
26099           Fix for compressed audio (mp3) timestamp generation. How did this
26100           ever work?
26101
26102 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26103
26104         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
26105           Volume is a double not a float.
26106
26107 2004-09-15  Wim Taymans  <wim@fluendo.com>
26108
26109         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
26110         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
26111         Don't close the fd in multifdsink as we didn't open it in the
26112         first place. Some cleanups.
26113
26114 2004-09-15  Wim Taymans  <wim@fluendo.com>
26115
26116         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
26117         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
26118         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
26119         Fix the case where the muxer would mark pages as delta
26120         frames when they are not (vorbis only ogg).
26121
26122 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26123
26124         * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
26125         (gst_play_base_bin_change_state):
26126           Handle the case where we failed to setup a clear pipeline. This
26127           will throw an error (or EOS, another nice case) and if you don't
26128           catch that, the app will wait for the signal forever (and thus
26129           hang).
26130
26131 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26132
26133         * ext/gnomevfs/gstgnomevfssink.c:
26134         (gst_gnomevfssink_uri_get_protocols):
26135         * ext/gnomevfs/gstgnomevfssrc.c:
26136         (gst_gnomevfssrc_uri_get_protocols):
26137         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
26138         * ext/gnomevfs/gstgnomevfsuri.h:
26139           Use _uri_new() instead of _open(), so it doesn't take as long and
26140           Christophe's computer won't hang.
26141         * gst/playback/gstplaybasebin.c: (unknown_type):
26142           Throw error on unknown media type, so apps actually display it.
26143
26144 2004-09-14  Brian Cameron  <brian.cameron@sun.com
26145
26146         * tools/gst-launch-ext-m.m:  Changed ~ to $ENV{HOME} to allow
26147           this script to work on Solaris since bash shell handles echo
26148           differenly than bash.
26149
26150 2004-09-17  Wim Taymans  <wim@fluendo.com>
26151
26152         * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
26153         (setup_source), (gst_play_base_bin_set_property),
26154         (gst_play_base_bin_add_element):
26155         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
26156         Some more work on making sure seeking pauses the pipeline and
26157         that changing the uri actually does something.
26158
26159 2004-09-17  Wim Taymans  <wim@fluendo.com>
26160
26161         * gst/tcp/gstfdset.c: (gst_fdset_wait):
26162         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
26163         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
26164         (gst_tcpserversink_close):
26165         Be a bit more paranoid when freeing memory.
26166
26167 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26168
26169         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
26170         (qtdemux_parse_trak):
26171           Don't crash by dividing by zero (see sample movie in #126922).
26172
26173 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26174
26175         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
26176           Don't touch non-existing data (fixes crash on file in #140147).
26177
26178 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26179
26180         * gst/playback/gstplaybasebin.c:
26181         (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
26182           Handle double disposals, and proper change of URIs.
26183
26184 2004-09-13  Martin Eikermann <meiker@upb.de>
26185
26186         * gst/mpegstream/gstmpegparse.c:
26187           fix synchronistation for streams recorded from digital PCR
26188           fixes bug #119376
26189
26190 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26191
26192         * ext/gnomevfs/Makefile.am:
26193         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
26194         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
26195         (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
26196         (gst_gnomevfssink_uri_get_type),
26197         (gst_gnomevfssink_uri_get_protocols),
26198         (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
26199         (gst_gnomevfssink_uri_handler_init),
26200         (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
26201         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
26202         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
26203         (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
26204         (gst_gnomevfssrc_uri_get_type),
26205         (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
26206         (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
26207         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
26208         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
26209         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
26210         * ext/gnomevfs/gstgnomevfsuri.h:
26211           Add URI support to Gnome-VFS plugins. Tries to load a fixed list
26212           of fake URIs to see which this version of Gnome-VFS likes, and
26213           uses that for the Gst-URI interface. Makes playbin support http://
26214           streams. Also fix up some stupid behaviour in gnomevfssrc.
26215
26216 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26217
26218         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
26219         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
26220         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
26221         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
26222           Update mixer (to sync with other sessions) if we try to obtain
26223           a new value. This makes alsamixer work accross applications.
26224         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
26225           Only call sync functions if we're running, else alsalib asserts.
26226         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
26227           Sometimes fails to compile. Possibly a gcc bug.
26228         * gst/playback/gstplaybin.c: (gen_video_element),
26229         (gen_audio_element):
26230           Add a reference to an application-provided object, because we lose
26231           this same reference if we add it to the bin. If we don't do this,
26232           we can only use this object once and thus crash if we go from
26233           ready to playing, back to ready and back to playing again.
26234           Also add an audioscale element because several cheap soundcards -
26235           like mine - don't support all samplerates.
26236         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
26237         (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
26238           Fix wrong order or PAR calls. Makes automatically obtained PAR
26239           from the X server atually being used.
26240
26241 2004-09-12  David Schleef  <ds@schleef.org>
26242
26243         Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
26244         #151887, #152102, #152247.
26245         * examples/indexing/indexmpeg.c: 64-bit warning fixes.
26246         * examples/seeking/cdparanoia.c: same
26247         * examples/seeking/cdplayer.c: same
26248         * examples/seeking/seek.c: same
26249         * examples/seeking/spider_seek.c: same
26250         * examples/seeking/vorbisfile.c: same
26251         * examples/stats/mp2ogg.c: same
26252         * ext/esd/esdsink.c: (gst_esdsink_class_init),
26253         (gst_esdsink_dispose): Dispose of element properly.
26254         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
26255         fixes.
26256         * ext/nas/nassink.c: (gst_nassink_class_init),
26257         (gst_nassink_dispose): Dispose of element correctly.
26258         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
26259         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
26260         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
26261         Fix 64-bit warning.
26262         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
26263         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
26264         Fix 64-bit warning.
26265
26266 2004-09-12  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
26267
26268         * configure.ac : change speex detection as 1.1.6 now uses
26269           .pc/pkg-config and they changed their headers location.
26270
26271 2004-09-09  Arwed v. Merkatz  <v.merkatz@gmx.net>
26272
26273         * gst/matroska/matroska-mux.h:
26274         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
26275         (gst_matroska_mux_start), (gst_matroska_mux_finish),
26276         (gst_matroska_mux_write_data):
26277           Write multiple blocks/frames per cluster.
26278                 Write meta-seek information (seek heads).
26279
26280 2004-09-09  Scott Wheeler <wheeler@kde.org>
26281
26282         * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
26283         (gst_play_bin_set_property), (gst_play_bin_get_property),
26284         (gen_audio_element), (gen_audio_element):
26285           Add a volume element / property to the pipeline.
26286
26287 2004-09-07  Wim Taymans  <wim@fluendo.com>
26288
26289         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
26290         Copy timestamps from the master pad to the output buffers.
26291
26292 2004-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
26293
26294         * ext/raw1394/gstdv1394src.c:
26295           throw errors when applicable
26296
26297 2004-09-01  Arwed v. Merkatz  <v.merkatz@gmx.net>
26298
26299         * gst/matroska/ebml-ids.h:
26300         * gst/matroska/ebml-read.c: (gst_ebml_read_date):
26301         * gst/matroska/ebml-write.c: (gst_ebml_write_date):
26302         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
26303           automatically convert unix time <-> ebml time when reading/writing
26304           a date, use gst_ebml_write_uint to write CUETIME,
26305           not gst_ebml_write_date.
26306         * gst/matroska/matroska-ids.h:
26307         * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
26308         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
26309         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
26310         (gst_matroska_mux_write_data):
26311           Write track and segment UIDs, write muxing date, write
26312           TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
26313           Create cues for audio only files.
26314
26315 2004-08-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26316
26317         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
26318         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
26319           Re-commit ALSA switches.
26320         * gst/adder/gstadder.c: (gst_adder_loop):
26321           64-bit fix (#151416).
26322         * gst/debug/progressreport.c: (gst_progressreport_report):
26323           64-bit fix (#151419).
26324         * gst/matroska/matroska-demux.c:
26325         (gst_matroska_demux_parse_contents):
26326           64-bit fix (#151420).
26327         * gst/playback/test3.c: (update_scale):
26328           64-bit fix (#151421).
26329
26330 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
26331
26332         * configure.ac:
26333           bump nano to cvs
26334
26335 === release 0.8.4 ===
26336
26337 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
26338
26339         * configure.ac: releasing 0.8.4, "Alias"
26340
26341 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
26342
26343         * ext/theora/Makefile.am:
26344           fix makefile.  Fixes #151462.
26345
26346 2004-08-30  Wim Taymans  <wim@fluendo.com>
26347
26348         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
26349         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
26350         (gst_multifdsink_remove_client_link),
26351         (gst_multifdsink_client_queue_buffer),
26352         (gst_multifdsink_handle_client_write):
26353         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
26354         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
26355         Fix some memory leaks.
26356
26357 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
26358
26359         Patch by: David Schleef
26360
26361         * configure.ac:
26362         * sys/Makefile.am:
26363           rename our detection macro for V4L2.  Fixes #151236.
26364
26365 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
26366
26367         Patch by: David Schleef
26368
26369         * configure.ac:
26370           check to define LAMEPRESET.  Fixes #151232.
26371
26372 2004-08-27  David Schleef  <ds@schleef.org>
26373
26374         * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
26375         (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
26376         (gst_glimagesink_fixate):  Move local variable declarations to
26377         make gcc-2.95 happy.
26378
26379 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
26380
26381         * configure.ac:
26382           bump nano for prerelease
26383
26384 2004-08-27  David Schleef  <ds@schleef.org>
26385
26386         * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
26387         * sys/sunaudio/gstsunaudiosrc.c:
26388         * sys/sunaudio/gstsunaudiosrc.h:
26389
26390 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
26391
26392         * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
26393         handle EOS correctly
26394         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
26395         * gst/matroska/matroska-mux.h:
26396         added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
26397         VFW compatibility mode
26398
26399 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
26400
26401         patch by: Zaheer Abbas Merali
26402
26403         * ext/ogg/gstoggmux.c:
26404         * ext/vorbis/vorbisenc.c:
26405         * ext/vorbis/vorbisenc.h:
26406           handle NEWMEDIA
26407
26408 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
26409
26410         * gst/matroska/ebml-write.c: (gst_ebml_write_float),
26411         fix byte order reversion on little endian machines.
26412         * gst/matroska/matroska-mux.c: (audiosink_templ),
26413         (gst_matroska_mux_audio_pad_link):
26414         add TTA codec to the list of supported codecs.
26415         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
26416         (gst_matroska_mux_start), (gst_matroska_mux_finish),
26417         (gst_matroska_mux_write_data):
26418         * gst/matroska/matroska-mux.h:
26419         write segment duration correctly, write muxing app string, fixes bugs
26420         #140897 and #140898.
26421         * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
26422         wait for all pads to be negotiated before starting to mux.
26423
26424 2004-08-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
26425
26426         * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
26427         * ext/lame/gstlame.h:
26428         Added new media support to lame
26429
26430 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
26431
26432         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
26433         send vorbis headers at the beginning of a stream, fixes bug #141554.
26434         Interpret BLOCKDURATION and set buffer duration accordingly, fixes
26435         bug #148950.
26436         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
26437         (gst_matroska_demux_plugin_init):
26438         * gst/matroska/matroska-ids.h:
26439         enable demuxing of TTA audio streams, fixes bug #148951.
26440         * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
26441         enable typefinding for TTA audio files, fixes bug #148711.
26442         * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
26443         set XVID_LOWDELAY flag for decoding so xvid always returns an image,
26444         fixes playback of packed bitstream and xvid with bframes, bug #135407.
26445
26446 2004-08-24  Sebastien Cote  <sc5@hermes.usherb.ca>
26447
26448         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
26449         (gst_riff_read_element_data), (gst_riff_read_seek),
26450         (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
26451         #144616, patch reviewed by Ronald and committed by Christophe Fergeau
26452         <teuf@gnome.org>
26453
26454 2004-08-23 Iain <iaingnome@gmail.com>
26455
26456         * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
26457         tags. They appear to be handled differently to normal.
26458         (tag_list_to_id3_tag_foreach): Ditto.
26459
26460 2004-08-22  Wim Taymans  <wim@fluendo.com>
26461
26462         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
26463         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
26464         Make sure we never send -1 granulepos.
26465
26466 2004-08-20  Wim Taymans  <wim@fluendo.com>
26467
26468         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
26469         (gst_ogg_mux_loop):
26470         I will accept bitchslappings with non sharp objects.
26471
26472 2004-08-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
26473
26474         * configure.ac:
26475         Clean up the test for lame presets
26476
26477 2004-08-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
26478
26479         * configure.ac:
26480         * ext/lame/Makefile.am:
26481         * ext/lame/gstlame.c: (gst_lame_class_init),
26482         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
26483         Only enable lame presets if version of lame has presets in API
26484
26485 2004-08-19  Jan Schmidt  <thaytan@mad.scientist.com>
26486         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
26487         * gst/udp/gstudpsrc.h:
26488           Don't call gst_pad_push in a get function. Fixes #150449
26489
26490 2004-08-18  Wim Taymans  <wim@fluendo.com>
26491
26492         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
26493         (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
26494         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
26495         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
26496         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
26497         (gst_fdset_wait):
26498         * gst/tcp/gstfdset.h:
26499         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
26500         (gst_multifdsink_client_queue_buffer),
26501         (gst_multifdsink_handle_client_write):
26502         * gst/tcp/gstmultifdsink.h:
26503         Some extra checks in gstfdset.
26504         Only use send() when the fd is a socket. Don't try to
26505         read from write only fds.
26506
26507 2004-08-18  Wim Taymans  <wim@fluendo.com>
26508
26509         * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
26510         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
26511         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
26512         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
26513         (gst_fdset_wait):
26514         Add more locking and bounds checking.
26515
26516 2004-08-18  Wim Taymans  <wim@fluendo.com>
26517
26518         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
26519         Realloc test fdset in the lock and right before starting
26520         the poll call. Bump the limit to 4096.
26521
26522 2004-08-17  David Schleef  <ds@schleef.org>
26523
26524         * sys/sunaudio/Makefile.am:
26525         * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
26526         of rates and channels.  Make debugging less obnoxious.
26527
26528         Patch from Balamurali Viswanathan implementing a mixer for
26529         Sun audio.  (bug #144091):
26530         * sys/sunaudio/gstsunelement.c:
26531         * sys/sunaudio/gstsunelement.h:
26532         * sys/sunaudio/gstsunmixer.c:
26533         * sys/sunaudio/gstsunmixer.h:
26534
26535 2004-08-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
26536
26537         * gst/audioscale/gstaudioscale.c:
26538         * gst/audioscale/gstaudioscale.h:
26539         made audioscale resample from any sample rate to any sample rate
26540
26541 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
26542
26543         * ext/libpng/gstpngdec.c:
26544           error out on unsupported types
26545
26546 2004-08-17  Iain <iaingnome@gmail.com>
26547
26548         * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
26549         mid_side and loose_mid_side properties if its a stereo stream.
26550
26551 2004-08-17  Wim Taymans  <wim@fluendo.com>
26552
26553         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
26554         (theora_get_formats), (theora_dec_src_convert),
26555         (theora_dec_sink_convert), (theora_dec_src_query),
26556         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
26557         Add a debug line.
26558
26559 2004-08-17  Wim Taymans  <wim@fluendo.com>
26560
26561         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
26562         (gst_ogg_pad_push):
26563         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
26564         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
26565         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
26566         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
26567         Mark delta units in the muxer.
26568         Try to decode the packet after an out-of-sync error from
26569         libogg.
26570
26571 2004-08-17  Wim Taymans  <wim@fluendo.com>
26572
26573         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
26574         (gst_multifdsink_init), (gst_multifdsink_add),
26575         (gst_multifdsink_client_queue_buffer),
26576         (gst_multifdsink_set_property), (gst_multifdsink_get_property):
26577         * gst/tcp/gstmultifdsink.h:
26578         Added option to send a keyframe to clients as the first buffer.
26579         Make timeout property writable.
26580
26581 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
26582
26583         patch by: Wim Taymans
26584
26585         * gst/tcp/gstfdset.c:
26586         * gst/tcp/gstmultifdsink.c:
26587           fix index comparison, should include 0
26588
26589 2004-08-16  Wim Taymans  <wim@fluendo.com>
26590
26591         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
26592         (gst_fdset_add_fd), (gst_fdset_remove_fd),
26593         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
26594         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
26595         (gst_fdset_wait):
26596           copy when reallocing for poll so the select arguments don't get
26597           changed during the call
26598
26599 2004-08-16  Wim Taymans  <wim@fluendo.com>
26600
26601         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
26602         (gst_theora_enc_class_init), (theora_enc_sink_link),
26603         (theora_buffer_from_packet), (theora_enc_chain):
26604         Fix bug where buffers were not marked as keyframes
26605         correctly.
26606
26607 2004-08-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
26608
26609         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
26610         (gst_lame_preset_get_type), (gst_lame_class_init):
26611         describe the enum values for vbr mode and presets more verbosely
26612
26613 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
26614
26615         * ext/lame/gstlame.c: (gst_lame_mode_get_type),
26616         (gst_lame_quality_get_type), (gst_lame_padding_get_type),
26617         (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
26618         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
26619         * ext/lame/gstlame.h:
26620         add preset property to lame so it can use lame presets
26621
26622 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
26623
26624         * ext/lame/gstlame.c: (gst_lame_get_property):
26625         whoops forgot break, thanks teuf
26626
26627 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
26628
26629         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
26630         (gst_lame_class_init), (gst_lame_src_getcaps),
26631         (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
26632         (gst_lame_get_property), (gst_lame_setup):
26633         * ext/lame/gstlame.h:
26634         fix lame's broken vbr stuff, allow it to resample if need be, and also
26635         make xing header optional
26636
26637 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
26638
26639         * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
26640         added getcaps function so samplerate doesnt get fixated to silly values
26641
26642 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
26643
26644         * ext/lame/gstlame.c: (gst_lame_src_link):
26645         revert previous fix
26646
26647 2004-08-12  Johan Dahlin  <johan@gnome.org>
26648
26649         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
26650         checks. Doesn't matter what state we are in. Interfaces are a
26651         compile time thing, not runtime. It also broke the python bindings.
26652
26653 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
26654
26655         * ext/lame/gstlame.c: (gst_lame_src_link):
26656         made source pad link function check if sinkpad is ok..fixes the problem
26657         where core fixates the output rate of lame stupidly
26658
26659 2004-08-12  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
26660
26661         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
26662         * sys/v4l/v4l_calls.c:
26663         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
26664           fix fixate function to handle nonsimple caps.
26665           remove bogus check in _link
26666           cleanups
26667
26668 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
26669
26670         * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
26671         set default compression ratio parameter to 0.0 so bitrate parameter
26672         works :)
26673
26674 2004-08-11  David Schleef  <ds@schleef.org>
26675
26676         * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
26677
26678 2004-08-11  David Schleef  <ds@schleef.org>
26679
26680         * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
26681         before.
26682
26683 2004-08-11  David Schleef  <ds@schleef.org>
26684
26685         * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
26686
26687 2004-08-11  David Schleef  <ds@schleef.org>
26688
26689         * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
26690           license field
26691         * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
26692         * gst-libs/gst/video/gstvideosink.c: Change copyright block to
26693           LGPL.
26694         * gst/auparse/gstauparse.c: Fix plugin license field.
26695         * gst/monoscope/gstmonoscope.c: Fix plugin license field.
26696         * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
26697         * gst/rtp/gstrtp.c: Fix plugin license field.
26698
26699 2004-08-11  Wim Taymans  <wim@fluendo.com>
26700
26701         * gst/tcp/Makefile.am:
26702         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
26703         (ensure_size), (gst_fdset_new), (gst_fdset_free),
26704         (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
26705         (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
26706         (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
26707         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
26708         (gst_fdset_fd_can_write), (gst_fdset_wait):
26709         * gst/tcp/gstfdset.h:
26710         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
26711         (gst_multifdsink_class_init), (gst_multifdsink_init),
26712         (gst_multifdsink_add), (gst_multifdsink_remove),
26713         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
26714         (gst_multifdsink_remove_client_link),
26715         (gst_multifdsink_handle_client_read),
26716         (gst_multifdsink_client_queue_data),
26717         (gst_multifdsink_client_queue_caps),
26718         (gst_multifdsink_client_queue_buffer),
26719         (gst_multifdsink_handle_client_write),
26720         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
26721         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
26722         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
26723         (gst_multifdsink_close):
26724         * gst/tcp/gstmultifdsink.h:
26725         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
26726         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
26727         (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
26728         (gst_tcpserversink_close):
26729         * gst/tcp/gsttcpserversink.h:
26730         Abstracted away the select call, implemented poll (yes we ran into
26731         the 1024 limit in production).
26732
26733 2004-08-11  Thomas Vander Stichele  <thomas at apestaart dot org>
26734
26735         * gst/tcp/gsttcp.c:
26736         * gst/tcp/gsttcpplugin.c:
26737           improve debuggging, remove assert
26738
26739 2004-08-10  Wim Taymans  <wim@fluendo.com>
26740
26741         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
26742         (gst_client_status_get_type), (gst_multifdsink_class_init),
26743         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
26744         (gst_multifdsink_handle_client_read),
26745         (gst_multifdsink_handle_client_write),
26746         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
26747         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
26748         (gst_multifdsink_get_property):
26749         * gst/tcp/gstmultifdsink.h:
26750         * gst/tcp/gsttcp-marshal.list:
26751         Starting to prepare for specifying buffer time in other units
26752         than buffers. Expose remove reason in signal.
26753
26754 2004-08-10  Wim Taymans  <wim@fluendo.com>
26755
26756         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
26757         (gst_multifdsink_remove), (gst_multifdsink_clear),
26758         (gst_multifdsink_remove_client_link),
26759         (gst_multifdsink_handle_client_read),
26760         (gst_multifdsink_client_queue_data),
26761         (gst_multifdsink_client_queue_buffer),
26762         (gst_multifdsink_handle_client_write),
26763         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
26764         (gst_multifdsink_chain), (gst_multifdsink_close):
26765         * gst/tcp/gstmultifdsink.h:
26766         Added more debugging info. Changed the way clients are
26767         removed from the lists. Fixed a bug where a bad file descriptor
26768         could cause many clients to be removed.
26769
26770 2004-08-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26771
26772         * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
26773           allow all pixel-aspect-ratios, not just 1:1
26774
26775 2004-08-09  David Schleef  <ds@schleef.org>
26776
26777         * sys/glsink/ARB_multitexture.h:  Remove old files.
26778         * sys/glsink/EXT_paletted_texture.h:
26779         * sys/glsink/NV_register_combiners.h:
26780         * sys/glsink/gstgl_nvimage.c:
26781         * sys/glsink/gstgl_pdrimage.c:
26782         * sys/glsink/gstgl_rgbimage.c:
26783         * sys/glsink/gstglsink.c:
26784         * sys/glsink/gstglsink.h:
26785         * sys/glsink/gstglxwindow.c:
26786         * sys/glsink/regcomb_yuvrgb.c:
26787
26788 2004-08-09  David Schleef  <ds@schleef.org>
26789
26790         Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
26791         GL sink plugin.  (Bug #147302)
26792
26793         * configure.ac: Test for OpenGL
26794         * sys/Makefile.am: Use test for OpenGL
26795         * sys/glsink/Makefile.am:
26796         * sys/glsink/glimagesink.c: rewrite
26797         * sys/glsink/glimagesink.h: rewrite
26798
26799 2004-08-09  David Schleef  <ds@schleef.org>
26800
26801         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init):  Only allow
26802         sane framerates.
26803         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
26804         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
26805         * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
26806
26807 2004-08-09  Wim Taymans  <wim@fluendo.com>
26808
26809         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
26810         (gst_multifdsink_add), (gst_multifdsink_get_stats),
26811         (gst_multifdsink_client_remove),
26812         (gst_multifdsink_handle_client_read),
26813         (gst_multifdsink_handle_client_write),
26814         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
26815         Do a bit more logging, make the client_read code more robust.
26816
26817 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
26818
26819         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
26820         (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
26821         (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
26822         (gst_jpegdec_init), (gst_jpegdec_chain):
26823         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
26824         (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
26825           cleanups, debugging fixes and memleak plugging
26826
26827 2004-08-09  Wim Taymans  <wim@fluendo.com>
26828
26829         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
26830         (theora_get_formats), (theora_dec_src_convert),
26831         (theora_dec_sink_convert), (theora_dec_src_query),
26832         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
26833         (theora_dec_change_state):
26834         Don't crash on missing header packets.
26835
26836 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
26837
26838         * po/LINGUAS:
26839         * po/sq.po:
26840           Added Albanian translation (Laurent Dhima)
26841         * po/cs.po:
26842           updated
26843
26844 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
26845
26846         * ext/lame/gstlame.c:
26847           fix/add debugging
26848
26849 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
26850
26851         * sys/ximage/ximagesink.c:
26852         * sys/xvimage/xvimagesink.c:
26853           assign all TOO_LAZY's to a real category.  Thanks to Warthy Warthog.
26854
26855 2004-08-06  Wim Taymans  <wim@fluendo.com>
26856
26857         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
26858         (gst_multifdsink_add), (gst_multifdsink_get_stats),
26859         (gst_multifdsink_client_remove),
26860         (gst_multifdsink_handle_client_read),
26861         (gst_multifdsink_handle_client_write),
26862         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
26863         Make sure we don't try to read more from a client that what
26864         ioctl says us or we deadlock.
26865
26866 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
26867
26868         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
26869         (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
26870         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
26871           decouple running_time and n_frames so it can handle changing
26872           framerate while running
26873
26874 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
26875
26876         * po/nl.po:
26877         * po/sv.po:
26878           updated translations
26879
26880 2004-08-04  Benjamin Otte  <otte@gnome.org>
26881
26882         * gst/videotestsrc/gstvideotestsrc.c:
26883         (gst_videotestsrc_get_capslist), (generate_capslist),
26884         (plugin_init):
26885           generate the list of supported caps at startup and reuse it instead
26886           of always generating it
26887
26888 2004-07-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26889
26890         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
26891           whoops, last checkin broke normal build
26892
26893 2004-08-03  Benjamin Otte  <otte@gnome.org>
26894
26895         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
26896         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
26897         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
26898         (gst_alsa_mixer_get_option):
26899         * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
26900         (dvdnavsrc_print_event):
26901         * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
26902         * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
26903         (gst_ogg_mux_pad_unlink):
26904         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
26905         (gst_multipart_mux_pad_unlink):
26906         * gst/videofilter/gstvideobalance.c:
26907         (gst_videobalance_colorbalance_set_value):
26908         * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
26909         (gst_videomixer_pad_unlink):
26910         * po/uk.po:
26911         * sys/oss/gstossmixer.c:
26912         * sys/v4l/gstv4lcolorbalance.c:
26913         * sys/v4l/gstv4ltuner.c:
26914         * sys/v4l/v4lsrc_calls.c:
26915         * sys/v4l2/gstv4l2colorbalance.c:
26916         * sys/v4l2/gstv4l2tuner.c:
26917           compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
26918
26919 2004-08-03  Benjamin Otte  <otte@gnome.org>
26920
26921         * examples/dynparams/filter.c: (ui_control_create):
26922         * examples/gstplay/player.c: (print_tag):
26923         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
26924         * ext/gdk_pixbuf/gstgdkanimation.c:
26925         (gst_gdk_animation_iter_may_advance):
26926         * ext/jack/gstjack.c: (gst_jack_request_new_pad):
26927         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
26928         (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
26929         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
26930         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
26931         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
26932         * gst-libs/gst/media-info/media-info-test.c: (print_tag):
26933         * gst/sine/demo-dparams.c: (main):
26934         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
26935         * testsuite/alsa/formats.c: (create_pipeline):
26936         * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
26937           fixes for G_DISABLE_ASSERT and friends
26938         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
26939         (mp3_type_frame_length_from_header), (mp3_type_find),
26940         (plugin_init):
26941           require mp3 typefinding to have at least MIN_HEADERS valid headers
26942           add typefinding for AAC adts files
26943
26944 2004-08-04  Jan Schmidt  <thaytan@mad.scientist.com>
26945
26946         * sys/ximage/ximagesink.c:
26947         (gst_ximagesink_calculate_pixel_aspect_ratio):
26948         * sys/xvimage/xvimagesink.c:
26949         (gst_xvimagesink_calculate_pixel_aspect_ratio):
26950         Make sure we calculate pixel-aspect-ratio using floating point maths
26951
26952 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
26953
26954         * po/uk.po:
26955           updated translation
26956
26957 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
26958
26959         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
26960         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
26961           add debugging for display PAR calculation
26962
26963 2004-08-02  David Schleef  <ds@schleef.org>
26964
26965         * configure.ac: Fix mikmod CFLAGS.
26966
26967 2004-07-27  Benjamin Otte  <otte@gnome.org>
26968
26969         * gst/audioscale/gstaudioscale.c:
26970         - fix templates to only support S16, it's the only format that works
26971         - make caps nego code use try_set_caps_nonfixed and fixation instead
26972         of try_set_caps twice, which is not nice for autopluggers
26973         - change rank to secondary, so autopluggers can pick it up after
26974         audioconvert
26975
26976 2004-08-02  Iain <iain@prettypeople.org>
26977
26978         * gst/interleave/interleave.c (interleave_init),
26979         (interleave_request_new_pad),
26980         (interleave_pad_removed),
26981         (interleave_buffered_loop): Use the real pad count, not the artificial
26982         one.
26983
26984 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
26985
26986         * configure.ac: bump nano back to development
26987
26988 === release 0.8.3 ===
26989
26990 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
26991
26992         * configure.ac: releasing 0.8.3, "Water"
26993
26994 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
26995
26996         * sys/xvimage/xvimagesink.c:
26997         (gst_xvimagesink_calculate_pixel_aspect_ratio),
26998         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
26999         (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
27000         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
27001         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
27002         * sys/xvimage/xvimagesink.h:
27003           apply similar PAR fixes as to ximagesink
27004
27005 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
27006
27007         patch from: Benjamin Otte
27008
27009         * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
27010           add link function to lame.  Fixes #148986.
27011
27012 2004-08-02  Johan Dahlin  <johan@gnome.org>
27013
27014         * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
27015         fix debugging log
27016
27017 2004-07-30  David Schleef  <ds@schleef.org>
27018
27019         * gst/videomixer/Makefile.am: Fix things that should have been
27020         fixed in the last checkin.
27021
27022 2004-07-30  David Schleef  <ds@schleef.org>
27023
27024         * gst/multipart/Makefile.am: Fix things that should have been
27025         fixed in the last checkin.
27026
27027 2004-07-30  David Schleef  <ds@schleef.org>
27028
27029         * testsuite/multifilesink/Makefile.am: Fix unused variable.
27030
27031 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
27032
27033         * configure.ac:
27034           bump nano for prerelease
27035         * po/af.po:
27036         * po/az.po:
27037         * po/cs.po:
27038         * po/en_GB.po:
27039         * po/hu.po:
27040         * po/nl.po:
27041         * po/sr.po:
27042         * po/sv.po:
27043         * po/uk.po:
27044           updates
27045
27046 2004-07-30  Wim Taymans  <wim@fluendo.com>
27047
27048         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
27049         (gst_multifdsink_add), (gst_multifdsink_remove),
27050         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
27051         (gst_multifdsink_client_remove),
27052         (gst_multifdsink_handle_client_write),
27053         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
27054         * gst/tcp/gstmultifdsink.h:
27055         Recover from a select with a bad file descriptor by removing
27056         the client.
27057
27058 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
27059
27060         * configure.ac:
27061           fix requirement of core
27062         * gst-libs/gst/play/play.c: (gst_play_error_plugin),
27063         (gst_play_pipeline_setup):
27064           don't use colorspace element.  do use hermescolorspace element.
27065           make macro to get a colorspace element.
27066           mark strings for translation.
27067         * po/POTFILES.in:
27068           add play.c
27069         * po/af.po:
27070         * po/az.po:
27071         * po/cs.po:
27072         * po/en_GB.po:
27073         * po/hu.po:
27074         * po/nl.po:
27075         * po/sr.po:
27076         * po/sv.po:
27077         * po/uk.po:
27078           update translations
27079
27080 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
27081
27082         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
27083         fix default for newmedia flag
27084
27085 2004-07-30  Wim Taymans  <wim@fluendo.com>
27086
27087         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
27088         (gst_theora_dec_init), (theora_get_formats),
27089         (theora_dec_src_convert), (theora_dec_sink_convert),
27090         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
27091         (theora_dec_chain), (theora_dec_set_property),
27092         (theora_dec_get_property):
27093         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
27094         (gst_theora_enc_class_init), (gst_theora_enc_init),
27095         (theora_enc_sink_link), (theora_enc_chain),
27096         (theora_enc_set_property), (theora_enc_get_property):
27097         Added cropping option to theora decoder.
27098         Added border option to theora encoder.
27099
27100 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
27101
27102         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
27103         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
27104         (gst_pngenc_set_property):
27105         * ext/libpng/gstpngenc.h:
27106         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
27107
27108 2004-07-30  Wim Taymans  <wim@fluendo.com>
27109
27110         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
27111         (theora_enc_sink_link), (theora_enc_chain),
27112         (theora_enc_set_property), (theora_enc_get_property):
27113         Fix encoding of non-multiple-of-16 video.
27114
27115 2004-07-29  David Schleef  <ds@schleef.org>
27116
27117         * configure.ac: make test for audiofile more strict
27118
27119 2004-07-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
27120
27121         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
27122           give different names to typefind functions
27123
27124 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
27125
27126         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
27127         (gst_ximagesink_calculate_pixel_aspect_ratio),
27128         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
27129         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
27130         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
27131         (gst_ximagesink_get_property), (gst_ximagesink_init):
27132         * sys/ximage/ximagesink.h:
27133           allocate PAR's dynamically.
27134           use autodetected PAR if no object-set PAR is given.
27135           add workaround for directfb's X not setting physical size.
27136           fix to xvimagesink will follow tomorrow.
27137
27138 2004-07-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
27139
27140         * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
27141         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
27142         (gst_shout2send_get_type), (gst_shout2send_set_clock),
27143         (gst_shout2send_class_init), (gst_shout2send_init),
27144         (set_shout_metadata), (gst_shout2send_set_metadata),
27145         (gst_shout2send_chain), (gst_shout2send_set_property),
27146         (gst_shout2send_get_property), (gst_shout2send_connect),
27147         (gst_shout2send_change_state):
27148         * ext/shout2/gstshout2.h:
27149         - fix for sending mp3 audio to icecast2 server, if pad link function not
27150         called before PAUSED state
27151         - added option to use GStreamer clock sync (as opposed to libshout's own sync)
27152         - added tagging support for mp3 audio broadcasted
27153         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
27154         debug info
27155
27156 2004-07-28  Wim Taymans  <wim@fluendo.com>
27157
27158         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
27159         (gst_ogg_demux_push):
27160         Return query failure when we don't know the length of
27161         an ogg stream insteda of returning TRUE with a bogus value.
27162
27163 2004-07-28  Wim Taymans  <wim@fluendo.com>
27164
27165         * ext/theora/theoradec.c: (theora_get_formats),
27166         (theora_dec_src_convert), (theora_dec_sink_convert),
27167         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
27168         (theora_dec_chain):
27169         Don't screw up the 1 Chroma for 1 luma sample situation when we
27170         have an odd offset/width by adding a black border in those cases.
27171
27172 2004-07-28  Wim Taymans  <wim@fluendo.com>
27173
27174         * ext/theora/theoradec.c: (theora_get_formats),
27175         (theora_dec_src_convert), (theora_dec_sink_convert),
27176         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
27177         (theora_dec_chain):
27178         * ext/theora/theoraenc.c: (theora_enc_sink_link):
27179         Added first attempt at cropping of the image as required by the
27180         theora spec. We need more properties in the caps (offset_x,
27181         offset_y,stride) to implement this correctly.
27182
27183 2004-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
27184
27185         * ext/dvdnav/README:
27186           Update the README to use dvddemux
27187         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
27188           Ensure getcaps returns a subset of the template caps
27189         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
27190         (gst_mpeg2subt_init):
27191           Ensure getcaps returns a subset of the template caps
27192         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
27193         (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
27194         (gst_dvd_demux_get_subpicture_stream),
27195         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
27196         * gst/mpegstream/gstdvddemux.h:
27197           Set the explicit caps on the current_video pad before pushing
27198           anything
27199         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
27200         (gst_mpeg_demux_get_audio_stream):
27201           Free caps used to gst_pad_set_explicit_caps, which takes a const
27202           GstCaps *
27203
27204 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
27205
27206         * configure.ac: update GStreamer requirement to 0.8.4 because of
27207           GstFraction.
27208
27209 2004-07-28  Wim Taymans  <wim@fluendo.com>
27210
27211         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
27212         (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
27213         Add the pad to the element after setting up the caps. This
27214         makes it a lot easier to autoplug.
27215
27216 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
27217
27218         * gst/median/gstmedian.c:
27219         * gst/mpeg2subt/gstmpeg2subt.c:
27220         * gst/mpegaudioparse/gstmpegaudioparse.c:
27221         * gst/mpegstream/gstdvddemux.c:
27222         * gst/mpegstream/gstmpegdemux.c:
27223         * gst/mpegstream/gstmpegpacketize.c:
27224         * gst/rtjpeg/gstrtjpeg.c:
27225         * gst/rtjpeg/gstrtjpegdec.c:
27226         * gst/rtjpeg/gstrtjpegenc.c:
27227         * gst/sine/gstsinesrc.c:
27228         * gst/smooth/gstsmooth.c:
27229         * gst/smpte/gstsmpte.c:
27230         * gst/smpte/gstsmpte.h:
27231         * gst/stereo/gststereo.c:
27232         * gst/videofilter/gstgamma.c:
27233         * gst/videofilter/gstvideobalance.c:
27234         * gst/videofilter/gstvideofilter.c:
27235         * gst/videofilter/gstvideoflip.c:
27236         * gst/videoscale/gstvideoscale.c:
27237         * gst/videoscale/videoscale.c:
27238         * gst/videotestsrc/gstvideotestsrc.c:
27239         * gst/videotestsrc/videotestsrc.c:
27240         * gst/wavenc/gstwavenc.c:
27241         * gst/wavparse/gstwavparse.c:
27242           fix local includes and 64 bits constants
27243
27244 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
27245
27246         * win32/gst.sln:
27247         * gst-libs/gst/*/*.vcproj:
27248         * gst/*/*.vcproj:
27249           more working plugins
27250
27251 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
27252
27253         * testsuite/alsa/Makefile.am:
27254         * testsuite/alsa/srcstate.c:
27255         add test for alsasrc changing state
27256
27257 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
27258
27259         * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
27260         (gst_silence_get):
27261         * gst/silence/gstsilence.h:
27262         fix silence generation for 16bit raw audio
27263
27264 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
27265
27266         * gst/matroska/matroska-demux.c:
27267         (gst_matroska_demux_parse_metadata),
27268         (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
27269         * gst/mpegaudio/common.c:
27270         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
27271         (gst_videoscale_getcaps), (gst_videoscale_link),
27272         (gst_videoscale_src_fixate), (gst_videoscale_init),
27273         (gst_videoscale_finalize):
27274         * gst/videoscale/gstvideoscale.h:
27275         * gst/videotestsrc/gstvideotestsrc.c:
27276         (gst_videotestsrc_get_capslist):
27277         * gst/wavenc/gstwavenc.c:
27278         * sys/oss/gstossmixer.c: (fill_labels):
27279         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
27280         (gst_ximagesink_handle_xevents),
27281         (gst_ximagesink_calculate_pixel_aspect_ratio),
27282         (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
27283         (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
27284         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
27285         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
27286         (gst_ximagesink_init), (gst_ximagesink_class_init):
27287         * sys/ximage/ximagesink.h:
27288         * sys/xvimage/xvimagesink.c:
27289         (gst_xvimagesink_calculate_pixel_aspect_ratio),
27290         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
27291         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
27292         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
27293         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
27294         * sys/xvimage/xvimagesink.h:
27295           first batch of pixel aspect ratio commits.
27296
27297 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
27298
27299         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27300         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
27301         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
27302           handle stride, needs work if we want to move stride handling
27303           upstream, but works correctly for our purposes.
27304
27305 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
27306
27307         * gst/videoscale/README:
27308           add testing examples
27309         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
27310         (gst_videoscale_chain):
27311         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
27312         (gst_videoscale_get_size):
27313           add get_size function that handles stride like videotestsrc.
27314           fixes conversion for YUV formats for as much as I can test them.
27315
27316 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
27317
27318         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
27319         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
27320         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
27321         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
27322         (gst_xvimagesink_xvimage_put):
27323           further cleanups, logging, error handling and synchronizing
27324
27325 2004-07-27  Wim Taymans  <wim@fluendo.com>
27326
27327         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
27328         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
27329         (gst_videomixer_pad_set_property),
27330         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
27331         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
27332         (gst_videomixer_class_init), (gst_videomixer_init),
27333         (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
27334         (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
27335         (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
27336         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
27337         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
27338         (gst_videomixer_loop), (plugin_init):
27339         Be a nicer negotiation citizen and provide a getcaps function on
27340         the srcpad. This also fixes a crash when resizing.
27341
27342 2004-07-27  Julien MOUTTE  <julien@moutte.net>
27343
27344         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
27345         (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
27346
27347 2004-07-27  Wim Taymans  <wim@fluendo.com>
27348
27349         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
27350         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
27351         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
27352         (gst_pngenc_set_property):
27353         * ext/libpng/gstpngenc.h:
27354         Added snapshot property to pngenc.
27355         removed g_print from pngdec
27356
27357 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
27358
27359         * gst/ac3parse/ac3parse.vcproj
27360         * gst/adder/adder.vcproj
27361         * gst/alpha/alpha.vcproj
27362         * gst/alpha/alphacolor.vcproj
27363         * gst/asfdemux/asf.vcproj
27364         * gst/audioconvert/audioconvert.vcproj
27365         * gst/audiorate/audiorate.vcproj
27366         * gst/audioscale/audioscale.vcproj
27367         * gst/auparse/auparse.vcproj
27368         * gst/avi/avi.vcproj
27369         * gst/cdxaparse/cdxaparse.vcproj
27370         * gst/chart/chart.vcproj
27371         * gst/colorspace/colorspace.vcproj
27372         * gst/cutter/cutter.vcproj
27373         * gst/debug/debug.vcproj
27374         * gst/debug/efence.vcproj
27375         * gst/debug/navigationtest.vcproj
27376         * gst/deinterlace/deinterlace.vcproj
27377         * gst/effectv/effectv.vcproj
27378         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
27379         * gst/filter/filter.vcproj
27380         * gst/flx/flxdec.vcproj
27381         * gst/goom/goom.vcproj
27382         * gst/interleave/interleave.vcproj
27383         * gst/law/alaw.vcproj
27384         * gst/law/mulaw.vcproj
27385         * gst/matroska/matroska.vcproj
27386         * gst/median/median.vcproj
27387         * gst/mixmatrix/mixmatrix.vcproj
27388         * gst/mpeg1sys/mpeg1systemencode.vcproj
27389         * gst/mpeg1videoparse/mp1videoparse.vcproj
27390         * gst/mpeg2sub/mpeg2subt.vcproj
27391         * gst/mpegaudio/mpegaudio.vcproj
27392         * gst/mpegaudioparse/mpegaudioparse.vcproj
27393         * gst/mpegstream/mpegstream.vcproj
27394         * gst/multifilesink/multifilesink.vcproj
27395         * gst/multipart/multipart.vcproj
27396         * gst/oneton/oneton.vcproj
27397         * gst/overlay/overlay.vcproj
27398         * gst/passthrough/passthrough.vcproj
27399         * gst/qtdemux/qtdemux.vcproj
27400         * gst/realmedia/rmdemux.vcproj
27401         * gst/rtjpeg/rtjpeg.vcproj
27402         * gst/rtp/rtp.vcproj
27403         * gst/silence/silence.vcproj
27404         * gst/sine/sinesrc.vcproj
27405         * gst/smooth/smooth.vcproj
27406         * gst/smpte/smpte.vcproj
27407         * gst/spectrum/spectrum.vcproj
27408         * gst/speed/speed.vcproj
27409         * gst/stereo/stereo.vcproj
27410         * gst/switch/switch.vcproj
27411         * gst/tags/tagedit.vcproj
27412         * gst/tcp/tcp.vcproj
27413         * gst/typefind/typefindfunctions.vcproj
27414         * gst/udp/udp.vcproj
27415         * gst/videobox/videobox.vcproj
27416         * gst/videocrop/videocrop.vcproj
27417         * gst/videodrop/videodrop.vcproj
27418         * gst/videofilter/gamma.vcproj
27419         * gst/videofilter/videobalance.vcproj
27420         * gst/videofilter/videofilter.vcproj
27421         * gst/videofilter/videoflip.vcproj
27422         * gst/videoflip/videoflip.vcproj
27423         * gst/videomixer/videomixer.vcproj
27424         * gst/videorate/videorate.vcproj
27425         * gst/videoscale/videoscale.vcproj
27426         * gst/videotestsrc/videotestsrc.vcproj
27427         * gst/virtualdub/virtualdub.vcproj
27428         * gst/volenv/volenv.vcproj
27429         * gst/volume/volume.vcproj
27430         * gst/wavenc/wavenc.vcproj
27431         * gst/wavparse/wavparse.vcproj
27432         * gst/y4m/y4menc.vcproj
27433         * gst-libs/gst/audio/audio.vcproj
27434         * gst-libs/gst/audio/audiofilter.vcproj
27435         * gst-libs/gst/colorbalance/colorbalance.vcproj
27436         * gst-libs/gst/idct/idtc.vcproj
27437         * gst-libs/gst/media-info/media-info.vcproj
27438         * gst-libs/gst/mixer/mixer.vcproj
27439         * gst-libs/gst/navigation/navigation.vcproj
27440         * gst-libs/gst/play/play.vcproj
27441         * gst-libs/gst/propertyprobe/propertyprobe.vcproj
27442         * gst-libs/gst/resample/resample.vcproj
27443         * gst-libs/gst/riff/riff.vcproj
27444         * gst-libs/gst/tuner/tuner.vcproj
27445         * gst-libs/gst/video/video.vcproj
27446         * gst-libs/gst/xoverlay/xoverlay.vcproj
27447           avoid problems with math.h, fix release dependancy
27448           rename GStreamer-0.8.lib to libgstreamer.lib
27449
27450 2004-07-27  Julien MOUTTE  <julien@moutte.net>
27451
27452         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
27453         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
27454         the atom is not available we have to unlock the mutex. Fixes #148023
27455
27456 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
27457
27458         * gst-libs/gst/media-info/media-info.h:
27459           issue for a vararg macro with MSVC
27460
27461 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
27462
27463         * gst/effectv/effectv.vcproj
27464         * gst-libs/gst/idct/idct.vcproj:
27465         * gst-libs/gst/media-info/media-info.vcproj:
27466         * gst-libs/gst/navigation/navigation.vcproj:
27467         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
27468         * gst-libs/gst/video/video.vcproj:
27469         * gst-libs/gst/xoverlay/xoverlay.vcproj:
27470           fixes for build problems
27471
27472 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
27473
27474         * gst-libs/gst/audio/audio.def:
27475         * gst-libs/gst/audio/riff.def:
27476           add some definitions needed by plugins
27477
27478 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
27479
27480         * gst/asfdemux/gstasfmux.c
27481           Fix some 64 bits constants to be glib friendly
27482
27483 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
27484
27485         * gst/ac3parse/gstac3parse.c
27486         * gst/audioscale/gstaudioscale.c
27487         * gst/auparse/gstauparse.c
27488         * gst/colorspace/gstcolorspace.c
27489         * gst/colorspace/yuv2rgb.h
27490           local include fixes
27491
27492 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
27493
27494         * win32/gst.sln
27495           add more plugins to the build
27496
27497 2004-07-26  Julien MOUTTE  <julien@moutte.net>
27498
27499         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
27500         (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
27501
27502 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
27503
27504         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
27505         (gst_level_set_property), (gst_level_get_property),
27506         (gst_level_base_init), (gst_level_class_init):
27507           add debugging categories.  cleanups.
27508
27509 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
27510
27511         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
27512         (gst_videoscale_planar411), (gst_videoscale_planar400),
27513         (gst_videoscale_packed422), (gst_videoscale_packed422rev),
27514         (gst_videoscale_scale_nearest_str1),
27515         (gst_videoscale_scale_nearest_str2),
27516         (gst_videoscale_scale_nearest_str4),
27517         (gst_videoscale_scale_nearest_16bit),
27518         (gst_videoscale_scale_nearest_24bit):
27519           fixed stride issues
27520           tested with 320x240 -> 321, 322, 324 x240
27521           tested with YV12, I420, YUY2, UYVY
27522           fixed packed422rev (don't think it could have worked before)
27523           by testing with UYVY
27524
27525 2004-07-26  Benjamin Otte  <otte@gnome.org>
27526
27527         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
27528         (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
27529         (plugin_init):
27530           add debugging category, add error checks like checking return values
27531           of setup calls, make sure it still works after
27532           PLAYING=>NULL=>PLAYING, fix encoding of mono streams
27533
27534 2004-07-26  Wim Taymans  <wim@fluendo.com>
27535
27536         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
27537         (gst_mpeg_demux_get_audio_stream),
27538         (gst_mpeg_demux_process_private):
27539         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
27540         Check for error codes from the negotiation functions. Make sure
27541         we really set the pad caps when a new pad is created.
27542
27543 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
27544
27545         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27546         (gst_ffmpeg_caps_to_pix_fmt):
27547         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
27548         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27549         (gst_ffmpegcolorspace_pad_link):
27550           don't make function do two things at the same time without reason.
27551
27552 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
27553
27554         * gst/ac3parse/ac3parse.vcproj
27555         * gst/adder/adder.vcproj
27556         * gst/alpha/alpha.vcproj
27557         * gst/alpha/alphacolor.vcproj
27558         * gst/asfdemux/asf.vcproj
27559         * gst/audioconvert/audioconvert.vcproj
27560         * gst/audiorate/audiorate.vcproj
27561         * gst/audioscale/audioscale.vcproj
27562         * gst/auparse/auparse.vcproj
27563         * gst/avi/avi.vcproj
27564         * gst/cdxaparse/cdxaparse.vcproj
27565         * gst/chart/chart.vcproj
27566         * gst/colorspace/colorspace.vcproj
27567         * gst/cutter/cutter.vcproj
27568         * gst/debug/debug.vcproj
27569         * gst/debug/efence.vcproj
27570         * gst/debug/navigationtest.vcproj
27571         * gst/deinterlace/deinterlace.vcproj
27572         * gst/effectv/effectv.vcproj
27573         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
27574         * gst/filter/filter.vcproj
27575         * gst/flx/flxdec.vcproj
27576         * gst/goom/goom.vcproj
27577         * gst/interleave/interleave.vcproj
27578         * gst/law/alaw.vcproj
27579         * gst/law/mulaw.vcproj
27580         * gst/matroska/matroska.vcproj
27581         * gst/median/median.vcproj
27582         * gst/mixmatrix/mixmatrix.vcproj
27583         * gst/mpeg1sys/mpeg1systemencode.vcproj
27584         * gst/mpeg1videoparse/mp1videoparse.vcproj
27585         * gst/mpeg2sub/mpeg2subt.vcproj
27586         * gst/mpegaudio/mpegaudio.vcproj
27587         * gst/mpegaudioparse/mpegaudioparse.vcproj
27588         * gst/mpegstream/mpegstream.vcproj
27589         * gst/multifilesink/multifilesink.vcproj
27590         * gst/multipart/multipart.vcproj
27591         * gst/oneton/oneton.vcproj
27592         * gst/overlay/overlay.vcproj
27593         * gst/passthrough/passthrough.vcproj
27594         * gst/qtdemux/qtdemux.vcproj
27595         * gst/realmedia/rmdemux.vcproj
27596         * gst/rtjpeg/rtjpeg.vcproj
27597         * gst/rtp/rtp.vcproj
27598         * gst/silence/silence.vcproj
27599         * gst/sine/sinesrc.vcproj
27600         * gst/smooth/smooth.vcproj
27601         * gst/smpte/smpte.vcproj
27602         * gst/spectrum/spectrum.vcproj
27603         * gst/speed/speed.vcproj
27604         * gst/stereo/stereo.vcproj
27605         * gst/switch/switch.vcproj
27606         * gst/tags/tagedit.vcproj
27607         * gst/tcp/tcp.vcproj
27608         * gst/typefind/typefindfunctions.vcproj
27609         * gst/udp/udp.vcproj
27610         * gst/videobox/videobox.vcproj
27611         * gst/videocrop/videocrop.vcproj
27612         * gst/videodrop/videodrop.vcproj
27613         * gst/videofilter/gamma.vcproj
27614         * gst/videofilter/videobalance.vcproj
27615         * gst/videofilter/videofilter.vcproj
27616         * gst/videofilter/videoflip.vcproj
27617         * gst/videoflip/videoflip.vcproj
27618         * gst/videomixer/videomixer.vcproj
27619         * gst/videorate/videorate.vcproj
27620         * gst/videoscale/videoscale.vcproj
27621         * gst/videotestsrc/videotestsrc.vcproj
27622         * gst/virtualdub/virtualdub.vcproj
27623         * gst/volenv/volenv.vcproj
27624         * gst/volume/volume.vcproj
27625         * gst/wavenc/wavenc.vcproj
27626         * gst/wavparse/wavparse.vcproj
27627         * gst/y4m/y4menc.vcproj
27628           more plugins supported under windows
27629
27630 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
27631
27632         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
27633         (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
27634         (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
27635         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
27636         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
27637           Add debugging statements.  Use the sizes as returned by the
27638           *CreateImage calls.
27639
27640 2004-07-26  Johan Dahlin  <johan@gnome.org>
27641
27642         * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
27643         the pad is negotiated.
27644
27645         * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
27646
27647 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
27648
27649         * gst-libs/gst/colorbalance/colorbalance.vcproj:
27650         * gst-libs/gst/idct/idct.vcproj:
27651         * gst-libs/gst/media-info/media-info.vcproj:
27652         * gst-libs/gst/mixer/mixer.vcproj:
27653         * gst-libs/gst/navigation/navigation.vcproj:
27654         * gst-libs/gst/play/play.vcproj:
27655         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
27656         * gst-libs/gst/resample/resample.vcproj:
27657         * gst-libs/gst/tuner/tuner.vcproj:
27658         * gst-libs/gst/video/video.vcproj:
27659         * gst-libs/gst/xoverlay/xoverlay.vcproj:
27660           more plugins supported under windows
27661
27662 2004-07-25 Iain <iain@prettypeople.org>
27663
27664         * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
27665         pad now rather than when the pad is created because state changes wipe
27666         explicit caps (fixes #148043).
27667
27668 2004-07-25  Sebastien Cote  <sc5@hermes.usherb.ca>
27669
27670         reviewed by Benjamin Otte  <otte@gnome.org>
27671
27672         * ext/mad/gstmad.c:
27673           fix mad plugin crashing on Sun (fixes #148289)
27674
27675 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
27676
27677         * gst/avi/avi.def:
27678         * gst/avi/avi.vcproj:
27679         * gst/matroska/matroska.def:
27680         * gst/matroska/matroska.vcproj:
27681           remove unused .def files
27682
27683 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
27684
27685         * gst-libs/gst/audio/gstaudiofilter.c:
27686           Clean the local include
27687
27688 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
27689
27690         * win32/gst.sln:
27691         * gst-libs/gst/audio/audio.def:
27692         * gst-libs/gst/audio/audio.vcproj:
27693         * gst-libs/gst/audio/audiofilter.vcproj:
27694         * gst-libs/gst/audio/riff.def:
27695         * gst-libs/gst/audio/riff.vcproj:
27696         * gst-libs/gst/gst-libs.def:
27697         * gst-libs/gst/gst-libs.vcproj:
27698         * gst/avi/avi.vcproj:
27699         * gst/avi/avi.vcproj:
27700           Copy the files where needed after building, cleaner projects
27701
27702 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
27703
27704         * gst/matroska/ebml-write.c:
27705           Fix some 64 bits constants to be glib friendly
27706
27707 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
27708
27709         * win32/gst.sln:
27710         * gst-libs/gst/gst-libs.def:
27711         * gst-libs/gst/gst-libs.vcproj:
27712         * gst/matroska/matroska.def:
27713         * gst/matroska/matroska.vcproj:
27714           Add the preliminary canvas to build plugins on Win32
27715
27716 2004-07-23  Benjamin Otte  <otte@gnome.org>
27717
27718         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
27719           don't enfore negotiation from source side, it breaks
27720           sinesrc ! audioconvert ! osssink
27721
27722 2004-07-22  David Schleef  <ds@schleef.org>
27723
27724         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
27725         for ELF files, since they can easily be recognized as audio/mpeg.
27726         (bug #147441)
27727
27728 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
27729
27730         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
27731         (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
27732         (gst_videoscale_scale_nearest_24bit),
27733         (gst_videoscale_scale_nearest_16bit):
27734           fix 16bit and 24bit for stride (24bit might need testing)
27735           don't pretend we do more than one algorithm
27736
27737 2004-07-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
27738
27739         * configure.ac:
27740         * gst/Makefile.am:
27741         * gst/multifilesink/Makefile.am:
27742         * gst/multifilesink/gstmultifilesink.c:
27743         (gst_multifilesink_get_formats),
27744         (gst_multifilesink_get_query_types), (_do_init),
27745         (gst_multifilesink_base_init), (gst_multifilesink_class_init),
27746         (gst_multifilesink_init), (gst_multifilesink_dispose),
27747         (gst_multifilesink_set_location), (gst_multifilesink_set_property),
27748         (gst_multifilesink_get_property), (gst_multifilesink_open_file),
27749         (gst_multifilesink_close_file), (gst_multifilesink_next_file),
27750         (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
27751         (gst_multifilesink_chain), (gst_multifilesink_change_state),
27752         (gst_multifilesink_uri_get_type),
27753         (gst_multifilesink_uri_get_protocols),
27754         (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
27755         (gst_multifilesink_uri_handler_init), (plugin_init):
27756         * gst/multifilesink/gstmultifilesink.h:
27757         * testsuite/Makefile.am:
27758         * testsuite/multifilesink/Makefile.am:
27759         * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
27760         (gst_newmedia_class_init), (gst_newmedia_init),
27761         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
27762         (newfile_signal), (test_signal), (main):
27763         multifilesink plugin for creating new files every time a new media
27764         discontinuity event occurs
27765
27766 2004-07-22  Wim Taymans  <wim@fluendo.com>
27767
27768         * gst/alpha/Makefile.am:
27769         * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
27770         (gst_alpha_color_base_init), (gst_alpha_color_class_init),
27771         (gst_alpha_color_init), (gst_alpha_color_set_property),
27772         (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
27773         (transform), (gst_alpha_color_chain),
27774         (gst_alpha_color_change_state), (plugin_init):
27775         Stupid plugin to to RGBA to AYUV conversion because none of
27776         the colorspace plugins can handle that yet.
27777
27778 2004-07-22  Wim Taymans  <wim@fluendo.com>
27779
27780         * examples/seeking/seek.c: (update_scale), (main):
27781         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
27782         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
27783         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
27784         (gst_decode_bin_init), (gst_decode_bin_dispose),
27785         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
27786         (no_more_pads), (close_link), (type_found),
27787         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
27788         (plugin_init):
27789         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
27790         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
27791         (gst_play_base_bin_dispose), (queue_overrun),
27792         (gen_preroll_element), (remove_prerolls), (unknown_type),
27793         (no_more_pads), (new_stream), (setup_source),
27794         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
27795         (play_base_eos), (gst_play_base_bin_change_state),
27796         (gst_play_base_bin_add_element),
27797         (gst_play_base_bin_remove_element),
27798         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
27799         (gst_play_base_bin_unlink_stream),
27800         (gst_play_base_bin_get_streaminfo):
27801         * gst/playback/gstplaybin.c: (gen_video_element),
27802         (gen_audio_element):
27803         * gst/playback/gststreaminfo.h:
27804         More playback updates, attempt to fix things after the state change
27805         breakage.
27806
27807 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
27808
27809         * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
27810         (gst_videoscale_scale_nearest_16bit):
27811           comment algorithm
27812
27813 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
27814
27815         * gst/videotestsrc/gstvideotestsrc.c:
27816         (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
27817         (gst_videotestsrc_init), (gst_videotestsrc_get),
27818         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
27819         (gst_videotestsrc_get_property):
27820         * gst/videotestsrc/gstvideotestsrc.h:
27821         * gst/videotestsrc/videotestsrc.c:
27822         * gst/videotestsrc/videotestsrc.h:
27823           cleanup and commenting
27824
27825 2004-07-21  Wim Taymans  <wim@fluendo.com>
27826
27827         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
27828         (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
27829         (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
27830         (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
27831         (_find_chain_get_unknown_part), (_find_streams_check),
27832         (gst_ogg_demux_push), (gst_ogg_pad_push):
27833         * ext/theora/theoradec.c: (theora_get_formats),
27834         (theora_dec_src_convert), (theora_dec_sink_convert),
27835         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
27836         (theora_dec_chain):
27837         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
27838         (vorbis_dec_convert), (vorbis_dec_src_query),
27839         (vorbis_dec_src_event), (vorbis_dec_event):
27840         More seeking fixes, oggdemux now supports seeking to time and
27841         uses the downstream element to convert granulepos to time.
27842         Seeking in theora-only ogg files now works.
27843
27844 2004-07-21  Wim Taymans  <wim@fluendo.com>
27845
27846         * ext/theora/theoradec.c: (gst_theora_dec_init),
27847         (theora_get_formats), (theora_get_event_masks),
27848         (theora_get_query_types), (theora_dec_src_convert),
27849         (theora_dec_sink_convert), (theora_dec_src_query),
27850         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
27851         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
27852         (vorbis_get_event_masks), (vorbis_get_query_types),
27853         (gst_vorbis_dec_init), (vorbis_dec_convert),
27854         (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
27855         Added query/convert/formats functions to vorbis and theora decoders
27856         so that the outside world can use them too. Fixed seeking on an
27857         ogg/theora/vorbis file by disabling the seeking seeking on the
27858         theora srcpad.
27859
27860 2004-07-21  Julien MOUTTE  <julien@moutte.net>
27861
27862         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
27863         (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
27864         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
27865         images creation for both elements. We don't create the image on caps
27866         nego or renego, we just destroy the internal one if present if it does
27867         not match the needs. The chain function takes care of creating a new
27868         image when needed.
27869         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
27870         (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
27871         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
27872         (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
27873         the image format information. The buffer pool checks for the context
27874         image format and discard images with different formats.
27875         * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
27876
27877 2004-07-21  Thomas Vander Stichele  <thomas at apestaart dot org>
27878
27879         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27880         (gst_ffmpegcolorspace_chain):
27881           no point in doing any chaining if the pad we want to push from
27882           isn't usable.
27883
27884 2004-07-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27885
27886         * gst-libs/gst/riff/riff-media.c:
27887         (gst_riff_create_audio_caps_with_data):
27888           Fix double end-to-native symbol conversion (#148021).
27889
27890 2004-07-20  David Schleef  <ds@schleef.org>
27891
27892         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
27893         Don't use an Atom that doesn't exist.
27894
27895 2004-07-20  Wim Taymans  <wim@fluendo.com>
27896
27897         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
27898         (gst_multifdsink_add), (gst_multifdsink_get_stats),
27899         (gst_multifdsink_client_remove),
27900         (gst_multifdsink_handle_client_write),
27901         (gst_multifdsink_queue_buffer):
27902         * gst/tcp/gstmultifdsink.h:
27903         More multifdsink stats. Avoid deadlock by releasing locks
27904         before sending out a signal.
27905
27906 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
27907
27908         * po/LINGUAS:
27909         * po/hu.po:
27910           added Hungarian translation (Laszlo Dvornik)
27911
27912 2004-07-20  Wim Taymans  <wim@fluendo.com>
27913
27914         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
27915         (gst_multifdsink_add), (gst_multifdsink_client_remove),
27916         (gst_multifdsink_handle_client_write),
27917         (gst_multifdsink_queue_buffer):
27918         * gst/tcp/gsttcp-marshal.list:
27919         Fixed the stupid marshal definition.
27920
27921 2004-07-20  Wim Taymans  <wim@fluendo.com>
27922
27923         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
27924         (gst_multifdsink_init), (gst_multifdsink_add),
27925         (gst_multifdsink_client_remove),
27926         (gst_multifdsink_handle_client_write),
27927         (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
27928         (gst_multifdsink_set_property), (gst_multifdsink_get_property),
27929         (gst_multifdsink_init_send):
27930         * gst/tcp/gstmultifdsink.h:
27931         Added more stats, added timeout for a client, fixed some typos
27932         and added some comments.
27933
27934 2004-07-20  Wim Taymans  <wim@fluendo.com>
27935
27936         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
27937         (gst_multifdsink_add), (gst_multifdsink_get_stats),
27938         (gst_multifdsink_client_remove),
27939         (gst_multifdsink_handle_client_write):
27940         * gst/tcp/gstmultifdsink.h:
27941         * gst/tcp/gsttcp-marshal.list:
27942         Added get_stats method that returns a GValueArray of
27943         stats values.
27944
27945 2004-07-19  Benjamin Otte  <otte@gnome.org>
27946
27947         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
27948           make sure longname, description and author are valid UTF-8
27949
27950 2004-07-19  Thomas Vander Stichele  <thomas at apestaart dot org>
27951
27952         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
27953         (gst_ximagesink_set_property):
27954         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
27955         (gst_xvimagesink_set_property):
27956           make sure SYNCHRONOUS is respected after getting the X context
27957
27958 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
27959
27960         * gst/matroska/matroska-demux.c:
27961         (gst_matroska_demux_handle_src_event),
27962         (gst_matroska_demux_parse_blockgroup):
27963         * gst/matroska/matroska-ids.h:
27964           add BlockReference tag and ignore it to clear out log.
27965           ignore NAVIGATION events to clear out log.
27966
27967 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
27968
27969         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
27970         (gst_matroska_demux_add_stream):
27971         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
27972           add debug categories
27973
27974 2004-07-16  Wim Taymans  <wim@fluendo.com>
27975
27976         * ext/libpng/Makefile.am:
27977         * ext/libpng/gstpng.c: (plugin_init):
27978         * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
27979         (gst_pngdec_get_type), (gst_pngdec_base_init),
27980         (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
27981         (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
27982         * ext/libpng/gstpngdec.h:
27983         Added png decoder.
27984
27985 2004-07-16  Julien MOUTTE  <julien@moutte.net>
27986
27987         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
27988         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
27989         (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
27990         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
27991         (gst_ximagesink_buffer_alloc):
27992         * sys/ximage/ximagesink.h:
27993         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
27994         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
27995         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
27996         (gst_xvimagesink_buffer_alloc):
27997         * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
27998         again. Using internal data pointer of the x(v)image to store image's
27999         data to be coherent with the buffer alloc mechanism. Investigated the
28000         image destruction code to be sure that everything gets freed correctly.
28001
28002 2004-07-16  Wim Taymans  <wim@fluendo.com>
28003
28004         * gst-libs/gst/riff/riff-read.c:
28005         (gst_riff_read_strf_vids_with_data),
28006         (gst_riff_read_strf_auds_with_data):
28007         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
28008         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
28009         Make sure we don't create 0 sized subbuffers in riff-read.
28010         Signal the no more pads signal after reading the avi header.
28011
28012 2004-07-16  Wim Taymans  <wim@fluendo.com>
28013
28014         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
28015         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
28016         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
28017         (gst_decode_bin_init), (gst_decode_bin_dispose),
28018         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
28019         (no_more_pads), (close_link), (type_found),
28020         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
28021         (gst_decode_bin_change_state), (plugin_init):
28022         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
28023         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
28024         (gst_play_base_bin_dispose), (queue_overrun),
28025         (gen_preroll_element), (remove_prerolls), (unknown_type),
28026         (no_more_pads), (new_stream), (setup_source),
28027         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
28028         (play_base_eos), (gst_play_base_bin_change_state),
28029         (gst_play_base_bin_add_element),
28030         (gst_play_base_bin_remove_element),
28031         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
28032         (gst_play_base_bin_unlink_stream),
28033         (gst_play_base_bin_get_streaminfo):
28034         * gst/playback/gstplaybasebin.h:
28035         Better error recovery. Added configurable preroll queue size. Faster
28036         detection of no-more-pads.
28037
28038 2004-07-16  Wim Taymans  <wim@fluendo.com>
28039
28040         * gst-libs/gst/video/video.h:
28041         Added 32 bits RGBA. Not sure if we should use another mime-type
28042         for alpha rgb. Currently the presence of the alpha_mask property
28043         signals an alpha channel.
28044
28045 2004-07-16  Wim Taymans  <wim@fluendo.com>
28046
28047         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
28048         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
28049         FPS seems to be 0.0 to MAX everywhere else.
28050
28051 2004-07-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
28052
28053         * gst-libs/gst/riff/riff-media.c:
28054         (gst_riff_create_video_caps_with_data):
28055           mp42/mp43 (no caps) exist too.
28056         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
28057           Set pixel_width/height; we've got them in-caps.
28058         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
28059         * gst/wavparse/gstwavparse.c: (plugin_init):
28060           Both are valid primary.
28061         * sys/oss/gstossmixer.c:
28062           Remove i18n hack and enable translations.
28063
28064 2004-07-15  Benjamin Otte  <otte@gnome.org>
28065
28066         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
28067         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
28068           fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
28069
28070 2004-07-15  Benjamin Otte  <otte@gnome.org>
28071
28072         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
28073         (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
28074         (gst_alsa_close_audio):
28075           disable some of the debugging code for now. Writing debugging to a
28076           buffer is broken in current alsalib releases.
28077
28078 2004-07-12  Benjamin Otte  <otte@gnome.org>
28079
28080         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
28081           use bufferpools
28082
28083 2004-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
28084
28085         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
28086         (theora_dec_src_query), (theora_dec_event):
28087         * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
28088           add debugging categories.  Remove \n's.
28089
28090 2004-07-13  Johan Dahlin  <johan@gnome.org>
28091
28092         * gst/playback/gstplaybin.c (gst_play_bin_set_property)
28093         (gst_play_bin_get_property): Impl.
28094
28095 2004-07-13  Wim Taymans  <wim@fluendo.com>
28096
28097         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
28098         When trying to find the stream length, seek back N pages
28099         instead of just one, where N is the number of streams in
28100         the current chain.
28101
28102 2004-07-13  Wim Taymans  <wim@fluendo.com>
28103
28104         * gst-libs/gst/riff/riff-media.c:
28105         (gst_riff_create_audio_caps_with_data),
28106         (gst_riff_create_audio_caps),
28107         (gst_riff_create_audio_template_caps):
28108         * gst-libs/gst/riff/riff-media.h:
28109         * gst-libs/gst/riff/riff-read.c:
28110         (gst_riff_read_strf_vids_with_data),
28111         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
28112         * gst-libs/gst/riff/riff-read.h:
28113         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
28114         (gst_avi_demux_add_stream):
28115         Set codec_data on caps for avidemuxer.
28116
28117 2004-07-12  David Schleef  <ds@schleef.org>
28118
28119         * configure.ac: Fix test for Objective C
28120
28121 2004-07-12  Jan Schmidt  <thaytan@mad.scientist.com>
28122         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
28123         (gst_gdk_pixbuf_chain):
28124           Add svg and pcx to template caps, and ensure that getcaps returns a
28125           subset of the template caps.
28126           Copy each row manually for output, as gdkpixbuf may pad the
28127           rowstride to a 32-bit word boundary.
28128
28129 2004-07-12  Wim Taymans  <wim@fluendo.com>
28130
28131         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
28132         (gst_riff_create_video_template_caps):
28133         Fix the template caps to include some more media types.
28134
28135 2004-07-12  Wim Taymans  <wim@fluendo.com>
28136
28137         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
28138         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
28139         (compare_ranks), (print_feature), (gst_decode_bin_init),
28140         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
28141         (try_to_link_1), (new_pad), (close_link), (type_found),
28142         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
28143         (gst_decode_bin_change_state), (plugin_init):
28144         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
28145         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
28146         (gst_play_base_bin_dispose), (queue_overrun),
28147         (gen_preroll_element), (remove_prerolls), (no_more_pads),
28148         (new_stream), (setup_source), (gst_play_base_bin_set_property),
28149         (gst_play_base_bin_get_property), (play_base_eos),
28150         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
28151         (gst_play_base_bin_remove_element),
28152         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
28153         (gst_play_base_bin_unlink_stream),
28154         (gst_play_base_bin_get_streaminfo):
28155         * gst/playback/gstplaybasebin.h:
28156         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
28157         (gst_play_bin_class_init), (gst_play_bin_init),
28158         (gst_play_bin_dispose), (gst_play_bin_set_property),
28159         (gst_play_bin_get_property), (gen_video_element),
28160         (gen_audio_element), (remove_sinks), (setup_sinks),
28161         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
28162         (gst_play_bin_send_event), (gst_play_bin_get_formats),
28163         (gst_play_bin_convert), (gst_play_bin_get_query_types),
28164         (gst_play_bin_query), (plugin_init):
28165         * gst/playback/test4.c: (main):
28166         More fixes on reusing of the element.
28167
28168 2004-07-11  Benjamin Otte  <otte@gnome.org>
28169
28170         * ext/mad/gstmad.c: (normal_seek):
28171           allow seeking for other methods than just SET
28172
28173 2004-07-11  Andy Wingo  <wingo@pobox.com>
28174
28175         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
28176         float, "any" caps -> buffer_frames=[0,MAX].
28177
28178         * gst/interleave/interleave.c (interleave_getcaps): Seems the core
28179         doesn't intersect our caps with the template any more. Do it
28180         ourselves.
28181         (interleave_buffered_loop): Use g_newa instead of malloc/free.
28182
28183 2004-07-09  Wim Taymans  <wim@fluendo.com>
28184
28185         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
28186         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
28187         (compare_ranks), (print_feature), (gst_decode_bin_init),
28188         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
28189         (try_to_link_1), (new_pad), (close_link), (type_found),
28190         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
28191         (gst_decode_bin_change_state), (plugin_init):
28192         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
28193         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
28194         (gst_play_base_bin_dispose), (queue_overrun),
28195         (gen_preroll_element), (remove_prerolls), (no_more_pads),
28196         (new_stream), (setup_source), (gst_play_base_bin_set_property),
28197         (gst_play_base_bin_get_property), (play_base_eos),
28198         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
28199         (gst_play_base_bin_remove_element),
28200         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
28201         (gst_play_base_bin_unlink_stream),
28202         (gst_play_base_bin_get_streaminfo):
28203         * gst/playback/gstplaybasebin.h:
28204         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
28205         (gst_play_bin_class_init), (gst_play_bin_init),
28206         (gst_play_bin_dispose), (gst_play_bin_set_property),
28207         (gst_play_bin_get_property), (gen_video_element),
28208         (gen_audio_element), (remove_sinks), (setup_sinks),
28209         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
28210         (gst_play_bin_send_event), (gst_play_bin_get_formats),
28211         (gst_play_bin_convert), (gst_play_bin_get_query_types),
28212         (gst_play_bin_query), (plugin_init):
28213         * gst/playback/test4.c: (main):
28214         Work on object reuse and seeking.
28215
28216 2004-07-09  Wim Taymans  <wim@fluendo.com>
28217
28218         * examples/seeking/seek.c: (iterate):
28219         Don't consume all CPU in the idle loop.
28220
28221 2004-07-09  Wim Taymans  <wim@fluendo.com>
28222
28223         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
28224         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
28225         Add pad to element *after* setting the pad functions so that
28226         the scheduler can use the correct ones.
28227
28228 2004-07-09  Wim Taymans  <wim@fluendo.com>
28229
28230         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
28231         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
28232         Sync to keyframe after seek
28233
28234 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
28235
28236         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
28237         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
28238         (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
28239         * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
28240         * ext/libvisual/visual.c: (gst_visual_change_state):
28241         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
28242         * ext/theora/theoradec.c: (theora_dec_change_state):
28243         * ext/theora/theoraenc.c: (theora_enc_change_state):
28244         * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
28245         * gst-libs/gst/navigation/navigation.c:
28246         * gst/adder/gstadder.c: (gst_adder_change_state):
28247         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
28248         (gst_audio_convert_get_buffer):
28249         * gst/multipart/multipartdemux.c:
28250         (gst_multipart_demux_change_state):
28251         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
28252         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
28253         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
28254         * gst/videoscale/gstvideoscale.c:
28255         (gst_videoscale_handle_src_event):
28256         * gst/volume/gstvolume.c: (volume_chain_int16):
28257           don't assert in state change, this should be done by the base
28258           GstElement class.
28259           various debugging fixes.
28260
28261 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
28262
28263         * configure.ac:
28264         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
28265         (gst_play_dispose), (gst_play_set_location),
28266         (gst_play_set_data_src), (gst_play_set_video_sink),
28267         (gst_play_set_audio_sink), (gst_play_set_visualization),
28268         (gst_play_connect_visualization), (gst_play_get_sink_element),
28269         (gst_play_get_all_by_interface):
28270         * gst-libs/gst/play/play.h:
28271           add new method to get elements implementing an interface.
28272           add various error logging
28273
28274 2004-07-08  Wim Taymans  <wim@fluendo.com>
28275
28276         * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
28277         (make_mpeg_pipeline), (make_mpegnt_pipeline),
28278         (make_playerbin_pipeline), (query_durations_elems),
28279         (query_durations_pads), (query_positions_elems),
28280         (query_positions_pads), (update_scale), (iterate), (stop_seek),
28281         (main):
28282         Added playbin seeking example.
28283
28284 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
28285
28286         * gst-libs/gst/play/play.c: (gst_play_set_location),
28287         (gst_play_set_data_src), (gst_play_set_video_sink),
28288         (gst_play_set_audio_sink), (gst_play_set_visualization),
28289         (gst_play_connect_visualization), (gst_play_get_framerate):
28290           use a macro to look up elements from hash table
28291
28292 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
28293
28294         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
28295         (gst_play_get_length_callback), (gst_play_set_location),
28296         (gst_play_seek_to_time), (gst_play_set_data_src),
28297         (gst_play_set_video_sink), (gst_play_set_audio_sink),
28298         (gst_play_set_visualization), (gst_play_connect_visualization),
28299         (gst_play_get_sink_element):
28300         - add debugging info
28301         - fix looking up sink elements by iterating over complete caps
28302         - put everything except for source and autoplugger in a complete bin
28303
28304 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
28305
28306         * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
28307         * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
28308         (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
28309         (gst_alsa_sink_write), (gst_alsa_sink_loop):
28310         * ext/alsa/gstalsasink.h:
28311         - add debugging info
28312         - clean up schizophrenia of data/buffer/event
28313         - fix double event unref error
28314
28315 2004-07-08  Wim Taymans  <wim@fluendo.com>
28316
28317         * gst/playback/Makefile.am:
28318         Add headers to noinst
28319
28320 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
28321
28322         * tools/gst-launch-ext-m.m:
28323         * tools/gst-launch-ext.1.in:
28324           convert to the third millenium
28325
28326 2004-07-07  David Schleef  <ds@schleef.org>
28327
28328         * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
28329
28330 2004-07-07  Wim Taymans  <wim@fluendo.com>
28331
28332         * gst/playback/Makefile.am:
28333         * gst/playback/README:
28334         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
28335         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
28336         (compare_ranks), (print_feature), (gst_decode_bin_init),
28337         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
28338         (try_to_link_1), (new_pad), (close_link), (type_found),
28339         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
28340         (plugin_init):
28341         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
28342         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
28343         (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
28344         (gen_preroll_element), (no_more_pads), (new_stream),
28345         (setup_source), (gst_play_base_bin_set_property),
28346         (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
28347         (gst_play_base_bin_add_element),
28348         (gst_play_base_bin_remove_element),
28349         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
28350         (gst_play_base_bin_unlink_stream),
28351         (gst_play_base_bin_get_streaminfo):
28352         * gst/playback/gstplaybasebin.h:
28353         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
28354         (gst_play_bin_class_init), (gst_play_bin_init),
28355         (gst_play_bin_dispose), (gst_play_bin_set_property),
28356         (gst_play_bin_get_property), (gen_video_element),
28357         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
28358         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
28359         (gst_play_bin_get_formats), (gst_play_bin_convert),
28360         (gst_play_bin_get_query_types), (gst_play_bin_query),
28361         (plugin_init):
28362         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
28363         (gst_stream_info_get_type), (gst_stream_info_class_init),
28364         (gst_stream_info_init), (gst_stream_info_new),
28365         (gst_stream_info_dispose), (gst_stream_info_set_property),
28366         (gst_stream_info_get_property):
28367         * gst/playback/gststreaminfo.h:
28368         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
28369         (main):
28370         * gst/playback/test2.c: (main):
28371         * gst/playback/test3.c: (update_scale), (main):
28372         More playbin fixes. Added README. Do better element filtering.
28373         Added base class to preroll media. Added test apps.
28374
28375 2004-07-07  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
28376
28377         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
28378         * ext/mpeg2dec/gstmpeg2dec.h:
28379           various debugging improvements.  Reset stream to next picture
28380           instead of sequence header, otherwise seeks cannot work.
28381
28382 2004-07-07  Wim Taymans  <wim@fluendo.com>
28383
28384         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
28385         (gst_video_box_class_init), (gst_video_box_set_property),
28386         (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
28387         Use pad_alloc where possible.
28388
28389 2004-07-07  Wim Taymans  <wim@fluendo.com>
28390
28391         * sys/oss/gstosselement.c: (gst_osselement_reset),
28392         (gst_osselement_parse_caps):
28393         * sys/oss/gstosselement.h:
28394         * sys/oss/gstosssrc.c: (gst_osssrc_get):
28395         Fix offset on osssrc.
28396
28397 2004-07-07  Wim Taymans  <wim@fluendo.com>
28398
28399         * ext/theora/theora.c: (plugin_init):
28400         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
28401         (theora_dec_src_query), (theora_dec_chain):
28402         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
28403         (theora_enc_sink_link), (theora_buffer_from_packet),
28404         (theora_push_packet), (theora_enc_chain):
28405         Fix theora granulepos calculation.
28406         Fix overflow in duration/position calculation.
28407         Bump rank to PRIMARY for theoradec.
28408         Use granulepos of last packet to calculate position.
28409         Set keyframe flag on buffers when needed.
28410
28411 2004-07-06  David Schleef  <ds@schleef.org>
28412
28413         * gst/playback/Makefile.am: 'test' in bin_PROGRAMS?  Are you
28414         serious?  (Fixed, obviously.)
28415
28416 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
28417
28418         * po/LINGUAS:
28419         * po/cs.po:
28420           added Czech translation (Miloslav Trmac)
28421
28422 2004-07-05  Wim Taymans  <wim@fluendo.com>
28423
28424         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
28425         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
28426         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
28427         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
28428         (close_link), (type_found), (gst_decode_bin_set_property),
28429         (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
28430         (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
28431         (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
28432         (gst_decode_bin_query), (plugin_init):
28433         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
28434         (gst_play_bin_class_init), (gst_play_bin_init),
28435         (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
28436         (get_video_element), (new_pad), (setup_source),
28437         (gst_play_bin_set_property), (gst_play_bin_get_property),
28438         (gst_play_bin_change_state), (gst_play_bin_add_element),
28439         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
28440         (gst_play_bin_send_event), (gst_play_bin_get_formats),
28441         (gst_play_bin_convert), (gst_play_bin_get_query_types),
28442         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
28443         * gst/playback/test.c: (main):
28444         More fixes, cleaned up playbin, make it use decodebin. Added
28445         threaded property to playbin.
28446
28447 2004-07-05  Wim Taymans  <wim@fluendo.com>
28448
28449         * configure.ac:
28450         * gst/playback/Makefile.am:
28451         * gst/playback/decodetest.c: (main):
28452         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
28453         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
28454         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
28455         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
28456         (close_link), (type_found), (gst_decode_bin_set_property),
28457         (gst_decode_bin_get_property), (gst_decode_bin_change_state),
28458         (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
28459         (gst_decode_bin_get_formats), (gst_decode_bin_convert),
28460         (gst_decode_bin_get_query_types), (gst_decode_bin_query),
28461         (plugin_init):
28462         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
28463         (gst_play_bin_class_init), (gst_play_bin_init),
28464         (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
28465         (collect_sink_pads), (find_compatibles), (close_pad_link),
28466         (try_to_link_1), (new_pad), (close_link), (type_found),
28467         (setup_source), (gst_play_bin_set_property),
28468         (gst_play_bin_get_property), (gst_play_bin_factory_filter),
28469         (compare_ranks), (gst_play_bin_collect_factories),
28470         (gst_play_bin_change_state), (gst_play_bin_add_element),
28471         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
28472         (gst_play_bin_send_event), (gst_play_bin_get_formats),
28473         (gst_play_bin_convert), (gst_play_bin_get_query_types),
28474         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
28475         * gst/playback/test.c: (main):
28476         Added some playback helper elements and some test apps, very alpha
28477         still.
28478
28479 2004-07-04  Benjamin Otte  <otte@gnome.org>
28480
28481         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
28482           only restart audio when we indeed have an xrun to fix repeated
28483           xruns. Fix suggested by Giuliano Pochini.
28484
28485 2004-07-03  David Schleef  <ds@schleef.org>
28486
28487         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
28488         call to gst_debug_log() if debugging is disabled (bug #145118)
28489
28490 2004-07-03  Benjamin Otte  <otte@gnome.org>
28491
28492         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
28493           use our own functions for restarting the alsa device.
28494         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
28495           I should apply patches myself - use MIN for the third argument, not
28496           the second, this fixes seeking
28497
28498 2004-07-02  David Schleef  <ds@schleef.org>
28499
28500         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
28501         (gst_flacdec_write):  Actually, GST_PAD_CAPS() has nothing to
28502         do with the logic.
28503
28504 2004-07-02  David Schleef  <ds@schleef.org>
28505
28506         * ext/flac/gstflacdec.c: (gst_flacdec_write):  Set duration on
28507         output buffers.  Fix logic mistake.  (bug #144866)
28508
28509 2004-07-02  David Schleef  <ds@schleef.org>
28510
28511         * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
28512         on X.  (bug #144753)
28513
28514 2004-07-02  David Schleef  <ds@schleef.org>
28515
28516         * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
28517         (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
28518         (bug #144624)
28519         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
28520         (gst_osselement_rate_probe_check): Add another workaround for
28521         buggy drivers (bug #145336)
28522
28523 2004-07-02  David Schleef  <ds@schleef.org>
28524
28525         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
28526         Most systems don't have MSG_NOSIGNAL.
28527
28528 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
28529
28530         * Makefile.am:
28531         * gst-libs/gst/colorbalance/Makefile.am:
28532         * gst-libs/gst/mixer/Makefile.am:
28533         * gst-libs/gst/play/Makefile.am:
28534         * gst-libs/gst/tuner/Makefile.am:
28535           (hopefully) fix both install and dist and make error message useful.
28536           needs testing across automakes.
28537
28538 2004-07-02  Benjamin Otte  <otte@gnome.org>
28539
28540         * ext/ogg/gstogg.c: (plugin_init):
28541           we require bytestream now
28542         * ext/ogg/gstoggdemux.c:
28543           huge diff to implement chain setup in a fast and generic way. This
28544           improves tag reading and startup of huge files (read: Theora videos)
28545           quite a bit. It probably contains bugs, too, so please test.
28546           Seeking is not improved to the fast method.
28547
28548 2004-06-29  Wim Taymans  <wim@fluendo.com>
28549
28550         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
28551         * ext/ogg/gstoggmux.c:
28552         Fix memleak in oggdemux when running unconnected pads.
28553         doc update in mux, start working on keyframe mode.
28554
28555 2004-06-29  Benjamin Otte  <otte@gnome.org>
28556
28557         * sys/oss/gstosssink.c:
28558         * sys/oss/gstosssrc.c:
28559           advertise correct template caps - we indeed do non-native endianness
28560           and 8bit audio has no endianness
28561         * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
28562         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
28563           avoid (wrong) duplications in getcaps function and return
28564           template caps
28565
28566 2004-06-29  Wim Taymans  <wim@fluendo.com>
28567
28568         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
28569         (gst_multifdsink_class_init), (gst_multifdsink_add),
28570         (gst_multifdsink_remove), (gst_multifdsink_clear),
28571         (gst_multifdsink_client_remove),
28572         (gst_multifdsink_handle_client_read),
28573         (gst_multifdsink_client_queue_data),
28574         (gst_multifdsink_client_queue_caps),
28575         (gst_multifdsink_client_queue_buffer),
28576         (gst_multifdsink_handle_client_write),
28577         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
28578         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
28579         (gst_multifdsink_init_send), (gst_multifdsink_close):
28580         Fix wrong GList iteration that could crash the server when
28581         more then 2 clients disconnect at the same time. Read all the
28582         pending commands in one batch to recover from command storms under
28583         very heavy load.
28584
28585 2004-06-28  Wim Taymans  <wim@fluendo.com>
28586
28587         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
28588         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
28589         (gst_videomixer_pad_set_property),
28590         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
28591         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
28592         (gst_videomixer_class_init), (gst_videomixer_init),
28593         (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
28594         (pad_zorder_compare), (gst_videomixer_sort_pads),
28595         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
28596         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
28597         (gst_videomixer_update_queues), (gst_videomixer_loop),
28598         (plugin_init):
28599         Avoid divide by zero, choose masterpad as the pad with the highest
28600         framerate.
28601
28602 2004-06-27  Julien Moutte  <julien@moutte.net>
28603
28604         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
28605         (gst_ximagesink_xwindow_new):
28606         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
28607         (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
28608         function directly. We might want to call it from somewhere else one day.
28609
28610 2004-06-27  Julien Moutte  <julien@moutte.net>
28611
28612         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
28613         (gst_ximagesink_xwindow_new):
28614         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
28615         (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
28616         window decorations.
28617
28618 2004-06-27  Wim Taymans  <wim@fluendo.com>
28619
28620         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
28621         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
28622         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
28623         (gst_dvdec_set_property), (gst_dvdec_get_property):
28624         * ext/dv/gstdvdec.h:
28625         Implement drop_factor property to lower the framerate with
28626         a factor.
28627
28628 2004-06-27  Thomas Vander Stichele  <thomas at apestaart dot org>
28629
28630         * gst-libs/gst/colorbalance/Makefile.am:
28631         * gst-libs/gst/mixer/Makefile.am:
28632         * gst-libs/gst/play/Makefile.am:
28633         * gst-libs/gst/tuner/Makefile.am:
28634           unbreak Company's fix that didn't install the -enum.h files
28635
28636 2004-06-27  Wim Taymans  <wim@fluendo.com>
28637
28638         * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
28639         (gst_dvdec_change_state):
28640         * ext/dv/gstdvdec.h:
28641         Fix timestamp, duration and offset of the buffers.
28642
28643 2004-06-27  Wim Taymans  <wim@fluendo.com>
28644
28645         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
28646         (gst_multifdsink_class_init), (gst_multifdsink_add),
28647         (gst_multifdsink_remove), (gst_multifdsink_clear),
28648         (gst_multifdsink_client_remove),
28649         (gst_multifdsink_handle_client_read),
28650         (gst_multifdsink_client_queue_data),
28651         (gst_multifdsink_client_queue_caps),
28652         (gst_multifdsink_client_queue_buffer),
28653         (gst_multifdsink_handle_client_write),
28654         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
28655         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
28656         (gst_multifdsink_init_send), (gst_multifdsink_close):
28657         * gst/tcp/gstmultifdsink.h:
28658         * gst/tcp/gsttcpserversink.c:
28659         (gst_tcpserversink_handle_server_read),
28660         (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
28661         More multifdsink fixes, more recovery policy fixes.
28662         Removed stupid g_print
28663
28664 2004-06-26  Wim Taymans  <wim@fluendo.com>
28665
28666         * gst/tcp/Makefile.am:
28667         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
28668         (gst_multifdsink_get_type), (gst_multifdsink_base_init),
28669         (gst_multifdsink_class_init), (gst_multifdsink_init),
28670         (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
28671         (gst_multifdsink_handle_client_read),
28672         (gst_multifdsink_client_queue_data),
28673         (gst_multifdsink_client_queue_caps),
28674         (gst_multifdsink_client_queue_buffer),
28675         (gst_multifdsink_handle_client_write),
28676         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
28677         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
28678         (gst_multifdsink_chain), (gst_multifdsink_set_property),
28679         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
28680         (gst_multifdsink_close), (gst_multifdsink_change_state):
28681         * gst/tcp/gstmultifdsink.h:
28682         * gst/tcp/gsttcpplugin.c: (plugin_init):
28683         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
28684         (gst_tcpserversink_class_init), (gst_tcpserversink_init),
28685         (gst_tcpserversink_handle_server_read),
28686         (gst_tcpserversink_handle_select),
28687         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
28688         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
28689         * gst/tcp/gsttcpserversink.h:
28690         Added multifdsink, made tcpserversink a subclass of fdsink, removed
28691         one of the locks, added recovery policy to multifdsink.
28692
28693 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
28694
28695         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
28696           fix decision for when getting frames with same timestamp
28697         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
28698         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
28699         (gst_v4lsrc_get_property):
28700         * sys/v4l/gstv4lsrc.h:
28701           add latency offset property
28702
28703 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
28704
28705         * gst/videorate/gstvideorate.c: (gst_videorate_chain),
28706         (plugin_init):
28707           fix debugging. add category.
28708
28709 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
28710
28711         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
28712           fix wrong offsets
28713
28714 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
28715
28716         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
28717         (gst_alsa_src_get_time), (gst_alsa_src_loop),
28718         (gst_alsa_src_change_state):
28719           return a time that is in sync with the element's processing
28720
28721 2004-06-25  Wim Taymans  <wim@fluendo.com>
28722
28723         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
28724         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
28725         (gst_tcpserversink_client_remove),
28726         (gst_tcpserversink_handle_client_read),
28727         (gst_tcpserversink_client_queue_data),
28728         (gst_tcpserversink_client_queue_caps),
28729         (gst_tcpserversink_client_queue_buffer),
28730         (gst_tcpserversink_handle_client_write),
28731         (gst_tcpserversink_queue_buffer),
28732         (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
28733         (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
28734         (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
28735         (gst_tcpserversink_close):
28736         * gst/tcp/gsttcpserversink.h:
28737         Serversink rewrite. Really do non blocking writes to clients and
28738         maintain an internal queue to handle slower clients while not
28739         disturbing fast clients.
28740
28741 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
28742
28743         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
28744           better debug, don't override OFFSET and OFFSET_END
28745
28746 2004-06-25  Iain <iain@prettypeople.org>
28747
28748         * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
28749         name=source for the wavparse pipeline.
28750
28751 2004-06-24  Johan Dahlin  <johan@gnome.org>
28752
28753         * ext/theora/theoraenc.c (theora_enc_chain): Call
28754         gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
28755         streamheader caps are set correctly.
28756
28757 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
28758
28759         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
28760         (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
28761           respect minimum bitrate; same could be done for max bitrate
28762
28763 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
28764
28765         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
28766         (gst_vorbisenc_setup):
28767           fix sample rate range
28768
28769 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
28770
28771         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
28772         (gst_oggvorbisenc_setup):
28773         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
28774         (gst_vorbisenc_setup):
28775           resolve ambiguities in code and description
28776
28777 2004-06-24  Wim Taymans  <wim@fluendo.com>
28778
28779         * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
28780         * ext/alsa/gstalsa.h:
28781         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
28782         (gst_alsa_src_update_avail), (gst_alsa_src_loop):
28783         Use alsa trigger_tstamp to get the timestamp of the first
28784         sample in the buffer for more precise sync. Some cleanups.
28785
28786 2004-06-24  Wim Taymans  <wim@fluendo.com>
28787
28788         * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
28789         (gst_audiorate_init), (gst_audiorate_chain),
28790         (gst_audiorate_set_property), (gst_audiorate_get_property):
28791         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
28792         (gst_videorate_chain):
28793         Added some logging, fixed an overflow bug in videorate.
28794
28795 2004-06-24  Benjamin Otte  <otte@gnome.org>
28796
28797         * ext/kio/Makefile.am:
28798           fix for builddir != srcdir and distcheck
28799
28800 2004-06-24  Benjamin Otte  <otte@gnome.org>
28801
28802         * gst-libs/gst/colorbalance/Makefile.am:
28803         * gst-libs/gst/mixer/Makefile.am:
28804         * gst-libs/gst/play/Makefile.am:
28805         * gst-libs/gst/tuner/Makefile.am:
28806         * gst/tcp/Makefile.am:
28807         * sys/dxr3/Makefile.am:
28808           don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
28809           tarball.
28810           Also add all *.list files that were missing.
28811         * Makefile.am:
28812           add a distcheck hook to ensure the above doesn't happen again.
28813
28814 2004-06-23  David I. Lehn  <dlehn@users.sourceforge.net>
28815
28816         * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
28817
28818 2004-06-23  Colin Walters  <walters@redhat.com>
28819
28820         * m4/Makefile.am: Distribute gst-fionread.m4.
28821
28822 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28823
28824         * configure.ac: back to dev
28825
28826 2004-06-23  Wim Taymans  <wim@fluendo.com>
28827
28828         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
28829         (gst_alsa_xrun_recovery):
28830         * ext/alsa/gstalsa.h:
28831         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
28832         (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
28833         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
28834         (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
28835         (gst_alsa_src_loop):
28836         Add clock to alsasrc. Take new capture timestamp when
28837         restarting after an overrun. Split up some functions between
28838         alsasrc and alsasink.
28839
28840 === release 0.8.2 ===
28841
28842 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28843
28844         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
28845         (gst_alsa_change_state), (gst_alsa_update_avail),
28846         (gst_alsa_xrun_recovery):
28847         * ext/alsa/gstalsa.h:
28848         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
28849           merge back changes from release
28850
28851 2004-06-23  Wim Taymans  <wim@fluendo.com>
28852
28853         * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
28854         (gst_audiorate_init), (gst_audiorate_chain),
28855         (gst_audiorate_set_property), (gst_audiorate_get_property):
28856         Implement sample dropping and notify
28857
28858 2004-06-22  Wim Taymans  <wim@fluendo.com>
28859
28860         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
28861         (theora_enc_sink_link), (theora_buffer_from_packet),
28862         (theora_push_packet), (theora_enc_chain):
28863         Some cleanups, make sure the timestamps are correct.
28864
28865 2004-06-22  Wim Taymans  <wim@fluendo.com>
28866
28867         * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
28868         (gst_alsa_change_state), (gst_alsa_update_avail),
28869         (gst_alsa_xrun_recovery):
28870         * ext/alsa/gstalsa.h:
28871         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
28872         Cleanups, take queued samples into account when reporting
28873         the time.
28874
28875 2004-06-22  Wim Taymans  <wim@fluendo.com>
28876
28877         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
28878         (gst_videorate_init):
28879         Initialize the property as well.
28880
28881 2004-06-22  Wim Taymans  <wim@fluendo.com>
28882
28883         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
28884         (gst_videorate_init), (gst_videorate_chain),
28885         (gst_videorate_set_property), (gst_videorate_get_property):
28886         Add property to make videorate silent.
28887         Add property to prefer new frames over old ones.
28888
28889 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28890
28891         * sys/osxvideo/Makefile.am:
28892         Workaround so that the osxvideo .so file gets linked with the
28893         Cocoa, OpenGL and QuickTime frameworks
28894
28895 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28896
28897         * sys/osxaudio/Makefile.am:
28898         Workaround so that the osxaudio .so file gets linked with the
28899         CoreAudio framework
28900
28901 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28902
28903         * configure.ac:
28904         Whoops, my fault...fixed build issues
28905
28906 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28907
28908         * configure.ac:
28909         Add objective-c support if running in Darwin/Mac OS X
28910         * sys/Makefile.am:
28911         * sys/osxvideo:
28912         * sys/osxvideo/Makefile.am:
28913         * sys/osxvideo/osxvideosink.h:
28914         * sys/osxvideo/osxvideosink.m:
28915         * sys/osxvideo/cocoawindow.h:
28916         * sys/osxvideo/cocoawindow.m:
28917         Add osxvideosink, a cocoa-based osx video sink
28918
28919
28920 2004-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
28921         * ext/dvdnav/gst-dvd:
28922         Grab the gconf key from the right spot
28923         * gst/debug/gstnavseek.c: (gst_navseek_init),
28924         (gst_navseek_segseek), (gst_navseek_handle_src_event),
28925         (gst_navseek_chain):
28926         * gst/debug/gstnavseek.h:
28927           Add 's', 'e' and 'l' keypresses to navseek to define the start,end
28928           and loop parameters of a segment seek.
28929         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
28930         (gst_videotestsrc_get_event_masks),
28931         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
28932         * gst/videotestsrc/gstvideotestsrc.h:
28933           Add seeking support to videotestsrc
28934           Initialise the timestamp_offset variable.
28935
28936 2004-06-18  Wim Taymans  <wim@fluendo.com>
28937
28938         * ext/sidplay/gstsiddec.cc:
28939         Fix negotiation and set correct end offset.
28940
28941 2004-06-18  Thomas Vander Stichele  <thomas at apestaart dot org>
28942
28943         * configure.ac: branch and prerelease
28944
28945 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
28946
28947         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
28948         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
28949         (gst_tcpclientsrc_init_receive):
28950         * gst/tcp/gsttcpclientsrc.h:
28951           read caps when connecting to server for GDP so we set them correctly
28952
28953 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
28954
28955         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
28956           notify drops and duplicates
28957         * gst/videoscale/videoscale.c: (videoscale_get_structure):
28958           no good reason to limit ourselves to 100x100
28959
28960 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
28961
28962         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
28963         (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
28964         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
28965         (gst_v4lsrc_get_property):
28966         * sys/v4l/gstv4lsrc.h:
28967         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
28968         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
28969         (gst_v4l_set_audio):
28970         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
28971         (gst_v4lsrc_try_capture):
28972         * sys/v4l/v4lsrc_calls.h:
28973           change try_palette to more general try_capture
28974           add autoprobe option so we can turn off autoprobing
28975           various fixes
28976
28977 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
28978
28979         * configure.ac:
28980           add videorate
28981         * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
28982         (gst_ximagesink_class_init):
28983         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
28984         (gst_xvimagesink_class_init):
28985           run them as finalize, not dispose, since dispose can be invoked
28986           multiple times
28987
28988 2004-06-17  Wim Taymans  <wim@fluendo.com>
28989
28990         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
28991         (gst_alsa_get_time), (gst_alsa_xrun_recovery):
28992         * ext/alsa/gstalsa.h:
28993         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
28994         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
28995         (gst_alsa_src_change_state):
28996         * ext/alsa/gstalsasrc.h:
28997         Make the xrun code timestamp and offset the buffers correctly.
28998         moved the clock to the base class, use alsa methods to get time.
28999         Do correct timestamping on outgoing buffers.
29000
29001 2004-06-17  Wim Taymans  <wim@fluendo.com>
29002
29003         * gst/audiorate/Makefile.am:
29004         * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
29005         (gst_audiorate_base_init), (gst_audiorate_class_init),
29006         (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
29007         (gst_audiorate_set_property), (gst_audiorate_get_property),
29008         (gst_audiorate_change_state), (plugin_init):
29009         Added an audiorate converter that fills in gaps.
29010
29011 2004-06-17  Johan Dahlin  <johan@gnome.org>
29012
29013         * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
29014
29015 2004-06-16  Wim Taymans  <wim@fluendo.com>
29016
29017         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
29018         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
29019         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
29020         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
29021         (gst_v4lsrc_get_property):
29022         * sys/v4l/gstv4lsrc.h:
29023         Added a copy mode to v4lsrc where it will output a copied version
29024         of its internal hardware buffer.
29025         Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
29026         can't | them.
29027
29028 2004-06-16  Wim Taymans  <wim@fluendo.com>
29029
29030         * sys/oss/gstosssrc.c: (gst_osssrc_get):
29031         Timestamp fixes.
29032
29033 2004-06-16  Wim Taymans  <wim@fluendo.com>
29034
29035         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
29036         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
29037         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
29038         (gst_v4lsrc_get_property):
29039         * sys/v4l/gstv4lsrc.h:
29040         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
29041         Added a sync mode enum property to control v4lsrc timestamp method
29042         Removed the use-fixed-fps property and moved functionality in
29043         the enum.
29044         Don't error on an error value from v4l-conf, it might not always
29045         be a real error.
29046
29047 2004-06-16  Wim Taymans  <wim@fluendo.com>
29048
29049         * gst/videorate/Makefile.am:
29050         * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
29051         (gst_videorate_base_init), (gst_videorate_class_init),
29052         (gst_videorate_getcaps), (gst_videorate_link),
29053         (gst_videorate_init), (gst_videorate_chain),
29054         (gst_videorate_set_property), (gst_videorate_get_property),
29055         (gst_videorate_change_state), (plugin_init):
29056         Added a video timestamp corrector.
29057
29058 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29059
29060         fixed a potential leak with previous commit
29061
29062         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
29063
29064 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29065
29066         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
29067         Added missing refcount, fixes bug #144425
29068         Cheers Tim for finding the bug
29069
29070 2004-06-15  Thomas Vander Stichele  <thomas at apestaart dot org>
29071
29072         * sys/v4l/gstv4l.c: (plugin_init):
29073         * sys/v4l/gstv4lcolorbalance.c:
29074         * sys/v4l/gstv4lcolorbalance.h:
29075         * sys/v4l/gstv4lelement.c:
29076         * sys/v4l/gstv4lelement.h:
29077         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
29078         * sys/v4l/gstv4lmjpegsink.h:
29079         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
29080         * sys/v4l/gstv4lmjpegsrc.h:
29081         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
29082         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
29083         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
29084         * sys/v4l/gstv4lsrc.h:
29085         * sys/v4l/gstv4ltuner.c:
29086         * sys/v4l/gstv4ltuner.h:
29087         * sys/v4l/gstv4lxoverlay.c:
29088         * sys/v4l/gstv4lxoverlay.h:
29089         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
29090         (gst_v4l_set_window), (gst_v4l_enable_overlay):
29091         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
29092         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
29093         (gst_v4l_set_audio):
29094         * sys/v4l/v4l_calls.h:
29095         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
29096         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
29097         (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
29098         (gst_v4lmjpegsink_playback_init),
29099         (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
29100         (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
29101         (gst_v4lmjpegsink_playback_stop),
29102         (gst_v4lmjpegsink_playback_deinit):
29103         * sys/v4l/v4lmjpegsink_calls.h:
29104         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
29105         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
29106         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
29107         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
29108         (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
29109         (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
29110         * sys/v4l/v4lmjpegsrc_calls.h:
29111         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
29112         (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
29113         (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
29114         (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
29115         (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
29116         (gst_v4lsrc_try_palette):
29117         * sys/v4l/v4lsrc_calls.h:
29118           bunch of paranoia cleanups
29119
29120 2004-06-14  David Schleef  <ds@schleef.org>
29121
29122         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
29123         (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
29124         Send discont events and change timestamps appropriately when
29125         we get a seek event.  (bug #144240)
29126         * ext/cdparanoia/gstcdparanoia.h:
29127
29128 2004-06-14  Benjamin Otte  <otte@gnome.org>
29129
29130         * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
29131           snd_pcm_hw_params_set_rate  since the latter fails for no good
29132           reason on some setups.
29133
29134 2004-06-14  David Schleef  <ds@schleef.org>
29135
29136         * gst/volume/demo.c: (value_changed_callback): exp10() is not
29137         standard.  Thank you for playing.
29138
29139 2004-06-14  Wim Taymans  <wim@fluendo.com>
29140
29141         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
29142         Patch 1.3 broke the ordering of the colorspace info and
29143         made the plugin basically work by coincidence, reordered
29144         the info.
29145
29146 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
29147
29148         * ext/lame/gstlame.c:
29149         * ext/mad/gstmad.c:
29150           sync caps.  Make sure mad can only output a list of rates, not
29151           a full range.  In the future, have three caps lists for each of the
29152           mpeg versions.  Change mpegversion to a double as well.
29153
29154 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
29155
29156         * gst/volume/.cvsignore:
29157         * gst/volume/Makefile.am:
29158         * gst/volume/demo.c: (value_changed_callback), (idler),
29159         (setup_gui), (main):
29160           added small demo app
29161
29162 2004-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
29163         * ext/esd/esdsink.c: (gst_esdsink_change_state):
29164         * ext/esd/esdsink.h:
29165         Close the esd connection on pause, because esd will just wait -
29166         blocking all other esd clients indefinitely.
29167
29168 2004-06-12  Christophe Fergeau  <teuf@gnome.org>
29169
29170         * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
29171           previous commit with GST_DEBUG
29172
29173 2004-06-12  Thomas Vander Stichele  <thomas at apestaart dot org>
29174
29175         * configure.ac:
29176           add a header check for a dvdread header in dvdnav.  Fixes #133002
29177
29178 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29179
29180         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
29181         * gst/tcp/gsttcpclientsink.h:
29182         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
29183         * gst/tcp/gsttcpclientsrc.h:
29184         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
29185         (gst_tcpserversink_handle_server_read),
29186         (gst_tcpserversink_init_send):
29187         * gst/tcp/gsttcpserversink.h:
29188         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
29189         * gst/tcp/gsttcpserversrc.h:
29190         Modified the tcp plugins so they are portable (IPv4,IPv6, any future
29191         version of IP)
29192
29193 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29194
29195         * configure.ac:
29196         Added ogg library so that OSX detects libtheora properly
29197
29198 2004-06-11  Wim Taymans  <wim@fluendo.com>
29199
29200         * ext/theora/theoradec.c: (theora_dec_chain),
29201         (theora_dec_change_state):
29202         Don't try to decode frames before we received a keyframe.
29203
29204 2004-06-11  Wim Taymans  <wim@fluendo.com>
29205
29206         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
29207         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
29208         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
29209         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
29210         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
29211         Added property to set the maximum delay of a page.
29212
29213 2004-06-10  Wim Taymans  <wim@fluendo.com>
29214
29215         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
29216         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
29217         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
29218         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
29219         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
29220         Added max-delay property to control the maximum amount
29221         of data to put in one page.
29222
29223 2004-06-10  Wim Taymans  <wim@fluendo.com>
29224
29225         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
29226         (gst_theora_enc_init), (theora_enc_sink_link),
29227         (theora_buffer_from_packet), (theora_enc_set_property),
29228         (theora_enc_get_property):
29229         Set duration on encoded buffer, added some more properties
29230
29231 2004-06-10  Wim Taymans  <wim@fluendo.com>
29232
29233         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
29234         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
29235         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
29236         * ext/theora/theoraenc.c: (theora_enc_chain):
29237         Fix refcounting bugs
29238
29239 2004-06-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29240
29241         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
29242         (gst_asf_demux_loop), (gst_asf_demux_process_file),
29243         (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
29244         (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
29245         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
29246         (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
29247         (gst_asf_demux_change_state):
29248         * gst/asfdemux/gstasfdemux.h:
29249           You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
29250           feels like. I think we should set a new requirement for demuxers
29251           from now on to implement sane loop functions, data loops, query
29252           and seek functions before first commit into CVS. And this commit
29253           fixes all of the above.
29254
29255 2004-06-10  Christophe Fergeau  <teuf@gnome.org>
29256
29257         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
29258           vorbis comments are properly encoded in UTF-8 before adding them
29259           to a GstTagList
29260
29261 2004-06-09  Benjamin Otte  <otte@gnome.org>
29262
29263         * ext/alsa/gstalsa.c: (add_channels):
29264           handle min <= max correctly
29265         * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
29266         (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
29267           add fixation functions so we fixate correctly. No preferring of alaw
29268           anymore because it's the first structure.
29269         * ext/alsa/gstalsa.h:
29270         * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
29271         (gst_alsa_hw_params_dump):
29272           add functions to ease debugging in alsalib
29273         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
29274         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
29275         (gst_alsa_start_audio):
29276           only specify hw params if we really setup a format (fixes #134007 -
29277           or at least works around it)
29278
29279 2004-06-09  Wim Taymans  <wim@fluendo.com>
29280
29281         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
29282         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
29283         (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
29284         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
29285         (gst_ogg_mux_loop):
29286         Use stream caps to setup the initial pages in the ogg stream.
29287         Correctly set the streamheader caps on the srcpad.
29288
29289 2004-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
29290
29291         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
29292         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
29293         (gst_v4lsrc_getcaps):
29294         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
29295         (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
29296           add querying of fps lists for webcams.  Negotiating to a framerate
29297           now works.
29298
29299 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
29300
29301         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
29302         (theora_push_buffer), (theora_push_packet),
29303         (theora_set_header_on_caps), (theora_enc_chain):
29304           mark buffers and put on streamheader, raw theora streaming
29305           now works too, whee
29306
29307 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
29308
29309         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
29310         (gst_tcp_gdp_read_caps):
29311           do a looping read for caps and GDP headers too
29312
29313 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
29314
29315         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
29316         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
29317           return EOS instead of NULL in _get
29318
29319 2004-06-08  Wim Taymans  <wim@fluendo.com>
29320
29321         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
29322         (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
29323         (gst_tcp_gdp_write_caps):
29324         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
29325         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
29326         (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
29327         Memory leak fixes
29328
29329 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
29330
29331         * ext/vorbis/Makefile.am:
29332         * ext/vorbis/vorbis.c: (plugin_init):
29333         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
29334         (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
29335         (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
29336         (vorbis_parse_change_state):
29337         * ext/vorbis/vorbisparse.h:
29338           adding a vorbisparse element that marks the buffers, streaming
29339           raw vorbis using GDP now works, whee
29340
29341 2004-06-08  Wim Taymans  <wim@fluendo.com>
29342
29343         * ext/jpeg/Makefile.am:
29344         * ext/jpeg/README:
29345         * ext/jpeg/gstjpeg.c: (plugin_init):
29346         * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
29347         (gst_smokedec_base_init), (gst_smokedec_class_init),
29348         (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
29349         * ext/jpeg/gstsmokedec.h:
29350         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
29351         (gst_smokeenc_base_init), (gst_smokeenc_class_init),
29352         (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
29353         (gst_smokeenc_resync), (gst_smokeenc_chain),
29354         (gst_smokeenc_set_property), (gst_smokeenc_get_property):
29355         * ext/jpeg/gstsmokeenc.h:
29356         * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
29357         (smokecodec_flush_destination), (smokecodec_term_destination),
29358         (smokecodec_init_source), (smokecodec_fill_input_buffer),
29359         (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
29360         (smokecodec_term_source), (smokecodec_encode_new),
29361         (smokecodec_decode_new), (smokecodec_info_free),
29362         (smokecodec_set_quality), (smokecodec_get_quality),
29363         (smokecodec_set_threshold), (smokecodec_get_threshold),
29364         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
29365         (find_best_size), (abs_diff), (put), (smokecodec_encode),
29366         (smokecodec_parse_header), (smokecodec_decode):
29367         * ext/jpeg/smokecodec.h:
29368         Added a new simple jpeg based codec
29369
29370 2004-06-08  Wim Taymans  <wim@fluendo.com>
29371
29372         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
29373         (gst_multipart_mux_loop):
29374         Fix memory leak
29375
29376 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
29377
29378         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
29379         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
29380         (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
29381         (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
29382         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
29383         * gst/tcp/gsttcpserversink.h:
29384           take streamheader into account
29385
29386 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
29387
29388         * gst/level/Makefile.am:
29389         * gst/level/gstlevel.c: (gst_level_class_init):
29390           clean up marshal generation
29391
29392 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
29393
29394         * gst/tcp/Makefile.am:
29395         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
29396         (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
29397         (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
29398         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
29399         (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
29400         (gst_tcpclientsrc_get_property):
29401         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
29402         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
29403         (gst_tcpserversink_handle_client_read),
29404         (gst_tcpserversink_handle_client_write),
29405         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
29406         * gst/tcp/gsttcpserversink.h:
29407           add signals client-added and client-removed
29408         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
29409         (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
29410         (gst_tcpserversrc_get_property):
29411         uniformized, change default protocol to NONE
29412         * gst/tcp/gsttcp-marshal.list: added
29413 2004-06-07  Benjamin Otte  <otte@gnome.org>
29414
29415         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
29416           handle discont events if they happen before caps nego
29417
29418 2004-06-07  Wim Taymans  <wim@fluendo.com>
29419
29420         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
29421         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
29422         (gst_multipart_demux_plugin_init):
29423         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
29424         (gst_multipart_mux_init), (gst_multipart_mux_loop),
29425         (gst_multipart_mux_change_state):
29426         Small updates, fix a memleak
29427
29428 2004-06-07  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
29429
29430         * configure.ac: OSS portability
29431         * ext/arts/gst_arts.c: idem
29432         * sys/oss/gstosselement.c: idem
29433         * sys/oss/gstossmixer.c: idem
29434         * sys/oss/gstosssink.c: idem
29435         * sys/oss/gstosssrc.c: idem
29436         * sys/oss/oss_probe.c: idem
29437           - check for soundcard.h in different places for some BSD
29438
29439 2004-06-07  Jan Schmidt <thaytan@mad.scientist.com>
29440
29441         * AUTHORS:
29442         Add me to the authors file
29443         * configure.ac:
29444         Increase the libdv requirement to >= version 0.100
29445         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
29446         (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
29447         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
29448         * ext/dv/gstdvdec.h:
29449         Add support for the new_media flag when sending DISCONT events
29450         Make the querying work when video pad is not linked
29451
29452 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
29453
29454         reviewed by Benjamin Otte  <otte@gnome.org>
29455
29456         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
29457           create a NULL-initialized array of pads, so we don't think they
29458           exist already. (fixes #143130)
29459
29460 2004-06-07  Benjamin Otte  <otte@gnome.org>
29461
29462         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
29463         (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
29464         (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
29465           don't use // coments
29466
29467 2004-06-07  Benjamin Otte  <otte@gnome.org>
29468
29469         * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
29470           cast to GstClockTime to get higher granularity
29471         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
29472           use gst_element_set_time_delay to get the exact time
29473         * ext/mad/gstmad.c: (gst_mad_chain):
29474           use the negotiated rate instead of the current frame's rate which
29475           might be wrong because of bit errors. This avoids emitting totally
29476           bogus timestamps and screwing sync.
29477         (fixes #143454)
29478
29479 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
29480
29481         reviewed by Benjamin Otte  <otte@gnome.org>
29482
29483         * gst/adder/gstadder.c: (gst_adder_loop):
29484           properly error out when no negotiation has happened yet. (fixes
29485           #143032)
29486
29487 2004-06-06  Benjamin Otte  <otte@gnome.org>
29488
29489         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
29490           forward correctly transformed offset in discont events. Based on
29491           patch by Arwed v. Merkatz. (fixes #142851)
29492
29493 2004-06-06  David Schleef  <ds@schleef.org>
29494
29495         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
29496         G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS.  Should fix compile
29497         problems on several systems.
29498
29499 2004-06-06  Benjamin Otte  <otte@gnome.org>
29500
29501         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
29502           use explicit caps on the srcpad
29503         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
29504           properly error out if caps couldn't be set (fixes #142764)
29505
29506 2004-06-06  Benjamin Otte  <otte@gnome.org>
29507
29508         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
29509         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
29510         (gst_alsa_start_audio):
29511           - don't call set_periods_integer anymore, it breaks the
29512           configuration randomly
29513           - call snd_pcm_hw_params_set_access directly instead of using masks
29514           - don't fail if the sw_params can't be set, just use the default
29515           params and hope it works. Alsalib has weird issues when you touch
29516           sw_params and does no proper error reporting about what failed.
29517         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
29518         (gst_alsa_close_audio):
29519           make our alsa debugging go via gst debugging and not conditionally
29520           defined
29521         * ext/alsa/gstalsa.h:
29522           add ALSA_DEBUG_FLUSH macro
29523         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
29524         (plugin_init):
29525           wrap alsa errors to be printed via the gst debugging system and not
29526           spammed to stderr
29527
29528 2004-06-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29529
29530         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
29531         (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
29532         (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
29533         (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
29534         (qtdemux_parse_trak):
29535         * gst/qtdemux/qtdemux.h:
29536           Bitch. Also known as seeking, querying & co.
29537         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
29538         (gst_osssink_change_state):
29539         * sys/oss/gstosssink.h:
29540           Resyncing is for weenies, this hack is no longer needed and was
29541           broken anyway (since it - unintendedly - always leaves resync to
29542           TRUE).
29543
29544 2004-06-05  Andrew Turner <zxombie@hotpop.com>
29545
29546         * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
29547         * gst/tcp/gsttcpclientsrc.h: idem
29548           - define MSG_NOSIGNAL if not done
29549           - include unistd.h for off_t
29550           (fixes #143749)
29551
29552 2004-06-05  Benjamin Otte  <otte@gnome.org>
29553
29554         * configure.ac:
29555         * ext/kio/Makefile.am:
29556           check for qt's moc preprocessor explicitly and use it
29557
29558 2004-06-03  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
29559
29560         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
29561           don't get a signal for EPIPE on socket writes
29562           (somebody check if this works on other platforms)
29563
29564 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
29565
29566         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
29567         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
29568           check error condition on available samples correctly
29569
29570 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
29571
29572         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
29573           avoid a segfault
29574         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
29575         (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
29576         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
29577         (gst_tcpserversrc_gdp_read_header):
29578          use ssize_t over size_t since the former is signed and thus the
29579          check for error codes can work
29580
29581 2004-06-02  Wim Taymans  <wim@fluendo.com>
29582
29583         reviewed by: Johan
29584
29585         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
29586         (gst_multipart_mux_loop):
29587         Oops
29588
29589 2004-06-02  Wim Taymans  <wim@fluendo.com>
29590
29591         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
29592         (gst_multipart_mux_init), (gst_multipart_mux_loop),
29593         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
29594         (gst_multipart_mux_change_state):
29595         Added configurable boundary specifier, added the value as a
29596         caps field as well.
29597
29598 2004-06-02  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29599
29600         * gst/tcp/gsttcp.c:
29601         * gst/tcp/gsttcpclientsrc.c:
29602         * gst/tcp/gsttcpclientsrc.h:
29603         * gst/tcp/gsttcpserversrc.c:
29604           - portability fix, to compile on OSX
29605             (fixes #143146)
29606
29607         * sys/osxaudio/gstosxaudioelement.c:
29608         * sys/osxaudio/gstosxaudiosink.c:
29609         * sys/osxaudio/gstosxaudiosrc.c:
29610           - compilation warnings on OSX
29611             (fixes #143153)
29612
29613 2004-06-02  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
29614
29615         * ext/vorbis/vorbisdec.c : sign warning fixes
29616
29617         * gst-libs/gst/mixer/mixertrack.c :
29618           do no use defines which are glib 2.4 specific
29619
29620 2004-06-01  Christophe Fergeau  <teuf@gnome.org>
29621
29622         * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
29623           buffer since libflac doesn't expect it (reports a sync error when
29624           it encounters that)
29625
29626
29627 2004-06-01  Owen Fraser-Green  <owen@discobabe.net>
29628
29629         * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
29630         * gst-libs/gst/mixer/mixertrack.c:
29631         (gst_mixer_track_get_property), (get_mixer_track_init),
29632         (get_mixer_track_get_property): Added property accessors
29633         * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
29634         * gst-libs/gst/mixer/mixeroptions.c:
29635         (gst_mixer_options_get_values): Added
29636         * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
29637         * gst-libs/gst/mixer/mixer.c: Fixed comment
29638
29639
29640 2004-06-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
29641
29642         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
29643           improve error messages on open
29644
29645
29646 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
29647
29648         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
29649           check if v4l-conf is in path
29650
29651 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
29652
29653         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
29654           change assert to a more readable error message
29655
29656 2004-05-31  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
29657
29658         * gst-libs/gst/tuner/tunerchannel.h:
29659           - add a freq_multiplicator field to make the conversion
29660             between internal frequency unit and Hz
29661         * sys/v4l/gstv4lelement.c:
29662         * sys/v4l2/gstv4l2element.c:
29663           - change default video device to /dev/video0
29664         * sys/v4l/v4l_calls.c:
29665         * sys/v4l2/v4l2_calls.c:
29666           - we only expose frequency to the user in Hz instead of
29667             bastard v4lX unit (either 62.5kHz or 62.5Hz)
29668
29669 2004-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
29670         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
29671           Initialise b_o_s and e_o_s variables
29672         * gst-libs/gst/riff/riff-media.c:
29673         (gst_riff_create_video_caps_with_data):
29674           Add some unusual fourcc's from mplayer avi's
29675         * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
29676           Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
29677           autoplugging.
29678
29679 2004-05-28  Wim Taymans  <wim@fluendo.com>
29680
29681         * configure.ac:
29682         * gst/alpha/Makefile.am:
29683         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
29684         (gst_alpha_get_type), (gst_alpha_base_init),
29685         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
29686         (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
29687         (gst_alpha_chroma_key), (gst_alpha_chain),
29688         (gst_alpha_change_state), (plugin_init):
29689         A plugin to add an alpha channel to I420 video. Can optionally do
29690         chroma keying.
29691         * gst/multipart/Makefile.am:
29692         * gst/multipart/multipart.c: (plugin_init):
29693         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
29694         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
29695         (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
29696         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
29697         (gst_multipart_demux_change_state),
29698         (gst_multipart_demux_plugin_init):
29699         * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
29700         (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
29701         (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
29702         (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
29703         (gst_multipart_mux_pad_unlink),
29704         (gst_multipart_mux_request_new_pad),
29705         (gst_multipart_mux_handle_src_event),
29706         (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
29707         (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
29708         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
29709         (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
29710         A Multipart demuxer/muxer. Not sure if it violates specs. Used to
29711         send multipart jpeg images to a browser.
29712         * gst/videobox/Makefile.am:
29713         * gst/videobox/README:
29714         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
29715         (gst_video_box_get_type), (gst_video_box_base_init),
29716         (gst_video_box_class_init), (gst_video_box_init),
29717         (gst_video_box_set_property), (gst_video_box_get_property),
29718         (gst_video_box_sink_link), (gst_video_box_i420),
29719         (gst_video_box_ayuv), (gst_video_box_chain),
29720         (gst_video_box_change_state), (plugin_init):
29721         Crops or adds borders around an image. can do alpha channel
29722         borders as well.
29723         * gst/videomixer/Makefile.am:
29724         * gst/videomixer/README:
29725         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
29726         (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
29727         (gst_videomixer_pad_get_sink_event_masks),
29728         (gst_videomixer_pad_get_property),
29729         (gst_videomixer_pad_set_property),
29730         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
29731         (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
29732         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
29733         (gst_videomixer_base_init), (gst_videomixer_class_init),
29734         (gst_videomixer_init), (gst_videomixer_request_new_pad),
29735         (gst_videomixer_handle_src_event),
29736         (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
29737         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
29738         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
29739         (gst_videomixer_loop), (gst_videomixer_get_property),
29740         (gst_videomixer_set_property), (gst_videomixer_change_state),
29741         (plugin_init):
29742         Generic video mixer plugin, can handle multiple inputs all with
29743         different framerates and video sizes. Is fully alpha channel
29744         aware.
29745
29746 2004-05-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29747
29748         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
29749           Select first track as master track. Not sure how else to handle
29750           that...
29751         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
29752           Discard discont events. Should fix #142962.
29753
29754 2004-05-26  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29755
29756         * ext/alsa/Makefile.am:
29757         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
29758         (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
29759         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
29760         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
29761         (gst_alsa_mixer_get_option):
29762         * ext/alsa/gstalsamixer.h:
29763         * ext/alsa/gstalsamixeroptions.c:
29764         (gst_alsa_mixer_options_get_type),
29765         (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
29766         (gst_alsa_mixer_options_new):
29767         * ext/alsa/gstalsamixeroptions.h:
29768         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
29769         * ext/alsa/gstalsamixertrack.h:
29770           Add enumerations (as GstMixerOptions). Make correct distinction
29771           between input/output tracks. Add capture/playback private flag.
29772           Use flag to decide on whether to set capture or playback volumes
29773           or switches. Use playback and record switches.
29774         * gst-libs/gst/mixer/Makefile.am:
29775         * gst-libs/gst/mixer/mixer-marshal.list:
29776         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
29777         (gst_mixer_set_option), (gst_mixer_get_option),
29778         (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
29779         (gst_mixer_volume_changed), (gst_mixer_option_changed):
29780         * gst-libs/gst/mixer/mixer.h:
29781         * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
29782         (gst_mixer_options_class_init), (gst_mixer_options_init),
29783         (gst_mixer_options_dispose):
29784         * gst-libs/gst/mixer/mixeroptions.h:
29785           Add GstMixerOptions.
29786         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
29787           Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
29788           broken device detection on computers with multiple OSS sound
29789           cards.
29790
29791 2004-05-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29792
29793         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
29794           fixate nicely even when the peer is not negotiating
29795
29796 2004-05-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29797
29798         * gst/audioconvert/gstaudioconvert.c:
29799         (gst_audio_convert_parse_caps):
29800           make sure we don't allow depth > width
29801         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
29802           fixate endianness to G_BYTE_ORDER as default
29803         * gst/audioscale/gstaudioscale.c:
29804           we don't handle another endianness as host-endianness
29805
29806 2004-05-25  David Schleef  <ds@schleef.org>
29807
29808         * gst/ffmpegcolorspace/mem.c:  malloc() is in stdlib.h, not malloc.h
29809
29810 2004-05-24  Benjamin Otte  <otte@gnome.org>
29811
29812         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
29813         (gst_oggvorbisenc_setup):
29814           properly fail when we can't setup the vorbis encoder due to
29815           unsupported settings
29816         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
29817         (gst_vorbisenc_setup):
29818           same
29819         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
29820           fix case where warnings occured when one pad was unlinked while the
29821           other's link function was called
29822
29823 2004-05-24  Thomas Vander Stichele  <thomas at apestaart dot org>
29824
29825         * gst/tcp/Makefile.am:
29826           use GST_ENABLE_NEW
29827
29828 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29829
29830         * gst-libs/gst/resample/private.h:
29831           don't use optimizations that are #if 0'ed
29832
29833 2004-05-24  Wim Taymans  <wim@fluendo.com>
29834
29835         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
29836         Fix potential division by zero error and hopefully get
29837         the position query right to get correct timestamps on avi
29838         audio.
29839
29840 2004-05-24  Wim Taymans  <wim@fluendo.com>
29841
29842         * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
29843         (gst_videoscale_scale_nearest_str2),
29844         (gst_videoscale_scale_nearest_str4),
29845         (gst_videoscale_scale_nearest_32bit),
29846         (gst_videoscale_scale_nearest_24bit),
29847         (gst_videoscale_scale_nearest_16bit):
29848         Fix the scaling algorithm and avoid a buffer overflow.
29849         removed the while loop in the scaling function as it
29850         was used for point sampling only.
29851
29852 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29853
29854         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
29855         (gst_id3_tag_class_init), (gst_id3_tag_init),
29856         (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
29857         (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
29858         (gst_id3_tag_send_tag_event):
29859           lots of fixes to make id3mux work and id3demux work correctly
29860
29861 2004-05-24  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
29862
29863         * ext/Makefile.am:
29864           add rules to build shout2send (was removed by accident
29865           when this module was no more marked experimental/broken)
29866
29867 2004-05-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29868
29869         * ext/shout2/gstshout2.c:
29870         * ext/shout2/gstshout2.h:
29871           adding a "connection problem" signal to shout2send
29872           (fixes #142954)
29873
29874 2004-05-21  Thomas Vander Stichele  <thomas at apestaart dot org>
29875
29876         * ext/kio/kioreceiver.cpp:
29877         * ext/kio/kioreceiver.h:
29878           fix sign comparison issues
29879
29880 2004-05-21  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
29881
29882         * gst/cdxaparse/gstcdxaparse.c:
29883         * gst/cdxaparse/gstcdxaparse.h:
29884           some renaming
29885           add some checks/sanity
29886           prepare for seek addition
29887
29888         * sys/sunaudio/gstsunaudio.c:
29889           remove exported dupe init function
29890
29891 2004-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
29892
29893         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
29894         (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
29895           Fix format conversion and position querying.
29896         * gst/debug/progressreport.c: (gst_progressreport_report):
29897           Don't output a bogus total value that we didn't query.
29898         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
29899           Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
29900           only a blank window after xine has been used.
29901
29902 2004-05-21  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
29903
29904         * m4/as-arts.m4:
29905           sync with upstream version to fix test on FC2
29906           readd with -ko to preserve Id header
29907
29908 2004-05-20  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
29909
29910         * configure.ac:
29911           test for FIONREAD ioctl in sys/filio.h for Solaris compat.
29912         * gst/tcp/gsttcpclientsrc.c: idem
29913         * gst/tcp/gsttcpserversink.c: idem
29914         * gst/tcp/gsttcpserversrc.c: idem
29915         * m4/gst-fionread.m4: idem
29916
29917         * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
29918
29919         * configure.ac: enable speex plugin for speex 1.1.5+
29920         * ext/speex/gstspeexenc.c: fix cast warning
29921
29922         * ext/esd/README: fix typo
29923
29924 2004-05-20  David Schleef  <ds@schleef.org>
29925
29926         * configure.ac: Minor cosmetic change to convince the buildbot to
29927         reautogen.
29928         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
29929         (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
29930         (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
29931         (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
29932         (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
29933         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
29934         More hacking.  Plays audio now.
29935
29936 2004-05-20  David Schleef  <ds@schleef.org>
29937
29938         * configure.ac:
29939         * sys/Makefile.am:
29940
29941 2004-05-20  David Schleef  <ds@schleef.org>
29942
29943         * sys/osxaudio/Makefile.am:  New OS X audio plugin by Zaheer Abbas Merali
29944         * sys/osxaudio/gstosxaudio.c:
29945         * sys/osxaudio/gstosxaudioelement.c:
29946         * sys/osxaudio/gstosxaudioelement.h:
29947         * sys/osxaudio/gstosxaudiosink.c:
29948         * sys/osxaudio/gstosxaudiosink.h:
29949         * sys/osxaudio/gstosxaudiosrc.c:
29950         * sys/osxaudio/gstosxaudiosrc.h:
29951
29952 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
29953
29954         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
29955         (gst_vorbisenc_chain):
29956           put the codec headers on the caps as streamheader as well as
29957           pushing them out
29958
29959 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
29960
29961         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
29962         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
29963         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
29964         split up push_packet into two functions
29965
29966 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
29967
29968         * gst/tcp/.cvsignore:
29969           ignore enums
29970         * gst/tcp/Makefile.am:
29971         * gst/tcp/README:
29972         * gst/tcp/gsttcp.c:
29973         * gst/tcp/gsttcp.h:
29974         * gst/tcp/gsttcpclientsink.c:
29975         * gst/tcp/gsttcpclientsink.h:
29976         * gst/tcp/gsttcpclientsrc.c:
29977         * gst/tcp/gsttcpclientsrc.h:
29978         * gst/tcp/gsttcpplugin.c:
29979         * gst/tcp/gsttcpserversink.c:
29980         * gst/tcp/gsttcpserversink.h:
29981         * gst/tcp/gsttcpserversrc.c:
29982         * gst/tcp/gsttcpserversrc.h:
29983           add new tcp elements
29984
29985 2004-05-19  Wim Taymans  <wim@fluendo.com>
29986
29987         * gst/law/mulaw-conversion.c: (mulaw_encode):
29988         Fix overflow bug in ulaw encoding.
29989
29990 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29991
29992         * ext/mad/gstmad.c: (gst_mad_handle_event):
29993           don't unref the event twice
29994
29995 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29996
29997         * configure.ac:
29998           remove -Wno-sign-compare
29999
30000 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30001
30002         * configure.ac:
30003           remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
30004           if you want to work against glib 2.2 and 2.4
30005
30006 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
30007
30008         * gst/tcp/Makefile.am:
30009         * gst/tcp/gsttcp.c:
30010         * gst/tcp/gsttcp.h:
30011         * gst/tcp/gsttcpsink.h:
30012         * gst/tcp/gsttcpsrc.h:
30013           gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
30014
30015 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30016
30017         * gst/debug/tests.c: (md5_get_value):
30018           fix segfault on gst-inspect
30019
30020 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30021
30022         * gst/debug/testplugin.c:
30023         * gst/debug/tests.c:
30024         * gst/debug/tests.h:
30025           add new extensible and configurable testing element. Current tests
30026           include buffer count, stream length, timestamp/duration matching and
30027           md5.
30028         * gst/debug/Makefile.am:
30029         * gst/debug/gstdebug.c: (plugin_init):
30030           add infrastructure for new element
30031
30032 2004-05-19  Johan Dahlin  <johan@gnome.org>
30033
30034         * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
30035         ending of the array. Fixes gst-inspect segfault on ppc.
30036
30037 2004-05-19  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
30038
30039         * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
30040
30041         * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
30042
30043 2004-05-18  David Schleef  <ds@schleef.org>
30044
30045         * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
30046         warnings (bugs, actually) noticed by gcc but not forte.
30047
30048 2004-05-18  David Schleef  <ds@schleef.org>
30049
30050         * sys/sunaudio/Makefile.am:
30051         * sys/sunaudio/gstsunaudio.c: New sunaudiosink
30052
30053 2004-05-18  David Schleef  <ds@schleef.org>
30054
30055         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
30056         (gst_qtdemux_loop_header):  Patch from dcm@acm.org (David Moore)
30057         to allow qtdemux to use non-seekable streams. (bug #142272)
30058
30059 2004-05-18  David Schleef  <ds@schleef.org>
30060
30061         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
30062         (gst_resample_sinc_ft_float): Remove use of static temporary
30063         buffer.  This code was obviously not supposed to last long, but
30064         it's stuck in our ABI, so it required a little hack to make it
30065         ABI-compatible.  Fixes #142585.
30066         * gst-libs/gst/resample/resample.h: same.
30067
30068 2004-05-18  David Schleef  <ds@schleef.org>
30069
30070         * configure.ac: Add sunaudio
30071         * examples/Makefile.am: make gstplay depend on gconf
30072         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
30073         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
30074         (convert_table_lookup), (img_convert): remove c99-isms
30075         * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
30076           unsigned, to fix a warning on Solaris
30077         * gst/mpeg1sys/systems.c: bcopy->memcpy
30078         * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
30079         * sys/Makefile.am: Add sunaudio
30080
30081 2004-05-18  Wim Taymans  <wim@fluendo.com>
30082
30083         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
30084         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
30085         (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
30086         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
30087         (gst_ogg_mux_loop):
30088         Fix an ugly memleak where the muxer didn't flush enough ogg
30089         pages. This also resulted in badly muxed ogg files.
30090
30091 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
30092
30093         * gst/asfdemux/asfheaders.c :
30094         * gst/asfdemux/asfheaders.h :
30095         * gst/asfdemux/gstasfdemux.c :
30096           - fix ASF_OBJ_PADDING guid
30097           - add 3 new object guids (language list, metadata,
30098             extended stream properties)
30099           - add a function to parse extended header objects
30100
30101 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30102
30103         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
30104           remove leftover debugging g_print
30105
30106 2004-05-17  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30107
30108         * ext/mad/gstmad.c: (gst_mad_handle_event):
30109           Fix for when the first format in a discont event is not a
30110           byte-based one. Should fix #137710.
30111
30112 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
30113
30114         * m4/a52.m4 : fix compilation with -Wall -Werror
30115         * m4/libfame.m4 : idem
30116         * m4/libmikmod.m4 : idem
30117
30118 2004-05-17  Benjamin Otte  <otte@gnome.org>
30119
30120         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
30121           signal the new tags before giving up the reference
30122
30123 2004-05-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30124
30125         * ext/shout2/gstshout2.c:
30126           use application/ogg instead of application/x-ogg (patch by Patrick
30127           Guimond, fixes #142432)
30128         * sys/oss/gstosselement.c: (gst_osselement_reset),
30129         (gst_osselement_sync_parms):
30130           don't set fragment size unless specified (fixes #142493)
30131
30132 2004-05-17  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
30133
30134         * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
30135           fixes #142664
30136
30137 2004-05-17  Benjamin Otte  <otte@gnome.org>
30138
30139         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
30140           compute offsets correctly for internal buffers so timestamps are set
30141           correctly when we can't seek. Also handle cases where there are no
30142           offsets. (based on a patch by David Moore, fixes #142507)
30143
30144 2004-05-17  Benjamin Otte  <otte@gnome.org>
30145
30146         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
30147           use correct variable when determining amount of data to skip so we
30148           don't skip into the void and segfault
30149
30150 2004-05-16  Benjamin Otte  <otte@gnome.org>
30151
30152         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
30153           Hi, I'm a memleak
30154
30155 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
30156
30157         * gst/asfdemux/gstasfdemux.c:
30158           - fix a mem leak and always propagate tags
30159           - add WMV3 to known video codecs (but no decoder yet)
30160           - replace "surplus data" at end of audio header for what
30161             it is : codec specific data
30162           - fix a typo
30163
30164 2004-05-16  Arwed v. Merkatz  <v.merkatz@gmx.net>
30165
30166         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
30167
30168         * gst-libs/gst/audio/audioclock.c:
30169           Fix wrong return type (#142205).
30170
30171 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30172
30173         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
30174           Ignore CRCs by default (fixes #142566).
30175
30176 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30177
30178         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
30179         (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
30180         (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
30181         (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
30182         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
30183         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
30184           Fix for cases where we fail to attach to a mixer.
30185
30186 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30187
30188         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
30189           Don't touch events after not owning them anymore.
30190         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
30191         (gst_wavparse_fmt), (gst_wavparse_other),
30192         (gst_wavparse_handle_seek), (gst_wavparse_loop),
30193         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
30194         (gst_wavparse_srcpad_event):
30195         * gst/wavparse/gstwavparse.h:
30196           Add seeking, fix querying.
30197
30198 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
30199
30200         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
30201           - process comments even if they don't end with \0\0
30202             g_convert would ignore them if present and works well without them
30203
30204 2004-05-16  Benjamin Otte  <otte@gnome.org>
30205
30206         * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
30207           simplify caps
30208
30209 2004-05-16  Benjamin Otte  <otte@gnome.org>
30210
30211         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
30212           don't write to memory we might not write to - g_convert does that
30213           for us anyway (fixes #142613)
30214         (gst_asf_demux_audio_caps):
30215           comment out gst_util_dump_mem
30216
30217 2004-05-16  Benjamin Otte  <otte@gnome.org>
30218
30219         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
30220           compute correct expected timestamps after seek (broken since
30221           last commit)
30222         * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
30223           rename element and debugging category to gdkpixbufscale
30224
30225 2004-05-16  Benjamin Otte  <otte@gnome.org>
30226
30227         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
30228           add error checking to snd_pcm_delay and remove duplicate call to
30229           snd_pcm_delay that caused issues (see inline code comments)
30230         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
30231           make more readable and fix return value when snd_pcm_delay fails
30232         (fixes #142586)
30233
30234 2004-05-15  Jan Schmidt  <thaytan@mad.scientisti.com>
30235         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
30236         (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
30237         (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
30238         (gst_pixbufscale_link), (gst_pixbufscale_init),
30239         (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
30240         (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
30241         (gst_pixbufscale_get_property), (pixbufscale_init):
30242         * ext/gdk_pixbuf/pixbufscale.h:
30243         Add these files I forgot earlier
30244
30245 2004-05-15  Jan Schmidt  <thaytan@mad.scientist.com>
30246         * ext/gdk_pixbuf/Makefile.am:
30247         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
30248         * ext/gdk_pixbuf/gstgdkpixbuf.h:
30249         Add new pixbufscale element to scale RGB video
30250         using gdk_pixbuf, because gdk_pixbuf does BILINEAR
30251         and HYPER interpolation correctly.
30252         * ext/theora/theoraenc.c: (theora_enc_chain),
30253         Discard buffer and return if explicit caps could not be set
30254         (theora_enc_get_property):
30255         Make _get return kbps for the bitrate consistent with
30256         the _set function.
30257
30258
30259 2004-05-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30260
30261         * ext/libvisual/visual.c: (gst_visual_chain):
30262           add missing visual_audio_analyze
30263
30264 2004-05-14  David Schleef  <ds@schleef.org>
30265
30266         * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
30267         is killed while we're playing.
30268         * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
30269         gst_element_no_more_pads().
30270
30271 2004-05-14  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
30272
30273         * gst-libs/gst/riff/riff-read.c :
30274           - fix INFO tag extraction in RIFF/AVI files
30275             because gst_event_unref (event) also freed taglist
30276           - avoid a mem leak
30277
30278 2004-05-13  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
30279
30280         * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
30281         * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
30282
30283         * gst/auparse/gstauparse.c :
30284           - add code (commented for now) to support audio/x-adpcm on src pad
30285             (we have no decoder for those layout yet)
30286
30287         * gst/cdxaparse/gstcdxaparse.c :
30288         * gst/cdxaparse/gstcdxaparse.h :
30289           - partial rewrite using RiffRead (ripped iain's wavparse code)
30290
30291         * gst/rtp/gstrtpL16enc.c : typo
30292         * gst/rtp/gstrtpgsmenc.c : typo
30293
30294 2004-05-13  Benjamin Otte  <otte@gnome.org>
30295
30296         * configure.ac:
30297           check for exact version of libvisual, it's not supposed to be
30298           API/ABI stable yet
30299
30300 2004-05-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30301
30302         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
30303           signal no-more-pads
30304
30305 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
30306
30307         * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
30308         Report which format was used for GST_FORMAT_DEFAULT
30309         * gst/debug/Makefile.am:
30310         * gst/debug/gstdebug.c: (plugin_init):
30311         * gst/debug/progressreport.c: (gst_progressreport_base_init),
30312         (gst_progressreport_class_init), (gst_progressreport_init),
30313         (gst_progressreport_report), (gst_progressreport_set_property),
30314         (gst_progressreport_get_property), (gst_progressreport_chain),
30315         (gst_progressreport_plugin_init):
30316         Add progressreport element for testing.
30317
30318 2004-05-13  Thomas Vander Stichele  <thomas at apestaart dot org>
30319
30320         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
30321         * sys/v4l/gstv4lsrc.h:
30322         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
30323         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
30324         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
30325         (gst_v4lsrc_grab_frame):
30326           add more debugging
30327           send a discont at start
30328
30329 2004-05-12  Colin Walters  <walters@redhat.com>
30330
30331         * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
30332         inflooping if we can't find a chunk.  Or in other words, don't blow
30333         chunks if we don't have a chunk to blow.
30334
30335 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
30336         * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
30337         Remove old debug output
30338         * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
30339         (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
30340         (gst_dvdec_set_property), (gst_dvdec_get_property):
30341         Change the quality setting to an enum, so it works from gst-launch
30342         Don't renegotiate a non-linked pad. Allows audio only decoding.
30343         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
30344         (gst_deinterlace_link), (gst_deinterlace_init):
30345         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
30346         (gst_videodrop_link):
30347         Some caps negotiation fixes
30348
30349 2004-05-12  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
30350
30351         * ext/tarkin/gsttarkin.c :
30352           - Change RANK from NONE to PRIMARY
30353         * ext/gdk_pixbuf/gstgdkpixbuf.c :
30354           - Change RANK from NONE to MARGINAL
30355         * ext/divx/gstdivxenc.c :
30356           - Change RANK from PRIMARY to NONE (encoder/spider issue)
30357
30358 2004-05-12  Thomas Vander Stichele  <thomas at apestaart dot org>
30359
30360         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
30361         (gst_vorbisenc_push_packet):
30362           copy a function that was added between 1.0 and 1.0.1 until we
30363           depend on worthwhile features of post-1.0
30364
30365 2004-05-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30366
30367         * configure.ac:
30368           enable shout2 by default
30369         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
30370         (gst_shout2send_base_init), (gst_shout2send_init),
30371         (gst_shout2send_connect), (gst_shout2send_change_state):
30372         * ext/shout2/gstshout2.h:
30373           make this work again. Based on a patch by Zaheer Abbas Merali (fixes
30374           #142262)
30375         * ext/theora/theora.c: (plugin_init):
30376           don't set rank on encoders
30377
30378 2004-05-11  Jeremy Simon  <jesimon@libertysurf.fr>
30379
30380         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
30381           Use codec_data property instead of flag1 and flag2 for wma
30382
30383 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
30384
30385         * gst/cdxaparse/gstcdxaparse.c :
30386           - Add mpegversion to CAPS to make it link
30387           - Rank is as GST_RANK_SECONDARY instead of NONE
30388         * gst/auparse/gstauparse.c :
30389           - Document all audio encoding we can encounter from Solaris 9
30390             headers and libsndfile information.
30391           - Increase max. rate from 48000 to 192000 (to match other elements)
30392           - Don't try to play junk data between header and samples
30393
30394 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30395
30396         * ext/libvisual/visual.c: (gst_visual_getcaps):
30397           use the right caps depending on endianness (I hope)
30398         * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
30399           use GST_RANK_NONE for all non-decoding elements or spider gets
30400           mighty confused
30401
30402 2004-05-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30403
30404         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
30405           Fix some odd cases and fix BE metadata parsing of unicode16 text.
30406
30407 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30408
30409         * gst/switch/gstswitch.c: (gst_switch_release_pad),
30410         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
30411         (gst_switch_loop), (gst_switch_get_type):
30412           whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
30413           HEADERS. Had to be said.
30414
30415 2004-05-10  David Schleef  <ds@schleef.org>
30416
30417         * configure.ac: Add prototype Dirac support.
30418         * ext/Makefile.am:
30419         * ext/dirac/Makefile.am:
30420         * ext/dirac/gstdirac.cc:
30421         * ext/dirac/gstdiracdec.cc:
30422
30423 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30424
30425         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
30426         (gst_auparse_init), (gst_auparse_chain),
30427         (gst_auparse_change_state):
30428           Hack around spider. Remove me some day please.
30429
30430 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30431
30432         * gst/auparse/gstauparse.c: (gst_auparse_chain):
30433           Fix for some uninitialized variables in previous patch, also
30434           makes it work. Fixes #142286 while we're at it.
30435
30436 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
30437
30438         * gst/auparse/gstauparse.c:
30439                 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
30440                 only unsupported formats are ADPCM/CCITT G.72x
30441                 reviewed by Ronald
30442         * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
30443
30444 2004-05-10  Wim Taymans  <wim@fluendo.com>
30445
30446         * ext/vorbis/Makefile.am:
30447         * ext/vorbis/README:
30448         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
30449         (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
30450         (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
30451         (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
30452         (gst_oggvorbisenc_convert_sink),
30453         (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
30454         (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
30455         (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
30456         (get_constraints_string), (update_start_message),
30457         (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
30458         (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
30459         (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
30460         * ext/vorbis/oggvorbisenc.h:
30461         * ext/vorbis/vorbis.c: (plugin_init):
30462         * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
30463         (raw_caps_factory), (gst_vorbisenc_class_init),
30464         (gst_vorbisenc_init), (gst_vorbisenc_setup),
30465         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
30466         (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
30467         * ext/vorbis/vorbisenc.h:
30468         Added a raw vorbis encoder to be used with the oggmuxer.
30469         We still need the old encoder for some gnome applications,
30470         read the README to find out how that works.
30471         The raw encoder is called "rawvorbisenc" until 0.9.
30472
30473 2004-05-10  Wim Taymans  <wim@fluendo.com>
30474
30475         * ext/ogg/gstogg.c: (plugin_init):
30476         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
30477         (gst_ogg_print):
30478         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
30479         (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
30480         (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
30481         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
30482         (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
30483         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
30484         (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
30485         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
30486         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
30487         (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
30488         Added an ogg muxer.
30489         Small typo fixes in the demuxer.
30490
30491 2004-05-10  Wim Taymans  <wim@fluendo.com>
30492
30493         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
30494         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
30495         (theora_enc_change_state), (theora_enc_set_property),
30496         (theora_enc_get_property):
30497         Mark the last packet with an EOS flag which is not really needed
30498         in gstreamer.
30499         Do some better video framerate initialisation.
30500         Update the buffer timestamp.
30501
30502 2004-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
30503
30504         * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
30505         Return the result of the parent state change call
30506
30507 2004-05-10  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
30508
30509         * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
30510         * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
30511         * gst/law/alaw-encode.c : (idem)
30512         * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
30513         * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
30514         * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
30515
30516 2004-05-09  Benjamin Otte  <otte@gnome.org>
30517
30518         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
30519           don't use a fixed buffer size when writing variable length data to
30520           it. Fixes memory corruption and makes alsasrc work
30521
30522 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30523
30524         * ext/gnomevfs/gstgnomevfssink.c:
30525         (_gst_boolean_allow_overwrite_accumulator),
30526         (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
30527           Run glib's default signal handler (??) in RUN_CLEANUP rather than
30528           RUN_LAST, and don't use that to set the accumulator value because
30529           then it's always FALSE.
30530
30531 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30532
30533         * gst-libs/gst/riff/riff-media.c:
30534         (gst_riff_create_video_caps_with_data),
30535         (gst_riff_create_audio_caps),
30536         (gst_riff_create_audio_template_caps):
30537         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
30538           Fix for unaligned RIFF files (i.e. where all the chunks together
30539           in a LIST chunk are not of the same size as the size given in
30540           the LIST chunk header). Fixes several odd WAVE files. Also fix
30541           ADPCM (block_align property) in audio, so that wavparse based
30542           on this works now as it used to stand-alone.
30543
30544 2004-05-09  Edward Hervey  <bilboed@bilboed.com>
30545
30546         reviewed by Benjamin Otte  <otte@gnome.org>
30547
30548         * ext/a52dec/gsta52dec.c:
30549         * ext/divx/gstdivxdec.c:
30550         * ext/divx/gstdivxenc.c:
30551         * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
30552         * ext/faac/gstfaac.c: (gst_faac_base_init):
30553         * ext/faad/gstfaad.c: (gst_faad_base_init):
30554         * ext/ivorbis/vorbisfile.c:
30555         * ext/lame/gstlame.c:
30556         * ext/libfame/gstlibfame.c:
30557         * ext/mpeg2enc/gstmpeg2enc.cc:
30558         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
30559         * ext/sidplay/gstsiddec.cc:
30560         * ext/speex/gstspeexdec.c:
30561         * ext/speex/gstspeexenc.c:
30562         * ext/xvid/gstxviddec.c:
30563         * ext/xvid/gstxvidenc.c:
30564           correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
30565           (fixes #142193)
30566
30567 2004-05-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30568
30569         * ext/alsa/gstalsa.c: (device_list),
30570         (gst_alsa_class_probe_devices):
30571         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
30572           Fix alsa oddness in mixer after the combination of using mixer
30573           in source/sink elements and using hw:x,y instead of just hw:x.
30574
30575 2004-05-09  Benjamin Otte  <otte@gnome.org>
30576
30577         * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
30578         (gst_wavparse_create_sourcepad):
30579           make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
30580           sourcepads
30581
30582 2004-05-09  Benjamin Otte  <otte@gnome.org>
30583
30584         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
30585           allow discont events before caps nego
30586
30587 2004-05-08  Benjamin Otte  <otte@gnome.org>
30588
30589         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
30590           don't leak events
30591
30592 2004-05-08  Benjamin Otte  <otte@gnome.org>
30593
30594         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
30595         (gst_level_change_state), (gst_level_init):
30596         * gst/level/gstlevel.h:
30597           figure out if we're initialized directly instead of keeping a
30598           variable that's wrong in 90% of cases
30599           don't initialize pads and then leak them and use a new unitialized
30600           pad. (fixes #142084)
30601           these were bugs so n00bish I didn't find them for an hour :/
30602
30603 2004-05-08 Iain <iain@prettypeople.org>
30604
30605         * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
30606         * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
30607         (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
30608         return the length that was read.
30609         (gst_riff_read_strf_auds): Allow fmt tags as well.
30610
30611 2004-05-07  David Schleef  <ds@schleef.org>
30612
30613         * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
30614         signed char assumption in faad.h.
30615
30616 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30617
30618         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
30619           Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
30620
30621 2004-05-07  Colin Walters  <walters@redhat.com>
30622
30623         * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
30624         * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
30625         function.
30626         * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
30627         Add dispose function.
30628
30629 2004-05-08  Jan Schmidt  <thaytan@mad.scientist.com>
30630         * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
30631           Fix caps nego and pad templates. RGB mode caps should
30632           work now.
30633         * ext/dvdnav/gst-dvd:
30634           Move mpeg2dec inside the thread because otherwise the
30635           queue rejects cap changes mid-stream
30636         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
30637         (gst_mpeg2dec_flush_decoder):
30638           For mpeg2dec > 0.4.0, call the flush function instead of
30639           manually extracting all in-flight frames.
30640         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
30641         (gst_dv1394src_init), (gst_dv1394src_iso_receive):
30642           Change mime type video/dv go video/x-dv to match the
30643           rest of gst-plugins
30644
30645 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30646
30647         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
30648         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
30649         (gst_alsa_sink_class_init):
30650         * ext/alsa/gstalsasink.h:
30651         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
30652         (gst_alsa_src_class_init):
30653         * ext/alsa/gstalsasrc.h:
30654           Make alsasink/src a subclass of alsamixer so that mixer stuff
30655           shows up in gst-rec. Needs some finetuning.
30656
30657 2004-05-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30658
30659         * ext/lame/gstlame.c: (gst_lame_chain):
30660           simplify
30661         * ext/mad/gstmad.c: (gst_mad_handle_event):
30662           fix event leak
30663         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
30664           be able to detect mp3 files < 4096 bytes
30665
30666 2004-05-06  Wim Taymans  <wim@fluendo.com>
30667
30668         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
30669         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
30670         (theora_enc_set_property), (theora_enc_get_property):
30671         Also encode the first frame, cleanup some code.
30672
30673 2004-05-06  Wim Taymans  <wim@fluendo.com>
30674
30675         * ext/mpeg2enc/gstmpeg2enc.cc:
30676         Forward events first before deciding that negotiation was
30677         not performed.
30678
30679 2004-05-06  Wim Taymans  <wim@fluendo.com>
30680
30681         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
30682         First process the events before deciding that negotiation
30683         was not performed.
30684
30685 2004-05-06  Wim Taymans  <wim@fluendo.com>
30686
30687         * ext/theora/Makefile.am:
30688         * ext/theora/theora.c: (plugin_init):
30689         * ext/theora/theoradec.c: (theora_dec_change_state):
30690         * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
30691         (gst_theora_enc_class_init), (gst_theora_enc_init),
30692         (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
30693         (theora_enc_chain), (theora_enc_change_state),
30694         (theora_enc_set_property), (theora_enc_get_property):
30695         Added a theora encoder, grouped the encoder and decoder into the
30696         same plugin.
30697
30698 2004-05-05  Thomas Vander Stichele  <thomas at apestaart dot org>
30699
30700         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
30701         (gst_jpegenc_chain):
30702         fix DURATION on outgoing buffers
30703         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
30704         debug using time formats
30705         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
30706         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
30707         (gst_xvimagesink_sink_link):
30708         windows with width/height 0 generate X errors, so don't allow them
30709
30710 2004-05-05  Wim Taymans  <wim@fluendo.com>
30711
30712         * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
30713         (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
30714         (gst_mpeg2dec_negotiate_format):
30715         * ext/mpeg2dec/gstmpeg2dec.h:
30716           removed the static pad template so that we can add the
30717           more accurate framerate value to the caps.
30718
30719
30720 2004-05-04  Benjamin Otte  <otte@gnome.org>
30721
30722         * configure.ac:
30723           check for kdemacros.h, too (should fix #141821)
30724         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
30725           don't crash if no header was sent, but nicely error out (fixes part
30726           of #141554)
30727
30728 2004-05-04  Wim Taymans  <wim@fluendo.com>
30729
30730         * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
30731         parent dispose function to avoid segfault on destroy.
30732
30733 2004-05-04  Thomas Vander Stichele  <thomas at apestaart dot org>
30734
30735         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
30736         (plugin_init):
30737         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30738         (gst_xvimagesink_sink_link):
30739         clean up debugging caps
30740         also recreate xvimage when format has changed
30741
30742 2004-05-04  Benjamin Otte  <otte@gnome.org>
30743
30744         * ext/libvisual/Makefile.am:
30745         * ext/libvisual/visual.c: (gst_visual_class_init),
30746         (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
30747         (gst_visual_srclink), (gst_visual_chain),
30748         (gst_visual_change_state), (plugin_init):
30749           use a GstAdapter to correctly adapt buffer sizes - allows using a
30750           framerate
30751
30752 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
30753
30754         * sys/v4l/gstv4lelement.h:
30755         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
30756         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
30757         (gst_v4lsrc_buffer_free):
30758         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
30759         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
30760         (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
30761         (gst_v4lsrc_requeue_frame):
30762         move some debugging categories around
30763         query for fps index and set accordingly if found
30764
30765 2004-05-03  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
30766
30767         * ext/lame/gstlame.c:
30768         correct defaults that lame_init puts out of range
30769
30770 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
30771
30772         * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
30773         (gst_divxenc_class_init):
30774         fix range since -1 is the default
30775         * gst/mpeg1sys/gstmpeg1systemencode.c:
30776         (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
30777         * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
30778         (gst_rtjpegdec_chain):
30779         * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
30780         (gst_rtjpegenc_chain):
30781         * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
30782         (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
30783         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
30784         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
30785         * sys/v4l/gstv4lsrc.c:
30786         * sys/v4l/v4l_calls.c: (gst_v4l_open):
30787         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
30788         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
30789         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
30790         * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
30791           remove gst_info calls
30792
30793 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
30794
30795         * Makefile.am:
30796         * po/af.po:
30797         * po/az.po:
30798         * po/en_GB.po:
30799         * po/nl.po:
30800         * po/sr.po:
30801         * po/sv.po:
30802           Updated translations
30803
30804 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
30805
30806         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
30807           refactor/comment code
30808
30809 2004-05-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30810
30811         * gst/asfdemux/Makefile.am:
30812         * gst/asfdemux/asfheaders.c:
30813         * gst/asfdemux/asfheaders.h:
30814         * gst/asfdemux/gstasf.c: (plugin_init):
30815         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
30816         (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
30817         (gst_asf_demux_setup_pad):
30818         * gst/asfdemux/gstasfdemux.h:
30819         * gst/asfdemux/gstasfmux.c:
30820         * gst/asfdemux/gstasfmux.h:
30821           Add tagging support to demuxer, split out registration in its own
30822           file instead of in demux (hacky), and prevent having some tables
30823           in our memory multiple times (in asfheaders.h).
30824
30825 2004-05-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30826
30827         * gst/matroska/matroska-demux.c:
30828         (gst_matroska_demux_parse_metadata):
30829         * gst/matroska/matroska-ids.h:
30830           Basic tag reading support.
30831
30832 2004-04-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30833
30834         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
30835           Really detect ac-3 audio.
30836         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
30837           really detect matroska files (off-by-1).
30838
30839 2004-04-30  David Schleef  <ds@schleef.org>
30840
30841         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
30842         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
30843         (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
30844         (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
30845         (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
30846         hackage -- parse a lot more atoms, extract a few tags.  One might even
30847         mistake this for tag support.  Maybe it is.
30848         * gst/qtdemux/qtdemux.h:
30849
30850 2004-04-30  Colin Walters  <walters@verbum.org>
30851
30852         * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
30853
30854 2004-04-30  Thomas Vander Stichele  <thomas at apestaart dot org>
30855
30856         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
30857         (gst_ffmpegcolorspace_getcaps):
30858           remove broken nego fix
30859
30860 2004-04-30  Benjamin Otte  <otte@gnome.org>
30861
30862         * configure.ac:
30863         * ext/Makefile.am:
30864         * ext/libvisual/Makefile.am:
30865         * ext/libvisual/visual.c:
30866           add initial support for libvisual (http://libvisual.sourceforge.net)
30867           libvisual is still quite alpha, so expect crashes in there :)
30868
30869 2004-04-29  David Schleef  <ds@schleef.org>
30870
30871         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
30872         (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
30873         up qtdemux to make it spit out codec_data.  Do _not_ look at this
30874         code; you will no longer respect me.
30875
30876 2004-04-29  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
30877
30878         * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
30879         * ext/alsa/gstalsa.h :
30880         change alsa pcm device discovery to find more than 1 device
30881         per card. code review by Ronald.
30882
30883 2004-04-29  David Schleef  <ds@schleef.org>
30884
30885         * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
30886         Add a check for a driver bug on FreeBSD.  (bug #140565)
30887
30888 2004-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
30889
30890         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
30891         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
30892         (gst_jpegenc_getcaps):
30893           move format setting to inner loop
30894         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
30895         (gst_ffmpegcolorspace_getcaps):
30896           use GST_PAD_CAPS if available so that we use already negotiated
30897           caps
30898         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
30899         (qtdemux_parse_moov), (qtdemux_parse):
30900           extra debugging
30901         * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
30902         * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
30903           move hardcoded path to DEFINE
30904
30905 2004-04-28  David Schleef  <ds@schleef.org>
30906
30907         * gst/speed/gstspeed.c: (speed_parse_caps):  Fix caps parsing.
30908         (bug #140064)
30909
30910 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30911
30912         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
30913           Don't probe for playback device if we're a source element. Fixes
30914           #139658.
30915
30916 2004-04-29  Benjamin Otte  <otte@gnome.org>
30917
30918         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
30919         (gst_id3_tag_chain):
30920           rewrite buffer offset
30921
30922 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30923
30924         * configure.ac:
30925         * ext/Makefile.am:
30926         * ext/dts/Makefile.am:
30927         * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
30928         (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
30929         (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
30930         (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
30931         (gst_dtsdec_loop), (gst_dtsdec_change_state),
30932         (gst_dtsdec_set_property), (gst_dtsdec_get_property),
30933         (plugin_init):
30934         * ext/dts/gstdtsdec.h:
30935           New DTS decoder.
30936         * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
30937         (gst_faad_srcconnect):
30938           Add ESDS atom handling (.m4a).
30939
30940 2004-04-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30941
30942         * ext/divx/gstdivxdec.c: (plugin_init):
30943           Remove comment that makes no sense.
30944         * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
30945           Fix for obvious typo that resulted in warnings during gst-register.
30946         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
30947         (gst_xviddec_sink_link):
30948           Fix caps negotiation a bit better.
30949         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
30950           We call this 'codec_data', not 'esds'.
30951
30952 2004-04-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30953
30954         * gst/monoscope/gstmonoscope.c:
30955           make sure we only provide 256x128
30956         * gst/monoscope/monoscope.c: (monoscope_init):
30957           assert size of 256x128
30958
30959 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
30960
30961         * Makefile.am:
30962         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
30963         (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
30964           fixate to max width and height of device
30965
30966 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
30967
30968         * Makefile.am:
30969         * sys/v4l/gstv4l.c:
30970         * sys/v4l/gstv4lsrc.c:
30971         * sys/v4l/v4l_calls.c:
30972         * sys/v4l/v4lsrc_calls.c:
30973           fix for qc-usb driver which fakes having more than one buffer
30974           by handing the same buffer twice, which confused GStreamer's/v4lsrc
30975           buffer_free override
30976           add debugging
30977
30978 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
30979
30980         * Makefile.am:
30981         * gst/videotestsrc/gstvideotestsrc.c:
30982         (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
30983         (gst_videotestsrc_init), (gst_videotestsrc_get),
30984         (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
30985         * gst/videotestsrc/gstvideotestsrc.h:
30986           add num-buffers property
30987
30988         2004-04-26  Benjamin Otte  <otte@gnome.org>
30989
30990         * ext/mad/gstid3tag.c: (plugin_init):
30991           set id3mux rank to NONE so it doesn't confuse spider
30992           require audio/mpeg,mpegversion=1 in id3mux
30993
30994 2004-04-26  Benjamin Otte  <otte@gnome.org>
30995
30996         * configure.ac:
30997           detect faad correctly as non-working if it's indeed non-working
30998
30999 2004-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
31000
31001         * Makefile.am:
31002         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
31003         (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
31004         fix _getcaps so it only negotiates to its supported format
31005
31006 2004-04-25  Benjamin Otte  <otte@gnome.org>
31007
31008         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
31009           fix memleak
31010
31011 2004-04-23  Benjamin Otte  <otte@gnome.org>
31012
31013         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
31014           audio/x-raw-int with height rules! not. Now it's depth.
31015
31016 2004-04-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31017
31018         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
31019         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
31020         (gst_wavparse_loop):
31021           Missing variable initialization. Add handling of DVI ADPCM. Fix
31022           mis-parsing of LIST chunks. This works around a bug where we mis-
31023           parse non-aligning LIST chunks (so LIST chunks where the contents
31024           don't align with the actual LIST size). The correct fix is to use
31025           rifflib, I'm not going to fix wavparse - too much work. All this
31026           fixes #104878.
31027
31028 2004-04-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31029
31030         reviewed by Benjamin Otte  <otte@gnome.org>
31031
31032         * ext/shout/gstshout.c: (gst_icecastsend_change_state):
31033           fix shoutcast not working (fixes #140844)
31034
31035 2004-04-22  Benjamin Otte  <otte@gnome.org>
31036
31037         * ext/hermes/gsthermescolorspace.c:
31038         (gst_hermes_colorspace_caps_remove_format_info):
31039         * gst/colorspace/gstcolorspace.c:
31040         (gst_colorspace_caps_remove_format_info):
31041         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
31042         (gst_ffmpegcolorspace_caps_remove_format_info):
31043           s/gst_caps_simplify/gst_caps_do_simplify/
31044
31045 2004-04-22  Benjamin Otte  <otte@gnome.org>
31046
31047         * gst-libs/gst/riff/riff-media.c:
31048         (gst_riff_create_video_caps_with_data):
31049           mpegversion is an int
31050         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
31051           don't try to create pad templates with NULL caps, use any caps
31052           instead.
31053
31054 2004-04-20  David Schleef  <ds@schleef.org>
31055
31056         * ext/sdl/Makefile.am: Link against libgstinterfaces, not
31057         libgstxoverlay.  jmmv@menta.net (Julio M. Merino Vidal)
31058         (bug #140384)
31059
31060 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
31061
31062         reviewed by David Schleef
31063
31064         * ext/mad/gstid3tag.c: Add stdlib.h
31065         * gst/rtp/gstrtpgsmenc.c: same
31066         * gst/tags/gstid3tag.c: same
31067         * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
31068         * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
31069         GST_DISABLE_LOADSAVE use.
31070         * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
31071         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
31072         * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
31073         atol(3)).
31074         * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
31075         * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
31076         strtoul(3)).
31077         * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
31078         * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
31079         $(ID3_CFLAGS).
31080         * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
31081         $(LIBFAME_CFLAGS).
31082
31083 2004-04-20  David Schleef  <ds@schleef.org>
31084
31085         * gst/realmedia/rmdemux.c:  This was supposed to part of the
31086         last checkin.  Same idea.
31087
31088 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
31089
31090         reviewed by David Schleef
31091
31092         * configure.ac: bump required gstreamer version to 0.8.1.1
31093         because of following changes [--ds]
31094
31095         * gst-libs/gst/riff/riff-read.c:  Include gst/gstutils.h.
31096         (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
31097         (gst_riff_read_header):  Use GST_READ_UINT*
31098         macros to access possibly unaligned memory.
31099
31100         * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
31101         (mp3_type_find):  Use GST_READ_UINT*
31102         macros to access possibly unaligned memory.
31103         (mp3_type_find, mpeg1_parse_header, qt_type_find)
31104         (speex_type_find): Likewise
31105
31106         * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
31107
31108         * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
31109         (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
31110         (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
31111         (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
31112         (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
31113         (qtdemux_tree_get_sibling_by_type):  Use GST_READ_UINT*
31114         macros to access possibly unaligned memory.
31115
31116         * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
31117         Likewise.
31118
31119         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
31120         (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
31121
31122         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
31123         Likewise.
31124
31125         * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
31126         (gst_mpeg2subt_chain_subtitle): Likewise.
31127
31128         * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
31129         (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
31130         Likewise.
31131
31132         * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
31133         Likewise.
31134
31135         * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
31136         Likewise.
31137
31138         * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
31139         Likewise.
31140
31141 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
31142
31143         * configure.ac:
31144           update required version of GStreamer because of GST_TIME_FORMAT
31145
31146 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31147
31148         * ext/mad/gstid3tag.c: (gst_id3_tag_init):
31149           remove leftover g_print
31150         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
31151           don't try setting only a subset of the caps. We don't want to kill
31152           autoplugging on purpose
31153
31154 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
31155
31156         * sys/ximage/ximagesink.c: (plugin_init):
31157         * sys/xvimage/xvimagesink.c: (plugin_init):
31158           add debugging categories
31159
31160 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
31161
31162         * po/en_GB.po:
31163         * po/LINGUAS:
31164           Adding en_GB translation (Gareth Owen)
31165
31166 2004-04-20  David Schleef  <ds@schleef.org>
31167
31168         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
31169         (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
31170         (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
31171         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
31172         A number of new features and hacks to extract the esds atom and
31173         put it into the caps.  (bug #137724)
31174
31175 2004-04-19  David Schleef  <ds@schleef.org>
31176
31177         * gconf/Makefile.am: Fix for non-GNU make
31178         * gst-libs/gst/Makefile.am: Change directory order to handle
31179         GstPlay linking with gstinterfaces
31180         * gst-libs/gst/audio/make_filter: make use of tr portable
31181         * gst-libs/gst/play/Makefile.am: Add intended \
31182         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
31183         (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
31184         function prototype instead of void *.
31185         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
31186         macro.
31187         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
31188         (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
31189         * gst/videofilter/make_filter: make use of tr portable
31190         * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
31191
31192 2004-04-19  Thomas Vander Stichele  <thomas at apestaart dot org>
31193
31194         * po/LINGUAS:
31195         * po/uk.po:
31196           Added Ukrainian translation (Maxim V. Dziumanenko)
31197
31198 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31199
31200         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
31201         (gst_gsmdec_link), (gst_gsmdec_chain):
31202           Fix capsnego, simplify chain function slightly.
31203         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
31204           Add GSM.
31205
31206 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31207
31208         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
31209         (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
31210         (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
31211           Hack to make wavparse work with spider (always -> sometimes pad).
31212           Fixes #135862 && #140411.
31213
31214 2004-04-18  Benjamin Otte  <otte@gnome.org>
31215
31216         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
31217         (gst_osselement_rate_probe_check),
31218         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
31219           get rid of \n in debug output
31220
31221 2004-04-17  Iain <iain@prettypeople.org>
31222
31223         * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
31224         not just EOS.
31225
31226 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31227
31228         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
31229         (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
31230         (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
31231         (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
31232         (gst_id3_tag_src_link), (gst_id3_tag_chain),
31233         (gst_id3_tag_change_state), (plugin_init):
31234           deprecate id3tag element and replace with id3demux/id3mux.
31235           great side effect: this ugly file is now even uglier, yay!
31236         * ext/mad/gstmad.h:
31237           remove non-available function
31238           update for new get_type
31239
31240 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31241
31242         * configure.ac:
31243           require mpeg2dec >= 0.4.0
31244
31245 2004-04-17  Benjamin Otte  <otte@gnome.org>
31246
31247         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
31248         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
31249         (gst_xvimagesink_set_xwindow_id):
31250           call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
31251           assorted cleanup fixes.
31252
31253 2004-04-16  David Schleef  <ds@schleef.org>
31254
31255         * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
31256         * sys/xvimage/xvimagesink.h: same
31257
31258 2004-04-16  Thomas Vander Stichele  <thomas at apestaart dot org>
31259
31260         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
31261           Fix GST_ELEMENT_ERROR with (NULL)
31262
31263 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31264
31265         * gst-libs/gst/riff/riff-media.c:
31266         (gst_riff_create_video_caps_with_data):
31267           Add div[3456] as fourccs for DivX 3 (fixes #140137).
31268
31269 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31270
31271         * gst-libs/gst/riff/riff-media.c:
31272         (gst_riff_create_video_caps_with_data),
31273         (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
31274         (gst_riff_create_video_template_caps),
31275         (gst_riff_create_audio_template_caps):
31276         * gst-libs/gst/riff/riff-media.h:
31277         * gst-libs/gst/riff/riff-read.c:
31278         (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
31279         * gst-libs/gst/riff/riff-read.h:
31280         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
31281           Add MS RLE support. I added some functions to read out strf chunks
31282           into strf chunks and the data behind it. This is usually color
31283           palettes (as in RLE, but also in 8-bit RGB). Also use those during
31284           caps creation. Lastly, add ADPCM (similar to wavparse - which
31285           should eventually be rifflib based).
31286         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
31287         (gst_matroska_demux_init), (gst_matroska_demux_reset):
31288         * gst/matroska/matroska-demux.h:
31289           Remove placeholders for some prehistoric tagging system. Didn't add
31290           support for any tag system really anyway.
31291         * gst/qtdemux/qtdemux.c:
31292           Add support for audio/x-m4a (MPEG-4) through spider.
31293         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
31294         (gst_wavparse_loop):
31295           ADPCM support (#135862). Increase max. buffer size because we
31296           cannot split buffers for ADPCM (screws references) and I've seen
31297           files with 2048 byte chunks. 4096 seems safe for now.
31298
31299 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
31300
31301         * configure.ac: bump nano to 1
31302
31303 === release 0.8.1 ===
31304
31305 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
31306
31307         * configure.ac: releasing 0.8.1, "Comforting Sounds"
31308
31309 2004-04-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31310
31311         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
31312           Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
31313           Fixes #140058
31314
31315 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
31316
31317         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
31318           lower rank of dvddemux so that it's not used for mpeg playback.
31319
31320 2004-04-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31321
31322         * configure.ac:
31323           save libs correctly when checking mad
31324
31325 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
31326
31327         * ext/mad/gstid3tag.c: (plugin_init):
31328           lower rank of id3tag as proposed by Benjamin.  Fixes #139926.
31329
31330 2004-04-13  David Schleef  <ds@schleef.org>
31331
31332         * common/m4/gst-feature.m4: Call -config scripts with
31333         --plugin-libs if it is supported.
31334         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
31335         JPEG images are image/jpeg.
31336         * gst/debug/Makefile.am:
31337         * gst/debug/negotiation.c: (gst_negotiation_class_init),
31338         (gst_negotiation_getcaps), (gst_negotiation_pad_link),
31339         (gst_negotiation_update_caps), (gst_negotiation_get_property),
31340         (gst_negotiation_plugin_init): Add a property that acts like
31341         filter caps.
31342         * testsuite/gst-lint:  Move license checking to be a standard
31343         test.
31344
31345 2004-04-13  David Schleef  <ds@schleef.org>
31346
31347         * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
31348         patch from Sebastien Cote (bug #139958)
31349
31350 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
31351
31352         * examples/gstplay/Makefile.am:
31353         * examples/gstplay/player.c: (main):
31354           make the commandline player example use gconf settings
31355
31356 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
31357
31358         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
31359         (gst_cacasink_sinkconnect), (gst_cacasink_init),
31360         (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
31361           init/end library during state transition, not object
31362           creation/disposal.  get rid of custom dispose handler.
31363
31364
31365 2004-04-12  Christian Schaller <Uraeus@gnome.org>
31366
31367         * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
31368         be a symlink
31369
31370 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31371
31372         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
31373           Handle JUNK chunks inside data section. Prevents warnings.
31374
31375 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31376
31377         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
31378         (gst_riff_create_video_template_caps):
31379           Add MS video v1.
31380         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
31381         (gst_avi_demux_stream_data):
31382           Add support for "rec-list" chunks.
31383
31384 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31385
31386         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
31387           Fix another codecname mismatch.
31388
31389 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31390
31391         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
31392           Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
31393           so that MJPEG plays back.
31394
31395 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31396
31397         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
31398         (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
31399         * gst/mpeg1videoparse/gstmp1videoparse.h:
31400           Fix for some slight mis-cuts in buffer parsing, and for some
31401           potential overflows or faults-causers. Adds disconts. Also fixes
31402           #139105 while we're at it.
31403
31404 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31405
31406         * configure.ac:
31407         * sys/v4l2/gstv4l2element.h:
31408           Workaround for missing struct v4l2_buffer declaration in Suse 9
31409           and Mandrake 10 linux/videodev2.h header file (#135919).
31410
31411 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31412
31413         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
31414           Bail out if no filename was given.
31415
31416 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31417
31418         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
31419         (gst_v4l2_fourcc_from_structure):
31420           Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
31421           Y41B somewhere).
31422
31423 2004-04-09  Benjamin Otte  <otte@gnome.org>
31424
31425         * ext/gnomevfs/gstgnomevfssink.c:
31426         (_gst_boolean_allow_overwrite_accumulator),
31427         (gst_gnomevfssink_class_init):
31428           fix erase signal - if any handler returns false the file will not be
31429           overwritten. If no handler is connected, the file will not be
31430           overwritten either.
31431           renamed signal to "allow-overwrite"
31432         * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
31433           free string when adding it to ID3 failed
31434         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
31435           unref event when done
31436         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
31437           free caps
31438         * gst/typefind/gsttypefindfunctions.c:
31439         (mpeg_video_stream_type_find):
31440           fix invalid read
31441
31442 2004-04-08  David Schleef  <ds@schleef.org>
31443
31444         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
31445         (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
31446
31447 2004-04-08  David Schleef  <ds@schleef.org>
31448
31449         * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
31450         we don't support (bug #139532)
31451
31452 2004-04-07  Thomas Vander Stichele  <thomas at apestaart dot org>
31453
31454         * ext/mad/gstmad.c: (gst_mad_handle_event),
31455         (gst_mad_check_caps_reset), (gst_mad_chain),
31456         (gst_mad_change_state):
31457           only set explicit caps if they haven't been set before for
31458           this stream.  MPEG-audio sample rate/channels aren't allowed
31459           to change in-stream.
31460           Fixes #139382
31461
31462 2004-04-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31463
31464         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
31465         (_gst_boolean_did_something_accumulator),
31466         (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
31467         (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
31468         (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
31469         (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
31470         (gst_gnomevfssink_change_state):
31471           Fix erase signal. Don't erase by default. Remove handoff signal.
31472           Remove erase property. Don't segfault. General cleanup.
31473
31474 2004-04-07  Benjamin Otte  <otte@gnome.org>
31475
31476         * gst-libs/gst/gconf/test-gconf.c: (main):
31477           add missing gst_init
31478
31479 2004-04-07  Benjamin Otte  <otte@gnome.org>
31480
31481         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
31482           free the mutexes, too
31483
31484 2004-04-07  Benjamin Otte  <otte@gnome.org>
31485
31486         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
31487           actually free the URI string
31488         * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
31489           compute offset correctly when passing discont events
31490         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
31491           don't leak discont events
31492         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
31493           add some missing breaks so caps aren't copied randomly
31494         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
31495           if we realloc memory, we better use it
31496
31497 2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31498
31499         * ext/mad/gstmad.c: (normal_seek):
31500           fix GST_FORMAT_TIME usage
31501
31502 2004-04-05  David Schleef  <ds@schleef.org>
31503
31504         * ext/kio/kiosrc.cpp:  Undefine KDE_DEPRECATED so we can use
31505         a deprecated function (hack!)
31506
31507 2004-04-05  Benjamin Otte  <otte@gnome.org>
31508
31509         * ext/esd/esdmon.c: (gst_esdmon_get):
31510           fix nonterminated vararg and memleak
31511
31512 2004-04-05  Benjamin Otte  <otte@gnome.org>
31513
31514         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
31515         (gst_ladspa_init), (gst_ladspa_force_src_caps),
31516         (gst_ladspa_set_property), (gst_ladspa_get_property),
31517         (gst_ladspa_instantiate), (gst_ladspa_activate),
31518         (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
31519           clean up debugging
31520
31521 2004-04-05  Stefan Kost <kost@imn.htwk-leipzig.de>
31522
31523         reviewed by Benjamin Otte  <otte@gnome.org>
31524
31525         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
31526           check for broken LADSPA parameters (fixes #138635)
31527
31528 2004-04-05  Benjamin Otte  <otte@gnome.org>
31529
31530         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
31531           advertise buffer-frames correctly on sinkpads
31532
31533 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
31534
31535         * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
31536         (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
31537         (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
31538         (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
31539         (gst_mad_check_caps_reset), (gst_mad_chain):
31540         add more debugging, only reset caps when we're not in error state
31541
31542 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
31543
31544         * ext/mad/gstmad.c: add debugging category, comment + cleanups
31545
31546 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
31547
31548         reviewed by Benjamin Otte  <otte@gnome.org>
31549
31550         * configure.ac:
31551           fix == in test(1) operator
31552
31553 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
31554
31555         reviewed by Benjamin Otte  <otte@gnome.org>
31556
31557         * configure.ac:
31558           fix --export-symblos-regex to a working regex.
31559
31560 2004-04-04  Benjamin Otte  <otte@gnome.org>
31561
31562         * sys/oss/.cvsignore:
31563           add for oss_probe
31564
31565 2004-04-03  Tim-Phillip Müller <t.i.m@zen.co.uk>
31566
31567         reviewed by Benjamin Otte  <otte@gnome.org>
31568
31569         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
31570           add missing 'new_media' argument (fixes #138168)
31571         * gst/matroska/matroska-demux.c:
31572         (gst_matroska_demux_handle_seek_event):
31573           add vararg terminator (fixes #138169)
31574
31575 2004-04-02  David Schleef  <ds@schleef.org>
31576
31577         * ext/gdk_pixbuf/Makefile.am:  Make sure gstgdkanimation.h is
31578         disted (bug #138914)
31579
31580 2004-04-01  Benjamin Otte  <otte@gnome.org>
31581
31582         * ext/alsa/gstalsa.c: (gst_alsa_change_state),
31583         (gst_alsa_close_audio):
31584           handle case better where a soundcard can't pause
31585         * ext/ogg/gstoggdemux.c:
31586           don't crash when we get events but don't have pads yet
31587
31588 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
31589
31590         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
31591           throw an error if we couldn't probe any caps.
31592
31593 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
31594
31595         * ext/dvdnav/gst-dvd:
31596         Add a really simple sample DVD player
31597
31598 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
31599
31600         * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
31601         (gst_a52dec_push), (gst_a52dec_handle_event),
31602         (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
31603         (gst_a52dec_change_state):
31604         * ext/a52dec/gsta52dec.h:
31605           Use a debug category, Output timestamps correctly
31606           Emit tag info, Handle events, tell liba52dec about cpu
31607           capabilities so it can use MMX etc.
31608         * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
31609           Fix a crasher accessing invalid memory
31610         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
31611         (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
31612         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
31613         (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
31614         (dvdnavsrc_query):
31615           Some support for byte-format seeking.
31616           Small fixes for still frames and menu button overlays
31617         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
31618         (gst_mpeg2dec_alloc_buffer):
31619           Use a debug category. Adjust the report level of several items to
31620           LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
31621           so it doesn't lose the GstBuffer pointer
31622         * gst/debug/Makefile.am:
31623         * gst/debug/gstdebug.c: (plugin_init):
31624         * gst/debug/gstnavseek.c: (gst_navseek_get_type),
31625         (gst_navseek_base_init), (gst_navseek_class_init),
31626         (gst_navseek_init), (gst_navseek_seek),
31627         (gst_navseek_handle_src_event), (gst_navseek_set_property),
31628         (gst_navseek_get_property), (gst_navseek_chain),
31629         (gst_navseek_plugin_init):
31630         * gst/debug/gstnavseek.h:
31631           Add the navseek debug element for seeking back and forth in a
31632           video stream using arrow keys.
31633         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
31634         (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
31635         (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
31636         (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
31637         (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
31638         (gst_mpeg2subt_parse_header), (gst_get_nibble),
31639         (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
31640         (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
31641         (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
31642         (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
31643         * gst/mpeg2sub/gstmpeg2subt.h:
31644           Pretty much a complete rewrite. Now a loopbased element. May still
31645           require work to properly synchronise subtitle buffers.
31646         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
31647         (gst_dvd_demux_send_subbuffer):
31648         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
31649           Don't attempt to create subbuffers of size 0
31650           Reduce a couple of error outputs to warnings.
31651         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
31652         (gst_y4mencode_chain):
31653         Output the y4m frame header correctly.
31654
31655 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
31656
31657         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
31658           throw errors instead of allowing SIGFPE
31659
31660 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
31661
31662         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
31663         (gst_gconf_render_bin_from_key):
31664           leak plugging and style fixing
31665
31666 2004-03-31  David Schleef  <ds@schleef.org>
31667
31668         * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
31669         (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
31670         (bug #138225)
31671         * gst/debug/Makefile.am:
31672         * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
31673         * gst/debug/gstdebug.c: (plugin_init):  Merge elements into one
31674         plugin.
31675         * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
31676         (gst_negotiation_base_init), (gst_negotiation_class_init),
31677         (gst_negotiation_init), (gst_negotiation_getcaps),
31678         (gst_negotiation_pad_link), (gst_negotiation_chain),
31679         (gst_negotiation_set_property), (gst_negotiation_get_property),
31680         (gst_negotiation_plugin_init):  New element to talk about random
31681         negotiation things happening in a pipeline.
31682
31683 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
31684
31685         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
31686           fix integer addition with help of Stefan Kost
31687
31688 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
31689
31690         * po/nl.po: updated Dutch translation (Elros Cyriatan)
31691
31692 2004-03-30  David Schleef  <ds@schleef.org>
31693
31694         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
31695         (gst_mpeg2dec_negotiate_format):  Handle Y42B-format MPEG
31696         video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
31697         (bug #137504)
31698         * ext/mpeg2dec/gstmpeg2dec.h:
31699
31700 2004-03-30  David Schleef  <ds@schleef.org>
31701
31702         * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
31703
31704 2004-03-30  David Schleef  <ds@schleef.org>
31705
31706         * tools/gst-launch-ext-m.m:  Applied patch from gnome@flyn.org (W.
31707         Michael Petullo) to handle .mov
31708
31709 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31710
31711         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
31712         (gst_osselement_rate_check_rate):
31713           probe caps correctly for sound cards that only support one format
31714
31715 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31716
31717         * ext/kio/kiosrc.cpp: (process_events):
31718           update handling event processing if inside KDE - untested
31719
31720 2004-03-29  David Schleef  <ds@schleef.org>
31721
31722         * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
31723         by 2 to not interfere with other colorspaces.
31724         * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
31725         * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
31726         one to not interfere with ffmpeg_colorspace.
31727
31728 2004-03-29  David Schleef  <ds@schleef.org>
31729
31730         * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
31731         aren't in the caps.
31732         * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
31733         * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
31734
31735 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31736
31737         * gst-libs/gst/riff/riff-media.c:
31738           fail on error, don't try to set stuff on NULL caps
31739
31740 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31741
31742         * configure.ac:
31743         * ext/Makefile.am:
31744         * ext/kio/Makefile.am:
31745         * ext/kio/kioreceiver.cpp:
31746         * ext/kio/kioreceiver.h:
31747         * ext/kio/kiosrc.cpp:
31748         * ext/kio/kiosrc.h:
31749           add experimental kiosrc plugin
31750         * ext/alsa/gstalsaplugin.c: (plugin_init):
31751           initialize debugging category only when we're sure registering the
31752           plugins worked.
31753
31754 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
31755
31756         * examples/gstplay/player.c: (main):
31757         * gst-libs/gst/play/play.c: (gst_play_class_init),
31758         (gst_play_set_location), (gst_play_set_data_src),
31759         (gst_play_set_video_sink), (gst_play_set_audio_sink),
31760         (gst_play_set_visualization), (gst_play_connect_visualization):
31761           check return values of element_set_state and return FALSE where
31762           failed
31763
31764 2004-03-29  Benjamin Otte  <otte@gnome.org>
31765
31766         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
31767           try harder to check if an event is really a discont
31768
31769 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
31770
31771         * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
31772         * po/az.po:
31773
31774 2004-03-28  Benjamin Otte  <otte@gnome.org>
31775
31776         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
31777         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
31778         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
31779           get rid of non-standard "..." ranges in case statements.
31780
31781 2004-03-27  Martin Soto  <martinsoto@users.sourceforge.net>
31782
31783         * gst/mpegstream/gstmpegdemux.c:
31784         * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
31785         specific functionality split to the new dvddemux element.
31786         * gst/mpegstream/gstdvddemux.c:
31787         * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
31788         streams, derived from mpegdemux.
31789         * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
31790         up. SCR based timestamp rewriting can be turned off (will probably
31791         completely disappear soon).
31792         * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
31793         hacking. General cleanup. All printf statements replaced by
31794         debugging messages. Almost complete libdvdnav support.
31795         (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
31796         by events. New properties for audio and subpicture languages.
31797         (dvdnavsrc_update_highlight): Now uses events.
31798         (dvdnavsrc_user_op): Cleaned up.
31799         (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
31800         based). Lots of cleanup, and propper support for most libdvdnav
31801         events.
31802         (dvdnavsrc_make_dvd_event): New function.
31803         (dvdnavsrc_make_dvd_nav_packet_event): New function.
31804         (dvdnavsrc_make_clut_change_event): New function.
31805
31806 2004-03-26  Benjamin Otte  <otte@gnome.org>
31807
31808         * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
31809           fix bug where typefinding would claim it's theora whenever less then
31810           7 bytes of data were available
31811
31812 2004-03-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31813
31814         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
31815         (gst_alawdec_base_init), (gst_alawdec_class_init),
31816         (gst_alawdec_init), (gst_alawdec_chain):
31817         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
31818         (gst_alawenc_base_init), (gst_alawenc_class_init),
31819         (gst_alawenc_init), (gst_alawenc_chain):
31820         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
31821         (gst_mulawdec_base_init), (gst_mulawdec_class_init),
31822         (gst_mulawdec_init), (gst_mulawdec_chain):
31823         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
31824         (gst_mulawenc_base_init), (gst_mulawenc_class_init),
31825         (gst_mulawenc_init), (gst_mulawenc_chain):
31826           Fix capsnego in all four, remove the unused property functions and
31827           simplify the chain functions slightly. I guess we could use macros
31828           or something similar for those, since the code is so similar, but
31829           I'm currently too lazy...
31830
31831 2004-03-24  David Schleef  <ds@schleef.org>
31832
31833         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
31834         (gst_osselement_close_audio), (gst_osselement_probe_caps),
31835         (gst_osselement_get_format_structure),
31836         (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
31837         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
31838         (gst_osselement_rate_int_compare): Add code to handle rate probing
31839         (bug #120883)
31840         * sys/oss/gstosselement.h: same
31841         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
31842         Use rate probing provided by osselement.
31843         * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
31844
31845 2004-03-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31846
31847         * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
31848         (gst_xvidenc_get_property):
31849           ulong/int mess-up.
31850
31851 2004-03-24  David Schleef  <ds@schleef.org>
31852
31853         * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
31854         (gst_speexdec_init):
31855         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
31856         (gst_speexenc_init):  Create the pad template correctly (from
31857         the static pad template, not a NULL pointer.)
31858
31859 2004-03-25  Benjamin Otte  <otte@gnome.org>
31860
31861         * gst/debug/Makefile.am:
31862         * gst/debug/breakmydata.c:
31863           add element that quasi-randomly changes bytes in the stream.
31864           Intended use is robustness checking of demuxers and decoders in
31865           media tests.
31866
31867 2004-03-24  Benjamin Otte  <otte@gnome.org>
31868
31869         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
31870         (gst_alsa_probe_hw_params):
31871         * ext/alsa/gstalsa.h:
31872           debugging output fixes
31873
31874 2004-03-24  Benjamin Otte  <otte@gnome.org>
31875
31876         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
31877           don't g_return_if_fail if element is PLAYING, fail silently as every
31878           other element.
31879         * gst/effectv/gstquark.c: (gst_quarktv_chain):
31880           only fix needed for cast lvalue issues in gst-plugins
31881         * gst/volenv/gstvolenv.c: (gst_volenv_init):
31882           add proxy_getcaps
31883
31884 2004-03-24  Benjamin Otte  <otte@gnome.org>
31885
31886         * gst/level/gstlevel.c: (gst_level_init):
31887           add proxying getcaps function, so level doesn't advertise impossible
31888           caps
31889
31890 2004-03-24  David Schleef  <ds@schleef.org>
31891
31892         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
31893         (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
31894         (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
31895         (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
31896         (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
31897         (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
31898         (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
31899         (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
31900         (qtdemux_parse_tree), (qtdemux_parse_trak):  Fix debugging
31901         messages.  Divide the chunk size by the compression ratio
31902         (needed for MACE audio)
31903
31904 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31905
31906         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
31907           Fix buffer overflow read error.
31908
31909 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31910
31911         * ext/alsa/gstalsa.h:
31912           Remove unused entry.
31913         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
31914           Add cinepak.
31915         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
31916         (gst_videodrop_link), (gst_videodrop_chain):
31917           Fix, sort of. Was horribly broken with new capsnego. Bah...
31918
31919 2004-03-23  Jeremy Simon  <jesimon@libertysurf.fr>
31920
31921         * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
31922         (plugin_init):
31923         Add a monkeysaudio typefind function
31924
31925 2004-03-23  Johan Dahlin  <johan@gnome.org>
31926
31927         * gst-libs/gst/play/play.c (gst_play_audio_fixate)
31928         (gst_play_video_fixate): Check so the structure has the field
31929         before trying to fixate them, this makes it possible to have
31930         fakesinks for video and audio output without printing errors on
31931         the output console.
31932
31933 2004-03-22  David Schleef  <ds@schleef.org>
31934
31935         * sys/oss/Makefile.am:
31936         * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
31937         (check_rate), (add_rate):  Rate probing test app.
31938
31939 2004-03-21  Benjamin Otte  <otte@gnome.org>
31940
31941         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
31942         (_fixate_caps_to_int), (gst_audio_convert_fixate):
31943           add a fixation function that pretty much does the right thing (fixes
31944           #137556)
31945
31946 2004-03-20  David I. Lehn  <dlehn@users.sourceforge.net>
31947
31948         * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
31949
31950 2004-03-20  Tim-Phillip Müller <t.i.m@zen.co.uk>
31951
31952         reviewed by: Benjamin Otte  <otte@gnome.org>
31953
31954         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
31955           terminate gst_event_new_discontinuous correctly (fixes parts of
31956           #137711)
31957
31958 2004-03-19  David Schleef  <ds@schleef.org>
31959
31960         * gst-libs/gst/Makefile.am:  Enable xoverlay unconditionally,
31961         since it doesn't depend on X, and it's part of our ABI.
31962
31963 2004-03-19  Iain <iain@prettypeople.org>
31964
31965         * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
31966         is_int in the structure, not the local variable.
31967
31968 2004-03-19  David Schleef  <ds@schleef.org>
31969
31970         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
31971         (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
31972         (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
31973         Improvements in caps negotiation.
31974
31975 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
31976
31977         * po/LINGUAS:
31978         * po/af.po:
31979           adding Afrikaans (Petri Jooste)
31980
31981 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
31982
31983         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
31984         (gst_ffmpegcolorspace_chain):
31985         throw error instead of g_critical (#137588)
31986
31987 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
31988
31989         * Makefile.am:
31990         * configure.ac:
31991           dist common and m4 correctly
31992         * po/sv.po:
31993
31994 2004-03-17  David Schleef  <ds@schleef.org>
31995
31996         * pkgconfig/gstreamer-media-info.pc.in:  Add Version.
31997         (bug #137348)
31998
31999 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
32000
32001         * po/LINGUAS:
32002         * po/sv.po:
32003           adding Swedish translation (Christian Rose)
32004
32005 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
32006
32007         * Makefile.am: use release.mak
32008
32009 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
32010
32011         * common/ChangeLog:
32012         * common/gst-autogen.sh:
32013           add some explanation about the version detection
32014         * configure.ac:
32015           fix X check
32016
32017 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
32018
32019         * configure.ac: bump nano to 1
32020
32021 === release 0.8.0 ===
32022
32023 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
32024
32025         * configure.ac: release 0.8.0, "Pharmaceutical Itch"
32026
32027 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
32028
32029         * configure.ac:
32030           update libtool version
32031         * gst-libs/gst/media-info/Makefile.am:
32032           actually use libtool version
32033
32034 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
32035
32036         * configure.ac: fix speex detection to work with 1.0 but not 1.1
32037
32038 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
32039
32040         * configure.ac:
32041         * gst-plugins.spec.in:
32042         * pkgconfig/Makefile.am:
32043         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
32044         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
32045         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
32046         * pkgconfig/gstreamer-libs.pc.in:
32047         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
32048         * pkgconfig/gstreamer-play-uninstalled.pc.in:
32049         * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
32050         * pkgconfig/gstreamer-plugins.pc.in:
32051           remove @VERSION@ from some of the pc files since core and plugins
32052           are decoupled.
32053           created gstreamer-plugins.pc as it's a better name, but keeping
32054           -libs around for now to get fixes upstream done first.
32055
32056 2004-03-15  Julien MOUTTE <julien@moutte.net>
32057
32058         * gst-libs/gst/play/play.c: (gst_play_get_framerate),
32059         (gst_play_get_sink_element): First draft of gst_play_get_framerate.
32060         * gst-libs/gst/play/play.h:
32061
32062 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
32063
32064         * *.c, *.cc: don't mix tabs and spaces
32065
32066 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
32067
32068         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
32069           use the new ffmpegcolorspace
32070         * gst-plugins.spec.in:
32071           package new colorspace and media-info
32072         * configure.ac:
32073         * pkgconfig/Makefile.am:
32074           fix some more disting issues
32075         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
32076         * pkgconfig/gstreamer-media-info.pc.in:
32077           generate media-info pc files
32078
32079 2004-03-15  Johan Dahlin  <johan@gnome.org>
32080
32081         * *.h: Revert indenting
32082
32083 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
32084
32085         * configure.ac:
32086           adding ffmpegcolorspace element
32087         * gst/ffmpegcolorspace/Makefile.am:
32088         * gst/ffmpegcolorspace/avcodec.h:
32089         * gst/ffmpegcolorspace/common.h:
32090         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
32091         * gst/ffmpegcolorspace/dsputil.h:
32092         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
32093         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
32094         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
32095         (gst_ffmpeg_caps_to_pix_fmt):
32096         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
32097         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
32098         (gst_ffmpegcolorspace_caps_remove_format_info),
32099         (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
32100         (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
32101         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
32102         (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
32103         (gst_ffmpegcolorspace_set_property),
32104         (gst_ffmpegcolorspace_get_property),
32105         (gst_ffmpegcolorspace_register):
32106         * gst/ffmpegcolorspace/imgconvert.c:
32107         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
32108         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
32109         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
32110         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
32111         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
32112         (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
32113         (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
32114         (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
32115         (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
32116         (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
32117         (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
32118         (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
32119         (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
32120         (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
32121         (img_get_alpha_info), (deinterlace_line),
32122         (deinterlace_line_inplace), (deinterlace_bottom_field),
32123         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
32124         * gst/ffmpegcolorspace/imgconvert_template.h:
32125         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
32126         * gst/ffmpegcolorspace/mmx.h:
32127         * gst/ffmpegcolorspace/utils.c: (avcodec_init):
32128           adding ffmpegcolorspace element supplied by Ronald after cleaning
32129           up and pulling in the right bits of upstream source.
32130           I'm sure a better C/compiler wizard could do some cleaning up (for
32131           example use GLIB's malloc stuff), but as a first pass this
32132           works very well
32133
32134 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
32135
32136         * ext/alsa/gstalsa.h:
32137           I assume Ronald forgot to commit the change to have cardname
32138           as a struct member.  Expect some public spanking at the next
32139           opportunity.
32140
32141 2004-03-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32142
32143         * ext/alsa/gstalsa.c: (gst_alsa_get_property),
32144         (gst_alsa_open_audio), (gst_alsa_close_audio):
32145         * ext/alsa/gstalsa.c:
32146           Don't open the device if we're a mixer (= padless).
32147         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
32148         (gst_alsa_mixer_init), (gst_alsa_mixer_open),
32149         (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
32150           Open mixer during state change rather than during object
32151           initialization. Also, get a device name. Currently in a somewhat
32152           hackish fashion, but I didn't really find something better.
32153
32154 2004-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
32155
32156         * *.c, *.h: run gst-indent
32157
32158 2004-03-14  Benjamin Otte  <otte@gnome.org>
32159
32160         * gst/modplug/gstmodplug.cc:
32161         * gst/modplug/gstmodplug.h:
32162           set correct timestamps on outgoing buffers
32163
32164 2004-03-14  Benjamin Otte  <otte@gnome.org>
32165
32166         * gst/modplug/gstmodplug.cc:
32167           handle events - don't do crap when a discont arrives that's not
32168           necessary
32169           This allows correct loading and playback of mods in Rhythmbox
32170
32171 2004-03-14  Benjamin Otte  <otte@gnome.org>
32172
32173         * configure.ac:
32174         * gst-libs/gst/gconf/Makefile.am:
32175         * pkgconfig/Makefile.am:
32176           move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
32177           they get rebuilt properly
32178         * configure.ac:
32179           when checking for vorbis, try pkgconfig first.
32180         * gst/modplug/gstmodplug.cc:
32181           add fixate function
32182
32183 2004-03-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32184
32185         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
32186           Fix for obvious mistake, where we first shift the offset and then
32187           read a samplesize element assuming the old offset. Note that this
32188           part still has something weird, i.e. my movies containing those
32189           don't actually play well, but at least there's something that looks
32190           like sound now.
32191
32192 2004-03-14  Jan Schmidt  <thaytan@mad.scientist.com>
32193         * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
32194         (plugin_init):
32195         Add a typefind function for speex format
32196
32197 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32198
32199         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
32200         (gst_asf_demux_setup_pad):
32201           Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
32202           instead of 0. Reason is simple: some elements have a fps range
32203           of 1-max instead of 0-max. So now ASF video actually works.
32204
32205 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
32206
32207         * po/LINGUAS:
32208         * po/sr.po:
32209           adding serbian as a language
32210
32211 2004-03-13  Benjamin Otte  <otte@gnome.org>
32212
32213         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
32214           return taglist correctly from _get function, don't gst_pad_push it.
32215           (fixes #137042)
32216
32217 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
32218         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
32219
32220 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32221
32222         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
32223         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
32224         (gst_alsa_mixer_track_new):
32225         * ext/alsa/gstalsamixertrack.h:
32226           Fix ancient leftovers... MixerTrack is a GObject.
32227
32228 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32229
32230         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
32231         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
32232           Don't block during probing...
32233
32234 2004-03-12  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32235
32236         * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
32237         (gst_alsa_get_property), (gst_alsa_probe_get_properties),
32238         (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
32239         (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
32240         (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
32241         (gst_alsa_open_audio), (gst_alsa_close_audio):
32242         * ext/alsa/gstalsa.h:
32243           Add propertyprobe interface implementation, add some device-name
32244           property, all this so that it looks good in gnome-volume-control.
32245
32246 2004-03-12  David Schleef  <ds@schleef.org>
32247
32248         * configure.ac: the Hermes library controls hermescolorspace, not
32249         colorspace.
32250         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
32251         (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
32252         not /* */
32253         * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
32254         * ext/sdl/sdlvideosink.h: ditto.
32255         * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
32256
32257 2004-03-12  Benjamin Otte  <otte@gnome.org>
32258
32259         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
32260         (gst_x_overlay_got_xwindow_id):
32261         * gst-libs/gst/xoverlay/xoverlay.h:
32262           replace XID with unsigned long to get rid of the xlibs dependency in
32263           XOverlay (fixes #137004)
32264
32265 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
32266         * gst/effectv/gstaging.c: (gst_agingtv_base_init),
32267         (gst_agingtv_setup):
32268         * gst/effectv/gstdice.c: (gst_dicetv_get_type),
32269         (gst_dicetv_base_init), (gst_dicetv_class_init),
32270         (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
32271         * gst/effectv/gstedge.c: (gst_edgetv_get_type),
32272         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
32273         (gst_edgetv_setup), (gst_edgetv_rgb32):
32274         * gst/effectv/gsteffectv.c:
32275         * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
32276         (gst_quarktv_set_property):
32277         * gst/effectv/gstrev.c: (gst_revtv_get_type),
32278         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
32279         (gst_revtv_setup), (gst_revtv_rgb32):
32280         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
32281         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
32282         (gst_shagadelictv_init), (gst_shagadelictv_setup),
32283         (gst_shagadelictv_rgb32):
32284         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
32285         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
32286         (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
32287         * gst/effectv/gstwarp.c:
32288         Port everything that can be ported to videofilter and fix up the caps.
32289         Can someone with a big-endian machine please check these?
32290
32291 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32292
32293         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
32294         (gst_osssink_chain), (gst_osssink_change_state):
32295           Latest fixes for A/V sync, audio playback and such. This is about
32296           all... MPEG playback issues are mostly related to the async build-
32297           up of MPEG files, I cannot fix that. Use basicgthread to solve it.
32298
32299 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
32300
32301         patch from: Stephane Loeuillet
32302
32303         * configure.ac:
32304           use pkg-config for some libraries, falling back to the old .m4 way
32305           (fixes #131270)
32306         * m4/libdv.m4:
32307           removed
32308
32309 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
32310
32311         * configure.ac:
32312         * tools/Makefile.am:
32313         * tools/Makefile.in:
32314         * tools/gst-launch-ext-m.m:
32315         * tools/gst-launch-ext.1.in:
32316         * tools/gst-visualise-m.m:
32317         * tools/gst-visualise.1:
32318         * tools/gst-visualise.1.in:
32319           reorganizing generation of script tools
32320
32321 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32322
32323         * ext/divx/gstdivxdec.c:
32324           Downgrade priority. We prefer ffdec_mpeg4.
32325         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
32326         (gst_faad_chain), (gst_faad_change_state):
32327           Fix capsnego. Doesn't work for some sounds because we don't have
32328           a 5:1 to stereo element.
32329         * ext/xvid/gstxvid.c: (plugin_init):
32330           Add priority.
32331         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
32332         (gst_osssink_change_state):
32333           Add discont handling.
32334
32335 2004-03-09  Colin Walters  <walters@verbum.org>
32336
32337         * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
32338         conversion.
32339
32340 2004-03-09  Benjamin Otte  <otte@gnome.org>
32341
32342         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
32343           the signals take 2 arguments
32344
32345 2004-03-09  David Schleef  <ds@schleef.org>
32346
32347         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
32348         (gst_alsa_fixate): Add fixate function.  (bug #136686)
32349         * ext/alsa/gstalsa.h:
32350         * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
32351
32352 2004-03-09  Benjamin Otte  <otte@gnome.org>
32353
32354         * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
32355         (gst_mikmod_change_state):
32356         * ext/mikmod/gstmikmod.h:
32357           make mikmod's loop function not loop infinitely and call
32358           gst_element_yield anymore
32359         * gst/modplug/gstmodplug.cc:
32360           fix pad negotiation (fixes #136590)
32361
32362 2004-03-09  David Schleef  <ds@schleef.org>
32363
32364         * ext/lcs/Makefile.am:  Fix so that the lcs colorspace plugin
32365         doesn't conflict with the internal colorspace plugin.
32366         * gst-libs/gst/audio/make_filter:  Use `` instead of $() to
32367         satisfy the crappy-ass shell shipped by a certain vendor.
32368         * gst/videofilter/make_filter: same (bug #135299)
32369
32370 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
32371
32372         * configure.ac: bump nano to 1
32373
32374 === release 0.7.6 ===
32375
32376 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
32377
32378         * configure.in: releasing 0.7.6, "There"
32379
32380 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
32381
32382         * pkgconfig/gstreamer-play-uninstalled.pc.in:
32383         * pkgconfig/gstreamer-play.pc.in:
32384           synchronize the two
32385
32386 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
32387
32388         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
32389         (cdparanoia_open), (cdparanoia_event):
32390           fix/add error handling
32391         * po/POTFILES.in:
32392           add cdparanoia source
32393         * tools/Makefile.am:
32394           make scripts executable
32395
32396 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
32397
32398         * configure.ac:
32399         * ext/vorbis/Makefile.am:
32400         * sys/Makefile.am:
32401           remove id3types, vorbisfile and xvideosink from the build (#133783)
32402
32403 2004-03-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32404
32405         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
32406           Fix metadata read crash (#136537).
32407
32408 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
32409
32410         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
32411         * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
32412           adding mime types, fixing the one-stop function
32413
32414 2004-03-08  Christian Schaller <Uraeus@gnome.org>
32415
32416         * ext/nas/nassink.c and /ext/nas/nassink.h:
32417         More NAS love from Arwed von Merkatz
32418         So lets all sing 'Can you feel the NAS tonight'
32419
32420 2004-03-08  Christian Schaller <Uraeus@gnome.org>
32421
32422         * tools/gst-launch-ext.in:
32423         Replace vorbisfile with oggdemux/vorbisdec/audioconvert
32424
32425 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
32426
32427         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
32428         (gst_mpeg2dec_init):
32429         remove the user_data pad for now, because it is being used in
32430         fixating causing MPEG playback to fixate on 1000 Hz for playback.
32431         If someone knows how to fix this properly, please do.
32432
32433 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
32434
32435         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
32436         (gst_osssink_get_time):
32437         add a warning, IMO this won't get triggered anymore, remove later
32438
32439 2004-03-07  David Schleef  <ds@schleef.org>
32440
32441         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):  Added Cinepak
32442         format (bug #136470)
32443
32444 2004-03-07  Thomas Vander Stichele  <thomas at apestaart dot org>
32445
32446         * gst-libs/Makefile.am:
32447         * gst-libs/gst/media-info/Makefile.am:
32448         * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
32449         (error_callback), (gst_media_info_error_create),
32450         (gst_media_info_error_element), (gmip_init), (gmip_reset),
32451         (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
32452         * gst-libs/gst/media-info/media-info-priv.h:
32453         * gst-libs/gst/media-info/media-info-test.c: (main):
32454         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
32455         (gst_media_info_class_init), (gst_media_info_instance_init),
32456         (gst_media_info_set_source), (gst_media_info_read_with_idler),
32457         (gst_media_info_read_idler), (gst_media_info_read):
32458         * gst-libs/gst/media-info/media-info.h:
32459         fixed, should work now
32460
32461 2004-03-07  Christian Schaller <Uraeus@gnome.org>
32462
32463         * ext/nas/nassink.c:
32464         A bunch of NAS fixes from Arwed von Merkatz
32465
32466 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32467
32468         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
32469         (qtdemux_parse_trak):
32470           Fix crash (j might be greater than n_samples, in which case we're
32471           writing outside the allocated space for the array) and memleak.
32472
32473 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32474
32475         * sys/oss/gstosssink.c: (gst_osssink_chain):
32476           And another caller that couldn't handle delay < 0 (unsigned
32477           integer overflow). Video now continues playing on an audio
32478           buffer underrun, and the clock continues working. Audio still
32479           stalls.
32480
32481 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32482
32483         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
32484         (gst_osssink_get_time):
32485           get_delay() may return values lower than 0. In those cases, we
32486           should not actually cast to *unsigned* int64, that will break
32487           stuff horribly. In my case, it screwed up A/V sync in movies
32488           in totem rather badly.
32489
32490 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
32491
32492         * ext/faac/gstfaac.c: (gst_faac_chain):
32493         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
32494         * ext/libpng/gstpngenc.c: (user_write_data):
32495         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
32496         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
32497         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
32498         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
32499         Fix several misuse of gst_buffer_merge (it doesn't take ownership
32500         of any buffer), should fix some leaks. I hope I didn't unref buffers
32501         that shouldn't be...
32502
32503 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
32504
32505         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
32506         (deep_notify_callback), (tag_flag_score), (found_tag_callback),
32507         (error_callback), (gmi_reset), (gmi_seek_to_track),
32508         (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
32509         (gmip_find_type_post), (gmip_find_stream_post),
32510         (gmip_find_track_streaminfo_post):
32511         * gst-libs/gst/media-info/media-info-priv.h:
32512         * gst-libs/gst/media-info/media-info-test.c: (print_tag),
32513         (info_print), (main):
32514         * gst-libs/gst/media-info/media-info.c:
32515         (gst_media_info_error_create), (gst_media_info_error_element),
32516         (gst_media_info_instance_init), (gst_media_info_get_property),
32517         (gst_media_info_new), (gst_media_info_set_source),
32518         (gst_media_info_read_idler), (gst_media_info_read):
32519         * gst-libs/gst/media-info/media-info.h:
32520           first pass at making this work again.  This seems to work on
32521           tagged ogg/vorbis and mp3 files.
32522
32523 2004-03-06  Benjamin Otte  <otte@gnome.org>
32524
32525         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
32526           fix huge leak: gst_buffer_merge doesn't unref the first argument
32527           itself.
32528
32529 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
32530
32531         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
32532           report layer/mode/emphasis
32533
32534 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
32535
32536         * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
32537
32538 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
32539
32540         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
32541           signal serial
32542
32543 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
32544
32545         * ext/vorbis/vorbis.c: (plugin_init):
32546         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
32547         (gst_vorbis_dec_init), (vorbis_dec_event):
32548         add debug category
32549         make vorbisdec handle _BYTE and _TIME queries
32550
32551 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
32552
32553         * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
32554           from the xing header
32555
32556 2004-03-06  Benjamin Otte  <otte@gnome.org>
32557
32558         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
32559         (gst_audio_convert_link), (gst_audio_convert_change_state),
32560         (gst_audio_convert_buffer_from_default_format):
32561           do conversions from/to float correctly, fix some caps nego errors,
32562           export correct supported caps in template and getcaps, use correct
32563           caps in try_set_caps functions
32564
32565 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
32566
32567         For some reason, I only committed a ChangeLog entry yesterday and
32568         not the corresponding code...
32569         * ext/mad/gstmad.c: Fix detection of Xing headers
32570         * gst/tags/gstid3tag.c: Changes to support TLEN tags
32571
32572 2004-03-06  Benjamin Otte  <otte@gnome.org>
32573
32574         * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
32575         (gst_ogg_demux_src_query):
32576           make sure to handle the case where there's no current chain
32577           gracefully.
32578
32579 2004-03-05  David Schleef  <ds@schleef.org>
32580
32581         * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
32582         Add fixate function. (bug #131128)
32583         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
32584         (gst_sdlvideosink_fixate):  Add fixate function.
32585         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
32586         Fix attempt to print a non-pointer using GST_PTR_FORMAT.
32587         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
32588         Fix missing break that was causing ulaw to be interpreted as
32589         raw int.
32590
32591 2004-03-05  David Schleef  <ds@schleef.org>
32592
32593         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
32594         Fix code that ignores return value of gst_buffer_merge().
32595         (bug #114560)
32596         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
32597         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
32598         * testsuite/gst-lint:  Check for above.
32599
32600 2004-03-05  David Schleef  <ds@schleef.org>
32601
32602         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):  Check for unfixed
32603         caps and throw an element error.  (bug #136334)
32604
32605 2004-03-05  David Schleef  <ds@schleef.org>
32606
32607         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
32608         (gst_faad_chain): Fix negotiation.
32609         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
32610         key and button events.
32611         * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
32612         dung heap of code.
32613         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
32614         depends on gconf
32615         * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
32616         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
32617         (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
32618         function to encourage better negotiation, particularly between
32619         audioconvert and osssink.
32620         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
32621         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):  Make some debugging
32622         more important.
32623         * gst/typefind/gsttypefindfunctions.c:  Fix mistake in flash
32624         typefinding.
32625         * gst/vbidec/vbiscreen.c:  Add glib header
32626         * pkgconfig/gstreamer-play.pc.in:  Depends on gst-interfaces.
32627
32628 2004-03-06  Christophe Fergeau  <teuf@users.sourceforge.net>
32629
32630         * ext/mad/gstmad.c: Fix detection of Xing headers
32631         * gst/tags/gstid3tag.c: Changes to support TLEN tags
32632
32633 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
32634
32635         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
32636         (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
32637           debug updates
32638
32639 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
32640
32641         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
32642         * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
32643         (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
32644         files, and report the parsed length as a GST_TAG_DURATION tag.
32645         * gst/tags/gstid3tag.c: support TLEN (duration) tag
32646
32647 2004-03-05  Benjamin Otte  <otte@gnome.org>
32648
32649         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
32650           convert channels correctly. convert correctly to unsigned.
32651
32652 2004-03-05  Julien MOUTTE <julien@moutte.net>
32653
32654         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
32655         we have a window before clearing it.
32656
32657 2004-03-05  Julien MOUTTE <julien@moutte.net>
32658
32659         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
32660         have a window before clearing it.
32661
32662 2004-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
32663
32664         * gconf/gstreamer.schemas.in:
32665         * gst-libs/gst/gconf/Makefile.am:
32666           version installation path the same way as for 0.6
32667         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
32668         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
32669         * pkgconfig/gstreamer-play-uninstalled.pc.in:
32670           remove comment that was fixed
32671
32672 2004-03-05  David Schleef  <ds@schleef.org>
32673
32674         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
32675         (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
32676         (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
32677         (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
32678         Add prototype code for handling seeking and querying.
32679
32680 2004-03-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32681
32682         * examples/gstplay/player.c: (main):
32683           Initialize variables to NULL. Prevents a segfault because the
32684           (uninitialized) variable is not NULL, resulting in a crash on
32685           trying to reach error->message.
32686
32687 2004-03-05  Benjamin Otte  <otte@gnome.org>
32688
32689         * gst/audioconvert/gstaudioconvert.c:
32690         (gst_audio_convert_buffer_to_default_format):
32691         make float=>int conversion work correctly even in cornercases.
32692
32693 2004-03-04  David I. Lehn  <dlehn@users.sourceforge.net>
32694
32695         * debian/README.Debian:
32696         * debian/build-deps:
32697         * debian/changelog:
32698         * debian/control:
32699         * debian/control.in:
32700         * debian/copyright:
32701         * debian/gstreamer-a52dec.files:
32702         * debian/gstreamer-aa.files:
32703         * debian/gstreamer-alsa.files:
32704         * debian/gstreamer-alsa.manpages:
32705         * debian/gstreamer-arts.files:
32706         * debian/gstreamer-artsd.files:
32707         * debian/gstreamer-audiofile.files:
32708         * debian/gstreamer-avifile.files:
32709         * debian/gstreamer-cdparanoia.files:
32710         * debian/gstreamer-colorspace.files:
32711         * debian/gstreamer-doc.files:
32712         * debian/gstreamer-dv.files:
32713         * debian/gstreamer-dvd.files:
32714         * debian/gstreamer-esd.files:
32715         * debian/gstreamer-festival.files:
32716         * debian/gstreamer-flac.files:
32717         * debian/gstreamer-gconf.conffiles:
32718         * debian/gstreamer-gconf.files:
32719         * debian/gstreamer-gconf.postinst:
32720         * debian/gstreamer-gnomevfs.files:
32721         * debian/gstreamer-gsm.files:
32722         * debian/gstreamer-http.files:
32723         * debian/gstreamer-jack.files:
32724         * debian/gstreamer-jpeg.files:
32725         * debian/gstreamer-mad.files:
32726         * debian/gstreamer-mikmod.files:
32727         * debian/gstreamer-misc.files:
32728         * debian/gstreamer-mpeg2dec.files:
32729         * debian/gstreamer-oss.files:
32730         * debian/gstreamer-plugin-apps.files:
32731         * debian/gstreamer-plugin-apps.manpages:
32732         * debian/gstreamer-plugin-libs-dev.files:
32733         * debian/gstreamer-plugin-libs.files:
32734         * debian/gstreamer-plugin-template.postinst:
32735         * debian/gstreamer-plugin-template.postrm:
32736         * debian/gstreamer-sdl.files:
32737         * debian/gstreamer-sid.files:
32738         * debian/gstreamer-vorbis.files:
32739         * debian/gstreamer-x.files:
32740         * debian/mk.control:
32741         * debian/rules:
32742         Debian package info not maintained here.
32743
32744 2004-03-04  Thomas Vander Stichele  <thomas at apestaart dot org>
32745
32746         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
32747         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
32748         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
32749         * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
32750         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
32751         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
32752         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
32753         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
32754         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
32755         * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
32756         * gst-libs/gst/colorbalance/colorbalance.c:
32757         (gst_color_balance_class_init):
32758         * gst-libs/gst/colorbalance/colorbalancechannel.c:
32759         (gst_color_balance_channel_class_init):
32760         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
32761         * gst-libs/gst/play/play.c: (gst_play_class_init):
32762         * gst-libs/gst/propertyprobe/propertyprobe.c:
32763         (gst_property_probe_iface_init):
32764         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
32765         * gst-libs/gst/tuner/tunerchannel.c:
32766         (gst_tuner_channel_class_init):
32767         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
32768         * gst/cutter/gstcutter.c: (gst_cutter_class_init):
32769         * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
32770         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
32771         * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
32772         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
32773         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
32774         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
32775         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
32776           fix signals to use - instead of _
32777         * ext/libcaca/gstcacasink.h:
32778         * ext/sdl/sdlvideosink.h:
32779           fix header rename
32780
32781 2004-03-04  David Schleef  <ds@schleef.org>
32782
32783         * testsuite/gst-lint:  Add a check for bad signal names.
32784
32785 2004-03-04  Stefan Kost <kost@imn.htwk-leipzig.de>
32786
32787         reviewed by David Schleef
32788
32789         * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
32790         modified the alpha channel and caused a warning. (bug #136192)
32791
32792 2004-04-03  Christian Schaller <Uraeus@gnome.org>
32793
32794         * gst-plugins.spec.in:
32795         Change names of plugins to actually be correct. Try to keep things
32796         alphabetical to avoid getting beat up by Thomas
32797
32798 2004-03-03  Julien MOUTTE <julien@moutte.net>
32799
32800         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
32801         Using ximagesink as a default if no gconf key found. We should
32802         probably consider using alsasink instead of osssink for the audio
32803         part.
32804
32805 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
32806
32807         * configure.ac:
32808           fix --with-plugins, don't think it ever worked before
32809         * gst-plugins.spec.in:
32810           even more updates
32811
32812 2004-03-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32813
32814         * ext/sdl/sdlvideosink.h:
32815         * sys/ximage/ximagesink.h:
32816         * sys/xvideo/xvideosink.h:
32817         * sys/xvimage/xvimagesink.h:
32818           Fix for move of gstvideosink.h -> videosink.h.
32819
32820 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
32821
32822         * gst-libs/gst/xwindowlistener/Makefile.am:
32823           this is a plugin library, not a library
32824
32825 2004-03-01  David Schleef  <ds@schleef.org>
32826
32827         * AUTHORS:  Added some names.  Add yourself if you're still
32828         missing.
32829
32830 2004-03-01  David Schleef  <ds@schleef.org>
32831
32832         * MAINTAINERS: Add
32833
32834 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
32835
32836         * gst-plugins.spec.in: clean up spec file
32837
32838 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
32839
32840         * gst-libs/gst/video/Makefile.am:
32841         * gst-libs/gst/video/gstvideosink.c:
32842         * gst-libs/gst/video/gstvideosink.h:
32843           rename gstvideosink.h to videosink.h to match other headers
32844         * gst/mixmatrix/Makefile.am:
32845           fix plugin filename
32846         * gst/tags/Makefile.am: fix plugin filename
32847
32848 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
32849
32850         * gst/tags/Makefile.am: fix plugin filename
32851
32852 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
32853
32854         * examples/gstplay/player.c: (got_time_tick), (main):
32855           add error handler
32856           display time_tick more readably
32857         * gst/mixmatrix/Makefile.am:
32858           fix plugin file name
32859
32860 2004-02-29  Christophe Fergeau  <teuf@gnome.org>
32861
32862         * sys/oss/gstosselement.c: (gst_osselement_probe),
32863         (device_combination_append), (gst_osselement_class_probe_devices):
32864         * sys/oss/gstosselement.h:
32865           Reworked enumeration of oss dsps and mixers so that gst-mixer works
32866           on my system using alsa oss emulation, fixes bug #135597
32867
32868 2004-02-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32869
32870         * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
32871         (gst_videodrop_chain), (gst_videodrop_change_state):
32872         * gst/videodrop/gstvideodrop.h:
32873           Work based on timestamp of input data, not based on the expected
32874           framerate from the input. The consequence is that this element now
32875           not only scales framerates, but also functions as a framerate
32876           corrector or framerate stabilizer/constantizer.
32877
32878 2004-02-27  David Schleef  <ds@schleef.org>
32879
32880         patches from jmmv@menta.net (Julio M. Merino Vidal)
32881
32882         * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
32883         GST_ELEMENT_ERROR call (bug #135634)
32884         * gst/interleave/interleave.c: (interleave_buffered_loop),
32885         (interleave_bytestream_loop): Don't use alloca() (bug #135640)
32886         * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
32887         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
32888         (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
32889         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
32890         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
32891         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
32892         Fix GST_ELEMENT_ERROR call.
32893         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
32894         GST_ELEMENT_ERROR call.
32895
32896 2004-02-27  Benjamin Otte  <otte@gnome.org>
32897
32898         * gst-libs/gst/audio/audio.h:
32899           add macro to make sure header isn't included twice
32900         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
32901           don't use gst_buffer_free
32902         * gst/playondemand/filter.func:
32903           don't use gst_data_free. Free data only once.
32904
32905 2004-02-26  David Schleef  <ds@schleef.org>
32906
32907         * gst-libs/gst/colorbalance/Makefile.am:
32908         * gst-libs/gst/mixer/Makefile.am:
32909         * gst-libs/gst/tuner/Makefile.am:
32910         * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
32911         should not be disted, -marshal.h files should not be installed,
32912         and -enum.h files _should_ be installed.  Fix to make this the
32913         case.
32914
32915 === release 0.7.5 ===
32916
32917 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
32918
32919         * configure.ac: release 0.7.5, "Under The Sea"
32920
32921 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
32922
32923         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
32924         (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
32925         * gst/videoscale/gstvideoscale.c:
32926         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
32927           assorted debug/warning fixes
32928
32929 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
32930
32931         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
32932         (gst_videoscale_init), (gst_videoscale_chain),
32933         (gst_videoscale_set_property), (plugin_init):
32934         * gst/videoscale/gstvideoscale.h:
32935         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
32936         (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
32937         (gst_videoscale_planar400), (gst_videoscale_packed422),
32938         (gst_videoscale_packed422rev), (gst_videoscale_32bit),
32939         (gst_videoscale_24bit), (gst_videoscale_16bit),
32940         (gst_videoscale_bilinear), (gst_videoscale_bicubic),
32941         (gst_videoscale_scale_plane_slow),
32942         (gst_videoscale_scale_point_sample),
32943         (gst_videoscale_scale_nearest),
32944         (gst_videoscale_scale_nearest_str2),
32945         (gst_videoscale_scale_nearest_str4),
32946         (gst_videoscale_scale_nearest_32bit),
32947         (gst_videoscale_scale_nearest_24bit),
32948         (gst_videoscale_scale_nearest_16bit):
32949         add debugging category and use it properly
32950         fix use of GST_PTR_FORMAT
32951
32952 2004-02-25  Andy Wingo  <wingo@pobox.com>
32953
32954         * gst/interleave/interleave.c (interleave_buffered_loop): Always
32955         push only when channel->buffer is NULL. Prevents segfaults doing
32956         the state change after a nonlocal exit, like a scheme exception.
32957
32958         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
32959         Handle the case where the intersected caps is empty.
32960
32961 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
32962
32963         * gst/law/mulaw-decode.c: (mulawdec_link):
32964         * gst/law/mulaw.c: (plugin_init):
32965           fix mulawdec so it actually works again
32966
32967 2004-02-24  Arwed v. Merkatz  <v.merkatz@gmx.net>
32968
32969         reviewed by: David Schleef  <ds@schleef.org>
32970
32971         * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
32972         (gst_gamma_init), (gst_gamma_set_property),
32973         (gst_gamma_get_property), (gst_gamma_calculate_tables),
32974         (gst_gamma_rgb24), (gst_gamma_rgb32):  Adds gamma correction
32975         for RGB, with separate r g and b correction factors. (#131167)
32976
32977 2004-02-24  Thomas Vander Stichele  <thomas at apestaart dot org>
32978
32979         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
32980           only signal tags for bitrate if they're > 0 (#134894)
32981
32982 2004-02-24  David Schleef  <ds@schleef.org>
32983
32984         * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
32985         (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
32986         (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
32987         (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
32988         (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
32989         (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
32990         (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
32991         (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
32992         Cleanups.  Convert g_prints to GST_LOGs.  Add qtdemux debug
32993         category.  Attempt to fix timestamp calculation.
32994
32995 2004-02-24  Johan Dahlin  <johan@gnome.org>
32996
32997         * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
32998
32999 2004-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
33000
33001         * configure.ac:
33002         * gconf/Makefile.am:
33003         * gconf/gstreamer.schemas:
33004         * gst-libs/gst/gconf/Makefile.am:
33005         * gst-libs/gst/gconf/gconf.c:
33006           version gconf schemas and install locations
33007
33008 2004-02-23  Benjamin Otte  <otte@gnome.org>
33009
33010         * ext/xine/xineinput.c: (gst_xine_input_dispose):
33011         (gst_xine_input_subclass_init):
33012           call parent dispose.
33013           change pad template for CD reader correctly
33014         * ext/xine/Makefile.am:
33015         * ext/xine/gstxine.h:
33016         * ext/xine/xine.c: (plugin_init):
33017         * ext/xine/xineaudiosink.c:
33018           wrap audio sinks, too
33019         * gst-libs/gst/resample/private.h:
33020         * gst-libs/gst/resample/resample.c: (gst_resample_init),
33021         (gst_resample_reinit), (gst_resample_scale),
33022         (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
33023         (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
33024         (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
33025         (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
33026         (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
33027         * gst-libs/gst/resample/resample.h:
33028         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
33029         (gst_audioscale_class_init), (gst_audioscale_link),
33030         (gst_audioscale_get_buffer), (gst_audioscale_init),
33031         (gst_audioscale_chain), (gst_audioscale_set_property),
33032         (gst_audioscale_get_property):
33033         * gst/audioscale/gstaudioscale.h:
33034           s/resample_*/gst_resample_*/i to not clobber namespaces
33035
33036 2004-02-23  Julien MOUTTE  <julien@moutte.net>
33037
33038         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
33039         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
33040         (gst_riff_create_video_template_caps),
33041         (gst_riff_create_audio_template_caps),
33042         (gst_riff_create_iavs_template_caps):
33043         * gst-libs/gst/riff/riff-media.h:
33044         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
33045         (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
33046         (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
33047         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
33048         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
33049         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
33050         (gst_matroska_demux_plugin_init): First batch implementing audio and
33051         video codec tags in demuxers.
33052
33053 2004-02-22  Benjamin Otte  <otte@gnome.org>
33054
33055         * ext/xine/Makefile.am:
33056         * ext/xine/gstxine.h:
33057         * ext/xine/xine.c: (plugin_init):
33058         * ext/xine/xineinput.c:
33059           add input plugin wrapper. Playback from files, http, mms and cdda
33060           works.
33061         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
33062           remove leftover G_GNUC_UNUSED
33063         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
33064         (gst_asf_demux_identify_guid):
33065           improve debugging output
33066
33067 2004-02-22  Benjamin Otte  <otte@gnome.org>
33068
33069         reported by: Padraig O'Briain <padraig.obriain@sun.com>
33070
33071         * autogen.sh:
33072           replace test -e with test -x for mkinstalldirs to be more portable.
33073           (fixes #134816)
33074
33075 2004-02-22  Benjamin Otte  <otte@gnome.org>
33076
33077         reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
33078
33079         * gst/audioconvert/gstaudioconvert.c: (plugin_init):
33080           set rank to PRIMARY
33081         * gst/volume/gstvolume.c: (plugin_init):
33082           set rank to NONE
33083         fixes #134960
33084
33085 2004-02-22   Julio M. Merino Vidal <jmmv@menta.net>
33086
33087         reviewed by Benjamin Otte  <otte@gnome.org>
33088
33089         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
33090           escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
33091
33092 2004-02-22  Benjamin Otte  <otte@gnome.org>
33093
33094         * configure.ac:
33095           export [_]*{gst,Gst,GST}.* symbols from plugins
33096
33097 2004-02-22  Christophe Fergeau <teuf@gnome.org>
33098
33099         reviewed by: Benjamin Otte  <otte@gnome.org>
33100
33101         * ext/lame/gstlame.c: (add_one_tag):
33102         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
33103         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
33104         (gst_vorbisenc_metadata_set1):
33105         * gst/tags/gstid3tag.c:
33106         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
33107           apply fixes from bugs #135042 (lame can't write tags) and #133817
33108           (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
33109
33110 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
33111
33112         * configure.ac: Export only gst_plugin_desc from plugins.
33113          Note that this change only makes any effect with Linux using libtool
33114          1.5.2 or higher. Otherwise it is silently ignored, but it would build
33115          fine. And don't try to have several versions of libtool in different
33116          directories.
33117
33118 2004-02-20  Andy Wingo  <wingo@pobox.com>
33119
33120         * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
33121         interleave respectively.
33122
33123         * gst/interleave/deinterleave.c: New plugin: deinterleave
33124         (replaces on oneton).
33125         * gst/interleave/interleave.c: New plugin: interleave.
33126         * gst/interleave/plugin.h: Support file.
33127         * gst/interleave/plugin.c: Support file.
33128
33129         * configure.ac: Remove intfloat and oneton, add interleave.
33130
33131         * ext/sndfile/gstsf.c: Handle events better.
33132
33133         * gst/audioconvert/gstaudioconvert.c: Change to support int2float
33134         and float2int operation. int2float has scheduling problems as
33135         noted in in2float_chain.
33136
33137 2004-02-20  Benjamin Otte  <otte@gnome.org>
33138
33139         * ext/xine/Makefile.am:
33140         * ext/xine/gstxine.h:
33141         * ext/xine/xine.c:
33142         * ext/xine/xineaudiodec.c:
33143         * ext/xine/xinecaps.c:
33144           add first version of xine plugin wrapper. Currently only wraps the
33145           QDM2 win32 DLL, and even that only in proof-of-concept quality.
33146         * configure.ac:
33147         * ext/Makefile.am:
33148           add xine plugin wrapper, disabled by default. Use --enable-xine to
33149           build. Note that it'll segfault on gst-register if you don't remove
33150           the goom and tvtime post plugins from xine.
33151         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
33152         (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
33153           add extradata parsing for QDM2.
33154           change around debugging prints.
33155
33156 2004-02-19  Benjamin Otte  <otte@gnome.org>
33157
33158         * ext/lame/gstlame.c: (gst_lame_chain):
33159         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
33160           use gst_tag_list_insert when you want to insert tags
33161
33162 2004-02-18  David Schleef  <ds@schleef.org>
33163
33164         * configure.ac:  Move massink to gst-rotten
33165         * ext/Makefile.am:
33166         * ext/mas/Makefile.am:
33167         * ext/mas/massink.c:
33168         * ext/mas/massink.h:
33169
33170 2004-02-18  David Schleef  <ds@schleef.org>
33171
33172         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
33173         typefinding, since it seems to be worse than nothing.
33174         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):  Add ftyp
33175         atom to recognize .mp4 and .m4a files as video/quicktime.
33176
33177 2004-02-18  David Schleef  <ds@schleef.org>
33178
33179         * gst/sine/demo-dparams.c: (quit_live),
33180         (dynparm_log_value_changed), (dynparm_value_changed), (main):
33181         Use double dparams, not float.
33182         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
33183         (gst_sinesrc_init): Change sync default to FALSE, since multiple
33184         sync'd elements don't really work correctly.
33185         * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
33186         (volume_update_volume), (volume_get_property):  Change dparam
33187         to double.
33188
33189 2004-02-18  Julien MOUTTE  <julien@moutte.net>
33190
33191         * sys/ximage/ximagesink.c:
33192         (gst_ximagesink_xwindow_update_geometry),
33193         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
33194         (gst_ximagesink_change_state), (gst_ximagesink_expose),
33195         (gst_ximagesink_init): Rework the way software video scaling works. So
33196         now we check on each chain call if the video frames are feeling the
33197         window. If not we try to renegotiate caps. On failure we memorize that
33198         and we won't try again for that PLAYING sessions.
33199         * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
33200         failure.
33201         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
33202         synchronous flag.
33203
33204 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
33205
33206         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
33207           break up _link so we can give a better debug message for errors
33208
33209 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
33210
33211         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
33212           set up debug category
33213
33214 2004-02-18  Julien MOUTTE <julien@moutte.net>
33215
33216         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
33217         (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
33218         the way renegotiation work. The event handling function is not taking
33219         care of external windows and renegotiate method check for pad flags
33220         NEGOTIATING. Should fix : #133209
33221
33222 2004-02-17  Julien MOUTTE  <julien@moutte.net>
33223
33224         * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
33225         pad is negotiating before trying renegotiation.
33226
33227 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
33228
33229         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
33230           pass on all possible mime types as typefind hints
33231
33232 2004-02-17  Julien MOUTTE <julien@moutte.net>
33233
33234         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
33235         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
33236         possible SHM leak if we crash. All other apps using XShm are doing
33237         that.
33238
33239 2004-02-17  Julien MOUTTE  <julien@moutte.net>
33240
33241         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
33242         (gst_ximagesink_expose): Renegotiate size on expose.
33243         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
33244         size on expose.
33245
33246 2004-02-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33247
33248         * testsuite/alsa/sinesrc.c:
33249           cosmetic fix to fix compile issue with gcc 2.95.4
33250
33251 2004-02-16  Julien MOUTTE <julien@moutte.net>
33252
33253         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
33254         (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
33255         failed opening the audio device.
33256         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
33257         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
33258         (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
33259         (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
33260         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
33261         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
33262         (gst_ximagesink_change_state), (gst_ximagesink_chain),
33263         (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
33264         Removing some useless g_return_if_fail like wingo suggested.
33265         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
33266         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
33267         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
33268         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
33269         (gst_xvimagesink_update_colorbalance),
33270         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
33271         (gst_xvimagesink_xcontext_clear),
33272         (gst_xvimagesink_get_fourcc_from_caps),
33273         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
33274         (gst_xvimagesink_set_xwindow_id),
33275         (gst_xvimagesink_colorbalance_list_channels),
33276         (gst_xvimagesink_colorbalance_set_value),
33277         (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
33278         PAUSED. Removing some useless g_return_if_fail like wingo suggested.
33279
33280 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
33281
33282         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
33283           throw error when not negotiated instead of asserting
33284
33285 2004-02-15  Julien MOUTTE  <julien@moutte.net>
33286
33287         * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
33288         correct data refcounting.
33289
33290 2004-02-15  Julien MOUTTE  <julien@moutte.net>
33291
33292         * gst/switch/gstswitch.c: (gst_switch_change_state),
33293         (gst_switch_class_init): Cleaning the sinkpads correctly on state
33294         change, mostly the EOS flag.
33295
33296 2004-02-15  Julien MOUTTE  <julien@moutte.net>
33297
33298         * examples/gstplay/player.c: (got_eos), (main): Adding some
33299         output for debugging.
33300         * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
33301         timeouts if we go to any state different from PLAYING.
33302         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
33303         more EOS bugs in riff lib.
33304
33305 2004-02-14  Julien MOUTTE  <julien@moutte.net>
33306
33307         * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
33308         visualization until i find a way to fix switch correctly.
33309         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
33310         EOS arrives.
33311         * gst/switch/gstswitch.c: (gst_switch_release_pad),
33312         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
33313         (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
33314         Reworked switch to get a more correct behaviour with events and refing
33315         of data stored in sinkpads.
33316         * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
33317         we don't pull from a pad in EOS.
33318
33319 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33320
33321         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
33322           remove v1 tag even if we can't read it (makes sure we don't detect
33323           it again)
33324
33325 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33326
33327         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
33328         (gst_alsa_xrun_recovery):
33329         * ext/alsa/gstalsa.h:
33330           try xrun recovery when wait failed. Make xrun recovery function
33331           return TRUE/FALSE to indicate success. (might fix #134354)
33332
33333 2004-02-13  David Schleef  <ds@schleef.org>
33334
33335         * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
33336         (dynparm_value_changed), (main): Convert from float to double.
33337         * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
33338
33339 2004-02-13  David Schleef  <ds@schleef.org>
33340
33341         * gst/silence/gstsilence.c: (gst_silence_class_init),
33342         (gst_silence_set_clock), (gst_silence_get),
33343         (gst_silence_set_property), (gst_silence_get_property):
33344         * gst/silence/gstsilence.h: Add sync property.
33345         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
33346         (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
33347         (gst_sinesrc_set_property), (gst_sinesrc_get_property):
33348         * gst/sine/gstsinesrc.h: Add sync property.
33349
33350 2004-02-13  David Schleef  <ds@schleef.org>
33351
33352         * gst/intfloat/gstint2float.c: (conv_f32_s16),
33353         (gst_int2float_chain_gint16):  Change stdint usage to glib types.
33354
33355 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
33356
33357         * configure.ac:
33358         * ext/Makefile.am:
33359         * gst-libs/ext/Makefile.am:
33360           move ffmpeg plugin to gst-ffmpeg module
33361
33362 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
33363
33364         * configure.ac: use GST_ARCH to detect architecture
33365
33366 2004-02-12  Julien MOUTTE  <julien@moutte.net>
33367
33368         * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
33369
33370 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
33371
33372         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
33373           classify LADSPA plugins based on number of src/sink pads
33374           (#133663, Stefan Kost)
33375         * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
33376           fix dparams registration
33377           (#133528, Stefan Kost)
33378         * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
33379           fix use of isprint and use g_ascii_isprint instead
33380           (#133316, Stefan Kost)
33381
33382 2004-02-11  David Schleef  <ds@schleef.org>
33383
33384         Convert a few inner loops to use liboil.  This is currently
33385         optional, and is only enabled if liboil is present (duh!).
33386         * configure.ac: Check for liboil-0.1
33387         * gst/intfloat/Makefile.am:
33388         * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
33389         (gst_int2float_chain_gint16):
33390         * gst/videofilter/Makefile.am:
33391         * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
33392         (tablelookup_u8), (gst_videobalance_planar411):
33393         * gst/videotestsrc/Makefile.am:
33394         * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
33395         * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
33396         (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
33397         (paint_hline_RGB565), (paint_hline_xRGB1555):
33398
33399 2004-02-11  David Schleef  <ds@schleef.org>
33400
33401         * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
33402         (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
33403         (gst_colorspace_getcaps), (gst_colorspace_link),
33404         (gst_colorspace_base_init), (gst_colorspace_init),
33405         (gst_colorspace_chain), (gst_colorspace_change_state),
33406         (plugin_init): Merge Ronald's patch (bug #117897) and update
33407         for new caps and negotiation.  Seems to work, although it
33408         shows off bugs in lcs.
33409
33410 2004-02-11  David Schleef  <ds@schleef.org>
33411
33412         * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
33413         (bug #133886)  Noticed by bugs@leroutier.net (Stephane LOEUILLET)
33414
33415 2004-02-11  David Schleef  <ds@schleef.org>
33416
33417         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
33418         (gst_rfbsrc_change_state), (gst_rfbsrc_init),
33419         (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
33420         Add server and port properties
33421
33422 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
33423
33424         * m4/a52.m4:
33425         * m4/aalib.m4:
33426         * m4/as-ffmpeg.m4:
33427         * m4/as-liblame.m4:
33428         * m4/as-slurp-ffmpeg.m4:
33429         * m4/check-libheader.m4:
33430         * m4/esd.m4:
33431         * m4/freetype2.m4:
33432         * m4/gconf-2.m4:
33433         * m4/glib.m4:
33434         * m4/gst-alsa.m4:
33435         * m4/gst-artsc.m4:
33436         * m4/gst-ivorbis.m4:
33437         * m4/gst-matroska.m4:
33438         * m4/gst-sdl.m4:
33439         * m4/gst-shout2.m4:
33440         * m4/gst-sid.m4:
33441         * m4/gtk.m4:
33442         * m4/libdv.m4:
33443         * m4/libfame.m4:
33444         * m4/libmikmod.m4:
33445         * m4/ogg.m4:
33446         * m4/vorbis.m4:
33447           fix underquotedness of macros (#133800)
33448         * m4/as-avifile.m4:
33449         * m4/xmms.m4:
33450           removed because no longer used
33451
33452 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
33453
33454         * configure.ac:
33455           require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
33456           by autopoint (fixes #132996)
33457
33458 2004-02-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33459
33460         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
33461         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
33462         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
33463         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
33464           fix memleaks
33465
33466 2004-02-11  David Schleef  <ds@schleef.org>
33467
33468         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
33469         (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
33470         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
33471         (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
33472         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
33473         (gst_jpegenc_class_init), (gst_jpegenc_init),
33474         (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
33475         (gst_jpegenc_chain), (gst_jpegenc_set_property),
33476         (gst_jpegenc_get_property):  Fix negotiation.  Add some properties.
33477         * ext/jpeg/gstjpegenc.h: Fix negotiation.
33478
33479 2004-02-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33480
33481         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
33482         (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
33483         * ext/mikmod/gstmikmod.h:
33484           fix caps negotiation in mikmod
33485         * ext/ogg/gstoggdemux.c: (gst_ogg_print):
33486           output debug information
33487
33488 2004-02-08  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33489
33490         * gst-libs/gst/colorbalance/Makefile.am:
33491         * gst-libs/gst/navigation/Makefile.am:
33492         * gst-libs/gst/xoverlay/Makefile.am:
33493           remove unused GST_OPT_CFLAGS from Makefiles
33494           include X_CFLAGS and X_LIBS in xoverlay. (#131948)
33495
33496 2004-02-07  David Schleef  <ds@schleef.org>
33497
33498         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
33499         push events to pads that haven't been created (#133508)
33500
33501 2004-02-07  Jan Schmidt  <thaytan@mad.scientist.com>
33502
33503         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
33504         (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
33505         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
33506         (gst_dvdec_loop), (gst_dvdec_change_state):
33507         Second attempt at committing a working dvdec element.
33508
33509 2004-02-06  David Schleef  <ds@schleef.org>
33510
33511         Build fixes for OS X: (see #129600)
33512         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
33513         (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
33514         (gst_riff_read_strf_iavs):
33515         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
33516         (gst_avi_demux_stream_odml):
33517         * gst/playondemand/Makefile.am:
33518         * gst/rtp/rtp-packet.c:
33519
33520 2004-02-05  David Schleef  <ds@schleef.org>
33521
33522         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
33523         last change, because it Just Doesn't Compile.
33524
33525 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33526
33527         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
33528           skip undecodable id3v2 tag instead of keeping it
33529
33530 2004-02-05  David Schleef  <ds@schleef.org>
33531
33532         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
33533         Unref leaked buffer.  (Noticed by Ronald)
33534
33535 2004-02-05  David I. Lehn  <dlehn@users.sourceforge.net>
33536
33537         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
33538         Sync requires with other checks.  >= vs =.
33539
33540 2004-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
33541
33542         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
33543         (gst_dvdec_video_link), (gst_dvdec_loop):
33544         * ext/dv/gstdvdec.h:
33545           rework the caps negotiation so that dvdec works again instead
33546           of just segfaulting.
33547
33548 === release 0.7.4 ===
33549
33550 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
33551
33552         * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
33553         * configure.ac: changed for release
33554
33555 2004-02-05  Thomas Vander Stichele  <thomas at apestaart dot org>
33556
33557         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
33558         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
33559         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
33560         * pkgconfig/gstreamer-play-uninstalled.pc.in:
33561           reworked patch by David Lehn to fix libdir and includedir for
33562           uninstalled libraries
33563           removed play and gconf from gstreamer-libs since they have their
33564           own pkgconfig files
33565
33566 2004-02-04  David Schleef  <ds@schleef.org>
33567
33568         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
33569         memleak.
33570
33571 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33572
33573         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
33574           use correct GST_TAG_ENCODER tag
33575
33576 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33577
33578         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
33579           be sure to stop the clock when going to paused
33580         * sys/oss/gstosssink.c: (gst_osssink_change_state):
33581           reset number of transmitted when going to ready.
33582         fixes #132935
33583
33584 2004-02-05  Charles Schmidt <cschmidt2@emich.edu>
33585
33586         reviewed by Benjamin Otte
33587
33588         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
33589           extract track count (fixes #133410)
33590
33591 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33592
33593         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
33594           that should be !=, not == (fixes #132519)
33595
33596 2004-02-04  David Schleef  <ds@schleef.org>
33597
33598         Make sure set_explicit_caps() is called before adding pad.
33599         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
33600         * gst/id3/gstid3types.c: (gst_id3types_loop):
33601         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
33602         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
33603
33604 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
33605
33606         * configure.ac:
33607           bump nano to 2, first prerelease
33608           put back AM_PROG_LIBTOOL
33609
33610 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
33611
33612         * testsuite/alsa/Makefile.am:
33613           these are user test apps, not automatic testsuite tests
33614
33615 2004-02-04  David Schleef  <ds@schleef.org>
33616
33617         Convert GST_DEBUG_CAPS() to GST_DEBUG():
33618         * gst/mpeg1videoparse/gstmp1videoparse.c:
33619         (mp1videoparse_parse_seq):
33620         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
33621         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
33622         * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
33623         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
33624         (gst_xvideosink_getcaps):
33625         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
33626         * testsuite/gst-lint: more tests
33627
33628 2004-02-04  David Schleef  <ds@schleef.org>
33629
33630         Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
33631         with the code that they would expand to.
33632         * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
33633         (gst_flacdec_get_src_query_types),
33634         (gst_flacdec_get_src_event_masks):
33635         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
33636         (gst_gnomevfssrc_get_query_types),
33637         (gst_gnomevfssrc_get_event_mask):
33638
33639 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33640
33641         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
33642         (gst_sinesrc_dispose):
33643           fix memleak by properly disposing sinesrc
33644
33645 2004-02-04  Julien MOUTTE  <julien@moutte.net>
33646
33647         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
33648         * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
33649         an overlay to redraw the image because it has been exposed.
33650         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
33651         (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
33652         (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
33653         * sys/ximage/ximagesink.h: Implement expose method from XOverlay
33654         interface
33655         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
33656         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
33657         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
33658         * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
33659         interface
33660
33661 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33662
33663         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
33664           more memleak fixage
33665
33666 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33667
33668         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
33669         * gst/typefind/gsttypefindfunctions.c:
33670           fix memleaks shown by gst-typefind
33671
33672 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
33673
33674         * common/glib-gen.mak:
33675           add hack rule to touch .Plo files
33676         * gst-libs/gst/colorbalance/Makefile.am:
33677         * gst-libs/gst/mixer/Makefile.am:
33678         * gst-libs/gst/play/Makefile.am:
33679         * gst-libs/gst/tuner/Makefile.am:
33680           remove glib_root variable
33681
33682 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33683
33684         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
33685           set explicit caps before adding the element, so the autopluggers can
33686           plug correctly.
33687         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
33688         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
33689         (mpeg_video_type_find), (mpeg_video_stream_type_find),
33690         (dv_type_find):
33691           fix memleaks in typefind functions. gst_type_find_suggest takes a const
33692           argument.
33693
33694 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
33695
33696         * gst-libs/gst/colorbalance/Makefile.am:
33697         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
33698         * gst-libs/gst/colorbalance/colorbalance.c:
33699         * gst-libs/gst/colorbalance/colorbalance.h:
33700         * gst-libs/gst/colorbalance/colorbalancemarshal.list:
33701         * gst-libs/gst/mixer/Makefile.am:
33702         * gst-libs/gst/mixer/mixer-marshal.list:
33703         * gst-libs/gst/mixer/mixer.c:
33704         * gst-libs/gst/mixer/mixer.h:
33705         * gst-libs/gst/mixer/mixermarshal.list:
33706         * gst-libs/gst/play/Makefile.am:
33707         * gst-libs/gst/play/play.h:
33708         * gst-libs/gst/tuner/Makefile.am:
33709         * gst-libs/gst/tuner/tuner-marshal.list:
33710         * gst-libs/gst/tuner/tuner.c:
33711         * gst-libs/gst/tuner/tuner.h:
33712         * gst-libs/gst/tuner/tunermarshal.list:
33713           use new glib-gen.mak snippet to clean up Makefile.am
33714           fix various bugs in Makefile.am's
33715
33716 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33717
33718         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
33719           handle chain parsing correctly in the multichain case
33720         * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
33721         (theora_dec_from_granulepos), (theora_dec_to_granulepos),
33722         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
33723         (theora_dec_chain):
33724           handle events and queries correctly
33725
33726 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
33727
33728         * .cvsignore:
33729         Ignore generated file _stdint.h.
33730
33731 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
33732
33733         * gst-libs/gst/colorbalance/Makefile.am:
33734         * gst-libs/gst/colorbalance/colorbalance.h:
33735         * gst-libs/gst/mixer/Makefile.am:
33736         * gst-libs/gst/mixer/mixer.h:
33737         * gst-libs/gst/play/Makefile.am:
33738         * gst-libs/gst/play/play.h:
33739         * gst-libs/gst/tuner/Makefile.am:
33740         * gst-libs/gst/tuner/tuner.h:
33741         Generate enum type code with glib-mkenums.
33742         * gst-libs/gst/colorbalance/.cvsignore:
33743         * gst-libs/gst/mixer/.cvsignore:
33744         * gst-libs/gst/play/.cvsignore:
33745         * gst-libs/gst/tuner/.cvsignore:
33746         Ignore generated files.
33747
33748 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
33749
33750         * gst-libs/gst/audio/.cvsignore:
33751         Ignore generated file.
33752         * gst-libs/gst/audio/Makefile.am:
33753         Do not install example filter.
33754
33755 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
33756
33757         * examples/switch/.cvsignore:
33758         Ignore generated file.
33759
33760 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33761
33762         * common/m4/ax_create_stdint_h.m4:
33763         * configure.ac:
33764           add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
33765           _stdint.h.
33766         * Makefile.am:
33767           remove generated _stdint.h in DISTCLEANFILES
33768         * ext/a52dec/gsta52dec.c:
33769           include _stdint.h for a52dec. (should fix #133064)
33770
33771 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
33772
33773         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
33774         (gst_tag_to_vorbis_comments):
33775         Add replaygain support to vorbistag
33776
33777 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
33778         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
33779         (gst_ffmpeg_caps_to_extradata):
33780           Fix SVQ3 caps flag properties
33781           Use glib macro for bytes swap
33782
33783 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
33784
33785         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
33786         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
33787         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
33788         * ext/sndfile/gstsf.c: (plugin_init):
33789         * gst/avi/gstavi.c: (plugin_init):
33790         * sys/dxr3/dxr3init.c: (plugin_init):
33791         * sys/oss/gstossaudio.c: (plugin_init):
33792         * sys/v4l/gstv4l.c: (plugin_init):
33793         * sys/v4l2/gstv4l2.c: (plugin_init):
33794           remove textdomain calls
33795         * po/nl.po:
33796           update Dutch translation
33797
33798 2004-02-02  Julien MOUTTE  <julien@moutte.net>
33799
33800         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
33801         (gst_play_set_audio_sink): Moving volume in the audio thread for
33802         instantaneous volume change. Maybe i will add another volume in front
33803         of visualization later, not sure yet though.
33804
33805 2004-02-02  Julien MOUTTE  <julien@moutte.net>
33806
33807         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
33808         (gst_ximagesink_handle_xevents): Better X events handling, only take
33809         the latest events for configure and motion.
33810         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
33811
33812 2004-02-02  Jon Trowbridge  <trow@gnu.org>
33813
33814         reviewed by: David Schleef  <ds@schleef.org>
33815
33816         Fix memory leaks:
33817         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
33818         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
33819
33820 2004-02-02  David Schleef  <ds@schleef.org>
33821
33822         code cleanup.  Change bzero() to memset().  Remove duplicate ; at ends
33823         of lines.
33824         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
33825         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
33826         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
33827         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
33828         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
33829         * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
33830         * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
33831         * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
33832         (gst_float2_2_int_link):
33833         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
33834         * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
33835         * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
33836         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
33837         * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
33838         * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
33839         * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
33840         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
33841         * testsuite/gst-lint: Add tests for bzero and ;;
33842
33843 2004-02-02  David Schleef  <ds@schleef.org>
33844
33845         * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
33846
33847 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
33848
33849         * ext/aalib/gstaasink.c: (gst_aasink_open):
33850         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
33851         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
33852         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
33853         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
33854         (gst_afsink_close_file):
33855         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
33856         (gst_afsrc_close_file):
33857         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
33858         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
33859         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
33860         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
33861         * ext/esd/esdmon.c: (gst_esdmon_get):
33862         * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
33863         * ext/faac/gstfaac.c: (gst_faac_chain):
33864         * ext/faad/gstfaad.c: (gst_faad_chain):
33865         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
33866         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
33867         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
33868         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
33869         (gst_flacdec_loop):
33870         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
33871         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
33872         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
33873         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
33874         (gst_gnomevfssink_close_file):
33875         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
33876         (gst_gnomevfssrc_open_file):
33877         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
33878         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
33879         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
33880         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
33881         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
33882         * ext/mad/gstmad.c: (gst_mad_chain):
33883         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
33884         * ext/mpeg2dec/gstmpeg2dec.c:
33885         * ext/mpeg2enc/gstmpeg2enc.cc:
33886         * ext/mplex/gstmplex.cc:
33887         * ext/mplex/gstmplexibitstream.cc:
33888         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
33889         (gst_ogg_demux_push):
33890         * ext/raw1394/gstdv1394src.c:
33891         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
33892         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
33893         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
33894         (gst_sf_loop):
33895         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
33896         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
33897         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
33898         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
33899         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
33900         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
33901         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
33902         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
33903         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
33904         (gst_riff_read_element_data), (gst_riff_read_seek),
33905         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
33906         * gst/adder/gstadder.c: (gst_adder_loop):
33907         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
33908         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
33909         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
33910         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
33911         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
33912         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
33913         * gst/goom/gstgoom.c: (gst_goom_chain):
33914         * gst/id3/gstid3types.c: (gst_id3types_loop):
33915         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
33916         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
33917         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
33918         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
33919         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
33920         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
33921         (gst_ebml_read_float), (gst_ebml_read_header):
33922         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
33923         (gst_matroska_demux_parse_blockgroup):
33924         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
33925         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
33926         * gst/oneton/gstoneton.c: (gst_oneton_chain):
33927         * gst/silence/gstsilence.c: (gst_silence_get):
33928         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
33929         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
33930         * gst/speed/gstspeed.c: (speed_loop):
33931         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
33932         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
33933         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
33934         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
33935         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
33936         (gst_wavparse_loop):
33937         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
33938         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
33939         (dxr3audiosink_close):
33940         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
33941         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
33942         (dxr3videosink_close), (dxr3videosink_write_data):
33943         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
33944         * sys/oss/gstosssink.c: (gst_osssink_chain):
33945         * sys/oss/gstosssrc.c: (gst_osssrc_get):
33946         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
33947         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
33948         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
33949         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
33950         (gst_v4l_set_window), (gst_v4l_enable_overlay):
33951         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
33952         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
33953         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
33954         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
33955         (gst_v4l_set_audio):
33956         * sys/v4l/v4l_calls.h:
33957         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
33958         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
33959         (gst_v4lmjpegsink_playback_init),
33960         (gst_v4lmjpegsink_playback_start):
33961         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
33962         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
33963         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
33964         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
33965         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
33966         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
33967         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
33968         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
33969         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
33970         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
33971         (gst_v4l2_get_output), (gst_v4l2_set_output),
33972         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
33973         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
33974         (gst_v4l2_set_attribute):
33975         * sys/v4l2/v4l2_calls.h:
33976         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
33977         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
33978         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
33979         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
33980         (gst_v4l2src_capture_stop):
33981         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
33982         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
33983         (gst_ximagesink_chain):
33984         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
33985         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
33986         (gst_xvideosink_xwindow_new):
33987         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
33988         (gst_xvimagesink_chain):
33989
33990 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
33991
33992         * gst/volume/gstvolume.c: (gst_volume_set_volume),
33993         (gst_volume_get_volume), (volume_class_init), (volume_init),
33994         (volume_chain_int16), (volume_update_volume):
33995         * gst/volume/gstvolume.h:
33996           make code more readable by removing magic numbers
33997           make mixer interface export 0-100 range
33998           make it internally map to 0.0-1.0 range so users don't distort
33999           output by putting the sliders at full volume
34000
34001 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
34002
34003         * gst-libs/gst/play/play.c: (gst_play_tick_callback),
34004         (gst_play_state_change), (gst_play_seek_to_time):
34005         block the tick callback for 0.5 secs after doing a seek
34006
34007 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
34008
34009         * gst-libs/gst/play/play.c: (gst_play_new):
34010           check for GError
34011
34012 2004-02-01  Julien MOUTTE  <julien@moutte.net>
34013
34014         * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
34015         (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
34016         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
34017         (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
34018         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
34019         (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
34020
34021 2004-02-01  Thomas Vander Stichele  <thomas at apestaart dot org>
34022
34023         * configure.ac:
34024         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
34025           check for a function added in vorbis 1.1
34026
34027 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34028
34029         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
34030         (gst_alsa_drain_audio), (gst_alsa_stop_audio):
34031           really start/stop clock only on PLAYING <=> PAUSED
34032         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
34033           remove \n from debugging lines
34034         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
34035           make it work when seeking does not
34036         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
34037           reset on DISCONT
34038
34039 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34040
34041         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
34042           start clock on PAUSED=>PLAYING, not later
34043         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
34044           extract correct time for different discont formats
34045         (gst_alsa_sink_get_time):
34046           don't segfault when no format is negotiated yet, just return 0
34047         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
34048         (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
34049         (gst_ogg_pad_push):
34050           handle flush and discont events correctly
34051         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
34052           handle discont events correctly
34053
34054 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
34055
34056         * gst-libs/gst/play/play.c: (gst_play_error_quark),
34057         (gst_play_error_create), (gst_play_error_plugin),
34058         (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
34059         * gst-libs/gst/play/play.h:
34060           add error handling during creation
34061         * examples/gstplay/player.c: (main):
34062           use new gst_play_new
34063
34064
34065 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34066
34067         * ext/theora/theoradec.c: (theora_dec_chain):
34068           make comments work
34069         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
34070         (vorbis_dec_src_event), (vorbis_dec_chain):
34071           add encoder tag, fix tag reading to be more error tolerant, change
34072           BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
34073           gst_pad_event_default.
34074         * gst/tags/gstvorbistag.c:
34075         (gst_tag_list_from_vorbiscomment_buffer):
34076           undefine function specific define at end of function
34077
34078 2004-01-31  Jeremy Simon  <jesimon@libertysurf.fr>
34079
34080         * ext/flac/gstflac.c: (plugin_init):
34081         * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
34082         * ext/flac/gstflacdec.h:
34083         * ext/flac/gstflacenc.h:
34084           Fix typos
34085
34086 2004-01-30  David I. Lehn  <dlehn@users.sourceforge.net>
34087
34088         * examples/gstplay/player.c: s/gstplay.h/play.h/
34089
34090 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
34091
34092         * gst-libs/gst/play/Makefile.am:
34093         * gst-libs/gst/play/gstplay.c:
34094         * gst-libs/gst/play/gstplay.h:
34095         * gst-libs/gst/play/play.c:
34096           more surgery, operation complete
34097
34098 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
34099
34100         * gst-libs/gst/play/play.old.c:
34101         * gst-libs/gst/play/play.old.h:
34102           after CVS surgery by moving, remove
34103         * gst-libs/gst/play/playpipelines.c:
34104           remove
34105
34106         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
34107           add negotiation error
34108
34109 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
34110
34111         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
34112         (gst_ogg_demux_push):
34113           add some seeking debug info
34114           send a flush when seeking
34115
34116 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34117
34118         * configure.ac:
34119           use AC_C_INLINE
34120         * configure.ac:
34121         * ext/Makefile.am:
34122         * ext/theora/Makefile.am:
34123         * ext/theora/theoradec.c:
34124           add theora video decoder. Does just do simple decoding for now and
34125           has been tested against Theora cvs only. It only works when theora
34126           is compiled with --enable-static.
34127         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
34128           always reset packetno on DISCONT
34129
34130 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34131
34132         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
34133           Fix audio.
34134
34135 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34136
34137         * gst/mpegaudioparse/gstmpegaudioparse.c:
34138         (mp3_type_frame_length_from_header):
34139           Fix header parsing - stolen from ffmpeg (thank you! :) ).
34140
34141 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34142
34143         * ext/esd/esdsink.c: (gst_esdsink_init):
34144           Since we have static pad template caps, we don't need to negotiate;
34145           either the core errors out or we know the format.
34146
34147 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34148
34149         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
34150         (gst_riff_read_seek):
34151         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
34152         (gst_ebml_read_seek):
34153           Fix event handling.
34154
34155 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34156
34157         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
34158           removee video/x-theora from vp3 decoder, it doesn't handle raw
34159           theora streams
34160         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
34161           fix bug with finalizing element that never went to PAUSED
34162         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
34163           length and position queries were swapped
34164         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
34165         (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
34166         (vorbis_dec_src_event):
34167           implement querying time and bytes
34168
34169 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
34170
34171         * just about every source file:
34172           gst_element_error -> GST_ELEMENT_ERROR
34173
34174 2004-01-29  Julien MOUTTE  <julien@moutte.net>
34175
34176         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
34177         emiting FLUSH and even before DISCONT.
34178         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
34179         get the best instant seeking as possible yay!
34180
34181 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34182
34183         * gst/mpeg1videoparse/gstmp1videoparse.c:
34184         (gst_mp1videoparse_real_chain):
34185           Committed wrong version last week... Grr... Didn't notice until now.
34186
34187 2004-01-29  Julien MOUTTE <julien@moutte.net>
34188
34189         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
34190         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
34191         have_xwindow_id signal in xwindow_create.
34192
34193 2004-01-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34194
34195         * ext/ogg/gstoggdemux.c:
34196           lots of changes - mainly support for chained bitstreams, seeking,
34197           querying and bugfixes of course
34198         * ext/vorbis/Makefile.am:
34199         * ext/vorbis/vorbisdec.c:
34200         * ext/vorbis/vorbisdec.h:
34201           add vorbisdec raw vorbis decoder
34202         * ext/vorbis/vorbis.c: (plugin_init):
34203           register vorbisdec as PRIMARY, vorbisfile as SECONDARY
34204         * gst/intfloat/Makefile.am:
34205         * gst/intfloat/float22int.c:
34206         * gst/intfloat/float22int.h:
34207         * gst/intfloat/gstintfloatconvert.c: (plugin_init):
34208           add float2intnew plugin. It converts multichannel interleaved float to
34209           multichannel interleaved int. The name should probably be changed.
34210         * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
34211         (plugin_init):
34212           add typefinding for raw theora video so oggdemux can detect it.
34213
34214 2004-01-28  Julien MOUTTE  <julien@moutte.net>
34215
34216         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
34217         sink element first.
34218         * gst/videoscale/gstvideoscale.c:
34219         (gst_videoscale_handle_src_event): Fixing src event handler.
34220
34221 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34222
34223         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
34224         (gst_v4lsrc_open), (gst_v4lsrc_close),
34225         (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
34226         (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
34227         * sys/v4l/gstv4lsrc.h:
34228         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
34229         (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
34230           Implement resizing... Hack. But that's why v4l is b0rked...
34231
34232 2004-01-28  Julien MOUTTE <julien@moutte.net>
34233
34234         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
34235         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
34236         (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
34237         (gst_ximagesink_xwindow_destroy):
34238         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
34239         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
34240         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
34241         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
34242         (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
34243         correctly cleaning the image created to check xshm calls on succes,
34244         added a lot of XSync calls in X11 functions, and fixed a segfault when
34245         no image format was defined before negotiation happened.
34246
34247 2004-01-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34248
34249         * ext/alsa/gstalsa.c: (gst_alsa_query_func):
34250           use gst_element_get_time to get correct time
34251
34252 2004-01-28  Julien MOUTTE  <julien@moutte.net>
34253
34254         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
34255         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
34256         (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
34257         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
34258         (gst_xvimagesink_check_xshm_calls),
34259         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
34260         X plugins are now able to detect that XShm calls will fail even if the
34261         server claims that it has XShm support (remote displays most of the
34262         time). We then log the error as a GST_DEBUG and set use_shm to FALSE
34263         so that we use non XShm functions. This feature is almost useless for
34264         xvimagesink as Xv is not supported on remote displays anyway, but
34265         it might happen than even on the local display XShm calls fail.
34266
34267 2004-01-27  David Schleef  <ds@schleef.org>
34268
34269         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
34270         (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
34271         (gst_esdsink_change_state):  Fix sync issues in esdsink.  Also
34272         changed esdsink to only use 44100,16,2, since esd sucks at rate
34273         conversion and esdsink has had difficulty negotiating.
34274
34275 2004-01-27  Julien MOUTTE <julien@moutte.net>
34276
34277         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
34278         (gst_play_seek_to_time): Fixing the way to get current position.
34279
34280 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34281
34282         * sys/oss/gstosssink.c: (gst_osssink_sink_query):
34283           use gst_element_get_time to get correct time
34284
34285 2004-01-27  Julien MOUTTE <julien@moutte.net>
34286
34287         * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
34288         fix ever... Inverting 2 lines of code make spider autoplug correctly
34289         tagged mp3 !
34290
34291 2004-01-27  David Schleef  <ds@schleef.org>
34292
34293         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
34294         Use gst_pad_try_set_caps_nonfixed().
34295
34296 2004-01-27  David Schleef  <ds@schleef.org>
34297
34298         * gst/ac3parse/gstac3parse.c: update to checklist 5
34299         * gst/adder/gstadder.c: rewrite negotiation.  update to checklist 5
34300         * gst/audioconvert/gstaudioconvert.c: update to checklist 5
34301         * gst/audioscale/gstaudioscale.c: same
34302         * gst/auparse/gstauparse.c: same
34303         * gst/avi/gstavidemux.c: same
34304
34305 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34306
34307         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
34308           stop processing after EOS
34309
34310 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34311
34312         * gst/asfdemux/asfheaders.h:
34313         * gst/asfdemux/gstasfdemux.c:
34314         * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
34315         (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
34316         (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
34317           lot's of fixes to make data extraction simpler and get the code
34318           architecture and compiler independant. Add debugging category
34319         * gst/goom/gstgoom.c: (gst_goom_change_state):
34320           reset channel count on PAUSED=>READY, not READY=>PAUSED
34321
34322 2004-01-26  Colin Walters  <walters@verbum.org>
34323
34324         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
34325         code to pull a bigger buffer in iradio mode.  This as a side effect
34326         makes typefinding work.
34327
34328 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
34329
34330         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
34331         Fix SVQ3 decoding on PPC
34332
34333 2004-01-26  Julien MOUTTE <julien@moutte.net>
34334
34335         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
34336         that one managed to stay there... Fixed.
34337
34338 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
34339
34340         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
34341         (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
34342         * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
34343         (qtdemux_video_caps):
34344         * gst/qtdemux/qtdemux.h:
34345         Add SVQ3 specific flags to qtdemux and ffmpeg
34346
34347 2004-01-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34348
34349         * gst-libs/gst/audio/audio.h:
34350           remove buffer-frames from audio caps
34351         * gst/audioconvert/gstaudioconvert.c:
34352           fix plugin to really work.
34353
34354 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34355
34356         * gst-libs/gst/mixer/mixer.c:
34357         * gst-libs/gst/propertyprobe/propertyprobe.c:
34358         * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
34359         (gst_tuner_find_channel_by_name):
34360         * gst-libs/gst/tuner/tuner.h:
34361           Add gtk-doc style comments. Also fix a function name.
34362
34363 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34364
34365         * ext/divx/gstdivxdec.c: (gst_divxdec_init),
34366         (gst_divxdec_negotiate):
34367           Fix for new capsnego - also fixes gst-player with divxdec.
34368
34369 2004-01-25  Julien MOUTTE  <julien@moutte.net>
34370
34371         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
34372         (gst_play_identity_handoff), (gst_play_set_location),
34373         (gst_play_set_visualization), (gst_play_connect_visualization): Another
34374         try in visualization implementation. Still have an issue with switch
34375         blocking when pulling from video_queue and only audio comes out of
34376         spider.
34377         * gst/switch/gstswitch.c: (gst_switch_release_pad),
34378         (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
34379         release method. And check if the pad is usable before pulling.
34380
34381 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34382
34383         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
34384         (gst_videobalance_init),
34385         (gst_videobalance_colorbalance_list_channels),
34386         (gst_videobalance_colorbalance_set_value),
34387         (gst_videobalance_colorbalance_get_value),
34388         (gst_videobalance_update_properties),
34389         (gst_videobalance_update_tables_planar411),
34390         (gst_videobalance_planar411):
34391         * gst/videofilter/gstvideobalance.h:
34392           Implement lookup-tables. +/- 10x faster.
34393
34394 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34395
34396         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
34397         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
34398           The index reading was broken. The rest worked fine, but the whole
34399           goal of my rewrite was to make avidemux readable, and this was
34400           not at all readable. Please use typed variables.
34401
34402 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34403
34404         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
34405           Additional pad usability check.
34406         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
34407         (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
34408         (gst_mp1videoparse_real_chain):
34409           Fix MPEG video stream parsing. The original plugin had several
34410           issues, including not timestamping streams where the source was
34411           not timestamped (this happens with PTS values in mpeg system
34412           streams, but MPEG video is also a valid stream on its own so
34413           that needs timestamps too). We use the display time code for that
34414           for now. Also, if one incoming buffer contains multiple valid
34415           frames, we push them all on correctly now, including proper EOS
34416           handling. Lastly, several potential segfaults were fixed, and we
34417           properly sync on new sequence/gop headers to include them in next,
34418           not previous frames (since they're header for the next frame, not
34419           the previous). Also see #119206.
34420         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
34421         (bpf_from_header):
34422           Move caps setting so we only do it after finding several valid
34423           MPEG-1 fraes sequentially, not right after the first one (which
34424           might be coincidental).
34425         * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
34426         (mpeg_video_type_find), (mpeg_video_stream_type_find),
34427         (plugin_init):
34428           Add unsynced MPEG video stream typefinding, and change some
34429           probability values so we detect streams rightly. The idea is as
34430           follows: I can have an unsynced system stream which contains
34431           video. In the current code, I would randomly get a type for either
34432           system or video stream type found, because the probabilities are
34433           being calculated rather randomly. I now use fixed values, so we
34434           always prefer system stream if that was found (and that is how it
34435           should be). If no system stream was found, we can still identity                the stream as video-only.
34436
34437 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34438
34439         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
34440         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
34441           don't write to buffer. Extract data without the need of
34442           __attribute__ ((packed))
34443
34444 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34445
34446         * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
34447         (mpeg1_sys_type_find):
34448           Fix MPEG-1 stream typefinding.
34449
34450 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34451
34452         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
34453           Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
34454
34455 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
34456
34457         * ext/esd/esdsink.c: (gst_esdsink_open_audio):
34458         * ext/esd/gstesd.c: (plugin_init):
34459           private debugging, better error reporting
34460
34461 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34462
34463         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
34464         (gst_riff_read_init), (gst_riff_read_change_state):
34465         * gst-libs/gst/riff/riff-read.h:
34466           Remove stuff fromold metadata system.
34467
34468 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34469
34470         * ext/ogg/gstoggdemux.c:
34471           Fix wrong file comment.
34472         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
34473         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
34474           Add metadata reading properly.
34475
34476 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
34477
34478         * ext/Makefile.am:
34479           Fix nas DIST_SUBDIRS
34480           Uraeus:
34481           Fix bug where make distcheck doesn't get run on adding stuff to
34482           the build.
34483
34484 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34485
34486         * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
34487         * ext/divx/gstdivxdec.h:
34488           Fix divx3 ("msmpeg4") playback using divxdec.
34489
34490 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34491
34492         * gst/typefind/gsttypefindfunctions.c:
34493         (mp3_type_frame_length_from_header): fix bug in length computation
34494         (mp3_type_find): improve debugging output
34495
34496 2004-01-23  Julien MOUTTE  <julien@moutte.net>
34497
34498         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
34499         (gst_play_set_location), (gst_play_seek_to_time),
34500         (gst_play_set_audio_sink), (gst_play_set_visualization),
34501         (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
34502         the pipeline from scratch. Visualization is back and switch went out as
34503         i realized it was not possible to use the way i wanted.
34504         * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
34505         (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
34506         clearing in state change from READY to NULL. So that one can clean the
34507         X ressources keeping the element.
34508         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
34509         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
34510         (gst_xvimagesink_colorbalance_set_value),
34511         (gst_xvimagesink_colorbalance_get_value),
34512         (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
34513         (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
34514         change from READY to NULL and fixed some stupid bugs in colorbalance
34515         get/set values. Also added the following feature : when nobody tries to
34516         set some values to the colorbalance levels before the xcontext is
34517         grabbed, then when creating channels list from Xv attributes we set the
34518         internal values to the Xv defaults. This way we handle buggy Xv drivers
34519         that set default hue values far from the middle of the range (Thanks
34520         to Jon Trowbridge for pointing that issue).
34521         * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
34522         colorbalance levels have been set before xcontext is grabbed.
34523
34524 2004-01-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34525
34526         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
34527           Fix the ossmixer case where we shouldn't open /dev/dsp* because
34528           it might block operations (which is bad for a mixer).
34529
34530 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
34531
34532         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
34533         (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
34534         (gmip_find_type_pre):
34535         * gst-libs/gst/media-info/media-info-priv.h:
34536         * gst-libs/gst/media-info/media-info.c:
34537         (gst_media_info_instance_init), (gst_media_info_read_idler):
34538         add fakesink to get caps on decoder src pad again
34539         fix callback prototype to match new have_type signal signature
34540
34541 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
34542
34543         * gst/adder/gstadder.c: (gst_adder_link):
34544           fix non-compile and cut-n-paste code
34545
34546 2004-01-21  David Schleef  <ds@schleef.org>
34547
34548         * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
34549         (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
34550         (gst_swfdec_init), (gst_swfdec_change_state):
34551         * ext/swfdec/gstswfdec.h:
34552         Fix negotiation.
34553         * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
34554         (gst_adder_request_new_pad): Fix negotiation.
34555         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
34556         Add a fixate function.
34557         * gst/intfloat/gstfloat2int.c:
34558         * gst/intfloat/gstfloat2int.h:
34559         * gst/intfloat/gstint2float.c:
34560         * gst/intfloat/gstint2float.h:
34561         Completely rewrite the negotiation.  Doesn't quite work yet,
34562         due to some buffer-frames problem.
34563
34564 2004-01-21  Thomas Vander Stichele  <thomas at apestaart dot org>
34565
34566         * ext/gnomevfs/gstgnomevfssrc.c:
34567         * sys/v4l2/v4l2_calls.h:
34568           fix includes for distcheck
34569
34570 2004-01-21  Christian Schaller <uraeus@gnome.org>
34571
34572         * ext/nas/
34573         Add libnas (network audio system) plugin, patch from Arwed von Merkatz
34574         based on earlier patch from Laurent Vivier
34575
34576 2004-01-20  Jeremy Simon  <jesimon@libertysurf.fr>
34577
34578         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
34579         Fix wma caps property
34580         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
34581         Fix typo (flags1 and flags2)
34582
34583 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
34584
34585         * gst-libs/gst/media-info/media-info-priv.c:
34586         (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
34587         (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
34588         (gmip_find_stream), (gmip_find_track_metadata),
34589         (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
34590         (gmip_find_track_format):
34591         * gst-libs/gst/media-info/media-info-priv.h:
34592         * gst-libs/gst/media-info/media-info-test.c: (main):
34593         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
34594         (gst_media_info_read_idler), (gst_media_info_read):
34595         * gst-libs/gst/media-info/media-info.h:
34596           register debugging category and use it for debugging
34597
34598 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
34599
34600         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
34601         (gst_vorbisfile_new_link):
34602           signal streaminfo through tags
34603
34604 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34605
34606         * ext/mplex/gstmplex.cc:
34607         * ext/mplex/gstmplexibitstream.cc:
34608           g++ doesn't like NULL in our i18n/error macros, should be
34609           either (NULL) or ("").
34610
34611 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34612
34613         * sys/dxr3/dxr3audiosink.c:
34614         * sys/dxr3/dxr3init.c:
34615         * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
34616         * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
34617           Fix more error error error errors (missing includes here).
34618
34619 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34620
34621         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
34622           fix thomas' error errors.
34623
34624 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
34625
34626         * ext/mpeg2enc/gstmpeg2enc.cc:
34627           fix error errors.
34628
34629 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34630
34631         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
34632         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
34633           Fix for new error system.
34634
34635 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
34636
34637         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
34638           fix for new error reporting
34639
34640 2004-01-20  David Schleef  <ds@schleef.org>
34641
34642         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
34643         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
34644         (gst_ximagesink_set_xwindow_id): Change to using a framerate
34645         of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
34646         and neither is 100+, most likely.
34647         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
34648         (gst_xvimagesink_getcaps): same
34649
34650 2004-01-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34651
34652         * configure.ac:
34653           Up version requirement to 2.0.3 (not yet released) to avoid symbol
34654           clashes with ffmpeg.
34655
34656 2004-01-20  Julien MOUTTE  <julien@moutte.net>
34657
34658         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
34659         (gst_switch_init): Fixed switch element : proxying link and setting
34660         caps from src to sink on request.
34661
34662 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
34663
34664         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
34665         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
34666         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
34667         fix element_error
34668
34669 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
34670
34671         * sys/v4l/v4l_calls.h:
34672         * sys/v4l2/v4l2_calls.h:
34673           element_error fixes
34674
34675 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
34676
34677         * gst-libs/gst/gst-i18n-plugin.h:
34678           add locale.h
34679           remove config.h inclusion
34680
34681 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
34682
34683         * autogen.sh:
34684           adding autopoint invocation
34685         * Makefile.am:
34686         * configure.ac:
34687         * gst-libs/gst/gettext.h:
34688           adding gettext bits
34689         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
34690         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
34691         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
34692         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
34693         (gst_gnomevfssink_close_file):
34694         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
34695         * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
34696         * gst-libs/gst/gst-i18n-plugin.h:
34697         * gst/avi/gstavi.c: (plugin_init):
34698         * sys/dxr3/dxr3init.c: (plugin_init):
34699         * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
34700         * sys/oss/gstossaudio.c: (plugin_init):
34701         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
34702         * sys/v4l/gstv4l.c: (plugin_init):
34703         * sys/v4l/v4l_calls.c: (gst_v4l_open):
34704         * sys/v4l2/gstv4l2.c: (plugin_init):
34705         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
34706         (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
34707         (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
34708         (gst_v4l2_set_output), (gst_v4l2_get_frequency),
34709         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
34710         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
34711           make sure locale and translation domain are set
34712           fix translated strings
34713         * po/.cvsignore:
34714         * po/LINGUAS:
34715         * po/Makevars:
34716         * po/POTFILES.in:
34717         * po/nl.po:
34718           put translation files into place
34719         * sys/xvideo/imagetest.c: (main):
34720         * ext/dv/demo-play.c: (main):
34721           fix unnecessary translations
34722
34723 2004-01-19  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
34724
34725         * ext/sndfile/gstsf.c:
34726         * gst/avi/gstavimux.c:
34727         * ext/audiofile/gstafsink.c:
34728         * ext/audiofile/gstafsrc.c:
34729         * ext/gnomevfs/gstgnomevfssink.c:
34730         * ext/gnomevfs/gstgnomevfssrc.c:
34731         * sys/oss/gstosselement.c:
34732         * sys/v4l/v4l_calls.h:
34733           fix i18n include
34734
34735 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
34736
34737         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
34738         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
34739         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
34740         (gst_v4l2_get_output), (gst_v4l2_set_output),
34741         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
34742         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
34743         (gst_v4l2_set_attribute):
34744         update to new error handling
34745
34746 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
34747
34748         * ext/sidplay/gstsiddec.cc:
34749         * gst/modplug/gstmodplug.cc:
34750           parenthese NULL because C++ seems angry about it
34751
34752 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
34753
34754         * gst-libs/gst/gst-i18n-plugin.h:
34755           add skeleton i18n stuff, but needs to be further implemented
34756
34757 2004-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>
34758
34759         * examples/gstplay/player.c: (main):
34760         * ext/aalib/gstaasink.c: (gst_aasink_open):
34761         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
34762         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
34763         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
34764         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
34765         (gst_afsink_close_file):
34766         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
34767         (gst_afsrc_close_file):
34768         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
34769         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
34770         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
34771         * ext/esd/esdmon.c: (gst_esdmon_get):
34772         * ext/esd/esdsink.c: (gst_esdsink_chain):
34773         * ext/faac/gstfaac.c: (gst_faac_chain):
34774         * ext/faad/gstfaad.c: (gst_faad_chain):
34775         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
34776         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
34777         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
34778         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
34779         (gst_flacdec_loop):
34780         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
34781         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
34782         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
34783         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
34784         (gst_gnomevfssink_close_file):
34785         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
34786         (gst_gnomevfssrc_open_file):
34787         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
34788         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
34789         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
34790         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
34791         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
34792         * ext/mad/gstmad.c: (gst_mad_chain):
34793         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
34794         * ext/mpeg2dec/gstmpeg2dec.c:
34795         * ext/mpeg2enc/gstmpeg2enc.cc:
34796         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
34797         * ext/mplex/gstmplex.cc:
34798         * ext/mplex/gstmplexibitstream.cc:
34799         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
34800         (gst_ogg_demux_push), (gst_ogg_pad_push):
34801         * ext/raw1394/gstdv1394src.c:
34802         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
34803         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
34804         * ext/sidplay/gstsiddec.cc:
34805         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
34806         (gst_sf_loop):
34807         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
34808         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
34809         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
34810         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
34811         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
34812         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
34813         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
34814         * gst-libs/gst/Makefile.am:
34815         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
34816         (gst_riff_read_element_data), (gst_riff_read_seek),
34817         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
34818         * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
34819         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
34820         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
34821         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
34822         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
34823         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
34824         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
34825         * gst/goom/gstgoom.c: (gst_goom_chain):
34826         * gst/id3/gstid3types.c: (gst_id3types_loop):
34827         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
34828         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
34829         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
34830         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
34831         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
34832         (gst_ebml_read_float), (gst_ebml_read_header):
34833         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
34834         (gst_matroska_demux_parse_blockgroup):
34835         * gst/modplug/gstmodplug.cc:
34836         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
34837         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
34838         * gst/oneton/gstoneton.c: (gst_oneton_chain):
34839         * gst/silence/gstsilence.c: (gst_silence_get):
34840         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
34841         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
34842         * gst/speed/gstspeed.c: (speed_loop):
34843         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
34844         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
34845         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
34846         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
34847         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
34848         (gst_wavparse_loop):
34849         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
34850         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
34851         (dxr3audiosink_close):
34852         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
34853         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
34854         (dxr3videosink_close), (dxr3videosink_write_data):
34855         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
34856         * sys/oss/gstosselement.h:
34857         * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
34858         (gst_osssink_chain):
34859         * sys/oss/gstosssrc.c: (gst_osssrc_get):
34860         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
34861         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
34862         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
34863         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
34864         (gst_v4l_enable_overlay):
34865         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
34866         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
34867         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
34868         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
34869         (gst_v4l_set_audio):
34870         * sys/v4l/v4l_calls.h:
34871         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
34872         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
34873         (gst_v4lmjpegsink_playback_init),
34874         (gst_v4lmjpegsink_playback_start):
34875         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
34876         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
34877         (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
34878         (gst_v4lmjpegsrc_requeue_frame):
34879         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
34880         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
34881         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
34882         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
34883         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
34884         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
34885         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
34886         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
34887         (gst_v4l2src_capture_stop):
34888         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
34889         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
34890         (gst_ximagesink_chain):
34891         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
34892         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
34893         (gst_xvideosink_xwindow_new):
34894         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
34895         (gst_xvimagesink_chain):
34896         use new error signal, function and categories
34897
34898 2004-01-18  Jeremy Simon <jesimon@libertysurf.fr>
34899
34900         * configure.ac:
34901         * ext/Makefile.am:
34902         * ext/musicbrainz/gsttrm.c:
34903         * ext/musicbrainz/gsttrm.h:
34904         * ext/musicbrainz/Makefile.am:
34905         Add a trm plugin
34906
34907 2004-01-18  Julien MOUTTE  <julien@moutte.net>
34908
34909         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
34910         (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
34911         synchronous property for debugging.
34912         * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
34913         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
34914         (gst_xvimagesink_set_property): Moving a pointer declaration to a
34915         smaller block, fixing indent.
34916
34917 2004-01-16  David Schleef  <ds@schleef.org>
34918
34919         * gst/videofilter/gstvideobalance.c: Fix regression; changing a
34920         property affects the video stream.
34921         * sys/xvimage/xvimagesink.c:
34922         * sys/xvimage/xvimagesink.h:
34923         Add synchronous property for debugging.  Should probably be
34924         disabled in non-CVS builds.  Make sure that the Xv attribute
34925         exists before we set it (crash!).  Fix a silly float bug that
34926         caused colorbalance to just not work.
34927
34928 2004-01-17  Christian Schaller <Uraeus@gnome.org>
34929
34930         * tools/gst-launch-ext.in - update for new plugins
34931
34932 2004-01-16  David Schleef  <ds@schleef.org>
34933
34934         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
34935         already-freed caps.
34936
34937 2994-01-16  Christian Schaller <Uraeus@gnome.org>
34938
34939         * Update spec for new colorspace plugin and libcaca plugin
34940         * Fix compilation of libcaca plugin (clock -> id)
34941
34942 2004-01-16  Julien MOUTTE <julien@moutte.net>
34943
34944         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
34945         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
34946         (gst_xvimagesink_set_xwindow_id),
34947         (gst_xvimagesink_colorbalance_set_value),
34948         (gst_xvimagesink_colorbalance_get_value),
34949         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
34950         (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
34951         correct colorbalance properties. They can now be set when the element
34952         is still in NULL state. The values will be committed to the Xv Port
34953         when xcontext is initialized.
34954         * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
34955         brightness int values in the GstXvImagesink structure.
34956
34957 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34958
34959         * gst-libs/gst/Makefile.am:
34960           restructure so having local patches works easier.
34961
34962 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34963
34964         * ext/mpeg2enc/Makefile.am:
34965         * ext/mpeg2enc/gstmpeg2enc.cc:
34966         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
34967           Bugfix with respect to EOS handling.
34968
34969 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34970
34971         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
34972           Link with right caps (else, it segfaults).
34973         * ext/mplex/gstmplexjob.cc:
34974           Fix for slight API change in 1.6.1.93 release of mjpegtools.
34975
34976 2004-01-15  David Schleef  <ds@schleef.org>
34977
34978         * gst-libs/gst/audio/Makefile.am:
34979         Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
34980         from the template.
34981         * gst-libs/gst/audio/gstaudiofilter.c:
34982         * gst-libs/gst/audio/gstaudiofilter.h:
34983         Add bytes_per_sample and size and n_samples calculation.
34984         * gst-libs/gst/audio/gstaudiofilterexample.c:
34985         Remove, now autogenerated.
34986         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
34987         Moved from gstaudiofilterexample, object name changed, code added
34988         so that it actually works.
34989         * gst-libs/gst/audio/make_filter:
34990         Script to build an audiofilter subclass from the template.
34991         * gst/colorspace/Makefile.am:
34992         * gst/colorspace/yuv2yuv.c:
34993         Remove file, since it's GPL, and we don't use it.
34994
34995 2004-01-15  Julien MOUTTE  <julien@moutte.net>
34996
34997         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
34998         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
34999         them use the buffer free function to test how the buffer was allocated.
35000
35001 2004-01-15  David Schleef  <ds@schleef.org>
35002
35003         * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
35004         that handles osssink fallback.
35005         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
35006         (gst_audio_convert_getcaps):
35007         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
35008         Add audio/x-qdm2 for QDM2 audio.
35009         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
35010         * gst/sine/gstsinesrc.h: Add example of how to implement tags.
35011         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
35012         Decrease minimum size to 16x16.
35013         * gst/wavparse/gstwavparse.c:
35014         Convert disabled pad template caps to new caps.
35015         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
35016         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
35017         (gst_xvimagesink_chain): Throw element error when display cannot
35018         be opened.  Increase minimum framerate to 1.0.  Check the data
35019         free function on a buffer to make sure it is the type we expect
35020         before manipulating it.
35021
35022 2004-01-15  Julien MOUTTE <julien@moutte.net>
35023
35024         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
35025         (gst_videobalance_colorbalance_set_value): Implement passthru if
35026         settings are in the middle.
35027         * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
35028
35029 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35030
35031         * gst/videofilter/Makefile.am:
35032         * gst/volume/Makefile.am:
35033           Since we use videofilter symbols, link to it.
35034
35035 2004-01-15  Julien MOUTTE <julien@moutte.net>
35036
35037         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
35038         mixer interface type to HARDWARE.
35039         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
35040         type to SOFTWARE.
35041         * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
35042         * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
35043         * gst/volume/gstvolume.c: (gst_volume_interface_supported),
35044         (gst_volume_interface_init), (gst_volume_list_tracks),
35045         (gst_volume_set_volume), (gst_volume_get_volume),
35046         (gst_volume_set_mute), (gst_volume_mixer_init),
35047         (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
35048         (volume_init): Implementing mixer interface.
35049         * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
35050         * sys/oss/gstosselement.c: (gst_osselement_get_type),
35051         (gst_osselement_change_state): Removing some trailing commas in
35052         structures.
35053         * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
35054         interface type to HARDWARE.
35055         * sys/v4l/gstv4lcolorbalance.c:
35056         (gst_v4l_color_balance_interface_init): Setting colorbalance interface
35057         type to HARDWARE.
35058         * sys/v4l2/gstv4l2colorbalance.c:
35059         (gst_v4l2_color_balance_interface_init): Setting colorbalance
35060         interface type to HARDWARE.
35061         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
35062         same code than ximagesink for event handling.
35063
35064 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35065
35066         * ext/snapshot/Makefile.am:
35067         * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
35068         (gst_snapshot_chain):
35069         * ext/snapshot/gstsnapshot.h:
35070           This has to be a joke... Snapshot should be connected to a tee,
35071           colorspace element before it and EOS after that, where the other
35072           src of the tee receives normal data.
35073           The current way is *wrong*.
35074
35075 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35076
35077         * ext/hermes/gsthermescolorspace.c:
35078           Fix another compile error. Same as below.
35079
35080 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35081
35082         * gst/colorspace/gstcolorspace.c:
35083         * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
35084         (gst_colorspace_i420_to_yv12):
35085           Fix compiling... Didn't test if it actually works.
35086
35087 2004-01-15  David Schleef  <ds@schleef.org>
35088
35089         * configure.ac:
35090         * gst/colorspace/Makefile.am:
35091         * gst/colorspace/gstcolorspace.c:
35092         * gst/colorspace/gstcolorspace.h:
35093         * gst/colorspace/yuv2rgb.c:
35094         * gst/colorspace/yuv2rgb.h:
35095         Duplicate the ext/hermes colorspace plugin, and remove Hermes
35096         code and GPL code.  Fix for new caps negotiation.  Rewrite
35097         much of the format handling code, and some of the conversion
35098         code.  Basically, rewrote almost everything.  This element
35099         handles I420, YV12 to RGB conversions.
35100         * ext/hermes/Makefile.am:
35101         * ext/hermes/gsthermescolorspace.c:
35102         Rename colorspace to hermescolorspace.  Fix negotiation issues.
35103         Remove non-Hermes related code.  This element handles lots of
35104         RGB to RGB conversions, but no YUV.
35105         * ext/hermes/gstcolorspace.c:
35106         * ext/hermes/gstcolorspace.h:
35107         * ext/hermes/rgb2yuv.c:
35108         * ext/hermes/yuv2rgb.c:
35109         * ext/hermes/yuv2rgb.h:
35110         * ext/hermes/yuv2rgb_mmx16.s:
35111         * ext/hermes/yuv2yuv.c:
35112         * ext/hermes/yuv2yuv.h:
35113         Remove old code.
35114
35115 2004-01-14  Colin Walters  <walters@verbum.org>
35116
35117         * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
35118         they've already been.
35119
35120 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35121
35122         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
35123           assume tag mode when pad is not connected
35124
35125 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35126
35127         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
35128           Don't update the time of the clock
35129         (gst_alsa_sink_loop):
35130           sync to the clock given to alsasink, not the own clock
35131         * sys/oss/gstosssink.c: (gst_osssink_chain):
35132           sync to the clock
35133         (gst_osssink_change_state):
35134           activate the clock
35135         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
35136         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
35137           remove bogus code that made DISCONT events unhandled
35138         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
35139           explicitly case to double in _set_simple. (fixes 2nd warning in bug
35140           #131502)
35141         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
35142         (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
35143         (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
35144           convert g_warning because of wrong asf data to GST_WARNINGs (fixes
35145           2nd warning in bug #131502)
35146
35147 2004-01-14  Julien MOUTTE  <julien@moutte.net>
35148
35149         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
35150         (gst_videobalance_colorbalance_set_value),
35151         (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
35152         for colorbalance interface implementation.
35153         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
35154         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
35155         (gst_ximagesink_dispose), (gst_ximagesink_init),
35156         (gst_ximagesink_class_init): Adding DISPLAY property.
35157         * sys/ximage/ximagesink.h: Adding display_name to store display.
35158         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
35159         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
35160         (gst_xvimagesink_dispose), (gst_xvimagesink_init),
35161         (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
35162         properties (they still need polishing though for gst-launch use : no
35163         xcontext yet, i ll do that tomorrow).
35164         * sys/xvimage/xvimagesink.h: Adding display_name to store display.
35165
35166 2004-01-14  Julien MOUTTE  <julien@moutte.net>
35167
35168         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
35169         (gst_play_set_location), (gst_play_set_visualization): Preparing
35170         switch integration, adding videobalance in the pipeline.
35171
35172 2004-01-14  Julien MOUTTE <julien@moutte.net>
35173
35174         * gst-libs/gst/colorbalance/colorbalance.c:
35175         (gst_color_balance_class_init): Adding a default type.
35176         * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
35177         the type.
35178         * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
35179         (gst_videobalance_dispose), (gst_videobalance_class_init),
35180         (gst_videobalance_init), (gst_videobalance_interface_supported),
35181         (gst_videobalance_interface_init),
35182         (gst_videobalance_colorbalance_list_channels),
35183         (gst_videobalance_colorbalance_set_value),
35184         (gst_videobalance_colorbalance_get_value),
35185         (gst_videobalance_colorbalance_init): Implementing colorbalance
35186         interface.
35187         * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
35188         list.
35189         * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
35190         bug which was triggering a BadAccess X error when setting an overlay
35191         before pad was really negotiated.
35192         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
35193         Using the colorbalance type macro.
35194
35195 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35196
35197         * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
35198         (gst_flacenc_chain):
35199           handle tags correctly
35200         * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
35201           extract ID3v1 tags correctly
35202
35203 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35204
35205         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
35206         (plugin_init):
35207           Improve matroska typefinding for odd-typed headers...
35208
35209 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35210
35211         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
35212           Fix for using incremental number on padnames.
35213
35214 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35215
35216         * ext/divx/gstdivxdec.c:
35217         * ext/divx/gstdivxenc.c:
35218           Set category to divx4linux instead of divx (too generic).
35219         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
35220         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
35221         (gst_wavparse_loop), (gst_wavparse_change_state):
35222         * gst/wavparse/gstwavparse.h:
35223           fix parsing of WAV files with non-standard fmt-tag size and fix
35224           skipping of unrecognized chunks... Someone please fix this thing
35225           to use rifflib so all this is automated.
35226         * sys/v4l/Makefile.am:
35227         * sys/v4l2/Makefile.am:
35228           Add X_CFLAGS because we depend on X (for overlay).
35229
35230 2004-01-14  Jan Schmidt  <thaytan@mad.scientist.com>
35231
35232         * ext/mpeg2dec/gstmpeg2dec.c:
35233           Don't issue a timestamp unless we tagged the frame
35234           with a PTS.
35235
35236 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35237
35238         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
35239           Query the audio element to get the time, not the clock. We're
35240           interested in the element's time here.
35241
35242 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35243
35244         * ext/aalib/gstaasink.c: (gst_aasink_chain):
35245         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
35246         * ext/esd/esdsink.c: (gst_esdsink_chain):
35247         * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
35248         * ext/mas/massink.c: (gst_massink_chain):
35249         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
35250         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
35251         (gst_matroska_demux_parse_metadata):
35252         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
35253         (gst_mpeg_parse_release_locks):
35254         * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
35255         * gst/udp/gstudpsink.c: (gst_udpsink_chain):
35256         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
35257         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
35258         (gst_osssink_change_state):
35259         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
35260         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
35261         * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
35262         (gst_xvideosink_release_locks):
35263         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
35264           use element time.
35265         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
35266         (gst_alsa_clock_stop):
35267         * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
35268         (gst_audio_clock_get_internal_time):
35269           simplify for use with new clocking code.
35270         * testsuite/alsa/Makefile.am:
35271         * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
35272           fix testsuite for new caps system
35273
35274 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35275
35276         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
35277         * ext/flac/gstflacenc.c: (add_one_tag):
35278           length is already host endian, no need to convert. Fixes playback of
35279           tagged files on PPC. (bug #128384)
35280
35281 2004-01-13  Julien MOUTTE <julien@moutte.net>
35282
35283         * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
35284         colorbalance interface stating if it is hardware based or software
35285         based.
35286         * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
35287         Removing a trailing comma.
35288         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
35289         (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
35290         Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
35291         the documentation seems to be wrong on the -1000 to 1000 interval.
35292
35293 2004-01-12  David Schleef  <ds@schleef.org>
35294
35295         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
35296         (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
35297         (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
35298         Fix negotiation.  Add a bufferalloc function for the sink pad,
35299         and generally clean up some of the code.
35300
35301 2004-01-12  Julien MOUTTE <julien@moutte.net>
35302
35303         * gst-libs/gst/colorbalance/colorbalancechannel.c:
35304         (gst_color_balance_channel_dispose): Adding safety check in dispose
35305         method.
35306         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
35307         (gst_xvimagesink_xcontext_clear),
35308         (gst_xvimagesink_interface_supported),
35309         (gst_xvimagesink_colorbalance_list_channels),
35310         (gst_xvimagesink_colorbalance_set_value),
35311         (gst_xvimagesink_colorbalance_get_value),
35312         (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
35313         Adding colorbalance interface support to set XV parameters such as
35314         HUE, BRIGHTNESS, CONTRAST, SATURATION.
35315         * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
35316         interface.
35317
35318 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
35319
35320         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
35321         (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
35322         (gst_audio_convert_init), (gst_audio_convert_set_property),
35323         (gst_audio_convert_get_property), (gst_audio_convert_chain),
35324         (gst_audio_convert_link),
35325         (gst_audio_convert_buffer_to_default_format),
35326         (gst_audio_convert_buffer_from_default_format), (plugin_init):
35327           - implement _getcaps and use it
35328           - improve linking
35329           - remove float caps since no float conversion is actually done
35330           - remove properties and arguments that were to be used for rate
35331             conversion
35332
35333 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
35334
35335         * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
35336         (gst_audio_structure_set_int):
35337         * gst-libs/gst/audio/audio.h:
35338           add helper functions for _getcaps matching the standard audio
35339           templates
35340
35341 2004-01-12  David Schleef  <ds@schleef.org>
35342
35343         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
35344         Test that pad is negotiated before getting its caps.
35345
35346 2004-01-12  Julien MOUTTE <julien@moutte.net>
35347
35348         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
35349         analyzing the pads of an element the bin is mostly in READY state so
35350         no caps were negotiated. This helper function needs to work with
35351         _get_caps directly then. I was not freeing them though, added that to
35352         fix the mem leak.
35353
35354 2004-01-12  Julien MOUTTE <julien@moutte.net>
35355
35356         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
35357         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
35358         direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
35359         than the free_func.
35360
35361 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
35362
35363         * sys/oss/gstossaudio.c: (plugin_init):
35364         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
35365         * sys/oss/gstosselement.h:
35366           make an oss debugging category
35367           make failure more descriptive
35368
35369 2004-01-11  David Schleef  <ds@schleef.org>
35370
35371         * ext/ffmpeg/gstffmpeg.c:
35372         * ext/ffmpeg/gstffmpegcodecmap.c:
35373         * ext/ffmpeg/gstffmpegdec.c:
35374         * ext/ffmpeg/gstffmpegenc.c:
35375         * ext/ffmpeg/gstffmpegprotocol.c:
35376         * ext/gdk_pixbuf/gstgdkanimation.c:
35377         * ext/jpeg/gstjpeg.c:
35378         * ext/libpng/gstpng.c:
35379         * ext/mpeg2dec/perftest.c:
35380         * ext/speex/gstspeex.c:
35381         * gst-libs/gst/resample/dtos.c:
35382         * gst/intfloat/gstintfloatconvert.c:
35383         * gst/oneton/gstoneton.c:
35384         * gst/rtjpeg/RTjpeg.c:
35385         * gst/rtp/gstrtp.c:
35386         * sys/dxr3/dxr3init.c:
35387         * sys/glsink/gstgl_nvimage.c:
35388         * sys/glsink/gstgl_pdrimage.c:
35389         * sys/glsink/gstglsink.c:
35390         * testsuite/gst-lint:
35391         Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
35392
35393 2004-01-11  David Schleef  <ds@schleef.org>
35394
35395         * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
35396         * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
35397         * ext/gdk_pixbuf/gstgdkanimation.c:
35398         (gst_gdk_animation_iter_create_pixbuf):
35399         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
35400         (gst_gdk_pixbuf_chain):
35401         * ext/gdk_pixbuf/gstgdkpixbuf.h:
35402         * ext/jack/gstjack.c: (gst_jack_change_state):
35403         * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
35404         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
35405         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
35406         * gst/videofilter/gstvideofilter.c:
35407         (gst_videofilter_set_output_size):
35408         Remove all usage of gst_pad_get_caps(), and replace it with
35409         gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
35410
35411 2004-01-11  David Schleef  <ds@schleef.org>
35412
35413         * configure.ac:
35414         * ext/Makefile.am: Fixes to make ext/libcaca compile.
35415         * ext/divx/gstdivxdec.c:
35416         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
35417         (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
35418         handle images that span multiple buffers.  Now work with both
35419         filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
35420         * ext/gdk_pixbuf/gstgdkpixbuf.h:
35421         * ext/libcaca/gstcacasink.h: Fixes needed due to recent
35422         video/video.h changes
35423         * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
35424         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
35425         (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
35426         of GstData free function.
35427         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
35428         same.
35429
35430 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35431
35432         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
35433         (gst_v4l2element_dispose), (gst_v4l2element_set_property),
35434         (gst_v4l2element_get_property):
35435         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
35436           add norm, channel and frequency properties.
35437         * sys/v4l2/gstv4l2tuner.c:
35438           fixes for tuner interface changes
35439         * sys/v4l2/gstv4l2element.h:
35440         * sys/v4l2/gstv4l2src.c:
35441         * sys/v4l2/gstv4l2src.h:
35442         * sys/v4l2/v4l2src_calls.c:
35443         * sys/v4l2/v4l2src_calls.h:
35444           rework v4l2src to work with saa1734 cards and allow mmaped buffers.
35445
35446 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35447
35448         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
35449         (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
35450         (gst_tuner_channel_changed), (gst_tuner_norm_changed),
35451         (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
35452         * gst-libs/gst/tuner/tuner.h:
35453           GObjects aren't const.
35454           Add find_by_name functions.
35455           Add checks to _changed functions.
35456         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
35457         (gst_v4l_tuner_get_norm):
35458           Fixes for above.
35459
35460 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35461
35462         * gst-libs/gst/video/video.h:
35463           Fix caps template names to be understandable.
35464           Prefix everything with GST_VIDEO.
35465         * ext/aalib/gstaasink.c:
35466         * ext/divx/gstdivxdec.c:
35467         * ext/divx/gstdivxenc.c:
35468         * ext/gdk_pixbuf/gstgdkpixbuf.c:
35469         * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
35470         * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
35471         * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
35472         * ext/libcaca/gstcacasink.c:
35473         * ext/libpng/gstpngenc.c: (raw_caps_factory):
35474         * ext/snapshot/gstsnapshot.c:
35475         * ext/swfdec/gstswfdec.c:
35476         * ext/xvid/gstxviddec.c:
35477         * ext/xvid/gstxvidenc.c:
35478         * gst/chart/gstchart.c:
35479         * gst/deinterlace/gstdeinterlace.c:
35480         * gst/effectv/gsteffectv.c:
35481         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
35482         * gst/goom/gstgoom.c:
35483         * gst/median/gstmedian.c:
35484         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
35485         (gst_monoscope_srcconnect), (gst_monoscope_chain):
35486         * gst/overlay/gstoverlay.c:
35487         * gst/smooth/gstsmooth.c:
35488         * gst/smpte/gstsmpte.c:
35489         * gst/synaesthesia/gstsynaesthesia.c:
35490         * gst/videocrop/gstvideocrop.c:
35491         * gst/videodrop/gstvideodrop.c:
35492         * gst/y4m/gsty4mencode.c:
35493         * sys/qcam/gstqcamsrc.c:
35494         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
35495           Make them work with new video.h file.
35496         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
35497         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
35498         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
35499         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
35500           Make it work with new buffer allocation system.
35501
35502 2004-01-11  Julien MOUTTE  <julien@moutte.net>
35503
35504         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
35505         pad_alloc_buffer implementation to use ->srcpad
35506         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
35507         pad_alloc_buffer implementation to use ->srcpad
35508         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):  Fixing the
35509         pad_alloc_buffer implementation to use ->srcpad
35510         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
35511         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
35512         (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
35513         a reference to everything we need.
35514         * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
35515         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
35516         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
35517         (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
35518         a reference to everything we need.
35519         * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
35520
35521 2004-01-11  David Schleef  <ds@schleef.org>
35522
35523         * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
35524         * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
35525         (gst_fenced_buffer_default_copy): Fix for rename of buffer private
35526         structure members.
35527         * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
35528         value during a resize/renegotiation.
35529         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
35530         gst_pad_alloc_buffer();
35531         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
35532         (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
35533         structure members.
35534         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
35535         Fix for rename of buffer private structure members.
35536         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
35537         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
35538         Fix for rename of buffer private structure members.
35539         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
35540         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
35541         Fix for rename of buffer private structure members.
35542
35543 2004-01-11  Arwed v. Merkatz <v.merkatz@gmx.net>
35544
35545         reviewed by: David Schleef <ds@schleef.org>
35546
35547         * gst/videofilter/Makefile.am:
35548         * gst/videofilter/gstgamma.c: Gamma correction filter.  Modified
35549         from the patch by ds to fit in with recent make_filter changes.
35550
35551 2004-01-11  Julien MOUTTE  <julien@moutte.net>
35552
35553         * configure.ac: Adding examples/switch/Makefile
35554         * examples/Makefile.am: Adding examples/switch
35555         * examples/switch/Makefile.am: Adding switcher example.
35556         * examples/switch/switcher.c: (got_eos), (idle_iterate),
35557         (switch_timer), (main): Adding an example demonstrating switch usage
35558         with 2 videotestsrc showing different patterns.
35559         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
35560         (gst_switch_init): Fixing switch with the new caps system.
35561
35562 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35563
35564         * gst-libs/gst/video/video.h:
35565           Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
35566           They should probably be like
35567           GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
35568
35569 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35570
35571         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
35572         (qtdemux_parse_trak):
35573           fix audio chunk size/timestamp calculation
35574
35575 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35576
35577         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
35578           fix SVQ3 caps
35579
35580 2004-01-11  Steve Baker  <steve@stevebaker.org>
35581
35582         * gst/effectv/gstaging.c: (gst_agingtv_get_type),
35583         (gst_agingtv_base_init), (gst_agingtv_class_init),
35584         (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
35585         (gst_agingtv_set_property), (gst_agingtv_get_property):
35586         Port agingTV to videofilter
35587
35588 2004-01-09  Julien MOUTTE <julien@moutte.net>
35589
35590         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
35591         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
35592
35593 2004-01-09  Julien MOUTTE <julien@moutte.net>
35594
35595         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
35596         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
35597         * gst-libs/gst/xoverlay/xoverlay.c:
35598         (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
35599         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
35600         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
35601         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
35602         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
35603         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
35604         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
35605         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
35606         the bufferalloc_function to replace bufferpools, fixing the XOverlay
35607         interface implementation to handle xid being 0 and fix some bugs
35608         triggered by Benjamin's testcase.
35609         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
35610         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
35611         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
35612         the bufferalloc_function to replace bufferpools, fixing the XOverlay
35613         interface implementation to handle xid being 0 and fix some bugs
35614         triggered by Benjamin's testcase.
35615
35616 2004-01-09  David Schleef  <ds@schleef.org>
35617
35618         * ext/librfb/gstrfbsrc.c:  Hacking.  Added actual decoding and
35619         mouse pointer events.  It works.
35620
35621 2004-01-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35622
35623         * ext/divx/gstdivxenc.c: (gst_divxenc_init):
35624           Use explicit caps - fix capsnego.
35625         * ext/xvid/gstxviddec.c:
35626         * ext/xvid/gstxvidenc.c:
35627           Remove macro-inside-macro which caused compile errors.
35628         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
35629           Error out if it's not a RIFF file. Else we error out without
35630           gst_element_error() which is not good...
35631
35632 2004-01-08  David Schleef  <ds@schleef.org>
35633
35634         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
35635         Fix pad_link function to handle formats that ffmpeg returns
35636         as multiple caps structures.
35637         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
35638         Only complain if source buffer is _smaller_ than expected.
35639         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
35640         (gst_videoscale_handle_src_event): Resize navigation events
35641         when passing them upstream.
35642         * gst/videotestsrc/gstvideotestsrc.c:
35643         * gst/videotestsrc/gstvideotestsrc.h:
35644         * gst/videotestsrc/videotestsrc.c:
35645         * gst/videotestsrc/videotestsrc.h:
35646         Rewrite many of the buffer painting functions to handle odd
35647         sizes (for many formats, size%4!=0 or size%8!=0).  Most have
35648         been verified to work with my video card.
35649         * testsuite/gst-lint:  Add check for elements calling
35650         gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
35651
35652 2004-01-08  David Schleef  <ds@schleef.org>
35653
35654         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
35655         (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
35656
35657 2004-01-08  Julien MOUTTE  <julien@moutte.net>
35658
35659         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
35660         configure event is not emiting the desired size signal. That fixes
35661         aspect ratio issues with gst-player.
35662
35663 2004-01-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35664
35665         * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
35666           Fix capsnego.
35667
35668 2004-01-08  Julien MOUTTE  <julien@moutte.net>
35669
35670         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
35671         public method to fire size signal.
35672
35673 2004-01-07  Julien MOUTTE  <julien@moutte.net>
35674
35675         * examples/gstplay/Makefile.am: Adding the interface library.
35676         * gst-libs/gst/play/Makefile.am: Adding the interface library.
35677         * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to         the XOverlay size signal instead of GstVideoSink.
35678         * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
35679         GST_IS_X_OVERLAY before signal connect.
35680         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
35681         Removing the have_video_size signal.
35682         * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
35683         and associated public method.
35684         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
35685         (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
35686         signal.
35687         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
35688         (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
35689         signal.
35690         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
35691         Using XOverlay public method to fire size signal.
35692
35693 2004-01-07  David Schleef  <ds@schleef.org>
35694
35695         * gst/videofilter/Makefile.am:
35696         * gst/videofilter/gstvideotemplate.c:
35697         * gst/videofilter/make_filter:
35698         Create gstvideoexample.c in a srcdir!=builddir friendly way.
35699         Convert make_filter to /bin/sh script.
35700
35701 2004-01-07  Thomas Vander Stichele  <thomas at apestaart dot org>
35702
35703         * gst/modplug/gstmodplug.cc: fix element description
35704
35705 2004-01-07  Julien MOUTTE  <julien@moutte.net>
35706
35707         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
35708         (got_video_size): Adding some new lines in g_print calls.
35709         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
35710         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
35711         (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
35712         (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
35713         (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
35714         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
35715         Complete code review, reverting some stuff i disagree with, adding
35716         some fixes : time synchronization on invalid timestamps, renegotiation
35717         of private window.
35718         * sys/ximage/ximagesink.h:
35719         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
35720         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
35721         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
35722         (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
35723         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
35724         (gst_xvimagesink_buffer_new),
35725         (gst_xvimagesink_navigation_send_event),
35726         (gst_xvimagesink_set_xwindow_id),
35727         (gst_xvimagesink_get_desired_size),
35728         (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
35729         stuff i disagree with, adding some fixes : Renegotiation of private
35730         window, implementing get_desired_size.
35731
35732 2004-01-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35733
35734         * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
35735         (gst_afsink_handle_event):
35736         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
35737         * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
35738         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
35739         * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
35740         * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
35741           Fix for instantiate-test (see core). Also remove dead code from
35742           jpegenc (which still needs fixing, but that's lower on my TODO
35743           list...).
35744         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
35745           Never return NULL as caps.
35746
35747 2004-01-07  David Schleef  <ds@schleef.org>
35748
35749         * configure.ac:
35750         * ext/Makefile.am:
35751         * ext/librfb/Makefile.am:
35752         * ext/librfb/gstrfbsrc.c:
35753         New source plugin based on librfb-0.1.  RFB (remote framebuffer)
35754         is the protocol used by VNC.
35755
35756 2004-01-07  David Schleef  <ds@schleef.org>
35757
35758         * gst/videofilter/gstvideotemplate.c:
35759         * gst/videofilter/gstvideotemplate.h:
35760         * gst/videofilter/make_filter:
35761         Merge videotemplate header into source file.
35762         * gst/effectv/Makefile.am:
35763         * gst/effectv/gsteffectv.c: (plugin_init):
35764         * gst/effectv/gstwarp.c:
35765         Make warpTV a subclass of videofilter.
35766
35767 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35768
35769         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
35770           Add guard against invalid utf-8 conversions in mad. Just in case.
35771
35772 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35773
35774         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
35775           Fix for bug shown by poisoning
35776
35777 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35778
35779         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
35780         (gst_v4lmjpegsrc_buffer_free):
35781         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
35782         (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
35783         (gst_v4lsrc_buffer_free):
35784           Fix for removed bufferpools.
35785
35786 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
35787
35788         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
35789         Fix caps negotiation.
35790
35791         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
35792         (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
35793         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
35794         (dvdnavsrc_event):
35795         * ext/mpeg2dec/gstmpeg2dec.c:
35796         * gst-libs/gst/navigation/navigation.c:
35797         (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
35798         * gst-libs/gst/navigation/navigation.h:
35799         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
35800         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
35801         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
35802         Super-simple first version of mouse and keyboard events. Clicking
35803         on a DVD menu now works, although it may not take you where you
35804         expected.
35805
35806         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
35807         * gst/videotestsrc/gstvideotestsrc.c:
35808         (gst_videotestsrc_src_fixate):
35809         These fixate functions were broken - they never actually
35810         fixated :)
35811
35812 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35813
35814         * ext/shout/gstshout.c: (gst_icecastsend_base_init),
35815         (gst_icecastsend_init):
35816           fix for new caps system.
35817         * gst-libs/gst/mixer/mixertrack.h:
35818         * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
35819           Add 'master track' flag (for tools like ACME that only want to
35820           change the main volume).
35821
35822 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
35823
35824         * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
35825         (gst_xvid_csp_to_caps):
35826         * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
35827         * ext/xvid/gstxvidenc.c:
35828         ifdef out ARGB type when it isn't available
35829         in xvidcore 1.0.0beta2
35830
35831 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35832
35833         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
35834           When we have received a new SCR right in the first buffer after
35835           a seek (so in the same cycle that handles the discont), we should
35836           handle the buffer instead of unreffing it, else we lose data.
35837
35838 2004-01-06  Iain <iain@prettypeople.org>
35839
35840         * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
35841           buffer-frames caps too.
35842
35843         * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
35844           caps that we need, don't destroy them all and rebuild them. And when
35845           creating src pads, use the src pad template rather than the sink...
35846
35847 2004-01-05  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35848
35849         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
35850           Add pad to element *after* setting functions such as event handler.
35851           Without this, the scheduler (opt) will link pads, set the event
35852           handler from the default event function (dispatcher in gstpad.c)
35853           and *after* that, we will set our own event function, which will
35854           thus never be used (and thus mpegdemux doesn't handle events).
35855
35856 2004-01-04  David Schleef  <ds@schleef.org>
35857
35858         Fix the fixate functions to handle new prototype:
35859         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
35860         * gst/videotestsrc/gstvideotestsrc.c:
35861         (gst_videotestsrc_src_fixate):
35862         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
35863         * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
35864         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
35865
35866 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35867
35868         * sys/ximage/ximagesink.h:
35869         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
35870         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
35871         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
35872         (gst_ximagesink_xoverlay_init):
35873           assorted fixes to make (re)embedding work
35874         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
35875         (gst_ximagesink_get_desired_size):
35876           implement desired size additions to XOverlay
35877
35878 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35879
35880         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
35881         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
35882         (gst_x_overlay_got_desired_size):
35883         * gst-libs/gst/xoverlay/xoverlay.h:
35884           Add optional "desired size" signal and querying.
35885
35886 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35887
35888         * gst/matroska/matroska-demux.c:
35889         (gst_matroska_demux_parse_blockgroup):
35890           Fix EBML-laced block parsing. Diffs are relative to previous
35891           lace, not the first lace. Thanks to Mosu from the Matroska
35892           team for detecting this.
35893         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
35894         (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
35895         (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
35896         (gst_wavparse_change_state):
35897         * gst/wavparse/gstwavparse.h:
35898           Quickfix for capsnego.
35899
35900 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35901
35902         * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
35903           Fix indenting, fix pad creation.
35904
35905 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35906
35907         * ext/xvid/gstxviddec.c: (gst_xviddec_init),
35908         (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
35909         (gst_xviddec_sink_link):
35910           Implement src_getcaps() so proper size caps is negotiated.
35911
35912 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35913
35914         * ext/flac/gstflacdec.c: (gst_flacdec_loop):
35915           Finish flac decoder on EOS. See #116178.
35916
35917 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35918
35919         * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
35920         (gst_matroska_demux_add_stream):
35921         * gst/matroska/matroska-ids.h:
35922           Add getcaps() function to fix capsnego...
35923
35924 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35925
35926         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
35927         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
35928         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
35929           Fix more integer overflows. Again, see #126967.
35930
35931 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35932
35933         * ext/mpeg2dec/gstmpeg2dec.c:
35934           Add support for mpeg2dec-0.4.0 (released two weeks ago). See
35935           #130416.
35936
35937 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35938
35939         * configure.ac:
35940         * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
35941         (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
35942         * ext/xvid/gstxvid.h:
35943         * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
35944         (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
35945         (gst_xviddec_src_link), (gst_xviddec_sink_link),
35946         (gst_xviddec_change_state):
35947         * ext/xvid/gstxviddec.h:
35948         * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
35949         (gst_xvidenc_base_init), (gst_xvidenc_class_init),
35950         (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
35951         (gst_xvidenc_link), (gst_xvidenc_set_property),
35952         (gst_xvidenc_get_property), (gst_xvidenc_change_state):
35953         * ext/xvid/gstxvidenc.h:
35954           Update xvid plugin to latest xvid (1.0.0-beta3) API.
35955
35956 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35957
35958         * gst/rtp/rtp-packet.c:
35959           Add sys/types.h include, since OS X doesn't define in_addr_t
35960           in netinet/in.h, like it does on Linux (see #129600).
35961
35962 2004-01-03  Thomas Canty <tommydal@optushome.com.au>
35963
35964         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
35965
35966         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
35967           Correct logic of dispose function (see #129306).
35968
35969 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35970
35971         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
35972         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
35973         (gst_mpeg_parse_init):
35974         * gst/mpegstream/gstmpegparse.h:
35975           Remove clock (which was never provided, i.e. dead code), and
35976           also fix integer overflows at high PTS values (see #126967).
35977
35978 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35979
35980         * ext/flac/gstflacdec.c:
35981         * ext/libpng/gstpngenc.h:
35982         * ext/mikmod/gstmikmod.h:
35983           OS X fixes (see #126628).
35984
35985 2004-01-02  David Schleef  <ds@schleef.org>
35986
35987         * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
35988         (gst_alsa_src_base_init): Remove bogus "src" request pad.
35989         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
35990         (gst_mpeg_parse_class_init): Move pad template registration
35991         to class_init, since the derived class (mpegdemux) doesn't
35992         want them.
35993
35994 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35995
35996         * sys/ximage/Makefile.am:
35997         * sys/xvideo/Makefile.am:
35998         * sys/xvimage/Makefile.am:
35999           Move interface libs from LDFLAGS to LIBADD, fix relocation errors
36000           after installation (see #127664).
36001
36002 2004-01-02  David Schleef  <ds@schleef.org>
36003
36004         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
36005         (gst_ffmpegenc_connect):  Negotiation fixes.
36006         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
36007         Remove inappropriate gst_caps_free().
36008         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
36009         Reenable Ronald's internal resize code, since the core handles
36010         it correctly now.
36011
36012 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36013
36014         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
36015         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
36016         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
36017           Fix pad template stuff.
36018
36019 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36020
36021         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
36022         * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
36023           fix signed integer reading/writing.
36024
36025 2004-01-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36026
36027         * ext/alsa/README:
36028           Remove outdated document
36029
36030 2004-01-03  Jan Schmidt  <thaytan@mad.scientist.com>
36031
36032         * gst/cutter/gstcutter.c: (gst_cutter_init):
36033           src pad was being created twice - oops.
36034
36035 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36036
36037         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
36038           Comment out internal resize. It doesn't handle the resulting
36039           XEvent internally, does another try_set_caps() which leads to
36040           a really nice loop.
36041           Real fix will come when Julien and Dave are awake. ;).
36042
36043 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36044
36045         * ext/mpeg2enc/gstmpeg2enc.cc:
36046           fix const/nonconst compile issue.
36047
36048 2004-01-02  David Schleef  <ds@schleef.org>
36049
36050         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
36051         (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
36052         Add fixate function and a check for bad formats.
36053
36054 2004-01-01  David Schleef  <ds@schleef.org>
36055
36056         Negotiation fixes:
36057         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
36058         (gst_audiofilter_init):
36059         * gst/debug/efence.c: (gst_efence_init):
36060         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
36061         (gst_deinterlace_init):
36062         * gst/volume/gstvolume.c: (volume_connect):
36063
36064 2004-01-01  David Schleef  <ds@schleef.org>
36065
36066         Convert elements to use gst_pad_use_explicit_caps() where
36067         appropriate:
36068         * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
36069         * ext/audiofile/gstafparse.c: (gst_afparse_init),
36070         (gst_afparse_open_file):
36071         * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
36072         (gst_afsrc_open_file):
36073         * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
36074         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
36075         (gst_ffmpegdec_chain):
36076         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
36077         * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
36078         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
36079         (gst_gdk_pixbuf_chain):
36080         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
36081         (gst_jpegdec_chain):
36082         * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
36083         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
36084         (gst_mikmod_negotiate):
36085         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
36086         (gst_mpeg2dec_negotiate_format):
36087         * ext/mpeg2enc/gstmpeg2enc.cc:
36088         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
36089         * ext/speex/gstspeexdec.c: (gst_speexdec_init),
36090         (gst_speexdec_sinkconnect):
36091         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
36092         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
36093         (gst_vorbisfile_new_link):
36094         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
36095         (gst_ac3parse_chain):
36096         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
36097         (gst_asf_demux_setup_pad):
36098         * gst/auparse/gstauparse.c: (gst_auparse_init),
36099         (gst_auparse_chain):
36100         * gst/id3/gstid3types.c: (gst_id3types_loop):
36101         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
36102         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
36103         (mp1videoparse_parse_seq):
36104         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
36105         (bpf_from_header):
36106         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
36107         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
36108         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
36109         (gst_mpeg_parse_send_data):
36110         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
36111         (gst_qtdemux_add_stream):
36112         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
36113         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
36114         (gst_wavparse_parse_fmt):
36115
36116 2004-01-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36117
36118         * configure.ac:
36119           Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
36120           1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
36121           it therefore uses the wrong include paths. Too bad... Note
36122           that 1.6.1.93 is not release yet. ;).
36123           Also add a check for mplex, which is now using the lib'ified
36124           mplex from mjpegtools, too.
36125         * ext/ffmpeg/gstffmpegcodecmap.c:
36126           Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
36127           issues. I don't think ffmpeg handles 3ivx correctly, so this
36128           probably won't work. But it won't hurt either.
36129         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
36130         (gst_ffmpegdec_chain):
36131         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
36132         (gst_ffmpegenc_chain_audio):
36133           Fix memleak in audio encoding. Close codec if open fails, this
36134           calls the cleanup routines so we can re-use the context.
36135         * ext/mpeg2enc/gstmpeg2enc.cc:
36136           Fix pad template names/types, fix memory issue with getcaps().
36137         * ext/mpeg2enc/gstmpeg2encoder.cc:
36138         * ext/mpeg2enc/gstmpeg2encoder.hh:
36139           Fix compile issue with new caps system (const thingy).
36140         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
36141         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
36142           We read a first frame right on initing, so that we have a caps
36143           when we init the output. This caps is cached in padprivate and
36144           read as first frame.
36145         * ext/mplex/Makefile.am:
36146         * ext/mplex/gstmplex.cc:
36147         * ext/mplex/gstmplex.h:
36148         * ext/mplex/gstmplex.hh:
36149         * ext/mplex/gstmplexibitstream.cc:
36150         * ext/mplex/gstmplexibitstream.hh:
36151         * ext/mplex/gstmplexjob.cc:
36152         * ext/mplex/gstmplexjob.hh:
36153         * ext/mplex/gstmplexoutputstream.cc:
36154         * ext/mplex/gstmplexoutputstream.hh:
36155           We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
36156           had issues, didn't do capsnego, supported only a subset of the
36157           mplex features and required a mplex fork in our local CVS. Plus
36158           that it worked agaist a very old mplex version. Rewriting was
36159           faster than updating it.
36160         * gst-libs/ext/Makefile.am:
36161         * gst-libs/ext/mplex/INSTRUCT:
36162         * gst-libs/ext/mplex/Makefile.am:
36163         * gst-libs/ext/mplex/README:
36164         * gst-libs/ext/mplex/TODO:
36165         * gst-libs/ext/mplex/ac3strm_in.cc:
36166         * gst-libs/ext/mplex/audiostrm.hh:
36167         * gst-libs/ext/mplex/audiostrm_out.cc:
36168         * gst-libs/ext/mplex/aunit.hh:
36169         * gst-libs/ext/mplex/bits.cc:
36170         * gst-libs/ext/mplex/bits.hh:
36171         * gst-libs/ext/mplex/buffer.cc:
36172         * gst-libs/ext/mplex/buffer.hh:
36173         * gst-libs/ext/mplex/fastintfns.h:
36174         * gst-libs/ext/mplex/format_codes.h:
36175         * gst-libs/ext/mplex/inputstrm.cc:
36176         * gst-libs/ext/mplex/inputstrm.hh:
36177         * gst-libs/ext/mplex/lpcmstrm_in.cc:
36178         * gst-libs/ext/mplex/mjpeg_logging.cc:
36179         * gst-libs/ext/mplex/mjpeg_logging.h:
36180         * gst-libs/ext/mplex/mjpeg_types.h:
36181         * gst-libs/ext/mplex/mpastrm_in.cc:
36182         * gst-libs/ext/mplex/mpegconsts.cc:
36183         * gst-libs/ext/mplex/mpegconsts.h:
36184         * gst-libs/ext/mplex/mplexconsts.hh:
36185         * gst-libs/ext/mplex/multplex.cc:
36186         * gst-libs/ext/mplex/outputstream.hh:
36187         * gst-libs/ext/mplex/padstrm.cc:
36188         * gst-libs/ext/mplex/padstrm.hh:
36189         * gst-libs/ext/mplex/stillsstream.cc:
36190         * gst-libs/ext/mplex/stillsstream.hh:
36191         * gst-libs/ext/mplex/systems.cc:
36192         * gst-libs/ext/mplex/systems.hh:
36193         * gst-libs/ext/mplex/vector.cc:
36194         * gst-libs/ext/mplex/vector.hh:
36195         * gst-libs/ext/mplex/videostrm.hh:
36196         * gst-libs/ext/mplex/videostrm_in.cc:
36197         * gst-libs/ext/mplex/videostrm_out.cc:
36198         * gst-libs/ext/mplex/yuv4mpeg.cc:
36199         * gst-libs/ext/mplex/yuv4mpeg.h:
36200         * gst-libs/ext/mplex/yuv4mpeg_intern.h:
36201         * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
36202           We don't fork mjpegtools' mplex in our CVS anymore.
36203         * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
36204         (gst_avi_demux_add_stream):
36205         * gst/avi/gstavidemux.h:
36206           Add getcaps() function for proper caps nego. This makes some
36207           parts of AVI playback/reading work.
36208         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
36209           Resize window on new capsnego. This is probably wrong, but
36210           I'm still committing it because with current capsnego, the
36211           first successfull capsnego is auto-fixated, therefore rounded
36212           down to the lowest values in the caps. this results in a 16x16
36213           XWindow that is not reized when real capsnego finishes.
36214           Dave, I see more cases of this, do you know a proper solution?
36215         * tools/gst-launch-ext.in:
36216           Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
36217
36218 2003-12-31  David Schleef  <ds@schleef.org>
36219
36220         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
36221         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
36222           Change gst_pad_proxy_link() to gst_pad_try_set_caps()
36223
36224 2003-12-30  David Schleef  <ds@schleef.org>
36225
36226         * ext/ffmpeg/gstffmpegcolorspace.c:
36227         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
36228         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
36229         (gst_ffmpegcsp_chain): Negotiation fixes
36230         * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
36231         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
36232         (gst_audio_convert_link), (gst_audio_convert_channels):
36233         * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
36234         (gst_audioscale_link), (gst_audioscale_get_buffer),
36235         (gst_audioscale_chain): Negotiation fixes
36236         * gst/audioscale/gstaudioscale.h:
36237         * gst/videofilter/gstvideofilter.c:
36238         (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
36239         (gst_videofilter_link), (gst_videofilter_init),
36240         (gst_videofilter_set_output_size), (gst_videofilter_setup),
36241         (gst_videofilter_find_format_by_structure):
36242         * gst/videofilter/gstvideofilter.h: Negotiation fixes
36243         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
36244         (gst_videoscale_link):
36245         * gst/videoscale/videoscale.c: (videoscale_get_structure),
36246         (videoscale_find_by_structure), (gst_videoscale_setup):
36247         * gst/videoscale/videoscale.h: Negotiation fixes
36248         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
36249         (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
36250         function, restrict resizing to a multiple of 4 (hack until
36251         everyone supports odd sizes correctly).
36252
36253 2003-12-29  Colin Walters  <walters@verbum.org>
36254
36255         * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
36256         signed.
36257
36258 2003-12-30  Jan Schmidt <thaytan@mad.scientist.com>
36259
36260         * ext/sndfile/gstsf.c: (gst_sf_loop):
36261           Fix warning about discarding const qualifier
36262
36263 2003-12-27  Jeremy Simon   <jesimon@libertysurf.fr>
36264
36265         * gst/cutter/gstcutter.c:
36266         * gst/videoscale/gstvideoscale.c:
36267         * gst/volenv/gstvolenv.c:
36268         * gst-libs/gst/audio/audio.c:
36269         * gst-libs/gst/video/video.c:
36270           Fix warnings
36271
36272 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36273
36274         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
36275           Don't send ALSA debugging to stderr.
36276         * ext/alsa/gstalsa.h:
36277           Use GST_WARNING instead of g_warning when ALSA functions fail.
36278
36279 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36280
36281         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
36282           Free XVAdapterInfo correctly.
36283
36284 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36285
36286         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
36287         (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
36288           Make id3tag use correct caps nego.
36289
36290 2003-12-27  Amaury Jacquot <sxpert@esitcom.org>
36291
36292         * ext/ivorbis/vorbis.c:
36293         * ext/ivorbis/vorbisenc.h:
36294         * ext/ivorbis/vorbisfile.c:
36295           Modify so that it uses the new caps things
36296
36297 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36298
36299         * testsuite/spider/spider1.c: (main):
36300         * testsuite/spider/spider2.c: (main):
36301         * testsuite/spider/spider3.c: (main):
36302           Make tests compile again. They probably don't work.
36303
36304 2003-12-24  Colin Walters  <walters@verbum.org>
36305
36306         * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
36307         we can't fixate the caps anymore.
36308
36309 2003-12-23  David Schleef  <ds@schleef.org>
36310
36311         * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
36312         * sys/oss/gstosssink.c: (gst_osssink_init),
36313         (gst_osssink_sink_fixate): Add fixate function.
36314
36315 2003-12-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36316
36317         * ext/ffmpeg/gstffmpegcodecmap.c:
36318         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
36319         (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
36320         (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
36321         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
36322         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
36323         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
36324         (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
36325           fix typo in RGB masks, and move back to "old" colorspace
36326           capsnego code until whoever wrote this new crap has actually
36327           tested it so that it works.
36328           And yes, this works, keep it that way please.
36329
36330 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36331
36332         * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
36333         (gst_divxdec_init), (gst_divxdec_negotiate):
36334         * ext/divx/gstdivxdec.h:
36335         * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
36336         (gst_divxenc_init):
36337         * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
36338         (gst_faac_sinkconnect), (gst_faac_srcconnect):
36339         * ext/mpeg2enc/gstmpeg2enc.cc:
36340         * ext/mpeg2enc/gstmpeg2encoder.cc:
36341         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
36342         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
36343         (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
36344         * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
36345         (dxr3spusink_init):
36346         * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
36347         (dxr3videosink_init):
36348           Fix caps breakage after Dave's caps branch merge.
36349
36350 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36351
36352         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
36353           Fix for 24bpp display.
36354
36355 2003-12-23  Colin Walters  <walters@verbum.org>
36356
36357         * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
36358         a GnomeVFSHandle directly.
36359
36360 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36361
36362         * gst/volume/Makefile.am:
36363         * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
36364         (volume_base_init), (volume_init):
36365           Reenable volume element and fix to work with new caps stuff.
36366           Rhythmbox needs this.
36367
36368 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36369
36370         * gst/qtdemux/qtdemux.c: (plugin_init):
36371           qtdemux requires bytestream
36372
36373 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36374
36375         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
36376           Fix remaining caps handling errors due to CAPS merge.
36377
36378 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36379
36380         * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
36381         (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
36382         (gst_faad_srcconnect):
36383           Port to new caps system.
36384
36385 2003-12-21  Julien MOUTTE  <julien@moutte.net>
36386
36387         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
36388         (got_video_size), (main): using g_print instead of g_message.
36389         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
36390         signal which was not emitted because of "switch" element added to the
36391         bin but not connected. (Removing from the bin temporarily)
36392
36393 2003-12-21  Julien MOUTTE  <julien@moutte.net>
36394
36395         * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
36396         find X development files. I don't understand the previous tests and
36397         they fail on my debian/ppc unstable. This one works.
36398         * examples/gstplay/player.c: (main): Set the pipeline to READY before
36399         exiting.
36400         * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
36401         (gst_play_set_video_sink), (gst_play_set_audio_sink),
36402         (gst_play_set_visualization): Add some safety checks in set_ methods
36403         and state_change. This was throwing some ugly CRITICAL messages when
36404         pipeline was getting disposed and casts were failing.
36405
36406 2003-12-21  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36407
36408         * configure.ac:
36409           Improve mpeg2enc detection. This is for distributions that do
36410           ship mjpegtools, but without mpeg2enc. Also does object check
36411           for might there ever be ABI incompatibility.
36412         * ext/mpeg2enc/gstmpeg2enc.cc:
36413           Add Andrew as second maintainer (he's helping me), and also add
36414           an error if no caps was set. This happens if I pull before capsnego
36415           and that's something I should solve sometime else.
36416         * gst/matroska/matroska-demux.c:
36417         (gst_matroska_demux_parse_blockgroup):
36418           Fix time parsing.
36419         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
36420         (gst_matroska_mux_track_header):
36421           Add caps to templates.
36422         * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
36423           Add mpegversion=1 to prevent confusion with MPEG/AAC.
36424         * gst/mpegstream/gstmpegdemux.c:
36425           Remove layer since it causes warnings about unfixed caps.
36426         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
36427           Fix obvious typo (we error out if caps were set, we should of
36428           course error out if *no* caps were set).
36429         * sys/oss/gstosselement.c: (gst_osselement_convert):
36430           Fix format conversion, we confused bits/bytes.
36431         * sys/oss/gstosselement.h:
36432           Improve documentation for 'bps'.
36433         * sys/v4l/TODO:
36434           Remove stuff about plugins that need removing - this was done
36435           ages ago.
36436         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
36437         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
36438         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
36439         (gst_v4lsrc_src_query):
36440         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
36441         (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
36442           Add get_query_types(), get_formats() and query() functions.
36443
36444 2003-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
36445
36446         * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
36447           * moved CVS to freedesktop.org