tests/check/pipelines/.cvsignore: Add new vorbisdec test to cvsignore.
[platform/upstream/gstreamer.git] / ChangeLog
1 2007-03-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2
3         * tests/check/pipelines/.cvsignore:
4         Add new vorbisdec test to cvsignore.
5
6 2007-03-28  Wim Taymans  <wim@fluendo.com>
7
8         * gst-libs/gst/audio/gstbaseaudiosink.c: (slave_method_get_type),
9         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
10         (gst_base_audio_sink_query), (gst_base_audio_sink_get_time),
11         (gst_base_audio_sink_set_property),
12         (gst_base_audio_sink_get_property), (gst_base_audio_sink_event),
13         (clock_convert_external), (gst_base_audio_sink_resample_slaving),
14         (gst_base_audio_sink_skew_slaving),
15         (gst_base_audio_sink_handle_slaving), (gst_base_audio_sink_render),
16         (gst_base_audio_sink_async_play):
17         * gst-libs/gst/audio/gstbaseaudiosink.h:
18         Store private stuff in GstBaseAudioSinkPrivate.
19         Add configurable clock slaving modes property.
20         API:: GstBaseAudioSink::slave-method property
21         Some more latency reporting tweaks.
22         Added skew based clock slaving correction and make it the default until
23         the resampling method is more robust.
24
25 2007-03-27  Sebastian Dröge  <slomo@circular-chaos.org>
26
27         * gst/audioconvert/audioconvert.c:
28         Add docs to the integer pack functions and implement proper
29         rounding. Before we had rounding towards negative infinity, i.e.
30         always the smaller number was taken. Now we use natural rounding,
31         i.e. rounding to the nearest integer and to the one with the largest
32         absolute value for X.5. The old rounding introduced some minor
33         distortions. Fixes #420079
34         * tests/check/elements/audioconvert.c: (GST_START_TEST):
35         Fix one unit test that assumed the old rounding and added unit tests
36         for checking signed/unsigned int16 <-> signed/unsigned int16 with
37         depth 8, one for signed int16 <-> unsigned int16 and one for the new
38         rounding from signed int32 to signed/unsigned int16.
39
40 2007-03-27  Michael Smith  <msmith@fluendo.com>
41
42         * gst/audioconvert/gstaudioconvert.c: (strip_width_64),
43         (gst_audio_convert_transform_caps):
44           Fix typo in debug line introduced recently, as pointed out on irc.
45
46 2007-03-27  Tim-Philipp Müller  <tim at centricular dot net>
47
48         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
49         * tests/check/libs/tag.c: (GST_START_TEST):
50           Make sure we parse floating-point numbers in vorbis comments
51           correctly with either '.' or ',' as separator, no matter what
52           the current locale is. Add unit test for this too.
53
54 2007-03-26  Tim-Philipp Müller  <tim at centricular dot net>
55
56         Patch by: René Stadler  <mail at renestadler de>
57
58         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_to_vorbis_comments):
59           When writing out floating-point numbers to vorbis comment tags, always
60           use the same character as separator no matter what the current locale is
61           (fixes #423051).
62
63         * tests/check/libs/tag.c: (GST_START_TEST):
64           Add unit tests for replaygain tags in vorbis comments (closes #423055).
65
66 2007-03-26  Thomas Vander Stichele  <thomas at apestaart dot org>
67
68         * ext/vorbis/vorbisdec.c (vorbis_dec_push_forward,
69           vorbis_handle_data_packet):
70           Correctly set DURATION to generate a timestamp-continuous stream.
71           One bug left at the end; see
72           ihttp://bugzilla.gnome.org/show_bug.cgi?id=423086
73         * tests/check/Makefile.am:
74         * tests/check/pipelines/vorbisenc.c (GST_START_TEST):
75           Add a test to check this.  Without the above patch this test fails.
76
77 2007-03-26  Jan Schmidt  <thaytan@mad.scientist.com>
78
79         * gst-libs/gst/rtp/Makefile.am:
80         The base audio payloader uses GstAdapter - we need GST_BASE_LIBS.
81
82 2007-03-23  Michael Smith  <msmith@fluendo.com>
83
84         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps),
85         (gst_video_rate_reset), (gst_video_rate_chain):
86           If videorate changes caps, we can no longer use the old buffer
87           (which may have a different size, incompatible with our caps).
88           So don't do that; just duplicate the new frame more times.
89
90 2007-03-22  Jan Schmidt  <thaytan@mad.scientist.com>
91
92         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
93         Remove playbin's override of the set_clock vmethod. It's irrelevant
94         after Wim's commit on the 19th.
95
96 2007-03-22  Wim Taymans  <wim@fluendo.com>
97
98         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_size),
99         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
100         * ext/gnomevfs/gstgnomevfssrc.h:
101         Don't cache file sizes. Fixes #341078.
102
103 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
104
105         * gst/playback/gstplaybin.c: (add_sink):
106           Use GST_PTR_FORMAT to log caps. 
107
108 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
109
110         Patch by: Young-Ho Cha <ganadist at chollian net>
111
112         * gst/subparse/samiparse.c: (handle_start_font):
113           Special-case some more colour names that pango doesn't handle by
114           default. Fixes #420578.
115
116 2007-03-20  Michael Smith  <msmith@fluendo.com>
117
118         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
119           If we get a zero-sized input buffer, don't pass it to libvorbis, as
120           that marks EOS internally. After that, libvorbis will buffer all
121           input data, and encode none of it, eventually leading to memory
122           exhaustion.
123
124 2007-03-19  Wim Taymans  <wim@fluendo.com>
125
126         * gst/playback/gstdecodebin.c: (remove_fakesink):
127         Don't post STATE_DIRTY anymore.
128
129         * gst/playback/gstplaybin.c: (add_sink), (gst_play_bin_send_event),
130         (gst_play_bin_change_state):
131         Remove stream_time reset in seek handling, core does that now.
132         Disable clocking for live pipelines by forcing a NULL clock to the
133         complete pipeline, core is too smart now for our previous hack.
134         We can always autoplug in PAUSED now.
135
136 2007-03-17  David Schleef  <ds@schleef.org>
137
138         * REQUIREMENTS:  Update this file, change the formatting to make
139         it more consistent, plus more machine readable.
140
141 2007-03-16  Michael Smith  <msmith@fluendo.com>
142
143         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
144         (strip_width_64), (append_with_other_format):
145           Previous fix was too simplistic, and broke the tests. Use a better
146           approach; only strip 64 from widths for integer audio.
147
148 2007-03-16  Michael Smith  <msmith@fluendo.com>
149
150         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
151         (gst_audio_convert_transform_caps):
152           We don't support 64 bit integer audio, so don't try to claim we can.
153           Stops us producing caps don't match our template caps.
154           Update comments.
155
156 2007-03-15  Michael Smith  <msmith@fluendo.com>
157
158         * gst/audioresample/gstaudioresample.c:
159         (audioresample_check_discont), (audioresample_transform):
160           Don't trigger discontinuities for very small imperfections; a filter
161           flush will sound bad, and many plugins have rounding errors leading
162           to these.
163
164 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
165
166         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
167         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
168         Add min-ptime property to RTP base audio payloader. Patch by
169         olivier.crete@collabora.co.uk.
170         Fixes #415001
171
172         Indentation/whitespace/documentation fixes.
173
174 2007-03-14  Julien MOUTTE  <julien@moutte.net>
175
176         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
177         (audioresample_transform_size), (audioresample_do_output),
178         (audioresample_transform), (audioresample_pushthrough): Handle
179         discontinuous streams.
180         * gst/audioresample/gstaudioresample.h:
181         * tests/check/elements/audioresample.c:
182         (test_discont_stream_instance), (GST_START_TEST),
183         (audioresample_suite): Add a test for discontinuous streams.
184         * win32/common/config.h: Updated.
185
186 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
187
188         * po/af.po:
189         * po/az.po:
190         * po/cs.po:
191         * po/en_GB.po:
192         * po/it.po:
193         * po/nb.po:
194         * po/nl.po:
195         * po/or.po:
196         * po/sq.po:
197         * po/sr.po:
198         * po/sv.po:
199         * po/uk.po:
200         * po/vi.po:
201           Update translations from translation project.
202
203 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
204
205         * gst/audioresample/debug.h:
206         * gst/audioresample/resample.c: (resample_init):
207           Since I really am not interested in a debug line for each sample
208           being processed, move the library's debugging to its own category,
209           libaudioresample
210
211 2007-03-13  Michael Smith  <msmith@fluendo.com>
212
213         * ext/theora/theoradec.c: (theora_handle_type_packet):
214           Since the plugin doesn't support anything other than 4:2:0 right
215           now, post an error and fail if we get something else. Won't matter
216           until libtheora supports the other pixel formats, but hopefully
217           that'll be soon...
218
219 2007-03-10  Sebastien Moutte  <sebastien@moutte.net>
220
221         * gst-libs/gst/audio/gstbaseaudiosink.c:(gst_base_audio_sink_render):
222         Use gst_guint64_to_gdouble for conversion.
223         * win32/MANIFEST:
224         Add new files to the win32 MANIFEST.
225         * win32/common/libgstaudio.def:
226         * win32/common/libgstpbutils.def:
227         Add new exported functions.
228         * win32/vs6/gst_plugins_base.dsw:
229         * win32/vs6/libgstdecodebin.dsp:
230         * win32/vs6/libgstplaybin.dsp:
231         Change the link to libgstpbutils.lib.
232         * win32/vs6/libgstdecodebin2.dsp:
233         Add a new project for decodebin2.
234         * win32/vs6/libgstpbutils.dsp:
235         Add a new project for pbutils.
236
237 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
238
239         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
240           Also accept partial dates with only year and month,
241           like 1999-12-00 (fixes #410396 even more).
242
243         * tests/check/libs/tag.c: (GST_START_TEST):
244           Add unit test for the above.
245
246 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
247
248         * tests/check/elements/subparse.c: (GST_START_TEST),
249         (subparse_suite):
250           Add unit test for MPL2 subtitle format (#413799).
251
252 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
253
254         Patch by: Kamil Pawlowski  <kamilpe gmail com>
255
256         * gst/subparse/Makefile.am:
257         * gst/subparse/gstsubparse.c:
258         (gst_sub_parse_data_format_autodetect),
259         (gst_sub_parse_format_autodetect), (gst_sub_parse_sink_event),
260         (gst_subparse_type_find):
261         * gst/subparse/gstsubparse.h:
262         * gst/subparse/mpl2parse.c: (mpl2_parse_line), (parse_mpl2):
263         * gst/subparse/mpl2parse.h:
264           Add support for MPL2 subtitle format (#413799).
265
266 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
267
268         * configure.ac:
269           We require core CVS for the new buffer metadata copy functions.
270
271 2007-03-09  Wim Taymans  <wim@fluendo.com>
272
273         * gst-libs/gst/tag/gstid3tag.c:
274         Add read support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
275         Fixes #414496.
276
277         Patch by: Alex Lancaster <alexl at users sourceforge net>
278
279 2007-03-09  Wim Taymans  <wim@fluendo.com>
280
281         * ext/libvisual/visual.c: (gst_visual_sink_setcaps),
282         (gst_vis_src_negotiate), (get_buffer), (gst_visual_chain):
283         Improve adapter usage and comments.
284
285 2007-03-09  Wim Taymans  <wim@fluendo.com>
286
287         * ext/pango/gsttextrender.c: (gst_text_render_chain):
288         * ext/vorbis/vorbistag.c: (gst_vorbis_tag_parse_packet):
289         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_copy):
290         Use new metadata copy function.
291
292         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
293         (gst_ffmpegcsp_transform):
294         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform):
295         Basetransform copied the metadata for us.
296
297 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
298
299         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
300         (gst_text_overlay_video_event):
301           Some more logging. Only accept newsegment events in TIME format and
302           send a WARNING message if they are not in TIME format.
303
304         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
305         (gst_sub_parse_init), (gst_sub_parse_src_event), (handle_buffer),
306         (gst_sub_parse_chain), (gst_sub_parse_sink_event):
307         * gst/subparse/gstsubparse.h:
308           No need to allocate GstSegment structure dynamically, just put it
309           into the instance structure; ignore newsegment events in BYTE
310           format and in particular don't let it overwrite our saved TIME
311           segment from the last seek.
312
313 2007-03-09  Michael Smith  <msmith@fluendo.com>
314
315         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find):
316           Replace AC3 typefinder with one that isn't terrible, and actually
317           works usefully.
318
319 2007-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
320
321         * gst/audioconvert/gstaudioconvert.c:
322         (gst_audio_convert_transform):
323           fix error category and translatable string
324           
325
326 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
327
328         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
329         * pkgconfig/gstreamer-plugins-base.pc.in:
330           Fix up utils => pbutils here too.
331
332 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
333
334         * gst/subparse/gstsubparse.c: (handle_buffer):
335           Break out of loop in chain function as soon as possible if we get
336           a non-OK flow return.
337
338 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
339
340         * tests/check/elements/alsa.c: (GST_START_TEST):
341         Unref the mixer if the state change fails too (if the
342         alsa devices are inaccessible, for example)
343
344 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
345
346         * tests/check/Makefile.am:
347         Don't test libvisual elements in the states check, because libvisual
348         seems to leak internally.
349
350         Re-enable the alsa and states tests now that there's new suppressions
351         in gst.supp.
352
353         * tests/check/elements/alsa.c: (GST_START_TEST):
354         Don't leak the alsamixer we instantiated.
355
356 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
357
358         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
359         (gst_ximagesink_change_state), (gst_ximagesink_reset),
360         (gst_ximagesink_finalize):
361         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
362         (gst_xvimagesink_reset), (gst_xvimagesink_finalize):
363         Move some cleanup stuff from the state change handler into a _reset()
364         function that can be called from _finalize(). This ensures that things
365         get freed even if (for some reason) the NULL->READY state transition
366         fails in the parent class.
367         Even if a parent state change fails, process our downward state change
368         logic instead of bailing out early.
369         Free the correct xcontext pointer in ximagesink's xcontext_clear.
370
371 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
372
373         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
374         Extra log line.
375
376         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_init):
377         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_init):
378         Use pango_font_description_set_family_static instead of 
379         pango_font_description_set_family to save a string copy (it was
380         leaking due to the strdup anyway)
381
382         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_finalize):
383         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_finalize):
384         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_finalize):
385         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_finalize):
386         Chain up in finalize.
387
388 2007-03-07  Tim-Philipp Müller  <tim at centricular dot net>
389
390         * gst-libs/gst/interfaces/mixertrack.c:
391         (gst_mixer_track_class_init), (gst_mixer_track_get_property),
392         (gst_mixer_track_set_property):
393           API: add "untranslated-label" property which should be set by
394           implementations at construct time (#414645).
395
396         * ext/alsa/gstalsamixeroptions.c: (gst_alsa_mixer_options_new):
397         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
398           Set "untranslated-label" when constructing mixer track objects.
399
400         * tests/check/elements/alsa.c: (GST_START_TEST), (alsa_suite):
401           Unit test to check the above.
402
403 2007-03-07  Wim Taymans  <wim@fluendo.com>
404
405         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
406         Fix confusing debug message.
407
408 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
409
410         * gst-plugins-base.doap:
411         update doap file with new version
412
413 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
414
415         * configure.ac:
416         Back to CVS
417
418 === release 0.10.12 ===
419
420 2007-03-07  Jan Schmidt <thaytan@mad.scientist.com>
421
422         * configure.ac:
423           releasing 0.10.12, "Zombie Horde"
424
425 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
426
427         * configure.ac:
428         Bump version to 0.10.11.4 pre-release
429
430 2007-03-06  Wim Taymans  <wim@fluendo.com>
431
432         * gst-libs/gst/audio/gstbaseaudiosink.c:
433         (gst_base_audio_sink_async_play):
434         Fix regression that made GStreamer skip the first samples of audio.
435         Fixes #414684.
436
437 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
438
439         * configure.ac:
440         Bump version to 0.10.11.3 pre-release
441
442 2007-03-05  Sebastian Dröge  <slomo@circular-chaos.org>
443
444         * po/POTFILES.in:
445           Update paths for the rename from utils to pbutils to fix the build.
446
447 2007-03-05  Tim-Philipp Müller  <tim at centricular dot net>
448
449         * gst-libs/gst/pbutils/Makefile.am:
450           Change directory to install headers in from gst/utils to gst/pbutils
451           as well.
452
453 2007-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
454
455         * configure.ac:
456         * docs/libs/gst-plugins-base-libs-docs.sgml:
457         * docs/libs/gst-plugins-base-libs-sections.txt:
458         * gst-libs/gst/Makefile.am:
459         * gst-libs/gst/interfaces/mixer.c:
460         * gst-libs/gst/pbutils/Makefile.am:
461         * gst-libs/gst/pbutils/descriptions.c:
462         (gst_pb_utils_get_source_description),
463         (gst_pb_utils_get_sink_description),
464         (gst_pb_utils_get_decoder_description),
465         (gst_pb_utils_get_encoder_description),
466         (gst_pb_utils_get_element_description),
467         (gst_pb_utils_add_codec_description_to_tag_list),
468         (gst_pb_utils_get_codec_description), (gst_pb_utils_list_all):
469         * gst-libs/gst/pbutils/descriptions.h:
470         * gst-libs/gst/pbutils/install-plugins.c:
471         * gst-libs/gst/pbutils/install-plugins.h:
472         * gst-libs/gst/pbutils/missing-plugins.c:
473         (gst_missing_uri_source_message_new),
474         (gst_missing_uri_sink_message_new),
475         (gst_missing_element_message_new),
476         (gst_missing_decoder_message_new),
477         (gst_missing_encoder_message_new),
478         (gst_missing_plugin_message_get_description):
479         * gst-libs/gst/pbutils/missing-plugins.h:
480         * gst-libs/gst/pbutils/pbutils.c: (gst_pb_utils_init):
481         * gst-libs/gst/pbutils/pbutils.h:
482         * gst-libs/gst/utils/Makefile.am:
483         * gst-libs/gst/utils/base-utils.c:
484         * gst-libs/gst/utils/base-utils.h:
485         * gst-libs/gst/utils/descriptions.c:
486         * gst-libs/gst/utils/descriptions.h:
487         * gst-libs/gst/utils/install-plugins.c:
488         * gst-libs/gst/utils/install-plugins.h:
489         * gst-libs/gst/utils/missing-plugins.c:
490         * gst-libs/gst/utils/missing-plugins.h:
491         * gst-plugins-base.spec.in:
492         * gst/playback/Makefile.am:
493         * gst/playback/gstdecodebin.c:
494         * gst/playback/gstdecodebin2.c:
495         * gst/playback/gstplaybasebin.c: (setup_subtitle),
496         (gen_source_element):
497         * gst/playback/gstplaybin.c: (plugin_init):
498         * tests/check/Makefile.am:
499         * tests/check/libs/pbutils.c: (GST_START_TEST),
500         (test_pb_utils_install_plugins_do_callout), (libgstpbutils_suite):
501         * tests/check/libs/utils.c:
502           rename utils to pbutils
503
504 2007-03-02  Jan Schmidt  <thaytan@mad.scientist.com>
505
506         * docs/plugins/Makefile.am:
507         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
508         * docs/plugins/gst-plugins-base-plugins-sections.txt:
509         * docs/plugins/inspect/plugin-decodebin2.xml:
510         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
511         Add documentation for decodebin2 that indicates that the API
512         is still unstable.
513
514 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
515
516         * configure.ac:
517         Update to 0.10.11.2 (0.10.12 pre-release)
518
519 2007-03-01  Wim Taymans  <wim@fluendo.com>
520
521         * gst-libs/gst/audio/gstbaseaudiosink.c:
522         (gst_base_audio_sink_async_play):
523         base time is irrelevant here.
524
525 2007-03-01  Wim Taymans  <wim@fluendo.com>
526
527         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
528         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
529         Improve debugging.
530
531         * gst-libs/gst/audio/gstbaseaudiosink.c:
532         (gst_base_audio_sink_query), (gst_base_audio_sink_event),
533         (gst_base_audio_sink_render), (gst_base_audio_sink_async_play):
534         Improve latency and clock slaving calculations.
535         Improve slave clock calibration.
536
537         * gst-libs/gst/audio/gstringbuffer.c:
538         (gst_ring_buffer_commit_full):
539         When we are asked to render N sample to 0 bytes, return N.
540
541 2007-03-01  Wim Taymans  <wim@fluendo.com>
542
543         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
544         (gst_alsasink_write), (gst_alsasink_reset):
545         * ext/alsa/gstalsasink.h:
546         Remove unused dispose function.
547         Rename lock to not interfere with alsasrc lock.
548
549         * ext/alsa/gstalsasrc.c: (gst_alsasrc_finalize),
550         (gst_alsasrc_class_init), (gst_alsasrc_init), (set_swparams),
551         (gst_alsasrc_read), (gst_alsasrc_reset):
552         * ext/alsa/gstalsasrc.h:
553         Implement finalize function.
554         Use lock to protect alsa access.
555         Implement _reset.
556         Fine tune sw params.
557
558 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
559
560         * configure.ac:
561           Convert to new AG_GST style.
562
563 2007-02-28  Wim Taymans  <wim@fluendo.com>
564
565         Patch by: Ed Catmur <ed at catmur dot co dot uk>
566
567         * gst/playback/gstplaybin.c: (gst_play_bin_vis_unblocked),
568         (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
569         Fix race condition when rapidly switching visualisations in playbin.
570         Fixes #401029.
571
572 2007-02-28  Jan Schmidt  <thaytan@mad.scientist.com>
573
574         * tests/check/Makefile.am:
575         Include local stuff before system installed things in LDFLAGS and
576         CFLAGS.
577
578 2007-02-28  Wim Taymans  <wim@fluendo.com>
579
580         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_sink_activate):
581         Improve debugging.
582
583 2007-02-28  Wim Taymans  <wim@fluendo.com>
584
585         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
586         (gst_v4lsrc_fixate), (gst_v4lsrc_query):
587         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_new):
588         Fix duration and timestamping, taking latency into account.
589         Implement latency query.
590
591 2007-02-28  Wim Taymans  <wim@fluendo.com>
592
593         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
594         (gst_audio_clock_new):
595         Fix clock name.
596
597         * gst-libs/gst/audio/gstbaseaudiosink.c:
598         (gst_base_audio_sink_init), (gst_base_audio_sink_query):
599         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
600         (gst_base_audio_src_query), (gst_base_audio_src_get_offset),
601         (gst_base_audio_src_create):
602         Improve latency query code.
603         Use proper clock names.
604
605 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
606
607         * tests/check/generic/states.c: (GST_START_TEST):
608           Copy the states.c test from core again
609         * tests/check/Makefile.am:
610           ignore cdio and cdparanoiasrc
611
612 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
613
614         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
615         (double_hq), (audio_convert_get_func_index), (check_default),
616         (audio_convert_prepare_context), (audio_convert_convert):
617           Also make valgrind happy and avoid copying data in some cases.
618
619 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
620
621         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
622         (double_hq), (audio_convert_get_func_index),
623         (audio_convert_prepare_context), (audio_convert_convert):
624         * gst/audioconvert/gstaudioconvert.c:
625         (gst_audio_convert_class_init), (gst_audio_convert_get_unit_size),
626         (gst_audio_convert_transform_caps):
627         * tests/check/elements/audioconvert.c: (GST_START_TEST),
628         (audioconvert_suite):
629           Don't run inplace if that overwrites source data as we go. Add more
630           tests. Fixes #339837 even more.
631
632 2007-02-27  Julien MOUTTE  <julien@moutte.net>
633
634         * tests/examples/seek/seek.c: (do_seek), (set_update_scale),
635         (msg_segment_done): Fix various seeking bugs (Slider was not
636         updating when doing a non flushing seek, Reverse playback 
637         on segment seek was wrong).
638
639 2007-02-26  Wim Taymans  <wim@fluendo.com>
640
641         * tests/examples/seek/seek.c: (stop_seek):
642         When we stop scrubbing, don't leave the pipeline PLAYING when we
643         requested a PAUSED state.
644
645 2007-02-25  Tim-Philipp Müller  <tim at centricular dot net>
646
647         Patch by: René Stadler <mail at renestadler de>
648
649         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
650           Parse date strings in vorbis comments that have an invalid (zero)
651           month or day (#410396).
652
653         * tests/check/libs/tag.c: (GST_START_TEST):
654           Test case for the above.
655
656 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
657
658         Patch by: Loïc Minier <lool+gnome at via ecp fr>
659
660         * configure.ac:
661         * ext/alsa/Makefile.am:
662         * gst/audiotestsrc/Makefile.am:
663           Fix compilation with LDFLAGS='-Wl,-z,defs' (#410963).
664
665 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
666
667         * gst/playback/gstplaybin.c:
668           Improve docs: point out that the application needs to assist playbin
669           with buffering.
670
671 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
672
673         * gst-libs/gst/utils/install-plugins.c:
674         * gst-libs/gst/utils/missing-plugins.c:
675         * tests/check/libs/utils.c: (missing_msg_check_getters):
676           Change GStreamer marker prefix in detail string from 'gstreamer.net'
677           to just 'gstreamer'. Document the caps string component of the
678           decoder/encoder detail a bit better, since not everyone will be
679           familiar with the GStreamer media type/caps system (but they better
680           enjoy nested itemized lists).
681
682 2007-02-22  Tim-Philipp Müller  <tim at centricular dot net>
683
684         * gst-libs/gst/netbuffer/gstnetbuffer.c:
685         (notgst_buffer_copy_fields_in_place), (gst_netbuffer_copy):
686           Fix copying of GstNetBuffer (would crash before, or at least lead to
687           invalid memory access, #410772), for now by copying the GstBuffer copy
688           code from the core over here so we can copy the GstBuffer fields on a
689           provided buffer instance (of type GstNetBuffer in this case). Would be
690           better to fix this with some support by the core though (and in the long
691           run change the broken GstBuffer/GstMiniObject copy semantics, #393099).
692
693         * tests/check/Makefile.am:
694           Enable unit test for GstNetBuffer.
695
696 2007-02-22  Andy Wingo  <wingo@pobox.com>
697
698         * gst-libs/gst/audio/gstbaseaudiosink.c
699         (gst_base_audio_sink_init): Disable pull-mode activation until we
700         figure out how to make audio sinks go to PLAYING.
701
702 2007-02-22  Stefan Kost  <ensonic@users.sf.net>
703
704         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
705         (double_hq), (audio_convert_get_func_index),
706         (audio_convert_prepare_context), (audio_convert_convert):
707         * gst/audioconvert/audioconvert.h:
708         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_setup_matrix),
709         (gst_channel_mix_mix_int), (gst_channel_mix_mix_float):
710         * gst/audioconvert/gstchannelmix.h:
711         * tests/check/elements/audioconvert.c: (GST_START_TEST):
712           Add float as an intermediate format, as well as float mixing. Enable
713           test that was failing before. Fixes #339837
714
715 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
716
717         * tests/examples/seek/seek.c: (do_seek):
718         Undo the previous commit: -1 as a stop time implies that the stop
719         time is the end of file, clearing any previously configured segment.
720
721 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
722
723         * tests/examples/seek/seek.c: (do_seek):
724         Don't SEEK_SET with a stop time of -1, use SEEK_NONE instead.
725
726 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
727
728         * gst/volume/gstvolume.c: (volume_process_int16),
729         (volume_process_int16_clamp), (volume_set_caps):
730           Unbreak volume, value remains gint.
731
732 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
733
734         * gst/volume/gstvolume.c: (volume_choose_func),
735         (volume_update_real_volume), (gst_volume_set_volume),
736         (gst_volume_init), (volume_process_double), (volume_process_float),
737         (volume_process_int16), (volume_process_int16_clamp),
738         (volume_set_caps), (volume_transform_ip), (volume_update_volume):
739         * gst/volume/gstvolume.h:
740           Extend float audio support (double) and some int->uint cleanups.
741
742 2007-02-20  Edward Hervey  <edward@fluendo.com>
743
744         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
745         (multi_queue_underrun_cb), (gst_decode_group_check_if_drained),
746         (sort_end_pads), (gst_decode_group_expose),
747         (gst_decode_group_hide):
748         Don't free groups from the streaming threads. Just put them aside and
749         free them in dispose.
750
751 2007-02-20  Edward Hervey  <edward@fluendo.com>
752
753         * gst/playback/gstdecodebin2.c: (connect_element),
754         (pad_added_group_cb), (gst_decode_group_check_if_blocked),
755         (sort_end_pads), (gst_decode_group_expose):
756         Handle dynamic pads within groups.
757         Sort pads before exposing them in order to make playbin happy.
758         There still is a race with the multiqueue filling up. This should be
759         solved separately.
760         Fixes #398721
761
762 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
763
764         * gst-libs/gst/utils/base-utils.c:
765         * gst-libs/gst/utils/descriptions.c:
766         * gst-libs/gst/utils/install-plugins.c:
767         * gst-libs/gst/utils/missing-plugins.c:
768           Some more docs (and descriptions for two subtitle formats).
769
770 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
771
772         * gst-libs/gst/audio/audio.c:
773           Fix documentation.
774
775 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
776
777         Patch by: Yves Lefebvre  <ivanohe abacom com>
778
779         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps):
780           Don't leak caps. Fixes #408278.
781
782 2007-02-15  Stefan Kost  <ensonic@users.sf.net>
783
784         * ext/cdparanoia/gstcdparanoiasrc.h:
785         * ext/ogg/gstoggdemux.h:
786         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
787         (gst_audio_frame_length), (gst_audio_duration_from_pad_buffer),
788         (gst_audio_is_buffer_framed), (gst_audio_structure_set_int):
789         * gst-libs/gst/audio/audio.h:
790         * gst-libs/gst/audio/gstaudiofilter.h:
791         * gst-libs/gst/interfaces/videoorientation.h:
792         * gst/adder/gstadder.h:
793           More docs coverage and some ChangeLog surgery (add missing names)
794
795 2007-02-15  Wim Taymans  <wim@fluendo.com>
796
797         * sys/ximage/ximagesink.c:
798         (gst_ximagesink_calculate_pixel_aspect_ratio):
799         * sys/xvimage/xvimagesink.c:
800         (gst_xvimagesink_calculate_pixel_aspect_ratio):
801         Small constifications.
802
803 2007-02-15  Wim Taymans  <wim@fluendo.com>
804
805         * gst-libs/gst/audio/gstbaseaudiosink.c:
806         (gst_base_audio_sink_class_init), (gst_base_audio_sink_query),
807         (gst_base_audio_sink_render), (gst_base_audio_sink_callback),
808         (gst_base_audio_sink_async_play),
809         (gst_base_audio_sink_change_state):
810         Answer latency query.
811         Use configured latency when syncing.
812         Fix clock slaving.
813
814         * gst-libs/gst/audio/gstbaseaudiosrc.c:
815         (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
816         (gst_base_audio_src_query), (gst_base_audio_src_change_state):
817         Fix possible memleak.
818         Implement latency query.
819         Small cleanups.
820
821 2007-02-15  Wim Taymans  <wim@fluendo.com>
822
823         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
824         Ignore errors in reset, these are not fatal. They also grab the element
825         lock which is already taking when this function is called. Fixes
826         #405451.
827
828 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
829
830         * configure.ac:
831           Remove 'tests/examples/xerror/Makefile' from output files again.
832
833 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
834
835         * configure.ac:
836         * docs/plugins/Makefile.am:
837           Also crossref against gst-plugins-base-libs.
838
839 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
840
841         * configure.ac:
842         * docs/libs/Makefile.am:
843         * docs/plugins/Makefile.am:
844           Add crossreferences to glib/gobject/gstream docs.
845
846         * gst-libs/gst/audio/audio.h:
847           Source formatting.
848
849         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
850           Add own debug category.
851
852 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
853
854         Patch by: René Stadler <mail at renestadler de>
855
856         * gst-libs/gst/tag/gstvorbistag.c:
857           Add vorbis/FLAC-tag mapping for new GST_TAG_REFERENCE_LEVEL
858           (#403597).
859
860 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
861
862         * gst/playback/gstplaybasebin.c: (setup_source):
863           When we have external subtitles and wait for the subtitle decodebin
864           to get up and running, we set up a (sync) bus handler for the
865           subtitle decodebin, so we can stop waiting when it posts an error
866           message. However, we should do that before we set the subtitle
867           decodebin's state to playing, otherwise things are racy and we might
868           miss error messages posted before we had a chance to set up the bus.
869           This should finally fix totem hanging on .txt pseudo-subtitle files.
870           
871 2007-02-10  Sébastien Moutte  <sebastien at moutte dot net>
872
873         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:(gst_base_rtp_audio_payload_handle_frame_based_buffer):
874           Use gst_gdouble_to_guint64 for conversions.
875         * win32/common/config.h.in:
876           Add a define for GST_INSTALL_PLUGINS_HELPER
877         * win32/common/libgstaudio.def:
878         * win32/common/libgstcdda.def:
879         * win32/common/libgstnetbuffer.def:
880         * win32/common/libgstrtp.def:
881         * win32/common/libgutils.def:
882           Add new exported functions.
883         * win32/vs6/gst_plugins_base.dsw:
884         * win32/vs6/libgstdecodebin.dsp:
885         * win32/vs6/libgstnetbuffer.dsp:
886         * win32/vs6/libgstplaybin.dsp:
887         * win32/vs6/libgstrtp.dsp:
888         * win32/vs6/libgstvorbis.dsp:
889         * win32/vs6/libgstcdda.dsp:
890         * win32/vs6/libgstgdp.dsp:
891         * win32/vs6/libgstutils.dsp:
892           Update and add new project files.
893
894 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
895
896         * gst/subparse/gstsubparse.c: (subrip_remove_unhandled_tag),
897         (subrip_remove_unhandled_tags), (parse_subrip):
898           For SubRip (.srt) subtitles, ignore all markup tags we don't
899           handle (like font tags, for example).
900
901         * tests/check/elements/subparse.c:
902           Add test for this.
903
904 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
905
906         * gst/playback/gstdecodebin.c: (add_fakesink),
907         (gst_decode_bin_change_state):
908         * gst/playback/gstdecodebin2.c: (add_fakesink),
909         (gst_decode_bin_change_state):
910           Don't error out if there is no fakesink in the NULL to READY state
911           change, since when decodebin is re-used, we're only adding the
912           fakesink element in READY to PAUSED.
913
914         * tests/check/elements/decodebin.c:
915         (new_decoded_pad_plug_fakesink_cb), (GST_START_TEST),
916         (decodebin_suite):
917           Minimal unit test to make sure we can use the same decodebin
918           instance twice (at least with audiotestsrc input).
919
920 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
921
922         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name):
923           Try to get devic-name from device string first, and from handle only
924           as fallback (seems to yield better results and is more robust
925           against buggy probing code on the application side).
926
927 2007-02-08  Tim-Philipp Müller  <tim at centricular dot net>
928
929         Based on patch by: Julien Puydt <julien.puydt at laposte net>
930
931         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name_no_handle),
932         (gst_alsa_find_device_name):
933         * ext/alsa/gstalsa.h:
934         * ext/alsa/gstalsasink.c: (gst_alsasink_get_property):
935         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_property):
936           Improve device-name detection a bit, especially in the case where
937           the device is not actually open (#405020, #405024). Move common code
938           into gstalsa.c instead of duplicating it.
939
940 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
941
942         * gst/audioconvert/gstaudioconvert.c:
943           Fix up docs chunk so that gtk-doc doesn't complain, and fix typo.
944
945 2007-02-06  Julien MOUTTE  <julien@moutte.net>
946
947         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
948         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_clear),
949         (gst_xvimagesink_interface_supported),
950         (gst_xvimagesink_probe_get_properties),
951         (gst_xvimagesink_probe_probe_property),
952         (gst_xvimagesink_probe_needs_probe),
953         (gst_xvimagesink_probe_get_values),
954         (gst_xvimagesink_property_probe_interface_init),
955         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
956         (gst_xvimagesink_init), (gst_xvimagesink_class_init),
957         (gst_xvimagesink_get_type):
958         * sys/xvimage/xvimagesink.h: Implement PropertyProbe Interface
959         for XVAdaptors so that one can choose the adaptor to use with 
960         gstreamer-properties.
961
962 2007-02-06  Stefan Kost  <ensonic@users.sf.net>
963
964         * gst/audioconvert/gstaudioconvert.c:
965           Also mention that a conversion from double to float is suboptimal still.
966
967 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
968
969         * gst-libs/gst/audio/gstaudiofilter.c:
970         (gst_audio_filter_class_init), (gst_audio_filter_change_state):
971           Clear our formats structure and free the caps contained in it when
972           shutting down.
973
974 2007-02-05  Andy Wingo  <wingo@pobox.com>
975
976         * gst-libs/gst/audio/gstbaseaudiosink.c
977         (gst_base_audio_sink_callback): Update basesink->offset so that we
978         pull monotonically increasing offsets instead of, um, seeking back
979         to 0 each time. Fixes alsasrc ! alsasink!
980
981 2007-02-05  Tim-Philipp Müller  <tim at centricular dot net>
982
983         * gst/videoscale/gstvideoscale.c:
984           A width and height of 1 makes us crash, so increase minimum size to
985           2x2 pixels until someone feels like fixing this (#404512).
986
987 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
988
989         * tests/check/pipelines/oggmux.c: (GST_START_TEST), (oggmux_suite):
990           Add small test to make sure request pads are cleaned up properly
991           even if oggmux never changes state out of NULL.
992
993 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
994
995         * tests/check/libs/utils.c: (GST_START_TEST):
996           Fix unit test. Turns out things work much better when you
997           NULL-terminate string arrays. Should make p5 build bot happy again.
998
999 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
1000
1001         * gst-libs/gst/audio/Makefile.am:
1002         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
1003         (gst_audio_filter_template_base_init),
1004         (gst_audio_filter_template_class_init),
1005         (gst_audio_filter_template_init),
1006         (gst_audio_filter_template_set_property),
1007         (gst_audio_filter_template_get_property),
1008         (gst_audio_filter_template_setup),
1009         (gst_audio_filter_template_filter),
1010         (gst_audio_filter_template_filter_inplace), (plugin_init):
1011           Oops, forgot to commit fixed-up example.
1012
1013 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
1014
1015         * docs/libs/gst-plugins-base-libs-sections.txt:
1016         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
1017         (gst_audio_filter_class_init), (gst_audio_filter_init),
1018         (gst_audio_filter_set_caps),
1019         (gst_audio_filter_class_add_pad_templates):
1020         * gst-libs/gst/audio/gstaudiofilter.h:
1021           Port GstAudioFilter to 0.10. This change technically breaks
1022           API and ABI (and thus also every library developer's heart),
1023           but seems justifiable on the grounds that the base class was
1024           completely unusable before (ie. would crash immediately when
1025           actually used). Fixes #403963 (and eventually also #403572).
1026           Also document all of this a bit.
1027
1028 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
1029
1030         * gst-libs/gst/utils/install-plugins.c:
1031         (gst_install_plugins_spawn_child):
1032         * tests/check/libs/utils.c:
1033         (test_base_utils_install_plugins_do_callout):
1034           Lowering log level to see why things fail on the p5 build bot;
1035           fix some typos in unit test messages.
1036
1037 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
1038
1039         * tests/check/libs/utils.c:
1040         (test_base_utils_install_plugins_do_callout):
1041           Don't hard-code temp directory for test helper; use GLib functions
1042           to write out file and do error checking etc.
1043
1044 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
1045
1046         * gst-libs/gst/utils/Makefile.am:
1047         * gst-libs/gst/utils/base-utils.h:
1048         * gst-libs/gst/utils/install-plugins.c:
1049         (gst_install_plugins_context_set_xid),
1050         (gst_install_plugins_context_new),
1051         (gst_install_plugins_context_free),
1052         (gst_install_plugins_get_helper),
1053         (gst_install_plugins_spawn_child),
1054         (gst_install_plugins_return_from_status),
1055         (gst_install_plugins_installer_exited),
1056         (gst_install_plugins_async), (gst_install_plugins_sync),
1057         (gst_install_plugins_return_get_name),
1058         (gst_install_plugins_installation_in_progress):
1059         * gst-libs/gst/utils/install-plugins.h:
1060           API: add API for applications to initiate installation of missing
1061           plugins, ie. gst_install_plugins_async() primarily.
1062           Based on libgimme-codec by Ryan Lortie.
1063
1064         * configure.ac:
1065           Add --with-install-plugins-helper configure option so distros can specify
1066           the path of the helper script or program to call when plugin installation
1067           is requested (distros: please do any argument munging in this helper
1068           script instead of patching GStreamer to pass arguments differently
1069           to another program directly).
1070
1071         * docs/libs/gst-plugins-base-libs-docs.sgml:
1072         * docs/libs/gst-plugins-base-libs-sections.txt:
1073           Build and document new API.
1074
1075         * tests/check/libs/utils.c: (result_cb),
1076         (test_base_utils_install_plugins_do_callout), (GST_START_TEST),
1077         (libgstbaseutils_suite):
1078           Some simple checks for the new API.
1079
1080 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
1081
1082         * tests/check/elements/audioconvert.c: (test_float_conversion):
1083           Add small test for 32bit float <=> 64bit float conversion (works
1084           only one way so far, 32=>64 produces structured noise).
1085
1086 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
1087
1088         * gst/audioconvert/gstaudioconvert.c:
1089         (set_structure_widths_32_and_64), (make_lossless_changes):
1090           We don't support floats with a width of 40, 48 or 56 bits.
1091
1092 2007-02-02  Stefan Kost  <ensonic@users.sf.net>
1093
1094         * gst/audioconvert/audioconvert.c: (float), (double),
1095         (audio_convert_get_func_index):
1096         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
1097         (make_lossless_changes):
1098           Support for 64-bit float audio in audioconvert (#339837)
1099
1100 2007-02-01  Tim-Philipp Müller  <tim at centricular dot net>
1101
1102         Patch by: Holger Wansing  <linux wansing-online de>
1103
1104         * po/LINGUAS:
1105         * po/de.po:
1106           Add German translation (#352069).
1107
1108 2007-02-01  Sebastian Dröge  <slomo@circular-chaos.org>
1109
1110         reviewed by: Wim Taymans <wim@fluendo.com>
1111
1112         * ext/ogg/gstoggmux.c: (gst_ogg_mux_ogg_pad_destroy_notify),
1113         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad):
1114         Use newly added GstCollectPads API to free the allocated resources in
1115         the GstOggPad structures (#402393).
1116
1117 2007-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
1118
1119         * gst/playback/gstplaybin.c: (gen_vis_element):
1120           Add audioresample+audioconvert in front of the visualisation
1121           element, so that elements like libvisual 0.4 that don't support all
1122           samplerates can work.
1123
1124           Fixes: #402505
1125
1126 2007-01-30  Tim-Philipp Müller  <tim at centricular dot net>
1127
1128         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property),
1129         (gst_play_base_bin_get_streaminfo_value_array):
1130           Take some locks and make a copy of the streaminfo value array we
1131           maintain while holding the lock, so that the application can
1132           retrieve the stream-info as a value array in a thread-safe way.
1133
1134 2007-01-30  Wim Taymans  <wim@fluendo.com>
1135
1136         * gst/audioconvert/gstaudioconvert.c:
1137         Don't fail on 0 sized buffers. Fixes #396835.
1138
1139 2007-01-29  David Schleef  <ds@schleef.org>
1140
1141         * gst/typefind/gsttypefindfunctions.c:
1142           Detect BBCD as video/x-dirac, so we can play raw dirac
1143           streams.
1144
1145 2007-01-29  Tim-Philipp Müller  <tim at centricular dot net>
1146
1147         * ext/theora/theoraenc.c: (theora_enc_chain):
1148           Check return value of theora_encode_header(), or we might try to
1149           allocate a random number of bytes. theora_encode_header() can fail
1150           if libtheora has been compiled with encoding support disabled.
1151           Fixes #398110.
1152
1153 2007-01-29  Wim Taymans  <wim@fluendo.com>
1154
1155         * tests/check/gst/.cvsignore:
1156         Do as buildbot says.
1157
1158 2007-01-29  Wim Taymans  <wim@fluendo.com>
1159
1160         * ext/libvisual/visual.c: (gst_visual_src_setcaps):
1161         Fix strides in libvisual. Gst uses X strides.
1162         Inspired by: <ed at catmur dot co dot uk> and 
1163         <tim at centricular dot net>
1164         Fixes #401118.
1165
1166 2007-01-27  Wim Taymans  <wim@fluendo.com>
1167
1168         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
1169         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
1170         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_do_seek),
1171         (gst_ogg_demux_perform_seek),
1172         (gst_ogg_demux_bisect_forward_serialno),
1173         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
1174         (gst_ogg_demux_find_chains), (gst_ogg_demux_handle_page),
1175         (gst_ogg_demux_chain), (gst_ogg_demux_combine_flows),
1176         (gst_ogg_demux_loop_reverse), (gst_ogg_demux_loop):
1177         * ext/ogg/gstoggdemux.h:
1178         Properly propagate streaming errors when we are scanning the file for
1179         chains so that we don't crash when shut down. Might fix some crashers
1180         when quickly switching oggs in RB such as #332503 and #378436.
1181
1182 2007-01-26  Tim-Philipp Müller  <tim at centricular dot net>
1183
1184         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
1185           Map a gnome-vfs HOST_NOT_FOUND error into a GStreamer NOT_FOUND
1186           error code as well.
1187
1188 2007-01-25  Wim Taymans  <wim@fluendo.com>
1189
1190         * gst/playback/gstplaybasebin.c: (remove_source):
1191         Don't try to disconnect a signal from a finalized object.
1192
1193 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
1194
1195         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose):
1196           Cast lock macro parameters to make sure we're actually accessing the
1197           lock member at the right class level. Free list itself in _dispose()
1198           as well and NULL it in case dispose gets called multiple times.
1199
1200 2007-01-25  Edward Hervey  <edward@fluendo.com>
1201
1202         * gst/playback/gstdecodebin2.c:
1203         (gst_decode_bin_dispose),(gst_decode_bin_finalize):
1204         Free GstDecodeGroups no longer used.
1205         (gst_decode_group_expose):
1206         Don't unlock too many times !
1207         (deactivate_free_recursive):
1208         Free iterator once we're done with it.
1209         Fix for recursively deactivating elements (stop at ghostpads).
1210
1211 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
1212
1213         * gst/playback/gstplaybin.c: (handoff):
1214           Fix up caps on the frame buffer before we save it and potentially
1215           make it accessible to other threads via g_object_get; also use
1216           gst_buffer_replace() instead of gst_mini_object_replace().
1217
1218 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
1219
1220         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
1221           Make getting the current frame thread-safe.
1222
1223 2007-01-25  Edward Hervey  <edward@fluendo.com>
1224
1225         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize),
1226         (gst_decode_group_new), (gst_decode_group_free):
1227         Set queues to bigger sizes to cope with HD contents.
1228         Fix some mutex freeing and add comment about MT safe methods.
1229
1230 2007-01-24  Tim-Philipp Müller  <tim at centricular dot net>
1231
1232         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
1233         (gst_text_overlay_text_event):
1234           Don't unnecessarily ref (and then leak) upstream events if the text
1235           pad is not linked. Fixes #399948.
1236
1237         * tests/check/gst-plugins-base.supp:
1238           Add suppression for pango on edgy/x86 for textoverlay test.
1239
1240 2007-01-24  Wim Taymans  <wim@fluendo.com>
1241
1242         * gst-libs/gst/rtp/gstrtpbuffer.h:
1243         Add some more fixed payloads.
1244
1245 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
1246
1247         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
1248           Error out properly if we get an error from libogg while reading the
1249           BOS page(s). Fixes crash parsing 'fuzzed' ogg file (#399340).
1250
1251 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
1252
1253         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize):
1254           Don't leak mutex.
1255
1256         * tests/check/elements/playbin.c:
1257         (test_sink_usage_video_only_stream),
1258         (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
1259         (test_suburi_error_wrongproto), (test_missing_urisource_handler),
1260         (test_missing_suburisource_handler),
1261         (test_missing_primary_decoder), (playbin_suite):
1262           Run all tests once with decodebin and once with decodebin2.
1263           One test does not pass yet with decodebin2.
1264
1265 2007-01-23  Edward Hervey  <edward@fluendo.com>
1266
1267         * ext/ogg/gstoggmux.c: (all_pads_eos), (gst_ogg_mux_collected):
1268         Fix the cases where oggmux doesn't properly figure out that all
1269         sinkpads have gone EOS, and therefore doesn't push out the remaining
1270         buffers and the final EOS event.
1271         Fixes #363379
1272
1273 2007-01-23  Julien MOUTTE  <julien@moutte.net>
1274
1275         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1276         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1277         Don't lock on navigation event push, just on keysym to string.
1278         Fixes #397673 again.
1279
1280 2007-01-22  Edward Hervey  <edward@fluendo.com>
1281
1282         * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
1283         (get_current_group), (group_demuxer_event_probe),
1284         (gst_decode_group_expose), (deactivate_free_recursive),
1285         (gst_decode_group_free):
1286         Cleanups.
1287         Don't forget to emit 'no-more-pads' once a group is exposed.
1288         Cleanup elements from a DecodeGroup once we remove it.
1289         Protect call to gst_decode_group_expose() with the decodebin lock.
1290
1291 2007-01-22  Julien MOUTTE  <julien@moutte.net>
1292
1293         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1294         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1295         Looking at Xorg code i can't figure out if that XKeysymToString
1296         function is thread sensible or not. Lock it just in case as
1297         recommended by Radek Doulik <rodo at ximian dot com>.
1298
1299 2007-01-22  Julien MOUTTE  <julien@moutte.net>
1300
1301         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1302         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1303         Lock that X Call as well. Fixes #397673.
1304
1305 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
1306
1307         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
1308           Don't go into an endless loop if the file starts with 00 00 01 2X,
1309           like quicktime redirect files might. Fixes #396042.
1310
1311         * tests/check/Makefile.am:
1312         * tests/check/gst/.cvsignore:
1313         * tests/check/gst/typefindfunctions.c: (GST_START_TEST),
1314         (typefindfunctions_suite):
1315           Add unit test for the above.
1316
1317 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
1318
1319         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1320           On second thought, use "depth" field rather than "bpp" field.
1321
1322 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
1323
1324         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1325           Camtasia caps apparently need a bpp field (#398875).
1326
1327 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
1328
1329         * gst/playback/gstplaybasebin.c: (setup_subtitle),
1330         (gen_source_element), (gst_play_base_bin_change_state):
1331           Attempt at a better error message in case we don't have the required
1332           URI handler installed; post missing-plugin message also when we're
1333           missing an URI handler for the subtitle URI; clean up properly also
1334           when an error occurs and we never made it to PAUSED state.
1335
1336         * tests/check/elements/playbin.c: (GST_START_TEST),
1337         (playbin_suite):
1338           Check that we're also getting a missing-plugin messsage for a
1339           missing subtitle URI handler (and clean up properly).
1340
1341 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
1342
1343         * gst/playback/gstplaybasebin.c: (analyse_source), (setup_source):
1344           Plug a few reference leaks.
1345
1346 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
1347
1348         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
1349           Lower probability a bit if the marker isn't right at the start,
1350           to decrease the chance of false positives.
1351
1352 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
1353
1354         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
1355           Small mpeg2 system stream typefinding improvement: make typefinder
1356           probe a bit into the stream instead of just looking for a marker
1357           at the beginning. Fixes #397810.
1358
1359 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
1360
1361         * gst/audioconvert/gstchannelmix.c:
1362           Remove compatibility cruft for prehistoric GLib versions.
1363
1364 2007-01-17  Tim-Philipp Müller  <tim at centricular dot net>
1365
1366         * gst/playback/Makefile.am:
1367         * gst/playback/gstdecodebin.c: (close_pad_link):
1368         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
1369         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
1370         (gst_play_base_bin_handle_message_func), (unknown_type):
1371           Let decodebin be the element to post missing-plugin messages for
1372           missing decoders (rather than playbin); make playbin implement
1373           GstBin::handle_message so we can suppress missing-plugin messages
1374           for types we're not handling on purpose (don't want to bring up an
1375           installer in those cases).
1376
1377 2007-01-16  Tim-Philipp Müller  <tim at centricular dot net>
1378
1379         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1380         * gst-libs/gst/tag/gstvorbistag.c:
1381         (gst_tag_list_to_vorbiscomment_buffer):
1382         * gst/typefind/gsttypefindfunctions.c: (vorbis_type_find):
1383           Fix potentially unaligned access (#397207).
1384
1385 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
1386
1387         * tests/examples/seek/seek.c: (set_scale), (update_scale),
1388         (do_seek), (stop_seek), (pause_cb), (stop_cb), (loop_toggle_cb),
1389         (rate_spinbutton_changed_cb), (msg_eos), (msg_segment_done),
1390         (main):
1391           Allow to toggle looping while it plays. Fix callback prototype. Clean
1392           up code a bit more. Add copyright header.
1393
1394 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
1395
1396         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
1397           Red and blue mask was swapped (spotted by Dan Williams).
1398
1399 2007-01-15  Stefan Kost  <ensonic@users.sf.net>
1400
1401         * gst-libs/gst/tag/gstid3tag.c:
1402         * gst-libs/gst/tag/gstvorbistag.c:
1403           Use new beats-per-minute tag from core.
1404
1405 2007-01-15  Tim-Philipp Müller  <tim at centricular dot net>
1406
1407         * po/POTFILES.in:
1408           Add new files with translatable strings, so they actually make it
1409           into the template file one day.
1410
1411 2007-01-12  Andy Wingo  <wingo@pobox.com>
1412
1413         * gst-libs/gst/audio/gstbaseaudiosink.c
1414         (gst_base_audio_sink_fixate): Implement, stolen from baseaudiosrc.
1415         (gst_base_audio_sink_activate_pull): Remove the handwavey nego
1416         stuff, as the base class handles this now. Actually tell the ring
1417         buffer to start.
1418         (gst_base_audio_sink_callback): Cast the ring buffer correctly.
1419         How did this work before? Maybe I'm not as awesome a programmer as
1420         I think.
1421
1422         * gst-libs/gst/audio/gstbaseaudiosrc.c
1423         (gst_base_audio_src_fixate): Rework as a basesrc vmethod instead
1424         of a pad function.
1425
1426 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
1427
1428         * gst-libs/gst/utils/missing-plugins.c: (copy_and_clean_caps):
1429           Remove more fields so that the application can better blacklist
1430           formats that have been tried before.
1431
1432 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
1433
1434         * gst-libs/gst/audio/mixerutils.h:
1435           Add G_BEGIN_DECLS and G_END_DECLS guards so these helpers can be
1436           used when compiling with c++ compilers as well.
1437
1438 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
1439
1440         * gst/typefind/gsttypefindfunctions.c:
1441           Fix comment.
1442
1443 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
1444
1445         * gst/playback/gstplaybin.c: (post_missing_element_message),
1446         (gen_video_element), (gen_text_element), (gen_audio_element),
1447         (gen_vis_element):
1448           Post missing-plugin messages also when we error out because
1449           converters, textoverlay or auto*sinks are missing (#161922).
1450
1451 2007-01-10  Wim Taymans  <wim@fluendo.com>
1452
1453         * gst/playback/gstdecodebin.c: (dynamic_add), (close_pad_link),
1454         (is_demuxer_element), (new_caps):
1455         * gst/playback/gstplaybasebin.c: (source_new_pad):
1456         Fix the case where we try to ref a NULL element when we delay a link
1457         because of unfixed caps.
1458         Set the state of autoplugged decodebins to PAUSED.
1459         RTSP now works in playbin, we can remove it from the blacklist.
1460
1461 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
1462
1463         * gst/playback/Makefile.am:
1464         * gst/playback/gstplaybasebin.c: (string_arr_has_str),
1465         (unknown_type), (setup_subtitle), (gen_source_element):
1466         * gst/playback/gstplaybin.c: (plugin_init):
1467           Post missing-plugin messages on the bus for missing sources and
1468           missing decoders/demuxers/depayloaders; fix error code used when
1469           we're missing an URI handler source; for media types that we are not
1470           handling on purpose at the moment, don't print "don't know how to
1471           handle xyz" messages to the terminal or post missing-plugin
1472           messages on the bus.
1473
1474         * tests/check/elements/playbin.c: (create_playbin),
1475         (GST_START_TEST), (gst_codec_src_uri_get_type),
1476         (gst_codec_src_uri_get_protocols), (gst_codec_src_uri_get_uri),
1477         (gst_codec_src_uri_set_uri), (gst_codec_src_uri_handler_init),
1478         (gst_codec_src_init_type), (gst_codec_src_base_init),
1479         (gst_codec_src_create), (gst_codec_src_class_init),
1480         (gst_codec_src_init), (plugin_init), (playbin_suite):
1481           Add some tests for the missing-plugin stuff.
1482
1483 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
1484
1485         * configure.ac:
1486         * gst-libs/gst/Makefile.am:
1487         * gst-libs/gst/utils/Makefile.am:
1488         * gst-libs/gst/utils/base-utils.c: (gst_base_utils_init):
1489         * gst-libs/gst/utils/base-utils.h:
1490         * gst-libs/gst/utils/descriptions.c: (format_info_get_desc),
1491         (find_format_info), (caps_are_rtp_caps),
1492         (gst_base_utils_get_source_description),
1493         (gst_base_utils_get_sink_description),
1494         (gst_base_utils_get_decoder_description),
1495         (gst_base_utils_get_encoder_description),
1496         (gst_base_utils_get_element_description),
1497         (gst_base_utils_add_codec_description_to_tag_list),
1498         (gst_base_utils_get_codec_description), (gst_base_utils_list_all):
1499         * gst-libs/gst/utils/descriptions.h:
1500         * gst-libs/gst/utils/missing-plugins.c:
1501         (missing_structure_get_type), (copy_and_clean_caps),
1502         (gst_missing_uri_source_message_new),
1503         (gst_missing_uri_sink_message_new),
1504         (gst_missing_element_message_new),
1505         (gst_missing_decoder_message_new),
1506         (gst_missing_encoder_message_new),
1507         (missing_structure_get_string_detail),
1508         (missing_structure_get_caps_detail),
1509         (gst_missing_plugin_message_get_installer_detail),
1510         (gst_missing_plugin_message_get_description),
1511         (gst_is_missing_plugin_message):
1512         * gst-libs/gst/utils/missing-plugins.h:
1513           API: add new libgstbaseutils library with functions
1514           - to create and parse missing-plugins messages
1515           - that provide (translated) descriptions for caps/decoders/sources/etc.
1516           Closes #392393.
1517
1518         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
1519         * pkgconfig/gstreamer-plugins-base.pc.in:
1520           Add new lib.
1521
1522         * docs/libs/gst-plugins-base-libs-docs.sgml:
1523         * docs/libs/gst-plugins-base-libs-sections.txt:
1524           Generate docs for new lib and API.
1525
1526         * tests/check/Makefile.am:
1527         * tests/check/libs/.cvsignore:
1528         * tests/check/libs/utils.c: (missing_msg_check_getters),
1529         (GST_START_TEST), (libgstbaseutils_suite):
1530           Add some basic unit tests.
1531
1532 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
1533
1534         * ext/ogg/Makefile.am:
1535           Dist gstoggdemux.h to fix 'make distcheck'.
1536
1537         * sys/v4l/Makefile.am:
1538           Fix 'make distcheck' even more.
1539
1540 2007-01-09  Wim Taymans  <wim@fluendo.com>
1541
1542         * docs/plugins/Makefile.am:
1543         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1544         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1545         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
1546         (gst_ogg_pad_query_types), (gst_ogg_pad_submit_page),
1547         (gst_ogg_chain_reset), (gst_ogg_chain_new_stream),
1548         (gst_ogg_demux_perform_seek):
1549         * ext/ogg/gstoggdemux.h:
1550         Added docs.
1551         Add some more comments.
1552         Small cleanups.
1553
1554 2007-01-09  Wim Taymans  <wim@fluendo.com>
1555
1556         * ext/theora/theoradec.c:
1557         * ext/vorbis/vorbisdec.c:
1558         * gst-libs/gst/audio/gstringbuffer.c:
1559         (gst_ring_buffer_commit_full):
1560         * gst-libs/gst/audio/gstringbuffer.h:
1561         * gst-libs/gst/rtp/gstrtpbuffer.c:
1562         * gst-libs/gst/tag/gstvorbistag.c:
1563         Small documentation updates/fixes
1564
1565 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
1566
1567         * configure.ac:
1568           Require core CVS HEAD for Andy's basesrc/sink API additions.
1569
1570 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
1571
1572         Patch by: Günter Thelen  <daedalus dot inc at gmx net>
1573
1574         * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
1575         (plugin_init):
1576           Add typefinder for flac-in-ogg in conformance with the ogg-mapping
1577           on flac.sf.net (there appear to be other versions of the first
1578           ogg page in the wild) (#391365).
1579
1580 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
1581
1582         * configure.ac:
1583           Check if localtime_r() is available.
1584
1585         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
1586           If localtime_r() is not available, fall back to localtime(). Should
1587           fix build on MingW (#393310).
1588
1589 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
1590
1591         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
1592         * gst/subparse/gstsubparse.h:
1593           Remove spurious 1000 subtrahend when calculating the timestamp from
1594           the frame number and the frame rate . Also, use the frames/second
1595           value specified in the first line of the file, if one is specified
1596           there. Should fix #357503.
1597
1598         * tests/check/elements/subparse.c: (do_test),
1599         (test_tmplayer_do_test), (test_microdvd_do_test), (GST_START_TEST),
1600         (subparse_suite):
1601           Add some basic unit tests for the microdvd subtitle format.
1602
1603 2007-01-07  Julien MOUTTE  <julien@moutte.net>
1604
1605         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1606         (gst_xvimage_buffer_finalize), (gst_xvimagesink_xvimage_new),
1607         (gst_xvimagesink_xvimage_put), (gst_lookup_xv_port_from_adaptor),
1608         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps),
1609         (gst_xvimagesink_set_xwindow_id),
1610         (gst_xvimagesink_set_event_handling),
1611         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
1612         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
1613         Patch by : Young-Ho Cha <ganadist at chollian dot net>
1614         Fixes : #390076.
1615         Add an adaptor property to select a specific XV adaptor.
1616         * sys/xvimage/xvimagesink.h:
1617
1618 2007-01-07  Julien MOUTTE  <julien@moutte.net>
1619
1620         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
1621         (gst_ximagesink_handle_xerror), (gst_ximagesink_ximage_new),
1622         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
1623         (gst_ximagesink_handle_xevents), (gst_ximagesink_setcaps),
1624         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
1625         (gst_ximagesink_expose), (gst_ximagesink_set_event_handling):
1626         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1627         (gst_xvimage_buffer_finalize), (gst_xvimagesink_handle_xerror),
1628         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
1629         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_setcaps),
1630         (gst_xvimagesink_change_state), (gst_xvimagesink_set_xwindow_id),
1631         (gst_xvimagesink_expose), (gst_xvimagesink_set_event_handling):
1632         Use flow_lock much more to protect every access to xwindow.
1633         Try to catch erros while creating images in case some drivers are
1634         just generating an XError when the requested image is too big.
1635         Should fix : #354698, #384008, #384060.
1636         * tests/icles/stress-xoverlay.c: (cycle_window), (create_window):
1637         Implement some stress testing of setting window xid.
1638
1639 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
1640
1641         * win32/common/libgsaudio.def:
1642           Add new exported function.
1643         * win32/common/libgstogg.dsp:
1644           Add gstoggaviparse.c to the build.
1645         * win32/common/libgstvideoscale.dsp:
1646           Add vs_4tap.c to the build.
1647         * win32/common/libgstvorbis.dsp:
1648           Add vorbistag.c to the build.
1649         
1650 2007-01-06  Andy Wingo  <wingo@pobox.com>
1651
1652         * gst-libs/gst/audio/gstbaseaudiosink.c
1653         (gst_base_audio_sink_class_init)
1654         (gst_base_audio_sink_init): 
1655         (gst_base_audio_sink_activate_pull): Add an activate_pull function
1656         to baseaudiosink, and tell basesink that we can work in pull mode.
1657         This way the ring buffer thread drives the pipeline directly, if
1658         pull mode is possible. There is some lingering nastiness regarding
1659         capsnego, however.
1660         (gst_base_audio_sink_callback): Implement the callback to pull
1661         data. This interface is a bit light, though -- it should get a
1662         GstFlowReturn return value at least.
1663
1664 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
1665
1666         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_stream_out):
1667         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
1668         * gst/playback/gstdecodebin2.c:
1669         (gst_decode_group_check_if_blocked):
1670           Printf format and missing argument fixes.
1671
1672 2007-01-05  Jan Schmidt  <thaytan@mad.scientist.com>
1673
1674         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header),
1675         (gst_ogm_parse_change_state):
1676         Activate pads before adding them to the element.
1677
1678 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
1679
1680         * tests/examples/seek/scrubby.c: (main):
1681         * tests/examples/seek/seek.c: (main):
1682           Call g_thread_init() first thing in main() (see #391278).
1683
1684 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
1685
1686         * tests/check/Makefile.am:
1687         * tests/check/libs/.cvsignore:
1688         * tests/check/libs/netbuffer.c: (GST_START_TEST),
1689         (netbuffer_suite):
1690           Add test for GstNetBuffer + gst_buffer_copy(). Disabled
1691           for the time being, since it's broken, see #393099.
1692
1693 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
1694
1695         * tests/check/Makefile.am:
1696           Update to use GST_PLUGINS_BASE_CFLAGS as well.
1697
1698 2007-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
1699
1700         * configure.ac:
1701           split out GST_CFLAGS into GST_PLUGINS_BASE_CFLAGS and GST_CFLAGS
1702           so that GST_BASE_CFLAGS can go inbetween them, making sure
1703           we use uninstalled gst-libs headers
1704         * docs/libs/Makefile.am:
1705         * ext/alsa/Makefile.am:
1706         * ext/cdparanoia/Makefile.am:
1707         * ext/gnomevfs/Makefile.am:
1708         * ext/libvisual/Makefile.am:
1709         * ext/ogg/Makefile.am:
1710         * ext/theora/Makefile.am:
1711         * ext/vorbis/Makefile.am:
1712         * gst-libs/gst/audio/Makefile.am:
1713         * gst-libs/gst/cdda/Makefile.am:
1714         * gst-libs/gst/interfaces/Makefile.am:
1715         * gst-libs/gst/riff/Makefile.am:
1716         * gst-libs/gst/rtp/Makefile.am:
1717         * gst-libs/gst/tag/Makefile.am:
1718         * gst/adder/Makefile.am:
1719         * gst/audioconvert/Makefile.am:
1720         * gst/audiorate/Makefile.am:
1721         * gst/audioresample/Makefile.am:
1722         * gst/playback/Makefile.am:
1723         * gst/tcp/Makefile.am:
1724         * gst/videoscale/Makefile.am:
1725         * gst/volume/Makefile.am:
1726         * sys/ximage/Makefile.am:
1727         * sys/xvimage/Makefile.am:
1728         * tests/icles/Makefile.am:
1729           adapt
1730
1731 2007-01-04  Julien MOUTTE  <julien@moutte.net>
1732
1733         * gst-libs/gst/interfaces/xoverlay.c:
1734         (gst_x_overlay_handle_events):
1735         * gst-libs/gst/interfaces/xoverlay.h:
1736         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
1737         (gst_ximagesink_set_xwindow_id),
1738         (gst_ximagesink_set_event_handling),
1739         (gst_ximagesink_xoverlay_init), (gst_ximagesink_set_property),
1740         (gst_ximagesink_get_property), (gst_ximagesink_init),
1741         (gst_ximagesink_class_init):
1742         * sys/ximage/ximagesink.h:
1743         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new),
1744         (gst_xvimagesink_set_xwindow_id),
1745         (gst_xvimagesink_set_event_handling),
1746         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_set_property),
1747         (gst_xvimagesink_get_property), (gst_xvimagesink_init),
1748         (gst_xvimagesink_class_init):
1749         * sys/xvimage/xvimagesink.h:
1750         * tests/icles/stress-xoverlay.c: (toggle_events), (create_window):
1751         Add a method to the XOverlay interface to allow disabling of 
1752         event handling in x[v]imagesink elements. This will let X events
1753         propagate to parent windows which can be usefull in some cases.
1754         Be carefull that the application is then responsible of pushing
1755         navigation events and expose events to the video sink.
1756         Fixes: #387138.
1757
1758 2007-01-03  Tim-Philipp Müller  <tim at centricular dot net>
1759
1760         * gst-libs/gst/tag/gstvorbistag.c:
1761         * tests/check/libs/tag.c: (GST_START_TEST):
1762           Add vorbistag <=> GStreamer tag mapping for GST_TAG_LOCATION
1763           (fixes #392070).
1764
1765 2007-01-01  Tim-Philipp Müller  <tim at centricular dot net>
1766
1767         * configure.ac:
1768         * docs/Makefile.am:
1769         * docs/design/Makefile.am:
1770           Dist design docs.
1771
1772 2006-12-27  Julien MOUTTE  <julien@moutte.net>
1773
1774         * docs/libs/gst-plugins-base-libs-sections.txt: Fix a documentation
1775         typo. Fixes: #390063.
1776
1777 2006-12-27  Julien MOUTTE  <julien@moutte.net>
1778
1779         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
1780         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Plug a
1781         caps leak.
1782         * win32/common/config.h: Updated.
1783
1784 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
1785
1786         * tests/check/elements/gdpdepay.c: (cleanup_gdpdepay),
1787         (setup_gdpdepay_streamheader):
1788         * tests/check/elements/gdppay.c: (cleanup_gdppay),
1789         (setup_gdppay_streamheader):
1790           Fix the dp tests, but activating the pads for the streamheader tests
1791           too and cleaning up conditionaly
1792
1793 2006-12-22  Jan Schmidt  <thaytan@mad.scientist.com>
1794
1795         * gst/ffmpegcolorspace/avcodec.h:
1796         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1797         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
1798         (gst_ffmpegcsp_avpicture_fill):
1799         * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
1800         (img_get_alpha_info):
1801         Add 2 new caps arrangements, for 24-bit RGB and BGR in 32-bits, but at the
1802         other end of the word. Fixes: #387073.
1803
1804         Add some inconsequential branch hints in a couple of places.
1805
1806 2006-12-21  Tim-Philipp Müller  <tim at centricular dot net>
1807
1808         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1809         (gst_ffmpeg_caps_to_smpfmt):
1810           The "signed" field in raw audio caps is of boolean type, trying to
1811           extract the value with _get_int() will fail (fix to keep in sync with
1812           the copy in gst-ffmpeg)
1813
1814 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
1815
1816         * tests/check/elements/audioresample.c: (cleanup_audioresample):
1817         * tests/check/elements/audiotestsrc.c: (cleanup_audiotestsrc):
1818         * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
1819         (cleanup_gdpdepay):
1820         * tests/check/elements/gdppay.c: (setup_gdppay), (cleanup_gdppay):
1821         * tests/check/elements/subparse.c: (teardown_subparse):
1822         * tests/check/elements/textoverlay.c: (cleanup_textoverlay):
1823         * tests/check/elements/videorate.c: (cleanup_videorate):
1824         * tests/check/elements/videotestsrc.c: (cleanup_videotestsrc):
1825         * tests/check/elements/volume.c: (cleanup_volume):
1826         * tests/check/elements/vorbisdec.c: (setup_vorbisdec),
1827         (cleanup_vorbisdec):
1828         * tests/check/elements/vorbistag.c: (setup_vorbistag),
1829         (cleanup_vorbistag):
1830           consistent pad (de)activation
1831
1832 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
1833
1834         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1835           Forgot to register the extensions.
1836
1837 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
1838
1839         * gst/typefind/gsttypefindfunctions.c: (vivo_type_find),
1840         (plugin_init):
1841           Add typefinder for VIVO files (my christmas present to the 90s).
1842
1843 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
1844
1845         * gst/playback/gstdecodebin.c: (type_found):
1846           Special-case the text/plain media type: we only want to recognise it
1847           as a 'raw' decoded media type if it comes from a demuxer or subtitle
1848           parser, but not if the entire stream is of text/plain type. If the
1849           entire stream is text/plain, we should just error out.
1850
1851           This fixes playback of audio files with lyrics in totem. Totem can't
1852           distinguish between text files and subtitle files and passes any
1853           .txt file with the same basename as the main file to playbin as
1854           suburi, and playbin will then throw a 'subtitle found, but no video
1855           stream' error, which isn't entirely helpful. See #380342.
1856
1857           Also, with this change we'll show a slightly more correct error
1858           message in case totem passes a playlist file to us (although a
1859           custom error message wording instead of the default text would
1860           probably not be a bad idea either).
1861
1862           Same problem also needs to be fixed for playbin+decodebin2.
1863
1864         * tests/check/Makefile.am:
1865         * tests/check/elements/decodebin.c: (src_handoff_cb),
1866         (decodebin_new_decoded_pad_cb), (GST_START_TEST),
1867         (decodebin_suite):
1868           Add simple unit test for decodebin for the above.
1869
1870 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
1871
1872         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
1873         * gst/playback/gstdecodebin2.c: (gst_decode_bin_change_state):
1874           Refuse to change state to READY when we failed to create any of the
1875           required elements in our instance init function.
1876
1877 2006-12-15  Tim-Philipp Müller  <tim at centricular dot net>
1878
1879         * docs/libs/gst-plugins-base-libs-sections.txt:
1880           Small docs fixes/updates.
1881
1882         * gst-libs/gst/video/gstvideosink.h:
1883           Remove nonfunctional GST_VIDEO_SINK_CLOCK macro which is a leftover
1884           from the 0.9 days (GST_BASE_SINK_CLOCK, which it points to, was
1885           removed from the base sink API between 0.9.6 and 0.9.7).
1886           API: add GST_VIDEO_SINK_CAST and use it for the height/width
1887           accessor macros, so we don't do a runtime GObject type check every
1888           time we use them.
1889
1890 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
1891
1892         * Makefile.am:
1893         * gst-plugins-base.doap:
1894         * gst-plugins-base.spec.in:
1895           add doap file
1896
1897 2006-12-09  Tim-Philipp Müller  <tim at centricular dot net>
1898
1899         Patch by: Jens Granseuer <jensgr at gmx net>
1900
1901         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
1902         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
1903         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
1904         (gst_base_rtp_audio_payload_handle_sample_based_buffer):
1905         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
1906           Declare variables at the beginning of a block. Fixes #383195.
1907
1908 2006-12-07  Jan Schmidt  <thaytan@mad.scientist.com>
1909
1910         * configure.ac:
1911         Bump version nano - back to CVS.
1912
1913
1914 === release 0.10.11 ===
1915
1916 2006-12-06  Jan Schmidt <thaytan@mad.scientist.com>
1917
1918         * configure.ac:
1919           releasing 0.10.11, "Dumb things"
1920
1921 2006-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
1922
1923         * gst/playback/gstdecodebin.c: (find_dynamic), (dynamic_add),
1924         (close_pad_link), (elem_is_dynamic), (unlinked), (close_link):
1925         Handle the case where an element has multiple pads with 
1926         unfixed caps as well as still possibly producing more dynamic 
1927         pads by storing each case as a distinct entry in the dynamic list.
1928         Fixes #38223 again.
1929
1930 2006-12-04  Wim Taymans  <wim@fluendo.com>
1931
1932         * gst/playback/gstdecodebin.c: (close_pad_link):
1933         Fix #382223, add more dynamic caps handling.
1934
1935 2006-12-04  Wim Taymans  <wim@fluendo.com>
1936
1937         reviewed by: <delete if not using a buddy>
1938
1939         * gst-libs/gst/audio/gstringbuffer.h:
1940         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_init),
1941         (gst_netaddress_set_ip4_interface),
1942         (gst_netaddress_set_ip6_interface), (gst_netaddress_set_loopback),
1943         (gst_netaddress_set_ttl), (gst_netaddress_get_ip4_interface),
1944         (gst_netaddress_get_ip6_interface), (gst_netaddress_get_loopback),
1945         (gst_netaddress_get_ttl):
1946         * gst-libs/gst/netbuffer/gstnetbuffer.h:
1947         * gst/playback/gstdecodebin.c: (close_pad_link):
1948         * tests/examples/seek/seek.c: (end_scrub), (end_seek), (do_seek),
1949         (seek_cb), (stop_seek), (rate_spinbutton_changed_cb):
1950         * win32/common/config.h:
1951
1952 2006-12-01  Michael Smith  <msmith@fluendo.com>
1953
1954         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
1955           Delete bad debug code.
1956           Fixes #381219
1957
1958 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
1959
1960         * gst/videoscale/vs_4tap.c:
1961         * win32/MANIFEST:
1962         * win32/common/config.h:
1963         * win32/vs8/libgstvideoscale.vcproj:
1964         Fix compilation on win32 under VS8
1965         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
1966         Partially fixes #381175
1967
1968 2006-11-30  Michael Smith  <msmith@fluendo.com>
1969
1970         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
1971         (GST_START_TEST):
1972           It would be very bad if, after a discont buffer, we thought every
1973           single following buffer was also discont. So, add to the test to
1974           ensure that this isn't the case.
1975           
1976         * ext/theora/theoraenc.c: (theora_enc_is_discontinuous):
1977           ... it was the case. So fix it.
1978
1979 2006-11-28  Wim Taymans  <wim@fluendo.com>
1980
1981         * gst/playback/gstplaybasebin.c: (check_queue_event):
1982         Improve debug.
1983
1984         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
1985         Fix width and height range from 16 - 4096 to 1 - MAXINT, just like the
1986         padtemplate caps. Refixes #357577.
1987
1988 2006-11-28  Wim Taymans  <wim@fluendo.com>
1989
1990         * gst/playback/gstplaybasebin.c: (check_queue_event),
1991         (queue_threshold_reached), (queue_out_of_data),
1992         (gen_preroll_element):
1993         Add event probe to see when EOS is in a queue and we can disable the
1994         underrun signals. Fixes #357577.
1995
1996 2006-11-28  Edward Hervey  <edward@fluendo.com>
1997
1998         * gst/playback/Makefile.am:
1999         * gst/playback/gstdecodebin2.c: (gst_decode_bin_get_type),
2000         (_gst_boolean_accumulator), (gst_decode_bin_class_init),
2001         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
2002         (gst_decode_bin_init), (gst_decode_bin_dispose),
2003         (gst_decode_bin_finalize), (gst_decode_bin_set_property),
2004         (gst_decode_bin_get_property), (gst_decode_bin_set_caps),
2005         (gst_decode_bin_get_caps), (gst_decode_bin_autoplug_continue),
2006         (gst_decode_bin_autoplug_sort), (analyze_new_pad), (connect_pad),
2007         (connect_element), (expose_pad), (type_found),
2008         (pad_added_group_cb), (pad_removed_group_cb),
2009         (no_more_pads_group_cb), (pad_added_cb), (pad_removed_cb),
2010         (no_more_pads_cb), (find_compatibles), (is_demuxer_element),
2011         (are_raw_caps), (multi_queue_overrun_cb),
2012         (multi_queue_underrun_cb), (gst_decode_group_new),
2013         (get_current_group), (group_demuxer_event_probe),
2014         (gst_decode_group_control_demuxer_pad),
2015         (gst_decode_group_control_source_pad),
2016         (gst_decode_group_check_if_blocked),
2017         (gst_decode_group_check_if_drained), (gst_decode_group_expose),
2018         (gst_decode_group_hide), (gst_decode_group_free),
2019         (gst_decode_group_set_complete), (source_pad_blocked_cb),
2020         (source_pad_event_probe), (gst_decode_pad_new), (add_fakesink),
2021         (remove_fakesink), (find_sink_pad), (gst_decode_bin_change_state),
2022         (plugin_init):
2023         New decodebin2 element.
2024         Closes #370092
2025         * gst/playback/gstplay-marshal.list:
2026         Added marshallers for new signals in decodebin2
2027         * gst/playback/gstplaybasebin.c: (setup_subtitle), (make_decoder):
2028         Use decodebin2 if *and only if* the USE_DECODEBIN2 environment variable
2029         is set.
2030
2031 2006-11-28  Wim Taymans  <wim@fluendo.com>
2032
2033         * gst/playback/gstplaybasebin.c: (setup_source),
2034         (gst_play_base_bin_change_state):
2035         Disable rtsp:// uris for the release, it's not good enough yet.
2036         Remove unused var.
2037
2038 2006-11-26  Wim Taymans  <wim@fluendo.com>
2039
2040         * ext/theora/theoradec.c: (gst_theora_dec_reset),
2041         (theora_dec_push_forward), (theora_dec_push_reverse),
2042         (theora_handle_data_packet), (theora_dec_decode_buffer),
2043         (theora_dec_flush_decode), (theora_dec_chain_reverse),
2044         (theora_dec_chain_forward), (theora_dec_chain):
2045         Implement reverse playback.
2046
2047         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
2048         (vorbis_dec_decode_buffer), (vorbis_dec_flush_decode),
2049         (vorbis_dec_chain_forward):
2050         Clear buffers used for reverse playback in _reset.
2051         No need to set the eos flag, we clip samples using the segment.
2052
2053 2006-11-24  Wim Taymans  <wim@fluendo.com>
2054
2055         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
2056         (gst_ogg_pad_init), (gst_ogg_pad_dispose), (gst_ogg_pad_reset),
2057         (gst_ogg_pad_stream_out), (gst_ogg_pad_submit_page),
2058         (gst_ogg_chain_reset), (gst_ogg_demux_perform_seek):
2059         Some cleanups.
2060         Handle continued pages in reverse mode.
2061
2062 2006-11-24  Wim Taymans  <wim@fluendo.com>
2063
2064         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
2065         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
2066         (vorbis_dec_flush_decode):
2067         Small cleanups.
2068         Don't try to add invalid timestamps.
2069         Clipping will unref the buffer.
2070
2071 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
2072
2073         * gst/adder/gstadder.h:
2074         * gst/audiotestsrc/gstaudiotestsrc.h:
2075           remove obsolete _factory_init protos
2076
2077 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
2078
2079         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
2080           Fix spacing in debug message.
2081
2082 2006-11-23  Wim Taymans  <wim@fluendo.com>
2083
2084         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
2085         (gst_ogg_demux_chain):
2086         Don't just ignore return values from _pad_push().
2087         Small debug improvements.
2088
2089 2006-11-23  Michael Smith  <msmith@fluendo.com>
2090
2091         * ext/ogg/gstoggmux.c: (gst_ogg_mux_process_best_pad):
2092           If our incoming buffer is marked as DISCONT, then increment the page
2093           number (so that the discontinuity is marked in the final ogg
2094           bitstream) and flush the previous page.
2095
2096 2006-11-22  Michael Smith  <msmith@fluendo.com>
2097
2098         * ext/theora/gsttheoraenc.h:
2099         * ext/theora/theoraenc.c: (gst_theora_enc_init),
2100         (theora_enc_reset), (theora_enc_clear), (theora_enc_sink_setcaps),
2101         (theora_buffer_from_packet), (theora_enc_is_discontinuous),
2102         (theora_enc_chain), (theora_enc_change_state):
2103           Mark discontinuities of > 3/4 of a frame, reinit encoder.
2104
2105         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
2106         (GST_START_TEST), (theoraenc_suite):
2107           Enable discontinuity test, fix it.
2108
2109 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
2110
2111         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
2112         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
2113         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
2114         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
2115         (gst_text_overlay_change_state):
2116         * ext/pango/gsttextoverlay.h:
2117           Some textoverlay fixes: for one, in the video chain function,
2118           actually wait for a text buffer to come in if there is none at the
2119           moment and there should be one; also, deal more gracefully with
2120           incoming buffers that do not have a timestamp or duration; discard
2121           text buffer when not needed any longer. Fixes #341681.
2122
2123         * tests/check/Makefile.am:
2124         * tests/check/elements/.cvsignore:
2125         * tests/check/elements/textoverlay.c:
2126         (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2),
2127         (setup_textoverlay), (buffer_is_all_black), (create_black_buffer),
2128         (create_text_buffer), (cleanup_textoverlay), (GST_START_TEST),
2129         (test_video_waits_for_text_send_text_newsegment_thread),
2130         (test_video_waits_for_text_shutdown_element),
2131         (test_render_continuity_push_video_buffers_thread),
2132         (textoverlay_suite):
2133           Add some unit tests for textoverlay.
2134
2135 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
2136
2137         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
2138           Avoid integer underflow when the found probability for mp3 is
2139           smaller than the 'penalty' we subtract if there's not a clean
2140           mp3 header sync at offset 0.
2141
2142 2006-11-21  Stefan Kost  <ensonic@users.sf.net>
2143
2144         * docs/libs/gst-plugins-base-libs-sections.txt:
2145           Add some new symbols to the docs
2146
2147 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
2148
2149         * tests/check/Makefile.am:
2150         * tests/check/elements/ffmpegcolorspace.c:
2151         (ffmpegcolorspace_suite):
2152           Enable ffmpegcolorspace test now that the RGBA32 issue is fixed
2153           (for now not for valgrinding though, since it takes too long).
2154
2155 2006-11-20  Wim Taymans  <wim@fluendo.com>
2156
2157         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
2158         (gst_ffmpeg_pixfmt_to_caps):
2159         Fix RGBA32 caps. Fixes #357038.
2160
2161 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
2162
2163         * gst-libs/gst/interfaces/mixertrack.h:
2164           Add FIXME so we can add some padding here in 0.11
2165
2166 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
2167
2168         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
2169           Fix GstBaseRTPAudioPayload structure so the whole GObject
2170           inheritance business actually works (parent class instance structure
2171           must always come first in the derived class instance structure).
2172
2173 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
2174
2175         * gst/videotestsrc/Makefile.am:
2176         * tests/check/Makefile.am:
2177           Make sure our checks and the videotestsrc plugin link against the
2178           local uninstalled gst libs and not any installed gst libs that
2179           might happen to exist as well.
2180
2181         * tests/check/elements/adder.c: (message_received),
2182         (test_event_message_received), (test_play_twice_message_received):
2183         * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
2184           Fix compiler warnings when compiling against core with disabled
2185           debugging system.
2186
2187 2006-11-16  Michael Smith  <msmith@fluendo.com>
2188
2189         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
2190         (gst_audio_rate_sink_event), (gst_audio_rate_chain):
2191           Fix audiorate, so that it accurately sets offsets and timestamps.
2192           Doesn't change the fundamental algorithmic decisions; so should be
2193           safe.
2194
2195         * tests/check/Makefile.am:
2196           Enable audiorate test now that it passes.
2197
2198 2006-11-09  Stefan Kost  <ensonic@users.sf.net>
2199
2200         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
2201           clear xv when going to NULL, remove // commented non-existant proto
2202
2203         * tests/examples/seek/seek.c: (main):
2204           add missing tooltip description for scrub and play_scrub
2205
2206 2006-11-14  David Schleef  <ds@schleef.org>
2207
2208         * configure.ac:
2209           Bump liboil requirement to 0.3.8.
2210         * gst-libs/gst/riff/riff-media.c:
2211           Add Dirac fourcc.
2212         * gst/videoscale/vs_image.h:
2213         * gst/videoscale/vs_scanline.h:
2214           Use liboil's stdint.h.
2215         * gst/videotestsrc/videotestsrc.c:
2216           Remove liboil related ifdef's, since they aren't needed now, and
2217           won't work with future versions.
2218
2219 2006-11-14  David Schleef  <ds@schleef.org>
2220
2221         * gst/videoscale/Makefile.am:
2222         * gst/videoscale/gstvideoscale.c:
2223         * gst/videoscale/gstvideoscale.h:
2224         * gst/videoscale/vs_4tap.c:
2225         * gst/videoscale/vs_4tap.h:
2226         * gst/videoscale/vs_image.c:
2227         * gst/videoscale/vs_image.h:
2228         * gst/videoscale/vs_scanline.c:
2229         * gst/videoscale/vs_scanline.h:
2230           Add a 4-tap image scaler.  Theoretically looks much prettier.
2231           The tap calculation could use some improvement.
2232
2233 2006-11-14  Wim Taymans  <wim@fluendo.com>
2234
2235         Patch by: Jan David Mol <j dot j dot d dot mol at tudelft dot nl>
2236
2237         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds),
2238         (gst_riff_parse_strf_iavs):
2239         * gst/subparse/gstsubparse.c: (convert_encoding):
2240         * gst/tcp/gstmultifdsink.c:
2241         (gst_multi_fd_sink_handle_client_write):
2242         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
2243         (gst_tcp_read_buffer), (gst_tcp_gdp_read_caps),
2244         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
2245         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_render):
2246         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
2247         (gst_ximagesink_ximage_new):
2248         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
2249         Various gsize and gssize printf fixes. Fixes #372507.
2250
2251 2006-11-13  Wim Taymans  <wim@fluendo.com>
2252
2253         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
2254         (vorbis_dec_push_forward), (vorbis_dec_push_reverse),
2255         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
2256         (vorbis_dec_flush_decode), (vorbis_dec_chain_reverse),
2257         (vorbis_dec_chain_forward), (vorbis_dec_chain):
2258         * ext/vorbis/vorbisdec.h:
2259         First stab at vorbis reverse playback.
2260
2261 2006-11-13  Wim Taymans  <wim@fluendo.com>
2262
2263         * gst-libs/gst/audio/gstbaseaudiosink.c:
2264         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
2265         * gst-libs/gst/audio/gstbaseaudiosink.h:
2266         Make the clock sync code more accurate wrt resampling and playback
2267         at different rates.
2268         
2269         * gst-libs/gst/audio/gstringbuffer.c:
2270         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit):
2271         * gst-libs/gst/audio/gstringbuffer.h:
2272         Use better algorithm to interpolate sample rates. 
2273
2274 2006-11-13  Michael Smith  <msmith@fluendo.com>
2275
2276         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page):
2277           Improve a debug line slightly.
2278
2279         * ext/ogg/gstogmparse.c: (gst_ogm_parse_plugin_init):
2280           Call gst_riff_init() in plugin_init, to avoid getting errors from
2281           the debug system (unrelated changes to another plugin made this turn
2282           up; not sure why).
2283
2284 2006-11-10  Tim-Philipp Müller  <tim at centricular dot net>
2285
2286         Patch by: Sergey Scobich  <sergery.scobich at gmail com>
2287
2288         * win32/common/libgsttag.def:
2289           Add missing symbol (#366492).
2290
2291 2006-11-09  Tim-Philipp Müller  <tim at centricular dot net>
2292
2293         * gst/playback/gststreamselector.c: (gst_stream_selector_dispose):
2294           Don't unref a NULL pad.
2295
2296 2006-11-09  Wim Taymans  <wim@fluendo.com>
2297
2298         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
2299         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_perform_seek),
2300         (gst_ogg_demux_handle_page), (gst_ogg_demux_chain),
2301         (gst_ogg_demux_loop_forward), (gst_ogg_demux_loop_reverse),
2302         (gst_ogg_demux_loop):
2303         Implement first stab at reverse playback.
2304
2305 2006-11-07  Stefan Kost  <ensonic@users.sf.net>
2306
2307         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
2308         (gst_riff_create_video_template_caps):
2309           add h263/h264 variants to the caps, Fixes #363118
2310
2311 2006-11-06  Tim-Philipp Müller  <tim at centricular dot net>
2312
2313         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
2314         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
2315           Use g_strerror instead of strerror so we get UTF-8.
2316
2317 2006-11-03  David Schleef  <ds@schleef.org>
2318
2319         * ext/ogg/gstoggdemux.c:
2320         * ext/ogg/gstoggmux.c:
2321           Add/remove KW-DIRAC header here, since it is ogg-specific.
2322
2323 2006-11-03  Michael Smith  <msmith@fluendo.com>
2324
2325         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
2326           Recognise more mpeg4 elementary video streams.
2327
2328 2006-11-02  Edward Hervey  <edward@fluendo.com>
2329
2330         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
2331         Lower the probability of mp3 typefinding functions if we don't find a
2332         valid mp3 header at the start of the file.
2333         Closes #369482
2334
2335 2006-11-02  Wim Taymans  <wim@fluendo.com>
2336
2337         * ext/theora/gsttheoradec.h:
2338         * ext/theora/theoradec.c: (gst_theora_dec_init),
2339         (theora_dec_sink_event), (theora_dec_chain_forward),
2340         (theora_dec_flush_decode), (theora_dec_chain_reverse),
2341         (theora_dec_chain):
2342         Document and partially implement an algorithm for doing reverse playback
2343         of theora video.
2344
2345 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
2346
2347         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
2348
2349         * win32/common/config.h:
2350         * win32/common/interfaces-enumtypes.c:
2351         * win32/common/libgsttag.def:
2352         * win32/vs8/gst-plugins-base.sln:
2353         * win32/vs8/libgstaudioresample.vcproj:
2354         * win32/vs8/libgstinterfaces.vcproj:
2355         * win32/vs8/libgstogg.vcproj:
2356         * win32/vs8/libgstriff.vcproj:
2357         * win32/vs8/libgsttag.vcproj:
2358         * win32/vs8/libgsttheora.vcproj:
2359         * win32/vs8/libgstvideoscale.vcproj:
2360         * win32/vs8/libgstvorbis.vcproj:
2361           Misc. VS8 build fixes: fix syntax in config.h, add missing entries
2362           to libgsttag.def; add missing dependencies for some vs8 projects;
2363           re-arrange placement of .def files in vs8 projects (#366334).
2364
2365 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
2366
2367         * ext/ogg/gstogg.c:
2368           Remove unused variable.
2369
2370         * ext/ogg/gstoggdemux.c:
2371           Fix Wim's surname in plugin description.
2372
2373 2006-10-31  Wim Taymans  <wim@fluendo.com>
2374
2375         * gst-plugins-base.spec.in:
2376         spec new .h file. Fixes #368310.
2377
2378 2006-10-31  Michael Smith  <msmith@fluendo.com>
2379
2380         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
2381         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
2382         (gst_multi_fd_sink_get_stats),
2383         (gst_multi_fd_sink_remove_client_link),
2384         (gst_multi_fd_sink_queue_buffer),
2385         (gst_multi_fd_sink_handle_clients):
2386         * gst/tcp/gstmultifdsink.h:
2387           Make using the remove or clear signals threadsafe.
2388           Make calling get-stats with an invalid fd not segfault.
2389           Fixes 368273.
2390
2391 2006-10-31  Wim Taymans  <wim@fluendo.com>
2392
2393         * gst-libs/gst/rtp/Makefile.am:
2394         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2395         (gst_base_rtp_audio_payload_init):
2396         Fix and activate base audio payloader.
2397
2398 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
2399
2400         * gst/typefind/gsttypefindfunctions.c: (qtif_type_find),
2401         (plugin_init):
2402           Add typefinder for QuickTime Image Files (see #366156).
2403
2404 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
2405
2406         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
2407           Another typo fix (#366212).
2408
2409 2006-10-27  Wim Taymans  <wim@fluendo.com>
2410
2411         * gst/volume/gstvolume.c: (volume_transform_ip):
2412         Use stream time to synchronize volume property instead of rather random
2413         timestamps. This is needed when gnonlin does its time shifting.
2414
2415 2006-10-27  Wim Taymans  <wim@fluendo.com>
2416
2417         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
2418
2419         * ext/ogg/gstoggmux.c: (gst_ogg_mux_release_pad):
2420         Remove the pad from the element in release_pad. Fixes #364812.
2421
2422 2006-10-27  Tim-Philipp Müller  <tim at centricular dot net>
2423
2424         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
2425         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
2426           Explicitly create our custom buffer classes at a thread-safe
2427           location as well, since g_type_class_ref() doesn't seem to be
2428           entirely thread-safe either (#365501; also see #349410).
2429
2430 2006-10-26  Tim-Philipp Müller  <tim at centricular dot net>
2431
2432         * gst-libs/gst/riff/riff-read.c: (freeform_string_to_utf8),
2433         (gst_riff_parse_info):
2434           If strings in INFO chunk are not UTF-8, do something similar to
2435           what we do for ID3v1 tags: check a number of environment variables
2436           (GST_AVI_TAG_ENCODING, GST_RIFF_TAG_ENCODING, GST_TAG_ENCODING) for
2437           character sets to try, otherwise try the current locale and/or fall
2438           back on ISO-8859-1. Fixes #360552.
2439
2440 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
2441
2442         * gst/videotestsrc/gstvideotestsrc.c:
2443         (gst_video_test_src_pattern_get_type),
2444         (gst_video_test_src_set_pattern):
2445         * gst/videotestsrc/gstvideotestsrc.h:
2446         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_checkers1),
2447         (gst_video_test_src_checkers2), (gst_video_test_src_checkers4),
2448         (gst_video_test_src_checkers8):
2449         * gst/videotestsrc/videotestsrc.h:
2450           Add a bunch of exciting new checkers patterns.
2451
2452 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
2453
2454         * gst/subparse/Makefile.am:
2455         * gst/subparse/gstsubparse.c:
2456         (gst_sub_parse_data_format_autodetect),
2457         (gst_sub_parse_format_autodetect), (handle_buffer),
2458         (gst_sub_parse_chain), (gst_subparse_type_find), (plugin_init):
2459         * gst/subparse/gstsubparse.h:
2460         * gst/subparse/tmplayerparse.c: (tmplayer_parse_line),
2461         (parse_tmplayer):
2462         * gst/subparse/tmplayerparse.h:
2463           Add support for TMPlayer-type subtitles (#362845).
2464
2465         * tests/check/elements/subparse.c: (test_tmplayer_do_test),
2466         (GST_START_TEST), (subparse_suite):
2467           Add some basic unit tests for the above.
2468
2469 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
2470
2471         * tests/check/elements/audiorate.c: (test_injector_base_init),
2472         (test_injector_class_init), (test_injector_chain),
2473         (test_injector_init), (probe_cb), (do_perfect_stream_test),
2474         (GST_START_TEST), (audiorate_suite):
2475           More tests for audiorate: inject buffers to check behaviour when
2476           buffers overlap.
2477
2478 2006-10-21  Tim-Philipp Müller  <tim at centricular dot net>
2479
2480         * tests/check/Makefile.am:
2481         * tests/check/elements/.cvsignore:
2482         * tests/check/elements/audiorate.c: (probe_cb), (got_buf),
2483         (do_perfect_stream_test), (GST_START_TEST), (audiorate_suite):
2484           Add some basic unit tests for audiorate. Disabled at the moment
2485           since it doesn't pass yet (see bug #363119).
2486
2487 2006-10-20  Tim-Philipp Müller  <tim at centricular dot net>
2488
2489         * gst/subparse/gstsubparse.c: (subrip_fix_up_markup),
2490         (parse_subrip), (handle_buffer):
2491           Add missing closing tags for markup and fix broken markup,
2492           otherwise pango won't render anything (fixes #357531). Also,
2493           make sure the text we send out is always NUL-terminated
2494           (better safe than sorry etc.).
2495
2496         * tests/check/elements/subparse.c: (test_srt_do_test),
2497         (test_srt):
2498           Some more tests for .srt incl. tests for the above stuff.
2499
2500 2006-10-20  Julien MOUTTE  <julien@moutte.net>
2501
2502         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
2503         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
2504         Patch by: Stefan Kost  <ensonic@users.sf.net>
2505         Try to redraw borders only when needed. Apparently this consumes
2506         resources on small devices... :-O (#363607)
2507
2508 2006-10-20  Michael Smith  <msmith@fluendo.com>
2509
2510         * gst/tcp/gstmultifdsink.c:
2511         (gst_multi_fd_sink_client_queue_buffer):
2512           If caps change, then update the client's idea of the caps so that we
2513           don't end up re-sending streamheaders for every single buffer after
2514           the caps change.
2515
2516 2006-10-20  Michael Smith  <msmith@fluendo.com>
2517
2518         * ext/ogg/gstoggparse.c: (gst_ogg_parse_dispose),
2519         (gst_ogg_parse_append_header), (gst_ogg_parse_chain):
2520           Set caps on pushed buffers; fix up refcounting of caps objects.
2521
2522 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
2523
2524         * gst/typefind/gsttypefindfunctions.c: (mmsh_type_find),
2525         (plugin_init):
2526           Typefind mmsh header data packet to application/x-mmsh (#362625).
2527
2528 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
2529
2530         * tests/check/Makefile.am:
2531         * tests/check/elements/.cvsignore:
2532         * tests/check/elements/subparse.c: (buffer_from_static_string),
2533         (setup_subparse), (teardown_subparse), (test_srt_do_test),
2534         (GST_START_TEST), (subparse_suite):
2535           Add very simple unit test for subparse.
2536
2537 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
2538
2539         * gst/subparse/gstsubparse.c: (strip_trailing_newlines),
2540         (parse_subrip):
2541           Strip trailing newlines from subtitle text output.
2542
2543 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
2544
2545         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
2546         (gst_sub_parse_change_state):
2547           Fix memleak; clear subparse->textbuf n state change function.
2548
2549 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
2550
2551         * gst/subparse/gstsubparse.c:
2552         (gst_sub_parse_data_format_autodetect):
2553           Don't require subrip (.srt) files to start with a chunk number of 1.
2554
2555 2006-10-18  Wim Taymans  <wim@fluendo.com>
2556
2557         * gst-libs/gst/audio/gstbaseaudiosink.c:
2558         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
2559         * gst-libs/gst/audio/gstbaseaudiosink.h:
2560         Extract rate from the NEWSEGMENT event.
2561         Use commit_full to also take rate adjustment into account when writing
2562         samples to the ringbuffer.
2563         
2564         * gst-libs/gst/audio/gstringbuffer.c:
2565         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit),
2566         (gst_ring_buffer_read):
2567         * gst-libs/gst/audio/gstringbuffer.h:
2568         Added _commit_full() to also take rate into account.
2569         Use simple interpolation algorithm to resample audio.
2570         API: gst_ring_buffer_commit_full()
2571
2572         * tests/examples/seek/scrubby.c: (speed_cb), (do_seek):
2573         * tests/examples/seek/seek.c: (segment_done):
2574         Don't try to seek with 0.0 rate, just pause instead.
2575         Remove bogus debug line.
2576
2577 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
2578
2579         * gst/playback/gstplaybasebin.c: (subbin_startup_sync_msg),
2580         (setup_source):
2581           Catch async errors when starting up the subtitle bin, so we can
2582           stop waiting and continue with the main film instead of hanging
2583           forever. Fixes #339366.
2584
2585         * tests/check/elements/playbin.c: (playbin_suite):
2586           Enable unit test for the above.
2587
2588 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
2589
2590         * tests/check/Makefile.am:
2591         * tests/check/elements/.cvsignore:
2592         * tests/check/elements/playbin.c: (GST_START_TEST),
2593         (gst_red_video_src_uri_get_type),
2594         (gst_red_video_src_uri_get_protocols),
2595         (gst_red_video_src_uri_get_uri), (gst_red_video_src_uri_set_uri),
2596         (gst_red_video_src_uri_handler_init),
2597         (gst_red_video_src_init_type), (gst_red_video_src_base_init),
2598         (gst_red_video_src_create), (gst_red_video_src_class_init),
2599         (gst_red_video_src_init), (plugin_init), (playbin_suite):
2600           Some small and basic unit tests for playbin; not very useful yet,
2601           but at least a start.
2602
2603 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
2604
2605         * gst/playback/gstplaybin.c: (setup_sinks):
2606           The old pad activation spiel.
2607
2608 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
2609
2610         * gst/playback/gstplaybasebin.c: (setup_source):
2611           Don't hang forever if the subbin already fails to start up in 
2612           the state change to PAUSED (#339366).
2613
2614 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
2615
2616         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_list_channels),
2617         (gst_tuner_set_channel), (gst_tuner_get_channel),
2618         (gst_tuner_list_norms), (gst_tuner_set_norm), (gst_tuner_get_norm),
2619         (gst_tuner_set_frequency), (gst_tuner_get_frequency),
2620         (gst_tuner_signal_strength), (gst_tuner_find_norm_by_name),
2621         (gst_tuner_find_channel_by_name):
2622           Fix some function guards, add some more function guards.
2623
2624 2006-10-17  Jan Schmidt  <thaytan@mad.scientist.com>
2625
2626         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
2627         (remove_element_chain):
2628         Don't return a pad from get_our_ghost_pad unless it is actually the
2629         one we want.
2630         Change a cast in remove_element_chain slightly.
2631
2632 2006-10-13  Julien MOUTTE  <julien@moutte.net>
2633
2634         * tests/examples/seek/seek.c: (do_seek), (start_seek),
2635         (rate_spinbutton_changed_cb), (segment_done), (msg_state_changed):
2636         Segment seeking needs to use the rate and set stop to -1.
2637
2638 2006-10-13  Wim Taymans  <wim@fluendo.com>
2639
2640         * gst-libs/gst/audio/gstbaseaudiosink.c:
2641         (gst_base_audio_sink_setcaps):
2642         Don't crash when ringbuffer is not yet created.
2643         Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
2644         Fixes #361634.
2645
2646         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
2647         * gst/playback/gststreamselector.c:
2648         (gst_stream_selector_request_new_pad):
2649         Activate pads befre adding them to running elements.
2650
2651 2006-10-13  Julien MOUTTE  <julien@moutte.net>
2652
2653         * tests/examples/seek/seek.c: (do_seek), (start_seek),
2654         (rate_spinbutton_changed_cb), (msg_state_changed): Stop the scale
2655         updater when we start grabing the slider. Don't wait for the
2656         pipeline to be PAUSED.
2657
2658 2006-10-13  Tim-Philipp Müller  <tim at centricular dot net>
2659
2660         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_list_tracks),
2661         (gst_mixer_set_volume), (gst_mixer_get_volume),
2662         (gst_mixer_set_mute), (gst_mixer_set_option),
2663         (gst_mixer_get_option), (gst_mixer_mute_toggled),
2664         (gst_mixer_record_toggled), (gst_mixer_volume_changed),
2665         (gst_mixer_option_changed):
2666           Guard mixer interface functions against bogus arguments.
2667
2668 2006-10-12  Julien MOUTTE  <julien@moutte.net>
2669
2670         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
2671         (play_cb), (pause_cb), (stop_cb), (rate_spinbutton_changed_cb),
2672         (msg_state_changed), (main): Use state-changed messages to trigger
2673         start/stop of scale update timer. Indeed the scale slider was
2674         jumping here and there because the update timer was activated 
2675         before seek completed. This fixes instant applying of rate changes
2676         by pressing the spinbutton like a crazy man !
2677
2678 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
2679
2680         Patch by: Sebastien Cote  <sebas642 at yahoo.ca>
2681
2682         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
2683         (gst_basertppayload_finalize):
2684           Fix two small memory leaks (#361456).
2685
2686 2006-10-10  Julien MOUTTE  <julien@moutte.net>
2687
2688         * tests/examples/seek/seek.c: (do_seek),
2689         (rate_spinbutton_changed_cb): When changing spinbutton we try
2690         to change the rate on the fly.
2691
2692 2006-10-10  Wim Taymans  <wim@fluendo.com>
2693
2694         * gst-libs/gst/riff/riff-ids.h:
2695         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
2696         (gst_riff_create_audio_template_caps):
2697         Add WMS caps.
2698
2699 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2700
2701         Patch by: Josep Torre Valles <josep@fluendo.com>
2702
2703         * ext/gnomevfs/gstgnomevfssink.c:
2704         * ext/gnomevfs/gstgnomevfssrc.c:
2705         Fix URI interface implementation return type.
2706         * ext/pango/gsttextoverlay.c: (gst_text_overlay_set_property):
2707         Fix what looks like a copy/paste issue when assigning values.
2708         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
2709         (gst_audio_filter_template_get_type):
2710         Cast to prevent Forte warnings.
2711         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
2712         Fix URI interface implementation return type.
2713         gst_pad_query_position requires a signed integer pointer as
2714         3rd parameter, GstClockTime is unsigned.
2715         * gst/audioconvert/audioconvert.c:
2716         Fix integer overflow when treated as signed.
2717         * gst/audioresample/resample.c: (resample_add_input_data):
2718         Cast to prevent warnings on Forte.
2719         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette):
2720         Fix integer overflow when treated as signed.
2721         * gst/ffmpegcolorspace/imgconvert_template.h:
2722         Fix integer overflow when treated as signed. RGBA_OUT shifts bits.
2723         * gst/playback/gstdecodebin.c: (queue_filled_cb),
2724         (cleanup_decodebin):
2725         Who initialises a guint to -1!
2726         Cast function pointers to prevent warnings on Forte.
2727         * gst/playback/gstplaybasebin.c: (queue_deadlock_check),
2728         (queue_threshold_reached):
2729         Cast function pointers correctly to prevent warnings on Forte.
2730         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
2731         Cast function pointers correctly to prevent warnings on Forte.
2732         * gst/subparse/gstssaparse.c: (gst_ssa_parse_setcaps):
2733         Obvious change to unsigned, 0xEF > max signed char.
2734         * gst/tcp/gstmultifdsink.c: (get_buffers_max), (count_burst_unit):
2735         GstClockTime is unsigned, initialise correctly.
2736         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
2737         Cast so pointer arithemetic doesn't cause warnings on Forte.
2738         * gst/videorate/gstvideorate.c:
2739         Use correct return value.
2740         * tests/examples/seek/scrubby.c:
2741         GstClockTime is unsigned, initialise correctly.
2742
2743 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
2744
2745         Patch by: Ferenc Gerlits  <fgerlits at gmail com>
2746
2747         * gst/typefind/gsttypefindfunctions.c:
2748           Recognise XML files and XML-like files shorter than 256 bytes as
2749           well (fixes #359237).
2750
2751 2006-10-09  Edgard Lima <edgard.lima@indt.org.br>
2752
2753         Patch by: Renato Filho <renato.filho@indt.org.br>
2754         
2755         * gst/typefind/gsttypefindfunctions.c:
2756         Added typefind functions to video/x-nuv media.
2757         
2758 2006-10-08  Tim-Philipp Müller  <tim at centricular dot net>
2759
2760         * gst-libs/gst/interfaces/xoverlay.c:
2761         (gst_x_overlay_set_xwindow_id), (gst_x_overlay_expose):
2762           Some more guards against invalid input.
2763
2764 2006-10-07  Julien MOUTTE  <julien@moutte.net>
2765
2766         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event): 
2767         Useless goto.
2768         * tests/examples/seek/seek.c: (do_seek),
2769         (rate_spinbutton_changed_cb), (main): Add a rate spinbutton in
2770         seek example to experiment with rates != 1.0 (reverse playback !)
2771
2772 2006-10-06  Stefan Kost  <ensonic@users.sf.net>
2773
2774         * gst-libs/gst/interfaces/xoverlay.c:
2775           Unref message in doc-example (spotted by Robert McQueen)
2776
2777 2006-10-06  Wim Taymans  <wim@fluendo.com>
2778
2779         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2780         (mpeg1_parse_header), (mpeg1_sys_type_find):
2781         printf fix.
2782
2783 2006-10-06  Wim Taymans  <wim@fluendo.com>
2784
2785         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
2786         (close_pad_link):
2787         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
2788         Activate dynamic pads before adding them to the element.
2789
2790 2006-10-06  Michael Smith  <msmith@fluendo.com>
2791
2792         * gst-libs/gst/floatcast/floatcast.h:
2793           Fix obviously-bogus macros; use the correct types.
2794
2795 2006-10-06  Wim Taymans  <wim@fluendo.com>
2796
2797         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2798         (gst_base_rtp_depayload_change_state):
2799         Also call parent state change function to activate pads.
2800
2801         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2802         (mpeg1_parse_header), (mpeg1_sys_type_find):
2803         Add some more debug info in mpeg typefinding.
2804
2805 2006-10-06  Michael Smith  <msmith@fluendo.com>
2806
2807         * ext/theora/theoradec.c: (theora_dec_chain):
2808           Zero byte theora packets are valid and well-defined; don't warn on
2809           them.
2810
2811 2006-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
2812
2813         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
2814         (gst_multi_fd_sink_get_stats), (find_limits),
2815         (gst_multi_fd_sink_queue_buffer):
2816           API: add dropped_buffers to the get-stats GValueArray
2817
2818 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
2819
2820         * ext/alsa/gstalsadeviceprobe.c:
2821         (gst_alsa_device_property_probe_get_values):
2822         * ext/alsa/gstalsasink.c: (set_hwparams):
2823         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_elem_pad),
2824         (gst_ogg_chain_new_stream), (gst_ogg_demux_read_chain):
2825         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers),
2826         (gst_ogg_mux_process_best_pad):
2827         * ext/ogg/gstoggparse.c: (gst_ogg_parse_new_stream),
2828         (gst_ogg_parse_chain):
2829         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
2830         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
2831         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_setup),
2832         (gst_vorbis_enc_buffer_check_discontinuous):
2833         * ext/vorbis/vorbisparse.c: (vorbis_parse_src_query):
2834         * gst-libs/gst/audio/gstbaseaudiosink.c:
2835         (gst_base_audio_sink_render):
2836         * gst-libs/gst/cdda/gstcddabasesrc.c:
2837         (gst_cdda_base_src_handle_track_seek):
2838         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2839         (gst_base_rtp_depayload_push_full):
2840         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
2841         * gst/audioresample/resample.c: (resample_input_pushthrough):
2842         * gst/playback/gstplaybasebin.c: (queue_out_of_data):
2843         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
2844         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2845         (wavpack_type_find):
2846         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
2847         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
2848         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
2849         * tests/check/elements/volume.c: (GST_START_TEST):
2850           Printf format fixes.
2851
2852 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
2853
2854         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_caps):
2855           Fix a simple mistake (see the docs)
2856           Fixes #359580
2857
2858 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
2859
2860         * docs/plugins/Makefile.am:
2861         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2862         * docs/plugins/gst-plugins-base-plugins-sections.txt:
2863         * docs/plugins/gst-plugins-base-plugins.args:
2864         * docs/plugins/gst-plugins-base-plugins.hierarchy:
2865         * docs/plugins/inspect/plugin-adder.xml:
2866         * docs/plugins/inspect/plugin-alsa.xml:
2867         * docs/plugins/inspect/plugin-audioconvert.xml:
2868         * docs/plugins/inspect/plugin-audiorate.xml:
2869         * docs/plugins/inspect/plugin-audioresample.xml:
2870         * docs/plugins/inspect/plugin-audiotestsrc.xml:
2871         * docs/plugins/inspect/plugin-cdparanoia.xml:
2872         * docs/plugins/inspect/plugin-decodebin.xml:
2873         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
2874         * docs/plugins/inspect/plugin-gdp.xml:
2875         * docs/plugins/inspect/plugin-gnomevfs.xml:
2876         * docs/plugins/inspect/plugin-libvisual.xml:
2877         * docs/plugins/inspect/plugin-ogg.xml:
2878         * docs/plugins/inspect/plugin-pango.xml:
2879         * docs/plugins/inspect/plugin-playbin.xml:
2880         * docs/plugins/inspect/plugin-subparse.xml:
2881         * docs/plugins/inspect/plugin-tcp.xml:
2882         * docs/plugins/inspect/plugin-theora.xml:
2883         * docs/plugins/inspect/plugin-typefindfunctions.xml:
2884         * docs/plugins/inspect/plugin-video4linux.xml:
2885         * docs/plugins/inspect/plugin-videorate.xml:
2886         * docs/plugins/inspect/plugin-videoscale.xml:
2887         * docs/plugins/inspect/plugin-videotestsrc.xml:
2888         * docs/plugins/inspect/plugin-volume.xml:
2889         * docs/plugins/inspect/plugin-vorbis.xml:
2890         * docs/plugins/inspect/plugin-ximagesink.xml:
2891         * docs/plugins/inspect/plugin-xvimagesink.xml:
2892           Add vorbistag element to docs; update version numbers to 0.10.10.1.
2893
2894 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
2895
2896         Patch by: James "Doc" Livingston <doclivingston at gmail com>
2897
2898         * ext/vorbis/Makefile.am:
2899         * ext/vorbis/vorbis.c: (plugin_init):
2900         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_class_init),
2901         (vorbis_parse_parse_packet), (vorbis_parse_chain):
2902         * ext/vorbis/vorbisparse.h:
2903         * ext/vorbis/vorbistag.c: (gst_vorbis_tag_base_init),
2904         (gst_vorbis_tag_class_init), (gst_vorbis_tag_init),
2905         (gst_vorbis_tag_parse_packet):
2906         * ext/vorbis/vorbistag.h:
2907           Add new vorbistag element which derives from vorbisparse
2908           and is essentially the same as well, only that it implements
2909           the GstTagSetter interface and can modify the stream's
2910           vorbiscomment on the fly (#335635).
2911
2912         * tests/check/Makefile.am:
2913         * tests/check/elements/.cvsignore:
2914         * tests/check/elements/vorbistag.c: (setup_vorbistag),
2915         (cleanup_vorbistag), (buffer_probe), (start_pipeline),
2916         (get_buffer), (stop_pipeline), (_create_codebook_header_buffer),
2917         (_create_audio_buffer), (GST_START_TEST), (vorbistag_suite):
2918           Add unit test for new vorbistag element.
2919
2920 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
2921
2922         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init),
2923         (vorbis_parse_push_headers), (vorbis_parse_chain):
2924           Set BOS flag in packet structure to fix 'jump depends
2925           on unitialized value' errors in valgrind; various minor
2926           clean-ups.
2927
2928 2006-09-30  Jan Schmidt  <thaytan@mad.scientist.com>
2929
2930         * gst/playback/gstdecodebin.c: (close_pad_link):
2931         Fix typo in a debug statement.
2932
2933         * gst/playback/gstplaybasebin.c: (probe_triggered),
2934         (new_decoded_pad_full), (new_decoded_pad), (subs_new_decoded_pad),
2935         (gen_source_element), (source_new_pad), (analyse_source),
2936         (setup_source):
2937         When handling no_more_pads in new_decoded_pad, make sure to treat
2938         subtitle pads correctly. Fixes playback with subtitle files.
2939
2940         Move a recurring message to LOG level.
2941
2942         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
2943         The maximum value for the Xv colorkey on this Radeon is 0xFFFFFFFF,
2944         which ends up as -1 when cast to an int. Make the logic handle the
2945         max value as an unsigned mask and only change the colorkey when it's
2946         a value we recognise.
2947
2948 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
2949
2950         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2951         Removed empty * between paragraphs
2952
2953 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
2954
2955         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2956         * gst-libs/gst/rtp/README:
2957         Moved some documentation into .c file
2958
2959 2006-09-29  Wim Taymans  <wim@fluendo.com>
2960
2961         * gst/playback/gstdecodebin.c: (no_more_pads):
2962         Fix compilation.
2963
2964 2006-09-29  Wim Taymans  <wim@fluendo.com>
2965
2966         * gst/playback/gstdecodebin.c: (new_caps):
2967         Remove g_print
2968
2969         * gst/playback/gstplaybin.c:
2970         Add some docs.
2971
2972 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
2973
2974         * tests/check/Makefile.am:
2975           Re-enable cddabasesrc test to see if it works again
2976           now.
2977
2978 2006-09-29  Wim Taymans  <wim@fluendo.com>
2979
2980         * gst/playback/gstplaybasebin.c: (setup_subtitle),
2981         (gen_source_element):
2982         Handle invalid URIs a bit more gracefully.
2983
2984 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
2985
2986         * tests/check/pipelines/oggmux.c:
2987           Remove obsolete comment.
2988
2989 2006-09-29  Michael Smith  <msmith@fluendo.com>
2990
2991         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
2992         (gst_ogg_mux_release_pad), (gst_ogg_mux_push_buffer),
2993         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
2994         (gst_ogg_mux_send_headers), (gst_ogg_mux_process_best_pad),
2995         (gst_ogg_mux_collected):
2996           Commit patch from James "Doc" Livingston, adds proper EOS handling
2997           in oggmux. GStreamer can, for the first time ever, create a valid
2998           Ogg file! Yay!
2999
3000         * tests/check/pipelines/oggmux.c: (check_chain_final_state),
3001         (oggmux_suite):
3002           Reenable tests now that they pass.
3003
3004 2006-09-29  Wim Taymans  <wim@fluendo.com>
3005
3006         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
3007         Stop reading commands when EOF (we read 0) as well.
3008
3009 2006-09-28  Wim Taymans  <wim@fluendo.com>
3010
3011         * gst/playback/gstdecodebin.c: (dynamic_create), (dynamic_free),
3012         (close_pad_link), (dynamic_remove), (no_more_pads), (new_caps),
3013         (find_dynamic), (unlinked), (close_link):
3014         Implement delayed caps linking needed for element with a lot of
3015         different caps on the src pads that get fixed at runtime.
3016         Improve management of dynamic elements.
3017
3018         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
3019         (group_destroy), (group_commit), (check_queue), (queue_overrun),
3020         (gen_preroll_element), (remove_groups), (unknown_type),
3021         (add_element_stream), (no_more_pads_full), (no_more_pads),
3022         (sub_no_more_pads), (source_no_more_pads), (preroll_unlinked),
3023         (new_decoded_pad), (setup_subtitle), (array_has_value),
3024         (gen_source_element), (source_new_pad), (has_all_raw_caps),
3025         (analyse_source), (remove_decoders), (make_decoder),
3026         (remove_source), (setup_source), (finish_source), (prepare_output),
3027         (gst_play_base_bin_change_state):
3028         * gst/playback/gstplaybasebin.h:
3029         Use more _CAST instead of full type checking casts.
3030         Small cleanups, plug some leaks.
3031         Handle dynamic sources.
3032         Add some helper functions to create lists of strings used for
3033         blacklisting and other stuff.
3034         Refactor some code dealing with analysing the source.
3035         Re-enable sources without pads (like cd:// or other selfcontained
3036         elements).
3037
3038 2006-09-28  Wim Taymans  <wim@fluendo.com>
3039
3040         * gst-libs/gst/audio/gstbaseaudiosink.c:
3041         (gst_base_audio_sink_render):
3042         When we have a timestamp, we can still perform clipping.
3043         When we have no clock, we must play the sample ASAP.
3044
3045 2006-09-28  Wim Taymans  <wim@fluendo.com>
3046
3047         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
3048         Set caps on outgoing buffers.
3049
3050         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
3051         (gst_video_rate_event), (gst_video_rate_chain):
3052         * gst/videorate/gstvideorate.h:
3053         Fix videorate some more. Fixes #357977
3054
3055 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
3056
3057         * tests/check/elements/adder.c: (adder_suite):
3058           Don't set timeout to 6 seconds when we're running
3059           in valgrind ... (and how is 6 seconds longer than
3060           the default anyway?)
3061
3062 2006-09-28  Wim Taymans  <wim@fluendo.com>
3063
3064         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
3065         (gst_audio_rate_sink_event), (gst_audio_rate_convert),
3066         (gst_audio_rate_convert_segments), (gst_audio_rate_chain):
3067         Keep sink and src segment to keep track of time and support more
3068         input formats.
3069         Fix bogus next_offset and run_time calculation, don't understand how
3070         this could have worked before. Fixes #357976.
3071         Remove some unneeded vars.
3072
3073 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
3074
3075         * gst/playback/gstplaybin.c: (remove_sinks):
3076           Only remove visualisation from visbin if there is a visbin (or:
3077           don't throw warnings when closing totem without playing a file).
3078
3079 2006-09-27  Wim Taymans  <wim@fluendo.com>
3080
3081         * gst-libs/gst/audio/gstbaseaudiosink.c:
3082         (gst_base_audio_sink_render):
3083         Add some more info in a WARNING.
3084
3085         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3086         (gst_base_audio_src_create):
3087         Handle PAUSE in create function, use new -core addition to
3088         wait for playing. Fixes pausing and resuming capture from an
3089         audiosrc.
3090
3091         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
3092         (gst_ring_buffer_read):
3093         Constify some more.
3094         Caller supports interrupted reads now.
3095
3096 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
3097
3098         * tests/check/Makefile.am:
3099           Another attempt to make the gen64 buildbot happy.
3100
3101 2006-09-27  Stefan Kost  <ensonic@users.sf.net>
3102
3103         Patch by: Jonathan Matthew <jonathan@kaolin.wh9.net>
3104
3105         * ext/libvisual/visual.c: (gst_visual_clear_actors),
3106         (gst_visual_chain), (gst_visual_change_state):
3107           Libvisual plugin was not passing audio data to libvisual 0.4.0 
3108           correctly. Fixes #357800
3109
3110 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
3111
3112         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline):
3113           Add timeout to _get_state() so we see which pipeline it is
3114           that causes trouble on the gen64 build bot.
3115
3116 2006-09-27  Wim Taymans  <wim@fluendo.com>
3117
3118         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3119         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_push_full),
3120         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_process),
3121         (gst_base_rtp_depayload_set_gst_timestamp):
3122         the source pad always uses fixed caps.
3123
3124 2006-09-27  Wim Taymans  <wim@fluendo.com>
3125
3126         * docs/libs/gst-plugins-base-libs-docs.sgml:
3127         * docs/libs/gst-plugins-base-libs-sections.txt:
3128         * gst-libs/gst/audio/gstaudioclock.c:
3129         * gst-libs/gst/audio/gstaudioclock.h:
3130         * gst-libs/gst/audio/gstaudiosink.c:
3131         * gst-libs/gst/audio/gstaudiosink.h:
3132         * gst-libs/gst/audio/gstaudiosrc.c:
3133         * gst-libs/gst/audio/gstbaseaudiosink.c:
3134         (gst_base_audio_sink_render):
3135         * gst-libs/gst/audio/gstbaseaudiosink.h:
3136         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init):
3137         * gst-libs/gst/audio/gstbaseaudiosrc.h:
3138         * gst-libs/gst/audio/gstringbuffer.h:
3139         Added docs for the audio libs.
3140
3141 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
3142
3143         * tests/check/Makefile.am:
3144           Temporarily disable test that fails on the bots for unknown reasons.
3145
3146 2006-09-26 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
3147
3148         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
3149         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
3150         Moved AudioCodecType into priv
3151         Renamed all gst_basertpaudiopayload to gst_base_rtp_audio_payload prefixes
3152
3153 2006-09-25  Wim Taymans  <wim@fluendo.com>
3154
3155         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
3156         (add_fakesink), (remove_fakesink), (pad_probe), (close_pad_link),
3157         (is_demuxer_element), (try_to_link_1), (get_our_ghost_pad),
3158         (new_pad):
3159         Cleanups and small leak fixes.
3160         Added Depayloaders to valid list of autopluggable elements.
3161
3162 2006-09-25  Wim Taymans  <wim@fluendo.com>
3163
3164         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
3165         (gst_play_bin_vis_blocked), (gst_play_bin_set_property),
3166         (gen_video_element), (gen_text_element), (gen_audio_element),
3167         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
3168         (gst_play_bin_set_clock_func), (gst_play_bin_change_state):
3169         Detect NO_PREROLL state change returns and disable clock distribution to
3170         the sinks so that sync is disabled.
3171         Avoid some type checking and do simple casts instead.
3172         Small cleanups, fix some FIXMEs.
3173         Be more robust when linking user specified elements, catch an report
3174         errors. Fixes #357404.
3175         Fix some leaks in the error paths.
3176
3177 2006-09-25  Stefan Kost  <ensonic@users.sf.net>
3178
3179         * ChangeLog:
3180           ChangeLog surgery for missing bug-number
3181
3182 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
3183
3184         Patch by: Peter Kjellerstedt  <pkj at axis com>
3185
3186         * gst/playback/test.c:
3187           Fix compilation with uClibc and -Werror (#357591).
3188
3189 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
3190
3191         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
3192           Parse dates that are followed by a time as well (#357532).
3193
3194         * tests/check/libs/tag.c: (test_vorbis_tags):
3195           Add unit test for this.
3196
3197 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
3198
3199         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
3200         (gst_audio_convert_transform_caps):
3201         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor):
3202         * gst/videotestsrc/videotestsrc.h:
3203           A few array const-ifications.
3204
3205 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
3206
3207         * tests/check/Makefile.am:
3208           See if this makes the build bots happy.
3209
3210         * tests/check/libs/cddabasesrc.c:
3211           UTF8-ise my name.
3212
3213 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
3214
3215         Patch by: Young-Ho Cha <ganadist at chollian dot net>
3216
3217         * gst/subparse/samiparse.c: (handle_start_font),
3218         (fix_invalid_entities):
3219           More case-insensitivity for certain tags; recognise entities with
3220           decimal codes as special entities as well (#357330).
3221
3222 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
3223
3224         * gst-libs/gst/Makefile.am:
3225           Need to build tag directory before cdda.
3226
3227 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
3228
3229         * docs/libs/gst-plugins-base-libs-sections.txt:
3230         * gst-libs/gst/cdda/Makefile.am:
3231         * gst-libs/gst/cdda/gstcddabasesrc.c:
3232         (gst_cdda_base_src_base_init):
3233         * gst-libs/gst/cdda/gstcddabasesrc.h:
3234         * gst-libs/gst/tag/tag.h:
3235         * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal),
3236         (gst_tag_register_musicbrainz_tags):
3237           Move GST_TAG_CDDA_* tags into libgsttag and make libgstcddabasesrc
3238           depend on libgsttag. This is required so we can extract/read tags like
3239           DISCID without depending on libgstcddabasesrc (which used to register
3240           them).
3241
3242         * gst-libs/gst/tag/gstvorbistag.c:
3243           Add vorbiscomment mapping for CDDB_DISCID and MUSICBRAINZ_DISCID
3244           tags (also see #347848).
3245
3246         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1):
3247           Log vorbis comments we are actually writing. Const-ify array.
3248
3249 2006-09-23  Wim Taymans  <wim@fluendo.com>
3250
3251         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
3252         Improve buffering a bit by avoiding a deadlock because we cannot assume
3253         the underrun is always called.
3254
3255 2006-09-23  Wim Taymans  <wim@fluendo.com>
3256
3257         Patch by: Young-Ho Cha <ganadist at chollian dot net>
3258
3259         * gst-libs/gst/riff/riff-ids.h:
3260         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3261         (gst_riff_create_audio_template_caps):
3262         Added MPEG-4 AAC and id and caps. Fixes #357289
3263         Added WMA9 Lossless id.
3264
3265 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
3266
3267         * ext/gnomevfs/gstgnomevfssrc.c:
3268           Fix misleading docs addition.
3269
3270         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3271           Get rid of compiler warning the right way.
3272
3273 2006-09-22  Wim Taymans  <wim@fluendo.com>
3274
3275         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3276         (gst_base_rtp_depayload_finalize),
3277         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
3278         (gst_base_rtp_depayload_push_full),
3279         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_push),
3280         (gst_base_rtp_depayload_process),
3281         (gst_base_rtp_depayload_set_gst_timestamp),
3282         (gst_base_rtp_depayload_queue_release):
3283         * gst-libs/gst/rtp/gstbasertpdepayload.h:
3284         Small cleanups.
3285         Fix some leaks.
3286         Refactored the process method and added methods to push from the process
3287         vmethod.
3288         Use _scale functions.
3289         API: gst_base_rtp_depayload_push_ts
3290         API: gst_base_rtp_depayload_push
3291
3292         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
3293         timestamps are uint.
3294
3295 2006-09-22  Stefan Kost  <ensonic@users.sf.net>
3296
3297         * gst-libs/gst/interfaces/xoverlay.c:
3298           Remove unused statement from doc example.
3299
3300 2006-09-21  Stefan Kost  <ensonic@users.sf.net>
3301
3302         * gst-libs/gst/interfaces/videoorientation.c:
3303         (gst_video_orientation_iface_init),
3304         (gst_video_orientation_get_hflip),
3305         (gst_video_orientation_get_vflip),
3306         (gst_video_orientation_get_hcenter),
3307         (gst_video_orientation_get_vcenter),
3308         (gst_video_orientation_set_hflip),
3309         (gst_video_orientation_set_vflip),
3310         (gst_video_orientation_set_hcenter),
3311         (gst_video_orientation_set_vcenter):
3312           Add since tags to new API docs, ChangeLog surgery (forgot API keyword
3313           in ChangeLog)
3314
3315 2006-09-21  Tim-Philipp Müller  <tim at centricular dot net>
3316
3317         * tests/check/Makefile.am:
3318         * tests/check/elements/.cvsignore:
3319         * tests/check/elements/ffmpegcolorspace.c: (rgb_format_to_caps),
3320         (create_rgb_conversions), (rgb_conversion_free),
3321         (right_shift_colour), (fix_expected_colour), (check_rgb_buf),
3322         (got_buf_cb), (GST_START_TEST), (ffmpegcolorspace_suite):
3323           Add unit test for ffmpegcolorspace (RGB <=> RGB only so far),
3324           but disable for now since it doesn't pass (something wrong with
3325           RGBA somewhere).
3326
3327 2006-09-21  Wim Taymans  <wim@fluendo.com>
3328
3329         * gst/playback/gstplaybasebin.c: (group_commit),
3330         (queue_deadlock_check), (queue_overrun), (queue_threshold_reached),
3331         (queue_out_of_data), (gen_preroll_element),
3332         (preroll_remove_overrun), (probe_triggered):
3333         Refactor handling of overrun detection.
3334         Separate handling of group completion and deadlock detection when doing
3335         network buffering. This should fix some deadlocks that were not detected
3336         because the group was completed.
3337         Add more comments, improve debugging.
3338
3339 2006-09-21  Wim Taymans  <wim@fluendo.com>
3340
3341         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
3342         * tests/check/libs/audio.c:
3343         Some more compilation fixes.
3344
3345 2006-09-21  Wim Taymans  <wim@fluendo.com>
3346
3347         * gst-libs/gst/audio/gstringbuffer.c:
3348         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
3349         (gst_ring_buffer_read):
3350         Early morning compilation fix.
3351
3352 2006-09-20  Wim Taymans  <wim@fluendo.com>
3353
3354         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
3355         * tests/check/elements/multifdsink.c: (GST_START_TEST):
3356         * tests/check/elements/videorate.c: (GST_START_TEST):
3357         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
3358         * tests/check/pipelines/oggmux.c: (eos_buffer_probe):
3359         Fix some warnings.
3360
3361 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
3362
3363         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
3364         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
3365         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
3366           Handcrafted merge to help CVS understanding what I changed and what
3367           not.
3368
3369 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
3370
3371         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
3372         (gst_xvimagesink_get_times):
3373           change colorkey behaviour back according to #354773 comment 6/7
3374
3375 2006-09-19  Michael Smith  <msmith@fluendo.com>
3376
3377         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
3378         (gst_multi_fd_sink_class_init), (get_buffers_max), (find_limits),
3379         (gst_multi_fd_sink_recover_client),
3380         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_set_property),
3381         (gst_multi_fd_sink_get_property):
3382         * gst/tcp/gstmultifdsink.h:
3383           Implement stubbed out properties unit-type, units-soft-max,
3384           units-max, to allow specifying maximum sizes in units other than
3385           buffers.
3386           Fixes #355935
3387
3388 2006-09-19  Wim Taymans  <wim@fluendo.com>
3389
3390         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3391         (gst_riff_create_audio_template_caps):
3392         Reorder the audio formats a bit for clarity.
3393         Detect and create caps for MSGSM and MSN (WAV49).
3394         Fixes #356596.
3395
3396         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
3397         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
3398         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
3399         Small cleanups, move error handling out of normal flow for clarity.
3400
3401 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
3402
3403         * docs/libs/gst-plugins-base-libs-docs.sgml:
3404         * docs/libs/gst-plugins-base-libs.types:
3405         * gst-libs/gst/interfaces/Makefile.am:
3406         * gst-libs/gst/interfaces/videoorientation.c:
3407         (gst_video_orientation_get_type),
3408         (gst_video_orientation_iface_init),
3409         (gst_video_orientation_get_hflip),
3410         (gst_video_orientation_get_vflip),
3411         (gst_video_orientation_get_hcenter),
3412         (gst_video_orientation_get_vcenter),
3413         (gst_video_orientation_set_hflip),
3414         (gst_video_orientation_set_vflip),
3415         (gst_video_orientation_set_hcenter),
3416         (gst_video_orientation_set_vcenter):
3417         * gst-libs/gst/interfaces/videoorientation.h:
3418           API: Add new interface to control video orientation (fixes #354908)
3419
3420 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
3421
3422         * gst/videotestsrc/gstvideotestsrc.c:
3423           Use G_UNLIKELY in _create and log one more detail.
3424           
3425         (gst_video_test_src_get_times), (gst_video_test_src_create):
3426         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
3427           Use gst_util_uint64_scale_int in _get_times().
3428
3429 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
3430
3431         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support)
3432           Give better warning message (add object and detail).
3433
3434 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
3435
3436         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
3437         (gst_xvimagesink_get_times):
3438           xvimage assumed that XV_COLORKEY can be set in RGB888 format (fixes
3439           #354773), use gst_util_uint64_scale_int in _get_times()
3440
3441 2006-09-18  Michael Smith  <msmith@fluendo.com>
3442
3443         * ext/ogg/gstoggmux.c: (gst_ogg_mux_push_buffer):
3444           Timestamps are unsigned; comparision against GST_CLOCK_TIME_NONE was
3445           always true, leading to dropping all timestamps.
3446
3447 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
3448
3449         * ext/libvisual/visual.c: (gst_vis_src_negotiate),
3450         (gst_visual_chain), (gst_visual_change_state):
3451           update to work also with libvisual 0.4 API, fix double unref (#355914)
3452           
3453         * tools/gst-launch-ext.1.in:
3454         * tools/gst-visualise.1.in:
3455           remove references to old man-pages
3456
3457         * tests/examples/seek/seek.c: (main):
3458           add real meadi-buttons, add tool-tips for the seek-options, arrange
3459           seek options in a table
3460
3461 2006-09-18  Michael Smith  <msmith@fluendo.com>
3462
3463         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear),
3464         (gst_ogg_mux_push_buffer):
3465           Don't generate out-of-order timestamps from oggmux, instead clamp
3466           output timestamps to be >= the previously output ts.
3467           Fixes #355595
3468
3469 2006-09-18  Michael Smith  <msmith@fluendo.com>
3470
3471         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
3472         (gst_multi_fd_sink_class_init):
3473           Updates, fixes, and typo corrections for multifdsink. No functional
3474           changes.
3475
3476 2006-09-17  Michael Smith  <msmith@fluendo.com>
3477
3478         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find):
3479           Don't crash on truncated files - check that we got an 8 byte buffer
3480           before trying to memcmp it.
3481
3482 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
3483
3484         * gst/playback/gstplaybasebin.c: (get_active_source):
3485           Make stream-switching appear instant to the application
3486           (ie. make sure that a g_object_get on 'current-foo' returns
3487           the stream previously set with g_object_set(). Totem needs
3488           this to update stream-related meta-info (like audio-codec)
3489           correctly when switching streams.
3490
3491 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
3492
3493         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer),
3494         (gst_alsa_mixer_ensure_track_list):
3495           Try harder to guess which mixer track is the master mixer
3496           track (instead of just taking the first one that has a pvolume).
3497           Fixes #342228.
3498
3499 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
3500
3501         reviewed by: <delete if not using a buddy>
3502
3503         * gst-libs/gst/audio/audio.h:
3504         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
3505
3506 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
3507
3508         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
3509         (gst_audio_convert_transform_caps):
3510           Get structure-name just once.
3511
3512 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
3513
3514         * tests/check/elements/audioresample.c: (GST_START_TEST):
3515         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3516         * tests/check/elements/volume.c: (GST_START_TEST):
3517         * tests/check/elements/vorbisdec.c: (GST_START_TEST):
3518         * tests/check/pipelines/oggmux.c: (validate_ogg_page), (eos_watch),
3519         (test_pipeline), (GST_START_TEST):
3520         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
3521         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
3522           Fix big batch of compiler warnings.
3523
3524 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
3525
3526         * ext/gnomevfs/gstgnomevfssrc.c:
3527           Add docs about icydemux usage in connection with gnomevfssrc
3528
3529         * ext/libvisual/visual.c:
3530         * ext/ogg/gstoggaviparse.c:
3531         * ext/ogg/gstoggdemux.c:
3532         * ext/ogg/gstoggmux.c:
3533         * ext/ogg/gstoggparse.c:
3534         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
3535         * gst-libs/gst/audio/gstaudiosink.c:
3536         * gst-libs/gst/audio/gstaudiosrc.c:
3537         * gst/audiorate/gstaudiorate.c:
3538           More G_OBJECT macro fixing.
3539
3540         * gst/audiotestsrc/gstaudiotestsrc.h:
3541           Fix wrong info in header due to copy & paste
3542
3543 2006-09-15  Wim Taymans  <wim@fluendo.com>
3544
3545         * gst-libs/gst/audio/gstbaseaudiosink.c:
3546         (gst_base_audio_sink_get_time), (gst_base_audio_sink_callback):
3547         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3548         (gst_base_audio_src_get_time), (gst_base_audio_src_fixate),
3549         (gst_base_audio_src_get_times), (gst_base_audio_src_get_offset),
3550         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
3551         Do the delay calculation in the source/sink base classes as this is
3552         specific for the capture/playback mode.
3553         Try to fixate a bit better, like round depth up to a multiple of 8
3554         bigger than width.
3555         Handle underruns correctly by marking DISCONT on buffers and adjusting
3556         timestamps to handle the gap.
3557         Set offset/offset_end correctly on buffers.
3558
3559         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_pause),
3560         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
3561         (gst_ring_buffer_read):
3562         Remove resync and underrun recovery from the ringbuffer.
3563         Fix ringbuffer read code on under/overrun.
3564
3565 2006-09-15  Wim Taymans  <wim@fluendo.com>
3566
3567         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
3568         (gst_play_base_bin_init), (fill_buffer), (check_queue),
3569         (queue_threshold_reached), (gst_play_base_bin_set_property),
3570         (gst_play_base_bin_get_property):
3571         * gst/playback/gstplaybasebin.h:
3572         Don't use a 0 low watermark when buffering, it is catching starvation
3573         way too late. Instead, use a 3 second queue with 30 and 95
3574         percent low/high watermarks. 
3575         Added queue-min-threshold property to configure low watermark.
3576         Use new _buffering message API.
3577         Make queue_threshold variable big enough to store a uint64 time value.
3578         API: playbin::queue-min-threshold property.
3579
3580 2006-09-15  Wim Taymans  <wim@fluendo.com>
3581
3582         * configure.ac:
3583         We require 0.10.10.1 now because of _wait_preroll().
3584
3585         * gst-libs/gst/audio/gstbaseaudiosink.c:
3586         (gst_base_audio_sink_render):
3587         Use gst_base_sink_wait_preroll().
3588
3589 2006-09-15  Wim Taymans  <wim@fluendo.com>
3590
3591         * ext/alsa/gstalsasink.c: (xrun_recovery), (gst_alsasink_write):
3592         * ext/alsa/gstalsasrc.c: (xrun_recovery), (gst_alsasrc_read):
3593         Use DEBUG_OBJECT more.
3594
3595 === release 0.10.10 ===
3596
3597 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
3598
3599         patch by: Michael Smith <msmith at fluendo dot com>
3600
3601         * gst/tcp/gstmultifdsink.c: (is_sync_frame),
3602         (gst_multi_fd_sink_client_queue_buffer),
3603         (gst_multi_fd_sink_new_client):
3604         * tests/check/elements/multifdsink.c: (GST_START_TEST),
3605         (multifdsink_suite):
3606           Fix implementation of sync-method 'next-keyframe'
3607           Closes #354594
3608
3609 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
3610
3611         patch by: Wim Taymans <wim at fluendo dot com>
3612
3613         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
3614         This patch removes the RANDOM flag that was incorrectly introduced with
3615         revision 1.91.  Fixes #354590
3616
3617 2006-09-05  Tim-Philipp Müller  <tim at centricular dot net>
3618
3619         * tests/check/Makefile.am:
3620           Random variation in Makefile line to see if it makes the
3621           gen64-base-full bot any happier.
3622
3623 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
3624
3625         * tests/check/pipelines/oggmux.c: (oggmux_suite):
3626           Disable test that fails at the moment (killed after timeout).
3627
3628 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
3629
3630         Patch by: James Livingston  <doclivingston at gmail.com>
3631
3632         * tests/check/Makefile.am:
3633         * tests/check/pipelines/.cvsignore:
3634         * tests/check/pipelines/oggmux.c: (get_page_codec),
3635         (check_chain_final_state), (fail_if_audio), (validate_ogg_page),
3636         (eos_buffer_probe), (start_pipeline), (stop_pipeline), (eos_watch),
3637         (test_pipeline), (test_vorbis), (test_theora), (test_vorbis_theora),
3638         (test_theora_vorbis), (oggmux_suite):
3639           Add simple unit test for oggmux from #337026 with checking for the
3640           EOS flags disabled for the time being.
3641
3642 2006-09-04  Wim Taymans  <wim@fluendo.com>
3643
3644         patch by: Alessandro Dessina <alessandro nnva org>
3645
3646         * ext/ogg/gstoggmux.c:
3647         Add cmml caps to oggmux. Fixes #353912
3648
3649 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
3650
3651         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3652           Returning a return value often helps. In this case, we
3653           don't need the return value anyway, so just get rid of it.
3654           Should make build bots much happier.
3655
3656 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
3657
3658         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure),
3659         (paint_get_structure), (gst_video_test_src_get_size),
3660         (gst_video_test_src_smpte), (gst_video_test_src_snow),
3661         (gst_video_test_src_unicolor), (paint_setup_AYUV),
3662         (paint_hline_AYUV), (paint_setup_ARGB8888), (paint_setup_ABGR8888),
3663         (paint_setup_RGBA8888), (paint_setup_BGRA8888), (paint_hline_str4):
3664         * gst/videotestsrc/videotestsrc.h:
3665           Add support for AYUV and the various RGBA formats. Initialise
3666           fields of paintinfo structs allocated on the stack.
3667
3668         * tests/check/elements/videotestsrc.c: (right_shift_colour),
3669         (fix_expected_colour), (check_rgb_buf), (got_buf_cb),
3670         (check_rgb_buf), (videotestsrc_suite):
3671           Add unit tests for videotestsrc's RGB output.
3672
3673 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
3674
3675         * gst/videotestsrc/gstvideotestsrc.c:
3676         (gst_video_test_src_pattern_get_type),
3677         (gst_video_test_src_set_pattern):
3678         * gst/videotestsrc/gstvideotestsrc.h:
3679         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor),
3680         (gst_video_test_src_black), (gst_video_test_src_white),
3681         (gst_video_test_src_red), (gst_video_test_src_green),
3682         (gst_video_test_src_blue):
3683         * gst/videotestsrc/videotestsrc.h:
3684           Add more uni-colour patterns ("white", "red", "green", and "blue").
3685
3686 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
3687
3688         * gst/videotestsrc/videotestsrc.c: (paint_setup_YVYU):
3689           Fix stride for YVYU, should be word-aligned (#353658).
3690
3691 2006-08-31  Tim-Philipp Müller  <tim at centricular dot net>
3692
3693         * gst/adder/gstadder.c: (gst_adder_src_event):
3694           Fix build.
3695
3696 2006-08-31  Edward Hervey  <edward@fluendo.com>
3697
3698         * gst/adder/gstadder.c: (forward_event_func),
3699         (gst_adder_src_event), (gst_adder_collected),
3700         (gst_adder_change_state):
3701         * gst/adder/gstadder.h:
3702         Remember the start position asked in the incoming seeks, so we can
3703         output GST_EVENT_NEW_SEGMENT with a correct position value (instead
3704         of assuming it will always be 0).
3705
3706 2006-08-31  Edward Hervey  <edward@fluendo.com>
3707
3708         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
3709         (gst_ogg_demux_finalize), (gst_ogg_demux_perform_seek),
3710         (gst_ogg_demux_loop):
3711         Send the GST_EVENT_NEW_SEGMENT from the streaming thread.
3712
3713 2006-08-30  Tim-Philipp Müller  <tim at centricular dot net>
3714
3715         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3716         (gst_ffmpegcsp_get_unit_size):
3717           Return FALSE instead of returning a random false unit
3718           size when the format isn't known/supported (even if
3719           this shouldn't happen under normal circumstances).
3720
3721 2006-08-29  Wim Taymans  <wim@fluendo.com>
3722
3723         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
3724
3725         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create),
3726         (gst_gnome_vfs_src_start):
3727         Try harder to get the size from a uri by using _info_uri() when
3728         _info_from_handle() does not give us enough info. 
3729         Also follow symlinks when getting the size.
3730         Partially Fixes #332864.
3731
3732 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
3733
3734         Patch by: Viktor Peters  <viktor dot peters at gmail dot com>
3735
3736         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
3737         (gst_alsa_mixer_update), (gst_alsa_mixer_get_volume),
3738         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
3739         (gst_alsa_mixer_set_record):
3740         * ext/alsa/gstalsamixertrack.c:
3741         (gst_alsa_mixer_track_update_alsa_capabilities),
3742         (alsa_track_has_cap), (gst_alsa_mixer_track_new),
3743         (gst_alsa_mixer_track_update):
3744         * ext/alsa/gstalsamixertrack.h:
3745           Improve and fix mixer track handling, in particular better handling
3746           of alsa's pvolume/pswitch/cvolume/cswitch capabilities; create
3747           separate track objects for tracks that have both capture and playback
3748           volume (and label them differently as well so they're not mistakenly
3749           assumed to be duplicates); classify mixer tracks that only affect
3750           the audible volume of something (rather than the capture volume)
3751           as playback tracks. Redefine/fix meaning of RECORD and MUTE flags
3752           for capture tracks to correspond to alsa-pswitch alsa-cswitch
3753           (following the meaning documented in the mixer interface header
3754           file); add support for alsa's exclusive cswitch groups; update/sync
3755           state/flags better if mixer settings are changed by another
3756           application. Fixes #336075.
3757
3758 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
3759
3760         * gst/playback/gstplaybin.c:
3761           Improve docs: add section about BUFFERING messages sent by playbin.
3762
3763 2006-08-29  Michael Smith  <msmith@fluendo.com>
3764
3765         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_push_buffer),
3766         (gst_vorbis_enc_buffer_check_discontinuous),
3767         (gst_vorbis_enc_chain):
3768           Ignore explicit DISCONT marked on buffers (which is often spurious,
3769           particularly when using multiple segments), in favour of solely
3770           using the timestamps/durations.
3771
3772 2006-08-29  Edward Hervey  <edward@fluendo.com>
3773
3774         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
3775         Don't rely on incoming buffers offset anymore, since it is completely
3776         broken when using multiple segments.
3777         Instead convert the incoming buffers timestamp to running time, and
3778         then convert that value to the offsets.
3779         Also inform GstSegment of the last outputted stop position, which is
3780         needed if we received several segments with an unknown stop value.
3781
3782 2006-08-29  Thomas Vander Stichele  <thomas at apestaart dot org>
3783
3784         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
3785           fix buffer unreffing on a header push failure
3786
3787 2006-08-28  Wim Taymans  <wim@fluendo.com>
3788
3789         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_sink_event),
3790         (gst_audio_rate_chain):
3791         Make the metadata of the buffer writable before changing its
3792         flags.
3793
3794 2006-08-28  Wim Taymans  <wim@fluendo.com>
3795
3796         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
3797         (gst_audio_rate_setcaps), (gst_audio_rate_init),
3798         (gst_audio_rate_sink_event), (gst_audio_rate_src_event),
3799         (gst_audio_rate_chain), (gst_audio_rate_change_state):
3800         Fix audiorate some more.
3801         Reset and resync counters on flush and READY.
3802         Handle the DISCONT flag correctly.
3803         Use GstSegment to track position.
3804         Fail when not negotiated.
3805         Fixes #353234.
3806
3807 2006-08-25  Michael Smith  <msmith@fluendo.com>
3808
3809         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
3810           Fix spelling.
3811           Remove accidently included debug line.
3812
3813 2006-08-25  Wim Taymans  <wim@fluendo.com>
3814
3815         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
3816         Small cleanups.
3817         If a buffer is received with no caps, make the buffer metadata
3818         writable and set the caps, making sure that we don't screw up the
3819         refcounts.
3820
3821 2006-08-25  Michael Smith  <msmith@fluendo.com>
3822
3823         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset),
3824         (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_chain):
3825           Fix memory leaks and misleading debug messages, add a couple of
3826           comments.
3827
3828         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats),
3829         (gst_multi_fd_sink_render):
3830           Do not use gst_buffer_make_writable() in a basesink render method,
3831           as it may incorrectly unref the buffer. Instead, use convoluted
3832           dance to avoid copying the buffer except when we need to.
3833
3834 2006-08-25  Michael Smith  <msmith@fluendo.com>
3835
3836         * ext/vorbis/vorbisenc.c:
3837         (gst_vorbis_enc_buffer_check_discontinuous):
3838           Allow very small discontinuities in the timestamps. These we can't
3839           do anything useful with anyway (because vorbis's timestamps have
3840           only sample granularity), and are commonly produced by elements with
3841           minor bugs. Allow up to 1/2 a sample out.
3842           Fixes #351742.
3843
3844 2006-08-24  Wim Taymans  <wim@fluendo.com>
3845
3846         * tests/examples/seek/seek.c: (seek_cb), (start_seek), (stop_seek),
3847         (play_scrub_toggle_cb), (main):
3848         Add a checkbox to enable play scrubbing. Makes it possible to disable
3849         normal scrubbing.
3850
3851 2006-08-23  Stefan Kost  <ensonic@users.sf.net>
3852
3853         * tests/check/elements/.cvsignore:
3854           make buildbot happy
3855
3856 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
3857
3858         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
3859         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init),
3860         (gst_ogm_parse_class_init), (gst_ogm_parse_dispose),
3861         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
3862         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
3863         (gst_ogm_parse_stream_header), (gst_ogm_parse_comment_packet),
3864         (gst_ogm_text_parse_strip_trailing_zeroes),
3865         (gst_ogm_parse_data_packet), (gst_ogm_parse_chain),
3866         (gst_ogm_parse_sink_event), (gst_ogm_parse_change_state):
3867           Refactor ogm parse, do better input checking, misc. clean-ups.
3868           Cache incoming events and push them once the source pad has
3869           been created. Don't pass unterminated strings to sscanf().
3870           Strip trailing zeroes from subtitle text output, since they
3871           are not valid UTF-8. Don't push vorbiscomment packets on
3872           the subtitle text pad. Output perfect streams if possible.
3873
3874 2006-08-23  Wim Taymans  <wim@fluendo.com>
3875
3876         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
3877         Waits for tasks to settle down so that we clean up correctly for 
3878         valgrind.
3879
3880 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
3881
3882         * tests/check/libs/tag.c: (GST_START_TEST), (taglists_are_equal):
3883           Unit test fixes: \377 is more likely to fit into 8 bits than \777;
3884           actually return return value in taglists_are_equal.
3885
3886 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
3887
3888         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
3889           Fix crash due to broken bitstream parsing on x86-64: can't make
3890           any assumptions about sizeof(struct) due to alignment/packing
3891           differences on different architectures. Fixes #351790.
3892
3893 2006-08-22  Wim Taymans  <wim@fluendo.com>
3894
3895         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
3896         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
3897         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
3898         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
3899         (gst_riff_parse_info):
3900         Protect public functions against bad input.
3901         Do some cleanups.
3902         Fix documentation.
3903
3904 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
3905
3906         * gst-libs/gst/riff/riff-ids.h:
3907         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
3908           Add voxware audio IDs (even if we can't play it) (#351795).
3909
3910 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
3911
3912         * gst-libs/gst/riff/riff-media.c:
3913         (gst_riff_create_video_template_caps),
3914         (gst_riff_create_audio_template_caps),
3915         (gst_riff_create_iavs_template_caps):
3916           Const-ify some arrays and use G_N_ELEMENTS instead
3917           of wasting oodles of RAM on terminator bits.
3918
3919 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
3920
3921         * gst-libs/gst/tag/gstvorbistag.c:
3922         (gst_tag_list_to_vorbiscomment_buffer):
3923         * tests/check/libs/tag.c: (GST_START_TEST):
3924           And the same for _to_vorbiscomment_buffer(): allow
3925           id_data_len == 0 for speex.
3926
3927 2006-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
3928
3929         * configure.ac:
3930         * docs/plugins/Makefile.am:
3931         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3932         * docs/plugins/gst-plugins-base-plugins-sections.txt:
3933         * docs/plugins/inspect/plugin-gdp.xml:
3934         * gst/gdp/Makefile.am:
3935         * tests/check/Makefile.am:
3936           Move GDP plugin to -base from -bad.  Closes #347783.
3937
3938 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
3939
3940         * gst-libs/gst/tag/gstvorbistag.c:
3941         (gst_tag_list_from_vorbiscomment_buffer):
3942           Allow id_data_len == 0 (needed for vorbis comments in Speex files).
3943           Also add some checks to make sure we don't memcmp() beyond the end of
3944           vorbiscomment buffer if the ID to check for is larger than the buffer.
3945
3946         * tests/check/libs/tag.c: (GST_START_TEST):
3947           Some more tests for gst_tag_list_from_vorbiscomment_buffer().
3948
3949 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
3950
3951         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1),
3952         (gst_vorbis_enc_set_metadata):
3953           Use vorbis comment utility functions from libgsttag
3954           instead of re-inventing the wheel (partially fixes #347091).
3955
3956 2006-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
3957
3958         * tests/check/elements/audioconvert.c: (GST_START_TEST):
3959         Fix leaks. Wait for state transitions that might happen ASYNC, as well
3960         as some that won't.
3961
3962 2006-08-21  Wim Taymans  <wim@fluendo.com>
3963
3964         * docs/libs/Makefile.am:
3965         * docs/libs/gst-plugins-base-libs-sections.txt:
3966         * docs/libs/gst-plugins-base-libs.types:
3967         Don't try to GObject scan the netbuffer as it's not a GObject.
3968         Fixes #351308.
3969
3970         * gst-libs/gst/netbuffer/gstnetbuffer.c:
3971         * gst-libs/gst/netbuffer/gstnetbuffer.h:
3972         Document GstNetBuffer.
3973
3974 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
3975
3976         * tests/check/elements/audioconvert.c: (GST_START_TEST),
3977         (audioconvert_suite):
3978           Add testcase for caps-size-explosion
3979
3980 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
3981
3982         * gst/audioconvert/gstaudioconvert.c:
3983         (gst_audio_convert_get_unit_size), (set_structure_widths):
3984           Lower debug, use g_assert in _get_unit_size
3985
3986         * gst/audioresample/gstaudioresample.c:
3987         (audioresample_get_unit_size):
3988         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3989         (gst_ffmpegcsp_get_unit_size):
3990         * gst/videoscale/gstvideoscale.c: (gst_video_scale_get_unit_size):
3991           use g_assert in _get_unit_size
3992
3993 2006-08-18  Wim Taymans  <wim@fluendo.com>
3994
3995         * docs/libs/gst-plugins-base-libs-sections.txt:
3996         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_set_packet_len),
3997         (gst_rtp_buffer_pad_to), (gst_rtp_buffer_get_payload_subbuffer),
3998         (gst_rtp_buffer_get_payload_buffer):
3999         * gst-libs/gst/rtp/gstrtpbuffer.h:
4000         Document GstRTPBuffer.
4001         Added function to efficiently strip payload headers.
4002         API: gst_rtp_buffer_get_payload_subbuffer()
4003
4004 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
4005
4006         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
4007         (gst_tag_to_vorbis_comments):
4008           Serialise unknown vorbis comments into GST_TAG_EXTENDED_COMMENT
4009           tags and deserialise them properly as well (#347091).
4010           Add some more gtk-doc blurbs and also some g_return_if_fail().
4011
4012         * tests/check/libs/tag.c: (GST_START_TEST),
4013         (back_to_vorbis_comments), (taglists_are_equal), (tag_suite):
4014           More tests.
4015
4016 2006-08-17  Wim Taymans  <wim@fluendo.com>
4017
4018         * ext/ogg/Makefile.am:
4019         * ext/ogg/gstogg.c: (plugin_init):
4020         * ext/ogg/gstoggaviparse.c: (gst_ogg_avi_parse_get_type),
4021         (gst_ogg_avi_parse_base_init), (gst_ogg_avi_parse_class_init),
4022         (gst_ogg_avi_parse_init), (gst_ogg_avi_parse_finalize),
4023         (gst_ogg_avi_parse_setcaps), (gst_ogg_avi_parse_event),
4024         (gst_ogg_avi_parse_push_packet), (gst_ogg_avi_parse_chain),
4025         (gst_ogg_avi_parse_change_state), (gst_ogg_avi_parse_plugin_init):
4026         Added ogg-in-avi parser element. Fixes #140139.
4027
4028         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
4029         Fixed a bug in oggdemux debug code.
4030
4031         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
4032         (gst_riff_create_audio_template_caps):
4033         Recognise Ogg in the AVI extensible wave format.
4034
4035 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
4036
4037         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
4038           Make buffer durations add up (duration should be next_ts-ts for
4039           perfect streams). Fixes CD ripping to Ogg/Vorbis with vorbisenc
4040           from CVS.
4041
4042         * tests/check/libs/cddabasesrc.c: (gst_cd_foo_src_close),
4043         (test_buffer_timestamps), (cddabasesrc_suite):
4044           Add unit test for the above.
4045
4046         * tests/check/Makefile.am:
4047           Don't know why cddabasesrc test was in VALGRIND_TO_FIX, remove
4048           to see what happens.
4049
4050 2006-08-16  Wim Taymans  <wim@fluendo.com>
4051
4052         * ext/alsa/gstalsasink.c: (gst_alsasink_set_property),
4053         (gst_alsasink_open):
4054         * ext/alsa/gstalsasrc.c: (gst_alsasrc_set_property),
4055         (gst_alsasrc_open):
4056         Avoid setting and using a NULL device name.
4057         Print more info when we fail to open a device.
4058
4059 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
4060
4061         * docs/libs/gst-plugins-base-libs-sections.txt:
4062         * gst-libs/gst/tag/tag.h:
4063         * gst-libs/gst/tag/tags.c: (gst_tag_parse_extended_comment):
4064           API: add gst_tag_parse_extended_comment() (#351426).
4065
4066         * tests/check/Makefile.am:
4067         * tests/check/libs/.cvsignore:
4068         * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite), (main):
4069           Add unit test for gst_tag_parse_extended_comment().
4070
4071 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
4072
4073         * sys/ximage/ximagesink.c: (gst_ximagesink_get_property):
4074         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_property):
4075           Fix leak (#351502).
4076
4077 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
4078
4079         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4080         * docs/plugins/gst-plugins-base-plugins-sections.txt:
4081         * docs/plugins/gst-plugins-base-plugins.args:
4082         * gst/playback/gstplaybin.c:
4083           Document playbin.
4084           
4085         * docs/plugins/inspect/plugin-adder.xml:
4086         * docs/plugins/inspect/plugin-alsa.xml:
4087         * docs/plugins/inspect/plugin-audioconvert.xml:
4088         * docs/plugins/inspect/plugin-audiorate.xml:
4089         * docs/plugins/inspect/plugin-audioresample.xml:
4090         * docs/plugins/inspect/plugin-audiotestsrc.xml:
4091         * docs/plugins/inspect/plugin-cdparanoia.xml:
4092         * docs/plugins/inspect/plugin-decodebin.xml:
4093         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
4094         * docs/plugins/inspect/plugin-gnomevfs.xml:
4095         * docs/plugins/inspect/plugin-ogg.xml:
4096         * docs/plugins/inspect/plugin-pango.xml:
4097         * docs/plugins/inspect/plugin-playbin.xml:
4098         * docs/plugins/inspect/plugin-subparse.xml:
4099         * docs/plugins/inspect/plugin-tcp.xml:
4100         * docs/plugins/inspect/plugin-theora.xml:
4101         * docs/plugins/inspect/plugin-typefindfunctions.xml:
4102         * docs/plugins/inspect/plugin-video4linux.xml:
4103         * docs/plugins/inspect/plugin-videorate.xml:
4104         * docs/plugins/inspect/plugin-videoscale.xml:
4105         * docs/plugins/inspect/plugin-videotestsrc.xml:
4106         * docs/plugins/inspect/plugin-volume.xml:
4107         * docs/plugins/inspect/plugin-vorbis.xml:
4108         * docs/plugins/inspect/plugin-ximagesink.xml:
4109         * docs/plugins/inspect/plugin-xvimagesink.xml:
4110           Update to CVS version.
4111
4112 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
4113
4114         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
4115         (gst_play_bin_set_property), (gst_play_bin_get_property),
4116         (value_list_append_structure_list),
4117         (gst_play_bin_handle_redirect_message),
4118         (gst_play_bin_handle_message):
4119           API: GstPlayBin::connection-speed
4120           Add "connection-speed" property; re-order redirect messages with
4121           multiple redirect locations depending on the minimum bitrate if
4122           that information is available and a connection speed is set
4123           (#350399).
4124
4125 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
4126
4127         * gst/playback/gstplaybin.c:
4128           Update max volume to the same value that the volume element uses.
4129
4130 2006-08-14  Wim Taymans  <wim@fluendo.com>
4131
4132         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
4133         Less uglyness..
4134
4135 2006-08-14  Wim Taymans  <wim@fluendo.com>
4136
4137         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
4138         (gst_ogg_demux_get_next_page), (gst_ogg_demux_perform_seek),
4139         (gst_ogg_demux_read_chain), (gst_ogg_demux_loop):
4140         Add some more debug info.
4141         Don't crash when a seek failed.
4142         Actually return the result of the seek instead of TRUE.
4143         Ignore multiple BOS pages with the same serial so that we don't create
4144         the same stream multiple times.
4145         Post an error when we fail to do the initial seek.
4146
4147 2006-08-13  Wim Taymans  <wim@fluendo.com>
4148
4149         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
4150         (gst_alsa_detect_channels), (gst_alsa_probe_supported_formats):
4151         Small code cleanup.
4152
4153         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
4154         (gst_alsa_mixer_new):
4155         Remove hack that always set the device to hw:0*.
4156         Properly find the card name for whatever device was configured.
4157         Do some better debugging.
4158         Fixes #350784.
4159
4160         * ext/alsa/gstalsamixerelement.c:
4161         (gst_alsa_mixer_element_set_property),
4162         (gst_alsa_mixer_element_change_state):
4163         Cleanups.
4164         Handle setting of a NULL device name better.
4165
4166 2006-08-11  Wim Taymans  <wim@fluendo.com>
4167
4168         * gst/adder/gstadder.c:
4169         Don't clip float values. Fixes #350900.
4170
4171 2006-08-11  Andy Wingo  <wingo@pobox.com>
4172
4173         * gst/tcp/gsttcp.c: Really fix the build?
4174
4175         * gst/tcp/gsttcp.h: For now, always disable deprecation here --
4176         fixes the build.
4177
4178 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
4179
4180         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes):
4181           Float caps shouldn't have a "signed" field.
4182
4183 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
4184
4185         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query):
4186           Implement SEEKING query in its most basic form, so that we can
4187           at least check if we're seekable or not (#350655).
4188
4189 2006-08-09  Tim-Philipp Müller  <tim at centricular dot net>
4190
4191         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
4192           The checks here are not even close to anything that would
4193           justify MAXIMUM probability, lowering to POSSIBLE until someone
4194           fixes the checks (case at hand: quicktime redirection files
4195           might start with 00 00 01 XX and pass the checks here just
4196           fine, see #350399).
4197
4198 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
4199
4200         Patch by: Sjoerd Simons  <sjoerd at luon net>
4201
4202         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find):
4203           Better detection for multipart/x-mixed-replace: accept leading
4204           whitespaces before the boundary marker as well (as our very own
4205           multipartmux used to produce) (#349068).
4206
4207 2006-08-07  Tim-Philipp Müller  <tim at centricular dot net>
4208
4209         Patch by: Young-Ho Cha  <ganadist at chollian net>
4210
4211         * gst-libs/gst/riff/riff-ids.h:
4212         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
4213         (gst_riff_create_audio_template_caps):
4214           Detect DTS audio streams (#350157).
4215
4216 2006-08-05  Andy Wingo  <wingo@pobox.com>
4217
4218         * ext/theora/gsttheoraparse.h:
4219         * ext/theora/theoraparse.c (gst_theora_parse_class_init)
4220         (theora_parse_dispose, theora_parse_set_property)
4221         (theora_parse_get_property, theora_parse_munge_granulepos)
4222         (theora_parse_push_buffer, theora_parse_change_state):
4223         API: GstTheoraParse::synchronization-points
4224         Add a property 'synchronization-points' to fix badly synchronized oggs.
4225
4226 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
4227
4228         * tests/check/Makefile.am:
4229         * tests/check/libs/.cvsignore:
4230         * tests/check/libs/audio.c: (structure_contains_channel_positions),
4231         (fixed_caps_have_channel_positions), (GST_START_TEST),
4232         (audio_suite), (main):
4233           Add a few tests for the channel position stuff in libgstaudio.
4234
4235 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
4236
4237         * ext/alsa/gstalsa.c: (caps_add_channel_configuration),
4238         (gst_alsa_detect_channels):
4239         * ext/alsa/gstalsasink.c:
4240           Add support for cards that (only) do more than 8 channels,
4241           like the Delta 44 (#345188).
4242
4243         * gst-libs/gst/audio/multichannel.c:
4244         (gst_audio_check_channel_positions):
4245         * gst-libs/gst/audio/multichannel.h:
4246           API: add GST_AUDIO_CHANNEL_POSITION_NONE, which stands for an
4247           unspecified channel position and cannot be combined with any
4248           of the other audio channel positions; adjust position layout
4249           checks accordingly (#345188).
4250
4251 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
4252
4253         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4254           Recognise ancient RealAudio files (see #349779).
4255
4256 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
4257
4258         Patch by: Jens Granseuer  <jensgr at gmx net>
4259
4260         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4261           Add typefinder for Interplay's MVE format (#348973).
4262
4263 2006-08-02  Wim Taymans  <wim@fluendo.com>
4264
4265         Patch by: Marcel Moreaux <marcelm at luon dot net>
4266
4267         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4268         (gst_base_rtp_depayload_add_to_queue):
4269         * gst-libs/gst/rtp/gstbasertpdepayload.h:
4270         Handle RTP sequence number rollover.
4271         Disable jitterbuffer by default.
4272
4273 2006-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
4274
4275         * gst/audioresample/gstaudioresample.c: (audioresample_stop),
4276         (audioresample_set_caps):
4277         Don't leak references to the incoming caps. Clean them up when
4278         stopping.
4279
4280         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
4281         (gst_video_scale_finalize):
4282         Don't leak our temporary pixel buffer.
4283
4284         * tests/check/Makefile.am:
4285         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline),
4286         (GST_START_TEST), (simple_launch_lines_suite):
4287
4288         Fix leaks and re-enable the test for valgrind checking.
4289
4290 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
4291
4292         Patch by: Sjoerd Simons  <sjoerd at luon net>
4293
4294         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find),
4295         (plugin_init):
4296           Add typefind function for multipart/x-mixed-replace (#348916).
4297
4298 2006-07-28  Wim Taymans  <wim@fluendo.com>
4299
4300         * gst/adder/gstadder.c: (gst_adder_setcaps),
4301         (gst_adder_query_duration):
4302         Fix leak in duration query.
4303         Reflow some docs and notes.
4304
4305 2006-07-28  Michael Smith  <msmith@fluendo.com>
4306
4307         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST),
4308         (vorbisenc_suite):
4309           Enable Andy's extra vorbisenc test, now that it passes. Also fix one
4310           aspect of it.
4311
4312 2006-07-28  Michael Smith  <msmith@fluendo.com>
4313
4314         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps),
4315         (gst_vorbis_enc_sink_getcaps), (gst_vorbis_enc_buffer_from_packet),
4316         (gst_vorbis_enc_push_buffer),
4317         (gst_vorbis_enc_buffer_check_discontinuous),
4318         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
4319         * ext/vorbis/vorbisenc.h:
4320           Handle discontinuities in the input vorbis stream correctly,
4321           so that the output is properly timestamped (and has good granulepos
4322           values). Needs some oggmux fixes too.
4323
4324 2006-07-27  Wim Taymans  <wim@fluendo.com>
4325
4326         patch by: Kai Vehmanen <kv2004 eca cx>
4327
4328         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4329         (gst_base_rtp_depayload_chain),
4330         (gst_base_rtp_depayload_handle_sink_event),
4331         (gst_base_rtp_depayload_change_state):
4332         Don't send multiple newsegments with different formats.
4333         Fixes #348677.
4334
4335 2006-07-26  Wim Taymans  <wim@fluendo.com>
4336
4337         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
4338         (gst_ogg_demux_do_seek), (gst_ogg_demux_read_chain):
4339         Make seeking in ogg more accurate again by doing the more correct
4340         granuletime to stream time conversion.
4341
4342 2006-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
4343
4344         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
4345         (gst_multi_fd_sink_new_client):
4346           debug a little more understandably
4347           do not use goto as a substitute for break, especially if
4348           break is also being used
4349
4350 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
4351
4352         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
4353         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
4354           Remove GLib-2.6 compatibility cruft.
4355
4356 2006-07-24  Wim Taymans  <wim@fluendo.com>
4357
4358         * gst-libs/gst/audio/gstbaseaudiosink.c:
4359         (gst_base_audio_sink_render):
4360         Don't try to align a sample to an unknown value.
4361
4362 2006-07-24  Wim Taymans  <wim@fluendo.com>
4363
4364         * gst-libs/gst/audio/gstbaseaudiosink.c:
4365         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
4366         When the audio clock is slaved to another clock, never try to align
4367         samples but trust the rate interpolation algorithm.
4368
4369 2006-07-24  Wim Taymans  <wim@fluendo.com>
4370
4371         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4372         Don't try to calculate silence samples, base class does this much
4373         better now.
4374
4375         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4376         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps),
4377         (gst_ring_buffer_acquire):
4378         Calculate silence samples correctly.
4379
4380         * gst-libs/gst/audio/gstringbuffer.h:
4381         Add _CAST macro.
4382
4383 2006-07-22  Tim-Philipp Müller  <tim at centricular dot net>
4384
4385         * gst/typefind/gsttypefindfunctions.c: (xml_check_first_element):
4386           Limit search for the first markup tag to the first few kB of
4387           the file. If we don't find one there, it's highly unlikely that
4388           this is an XML(-ish) file.
4389
4390 2006-07-21  Andy Wingo  <wingo@pobox.com>
4391
4392         * tests/check/pipelines/theoraenc.c (test_discontinuity): Similar
4393         test to the one in vorbisenc. Also commented out.
4394
4395         * tests/check/pipelines/vorbisenc.c: 
4396         (test_discontinuity): New test, commented out until Mike lands
4397         some elite vorbisenc patches.
4398
4399         * tests/check/pipelines/theoraenc.c: Port to bufferstraw.
4400         Bufferstraw was actually factored out of these tests. Now we share
4401         code yay.
4402
4403         * configure.ac (GST_MAJORMINOR): Rev core requirements to 0.10.9.1
4404         for bufferstraw addition to gstcheck.
4405
4406 2006-07-21  Wim Taymans  <wim@fluendo.com>
4407
4408         * ext/theora/theoradec.c: (clip_buffer):
4409         Better clipping.
4410
4411 2006-07-21  Wim Taymans  <wim@fluendo.com>
4412
4413         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
4414         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
4415         (gst_audioringbuffer_release), (gst_audioringbuffer_stop):
4416         Fix leak.
4417         Avoid type casting when we can.
4418
4419         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_dispose):
4420         Fix mem leak.
4421
4422 2006-07-20  Tim-Philipp Müller  <tim at centricular dot net>
4423
4424         * ext/alsa/gstalsamixerelement.c:
4425         (gst_alsa_mixer_element_change_state):
4426           Make state change fail if the specified device can't be opened
4427           for some reason.
4428
4429 2006-07-20  Wim Taymans  <wim@fluendo.com>
4430
4431         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
4432         (cb_newpad), (main):
4433         Example of a small audio/video player using decodebin.
4434
4435 2006-07-20  Stefan Kost  <ensonic@users.sf.net>
4436
4437         * gst-libs/gst/riff/riff-ids.h:
4438           Add 'fact' chunk id
4439
4440 2006-07-19  Wim Taymans  <wim@fluendo.com>
4441
4442         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4443         (gst_base_rtp_depayload_chain),
4444         (gst_base_rtp_depayload_change_state):
4445         Don't assert when not negotiated but post a meaningfull 
4446         error message. Fixes #347918.
4447
4448         * gst-libs/gst/rtp/gstbasertppayload.c:
4449         Add comment about better default MTU size.
4450
4451         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
4452         Small cleanups, start docs.
4453
4454 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
4455
4456         Patch by: Martin Szulecki
4457
4458         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_property):
4459           If "device-name" is requested and the device is not
4460           open, try to temporarily open it to obtain this
4461           information (#342494).
4462
4463 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
4464
4465         * gst-libs/gst/tag/gstid3tag.c:
4466           Add TSSE <=> GST_TAG_ENCODER mapping (see #347898).
4467
4468         * gst-libs/gst/tag/gsttageditingprivate.h:
4469         * gst-libs/gst/tag/gstvorbistag.c:
4470           Some more random const-ifications.
4471
4472 2006-07-18  Stefan Kost  <ensonic@users.sf.net>
4473
4474         * gst-libs/gst/riff/riff-ids.h:
4475         * gst-libs/gst/riff/riff-media.c:
4476         (gst_riff_create_video_template_caps):
4477           Add more FOURCCs (sort list to make stuff easier to find),
4478           add comment what those 16 bytes in struct _gst_riff_strh according to
4479           one avi-dumper are
4480
4481 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
4482
4483         * gst-libs/gst/audio/multichannel.c:
4484         (gst_audio_check_channel_positions),
4485         (gst_audio_fixate_channel_positions):
4486           Const-ify two arrays.
4487
4488 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
4489
4490         * ext/alsa/gstalsa.c: (caps_add_channel_configuration):
4491           Fix typo, so that alsasink also advertises 8 channels
4492           if that's supported (tags: can, worms, open, alsa, ph34r).
4493
4494 2006-07-17  Wim Taymans  <wim@fluendo.com>
4495
4496         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
4497         (gst_ogg_pad_submit_packet), (gst_ogg_demux_read_chain):
4498         *sigh*, when is the compiler going to warn when the comments
4499         are out-of-sync with the code.. Refix case of busted theora
4500         headers with 0 granule pos.
4501
4502 2006-07-14  Wim Taymans  <wim@fluendo.com>
4503
4504         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4505         (gst_base_rtp_depayload_wait),
4506         (gst_base_rtp_depayload_change_state),
4507         (gst_base_rtp_depayload_set_property),
4508         (gst_base_rtp_depayload_get_property):
4509         Fix 99% cpu load by waiting for absolute times on the
4510         clock. Fixes #347300.
4511
4512 2006-07-14  Andy Wingo  <wingo@pobox.com>
4513
4514         * ext/theora/gsttheoraparse.h: 
4515         * ext/theora/theoraparse.c (theora_parse_drain_event_queue)
4516         (theora_parse_push_headers, theora_parse_clear_queue)
4517         (theora_parse_drain_queue_prematurely, )
4518         (theora_parse_sink_event, theora_parse_change_state): Queue events
4519         until we initialized our state, like in vorbisparse.
4520
4521         * ext/vorbis/vorbisparse.h: 
4522         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_event_queue)
4523         (vorbis_parse_push_headers, vorbis_parse_clear_queue)
4524         (vorbis_parse_drain_queue_prematurely, )
4525         (vorbis_parse_sink_event, vorbis_parse_change_state): Queue events
4526         until we have initialized our state. Fixes seeking after an
4527         initial pad block.
4528
4529 2006-07-14  Andy Wingo  <wingo@pobox.com>
4530
4531         Patch by: Iain Holmes <iaingnome@gmail.com>
4532         
4533         * ext/ogg/gstoggdemux.c (gst_ogg_demux_finalize): Fix memleak.
4534
4535 2006-07-14  Jan Schmidt  <thaytan@mad.scientist.com>
4536
4537         * configure.ac:
4538         Bump nano back to CVS
4539
4540 === release 0.10.9 ===
4541
4542 2006-07-13  Jan Schmidt <thaytan@mad.scientist.com>
4543
4544         * configure.ac:
4545           releasing 0.10.9, "I walk the line"
4546
4547 2006-07-14  Michael Smith  <msmith@fluendo.com>
4548
4549         * tests/check/pipelines/vorbisenc.c: (stop_pipeline):
4550           Move a g_cond_signal to earlier to avoid sometimes deadlocking
4551           (commonly happens when running this test under valgrind) when trying
4552           to remove the buffer probe.
4553
4554 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
4555
4556         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
4557         Fix missing g_unlock from the previous commit
4558
4559 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
4560
4561         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
4562         (gst_ximagesink_change_state):
4563         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
4564         (gst_xvimagesink_change_state):
4565         Implement a locking order to ensure we always take the object lock
4566         before the x_lock and never vice-versa.
4567
4568 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
4569
4570         * gst/playback/gstdecodebin.c: (find_compatibles):
4571         Fix a caps leak when linking (#347304)
4572
4573         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
4574         (gst_ximagesink_ximage_destroy), (gst_ximagesink_xcontext_clear),
4575         (gst_ximagesink_change_state):
4576         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
4577         (gst_xvimage_buffer_finalize), (gst_xvimagesink_check_xshm_calls),
4578         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
4579         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_change_state):
4580         Don't leak shared memory resources. Use the object lock to protect
4581         against the xcontext disappearing while returning a buffer from the
4582         pipeline. (#347304)
4583
4584 2006-07-12  Edward Hervey  <edward@fluendo.com>
4585
4586         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize),
4587         (vorbis_handle_comment_packet):
4588         gst_tag_list_merge() returns a new object. Take that into account when
4589         using it. This avoids memleak.
4590         Revert previous commit which is not needed.
4591
4592 2006-07-12  Edward Hervey  <edward@fluendo.com>
4593
4594         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize):
4595         Reset the decoder in finalize so that all fields get cleared.
4596
4597 2006-07-12  Wim Taymans  <wim@fluendo.com>
4598
4599         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4600         (gst_base_audio_src_set_clock),
4601         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create):
4602         Don't try to post an error message when setting the clock fails
4603         as this can happen when adding an element to a bin which will then
4604         deadlock. Fixes #347296.
4605
4606 2006-07-12  Edward Hervey  <edward@fluendo.com>
4607
4608         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
4609         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
4610         (vorbis_handle_type_packet):
4611         Post tag messages on the bus even if we're not initialized.
4612         If we're not initialized, we still postpone the event pushing of tags.
4613
4614 2006-07-12  Wim Taymans  <wim@fluendo.com>
4615
4616         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4617         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4618         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
4619         Revert last two changes that broke the freeze.
4620
4621 2006-07-12  Wim Taymans  <wim@fluendo.com>
4622
4623         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4624         basesink calculates silence sample correctly for us.
4625
4626 2006-07-12  Wim Taymans  <wim@fluendo.com>
4627
4628         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4629         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
4630         Calculate correct silence samples so we don't fill our ringbuffer
4631         with noise.
4632
4633 2006-07-12  Edward Hervey  <edward@fluendo.com>
4634
4635         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
4636         (gst_vorbis_dec_reset), (vorbis_dec_sink_event),
4637         (vorbis_handle_comment_packet), (vorbis_handle_type_packet):
4638         * ext/vorbis/vorbisdec.h:
4639         Delay sending events (newsegment, tags) until the decoder is properly
4640         initialized.
4641         Fixes #347295
4642
4643 2006-07-11  Jan Schmidt  <thaytan@mad.scientist.com>
4644
4645         * tests/check/elements/audioconvert.c: (get_float_mc_caps),
4646         (get_int_mc_caps), (GST_START_TEST), (audioconvert_suite):
4647           Patch from #347221 adding a test for audioconvert
4648           channel remappings.
4649
4650 2006-07-11  Tim-Philipp Müller  <tim at centricular dot net>
4651
4652         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
4653         (gst_ssa_parse_parse_line):
4654           Don't include the terminating NUL in the buffer size,
4655           it's only there for extra paranoia (would add random
4656           '*' characters at the end of each subtitle since the
4657           terminator itself is not valid UTF-8 technically).
4658           Also fix indenting after boilerplate macro.
4659
4660 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
4661
4662         * gst/playback/gstdecodebin.c: (close_pad_link):
4663           Also emit 'unknown-type' signal (which should really be
4664           called unhandled-type) if we found potential decoders/demuxers
4665           in the registry but none of them worked in the end (as in the
4666           case where the plugins don't exist any longer but are still
4667           listed in the registry). Fixes #329798.
4668
4669 2006-07-08  Andy Wingo  <wingo@pobox.com>
4670
4671         * theoraparse.c (theora_parse_push_buffer)
4672         (theora_parse_drain_queue_prematurely, theora_parse_drain_queue):
4673         Add some more debugging. Fix granulepos reconstruction in the face
4674         of discontinuities.
4675
4676 2006-07-06  Wim Taymans  <wim@fluendo.com>
4677
4678         * gst-libs/gst/audio/gstbaseaudiosink.c:
4679         (gst_base_audio_sink_class_init),
4680         (gst_base_audio_sink_provide_clock):
4681         Use gobject_class instead of G_OBJECT_CLASS (klass)
4682
4683         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4684         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
4685         (gst_base_audio_src_set_clock), (gst_base_audio_src_provide_clock),
4686         (gst_base_audio_src_get_time),
4687         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create),
4688         (gst_base_audio_src_create_ringbuffer):
4689         Fix latency and buffer-time constants and properties ala basesink.
4690         Implement pull based scheduling. Fixes #346527.
4691         Set default blocksize in GstBaseSrc to 0, we default to pushing out
4692         one segment.
4693         Refuse slaving to another clock instead of silently not working.
4694         Only provide a clock when we are actually able to do so.
4695         Various small cleanups and compiler hints.
4696
4697 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
4698
4699         Patch by: Lutz Mueller <lutz at topfrose de>
4700
4701         * gst/typefind/gsttypefindfunctions.c: (html_type_find),
4702         (plugin_init):
4703           Add typefinding for text/html (#346581).
4704
4705 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
4706
4707         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
4708         (xml_check_first_element), (xml_type_find), (smil_type_find):
4709           Fix SMIL typefinding, make xml_check_first_element() more
4710           useful.
4711
4712 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
4713
4714         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
4715         (gst_play_base_bin_finalize), (decodebin_element_added_cb),
4716         (decodebin_element_removed_cb), (gst_play_base_bin_set_property):
4717         * gst/playback/gstplaybasebin.h:
4718           Protect list of elements with a subtitle-encoding property and
4719           the subtitle encoding member itself with a lock of their own
4720           instead of using the object lock. This prevents a dead-lock in
4721           the element-remove callback in some circumstances when shutting
4722           down playbin.
4723
4724 2006-07-05  Sebastien Moutte  <sebastien@moutte.net>
4725
4726         * win32/common/libgsttag.def:
4727         Export some new functions.
4728         * win32/vs6/libgstogg.dsp:
4729         Add a link to libgsttag-0.10.lib.
4730
4731 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
4732
4733         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
4734           Some const-ification.
4735
4736 2006-07-04  Wim Taymans  <wim@fluendo.com>
4737
4738         * gst/playback/gstplaybasebin.c: (is_stream), (gen_source_element):
4739         Improve checking if we are dealing with a stream. Added some
4740         more uris that need buffering.
4741
4742 2006-07-03  Edward Hervey  <edward@fluendo.com>
4743
4744         * ext/vorbis/vorbisdec.c: (vorbis_do_clip):
4745         Remove unused variable.
4746
4747 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
4748
4749         * Makefile.am:
4750           include lcov.mak
4751         * configure.ac:
4752           add GCOV_LIBS to GST_LIBS
4753
4754 2006-07-02  Tim-Philipp Müller  <tim at centricular dot net>
4755
4756         Patch by: Michael Sheldon  <webmaster at mikeasoft com>
4757
4758         * ext/alsa/gstalsasrc.c:
4759           Add 32 bps to template caps and increase channels range
4760           from [1,2] to [1,MAX]. See #346326.
4761
4762 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
4763
4764         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
4765           Recognise 'WMVA' video codec fourcc (#345879).
4766           
4767 2006-06-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
4768          
4769         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
4770           Fixed nasty memory leak
4771
4772 2006-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
4773
4774         * gst/tcp/gsttcp.c: (gst_tcp_read_buffer),
4775         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps):
4776           fix logging
4777
4778 2006-06-23  Jan Schmidt  <thaytan@mad.scientist.com>
4779
4780         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
4781         (gst_decode_bin_init), (gst_decode_bin_finalize), (add_fakesink),
4782         (remove_fakesink), (pad_probe), (gst_decode_bin_change_state):
4783         Protect remove_fakesink using a mutex, so that we don't try and
4784         remove the fakesink simultaneously from multiple threads.
4785
4786         When going from READY to PAUSED, restore the fakesink, so that
4787         it is there when decodebin gets reused.
4788
4789 2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>
4790
4791         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4792         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4793         * gst-libs/gst/rtp/gstbasertppayload.c:
4794         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4795         * gst/tcp/gstmultifdsink.c:
4796         * gst/tcp/gsttcpclientsink.c:
4797         * gst/tcp/gsttcpclientsrc.c:
4798         * gst/tcp/gsttcpserversink.c:
4799         * gst/tcp/gsttcpserversrc.c:
4800         * gst/videorate/gstvideorate.c:
4801         * gst/videotestsrc/gstvideotestsrc.c:
4802         * sys/v4l/gstv4ljpegsrc.c:
4803         * sys/v4l/gstv4lmjpegsink.c:
4804         * sys/v4l/gstv4lsrc.c:
4805         * tests/examples/seek/scrubby.c:
4806         * tests/examples/seek/seek.c:
4807           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503).
4808
4809 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
4810
4811         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
4812           Second field in GEnumValue shouldn't be a description,
4813           but a stringified version of the enum value.
4814
4815 2006-06-22  Wim Taymans  <wim@fluendo.com>
4816
4817         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
4818         (gst_ximage_buffer_free), (gst_ximagesink_ximage_put),
4819         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
4820         Avoid type checking in buffer casts.
4821         Avoid caps copy in buffer_alloc when we can.
4822         Use pad_peer_accept.
4823
4824 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
4825
4826         * gst-libs/gst/tag/tag.h:
4827           Oops, make that 'Since: 0.10.9'.
4828
4829 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
4830
4831         * docs/libs/gst-plugins-base-libs-sections.txt:
4832         * gst-libs/gst/tag/tag.h:
4833         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
4834         (gst_tag_image_type_get_type):
4835           API: add GstTagImageType enum to describe images contained
4836           in image tags (#345641).
4837
4838 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
4839
4840         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4841           Fix warnings with gst-inspect: "buffers-min" property
4842           should be of G_TYPE_INT and not G_TYPE_INT64. Also fix
4843           typo in property description.
4844
4845 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
4846
4847         Patch by: Cody Russell <bratsche at gnome org>
4848
4849         * gst/audioresample/gstaudioresample.c:
4850         (gst_audioresample_class_init):
4851         * gst/playback/gststreamselector.c:
4852         (gst_stream_selector_class_init):
4853         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
4854         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4855         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
4856         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
4857         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
4858         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
4859         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
4860         * gst/videotestsrc/gstvideotestsrc.c:
4861         (gst_video_test_src_class_init):
4862         * gst/volume/gstvolume.c: (gst_volume_class_init):
4863           Avoid unnecessary class cast check in class_init
4864           functions (#337747).
4865
4866 2006-06-21  Tim-Philipp Müller  <tim at centricular dot net>
4867
4868         * ext/pango/gsttextoverlay.c: (gst_text_overlay_make_utf8),
4869         (gst_text_overlay_video_chain):
4870           g_markup_escape_text() REALLY doesn't like non-UTF8 input
4871           and doesn't validate its input either (and neither did
4872           textoverlay it seems). Let's do that then and fix #345206.
4873
4874 2006-06-19  Wim Taymans  <wim@fluendo.com>
4875
4876         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
4877         (gst_unit_type_get_type), (gst_multi_fd_sink_class_init),
4878         (gst_multi_fd_sink_init), (gst_multi_fd_sink_add_full),
4879         (gst_multi_fd_sink_add), (gst_multi_fd_sink_handle_client_read),
4880         (find_syncframe), (find_limits), (assign_value),
4881         (count_burst_unit), (gst_multi_fd_sink_new_client),
4882         (gst_multi_fd_sink_handle_client_write),
4883         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_render),
4884         (gst_multi_fd_sink_set_property), (gst_multi_fd_sink_get_property),
4885         (gst_multi_fd_sink_change_state):
4886         * gst/tcp/gstmultifdsink.h:
4887         Added shiny new burst-on-connect methods.
4888         Add properties to control the minimal amount of data queued.
4889         Small cleanups.
4890         API: bytes-min property
4891         API: time-min property
4892         API: buffers-min property
4893         API: burst-unit property
4894         API: burst-value property
4895         API: add-full signal
4896
4897         * gst/tcp/gsttcp-marshal.list:
4898         Added new marshaller code for the new signal.
4899
4900         * tests/check/elements/multifdsink.c: (GST_START_TEST),
4901         (multifdsink_suite):
4902         Added testcases for new burst methods.
4903
4904 2006-06-19  Edward Hervey  <edward@fluendo.com>
4905
4906         * ext/theora/theoradec.c: (clip_buffer), (theora_dec_push):
4907         Implement clipping for accurate seeking.
4908         Closes #345225
4909
4910 2006-06-19  Wim Taymans  <wim@fluendo.com>
4911
4912         Patch by: Philip Jaegenstedt <philip at lysator dot liu dot se>
4913
4914         * gst/videoscale/gstvideoscale.c: (gst_video_scale_prepare_size),
4915         (gst_video_scale_transform):
4916         Make videoscale support RGBA, ARGB, BGRA and ABGR. Fixes #345131
4917
4918 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
4919
4920         * configure.ac:
4921           Fix --disable-external (can't set conditionals conditionally,
4922           #343602).
4923
4924 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
4925
4926         * tests/check/elements/audioresample.c: (test_reuse),
4927         (audioresample_suite):
4928           Add test case for bug #342789 fixed below.
4929
4930 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
4931
4932         * gst/audioresample/gstaudioresample.c:
4933         (gst_audioresample_class_init), (gst_audioresample_init),
4934         (audioresample_start), (audioresample_stop),
4935         (gst_audioresample_set_property), (gst_audioresample_get_property):
4936           Implement GstBaseTransform::start and ::stop so that audioresample
4937           can clear its internal state properly and be reused instead of
4938           causing non-negotiated errors with playbin under some circumstances
4939           (#342789).
4940
4941         * tests/check/elements/audioresample.c: (setup_audioresample),
4942         (cleanup_audioresample):
4943           Need to set element state here so that ::start and ::stop are
4944           called.
4945
4946 2006-06-16  Wim Taymans  <wim@fluendo.com>
4947
4948         Patch by: Young-Ho Cha <ganadist at chollian dot net>
4949
4950         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_vids):
4951         Parse extra data better, apparently it's right behind
4952         the normal strf header size. Fixes #343500.
4953
4954 2006-06-16  Wim Taymans  <wim@fluendo.com>
4955
4956         * ext/alsa/gstalsasink.c: (set_hwparams):
4957         If we fail to set the buffer_time and period_time alsa
4958         parameters, post a warning and leave alsa select a 
4959         default instead of failing. Fixes #342085
4960
4961 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
4962
4963         * docs/libs/gst-plugins-base-libs-sections.txt:
4964         * gst-libs/gst/cdda/gstcddabasesrc.h:
4965           Remove GST_CDDA_TAG_TRACK_TAGS again, it is #ifdef 0'ed
4966           out in the header file and shouldn't be listed in the docs.
4967
4968         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
4969           Must dereference pointer to fourcc in the debug statement.
4970
4971 2006-06-16  Stefan Kost  <ensonic@users.sf.net>
4972
4973         * docs/libs/Makefile.am:
4974         * docs/libs/gst-plugins-base-libs-docs.sgml:
4975         * docs/libs/gst-plugins-base-libs-sections.txt:
4976         * docs/libs/gst-plugins-base-libs.types:
4977         add remaining symbols into correct setions
4978         
4979         * gst-libs/gst/audio/gstringbuffer.c:
4980         fix incomplete docs
4981         
4982         * gst-libs/gst/audio/gstringbuffer.h:
4983         comment out not yet implemented function
4984         
4985         
4986         * gst-libs/gst/floatcast/floatcast.h:
4987         * gst-libs/gst/netbuffer/gstnetbuffer.c:
4988         add short descriptions
4989         
4990         
4991         * gst-libs/gst/interfaces/propertyprobe.c:
4992         fix return value docs   
4993         
4994         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
4995         simplify debug logging
4996         
4997         * gst-libs/gst/riff/riff-read.h:
4998         sync function prototype and docs
4999         
5000         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
5001         remove left over symbol
5002
5003 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
5004
5005         * autogen.sh:
5006         * configure.ac:
5007         * docs/Makefile.am:
5008           Use GST_PLUGIN_DOCS macro in configure.ac, add
5009           --enable-plugin-docs default to autogen.sh and use
5010           ENABLE_PLUGIN_DOCS conditional in Makefile.am (#344039).
5011
5012 2006-06-15  Wim Taymans  <wim@fluendo.com>
5013
5014         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
5015         (gst_ogg_demux_activate_chain), (gst_ogg_demux_combine_flows),
5016         (gst_ogg_demux_loop):
5017         Combine GstFlowReturn from the source pads to give a
5018         meaningfull result to the upstream peer or to stop the
5019         processing task in case of errors.
5020
5021 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
5022
5023         * gst/playback/gststreaminfo.c: (cb_probe):
5024           Try GST_TAG_CODEC as fallback when extracting the
5025           codec name; more debug info.
5026
5027 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
5028
5029         * ext/ogg/Makefile.am:
5030         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
5031           Extract language tags from ogm subtitle streams, so that
5032           the subtitle menu choices are labelled correctly in
5033           Totem (fixes #344708).
5034
5035 2006-06-14  Wim Taymans  <wim@fluendo.com>
5036
5037         Patch by: Alessandro Decina <alessandro at nnva dot org>
5038
5039         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_clear),
5040         (gst_ogg_mux_release_pad), (gst_ogg_mux_get_headers),
5041         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_init_collectpads),
5042         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
5043         Fix various leaks. Fixes #343699.
5044         Add x-smoke mime type.
5045
5046 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
5047
5048         * gst-libs/gst/riff/riff-ids.h:
5049           Add IDs for 'bext' chunks (see #343837).
5050
5051 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
5052
5053         Patch by: Young-Ho Cha  <ganadist at chollian net>
5054
5055         * gst/subparse/samiparse.c: (sami_context_pop_state),
5056         (handle_start_font), (end_sami_element):
5057           Honour font face tags in SAMI subtitles (#344503).
5058
5059 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
5060
5061         * po/POTFILES.in:
5062           add missing files containing translatable strings
5063
5064 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
5065
5066         * docs/libs/tmpl/.cvsignore:
5067           we don't want those *.sgml files in CVS either
5068
5069 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
5070
5071         * docs/libs/.cvsignore:
5072         * tests/check/elements/.cvsignore:
5073         * tests/check/libs/.cvsignore:
5074           ignore more
5075
5076 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
5077
5078         * docs/libs/Makefile.am:
5079           also commiting the changed Makefile.am (added more libs to the
5080           doc-build)
5081
5082 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
5083
5084         * docs/libs/gst-plugins-base-libs-docs.sgml:
5085         * docs/libs/gst-plugins-base-libs-sections.txt:
5086         * docs/libs/gst-plugins-base-libs.types:
5087           first batch of reordering things, add index & hierarchy
5088
5089 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
5090
5091         * configure.ac:
5092           use GST_PKG_CHECK_MODULES, cleans up output
5093
5094 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
5095
5096         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
5097           Add support for burn:// URIs (#343385); const-ify things a bit,
5098           use G_N_ELEMENTS instead of hard-coded array size.
5099
5100 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
5101
5102         Patch by: Young-Ho Cha  <ganadist at chollian net>
5103
5104         * gst/subparse/samiparse.c: (fix_invalid_entities), (parse_sami):
5105           Fix up broken entities before passing them to libxml *sigh*.
5106           (#343303).
5107           
5108 2006-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
5109
5110         * configure.ac:
5111           back to TRUNK
5112
5113 === release 0.10.8 ===
5114
5115 2006-06-09  Thomas Vander Stichele <thomas at apestaart dot org>
5116
5117         * configure.ac:
5118           releasing 0.10.8, "Moar gij ziet mij nie"
5119
5120 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
5121
5122         * configure.ac:
5123         * po/af.po:
5124         * po/az.po:
5125         * po/cs.po:
5126         * po/en_GB.po:
5127         * po/hu.po:
5128         * po/it.po:
5129         * po/nb.po:
5130         * po/nl.po:
5131         * po/or.po:
5132         * po/sq.po:
5133         * po/sr.po:
5134         * po/sv.po:
5135         * po/uk.po:
5136         * po/vi.po:
5137         * win32/common/config.h:
5138           0.10.7.2 prerelease
5139
5140 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
5141
5142         * docs/libs/tmpl/gstaudio.sgml:
5143         * docs/libs/tmpl/gstcolorbalance.sgml:
5144         * docs/libs/tmpl/gstmixer.sgml:
5145         * docs/libs/tmpl/gstringbuffer.sgml:
5146         * docs/libs/tmpl/gsttuner.sgml:
5147         * docs/libs/tmpl/gstxoverlay.sgml:
5148         * gst-libs/gst/audio/audio.c:
5149         * gst-libs/gst/audio/gstringbuffer.c:
5150         * gst-libs/gst/interfaces/colorbalance.c:
5151         * gst-libs/gst/interfaces/mixer.c:
5152         * gst-libs/gst/interfaces/tuner.c:
5153         * gst-libs/gst/interfaces/xoverlay.c:
5154           move last template doc snippets to source code and delete them
5155
5156 2006-06-06  Michael Smith  <msmith@fluendo.com>
5157
5158         * ext/theora/theoraparse.c: (theora_parse_drain_queue_prematurely),
5159         (theora_parse_drain_queue):
5160           Mark DELTA_UNIT on non-keyframes.
5161
5162 2006-06-03  Jan Schmidt  <thaytan@mad.scientist.com>
5163
5164         * gst-libs/gst/audio/gstbaseaudiosink.c:
5165         (gst_base_audio_sink_class_init), (gst_base_audio_sink_setcaps):
5166         * gst-libs/gst/audio/gstbaseaudiosink.h:
5167         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps),
5168         (gst_ring_buffer_samples_done):
5169         * gst-libs/gst/audio/gstringbuffer.h:
5170         Document better the fact that latency_time and buffer_time are values
5171         stored in microseconds, and not the usual GStreamer nanoseconds.
5172         Change the variables (compatibly) that store them from GstClockTime 
5173         to guint64 to make it more clear that they're not storing clock times.
5174         Also, remove the bogus property description that says the user can
5175         specify -1 to get the default value, since that's never been the case.
5176
5177         When computing the default segment size for the ring buffer, make it
5178         an integer number of samples.
5179
5180         When the sub-class indicates a delay greater than the number of
5181         samples we've written return 0 from the audio sink get_time method.
5182
5183 2006-06-02  Michael Smith  <msmith@fluendo.com>
5184
5185         * tests/check/elements/audioconvert.c: (set_channel_positions),
5186         (get_float_mc_caps), (get_int_mc_caps):
5187         * tests/check/elements/audioresample.c:
5188         * tests/check/elements/audiotestsrc.c: (GST_START_TEST):
5189         * tests/check/elements/videorate.c:
5190         * tests/check/elements/videotestsrc.c: (GST_START_TEST):
5191         * tests/check/elements/volume.c:
5192         * tests/check/elements/vorbisdec.c:
5193         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
5194           Don't busy-wait in tests; this was causing test timeouts very
5195           frequently when running under valgrind.
5196
5197 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
5198
5199         * gst/tcp/README:
5200         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_init),
5201         (gst_multi_fd_sink_remove_client_link),
5202         (gst_multi_fd_sink_client_queue_caps),
5203         (gst_multi_fd_sink_client_queue_buffer),
5204         (gst_multi_fd_sink_handle_client_write),
5205         (gst_multi_fd_sink_render):
5206         * gst/tcp/gstmultifdsink.h:
5207           make multifdsink properly deal with streamheader:
5208           - streamheader is taken from caps
5209           - buffers marked with IN_CAPS are not sent
5210           - streamheaders are sent, on connection, from the caps of the
5211             buffer where the client gets positioned to
5212           - further streamheader changes are done every time the client
5213             will receive a buffer with different caps
5214         * tests/check/elements/multifdsink.c: (GST_START_TEST),
5215         (gst_multifdsink_create_streamheader):
5216           add tests for this
5217
5218 2006-06-02  Michael Smith  <msmith@fluendo.com>
5219
5220         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
5221           Reinstate limit on channel count. Vorbis does not define the meaning
5222           of > 6 channels, so they're just independent channels. Gstreamer
5223           currently has no mechanism to represent N independent channels.
5224
5225 2006-06-02  Michael Smith  <msmith@fluendo.com>
5226
5227         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
5228           Don't arbitrarily restrict channel counts and rate in vorbis.
5229           In terms of effects likely on real-world files, this fixes 96kHz
5230           playback of vorbis.
5231
5232 2006-06-02  Michael Smith  <msmith@fluendo.com>
5233
5234         * gst/audioconvert/audioconvert.c: (float):
5235           More correct float->int conversion.
5236
5237 2006-06-02  Michael Smith  <msmith@fluendo.com>
5238
5239         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_perform_seek):
5240           Don't accidently send GST_CLOCK_TIME_NONE as a new segment start
5241           value. Fixes g-critical on trying to play back ogg containing
5242           unknown codec.
5243
5244 2006-06-02  Wim Taymans  <wim@fluendo.com>
5245
5246         * gst/playback/gstplaybasebin.c: (group_create), (group_commit),
5247         (setup_source):
5248         * gst/playback/gstplaybasebin.h:
5249         Make the subtitle detection work from any thread so we don't
5250         deadlock. Fixes #343397.
5251
5252 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
5253
5254         * gst/volume/Makefile.am:
5255           Seriously, it's not *that* hard to get compilation right.  Even
5256           a drunk can do it ! Add LIBOIL CFLAGS and LIBS
5257
5258 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
5259
5260         * gst/volume/gstvolume.c: (volume_choose_func),
5261         (volume_update_real_volume), (gst_volume_class_init),
5262         (gst_volume_init), (volume_process_float), (volume_process_int16),
5263         (volume_process_int16_clamp), (volume_set_caps),
5264         (volume_transform_ip), (plugin_init):
5265         * gst/volume/gstvolume.h:
5266         rewrite the passthrough check, split _int16 and _int16_clamp, fix
5267         another property desc., remove unused param from process function
5268         
5269         * tests/check/elements/volume.c: (volume_suite):
5270         reactivate the passthrough test
5271
5272 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
5273
5274         * ext/alsa/gstalsamixerelement.h:
5275         * ext/alsa/gstalsamixeroptions.h:
5276         * ext/alsa/gstalsamixertrack.h:
5277         * ext/gnomevfs/gstgnomevfssink.h:
5278         * ext/gnomevfs/gstgnomevfssrc.h:
5279         * ext/theora/gsttheoradec.h:
5280         * ext/theora/gsttheoraenc.h:
5281         * ext/theora/gsttheoraparse.h:
5282         * ext/vorbis/vorbisparse.h:
5283         * gst-libs/gst/audio/gstaudioclock.h:
5284         * gst-libs/gst/audio/gstaudiofilter.h:
5285         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
5286         * gst/audioconvert/gstaudioconvert.h:
5287         * gst/audioresample/gstaudioresample.h:
5288         * gst/audiotestsrc/gstaudiotestsrc.h:
5289         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
5290         * gst/playback/gststreamselector.h:
5291         * gst/tcp/gstmultifdsink.h:
5292         * gst/tcp/gsttcpclientsink.h:
5293         * gst/tcp/gsttcpclientsrc.h:
5294         * gst/tcp/gsttcpserversink.h:
5295         * gst/tcp/gsttcpserversrc.h:
5296         * gst/videorate/gstvideorate.h:
5297         * gst/videoscale/gstvideoscale.h:
5298         * gst/videotestsrc/gstvideotestsrc.h:
5299         * gst/volume/gstvolume.h:
5300         * sys/v4l/gstv4ljpegsrc.h:
5301         * sys/v4l/gstv4lmjpegsink.h:
5302         * sys/v4l/gstv4lmjpegsrc.h:
5303         * sys/v4l/gstv4lsrc.h:
5304         * sys/ximage/ximagesink.h:
5305         * sys/xvimage/xvimagesink.h:
5306         * tests/old/testsuite/alsa/sinesrc.h:
5307         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
5308
5309 2006-05-31  Wim Taymans  <wim@fluendo.com>
5310
5311         * ext/libvisual/visual.c: (gst_visual_reset),
5312         (gst_visual_sink_setcaps), (gst_visual_sink_event),
5313         (gst_visual_src_event), (get_buffer), (gst_visual_chain):
5314         Handle DISCONT.
5315         Use running time before doing QoS.
5316         Handle mono too.
5317
5318 2006-05-31  Thomas Vander Stichele  <thomas at apestaart dot org>
5319
5320         * docs/libs/Makefile.am:
5321           set a magic variable to indicate we know the docs are incomplete
5322
5323 2006-05-30  Sebastien Moutte  <sebastien@moutte.net>
5324
5325         * win32/common/libgstvideo.def:
5326           export gst_video_calculate_display_ratio
5327         * win32/vs6/libgstvideoscale.dsp:
5328           add link to libgstvideo-0.10.lib
5329
5330 2006-05-30  Tim-Philipp Müller  <tim at centricular dot net>
5331
5332         * gst/playback/gstplaybasebin.c: (gen_source_element):
5333           Throw a more comprehensible error for rtsp:// URIs (rather
5334           than erroring out with a negotiation error later on) until
5335           we fix playbin to handle rtspsrc etc.
5336
5337 2006-05-30  Wim Taymans  <wim@fluendo.com>
5338
5339         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
5340         (gst_text_overlay_text_event):
5341         Added some FIXMEs.
5342
5343 2006-05-30  Wim Taymans  <wim@fluendo.com>
5344
5345         * gst/adder/gstadder.c: (gst_adder_class_init), (gst_adder_init),
5346         (gst_adder_request_new_pad), (gst_adder_release_pad):
5347         * gst/adder/gstadder.h:
5348         Implement release_request_pad.
5349         Make padcounter atomic.
5350
5351         * tests/check/elements/adder.c: (GST_START_TEST), (adder_suite):
5352         Added check for release_pad in adder.
5353
5354 2006-05-30  Wim Taymans  <wim@fluendo.com>
5355
5356         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream):
5357         Fix build again.
5358
5359 2006-05-30  Thomas Vander Stichele  <thomas at apestaart dot org>
5360
5361         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
5362         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
5363         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
5364         (gst_ogg_pad_submit_page), (gst_ogg_chain_new_stream),
5365         (gst_ogg_demux_seek), (gst_ogg_demux_get_data),
5366         (gst_ogg_demux_get_next_page), (gst_ogg_demux_do_seek),
5367         (gst_ogg_demux_bisect_forward_serialno),
5368         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_chains),
5369         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
5370           add more debugging
5371           clean up printf formats for granulepos and serialno
5372
5373 2006-05-30  Michael Smith  <msmith@fluendo.com>
5374
5375         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
5376         (gst_vorbis_enc_class_init), (gst_vorbis_enc_dispose),
5377         (gst_vorbis_enc_generate_sink_caps), (gst_vorbis_enc_sink_getcaps),
5378         (gst_vorbis_enc_init), (gst_vorbis_enc_buffer_from_header_packet),
5379         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
5380         * ext/vorbis/vorbisenc.h:
5381           Multi-channel caps negotiation, so we can do proper multichannel
5382           vorbis encoding, negotiated through audioconvert.
5383
5384 2006-05-30  Wim Taymans  <wim@fluendo.com>
5385
5386         * tests/check/elements/adder.c: (test_event_message_received),
5387         (test_play_twice_message_received), (GST_START_TEST),
5388         (adder_suite):
5389         Added check to show that #339935 is fixed with ongoing
5390         adder and collectpads fixes.
5391
5392 2006-05-29  Wim Taymans  <wim@fluendo.com>
5393
5394         * gst/adder/gstadder.c: (gst_adder_request_new_pad):
5395         Don't leak pad name.
5396
5397 2006-05-29  Wim Taymans  <wim@fluendo.com>
5398
5399         * gst/adder/gstadder.c: (gst_adder_query_duration),
5400         (forward_event_func), (forward_event), (gst_adder_src_event):
5401         Fix adder seeking.
5402         Make query/seeking code threadsafe.
5403
5404         * tests/check/Makefile.am:
5405         * tests/check/elements/adder.c: (test_event_message_received),
5406         (GST_START_TEST), (test_play_twice_message_received):
5407         Fix adder test case.
5408
5409 2006-05-29  Tim-Philipp Müller  <tim at centricular dot net>
5410
5411         Patch by: Young-Ho Cha  <ganadist at chollian net>
5412
5413         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
5414         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
5415         (set_encoding_element), (decodebin_element_added_cb),
5416         (decodebin_element_removed_cb), (setup_subtitle), (setup_source),
5417         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
5418         * gst/playback/gstplaybasebin.h:
5419           Add 'subtitle-encoding' property to playbin, so applications can
5420           force a subtitle encoding for non-UTF8 subtitles (#342268).
5421
5422         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init),
5423         (gst_sub_parse_set_property):
5424           Rename recently-added 'encoding' property to 'subtitle-encoding'
5425           (so it can be proxied by playbin/decodebin in a generic way
5426           with less danger of false positives).
5427
5428 2006-05-29  Michael Smith  <msmith@fluendo.com>
5429
5430         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
5431         (append_with_other_format), (set_structure_widths),
5432         (gst_audio_convert_transform_caps):
5433           Patch from #341562: give more specific audio caps in get_caps, so
5434           that basetransform  can make better decisions on what caps to
5435           negotiate.
5436
5437 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
5438
5439         * tests/check/elements/volume.c:
5440         make it compile again
5441
5442 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
5443
5444         * tests/check/elements/volume.c: (volume_suite):
5445         disable test until #343196 gets resolved
5446
5447 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
5448
5449         * gst/adder/gstadder.c: (gst_adder_get_type):
5450         Make it easier to copy&paste
5451         
5452         * gst/volume/Makefile.am:
5453         * gst/volume/gstvolume.c: (volume_update_real_volume),
5454         (gst_volume_set_volume), (gst_volume_set_mute),
5455         (gst_volume_class_init), (volume_process_int16), (volume_set_caps),
5456         (volume_transform_ip), (volume_update_mute),
5457         (volume_update_volume):
5458         * gst/volume/gstvolume.h:
5459         Add own debug category, move duplicate code to helper function, fix
5460         property texts, add more comments and prepare ffor liboil-goodness
5461         
5462         * tests/check/Makefile.am:
5463         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
5464         add test for mute and passtrough case, be a bit more verbose to track
5465         failure
5466         
5467         * tests/check/generic/states.c: (GST_START_TEST):
5468         catch elements that fail to instantiate
5469
5470 2006-05-28  Edward Hervey  <edward@fluendo.com>
5471
5472         * tests/check/pipelines/simple-launch-lines.c:
5473         * tests/check/pipelines/theoraenc.c:
5474         * tests/check/pipelines/vorbisenc.c:
5475         Comment out tests using parse_launch() if core was built without
5476         parsing capabilities.
5477
5478 2006-05-27  Edward Hervey  <edward@fluendo.com>
5479
5480         * tests/check/Makefile.am:
5481         Extra bonus points for whoever explains to ensonic that you are meant
5482         to test unit tests thoroughly before commiting them, especially if
5483         you know it's going to break.
5484         De-activated element/adder tests.
5485
5486 2006-05-27  Edward Hervey  <edward@fluendo.com>
5487
5488         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
5489         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps):
5490         Marking caps conversion issues as GST_WARNING is way too verbose,
5491         Moving them to GST_LOG.
5492
5493 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
5494
5495         * README:
5496           Replace current README (containing the release notes from
5497           some 0.9.x version) with a proper README taken from the core.
5498
5499 2006-05-26  Wim Taymans  <wim@fluendo.com>
5500
5501         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
5502         (vorbis_dec_src_event), (vorbis_dec_sink_event), (vorbis_do_clip),
5503         (vorbis_dec_push), (vorbis_handle_data_packet), (vorbis_dec_chain),
5504         (vorbis_dec_change_state):
5505         Small cleanups.
5506         Add some FIXMEs
5507         Clip output samples to segment boundaries.
5508
5509 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
5510
5511         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
5512         (gst_ximagesink_xcontext_get), (gst_ximagesink_show_frame):
5513         Improve the errors produced on bad output, including some human
5514         readable description strings.
5515         Handle the (theoretical for ximagesink) case where the XServer 
5516         has a different idea about the size required for a particular 
5517         frame and gives us too small a memory allocation.
5518
5519 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
5520
5521         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
5522         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
5523         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
5524         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
5525         Improve the errors produced on bad output, including some human 
5526         readable description strings.
5527         Handle RGB Xv formats properly by transforming them into our 
5528         big-endian caps description.
5529         Use gst_caps_truncate to ensure that we never try and choose a
5530         non-fixed caps in buffer_alloc.
5531         Handle the case where the XServer has a different idea about the size
5532         required for a particular frame and gives us too small a memory
5533         allocation.
5534         Use -1 to indicate 'no image format', because 0 is a valid XServer
5535         image format number.
5536         Put RGB Xv formats at the end of the caps, so that we always prefer
5537         YUV format frames.
5538         Iterate the available Xv Encodings to determine the maximum width and
5539         height, and then return that in our caps.
5540         (Closes #315312, #337544)
5541
5542 2006-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
5543
5544         * gst/playback/gstdecodebin.c: (remove_fakesink), (pad_probe):
5545         When there is only one unfinished pad and it receives an event that
5546         doesn't match our requirements, we need to set alldone=FALSE so that
5547         the fakesink is not removed yet.
5548
5549 2006-05-25  Tim-Philipp Müller  <tim at centricular dot net>
5550
5551         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
5552           Use gst_type_find_helper_for_buffer() to find the type
5553           of stream from the first packet.
5554
5555         * configure.ac:
5556           Bump requirements to core CVS (needed for vorbis
5557           typefinding to work).
5558
5559 2006-05-24  Edward Hervey  <edward@fluendo.com>
5560
5561         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): 
5562         Added the 'prfl' atom type which MQV (no, it's not a typo) files
5563         contain.  Else they play perfectly fine with qtdemux.
5564
5565 2006-05-23  Stefan Kost  <ensonic@users.sf.net>
5566
5567         * ext/theora/theoradec.c:
5568         * ext/theora/theoraenc.c:
5569         * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
5570         * gst/audiorate/gstaudiorate.c:
5571           make more debug catagories static
5572         
5573         * tests/check/Makefile.am:
5574         * tests/check/elements/adder.c: (message_received),
5575         (test_event_message_received), (GST_START_TEST),
5576         (test_play_twice_message_received), (adder_suite):
5577           added test case for using element twice, extra bonus points for anyone
5578           who can make these test run reliably
5579
5580 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
5581
5582         * ext/theora/theoradec.c: (theora_dec_chain):
5583           Make work with time-stamped input buffers that do not
5584           have a granulepos in BUFFER_OFFSET_END (like theora
5585           buffers coming from matroskademux). Fixes #342448.
5586
5587 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
5588
5589         Patch by: Peter Kjellerstedt  <pkj at axis com>
5590
5591         * gst/tcp/Makefile.am:
5592           fdstresstest doesn't need Gtk+, fix compilation if 
5593           gtk is not available (#342566).
5594
5595 2006-05-19 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
5596          
5597         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
5598           80 line columns
5599           Removed redundant floor()
5600
5601 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
5602
5603         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5604           On second thought, just skip JUNK chunks automatically, so
5605           the caller doesn't have to handle this. Fixes #342345.
5606           Also, return GST_FLOW_UNEXPECTED if we get a short read,
5607           not GST_FLOW_ERROR.
5608
5609 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
5610
5611         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5612           Don't bail out on JUNK chunks with a size of 0 (would try to
5613           pull_range 0 bytes before, which sources don't like too much).
5614           See #342345.
5615
5616 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
5617
5618         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5619         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5620         Use the gstutil scaling function to preserve 64 bits while calculating
5621         output width and height from the display-aspect-ratio. (A continuation
5622         of #341542)
5623
5624 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
5625
5626         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
5627         (gst_xvimagesink_buffer_alloc):
5628         * sys/xvimage/xvimagesink.h:
5629         When performing buffer allocations, remember the caps and image format
5630         we return so that if the same caps are asked for next time we can
5631         return them immediately without doing any caps intersections.
5632
5633 2006-05-18 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
5634          
5635         * gst-libs/gst/rtp/README:
5636           Some new documentation
5637         * gst-libs/gst/rtp/gstrtpbuffer.h:       
5638           Added GST_RTP_PAYLOAD_DYNAMIC_STRING for use by children       
5639         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
5640         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:     
5641           New RTP audio base payloader class. Supports frame or sample based
5642           codecs.  Not enabled in Makefile.am until approved.
5643
5644 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
5645
5646         * tests/check/elements/alsa.c: (test_device_property_probe):
5647           Fix test case: don't try to free NULL GValueArray when there
5648           are no devices.
5649
5650 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
5651
5652         * tests/check/Makefile.am:
5653         * tests/check/elements/alsa.c: (test_device_property_probe),
5654         (alsa_suite), (main):
5655           Add simple test that runs a device property probe on alsasrc,
5656           alsasink and alsamixer. Disable valgrind check for now (too
5657           many leaks in libasound, and valgrind ignored my suppressions
5658           additions).
5659
5660 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
5661
5662         * ext/alsa/gstalsadeviceprobe.c: (gst_alsa_get_device_list),
5663         (gst_alsa_device_property_probe_probe_property),
5664         (gst_alsa_device_property_probe_needs_probe),
5665         (gst_alsa_device_property_probe_get_values),
5666         (gst_alsa_type_add_device_property_probe_interface):
5667         * ext/alsa/gstalsadeviceprobe.h:
5668         * ext/alsa/gstalsamixerelement.c:
5669         (gst_alsa_mixer_element_init_interfaces):
5670         * ext/alsa/gstalsamixerelement.h:
5671           Clean up and simplify alsa device probing. Make it actually work
5672           for multiple classes. Don't cache results any longer.
5673
5674         * ext/alsa/gstalsasink.c: (gst_alsasink_init_interfaces),
5675         (gst_alsasink_init):
5676         * ext/alsa/gstalsasrc.c: (gst_alsasrc_dispose),
5677         (gst_alsasrc_interface_supported), (gst_implements_interface_init),
5678         (gst_alsasrc_init_interfaces), (gst_alsasrc_set_property):
5679           Make alsasink and alsasrc implement the GstPropertyProbe interface
5680           for device probing (#342181).
5681           Patch by: Martin Szulecki  <gnomebugzilla at sukimashita com>
5682
5683 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
5684
5685         * gst/subparse/samiparse.c: (handle_start_font):
5686           Don't ignore return value of strtol (++compiler_happiness).
5687
5688 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
5689
5690         Patch by: Young-Ho Cha  <ganadist chollian net>
5691
5692         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
5693         (gst_sub_parse_class_init), (gst_sub_parse_init),
5694         (gst_sub_parse_set_property), (gst_sub_parse_get_property),
5695         (convert_encoding):
5696         * gst/subparse/gstsubparse.h:
5697           Add 'encoding' property (#341681).
5698
5699         * gst/subparse/samiparse.c: (characters_sami):
5700           Output is pango markup, so we need to escape text
5701           between tags (#342143).
5702
5703 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
5704
5705         * gst-libs/gst/audio/multichannel.c:
5706         (gst_audio_check_channel_positions):
5707           It's okay to have caps with channels=1 and a channel position
5708           different from GST_AUDIO_CHANNEL_POSITION_FRONT_MONO
5709           (deinterleavers might want to keep the position in the caps,
5710           so that they can be re-interleaved again properly later).
5711           Leave check for unexpected 2-channel layouts intact for now.
5712
5713 2006-05-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5714
5715         * gst/tcp/gsttcp.c: (gst_tcp_socket_read):
5716         Return GST_FLOW_UNEXPECTED when we have an eos on the socket so
5717         basesrc can do its job correctly.
5718
5719 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
5720
5721         * ext/alsa/Makefile.am:
5722         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
5723         (gst_alsa_detect_formats), (get_channel_free_structure),
5724         (caps_add_channel_configuration), (gst_alsa_detect_channels),
5725         (gst_alsa_probe_supported_formats):
5726         * ext/alsa/gstalsa.h:
5727         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
5728           Refactor and improve caps probing code: probe signedness
5729           when we probe the supported formats/widths; set endianness
5730           to the one we actually probed for (ie. cpu endianness).
5731           
5732         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (gst_alsasrc_getcaps),
5733         (gst_alsasrc_close):
5734         * ext/alsa/gstalsasrc.h:
5735           Implement caps probing for alsasrc.
5736
5737 2006-05-15  Wim Taymans  <wim@fluendo.com>
5738
5739         * ext/theora/theoradec.c: (gst_theora_dec_reset),
5740         (theora_dec_src_query), (theora_dec_src_event),
5741         (theora_dec_sink_event), (theora_handle_comment_packet),
5742         (theora_handle_data_packet), (theora_dec_change_state):
5743         Cleanups, add some G_LIKELY.
5744         Use segment helpers instead of our own wrong code.
5745         Clear queued buffers on seek and READY.
5746
5747         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
5748         (vorbis_dec_convert), (vorbis_dec_src_query),
5749         (vorbis_dec_src_event), (vorbis_dec_sink_event),
5750         (vorbis_handle_comment_packet), (vorbis_dec_push),
5751         (vorbis_handle_data_packet), (vorbis_dec_chain),
5752         (vorbis_dec_change_state):
5753         * ext/vorbis/vorbisdec.h:
5754         Remove old useless packetno variable.
5755         Do position query properly.
5756         Add some G_LIKELY.
5757         Do cleanup of queued buffers in new helper function
5758         and use it.
5759
5760 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5761
5762         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
5763           Query supported sample rates. Fixes #341732.
5764
5765 2006-05-15  Julien MOUTTE  <julien@moutte.net>
5766
5767         * gst/playback/gstdecodebin.c: (cleanup_decodebin),
5768         (gst_decode_bin_change_state): Make decodebin reusable
5769         when going from PAUSE_TO_READY and then back to PAUSED.
5770         Fixes #331678.
5771
5772 2006-05-15  Wim Taymans  <wim@fluendo.com>
5773
5774         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types),
5775         (vorbis_dec_convert), (vorbis_dec_src_query),
5776         (vorbis_dec_sink_query), (vorbis_dec_src_event),
5777         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
5778         (vorbis_dec_clean_queued), (vorbis_dec_push),
5779         (vorbis_handle_data_packet), (vorbis_dec_change_state):
5780         Cleanups. Use refcounting and DEBUG_OBJECT.
5781         Reset segment on flush, use code methods instead of our
5782         own wrong version.
5783         Fix potential memleak.
5784
5785 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5786
5787         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
5788         (gst_alsasink_init):
5789         * ext/alsa/gstalsasink.h:
5790           Don't leak allocated snd_output_t structure if there's
5791           more than one alsasink instance at a time (#341873).
5792           Also fix GObject macros in header file.
5793           
5794 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5795
5796         * gst/subparse/gstsubparse.c:
5797         (gst_sub_parse_data_format_autodetect):
5798           Don't use libxml functions in the typefinding code.
5799
5800 2006-05-15  Wim Taymans  <wim@fluendo.com>
5801
5802         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
5803         Fix seeking performance in the case where a non-header 
5804         packet has a 0 granulepos (busted theora case). 
5805         Fixes #341719
5806         (nvdr: thanks Wim for not mentioning who spotted and fixed it in
5807          the first place, you limelight stealer you)
5808
5809 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5810
5811         * gst/subparse/gstsubparse.c:
5812         (gst_sub_parse_data_format_autodetect):
5813           Improve SAMI typefinding: handle case where there are
5814           whitespaces or newlines in front of the first <SAMI>
5815           tag (#169936).
5816
5817 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5818
5819         * configure.ac:
5820           Build video4linux plugin even if there's no XVIDEO, just
5821           without implementing the GstXOverlay interface (#334002).
5822          
5823 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5824
5825         * configure.ac:
5826         * ext/libvisual/visual.c: (gst_visual_actor_plugin_is_gl),
5827         (plugin_init):
5828           Add tentative support for libvisual-0.4 (#336881).
5829
5830 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5831
5832         Patch by: Young-Ho Cha <ganadist at chollian net>
5833
5834         * gst/subparse/samiparse.c: (handle_start_font):
5835           Need to map "silver" colour explicitly (#169936).
5836
5837 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5838
5839         Patch by: Young-Ho Cha  <ganadist at chollian net>
5840
5841         * gst/subparse/Makefile.am:
5842         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
5843         (parser_state_dispose), (gst_sub_parse_data_format_autodetect),
5844         (gst_sub_parse_format_autodetect), (feed_textbuf),
5845         (gst_subparse_type_find), (plugin_init):
5846         * gst/subparse/gstsubparse.h:
5847         * gst/subparse/samiparse.c:
5848         * gst/subparse/samiparse.h:
5849           Add support for SAMI subtitles (#169936).
5850
5851 2006-05-14  Michael Smith  <msmith@fluendo.com>
5852
5853         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
5854           Fix #341696: crash when mixing L+R+C to mono or stereo.
5855         * tests/check/Makefile.am:
5856         * tests/check/elements/audioconvert.c: (set_channel_positions),
5857         (get_float_mc_caps), (get_int_mc_caps), (GST_START_TEST),
5858         (audioconvert_suite):
5859           Add test for the above, including some generic framework bits for
5860           testing multichannel things.
5861
5862 === release 0.10.7 ===
5863
5864 2006-05-14  Jan Schmidt <thaytan@mad.scientist.com>
5865
5866         * configure.ac:
5867           releasing 0.10.7, "Leave the gun"
5868
5869 2006-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
5870
5871         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5872         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5873         Fix the build.
5874
5875 2006-05-12  Jan Schmidt  <thaytan@mad.scientist.com>
5876
5877         * docs/libs/gst-plugins-base-libs-docs.sgml:
5878         * docs/libs/gst-plugins-base-libs-sections.txt:
5879         * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio):
5880         * gst-libs/gst/video/video.h:
5881         * gst/videoscale/Makefile.am:
5882         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5883         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5884         * tests/check/Makefile.am:
5885         * tests/check/libs/video.c: (GST_START_TEST), (video_suite),
5886         (main):
5887           Fix integer overflow problem with pixel-aspect-ratio calculations
5888           in videoscale and xvimagesink (#341542)
5889
5890 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
5891
5892         * gst-libs/gst/tag/gstid3tag.c:
5893           Map GST_IMAGE_TAG to and from ID2v2 APIC frames (#341557).
5894
5895 2006-05-12  Sebastien Moutte  <sebastien@moutte.net>
5896
5897         * win32/MANIFEST:
5898           update win32 files listing
5899
5900 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
5901
5902         patch by: Sjoerd Simons (sjoerd@luon.net)
5903
5904         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
5905         (group_create), (group_destroy), (add_stream),
5906         (gst_play_base_bin_get_property),
5907         (gst_play_base_bin_get_streaminfo_value_array):
5908         * gst/playback/gstplaybasebin.h:
5909           API: GstPlayBaseBin::stream-info-value-array property
5910           use a more bindings-friendly way of exposing streaminfo
5911           using a GValueArray.  Tested in ipython.
5912           Closes #341114
5913
5914 2006-05-11  Wim Taymans  <wim@fluendo.com>
5915
5916         * gst/playback/gstdecodebin.c: (try_to_link_1), (queue_enlarge),
5917         (queue_underrun_cb), (queue_filled_cb):
5918         Also catch queue underruns but don't do anything yet.
5919         Refactor and comment queue enlarging code a bit.
5920
5921         * gst/playback/gstplaybasebin.c: (queue_overrun),
5922         (queue_threshold_reached), (queue_out_of_data),
5923         (gen_preroll_element):
5924         If a queue over/underruns check that we don't create nasty
5925         deadlocks when the min-threshold is not reached but the
5926         max-bytes is. In those cases disable max-bytes when we
5927         know that the queue is fed timed data.
5928         Add more comments.
5929
5930 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
5931
5932         * gst/playback/gstplaybin.c: (gen_audio_element):
5933           Make playbin automatically plug an 'audioresample'
5934           element before the audio sink as well. This solves
5935           problems with sinks that only accept a very specific
5936           sample rate, like esdsink (e.g. #340379).
5937
5938 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
5939
5940         * gst/playback/gstplaybasebin.c: (gen_source_element):
5941           Make http sources send special headers so that we receive
5942           icecast metadata if the http stream is an icecast stream
5943           (otherwise the server will just ignore them). This also
5944           means that from now on users will need the 'icydemux'
5945           element from gst-plugins-good installed if they want to
5946           listen to icecast radio streams. (#341432, #333657).
5947
5948 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
5949
5950         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_remove_client_link),
5951         (gst_multi_fd_sink_new_client), (gst_multi_fd_sink_stop):
5952           remove stupid example from docs - it should come with a simple
5953           C program instead.
5954           Clean up/fix docs
5955         * tests/check/elements/multifdsink.c: (wait_bytes_served),
5956         (fail_if_can_read), (GST_START_TEST),
5957         (gst_multifdsink_create_streamheader), (multifdsink_suite):
5958           add a test for changing streamheader which exposes a bug in
5959           multifdsink
5960
5961 2006-05-11  Michael Smith  <msmith@fluendo.com>
5962
5963         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
5964         (gst_gnome_vfs_src_received_headers_callback):
5965         * ext/gnomevfs/gstgnomevfssrc.h:
5966           Don't set icy-caps unless we have a sane interval value. Move
5967           interval to a local variable; we never use it outside this function.
5968
5969 2006-05-11  Wim Taymans  <wim@fluendo.com>
5970
5971         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
5972         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
5973         Register special buffer types along with the objects so
5974         that they are not registered at runtime from N different
5975         streaming threads since they are not threadsafe.
5976
5977 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
5978
5979         * tests/check/elements/multifdsink.c: (wait_bytes_served),
5980         (GST_START_TEST), (fail_unless_read), (multifdsink_suite):
5981           add two more tests, one doing streamheader
5982
5983 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
5984
5985         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_stop):
5986           clean up the bufqueue when shutting down
5987         * tests/check/Makefile.am:
5988         * tests/check/elements/multifdsink.c: (setup_multifdsink),
5989         (cleanup_multifdsink), (GST_START_TEST), (multifdsink_suite),
5990         (main):
5991           add a test for the leak that was just fixed
5992
5993 2006-05-10  Wim Taymans  <wim@fluendo.com>
5994
5995         * gst/adder/gstadder.c: (gst_adder_setcaps),
5996         (gst_adder_query_duration), (gst_adder_query), (forward_event),
5997         (gst_adder_src_event), (gst_adder_sink_event),
5998         (gst_adder_class_init), (gst_adder_finalize),
5999         (gst_adder_request_new_pad), (gst_adder_collected):
6000         * gst/adder/gstadder.h:
6001         Updated some docs. Added comments and FIXMEs all over the place.
6002         Improve debugging info.
6003         Fix leak on finalize by not calling the parent.
6004         Implement duration query.
6005         Make event forwarding threadsafe.
6006         Correctly send NEWSEGMENT at start and after flush.
6007         Handle EOS correctly.
6008         Post error when not negotiated.
6009
6010         * tests/check/elements/adder.c: (GST_START_TEST):
6011         Added FIXME in the test.
6012
6013 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
6014
6015         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
6016         (gst_text_overlay_halign_get_type),
6017         (gst_text_overlay_wrap_mode_get_type):
6018         * ext/theora/theoradec.c: (theora_handle_type_packet),
6019         (theora_handle_data_packet):
6020         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
6021         (theora_enc_sink_setcaps), (theora_enc_chain):
6022         * gst-libs/gst/cdda/gstcddabasesrc.c:
6023         (gst_cdda_base_src_mode_get_type):
6024         * gst/audiotestsrc/gstaudiotestsrc.c:
6025         (gst_audiostestsrc_wave_get_type):
6026         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
6027         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
6028         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
6029         (gst_sync_method_get_type), (gst_unit_type_get_type),
6030         (gst_client_status_get_type):
6031         * gst/videoscale/gstvideoscale.c:
6032         (gst_video_scale_method_get_type):
6033         * gst/videotestsrc/gstvideotestsrc.c:
6034         (gst_video_test_src_pattern_get_type):
6035         * gst/videotestsrc/videotestsrc.c: (paint_setup_I420),
6036         (paint_setup_YV12), (paint_setup_YUY2), (paint_setup_UYVY),
6037         (paint_setup_YVYU), (paint_setup_IYU2), (paint_setup_Y41B),
6038         (paint_setup_Y42B), (paint_setup_Y800), (paint_setup_YVU9),
6039         (paint_setup_YUV9), (paint_setup_RGB888), (paint_setup_BGR888),
6040         (paint_setup_RGB565), (paint_setup_xRGB1555):
6041           Const-ify GEnumValue and GFlagsValue arrays. Use
6042           GST_ROUND_UP_* macros instead of home-made ones.
6043
6044 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
6045
6046         * configure.ac:
6047           Require core CVS for the new newsegment stuff.
6048
6049 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
6050
6051         Patch by: Sjoerd Simons  <sjoerd at luon net>
6052
6053         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type):
6054           Register nick for enum value (#341160).
6055
6056 2006-05-09  Stefan Kost  <ensonic@users.sf.net>
6057
6058         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find),
6059         (plugin_init):
6060          backout typefind patch #340375
6061          
6062         * tests/check/elements/adder.c: (message_received),
6063         (GST_START_TEST), (adder_suite):
6064           redo, signal-handling of test
6065
6066 2006-05-09  Wim Taymans  <wim@fluendo.com>
6067
6068         * gst/adder/gstadder.c: (gst_adder_request_new_pad),
6069         (gst_adder_collected):
6070         * gst/adder/gstadder.h:
6071         Remove bogus segment merging and forwarding, we don't
6072         care about timestamps anyway and we just produce a
6073         continuous stream. 
6074         Also create a nice NEWSEGMENT event when we start.
6075         Use _scale_int some more.
6076
6077 2006-05-09  Edward Hervey  <edward@fluendo.com>
6078
6079         * tests/icles/stress-xoverlay.c:
6080         Fix if core was built without parsing support.
6081
6082 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
6083
6084         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6085           Add SEDG (Samsung MPEG-4) fourcc.
6086
6087 2006-05-09  Edward Hervey  <edward@fluendo.com>
6088
6089         * tests/icles/stress-xoverlay.c:
6090         * tests/examples/volume/volume.c:
6091         Fix if core was built without parsing support.
6092
6093         * tests/examples/seek/seek.c:
6094         Disable the parse_launch example if core was built without parsing
6095         support.
6096
6097 2006-05-08  Edward Hervey  <edward@fluendo.com>
6098
6099         * autogen.sh: (CONFIGURE_DEF_OPT): 
6100         libtoolize on Darwin/MacOSX is called glibtoolize
6101
6102 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
6103
6104         * tests/check/Makefile.am:
6105         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST):
6106           Disable the adder test, until the build-slaves posses the kindness to 
6107           either like it or to give valid reason for not doing so 
6108
6109 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
6110
6111         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
6112         (adder_suite):
6113           Shuffle NULL state change around and raise timeout more
6114
6115 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
6116
6117         * gst/typefind/gsttypefindfunctions.c: (mp4_find_box),
6118         (mp4_type_find), (plugin_init):
6119           Add typefind to distinguish between "audio/x-m4a" and new type
6120           "video/mp4". Fixes #340375
6121
6122         * tests/check/elements/adder.c: (adder_suite):
6123           Raise timeout to make buildbot happy
6124
6125 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
6126
6127         * gst/adder/gstadder.c: (gst_adder_sink_event),
6128         (gst_adder_request_new_pad), (gst_adder_change_state):
6129         * gst/adder/gstadder.h:
6130         * tests/check/Makefile.am:
6131         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
6132         (adder_suite), (main):
6133           Add sink-event handling to adder. It tries to merge incomming
6134           newsegment-events. Added test to check if segment_done is comming
6135           through. Fixes #340060
6136
6137 2006-05-05  Andy Wingo  <wingo@pobox.com>
6138
6139         * ext/theora/theoraparse.c (gst_theora_parse_init)
6140         (theora_parse_src_convert, theora_parse_src_query):
6141         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
6142         (vorbis_parse_convert, vorbis_parse_src_query): Add convert and
6143         query functions on the source pads of the theora and vorbis parse
6144         elements. Fixes position querying when doing a remux.
6145
6146 2006-05-05  Michael Smith  <msmith@fluendo.com>
6147
6148         * ext/theora/theoraparse.c: (parse_granulepos),
6149         (theora_parse_drain_queue_prematurely),
6150         (theora_parse_queue_buffer), (theora_parse_sink_event):
6151           Fix flushing.
6152           Fix invalid granulepos outputs when starting with a non-keyframe.
6153
6154 2006-05-05  Jan Schmidt  <thaytan@mad.scientist.com>
6155
6156         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find),
6157         (mpeg1_sys_type_find), (ogganx_type_find), (sw_data_destroy):
6158         Rearrange MPEG system stream detection, fixing some memleaks in the
6159         process.
6160         Constify the data for STARTS_WITH and RIFF helper handlers. Make sure
6161         they clean up their data correctly.
6162         Remove unused ogganx caps and move the 'is_annodex' check to inside
6163         the 'is_ogg' if statement.
6164
6165 2006-05-05  Wim Taymans  <wim@fluendo.com>
6166
6167         * gst/playback/gstdecodebin.c: (cleanup_decodebin):
6168         Properly remove ghostpads. Fixes #340392
6169
6170 2006-05-04  David Schleef  <ds@schleef.org>
6171
6172         * gst/typefind/gsttypefindfunctions.c:
6173
6174 2006-05-03  Jan Schmidt  <thaytan@mad.scientist.com>
6175
6176         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
6177         (mpeg_ts_probe_headers), (mpeg_ts_type_find):
6178
6179         When typefinding an MP3 in push-based mode, don't penalise the
6180         probability down to 74% when we found 5 valid frames just because we
6181         can't peek the end of the file.
6182
6183         Make the probability for detecting MPEG Transport Streams based on the
6184         number of sequential headers we successfully detected.
6185
6186 2006-05-03  Wim Taymans  <wim@fluendo.com>
6187
6188         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
6189         (vorbis_dec_push), (vorbis_dec_chain):
6190         Still produce an error when we receive an empty packet.
6191
6192 2006-05-03  Wim Taymans  <wim@fluendo.com>
6193
6194         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
6195         (gst_ogg_chain_mark_discont), (gst_ogg_chain_new_stream),
6196         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek):
6197         Mark buffers with DISCONT after seek and after activating new
6198         chains.
6199
6200         * ext/theora/gsttheoradec.h:
6201         * ext/theora/theoradec.c: (gst_theora_dec_reset),
6202         (theora_get_query_types), (theora_dec_sink_event),
6203         (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
6204         (theora_dec_change_state):
6205         Fix frame counter.
6206         Detect and mark DISCONT buffers.
6207
6208         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
6209         (vorbis_dec_sink_event), (vorbis_dec_push), (vorbis_dec_chain),
6210         (vorbis_dec_change_state):
6211         * ext/vorbis/vorbisdec.h:
6212         Use GstSegment.
6213         Detect and mark DISCONT buffers.
6214         Don't crash on 0 sized buffers.
6215
6216 2006-05-03  Wim Taymans  <wim@fluendo.com>
6217
6218         * gst/volume/gstvolume.c: (volume_funcfind), (volume_set_caps),
6219         (volume_transform_ip):
6220         Increase "volume" property to 10.0. Fixes #340369.
6221         Set the process function to NULL when capsnego fails so that
6222         we properly error out.
6223
6224 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
6225
6226         * gst/playback/gstplaybin.c: (add_sink):
6227         * gst/playback/test.c: (main):
6228         * gst/playback/test5.c: (dump_element_stats):
6229         * gst/playback/test6.c: (main):
6230           free caps using gst_caps_unref, don't leak caps-strings
6231
6232 2006-05-01  Tim-Philipp Müller  <tim at centricular dot net>
6233
6234         * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
6235         (plugin_init):
6236           Refine musepack typefinding a bit. Return MAXIMUM
6237           probability when we detect stream version 7 to make
6238           sure the mpeg audio typefinder doesn't trump us.
6239
6240 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
6241
6242         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
6243           Protect against unexpected NULL strf_data buffer.
6244
6245 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
6246
6247         * tests/check/elements/audioconvert.c: (verify_convert),
6248         (GST_START_TEST):
6249           interpret the out[] buffer in the order the bytes are actually
6250           put in, which is LITTLE_ENDIAN, not BYTE_ORDER.
6251           Other tests should use BYTE_ORDER since the array is filled in
6252           with actual values
6253
6254 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
6255
6256         * tests/check/elements/audioconvert.c: (verify_convert),
6257         (GST_START_TEST):
6258           when a test fails, give an indication of which it is
6259
6260 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
6261
6262         * gst-libs/gst/cdda/gstcddabasesrc.c:
6263           compile fix; strtol() needs <stdlib.h>
6264
6265 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
6266
6267         * ext/alsa/gstalsamixerelement.c:
6268         * ext/alsa/gstalsasrc.c:
6269         * ext/cdparanoia/gstcdparanoiasrc.c:
6270         * ext/gnomevfs/gstgnomevfssink.c:
6271         * ext/gnomevfs/gstgnomevfssrc.c:
6272         * ext/ogg/gstoggdemux.c:
6273         * ext/ogg/gstoggmux.c:
6274         * ext/ogg/gstoggparse.c:
6275         * ext/ogg/gstogmparse.c:
6276         * ext/pango/gstclockoverlay.c:
6277         * ext/pango/gsttextoverlay.c:
6278         * ext/pango/gsttextrender.c:
6279         * ext/pango/gsttimeoverlay.c:
6280         * ext/theora/theoradec.c:
6281         * ext/theora/theoraenc.c:
6282         * ext/vorbis/vorbisdec.c:
6283         * ext/vorbis/vorbisenc.c:
6284         * gst-libs/gst/audio/gstaudiofilter.c:
6285         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
6286         * gst/audioconvert/gstaudioconvert.c:
6287         * gst/audiorate/gstaudiorate.c:
6288         * gst/audioresample/gstaudioresample.c:
6289         * gst/audiotestsrc/gstaudiotestsrc.c:
6290         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6291         * gst/playback/gstdecodebin.c:
6292         * gst/playback/gstplaybin.c:
6293         * gst/playback/gststreamselector.c:
6294         * gst/subparse/gstsubparse.c:
6295         * gst/tcp/gstmultifdsink.c:
6296         * gst/tcp/gsttcpclientsink.c:
6297         * gst/tcp/gsttcpclientsrc.c:
6298         * gst/tcp/gsttcpserversink.c:
6299         * gst/tcp/gsttcpserversrc.c:
6300         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
6301         * gst/videorate/gstvideorate.c:
6302         * gst/videoscale/gstvideoscale.c:
6303         * gst/videotestsrc/gstvideotestsrc.c:
6304         * gst/volume/gstvolume.c:
6305         * sys/v4l/gstv4ljpegsrc.c:
6306         * sys/v4l/gstv4lmjpegsink.c:
6307         * sys/v4l/gstv4lmjpegsrc.c:
6308         * sys/v4l/gstv4lsrc.c:
6309         * sys/ximage/ximagesink.c:
6310         * sys/xvimage/xvimagesink.c:
6311         * tests/check/libs/cddabasesrc.c:
6312           make GstElementDetails const
6313
6314 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
6315
6316         * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
6317         (gst_adder_init):
6318           send events from src-pad to all sink-pads fixes #338657
6319
6320 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
6321
6322         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps),
6323         (alsasink_parse_spec):
6324           query width capabilities from alsa, fixes #338919
6325
6326 2006-04-28  Wim Taymans  <wim@fluendo.com>
6327
6328         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
6329         (gst_multi_fd_sink_remove_client_link):
6330         * gst/tcp/gstmultifdsink.h:
6331         Fix race condition in multifdsink that can lead to spurious 
6332         duplicate clients. this patch adds a new signal that is fired when
6333         multifdsink has removed all references to the fd.
6334         Fixes #339574.
6335         Updated documentation.
6336         API: client-fd-removed signal added
6337
6338 2006-04-28  Michael Smith  <msmith@fluendo.com>
6339
6340         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats):
6341           When asking g_value_array_new to prealloc elements, we may as well
6342           ask for the right number of elements.
6343
6344 2006-04-28  Wim Taymans  <wim@fluendo.com>
6345
6346         * gst-libs/gst/audio/gstbaseaudiosink.c:
6347         (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
6348         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
6349         patch to make timestamp checking more tollerant to rounding 
6350         errors given that real discontinuities are to be marked on
6351         buffers. Fixes some asf files and #338778.
6352         Also avoid some crashers when we receive an event in the 
6353         NULL state.
6354
6355 2006-04-28  Michael Smith  <msmith@fluendo.com>
6356
6357         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
6358         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
6359         (gst_gnome_vfs_src_get_property),
6360         (gst_gnome_vfs_src_send_additional_headers_callback),
6361         (gst_gnome_vfs_src_received_headers_callback),
6362         (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_start),
6363         (gst_gnome_vfs_src_stop):
6364         * ext/gnomevfs/gstgnomevfssrc.h:
6365           Remove ICY handling (mostly) from gnomevfssrc, in favour of
6366           proper shared support within icydemux.
6367
6368 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
6369
6370         * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
6371         (gst_video_rate_swap_prev), (gst_video_rate_chain):
6372           fix up docs
6373           fix a leak when no caps negotiated
6374           fix counting of input frames
6375         * tests/check/elements/.cvsignore:
6376         * tests/check/elements/videorate.c: (assert_videorate_stats),
6377         (GST_START_TEST), (videorate_suite):
6378           add tests for these
6379
6380 2006-04-28  Wim Taymans  <wim@fluendo.com>
6381
6382         * gst-libs/gst/audio/gstringbuffer.c:
6383         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
6384         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
6385         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
6386         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
6387         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
6388         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
6389         (gst_ring_buffer_commit), (gst_ring_buffer_read),
6390         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
6391         (gst_ring_buffer_clear), (gst_ring_buffer_may_start):
6392         Check arguments passed to public functions instead of
6393         crashing.
6394
6395 2006-04-28  Wim Taymans  <wim@fluendo.com>
6396
6397         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
6398         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
6399         GstBaseAudioSrc must be live or it does not work.
6400
6401         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audio_src_init):
6402         Don't set live to TRUE as this is the default in the parentclass.
6403
6404 2006-04-28  Wim Taymans  <wim@fluendo.com>
6405
6406         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps),
6407         (gst_video_scale_fixate_caps), (gst_video_scale_src_event):
6408         Videoscale doesn't pass on pixel-aspect ratio. Handle all
6409         fixation cases better. Fixes #338991
6410
6411 2006-04-28  Wim Taymans  <wim@fluendo.com>
6412
6413         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
6414         Handle 0/1 framerate correctly Fixes #331901.
6415
6416 2006-04-28  Wim Taymans  <wim@fluendo.com>
6417
6418         * tests/check/elements/audioconvert.c: (get_float_caps),
6419         (GST_START_TEST), (audioconvert_suite):
6420         Added check for correct clipping when doing float samples
6421         in audioconvert.
6422
6423 2006-04-28  Wim Taymans  <wim@fluendo.com>
6424
6425         * gst/videorate/gstvideorate.c: (gst_video_rate_event),
6426         (gst_video_rate_chain):
6427         Print more debugging info.
6428
6429 2006-04-28  Wim Taymans  <wim@fluendo.com>
6430
6431         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
6432         (resample_set_state_from_caps):
6433         Add support for other formats audioresample can handle such as
6434         32 bits in and float and 64 bits float. Fixes #301759
6435
6436 2006-04-28  Wim Taymans  <wim@fluendo.com>
6437
6438         * gst/audioconvert/audioconvert.c: (float):
6439         correctly clip float samples > 1.0. Fixes #338718
6440
6441 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
6442
6443         Patch by: Young-Ho Cha  <ganadist at chollian net>
6444
6445         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
6446         (gst_text_overlay_render_text):
6447           Don't strip newlines from the text. Also, center lines
6448           within multi-line paragraphs (#339405).
6449
6450 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
6451
6452         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find):
6453           Fix wavpack typefinding to work in more cases (don't peek
6454           for chunks of multiple hundred kBs at once, but process
6455           things step-by-step in smaller units). Fixes #339786.
6456
6457 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
6458
6459         * configure.ac:
6460           back to HEAD
6461
6462 === release 0.10.6 ===
6463
6464 2006-04-28  Thomas Vander Stichele <thomas at apestaart dot org>
6465
6466         * configure.ac:
6467           releasing 0.10.6, "Chao"
6468
6469 2006-04-26  David Schleef  <ds@schleef.org>
6470
6471         * gst/videoscale/gstvideoscale.c: Add call to oil_init().
6472           Fixes #338897.
6473
6474 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
6475
6476         * configure.ac:
6477         * win32/common/config.h:
6478           new prerelease
6479
6480 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
6481
6482         patch by: Wim Taymans
6483
6484         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
6485         (gst_ogg_demux_perform_seek):
6486           make sure correct newsegments are sent, so that the decoder
6487           and the demuxer agree on timestamps.  Fixes playback of a lot
6488           of Ogg files that do not start from 0.  Fixes #339833.
6489
6490 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
6491
6492         Patch by: Edward Hervey  <edward@fluendo.com>
6493
6494         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
6495         * tests/check/Makefile.am:
6496         * tests/check/elements/videorate.c: (assert_videorate_stats),
6497         (setup_videorate), (cleanup_videorate), (GST_START_TEST),
6498         (videorate_suite), (main):
6499           Fix an infinite loop if frames are passed in with wrongly ordered
6500           timestamps.  Fixes #339013.
6501
6502 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6503
6504         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
6505
6506         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
6507           fix typefinding on some ISO files.  Fixes #339212.
6508
6509 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6510
6511         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
6512
6513         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6514           add another H264 fourcc.  Fixes #339047.
6515
6516 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6517
6518         Patch by: Jan Schmidt
6519
6520         * gst/playback/gststreamselector.c:
6521         (gst_stream_selector_bufferalloc):
6522           Restore old StreamSelector behaviour.
6523           Fixes #338419.
6524
6525 2006-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
6526
6527         * configure.ac:
6528         * win32/common/config.h:
6529           prerelease
6530
6531 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
6532
6533         Patch by: Antoine Tremblay  <hexa00 at gmail dot com>
6534
6535         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6536         (gst_base_rtp_depayload_finalize), (gst_base_rtp_depayload_push):
6537           Fix some memory leaks: on finalize, free buffers left in the queue
6538           before destroying the queue; in _push(), unref rtp_buf even if
6539           the process vfunc returned a NULL buffer as output buffer (#337548);
6540           demote some recuring debug messages to LOG level.
6541
6542 2006-04-11  Wim Taymans  <wim@fluendo.com>
6543
6544         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6545         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
6546         (gst_ogg_chain_free), (gst_ogg_demux_sink_event),
6547         (gst_ogg_demux_loop):
6548         More cleanups.
6549         Respect segment stop when emiting EOS or SEGMENT_DONE.
6550         Fixes (#337945).
6551
6552 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
6553
6554         * gst/playback/gststreamselector.c:
6555         (gst_stream_selector_get_property):
6556           Don't leak pad name.
6557
6558 2006-04-10  Michael Smith  <msmith@fluendo.com>
6559
6560         * tests/check/Makefile.am:
6561         * tests/check/gst-plugins-base.supp:
6562           Suppress an old libtheora bug (fixed in more recent versions), so 
6563           that FC4 buildslaves can pass.
6564
6565 2006-04-10  Wim Taymans  <wim@fluendo.com>
6566
6567         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6568         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
6569         (gst_ogg_demux_init), (gst_ogg_demux_finalize),
6570         (gst_ogg_demux_sink_event), (gst_ogg_demux_get_data),
6571         (gst_ogg_demux_loop):
6572         Don't leak events.
6573         Remember what error we got when finding chains, if we
6574         were shutdown, that would not be an error.
6575
6576 2006-04-10  Wim Taymans  <wim@fluendo.com>
6577
6578         * gst-libs/gst/audio/gstbaseaudiosink.c:
6579         (gst_base_audio_sink_event):
6580         Starting the ringbuffer when we did not acquire it can cause
6581         a deadlock, is pointless and causes nasty things for
6582         subclasses. 
6583         Fixes gst-launch audiotestsrc num-buffers=0 ! alsasink.
6584
6585 2006-04-10  Wim Taymans  <wim@fluendo.com>
6586
6587         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6588         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
6589         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
6590         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
6591         (gst_ogg_demux_deactivate_current_chain),
6592         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
6593         (gst_ogg_demux_bisect_forward_serialno),
6594         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain):
6595         Add some more debugging.
6596
6597 2006-04-10  Wim Taymans  <wim@fluendo.com>
6598
6599         * ext/theora/theoradec.c: (theora_dec_src_event),
6600         (theora_handle_data_packet):
6601         Some more debug info.
6602
6603         * tests/examples/seek/seek.c: (start_seek), (main):
6604         Print element messages too.
6605
6606 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
6607
6608         * gst/audioresample/debug.h:
6609           replace debug macros with variable number of parameters
6610           by a simple alias to gstreamer standard debug macros 
6611          (#define RESAMPLE_ERROR GST_ERROR, __VA_ARGS__ is not
6612           supported by MSVC 6.0 and 7.1)
6613         * gst/audioresample/resample.h:
6614           define M_PI and rint for WIN32
6615         * win32/common/libgstaudio.def:
6616         * win32/common/libgstriff.def:
6617         * win32/common/libgsttag.def:
6618         * win32/common/libgstvideo.def:
6619           add new exported functions
6620         * win32/vs6:
6621           update project files
6622
6623 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
6624
6625         * ext/alsa/gstalsamixeroptions.c:
6626         (gst_alsa_mixer_options_class_init):
6627         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init):
6628         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init):
6629         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
6630         * ext/ogg/gstoggparse.c: (gst_ogg_parse_class_init):
6631         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_class_init):
6632         * gst-libs/gst/audio/gstaudiofilter.c:
6633         (gst_audio_filter_class_init):
6634         * gst-libs/gst/audio/gstaudiosink.c:
6635         (gst_audioringbuffer_class_init):
6636         * gst-libs/gst/audio/gstaudiosrc.c:
6637         (gst_audioringbuffer_class_init):
6638         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_class_init):
6639         * gst-libs/gst/interfaces/colorbalancechannel.c:
6640         (gst_color_balance_channel_class_init):
6641         * gst-libs/gst/interfaces/mixeroptions.c:
6642         (gst_mixer_options_class_init):
6643         * gst-libs/gst/interfaces/mixertrack.c:
6644         (gst_mixer_track_class_init):
6645         * gst-libs/gst/interfaces/tunerchannel.c:
6646         (gst_tuner_channel_class_init):
6647         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_class_init):
6648         * gst-libs/gst/netbuffer/gstnetbuffer.c:
6649         (gst_netbuffer_class_init):
6650         * gst-libs/gst/rtp/gstbasertppayload.c:
6651         (gst_basertppayload_class_init):
6652         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
6653         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
6654         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
6655         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
6656         * gst/playback/gststreamselector.c:
6657         (gst_stream_selector_class_init):
6658         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
6659         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
6660         * sys/v4l/gstv4lcolorbalance.c:
6661         (gst_v4l_color_balance_channel_class_init):
6662         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_class_init):
6663         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
6664         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
6665         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_channel_class_init),
6666         (gst_v4l_tuner_norm_class_init):
6667         * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
6668         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
6669         * tests/old/testsuite/alsa/sinesrc.c: (sinesrc_class_init):
6670         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
6671
6672 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
6673
6674         * ext/pango/gsttextrender.h:
6675         * gst-libs/gst/audio/gstaudiosink.h:
6676         * gst-libs/gst/audio/gstaudiosrc.h:
6677         * gst-libs/gst/audio/gstbaseaudiosink.h:
6678         * gst-libs/gst/audio/gstbaseaudiosrc.h:
6679         * gst-libs/gst/audio/gstringbuffer.h:
6680         * gst-libs/gst/rtp/gstbasertpdepayload.h:
6681         * gst-libs/gst/rtp/gstbasertppayload.h:
6682         * gst-libs/gst/video/gstvideofilter.h:
6683         * gst-libs/gst/video/gstvideosink.h:
6684         * gst/playback/gstplaybasebin.h:
6685         * gst/tcp/gstmultifdsink.h:
6686         * sys/v4l/gstv4lelement.h:
6687         Fix broken GObject macros
6688
6689 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
6690
6691         * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec):
6692         More debug to trace why my USB headset is not working with gst
6693
6694 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
6695
6696         * gst/playback/gstplaybasebin.c: (group_destroy):
6697         Clean up our group elements properly in the case where it never 
6698         got committed - it still got added unconditionally to the bin.
6699
6700 2006-04-07  Wim Taymans  <wim@fluendo.com>
6701
6702         * ext/theora/theoradec.c: (theora_dec_sink_event),
6703         (theora_handle_data_packet), (theora_dec_chain):
6704         Unref unhandled events.
6705         Protect against empty buffers.
6706         Perform QoS on running time.
6707
6708 2006-04-07  Michael Smith  <msmith@fluendo.com>
6709
6710         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_set_header_on_caps),
6711         (gst_vorbis_enc_chain):
6712           Remove leaks from vorbisenc.
6713           Mostly minor changes, the only significant one is that now the
6714           buffers we set as 'streamheader' on the caps are copies of the
6715           original buffers, to avoid circular refcounting problems.
6716
6717 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
6718
6719         * gst/playback/gstplaybasebin.c: (mute_stream), (setup_substreams):
6720           Don't remove our mute-probe if someone else already did so.
6721           Don't set a 2nd one if there is already one pending on the pad.
6722
6723         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
6724         (do_playbin_seek):
6725           When a seek fails, ensure that playbin is still set back to playing.
6726           
6727         * gst/typefind/gsttypefindfunctions.c: (mpeg_ts_probe_headers),
6728         (mpeg_ts_type_find), (plugin_init):
6729           Add a typefind function for mpeg-ts streams. (Closes: #336617)
6730
6731 2006-04-06  Andy Wingo  <wingo@pobox.com>
6732
6733         * gst/videorate/gstvideorate.c (gst_video_rate_reset) 
6734         (gst_video_rate_init): Caps-related parameters should not be reset
6735         by a flush -- move their inits to the instance init function.
6736         (gst_video_rate_flush_prev): Don't complain if gst_pad_push
6737         is not OK, just return the result.
6738
6739         * gst/audiotestsrc/gstaudiotestsrc.c
6740         (gst_audio_test_src_class_init)
6741         (gst_audio_test_src_get_times): Re-enable is-live=true, as was
6742         broken by Stefan's commit on 24 March.
6743
6744         * ext/ogg/gstoggmux.c (gst_ogg_mux_push_buffer): Set caps on
6745         buffers being pushed out. Fixes oggmux ! multifdsink.
6746
6747 2006-04-05  Tim-Philipp Müller  <tim at centricular dot net>
6748
6749         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
6750         (gst_vorbis_dec_init), (vorbis_dec_finalize):
6751         * ext/vorbis/vorbisdec.h:
6752         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_add_interfaces),
6753         (gst_vorbis_enc_base_init), (gst_vorbis_enc_class_init),
6754         (gst_vorbis_enc_sink_setcaps), (gst_vorbis_enc_convert_src),
6755         (gst_vorbis_enc_convert_sink), (gst_vorbis_enc_get_query_types),
6756         (gst_vorbis_enc_src_query), (gst_vorbis_enc_sink_query),
6757         (gst_vorbis_enc_init), (gst_vorbis_enc_get_tag_value),
6758         (gst_vorbis_enc_metadata_set1), (gst_vorbis_enc_set_metadata),
6759         (gst_vorbis_enc_setup), (gst_vorbis_enc_clear),
6760         (gst_vorbis_enc_buffer_from_packet),
6761         (gst_vorbis_enc_buffer_from_header_packet),
6762         (gst_vorbis_enc_push_buffer), (gst_vorbis_enc_push_packet),
6763         (gst_vorbis_enc_set_header_on_caps), (gst_vorbis_enc_sink_event),
6764         (gst_vorbis_enc_chain), (gst_vorbis_enc_output_buffers),
6765         (gst_vorbis_enc_get_property), (gst_vorbis_enc_set_property),
6766         (gst_vorbis_enc_change_state):
6767         * ext/vorbis/vorbisenc.h:
6768           Remove left-over 0.8 cruft; use GST_DEBUG_FUNCPTR; make
6769           vorbisenc adhere to the official nomenclature; use boilerplate
6770           macro.
6771
6772 2006-04-04  Andy Wingo  <wingo@pobox.com>
6773
6774         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
6775         Whoops, fix bug introduced. Bad hacker!
6776         
6777         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
6778         Properly handle the case where you get EOS before any buffers are
6779         received. Use gst_buffer_make_metadata_writable where appropriate.
6780
6781         * ext/theora/theoradec.c (theora_handle_data_packet): This value
6782         is often negative -- make it signed so as not to wrap around.
6783         Fixes segfaults introduced on 9 March.
6784
6785 2006-04-03  Wim Taymans  <wim@fluendo.com>
6786
6787         * ext/theora/gsttheoradec.h:
6788         * ext/theora/theoradec.c: (theora_dec_src_event):
6789         Don't try to store a gdouble in a gboolean.
6790         Small cleanups.
6791
6792 2006-04-03  Michael Smith  <msmith@fluendo.com>
6793
6794         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads):
6795           Oggmux sucks.
6796           Make it suck slightly less by writing out the final page.
6797           Still can't encode a vorbis-in-ogg file correctly, though.
6798
6799 2006-04-03  Andy Wingo  <wingo@pobox.com>
6800
6801         * ext/theora/theoraparse.c (theora_parse_drain_queue): Um, remove
6802         a g_print.
6803
6804         * ext/theora/theora.c (plugin_init): Register theoraparse.
6805
6806         * ext/theora/gsttheoraparse.h: 
6807         * ext/theora/theoraparse.c: New files implementing a theora
6808         parser. Now we can properly remux ogg/theora+vorbis, yay.
6809
6810         * ext/vorbis/vorbisparse.c: Add some docs and a copyright.
6811
6812 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
6813
6814         * gst/audiotestsrc/gstaudiotestsrc.c:
6815           Fixed the sample pipeline (see #323798)
6816
6817 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
6818
6819         * configure.ac:
6820         * win32/common/config.h:
6821         * win32/common/config.h.in:
6822           use AS_VERSION and AS_NANO
6823           more cleanups
6824
6825 2006-03-31  Andy Wingo  <wingo@pobox.com>
6826
6827         * ext/vorbis/vorbisparse.c (vorbis_parse_sink_event): Fix
6828         uninitialized variable return that would happen.
6829         
6830         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_queue): Fix
6831         uninitialized variable return that would never happen.
6832
6833         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init) 
6834         (vorbis_parse_sink_event): Add an event function to flush our
6835         state on a seek, and to drain buffers on a premature EOS.
6836         (vorbis_parse_push_headers, vorbis_parse_clear_queue) 
6837         (vorbis_parse_push_buffer, vorbis_parse_drain_queue_prematurely) 
6838         (vorbis_parse_chain, vorbis_parse_queue_buffer) 
6839         (vorbis_parse_drain_queue): Queue up buffers until we can set
6840         their timestamps and granulepos values.
6841
6842         * ext/vorbis/vorbisparse.h: Include the vorbis decoder headers,
6843         and keep track of data needed for deriving granulepos and
6844         timestamps for buffers.
6845
6846 2006-03-29  Wim Taymans  <wim@fluendo.com>
6847
6848         Patch by: j^ <j at bootlab dot org>
6849
6850         * ext/alsa/gstalsamixerelement.c:
6851         (gst_alsa_mixer_element_class_init):
6852         * ext/alsa/gstalsasink.c:
6853         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
6854         * ext/ogg/gstoggdemux.c:
6855         * ext/ogg/gstoggmux.c:
6856         * ext/ogg/gstoggparse.c:
6857         * ext/pango/gstclockoverlay.c:
6858         * ext/pango/gsttextoverlay.c:
6859         * ext/pango/gsttextrender.c:
6860         * ext/pango/gsttimeoverlay.c:
6861         * ext/theora/theoradec.c:
6862         * ext/theora/theoraenc.c:
6863         * ext/vorbis/vorbisdec.c:
6864         * ext/vorbis/vorbisenc.c:
6865         * gst/audioconvert/gstaudioconvert.c:
6866         * gst/subparse/gstsubparse.c:
6867         * gst/tcp/gstmultifdsink.c:
6868         * gst/tcp/gsttcpclientsink.c:
6869         * gst/tcp/gsttcpclientsrc.c:
6870         * gst/tcp/gsttcpserversink.c:
6871         * gst/tcp/gsttcpserversrc.c:
6872           better/unified long descriptions
6873           Fixes #336477
6874
6875 2006-03-29  Wim Taymans  <wim@fluendo.com>
6876
6877         * tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
6878         (stop_seek):
6879         Don't let double and triple clicks mess up our state.
6880
6881 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
6882
6883         * gst/playback/gstplaybin.c: (gen_video_element),
6884         (gen_text_element), (gen_audio_element), (gen_vis_element):
6885           Error out gracefully when we can't create any of the usual
6886           conversion elements for some reason. Also, don't try to
6887           create an audioscale (sic) element that's not used anyway.
6888
6889 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
6890
6891         * gst/playback/gstplaybasebin.c: (setup_source):
6892           Don't post RESOURCE_NOT_FOUND error when we can't find a source
6893           element for a particular protocol, that's confusing for users.
6894           Instead, post a RESOURCE_FAILED error, so that our own error
6895           message is actually shown in totem etc. (#336303).
6896
6897 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
6898
6899         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
6900
6901         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_finalize),
6902         (gst_gnome_vfs_src_get_icy_metadata):
6903           Fix some minor memory leaks (#336194).
6904
6905 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
6906
6907         * ext/gnomevfs/gstgnomevfs.c:
6908         (gst_gnome_vfs_location_to_uri_string):
6909         * ext/gnomevfs/gstgnomevfs.h:
6910         * ext/gnomevfs/gstgnomevfssink.c:
6911         (gst_gnome_vfs_sink_set_property):
6912         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_set_property):
6913           Make gnomevfssink accept filenames as well as URIs for the
6914           "location" property, just like gnomevfssrc does (and
6915           filesrc/filesink do) (#336190).
6916
6917 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
6918
6919         * tests/check/generic/clock-selection.c: (GST_START_TEST):
6920           set to NULL before unreffing, fixes a valgrind leak.
6921           Why was this not triggering the error that an object needs to
6922           be NULL before unreffing ?
6923         * win32/common/config.h:
6924           update
6925
6926 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
6927
6928         * gst/subparse/gstsubparse.c: (convert_encoding),
6929         (gst_sub_parse_change_state):
6930         * gst/subparse/gstsubparse.h:
6931           Text subtitle files may or may not be UTF-8. If it's not, we
6932           don't really want to see '?' characters in place of non-ASCII
6933           characters like accented characters. So let's assume the input
6934           is UTF-8 until we come across text that is clearly not. If it's
6935           not UTF-8, we don't really know what it is, so try the following:
6936           (a) see whether the GST_SUBTITLE_ENCODING environment variable
6937           is set; if not, check (b) if the current locale encoding is
6938           non-UTF-8 and use that if it is, or (c) assume ISO-8859-15 if
6939           the current locale encoding is UTF-8 and the environment variable
6940           was not set to any particular encoding. Not perfect, but better
6941           than nothing (and better than before, I think) (fixes #172848).
6942
6943 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
6944
6945         * configure.ac:
6946           update core requirement to 0.10.4.1 because of async_playback
6947           vmethod on GstBaseSink
6948
6949 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
6950
6951         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
6952         * gst/adder/gstadder.c: (gst_adder_init):
6953         use DEBUG_FUNCPTR for collectpads
6954
6955 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
6956
6957         * docs/plugins/Makefile.am:
6958         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6959         * docs/plugins/gst-plugins-base-plugins-sections.txt:
6960         * ext/cdparanoia/gstcdparanoiasrc.c:
6961         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_base_init),
6962         (gst_gnome_vfs_sink_class_init):
6963         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_base_init):
6964         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_base_init):
6965         * ext/ogg/gstoggmux.c:
6966         * ext/ogg/gstoggparse.c: (gst_ogg_parse_base_init):
6967         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
6968         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init):
6969         * ext/pango/gsttextoverlay.c:
6970         * ext/pango/gsttextrender.c:
6971         * ext/theora/theoradec.c:
6972         * ext/theora/theoraenc.c:
6973         * ext/vorbis/vorbisdec.c:
6974         * ext/vorbis/vorbisenc.c:
6975         * gst-libs/gst/audio/gstaudiofilter.c:
6976         (gst_audio_filter_base_init):
6977         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
6978         (gst_audio_filter_template_base_init):
6979         * gst/adder/gstadder.c: (gst_adder_get_type):
6980         * gst/adder/gstadder.h:
6981         * gst/audioconvert/gstaudioconvert.c:
6982         * gst/audiotestsrc/gstaudiotestsrc.c:
6983         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
6984         (gst_audio_test_src_create):
6985         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6986         * gst/playback/gstdecodebin.c:
6987         * gst/playback/gstplaybin.c:
6988         * gst/playback/gststreamselector.c:
6989         (gst_stream_selector_base_init):
6990         * gst/subparse/gstsubparse.c: (gst_sub_parse_base_init):
6991         * gst/volume/gstvolume.c:
6992         * sys/v4l/gstv4lmjpegsink.c:
6993         * sys/v4l/gstv4lmjpegsrc.c:
6994         * tests/check/libs/cddabasesrc.c:
6995         * tests/old/examples/gob/gst-identity2.gob:
6996           Add docs for adder, use GST_ELEMENT_DETAILS macro,
6997           define GstElementDetails at the top
6998
6999 2006-03-23  Sebastien Moutte  <sebastien@moutte.net>
7000
7001         * win32/common/libgstinterfaces.def:
7002         Add a lot of export functions for gst-python
7003         * win32/vs6/libgstinterfaces.dsp:
7004         Add a missing include folder in the project configuration
7005         
7006 2006-03-23  Wim Taymans  <wim@fluendo.com>
7007
7008         * gst-libs/gst/audio/gstbaseaudiosrc.c:
7009         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
7010         (gst_base_audio_src_change_state):
7011         Fix audio sources, forgot to make the ringbuffer
7012         startable...
7013
7014 2006-03-23  Wim Taymans  <wim@fluendo.com>
7015
7016         * gst-libs/gst/audio/gstbaseaudiosrc.c:
7017         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
7018         (gst_base_audio_src_change_state):
7019         unparent instead of unref the ringbuffer.
7020
7021 2006-03-23  Wim Taymans  <wim@fluendo.com>
7022
7023         * gst-libs/gst/audio/gstbaseaudiosink.c:
7024         (gst_base_audio_sink_class_init), (gst_base_audio_sink_async_play),
7025         (gst_base_audio_sink_do_play), (gst_base_audio_sink_change_state):
7026         Implement new async_play vmethod to start slaving and allow
7027         playback start in case of async PLAY state changes. 
7028
7029         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7030         Enable QoS with new method in base class.
7031
7032 2006-03-23  Wim Taymans  <wim@fluendo.com>
7033
7034         Patch by: Julien MOUTTE <julien at moutte dot net>
7035
7036         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_query),
7037         (gst_video_test_src_do_seek), (gst_video_test_src_create):
7038         Partially handle 0 framerate, only EOS after the first frame
7039         is missing.
7040
7041 2006-03-23  Wim Taymans  <wim@fluendo.com>
7042
7043         Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
7044
7045         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
7046         (gst_riff_create_video_template_caps):
7047         * gst/ffmpegcolorspace/avcodec.h:
7048         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
7049         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
7050         (gst_ffmpegcsp_avpicture_fill):
7051         * gst/ffmpegcolorspace/imgconvert.c:
7052         Patch for support of YVU9 AVI files (#334822)
7053
7054 2006-03-22  Edward Hervey  <edward@fluendo.com>
7055
7056         * docs/design/design-decodebin.txt:
7057         Added design document for new decodebin
7058         (Target Caps): text/x-pango-markup is also a default target caps.
7059
7060 2006-03-22  Wim Taymans  <wim@fluendo.com>
7061
7062         * gst-libs/gst/audio/gstbaseaudiosink.c:
7063         (gst_base_audio_sink_dispose):
7064         Since we _parent the ringbuffer, we also need to
7065         _unparent instead of a plain _unref.
7066
7067 2006-03-22  Wim Taymans  <wim@fluendo.com>
7068
7069         * tests/examples/seek/seek.c: (end_scrub), (do_seek), (seek_cb),
7070         (stop_seek), (scrub_toggle_cb), (main):
7071         Add scrub checkbox.
7072
7073 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
7074
7075         * ext/ogg/gstoggparse.c: (gst_ogg_parse_find_stream),
7076         (gst_ogg_parse_chain):
7077           Fix very inefficient usage of linked lists (#335365).
7078
7079 2006-03-21  Edward Hervey  <edward@fluendo.com>
7080
7081         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
7082         * gst/playback/gstplaybin.c: (handoff):
7083         * gst/playback/gststreamselector.c:
7084         (gst_stream_selector_set_property):
7085         gcc 4.1 unreferenced pointer fixes.
7086         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
7087         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
7088         gst_buffer_ref() now takes a GstBuffer*.
7089
7090 2006-03-20  Julien MOUTTE  <julien@moutte.net>
7091
7092         * sys/xvimage/xvimagesink.c:
7093         (gst_xvimagesink_get_format_from_caps): Fix a memleak reported
7094         by Jan Schmidt.
7095
7096 2006-03-19  Tim-Philipp Müller  <tim at centricular dot net>
7097
7098         * gst/typefind/gsttypefindfunctions.c: (id3v2_type_find),
7099         (id3v1_type_find), (apetag_type_find), (plugin_init):
7100           Can't do tag preferences via probability, as tags would then
7101           lose against types that are recognised with MAXIMUM probability
7102           (like .wav); so let all tag typefinders return MAXIMUM themselves
7103           and order them via the rank. Split ID3v1 and ID3v2 typefinders so
7104           that we can prefer APE to ID3v1 (fixes #335028).
7105           
7106 2006-03-17  Wim Taymans  <wim@fluendo.com>
7107
7108         * gst-libs/gst/audio/gstbaseaudiosink.c:
7109         (gst_base_audio_sink_change_state):
7110         * gst-libs/gst/audio/gstringbuffer.c: (wait_segment),
7111         (gst_ring_buffer_may_start):
7112         * gst-libs/gst/audio/gstringbuffer.h:
7113         Only start playback if we are playing.
7114         should fix #330748.
7115
7116 2006-03-17  Jan Schmidt  <thaytan@mad.scientist.com>
7117
7118         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
7119         * win32/common/config.h:
7120           Revert accidental commits to these files.
7121
7122 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
7123
7124         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
7125
7126         * tests/Makefile.am:
7127           Don't try to build tests in tests/icles if we
7128           don't have X (#323852)
7129
7130 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
7131
7132         * gst-libs/gst/tag/gstid3tag.c:
7133           Add TXXX frame identifiers for replaygain stuff as used
7134           by some taggers (see #323721).
7135
7136 2006-03-16  Jan Schmidt  <thaytan@mad.scientist.com>
7137
7138         * gst/playback/gststreamselector.c:
7139         (gst_stream_selector_set_property),
7140         (gst_stream_selector_bufferalloc):
7141           Preserve the existing buggy streamselector behaviour by performing
7142           a fallback buffer allocation when downstream isn't linked yet.
7143           This should really be fixed in playbin by blocking pads until it's
7144           linked them.
7145           Also, use gst_pad_alloc_buffer instead of
7146           gst_pad_alloc_buffer_and_set.
7147
7148 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
7149
7150         * gst-libs/gst/tag/gstid3tag.c:
7151           Don't crash on unknown ID3v2 TXXX frames.
7152           
7153 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
7154
7155         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise):
7156           Chain up to the parent finalize method.
7157           Add 32-bit sample size to the template caps.
7158
7159         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
7160         (gst_riff_create_video_template_caps):
7161           Add the fourcc that the VMWare codec uses.
7162           
7163         * gst/playback/gststreamselector.c:
7164         (gst_stream_selector_set_property),
7165         (gst_stream_selector_bufferalloc),
7166         (gst_stream_selector_request_new_pad):
7167           For the active pad, forward buffer-alloc requests, otherwise
7168           return GST_FLOW_NOT_LINKED. This also prevents xvimagesink
7169           having to memcpy every frame when used by playbin.
7170
7171         * gst/tcp/gstmultifdsink.c:
7172         (gst_multi_fd_sink_handle_client_write):
7173           Get negotiated caps from the sink pad, rather than the sink
7174           pad's peer.
7175
7176 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
7177
7178         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7179         
7180         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_pop_callbacks):
7181           Don't forget to set src->callbacks_pushed to FALSE again when
7182           popping them, otherwise re-activation in a different mode won't
7183           work (#334620).
7184
7185 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
7186
7187         Patch by: Sebastien Moutte  <sebastien moutte net>
7188
7189         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ff_vid_caps_new),
7190         (gst_ff_aud_caps_new), (gst_ffmpeg_pixfmt_to_caps),
7191         (gst_ffmpeg_smpfmt_to_caps):
7192           Replace __VA_ARGS__ caps creation macros with varargs functions.
7193           Makes things compile on MSVC (#320765), looks nicer, and we can
7194           tell the compiler to check for the NULL terminator.
7195
7196 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
7197
7198         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
7199
7200         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7201           Make sure the buffer we copy into is really always big
7202           enough, this time for real (#333488).
7203           
7204 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
7205
7206         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7207           Add support for 24bpp DIB (#305279).
7208
7209 2006-03-14  Wim Taymans  <wim@fluendo.com>
7210
7211         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_init):
7212         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7213         * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcsp_init):
7214         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
7215         (gst_video_scale_init), (gst_video_scale_src_event):
7216         Re-enable QoS after the release.
7217         Rework videoscale to use the base class src_event handler.
7218
7219 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
7220
7221         * configure.ac:
7222           back to CVS.
7223
7224 === release 0.10.5 ===
7225
7226 2006-03-13  Thomas Vander Stichele <thomas at apestaart dot org>
7227
7228         * configure.ac:
7229           releasing 0.10.5, "Net"
7230
7231 2006-03-13  Tim-Philipp Müller  <tim at centricular dot net>
7232
7233         * docs/plugins/Makefile.am:
7234           Part of previous cdparanoiasrc docs fixes, forgot to commit.
7235           
7236 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
7237
7238         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7239         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7240         * docs/plugins/gst-plugins-base-plugins.hierarchy:
7241           Add cdparanoiasrc to docs.
7242
7243         * gst-libs/gst/cdda/gstcddabasesrc.c:
7244           More GstCddaBaseSrc docs.
7245
7246 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
7247
7248         * docs/libs/gst-plugins-base-libs-sections.txt:
7249         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_user_tag):
7250         * gst-libs/gst/tag/tag.h:
7251           API: libgsttag: new method gst_tag_from_id3_user_tag().
7252
7253 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
7254
7255         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7256           NULL-terminate array of mpeg4 video file extensions.
7257           Fixes crash on PPC (#334226).
7258
7259 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
7260
7261         * ext/gnomevfs/gstgnomevfssrc.c:
7262         (gst_gnome_vfs_src_check_get_range):
7263           gnome_vfs_uri_is_local() alone is not a good indicator
7264           whether we can operate in pull-mode with a specific URI,
7265           as it returns FALSE for file:// URIs that point to an
7266           NFS-mounted path. Be more conservative here: whitelist
7267           local files, blacklist http URIs and use the old
7268           mechanism for anything else (fixes #334216).
7269
7270 2006-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
7271
7272         * configure.ac:
7273           back to trunk
7274
7275 === release 0.10.4 ===
7276
7277 2006-03-10  Thomas Vander Stichele <thomas at apestaart dot org>
7278
7279         * configure.ac:
7280           releasing 0.10.4, "Power"
7281
7282 2006-03-10  Jan Schmidt  <thaytan@mad.scientist.com>
7283
7284         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7285         Disable max-lateness by setting it to -1 for now, so that 
7286         we can bed QoS stuff in thoroughly between now and the next
7287         release.
7288
7289 2006-03-10  Tim-Philipp Müller  <tim at centricular dot net>
7290
7291         Patch by: Fabrizio Gennari
7292
7293         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7294           Make sure we don't read beyond the palette buffer in case of
7295           broken or manipulated files (#333488)
7296
7297 2006-03-10  Edward Hervey  <edward@fluendo.com>
7298
7299         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
7300         Fix for variable not initialized.
7301
7302 2006-03-09  Wim Taymans  <wim@fluendo.com>
7303
7304         * ext/libvisual/visual.c: (gst_visual_get_type),
7305         (gst_visual_src_setcaps), (gst_vis_src_negotiate),
7306         (gst_visual_chain):
7307         Small cleanups.
7308
7309         * ext/theora/gsttheoradec.h:
7310         * ext/theora/theoradec.c: (gst_theora_dec_init),
7311         (gst_theora_dec_reset), (_theora_granule_time),
7312         (theora_dec_src_convert), (theora_dec_sink_convert),
7313         (theora_dec_src_query), (theora_dec_src_event),
7314         (theora_dec_sink_event), (theora_handle_comment_packet),
7315         (theora_handle_header_packet), (theora_dec_push),
7316         (theora_handle_data_packet), (theora_dec_chain),
7317         (theora_dec_change_state):
7318         Add simple QoS.
7319
7320 2006-03-09  Wim Taymans  <wim@fluendo.com>
7321
7322         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
7323         (audiocast_register_listener), (gst_gnome_vfs_src_start):
7324         Some cleanups.
7325
7326 2006-03-09  Wim Taymans  <wim@fluendo.com>
7327
7328         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
7329         Don't try to activate NULL chains.
7330
7331 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
7332
7333         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
7334           Fix invalid memory access to region before peek'd data (#332964).
7335
7336 2006-03-09  Wim Taymans  <wim@fluendo.com>
7337
7338         Patch by: Christophe Fergeau
7339
7340         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
7341         * ext/pango/gsttextrender.c: (gst_text_render_init):
7342         * gst/adder/gstadder.c: (gst_adder_init):
7343         Don't leak padtemplates, closes #333510.
7344
7345 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
7346
7347         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
7348           Fix invalid memory access: make sure string passed to
7349           regexec() is NUL-termianted.
7350
7351 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
7352
7353         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
7354         (mp3_type_find):
7355           Refactor mpeg/audio typefinding to make it more maintainable
7356           and easier to fine-tune. Make probing into middle of the file
7357           work properly (fixes #333900, also see #152688).
7358
7359 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
7360
7361         * gst/typefind/gsttypefindfunctions.c:
7362         (utf8_type_find_have_valid_utf8_at_offset):
7363           Remove part from previous commit that was bogus:
7364           g_utf8_validate() does in fact not accept embedded
7365           zeroes, so we don't need to check for those (thanks
7366           to Mike for the hint).
7367
7368 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
7369
7370         * gst/typefind/gsttypefindfunctions.c:
7371         (utf8_type_find_count_embedded_zeroes),
7372         (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
7373           Make plain/text typefinder more conservative: firstly, check
7374           for embedded zeroes, which are perfectly valid UTF-8 characters,
7375           but also a fairly good sign that something is not a plain text
7376           file; secondly, probe into the middle of the file if possible.
7377           If we can't probe into the middle, limit the probability value
7378           to be returned to TYPE_FIND_POSSIBLE (see #333900).
7379
7380 2006-03-08  Michael Smith  <msmith@fluendo.com>
7381
7382         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7383           Make typefind function name for mpeg4 video unique.
7384
7385 2006-03-08  Wim Taymans  <wim@fluendo.com>
7386
7387         * ext/libvisual/visual.c: (gst_visual_init),
7388         (gst_visual_clear_actors), (gst_visual_dispose),
7389         (gst_visual_reset), (gst_visual_src_setcaps),
7390         (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
7391         (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
7392         (gst_visual_chain), (gst_visual_change_state):
7393         Cleanups, post nice errors.
7394         Handle sink and src events.
7395         Implement simple QoS.
7396
7397         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7398         Use new basesink methods to configure max-lateness.
7399         Small doc update.
7400
7401         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7402         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
7403         Debug statement cleanups.
7404
7405         * gst/volume/gstvolume.c: (gst_volume_class_init):
7406         Simple cleanup.
7407
7408 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
7409
7410         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
7411         (gst_text_overlay_init), (gst_text_overlay_set_property),
7412         (gst_text_overlay_get_property):
7413           Revert API/ABI break from March 1. Keep 'halign' and 'valign'
7414           as string type properties, but mark them deprecated. Add
7415           'halignment' and 'valignment' properties that use enums
7416           instead of strings.
7417
7418 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
7419
7420         Patch by: Fabrizio Gennari
7421
7422         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7423           Allow palettes with less than 256 colours in AVI files
7424           (#333488)
7425
7426 2006-03-07  Julien MOUTTE  <julien@moutte.net>
7427
7428         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
7429         (gst_text_overlay_video_event): Fix wrong EOS handling on text
7430         pad. We were releasing the queued text buffer when we should keep
7431         it until video pad gets EOS or discard the text buffer because it's
7432         too old. That was eating the last subtitle buffer. Add some more
7433         debug.
7434
7435 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
7436
7437         * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
7438         (gst_text_overlay_video_chain):
7439           Fix invalid memory access (we can't access a buffer after it's been
7440           pushed downstream without taking a reference); fix memory leak (if
7441           there's no text to render, bail out before allocating stuff).
7442
7443 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
7444
7445         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
7446         (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
7447         * ext/pango/gsttextoverlay.h:
7448           If input is plain text, escape it before passing it to
7449           pango_layout_set_markup().
7450
7451 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
7452
7453         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
7454           Don't ignore flow return from gst_pad_push().
7455
7456 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
7457
7458         Patch by: Fabrizio Gennari
7459
7460         * ext/libvisual/visual.c: (gst_visual_getcaps),
7461         (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
7462         * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
7463         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
7464         (gst_vorbisenc_convert_sink):
7465         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
7466         (gst_audio_duration_from_pad_buffer):
7467         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
7468         (gst_audio_filter_chain):
7469         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7470         (gst_base_rtp_depayload_setcaps):
7471         * gst-libs/gst/video/video.c: (gst_video_frame_rate),
7472         (gst_video_get_size):
7473         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
7474           Don't leak references returned by gst_pad_get_parent()
7475           (#333663)
7476
7477 2006-03-06  Stefan Kost  <ensonic@users.sf.net>
7478
7479         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
7480           change location param details
7481         * gst/volume/gstvolume.c: (plugin_init):
7482           correct plugin description
7483
7484 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
7485
7486         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
7487         (gst_gnome_vfs_src_check_get_range):
7488           Override GstBaseSrc::check_get_range() in order to avoid opening
7489           the resource just to check whether we can operate in pull-mode or
7490           not - we can predict that pretty well from the URI alone. Should
7491           fix problems with last.fm (#331690). (Requires latest core CVS).
7492
7493 2006-03-06  Wim Taymans  <wim@fluendo.com>
7494
7495         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
7496         (gst_video_sink_class_init):
7497         Throw away frames that are later than 20 ms.
7498
7499 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
7500
7501         Patch by: Fabrizio Gennari
7502
7503         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
7504           Set depth on WMA caps (#333545)
7505
7506 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
7507
7508         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
7509         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
7510           put Theora BOS pages before others.  This hardcodes
7511           the Ogg/Theora I profile, but hey.
7512
7513 2006-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
7514
7515         * ext/ogg/README:
7516           updated with some examples
7517         * ext/theora/theoraenc.c: (granulepos_to_timestamp),
7518         (granulepos_add), (theora_buffer_from_packet):
7519         * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
7520         (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
7521         (gst_vorbisenc_chain):
7522           implement strategy from ext/ogg/README
7523         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
7524         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
7525         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
7526         (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
7527           Fix muxer so that oggz-validate is happy with all streams;
7528           except for no eos mark, and the BOS page ordering
7529         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
7530         (check_buffer_granulepos):
7531         * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
7532           update tests to check for OFFSET being set as requested
7533           fixed type of granulepos, it's not a ClockTime
7534
7535 2006-03-05  Julien MOUTTE  <julien@moutte.net>
7536
7537         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
7538         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
7539         Check that the xvimage we are creating has a correct size
7540         before returning it. (#314897)
7541
7542 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
7543
7544         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7545           Give id3 and ape tag typefinders a rank slightly higher
7546           than PRIMARY to ensure they're always run before any of
7547           the other typefinders (in particular wav and mp3) (#324186).
7548
7549 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
7550
7551         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7552           Add support for '3IVD' fourcc (#333403).
7553
7554 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
7555
7556         * configure.ac:
7557           Bump requirements to GStreamer CVS for the new error enum.
7558
7559         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
7560           Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
7561           space left on the device (fixes #333352).
7562
7563 2006-03-04  Sebastien Moutte  <sebastien@moutte.net>
7564
7565         * win32/vs6:
7566           add a project file for libgstvolume
7567           update the workspace
7568
7569 2006-03-03  Thomas Vander Stichele  <thomas at apestaart dot org>
7570
7571         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
7572         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
7573         (GST_START_TEST):
7574           Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
7575           Set IN_CAPS on header buffers
7576
7577 2006-03-02  Wim Taymans  <wim@fluendo.com>
7578
7579         * docs/plugins/Makefile.am:
7580         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7581         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7582         Add audioresample to docs.
7583
7584         * gst/audioconvert/gstaudioconvert.c:
7585         Add revision date.
7586
7587         * gst/audioresample/gstaudioresample.c:
7588         (gst_audioresample_base_init), (gst_audioresample_class_init),
7589         (gst_audioresample_init), (gst_audioresample_dispose),
7590         (audioresample_get_unit_size), (audioresample_transform_caps),
7591         (resample_set_state_from_caps), (audioresample_transform_size),
7592         (audioresample_set_caps), (audioresample_event),
7593         (audioresample_do_output), (audioresample_transform),
7594         (audioresample_pushthrough), (gst_audioresample_set_property),
7595         (gst_audioresample_get_property), (plugin_init):
7596         * gst/audioresample/gstaudioresample.h:
7597         Added docs.
7598         Small code cleanups.
7599
7600 2006-03-02  Wim Taymans  <wim@fluendo.com>
7601
7602         * docs/plugins/Makefile.am:
7603         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7604         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7605         Added videoscale to docs.
7606
7607         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
7608         (gst_video_rate_swap_prev), (gst_video_rate_event),
7609         (gst_video_rate_chain):
7610         Fix typo in docs.
7611
7612         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
7613         (gst_video_scale_init), (gst_video_scale_prepare_size),
7614         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
7615         (gst_video_scale_fixate_caps), (gst_video_scale_transform):
7616         * gst/videoscale/gstvideoscale.h:
7617         Added docs, examples.
7618         Some code cleanups.
7619         Post errors instead of g_warning.
7620
7621 2006-03-02  Wim Taymans  <wim@fluendo.com>
7622
7623         * docs/libs/gst-plugins-base-libs-docs.sgml:
7624         * docs/libs/gst-plugins-base-libs-sections.txt:
7625         * docs/libs/gst-plugins-base-libs.types:
7626         * docs/plugins/Makefile.am:
7627         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7628         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7629         Added some more docs to libs and plugins.
7630
7631         * gst-libs/gst/audio/gstringbuffer.c:
7632         (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
7633         * gst-libs/gst/audio/gstringbuffer.h:
7634         Document ringbuffer some more.
7635
7636         * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
7637         (gst_video_rate_setcaps), (gst_video_rate_reset),
7638         (gst_video_rate_init), (gst_video_rate_flush_prev),
7639         (gst_video_rate_swap_prev), (gst_video_rate_event),
7640         (gst_video_rate_chain), (gst_video_rate_change_state):
7641         * gst/videorate/gstvideorate.h:
7642         Fix videorate to use segments.
7643         Make it work with 0/1 framerates (closes #331903)
7644         Handle EOS correctly.
7645         Added docs.
7646
7647 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
7648
7649         * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
7650         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
7651         (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
7652           In state change function, first chain up to parent class,
7653           then handle downwards state change stuff. Remove some
7654           commented out cruft from 0.8 code.
7655
7656 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
7657
7658         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
7659         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
7660         (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
7661         (gst_ogm_parse_chain):
7662           Don't remove/re-add source pad if the new caps are the same as
7663           the old caps anyway (#333042). When removing source pad, don't
7664           unref it afterwards - we didn't ref it when adding. Sprinkle some
7665           GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
7666           after using gst_pad_get_parent(). Return downstream flow return
7667           value in chain function.
7668
7669 2006-03-02  Wim Taymans  <wim@fluendo.com>
7670
7671         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7672         * docs/plugins/gst-plugins-base-plugins.args:
7673         * docs/plugins/gst-plugins-base-plugins.hierarchy:
7674         * docs/plugins/gst-plugins-base-plugins.interfaces:
7675         * docs/plugins/gst-plugins-base-plugins.signals:
7676         Fix hierarchy, added some more elements to the docs.
7677
7678         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7679         (gst_ffmpegcsp_get_type):
7680         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
7681         Fix docs for ffmpegcolorspace.
7682
7683 2006-03-01  Tim-Philipp Müller  <tim at centricular dot net>
7684
7685         * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
7686         (apetag_type_find), (ape_type_find), (plugin_init):
7687           Some typefinding fine-tuning:
7688           - rank ID3/APE tags in order of preference via probabilities, so that
7689             ID3v2 > APEv2 > APEv1 > ID3v1.
7690           - three or four bytes don't really justify MAXIMUM probability,
7691             change those to 'very likely' (musepack and monkeysaudio).
7692
7693 2006-03-01  Wim Taymans  <wim@fluendo.com>
7694
7695         * docs/plugins/Makefile.am:
7696         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7697         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7698         * ext/alsa/gstalsamixer.c:
7699         * ext/alsa/gstalsamixer.h:
7700         * ext/alsa/gstalsamixerelement.c:
7701         (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
7702         * ext/alsa/gstalsamixerelement.h:
7703         * ext/alsa/gstalsasink.c:
7704         * ext/alsa/gstalsasink.h:
7705         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
7706         (gst_alsasrc_init):
7707         * ext/alsa/gstalsasrc.h:
7708         Added alsa docs.
7709         Small code cleanups.
7710
7711 2006-03-01  Wim Taymans  <wim@fluendo.com>
7712
7713         * ext/theora/Makefile.am:
7714         Dist new header too,
7715
7716 2006-03-01  Wim Taymans  <wim@fluendo.com>
7717
7718         * docs/plugins/Makefile.am:
7719         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7720         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7721         * ext/gnomevfs/gstgnomevfssink.h:
7722         * ext/gnomevfs/gstgnomevfssrc.h:
7723         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
7724         * ext/vorbis/vorbisdec.h:
7725         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
7726         * ext/vorbis/vorbisenc.h:
7727         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
7728         (vorbis_parse_chain), (vorbis_parse_change_state):
7729         * ext/vorbis/vorbisparse.h:
7730         * gst/audioconvert/gstaudioconvert.h:
7731         * gst/tcp/gsttcpserversink.h:
7732         * gst/videotestsrc/gstvideotestsrc.c:
7733         * gst/videotestsrc/gstvideotestsrc.h:
7734         * gst/volume/gstvolume.c:
7735         * gst/volume/gstvolume.h:
7736         Fix some more docs.
7737         Added docs for vorbisdec and vorbisparse.
7738         Fix vorbisparse.
7739
7740 2006-03-01  Wim Taymans  <wim@fluendo.com>
7741
7742         * docs/plugins/Makefile.am:
7743         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7744         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7745         * ext/pango/gstclockoverlay.h:
7746         * ext/pango/gsttextoverlay.h:
7747         * ext/pango/gsttextrender.h:
7748         * ext/pango/gsttimeoverlay.h:
7749         * ext/theora/gsttheoradec.h:
7750         * ext/theora/gsttheoraenc.h:
7751         * ext/theora/theoradec.c:
7752         * ext/theora/theoraenc.c:
7753         * gst/audioconvert/gstaudioconvert.h:
7754         * gst/audiotestsrc/gstaudiotestsrc.h:
7755         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
7756         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
7757         * gst/tcp/gstmultifdsink.h:
7758         Updated/added documentation.
7759
7760         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
7761         (gst_text_overlay_halign_get_type),
7762         (gst_text_overlay_wrap_mode_get_type),
7763         (gst_text_overlay_base_init), (gst_text_overlay_class_init),
7764         (gst_text_overlay_init), (gst_text_overlay_set_property),
7765         (gst_text_overlay_get_property):
7766         Fix up properties to be enums instead of string to make bindings,
7767         introspection and automatic GUI creation possible.
7768         Add getters for the properties.
7769
7770 2006-02-28  Sebastien Moutte  <sebastien@moutte.net>
7771
7772         * gst/audiotestsrc/gstaudiotestsrc.c:
7773           added defines of M_PI and M_PI_2
7774         * gst/ffmpegcolorspace/avcodec.h:
7775           removed #include "stdint.h" for win32 as _stdint.h is 
7776           autogenerated to win32/common
7777         * win32/common/libgstaudio.def:
7778         * win32/common/libgsttag.def:
7779           added some exports
7780         * win32/vs6:
7781           some project files bugs corrected
7782         * win32/vs7:
7783           project files are reset to the default vs7 configuration 
7784           (they link to msvcr71.dll using default optimizations)
7785           
7786 2006-02-28  Wim Taymans  <wim@fluendo.com>
7787
7788         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
7789         Fix some docs.
7790
7791 2006-02-28  Edward Hervey  <edward@fluendo.com>
7792
7793         * ext/alsa/gstalsasrc.c:
7794         Set proper class on the ElementDetails:
7795         Source/Audio instead of Src/Audio/
7796
7797 2006-02-28  Edward Hervey  <edward@fluendo.com>
7798
7799         * gst/videoscale/vs_scanline.c:
7800         (vs_scanline_resample_nearest_RGBA):
7801         Revert optimization in videoscale. It should go in liboil and have
7802         an appropriate liboil function.
7803
7804 2006-02-28  Wim Taymans  <wim@fluendo.com>
7805
7806         * gst-libs/gst/audio/gstbaseaudiosink.c:
7807         (gst_base_audio_sink_provide_clock):
7808         Don't try to provide a clock in the NULL state.
7809
7810 2006-02-28  Wim Taymans  <wim@fluendo.com>
7811
7812         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
7813         (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
7814         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
7815         (gst_ogg_demux_deactivate_current_chain),
7816         (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
7817         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
7818         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
7819         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
7820         Use GstSegment infrastructure to remove duplicated code
7821         and handle more seek cases correctly.
7822
7823 2006-02-28  Wim Taymans  <wim@fluendo.com>
7824
7825         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7826         (gst_ffmpegcsp_transform):
7827         Don't ignore return code from ffmpeg convert function.
7828
7829         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
7830         Split out some long statements to ease debugging.
7831
7832 2006-02-27  Jan Schmidt  <thaytan@mad.scientist.com>
7833
7834         * ext/libvisual/visual.c: (gst_visual_init),
7835         (gst_vis_src_negotiate), (get_buffer), (plugin_init):
7836         Don't use gst_pad_use_fixed_caps, because it prevents downstream from
7837         being able to renegotiate the size. Instead, use the negotiation
7838         algorithm from the goom plugin to pick an initial output caps. 
7839
7840         Also, allow theoretical libvisual plugins that might support non-GL 
7841         output even if they also do GL.
7842
7843 2006-02-26  Julien MOUTTE  <julien@moutte.net>
7844
7845         * ext/libvisual/visual.c: (gst_visual_init),
7846         (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
7847         (plugin_init): Load only non GL plugins. Fix some memleaks and 
7848         possible negotiation issues.
7849
7850 2006-02-25  Julien MOUTTE  <julien@moutte.net>
7851
7852         * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
7853
7854 2006-02-24  Michael Smith  <msmith@fluendo.com>
7855
7856         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
7857         (cmml_type_find), (plugin_init):
7858           Fix CMML type find function to not require a specific minor version
7859           of the CMML header.
7860
7861           Add an MPEG4 video elementary stream typefind function.
7862
7863 2006-02-04  Michael Smith  <msmith@fluendo.com>
7864
7865         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
7866         (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
7867         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
7868         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
7869         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
7870         (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
7871           Annodex support in ogg demuxer. Doesn't do very much without the
7872           other annodex patches (to come).
7873
7874 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
7875
7876         Patch by: Fabrizio Gennari <fabrizio dot get at tiscali dot it>
7877
7878         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7879           Pick up palette for MS video v1 (#327028)
7880
7881 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
7882
7883         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7884         (gst_ffmpegcsp_caps_remove_format_info),
7885         (gst_ffmpegcsp_get_unit_size):
7886           The 'palette_data' field from incoming RGB caps shouldn't be
7887           proxied on outgoing YUV caps; also, restrict unit size
7888           adjustment in case of paletted data only to the unit that
7889           actually has a palette. Fixes #330711.
7890
7891 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
7892
7893         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7894         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
7895         (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
7896         (gst_ffmpegcsp_get_unit_size):
7897           Plug some memory leaks.
7898
7899 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
7900
7901         * sys/ximage/Makefile.am:
7902         * sys/xvimage/Makefile.am:
7903           Add some _CFLAGS and _LIBS that seem to be missing
7904           and/or required for Cygwin (see #317048).
7905
7906 2006-02-22  Wim Taymans  <wim@fluendo.com>
7907
7908         * ext/alsa/gstalsasrc.c:
7909         Fix description as pointed out by caugier.
7910
7911 2006-02-22  Tommi Myöhänen  <ext-tommi do myohanen at nokia dot com>
7912
7913         Reviewed by : Edward Hervey  <edward@fluendo.com>
7914
7915         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
7916         (qt_type_find):
7917         Better 3gp typefinding (#331526).
7918
7919 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
7920
7921         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
7922           Don't send EOS event here, the base class will send one for us.
7923
7924         * gst/playback/gstplaybasebin.c: (prepare_output):
7925           Subpictures without video stream aren't allowed either.
7926         
7927         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
7928           Fix debug statement copy'n'paste-o.
7929
7930 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
7931
7932         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
7933           Fix issues with mixer keeping state when muting/unmuting
7934           and when changing the volume whilst muted (see #331763
7935           and #331765).
7936
7937 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
7938
7939         * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
7940         (parse_subrip), (gst_sub_parse_format_autodetect):
7941           Set right caps given that we send escaped text. Also,
7942           honour <i></i>, <b></b> and <u></u> markers that can be found
7943           in .srt files (fixes #310202).
7944
7945 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
7946
7947         * gst-libs/gst/audio/mixerutils.c:
7948         (element_factory_rank_compare_func):
7949           Make order in which elements are tried more determinable.
7950
7951 2006-02-20  Julien MOUTTE  <julien@moutte.net>
7952
7953         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
7954         (remove_element_chain), (cleanup_decodebin),
7955         (gst_decode_bin_change_state): Make decodebin reusable by
7956         fixing remove_element_chain first and then introduce a
7957         cleaner in state change to ->NULL. (Closes #331678)
7958
7959 2006-02-19  Wim Taymans  <wim@fluendo.com>
7960
7961         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
7962         use 0666 mask when creating files so umask gets applied
7963         correctly. Fixes #331295.
7964
7965 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
7966
7967         * gst/subparse/Makefile.am:
7968         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
7969         (gst_ssa_parse_dispose), (gst_ssa_parse_init),
7970         (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
7971         (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
7972         (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
7973         (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
7974         * gst/subparse/gstssaparse.h:
7975         * gst/subparse/gstsubparse.c: (plugin_init):
7976           Add very basic parser for SSA subtitle streams (as often
7977           found in matroska files).
7978
7979 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
7980
7981         * gst/playback/gstdecodebin.c: (mimetype_is_raw):
7982           That should be text/x-pango-markup, not text/x-pango-layout.
7983
7984 2006-02-19  Julien MOUTTE  <julien@moutte.net>
7985
7986         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
7987         Polishing.
7988
7989 2006-02-19  Julien MOUTTE  <julien@moutte.net>
7990
7991         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
7992         (gst_text_overlay_finalize), (gst_text_overlay_init),
7993         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
7994         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
7995         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
7996         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
7997         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
7998         Fix state change deadlock.
7999
8000 2006-02-19  Julien MOUTTE  <julien@moutte.net>
8001
8002         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
8003         (gst_text_overlay_finalize), (gst_text_overlay_init),
8004         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
8005         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
8006         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
8007         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
8008         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
8009         * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
8010         and subtitles files.
8011
8012 2006-02-19  Julien MOUTTE  <julien@moutte.net>
8013
8014         * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
8015         should be considered as raw.
8016
8017 2006-02-19  Julien MOUTTE  <julien@moutte.net>
8018
8019         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
8020         (cb_probe):
8021         * gst/playback/gststreaminfo.h: Introduce language informations.
8022
8023 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
8024
8025         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
8026         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
8027         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
8028         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
8029         Set shared memory segments to be deleted as soon as we have attached,
8030         that way they get cleaned up automatically if we crash.
8031
8032 2006-02-18  Julien MOUTTE  <julien@moutte.net>
8033
8034         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text): 
8035         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
8036         functions are called with lock held.
8037
8038 2006-02-18  Julien MOUTTE  <julien@moutte.net>
8039
8040         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
8041         (gst_text_overlay_finalize), (gst_text_overlay_init),
8042         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
8043         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
8044         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
8045         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
8046         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
8047         (gst_text_overlay_change_state): Refactoring of textoverlay
8048         without collectpads. This now supports sparse subtitles coming
8049         from a demuxer instead of a sub file. Seeking is still broken 
8050         though. Need to discuss with wtay some more on how to handle
8051         seeking correctly.
8052         * ext/pango/gsttextoverlay.h:
8053         * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
8054         subtitles coming from the demuxer.
8055
8056 2006-02-17  Wim Taymans  <wim@fluendo.com>
8057
8058         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
8059         (gst_vorbisenc_convert_sink):
8060         Use some more scaling functions.
8061
8062 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
8063
8064         * ext/cdparanoia/gstcdparanoiasrc.c:
8065         (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
8066         (gst_cd_paranoia_paranoia_callback),
8067         (gst_cd_paranoia_src_signal_is_being_watched),
8068         (gst_cd_paranoia_src_read_sector):
8069         * ext/cdparanoia/gstcdparanoiasrc.h:
8070           Add back 'transport-error' and 'uncorrected-error' signals and
8071           make them actually be fired when bad stuff happens (#319340).
8072
8073 2006-02-17  Wim Taymans  <wim@fluendo.com>
8074
8075         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
8076         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
8077         (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
8078         (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
8079         (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
8080         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
8081         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
8082         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
8083         (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
8084         (gst_ring_buffer_clear):
8085         Small cleanups.
8086         Added some G_LIKELY.
8087
8088 2006-02-17  Wim Taymans  <wim@fluendo.com>
8089
8090         * gst-libs/gst/audio/TODO:
8091         Update TODO
8092
8093         * gst-libs/gst/audio/gstbaseaudiosink.c:
8094         (gst_base_audio_sink_get_offset):
8095         When trying to play samples ASAP and we don't have a
8096         previous sample, try to play at position 0 instead of
8097         an invalid position.
8098
8099 2006-02-17  Wim Taymans  <wim@fluendo.com>
8100
8101         * ext/alsa/gstalsasink.c: (gst_alsasink_open),
8102         (gst_alsasink_reset):
8103         Also release lock when we get an error in _reset();
8104         fix an error message.
8105
8106 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
8107
8108         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
8109         (gst_alsasink_init), (get_channel_free_structure),
8110         (caps_add_channel_configuration), (gst_alsasink_getcaps),
8111         (gst_alsasink_close):
8112         * ext/alsa/gstalsasink.h:
8113           Add support for more than 2 channels (#326720).
8114
8115 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
8116
8117         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8118           Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
8119           with 4 or 6 channels, assume a default channel layout to make things
8120           work (not sure there's anything else we can do in those cases).
8121
8122 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
8123
8124         * gst-libs/gst/audio/multichannel.c:
8125           Minor docs fix.
8126
8127         * gst-libs/gst/riff/Makefile.am:
8128         * gst-libs/gst/riff/riff-ids.h:
8129         * gst-libs/gst/riff/riff-media.c:
8130         (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
8131           Add support for WAVEFORMATEX, eg. PCM audio with more than two
8132           channels and a channel layout map.
8133           
8134 2006-02-16  Mathieu Garcia <b0nk at free dot fr>
8135
8136         Reviewed by Edward Hervey  <edward@fluendo.com>
8137
8138         * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA): 
8139         C-level optimization of the RGBA nearest neighbour function.
8140         Eventually this might end up in liboil with vectorized versions.
8141
8142 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
8143
8144         * gst-libs/gst/audio/multichannel.c:
8145         (gst_audio_get_channel_positions):
8146           When we have more than 2 channels, but no channel layout is
8147           specified in the caps, return some default channel layout
8148           to the caller and warn about about a possibly buggy element
8149           (could be buggy filtercaps as well of course) (#317038).
8150
8151 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
8152
8153         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
8154           Add gst-libs/gst/cdda to list of lib search paths.
8155
8156 2006-02-15  Andy Wingo  <wingo@pobox.com>
8157
8158         * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
8159         timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
8160         to the Lord Jesus that I do not have to touch the ogg muxer ever
8161         again.
8162
8163 2006-02-15  Edward Hervey  <edward@fluendo.com>
8164
8165         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
8166         quicktime movie files can also contain 'uuid' atoms.
8167
8168 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
8169
8170         * gst/audioconvert/plugin.c: (plugin_init):
8171           Register the GstAudioChannelPosition enum type with the type
8172           system in the plugin_init function, so that it is known before
8173           any element actually makes use of multi-channel stuff. This is
8174           required for example if one wants to be able to deserialise/use
8175           a caps string with channel positions before any pipeline has
8176           been setup and started, like with gst-launch.
8177
8178 2006-02-14  Wim Taymans  <wim@fluendo.com>
8179
8180         * gst-libs/gst/audio/gstringbuffer.c:
8181         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
8182         (gst_ring_buffer_samples_done), (wait_segment),
8183         (gst_ring_buffer_commit), (gst_ring_buffer_clear):
8184         Add some compiler G_(UN_)LIKELY help.
8185         SIGNAL the ringbuffer waiters when going to PAUSED as well to
8186         make sure they can exit their functions. Should fix #330748
8187
8188 2006-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
8189
8190         * Makefile.am:
8191         * configure.ac:
8192         * win32/MANIFEST:
8193         * win32/common/_stdint.h:
8194           Windows does not have long long; copy the generated _stdint.h
8195         * win32/common/interfaces-enumtypes.c:
8196         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
8197         (gst_mixer_track_flags_get_type),
8198         (gst_tuner_channel_flags_get_type):
8199         * win32/common/multichannel-enumtypes.c:
8200         (gst_audio_channel_position_get_type):
8201           update
8202
8203 2006-02-13  Wim Taymans  <wim@fluendo.com>
8204
8205         * gst-libs/gst/audio/gstbaseaudiosink.c:
8206         (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
8207         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8208         Always sync on first sample we receive when starting.
8209
8210 2006-02-13  Wim Taymans  <wim@fluendo.com>
8211
8212         * gst/playback/gstplaybin.c: (gen_vis_element):
8213         Update vis bin docs.
8214         Move queue after tee so we don't queue video buffers but
8215         audio samples instead. Fixes problems where the video queue
8216         is filled and the audio queue empty.
8217
8218 2006-02-13  Tim-Philipp Müller  <tim at centricular dot net>
8219
8220         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
8221           No need to push an EOS event here, GstBaseSrc will do that for us
8222           when we return FLOW_UNEXPECTED.
8223           
8224 2006-02-12  Wim Taymans  <wim@fluendo.com>
8225
8226         * gst-libs/gst/audio/gstbaseaudiosink.c:
8227         (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
8228         (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
8229         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8230         Use scale functions when possible.
8231         Fix error messages.
8232         Free clockid when after waiting for EOS.
8233         Use G_(UN_)LIKLY when it makes sense.
8234         Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
8235
8236 2006-02-12  Edward Hervey  <edward@fluendo.com>
8237
8238         * gst/playback/gstplaybasebin.c: (prepare_output): 
8239         Remove stray semi-colon (fixes #330888).
8240
8241 2006-02-12  Jan Schmidt  <thaytan@mad.scientist.com>
8242
8243         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
8244         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
8245         Fix up the XShm call testing so that we catch errors, and don't
8246         cause new ones by attempting to detach from a segment we failed
8247         to attach to. Fixes #312439.
8248
8249 2006-02-10  Edward Hervey  <edward@fluendo.com>
8250
8251         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
8252         Added flv file typefind (video/x-flv).
8253
8254 2006-02-10  Edward Hervey  <edward@fluendo.com>
8255
8256         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
8257         (gst_riff_create_video_template_caps):
8258         Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
8259         Also added the caps to the default set of riff video caps.
8260
8261 2006-02-09  Andy Wingo  <wingo@pobox.com>
8262
8263         * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
8264         time and the end time of the last packet in the page.
8265         (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
8266         on the pages in our queue, set the duration as well. Reflow a
8267         debug statement.
8268         (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
8269         Fixes bad muxing order.
8270
8271 2006-02-09  Thomas Vander Stichele  <thomas at apestaart dot org>
8272
8273         * gst-libs/gst/rtp/gstbasertppayload.c:
8274         (gst_basertppayload_setcaps), (gst_basertppayload_push):
8275           update seqnum before setting it on the packet; this makes sure
8276           that the timestamp and seqnum properties match after pushing
8277           a buffer
8278
8279 2006-02-09  Andy Wingo  <wingo@pobox.com>
8280
8281         * gst-libs/gst/audio/gstringbuffer.c
8282         (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
8283         overflow after 13.5 hours of recording. Kapow!
8284
8285         * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
8286         the buffer size -- we don't care about underrun/overrun reporting
8287         right now, just need to return a useful value.
8288
8289 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
8290
8291         * configure.ac:
8292           Back to CVS
8293
8294 === release 0.10.3 ===
8295
8296 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
8297
8298         * configure.ac:
8299           releasing 0.10.3, "Under Pressure"
8300
8301 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
8302
8303         * configure.ac:
8304         Drat. Bump libtool version number for new API.
8305         Prelease 0.10.2.3 (of 0.10.3)
8306
8307 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
8308
8309         * configure.ac:
8310         * win32/common/config.h:
8311         0.10.2.2 prerelease (of 0.10.3).
8312
8313 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
8314
8315         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
8316           Revert Andy's newsegment change pending a more correct
8317           fix.
8318
8319 2006-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
8320
8321         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
8322         (qt_type_find), (plugin_init):
8323           detect more files as 3gp
8324           group and reorder the iso file formats
8325
8326 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
8327
8328         * ext/vorbis/vorbis.c: (plugin_init):
8329           Register musicbrainz tags, so apps don't have to.
8330
8331 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
8332
8333         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
8334         (gst_tag_to_vorbis_tag):
8335           Make sure we called gst_tag_register_musicbrainz_tags()
8336           before possibly mapping a vorbiscomment string from/to a
8337           musicbrainz tag.
8338
8339 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
8340
8341         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
8342           In case we can't find the required number of consecutive
8343           mpeg audio frames to positively identify an MPEG audio
8344           stream, check if there's at least a valid mpeg audio
8345           frame right at offset 0 and if so suggest mpeg/audio
8346           caps with a very low probability (#153004).
8347
8348 2006-02-07  Andy Wingo  <wingo@pobox.com>
8349
8350         * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
8351         a TIME segment if we get timestamped buffers. Requires recent
8352         fixes in core to work properly.
8353
8354 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
8355
8356         * gst/playback/gstplaybasebin.c: (prepare_output):
8357           Don't print the URI as part of the error message, it
8358           makes error dialogs look rather ugly, especially if
8359           the URI is very long or has characters in it that
8360           need escaping.
8361
8362 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
8363
8364         * gst/playback/gstplaybasebin.c: (prepare_output):
8365           Error out if we have only text or subtitles, but nothing
8366           else. Also error out if we have subtitles but no video
8367           stream.
8368
8369 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
8370
8371         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
8372           Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
8373           Post an error message on the bus when we encounter an
8374           error, which will hopefully be more meaningful than the
8375           'Internal Flow Error' message users get to see if we
8376           just return GST_FLOW_ERROR.
8377
8378 2006-02-07  Andy Wingo  <wingo@pobox.com>
8379
8380         * configure.ac (GST_MAJORMINOR): Update core version req to
8381         0.10.2.2, for the collectpads API addition (#330244).
8382
8383 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
8384
8385         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
8386           Return FALSE from plugin_init() when GnomeVFS can't
8387           be initialised for some reason (#328423).
8388
8389 2006-02-06  Julien MOUTTE  <julien@moutte.net>
8390
8391         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event): 
8392         Stick to seeking theory until i find the bug.
8393         * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
8394
8395 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
8396
8397         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
8398         (theora_enc_finalize), (theora_enc_sink_setcaps),
8399         (theora_set_header_on_caps), (theora_enc_chain),
8400         (theora_enc_change_state):
8401         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
8402           Make theoraenc and the tests leak free. Like, really.
8403
8404 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
8405
8406         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
8407         (theora_enc_finalize), (theora_enc_sink_setcaps):
8408           Add a finalize method to ensure we clean up state even if
8409           someone omitted the state change back to NULL.
8410
8411         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
8412         (gst_vorbisenc_chain):
8413           Free some more leaked bits.
8414
8415         * tests/check/pipelines/theoraenc.c: (start_pipeline),
8416         (stop_pipeline):
8417           Wait for state changes to happen if they're ASYNC.
8418
8419           This ought to teach those fancy pants buildbots a lesson.
8420
8421 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
8422
8423         * gst-libs/gst/tag/gstid3tag.c:
8424           Add mapping for ID3 International Standard Recording Code
8425           tag "TSRC"
8426
8427 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
8428
8429         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
8430           Don't leak tag names.
8431
8432 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
8433
8434         * docs/libs/gst-plugins-base-libs-docs.sgml:
8435         * docs/libs/gst-plugins-base-libs-sections.txt:
8436         * gst-libs/gst/tag/gstid3tag.c:
8437         * gst-libs/gst/tag/gstvorbistag.c:
8438         * gst-libs/gst/tag/tags.c:
8439           Split libgsttag docs into multiple sections.
8440
8441 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
8442
8443         * docs/libs/Makefile.am:
8444         * docs/libs/gst-plugins-base-libs-docs.sgml:
8445         * docs/libs/gst-plugins-base-libs-sections.txt:
8446         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
8447         * gst-libs/gst/tag/gstvorbistag.c:
8448         * gst-libs/gst/tag/tag.h:
8449         * gst-libs/gst/tag/tags.c:
8450           Add libgsttag to the docs.
8451
8452 2006-02-05  Julien MOUTTE  <julien@moutte.net>
8453
8454         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
8455         (gst_text_overlay_init), (gst_text_overlay_src_event),
8456         (gst_text_overlay_collected): Fix clockoverlay.
8457
8458 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
8459
8460         * docs/libs/compiling.sgml:
8461           Fix typo: it's pkg-config, not pkg-gconfig
8462
8463         * docs/libs/gst-plugins-base-libs-docs.sgml:
8464         * docs/libs/gst-plugins-base-libs-sections.txt:
8465         * docs/libs/tmpl/gstgconf.sgml:
8466           There is no libgstgconf in 0.10, remove it
8467           from the docs.
8468
8469 2006-02-05  Julien MOUTTE  <julien@moutte.net>
8470
8471         * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
8472         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
8473         (gst_text_overlay_src_event), (gst_text_overlay_collected):
8474         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
8475         (gst_sub_parse_class_init), (gst_sub_parse_init),
8476         (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
8477         (parse_mpsub), (parser_state_init), (handle_buffer),
8478         (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
8479         * gst/subparse/gstsubparse.h: Introduce seeking code.
8480
8481 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
8482
8483         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
8484           Add comment about LANGUAGE tag inconsistency (we want
8485           ISO-639-1, but extract three-letter identifiers?)
8486
8487         * po/POTFILES.in:
8488           Add two translatable files.
8489
8490 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
8491
8492         * gst-libs/gst/tag/Makefile.am:
8493         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
8494         * gst-libs/gst/tag/tag.h:
8495         * gst-libs/gst/tag/tags.c:
8496         (gst_tag_register_musicbrainz_tags_internal),
8497         (gst_tag_register_musicbrainz_tags):
8498           Forward-port some tags stuff from the 0.8 branch. This is
8499           mostly the addition of musicbrainz tags and their mapping
8500           to vorbistags, and a vorbistag mapping of the language tag.
8501
8502 2006-02-05  Julien MOUTTE  <julien@moutte.net>
8503
8504         * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
8505         refactoring.
8506
8507 2006-02-04  David Schleef  <ds@schleef.org>
8508
8509         * ext/ogg/gstoggmux.c:
8510         * gst/typefind/gsttypefindfunctions.c:
8511           Add Dirac typefinding and add dirac format to oggmux.
8512
8513 2006-02-03  Tim-Philipp Müller  <tim at centricular dot net>
8514
8515         * gst/playback/gstdecodebin.c: (try_to_link_1):
8516           Don't put essential function call into
8517           g_return_*() macro, otherwise it'll all be
8518           replaced by NOOPs when compiling with
8519           G_DISABLE_CHECKS defined.
8520
8521 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
8522
8523         * ext/ogg/gstoggdemux.c:
8524         * ext/ogg/gstoggparse.c:
8525         * gst/tcp/gsttcpserversink.c:
8526         * sys/v4l/v4lsrc_calls.c:
8527         * sys/v4l/v4lsrc_calls.h:
8528         Just make it compile with --disable-gst-debug.
8529
8530 2006-02-03  Wim Taymans  <wim@fluendo.com>
8531
8532         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
8533         (gst_alsasink_class_init), (gst_alsasink_init),
8534         (gst_alsasink_write), (gst_alsasink_reset):
8535         * ext/alsa/gstalsasink.h:
8536         Add lock to protect alsa calls.
8537         Implement reset to flush samples ASAP, does not work
8538         with dmix though.
8539
8540 2006-02-02  Wim Taymans  <wim@fluendo.com>
8541
8542         * gst-libs/gst/audio/gstbaseaudiosink.c:
8543         (gst_base_audio_sink_provide_clock):
8544         Ugh.. getting late I guess...
8545
8546 2006-02-02  Wim Taymans  <wim@fluendo.com>
8547
8548         * gst-libs/gst/audio/gstbaseaudiosink.c:
8549         (gst_base_audio_sink_provide_clock),
8550         (gst_base_audio_sink_set_property),
8551         (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
8552         Don't try to provide a clock when we are not negotiated since
8553         we might not be able to make it run.
8554
8555 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
8556
8557         * gst/playback/gstdecodebin.c: (try_to_link_1):
8558           Unlinking two source pads is ... hard.
8559
8560 2006-02-02  Wim Taymans  <wim@fluendo.com>
8561
8562         * gst-libs/gst/audio/TODO:
8563         Updated.
8564
8565         * gst-libs/gst/audio/gstbaseaudiosink.c:
8566         (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
8567         On EOS, wait till the last sample is played before posting EOS.
8568
8569 2006-02-01  Philippe Kalaf <burger at speedy dot org>
8570
8571         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8572           Patch by Kai Vehmanen : Adds ability to enable newsegment bypass by
8573           setting queue_delay to zero. Also avoid thread being started if
8574           queue_delay is zero.
8575
8576 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
8577
8578         * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
8579           Make test work again by connecting fakesinks to each decoded pad,
8580           which makes the pipeline wait until each fakesink has a buffer
8581           queued before going to PAUSED state. At that point we know the
8582           decodebin pads are negotiated.
8583
8584 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
8585
8586         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
8587         (gst_cdda_base_src_handle_event):
8588         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
8589           Pass unhandled queries to the parent class's query function.
8590
8591 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
8592
8593         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
8594         (gst_ogg_pad_src_query):
8595         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
8596         * ext/theora/theoradec.c: (theora_dec_src_query),
8597         (theora_dec_sink_query):
8598         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
8599         (vorbis_dec_sink_query):
8600         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
8601         (gst_vorbisenc_sink_query):
8602         * gst/adder/gstadder.c: (gst_adder_query):
8603           Pass unhandled queries upstream instead of just
8604           dropping them (#326447). Also, fix supported
8605           query types list for some elements.
8606
8607 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
8608
8609         * gst/typefind/gsttypefindfunctions.c: (au_type_find),
8610         (paris_type_find), (ilbc_type_find), (plugin_init):
8611           Fix typefinding for audio/x-au, audio/x-paris and
8612           audio/iLBC-sh. We cannot use the START_WITH macros
8613           here, because there can only be one typefind factory
8614           with the same name (caps), so the second one would
8615           replace the first one and the first one would never
8616           be called when doing typefinding (see #161712).
8617           
8618
8619 2006-01-31  Wim Taymans  <wim@fluendo.com>
8620
8621         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
8622         (vorbis_handle_header_packet), (vorbis_dec_push),
8623         (vorbis_handle_data_packet):
8624         Use scale_int when we can, add some more scaling.
8625         Check packettype before parsing it.
8626
8627 2006-01-31  Wim Taymans  <wim@fluendo.com>
8628
8629         * ext/theora/theoradec.c: (_theora_granule_time),
8630         (theora_dec_src_convert), (theora_dec_sink_convert):
8631         Call right _scale functions.
8632         Use parameter instead of some other random value.
8633
8634 2006-01-31  Wim Taymans  <wim@fluendo.com>
8635
8636         * ext/theora/theoradec.c: (_theora_granule_frame),
8637         (_theora_granule_time), (_inc_granulepos),
8638         (theora_dec_src_convert), (theora_dec_sink_convert),
8639         (theora_handle_type_packet), (theora_handle_data_packet),
8640         (theora_dec_chain):
8641         Use higher precision timestamps calculation.
8642         Convert some other conversions to _scale.
8643
8644 2006-01-31  Stefan Kost  <ensonic@users.sf.net>
8645
8646         * gst/audiotestsrc/gstaudiotestsrc.c:
8647         (gst_audio_test_src_create_sine_table), (plugin_init):
8648         * gst/volume/gstvolume.c: (plugin_init):
8649           initialize gst_controller before using
8650
8651 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
8652
8653         * tests/check/pipelines/theoraenc.c:
8654         * tests/check/pipelines/vorbisenc.c:
8655         Define constant using G_GINT64_CONSTANT to avoid errors when
8656         passing it around - otherwise it gets truncated to 32 bits.
8657
8658         Fixes failing tests.
8659
8660 2006-01-31  Andy Wingo  <wingo@pobox.com>
8661
8662         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
8663         caps being set doesn't have a framerate value. Basically a stopgap
8664         measure.
8665
8666         * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
8667         technically correct enough to put into core though.
8668         (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
8669         DURATION. Fixes theoraenc ! oggmux.
8670
8671         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
8672         fraction, not double.
8673
8674 2006-01-31  Sebastien Moutte  <sebastien@moutte.net>
8675
8676         * win32/vs7:
8677         add vs7 project files created by Sergey Scobich
8678
8679 2006-01-30  Sebastien Moutte  <sebastien@moutte.net>
8680
8681         * win32/vs8:
8682         add vs8 project files created by Sergey Scobich
8683         
8684 2006-01-30  Andy Wingo  <wingo@pobox.com>
8685
8686         * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
8687         timestamp + duration, not just timestamp -- ogg pages should be
8688         ordered by stop time. Necessary fix given the change in vorbis
8689         timestamps.
8690
8691         * ext/theora/theoraenc.c (theora_enc_sink_setcaps) 
8692         (gst_theora_enc_init): Pull the granule shift out of the encoder.
8693         (granulepos_add): New function, handles the messiness of adjusting
8694         granulepos values.
8695         (theora_buffer_from_packet):
8696         (theora_enc_chain):
8697         (theora_enc_sink_event): Use granulepos_add, not +.
8698
8699         * tests/check/pipelines/theoraenc.c
8700         (check_buffer_granulepos_from_starttime): Just check the frame
8701         count, not the actual granulepos -- we can't dictate to the
8702         encoder when it should be placing keyframes.
8703
8704 2006-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
8705
8706         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
8707           SERVICE_NOT_AVAILABLE happens for example when you're trying to
8708           play an http:// stream from a server that's not serving
8709
8710 2006-01-30  Andy Wingo  <wingo@pobox.com>
8711
8712         * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET): 
8713         * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
8714         remove the UINT64_CONSTANT macro, doesn't appear to be needed or
8715         available.
8716
8717         * ext/theora/gsttheoraenc.h:
8718         * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
8719         although theoraenc was timestamping correctly. Added handling of
8720         streams that start with nonzero timestamps.
8721
8722         * tests/check/Makefile.am:
8723         * tests/check/pipelines/theoraenc.c: New file, basically does same
8724         tests as vorbisenc.
8725
8726         * tests/check/pipelines/vorbisenc.c: I claim these bugs.
8727
8728 2006-01-30  Wim Taymans  <wim@fluendo.com>
8729
8730         * gst-libs/gst/audio/gstaudiosink.c:
8731         (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
8732         (gst_audioringbuffer_pause):
8733         Implement pause that does not wait for completion.
8734
8735         * gst-libs/gst/audio/gstbaseaudiosink.c:
8736         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8737         Don't drop buffers when going to PAUSED but perform preroll on
8738         remaining samples now that core base class supports this.
8739
8740         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
8741         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
8742         (gst_ring_buffer_commit):
8743         Pause should not signal waiters.
8744         Implement return value of _commit correctly.
8745
8746 2006-01-30  Andy Wingo  <wingo@pobox.com>
8747
8748         * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
8749
8750         * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
8751         updated to timestamp from the first sample, not the last.
8752         (gst_vorbisenc_buffer_from_header_packet): New function, takes
8753         special care of granulepos and timestamp for header packets.
8754         (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
8755         when the first buffer has a nonzero timestamp.
8756
8757         * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
8758         (GstVorbisEnc.subgranule_offset): New members. Take care of the
8759         case when the first audio buffer we get has a nonzero timestamp.
8760         (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
8761         properly timestamp vorbis buffers with the time of the first
8762         sample, not the last.
8763         
8764         * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
8765         vorbis_granule_time_copy -- now it takes the granule/subgranule
8766         offset into account.
8767
8768         * tests/check/pipelines/vorbisenc.c: New test for correctness of
8769         timestamps, durations, and granulepos on buffers produced by
8770         vorbisenc.
8771
8772 2006-01-30  Jan Schmidt  <thaytan@mad.scientist.com>
8773
8774         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8775         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
8776           Patch from Eric Jonas to support conversions to/from UYVY 
8777           (Fixes: #324626)
8778
8779 2006-01-30  Julien MOUTTE  <julien@moutte.net>
8780
8781         * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
8782         (setup_subtitle), (setup_source), (set_active_source):
8783         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
8784         (gen_text_element), (gen_audio_element), (gen_vis_element),
8785         (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
8786
8787 2006-01-29  Sebastien Moutte  <sebastien@moutte.net>
8788
8789         * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
8790         * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
8791                 use gst_guint64_to_gdouble to be compliant with vs6
8792         * gst/playback/gstdecodebin.c: (try_to_link_1)
8793         * gst/videorate/videorate.c: (gst_video_rate_blank_data)
8794                 use G_GINT64_CONSTANT for int64 constants
8795         * win32/common/libgstinterfaces.def:
8796                 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
8797         * win32/vs6:
8798                 update and add new project files
8799                 
8800 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
8801
8802         * Makefile.am:
8803         * win32/MANIFEST:
8804         * win32/common/interfaces-enumtypes.c:
8805         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
8806         (gst_mixer_track_flags_get_type),
8807         (gst_tuner_channel_flags_get_type):
8808         * win32/common/interfaces-enumtypes.h:
8809         * win32/common/multichannel-enumtypes.c:
8810         (gst_audio_channel_position_get_type):
8811         * win32/common/multichannel-enumtypes.h:
8812           add a win32-update rule like in core, and copy over enumtypes files
8813
8814 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
8815
8816         * win32/MANIFEST:
8817         * win32/common/config.h:
8818         * win32/common/config.h.in:
8819           add config files just like in core
8820
8821 2006-01-28  Tim-Philipp Müller  <tim at centricular dot net>
8822
8823         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
8824           Make gcc-4.1 happy (part of #327357).
8825
8826 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
8827
8828         * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
8829         (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
8830         (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
8831         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
8832         (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
8833         (gst_alsasrc_unprepare), (gst_alsasrc_read):
8834           Update all error messages.  All of them should either use
8835           the default translated message, or actually provide a
8836           translatable string.
8837           Make the string for channel count problems meaningful.
8838
8839 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
8840
8841         * sys/v4l/v4l_calls.c: (gst_v4l_open):
8842           check for and throw RESOURCE_BUSY
8843
8844 2006-01-27  David Schleef  <ds@schleef.org>
8845
8846         * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
8847           checked in this change -- it requires liboil features not
8848           in 0.3.6.  Revert parts.
8849
8850 2006-01-27  David Schleef  <ds@schleef.org>
8851
8852         * REQUIREMENTS:
8853         * configure.ac: update liboil requirement to 0.3.6
8854         * gst/videoscale/Makefile.am:
8855         * gst/videoscale/vs_scanline.c: liboilify
8856
8857 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
8858
8859         * ext/libvisual/visual.c: (get_buffer):
8860           When pad_alloc returns a GstFlowReturn other
8861           than GST_FLOW_OK, make sure it is passed upstream.
8862
8863 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
8864
8865         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
8866         (gst_alsasink_class_init):
8867           Free the device name string.
8868
8869         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
8870         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
8871         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
8872           Don't remove a pad from the collectpads structure until it
8873           is released - it's a request pad, and may receive data again
8874           if the element gets moved back to PLAYING state.
8875
8876         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
8877           Ensure we turn on double buffering on the Xv port, and
8878           set the colour key to something dark and mysterious that
8879           isn't black.
8880
8881 2006-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
8882
8883         * ext/alsa/gstalsaplugin.c: (plugin_init):
8884         * ext/cdparanoia/gstcdparanoiasrc.c:
8885         (gst_cd_paranoia_src_base_init), (plugin_init):
8886         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
8887         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
8888           - a library should not call setlocale. see "Libraries" node in
8889             gettext manual
8890           - make sure all plugins that use translation do bindtextdomain
8891             to point to the localedir
8892         * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
8893         (setup_sinks), (plugin_init):
8894           all this, and check for NULL when creating sinks
8895
8896 2006-01-27  Julien MOUTTE  <julien@moutte.net>
8897
8898         * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
8899         (plugin_init): Make typefinding of subtitles work again.
8900
8901 2006-01-26  Tim-Philipp Müller  <tim at centricular dot net>
8902
8903         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
8904         (mp3_type_frame_length_from_header), (mp3_type_find),
8905         (wavpack_type_find), (m4a_type_find), (ircam_type_find),
8906         (plugin_init):
8907           Backport a bunch of typefinding fixes from the 0.8 branch.
8908           Also, improve wavpack typefinding: if we can't peek the
8909           entire wavpack block, try to parse the bits we can get and
8910           see if we find what we're looking for in those.
8911
8912 2006-01-26  Julien MOUTTE  <julien@moutte.net>
8913
8914         * sys/ximage/ximagesink.c:
8915         (gst_ximagesink_calculate_pixel_aspect_ratio):
8916         * sys/xvimage/xvimagesink.c:
8917         (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
8918         more cases of pixel aspect ratio.
8919
8920 2006-01-26  Edward Hervey  <edward@fluendo.com>
8921
8922         * gst/playback/gstdecodebin.c: (pad_probe):
8923         Also consider the flush-start and tag events as unblockers
8924         for the pad probes.
8925
8926 2006-01-26  Julien MOUTTE  <julien@moutte.net>
8927
8928         * gst/playback/gstplaybin.c: (gst_play_bin_init),
8929         (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
8930         (gst_play_bin_vis_blocked), (gst_play_bin_set_property): 
8931         On the fly visualisation switch, works disabling, enabling as
8932         well but it won't be able to enable vis in a playbin that was
8933         created with no visualisation.
8934
8935 2006-01-25  Wim Taymans  <wim@fluendo.com>
8936
8937         * gst-libs/gst/audio/gstbaseaudiosink.c:
8938         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8939         Undo previous commit that returned WRONG_STATE sooner, it breaks 
8940         resume after pause.
8941
8942 2006-01-25  Wim Taymans  <wim@fluendo.com>
8943
8944         * gst-libs/gst/audio/gstbaseaudiosink.c:
8945         (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
8946         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
8947         Improve debugging.
8948         Post error when caps cannot be parsed.
8949         Resync on discontinuity in the stream.
8950         Clip samples to segment boundaries.
8951         return WRONG_STATE sooner when we are flushing.
8952
8953         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
8954         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
8955         Make audiosrc operate in TIME.
8956         Set TIMESTAMP and DURATION on buffers.
8957
8958 2006-01-24  Tim-Philipp Müller  <tim at centricular dot net>
8959
8960         * tests/examples/seek/seek.c: (main):
8961           Output tag messages as well.
8962
8963 2006-01-23  Edward Hervey  <edward@fluendo.com>
8964
8965         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
8966         (free_pad_probes), (remove_fakesink), (pad_probe),
8967         (close_pad_link), (gst_decode_bin_change_state):
8968         Replace GstPadBlockCallback with pad probes that detect
8969         first buffer AND eos before removing fakesink.
8970         Fixes hang with demuxers doing EOS while pre-rolling.
8971         Solves #328279
8972
8973 2006-01-23  Andy Wingo  <wingo@pobox.com>
8974
8975         * ext/alsa/gstalsasink.c:
8976         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8977         (gst_base_rtp_depayload_setcaps),
8978         (gst_base_rtp_depayload_add_to_queue),
8979         (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
8980         
8981         Patch by: Jens Granseuer <jensgr at gmx dot net>
8982
8983 2006-01-22  Julien MOUTTE  <julien@moutte.net>
8984
8985         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
8986         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
8987         (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some 
8988         frames. We might get a frame destroyed after changing state to
8989         NULL, adding a safety check on xcontext.
8990
8991 2006-01-22  Tim-Philipp Müller  <tim at centricular dot net>
8992
8993         * gst-libs/gst/interfaces/xoverlay.c:
8994           Fix prepare-xwindow-id code example in the docs - we need to
8995           ignore all messages that aren't element messages as well.
8996           
8997 2006-01-21  Julien MOUTTE  <julien@moutte.net>
8998
8999         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
9000           I think one day i'll completely undestand how caps negotiation
9001           is supposed to work. This refactoring handles buffer_alloc
9002           called with caps we can't handle. We definitely don't want a
9003           set_caps with those caps, so we define and allocate a buffer
9004           we would like to receive.
9005
9006 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
9007
9008         * gst/playback/gstplaybasebin.c: (setup_source):
9009           Free iterator when done.
9010
9011 2006-01-17  Jan Schmidt  <thaytan@mad.scientist.com>
9012
9013         * gst-libs/gst/audio/gstbaseaudiosink.c:
9014         (gst_base_audio_sink_render):
9015           Fix playback of non-synchronised streams by assuming a rate
9016           of 1.0 instead of a random one.
9017
9018           Makes this work again:
9019
9020           gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
9021           endianness=(int)4321, signed=(boolean)true, width=(int)16,
9022           depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
9023           audioresample ! alsasink
9024
9025 === release 0.10.2 ===
9026
9027 2006-01-16  Thomas Vander Stichele <thomas at apestaart dot org>
9028
9029         * configure.ac:
9030           releasing 0.10.2, "Then the devil is six"
9031
9032 2006-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
9033
9034         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
9035         * gst/playback/gststreamselector.c:
9036         (gst_stream_selector_set_property):
9037           Comment out broken code that connects to the state-changed signal.
9038           At this point, changing current stream selection is broken, but 
9039           stuff like gst-launch playbin current-audio=1 works and filters
9040           to the chosen stream.
9041
9042 2006-01-16  Thomas Vander Stichele  <thomas at apestaart dot org>
9043
9044         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
9045           Fix #327216 (null dereference in vorbisdec)
9046
9047 2006-01-16  Tim-Philipp Müller  <tim at centricular dot net>
9048
9049         * ext/theora/theoradec.c: (theora_handle_comment_packet):
9050           Post taglist actually on bus instead of just freeing it
9051           (fixes #327114 and totem bug #327080).
9052
9053         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
9054           Use gst_element_found_tags_for_pad(), so that the tags
9055           are sent downstream as an event as well.
9056
9057 2006-01-15  Thomas Vander Stichele  <thomas at apestaart dot org>
9058
9059         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
9060         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
9061         (gst_ximagesink_buffer_alloc):
9062         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
9063         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
9064         (gst_xvimagesink_buffer_alloc):
9065           move all regularly occurring messages to GST_LOG level
9066           add some more object logs
9067
9068 2006-01-14  Thomas Vander Stichele  <thomas at apestaart dot org>
9069
9070         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
9071           fix a silly segfault
9072
9073 2006-01-14  Tim-Philipp Müller  <tim at centricular dot net>
9074
9075         * docs/libs/gst-plugins-base-libs-docs.sgml:
9076         * docs/libs/gst-plugins-base-libs-sections.txt:
9077         * gst-libs/gst/audio/mixerutils.c:
9078         * gst-libs/gst/audio/mixerutils.h:
9079           Add docs for mixerutils stuff.
9080
9081 2006-01-13  Tim-Philipp Müller  <tim at centricular dot net>
9082
9083         * gst/playback/gstplaybasebin.c: (setup_source):
9084           Fix playback for sources that emit raw audio or
9085           raw video streams (e.g.: cd audio sources) (#325984).
9086
9087 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
9088
9089         * gst-libs/gst/audio/mixerutils.c:
9090         (gst_audio_mixer_filter_do_filter):
9091           actually save the element we create
9092
9093 2006-01-12  Tim-Philipp Müller  <tim at centricular dot net>
9094
9095         * gst-libs/gst/cdda/gstcddabasesrc.c:
9096         (gst_cdda_base_src_handle_track_seek):
9097           No need to post a tag message on the bus when seeking
9098           within the same track, only post it when the current
9099           track changes.
9100
9101 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
9102
9103         * gst/playback/gstplaybasebin.c: (group_destroy),
9104         (probe_triggered), (new_decoded_pad), (mute_group_type),
9105         (set_active_source):
9106         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
9107         * gst/playback/gststreamselector.c:
9108         (gst_stream_selector_base_init),
9109         (gst_stream_selector_set_property),
9110         (gst_stream_selector_request_new_pad):
9111           Reenable stream selection. These mechanisms need a complete overhaul
9112           in the face of 0.8->0.10 changes though.
9113
9114 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
9115
9116         * ext/ogg/gstoggdemux.c:
9117           Change the pad template to src_%d to match the pads that 
9118           are created from it. decodebin needs this information in order
9119           to decide that oggdemux is capable of producing multiple pads
9120           (and hence needs queues inserted).
9121
9122         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
9123         (gst_ogg_mux_collected):
9124           Make debug output more useful by using GST_PTR_FORMAT.
9125
9126 2006-01-11  Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
9127
9128         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
9129
9130         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
9131           Set depth and width for alaw/mulaw (fixes #326601).
9132
9133 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
9134
9135         * tests/icles/Makefile.am:
9136           don't build the tests if we don't have the libs
9137
9138 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
9139
9140         * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
9141         (gst_cd_paranoia_paranoia_callback):
9142           Don't try to free NULL pointers.
9143
9144 2006-01-10  Edward Hervey  <edward@fluendo.com>
9145
9146         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
9147         (gst_audio_rate_change_state), (plugin_init):
9148         Add debugging category.
9149         Fix type issues.
9150         Add case for incoming buffers without valid offset/offset_end.
9151
9152 2006-01-10  Michael Smith  <msmith@fluendo.com>
9153
9154         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
9155           Don't leak GCond in audio sources.
9156
9157 2006-01-10  Jan Schmidt  <thaytan@mad.scientist.com>
9158
9159         * gst/playback/gstplaybin.c: (gen_audio_element):
9160           Don't leak an autoaudiosink/alsasink when we generate
9161           a new audio element. (old code, I guess)
9162
9163 2006-01-10  Michael Smith  <msmith@fluendo.com>
9164
9165         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
9166           Support float audio in audiorate.
9167           Use width rather than depth for selecting sample width.
9168
9169 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
9170
9171         * gst/videotestsrc/videotestsrc.h:
9172           Use GLib types here (that way we don't have to include the
9173           generated _stdint.h header, which makes life easier for win32
9174           folks that don't use autotools for the build) (#325990, patch
9175           by: Sergey Scobich).
9176
9177 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
9178
9179         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
9180         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
9181         (gst_ring_buffer_pause), (wait_segment):
9182         * gst-libs/gst/audio/gstringbuffer.h:
9183           Name (private) union, makes Forte compiler happy (this time
9184           for real) (#324900).
9185
9186 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
9187
9188         * gst-libs/gst/audio/Makefile.am:
9189           Link against libgstinterfaces, needed for mixer
9190           and property probe stuff.
9191
9192 2006-01-09  Edward Hervey  <edward@fluendo.com>
9193
9194         * gst-libs/gst/Makefile.am:
9195
9196 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
9197
9198         * gst-libs/gst/audio/Makefile.am:
9199         * gst-libs/gst/audio/mixerutils.c:
9200         (gst_audio_mixer_filter_do_filter),
9201         (gst_audio_mixer_filter_check_element),
9202         (gst_audio_mixer_filter_probe_feature),
9203         (element_factory_rank_compare_func),
9204         (gst_audio_default_registry_mixer_filter):
9205         * gst-libs/gst/audio/mixerutils.h:
9206           Add gst_audio_default_registry_mixer_filter() utility
9207           function.
9208
9209 2006-01-03  Michael Smith  <msmith@fluendo.com>
9210
9211         * gst/audioresample/resample.h:
9212           As before, but for o_buf
9213
9214 2006-01-03  Michael Smith  <msmith@fluendo.com>
9215
9216         * gst/audioresample/resample.h:
9217           Declare struct _ResampleState.buffer as unsigned char *, not void *,
9218           since we do arithmetic on it.
9219
9220 2006-01-02  Tim-Philipp Müller  <tim at centricular dot net>
9221
9222         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
9223         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
9224         (gst_ring_buffer_pause), (wait_segment):
9225         * gst-libs/gst/audio/gstringbuffer.h:
9226           Sun's Forte compiler doesn't seem to like anonymous structs,
9227           so use same setup as in GstBaseSrc (fixes #324900).
9228
9229 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
9230
9231         * configure.ac:
9232         * gst/volume/Makefile.am:
9233         * gst/volume/demo.c:
9234           move old example to tests/examples/volume/volune.c
9235         * tests/examples/Makefile.am:
9236         * tests/examples/seek/seek.c: (main):
9237           change window-close event from "delete-event" to "destroy"
9238         * tests/examples/volume/Makefile.am:
9239         * tests/examples/volume/volume.c: (value_changed_callback),
9240         (setup_gui), (message_received), (eos_message_received), (main):
9241           fix event handling and bus usage
9242
9243 2005-12-29  Stefan Kost  <ensonic@users.sf.net>
9244
9245         * gst/audiotestsrc/gstaudiotestsrc.c:
9246         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
9247         (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
9248         (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
9249         (gst_audio_test_src_create_square),
9250         (gst_audio_test_src_create_saw),
9251         (gst_audio_test_src_create_triangle),
9252         (gst_audio_test_src_create_silence),
9253         (gst_audio_test_src_create_white_noise),
9254         (gst_audio_test_src_create_pink_noise),
9255         (gst_audio_test_src_init_sine_table),
9256         (gst_audio_test_src_create_sine_table),
9257         (gst_audio_test_src_change_wave),
9258         (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
9259         (gst_audio_test_src_create), (gst_audio_test_src_set_property):
9260         * gst/audiotestsrc/gstaudiotestsrc.h:
9261           update to basesrc changes, implement segmented seeking and eos
9262           handling, add a 'sine-tab' waveform for performance critical playback
9263
9264 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
9265
9266         * po/POTFILES.in:
9267           ... and this time the other modified file that I missed last time.
9268
9269 2005-12-29  Michael Smith  <msmith@fluendo.com>
9270
9271         * gst/playback/gstdecodebin.c: (new_pad):
9272           Fix non-C89 variable declaration not at the start of a block. Should
9273           help some compilers.
9274
9275 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
9276
9277         * tests/check/Makefile.am:
9278           And now fix 'make distcheck' (builddir != srcdir)
9279
9280 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
9281
9282         * configure.ac:
9283         * ext/cdparanoia/Makefile.am:
9284         * ext/cdparanoia/gstcdparanoia.c:
9285         * ext/cdparanoia/gstcdparanoia.h:
9286         * ext/cdparanoia/gstcdparanoiasrc.c:
9287         (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
9288         (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
9289         (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
9290         (gst_cd_paranoia_paranoia_callback),
9291         (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
9292         (gst_cd_paranoia_src_set_property),
9293         (gst_cd_paranoia_src_get_property), (plugin_init):
9294         * ext/cdparanoia/gstcdparanoiasrc.h:
9295           New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
9296           plugin again (there are still fixes required to playbin to make
9297           cdda:// uris work there).
9298
9299 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
9300
9301         * tests/check/Makefile.am:
9302           Fix test case compilation.
9303
9304 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
9305
9306         * gst-libs/gst/cdda/gstcddabasesrc.c:
9307         (gst_cdda_base_src_update_duration),
9308         (gst_cdda_base_src_calculate_cddb_id):
9309           An integer is not a string. Fix access to uninitialised variable.
9310
9311         * tests/check/Makefile.am:
9312           Add cddabasesrc unit test; also actually enable the vorbis test.
9313
9314         * tests/check/generic/states.c:
9315           Blacklist new cd audio elements as well.
9316
9317         * tests/check/libs/cddabasesrc.c:
9318           Unit test for GstCddaBaseSrc (discid calculation mostly).
9319
9320 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
9321
9322         * docs/libs/Makefile.am:
9323         * docs/libs/gst-plugins-base-libs-docs.sgml:
9324         * docs/libs/gst-plugins-base-libs-sections.txt:
9325         * docs/libs/gst-plugins-base-libs.types:
9326           Add docs for libgstcdda/GstCddaBaseSrc.
9327
9328         * gst-libs/gst/interfaces/mixertrack.h:
9329           Do one struct member per line with a semicolon at the end, that way
9330           even gtk-doc might parse it without complaining.
9331
9332 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
9333
9334         * configure.ac:
9335         * gst-libs/gst/Makefile.am:
9336         * gst-libs/gst/cdda/Makefile.am:
9337         * gst-libs/gst/cdda/base64.c:
9338         * gst-libs/gst/cdda/base64.h:
9339         * gst-libs/gst/cdda/gstcddabasesrc.c:
9340         (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
9341         (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
9342         (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
9343         (gst_cdda_base_src_get_property),
9344         (gst_cdda_base_src_get_track_from_sector),
9345         (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
9346         (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
9347         (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
9348         (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
9349         (gst_cdda_base_src_uri_get_protocols),
9350         (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
9351         (gst_cdda_base_src_uri_handler_init),
9352         (gst_cdda_base_src_setup_interfaces),
9353         (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
9354         (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
9355         (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
9356         (gst_cdda_base_src_add_tags),
9357         (gst_cdda_base_src_add_index_associations),
9358         (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
9359         (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
9360         (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
9361         (gst_cdda_base_src_create):
9362         * gst-libs/gst/cdda/gstcddabasesrc.h:
9363         * gst-libs/gst/cdda/sha1.c:
9364         * gst-libs/gst/cdda/sha1.h:
9365           Add new libgstcdda with GstCddaBaseSrc class.
9366
9367 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
9368
9369         * ext/gnomevfs/gstgnomevfssink.h:
9370           Use GstBaseSinkClass as parent_class member for class struct, not
9371           GstBaseSink.
9372
9373 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
9374
9375         Patch by: Michael Benes
9376
9377         * gst/videotestsrc/gstvideotestsrc.c:
9378         (gst_video_test_src_class_init), (gst_video_test_src_start):
9379           Add start method to reset running time and number of frames sent
9380           when starting up (fixes #324696)
9381
9382 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
9383
9384         * docs/plugins/Makefile.am:
9385         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9386         * docs/plugins/gst-plugins-base-plugins-sections.txt:
9387         * docs/plugins/gst-plugins-base-plugins.args:
9388         * docs/plugins/gst-plugins-base-plugins.hierarchy:
9389         * docs/plugins/gst-plugins-base-plugins.signals:
9390           Add docs stuff for gnomevfssrc and gnomevfssink.
9391
9392         * ext/gnomevfs/gstgnomevfssrc.c:
9393           Fix example pipeline in gtk-doc blurb.
9394
9395 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
9396
9397         * ext/gnomevfs/Makefile.am:
9398         * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
9399         (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
9400         (gst_gnome_vfs_handle_get_type), (plugin_init):
9401         * ext/gnomevfs/gstgnomevfs.h:
9402         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
9403         (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
9404         (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
9405         (gst_gnome_vfs_sink_set_property),
9406         (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
9407         (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
9408         (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
9409         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
9410         (gst_gnome_vfs_sink_uri_get_type),
9411         (gst_gnome_vfs_sink_uri_get_protocols),
9412         (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
9413         (gst_gnome_vfs_sink_uri_handler_init):
9414         * ext/gnomevfs/gstgnomevfssink.h:
9415           Port gnomevfssink; add gtk-doc blurb.
9416
9417         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
9418         (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
9419         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
9420         (gst_gnome_vfs_src_uri_get_type),
9421         (gst_gnome_vfs_src_uri_get_protocols),
9422         (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
9423         (gst_gnome_vfs_src_uri_handler_init),
9424         (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
9425         (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
9426         (gst_gnome_vfs_src_send_additional_headers_callback),
9427         (gst_gnome_vfs_src_received_headers_callback),
9428         (gst_gnome_vfs_src_push_callbacks),
9429         (gst_gnome_vfs_src_pop_callbacks),
9430         (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
9431         (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
9432         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
9433         * ext/gnomevfs/gstgnomevfssrc.h:
9434           s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
9435           file; add gtk-doc blurb with example pipelines.
9436
9437 === release 0.10.1 ===
9438
9439 2005-12-23  Thomas Vander Stichele <thomas at apestaart dot org>
9440
9441         * configure.ac:
9442           releasing 0.10.1, "Dobro Dedek"
9443
9444 2005-12-21  Edgard Lima <edgard.lima@indt.org.br>
9445
9446         * gst/typefind/gsttypefindfunctions.c:
9447         iLBC30 and iLBC20 added to typefind.
9448
9449 2005-12-20  Thomas Vander Stichele  <thomas at apestaart dot org>
9450
9451         * gst-libs/gst/audio/gstbaseaudiosink.c:
9452         (gst_base_audio_sink_class_init):
9453         * gst-libs/gst/audio/gstbaseaudiosrc.c:
9454         (gst_base_audio_src_class_init):
9455           update strings, values are in microseconds
9456           change the default sink buffer time to something that is smaller
9457           (to help software volume mixing have a slightly lower delay) but
9458           still be acceptable on Wim's laptop
9459
9460 2005-12-20  Edward Hervey  <edward@fluendo.com>
9461
9462         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
9463         Made a quack, forgot to add DUCK to the riff video template.
9464
9465 2005-12-19  Edward Hervey  <edward@fluendo.com>
9466
9467         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
9468         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
9469         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
9470         (gst_ogm_parse_chain):
9471         Make sure pads are initialized correctly.
9472         * gst-libs/gst/riff/riff-ids.h:
9473         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
9474         (gst_riff_create_video_template_caps):
9475         Add a whole bunch of FOURCC <=> MimeType.
9476         Extend the riff video pad template to support the newly added fourcc.
9477
9478 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
9479
9480         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
9481         (gst_ogg_demux_activate_chain):
9482           Extra debug output when activating/deactivating chains.
9483
9484         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
9485         (is_demuxer_element), (try_to_link_1), (remove_element_chain),
9486         (unlinked):
9487           Remove a queue from our list when it becomes unlinked.
9488           Don't add queues to elements in class 'Demux' if they
9489           can only produce one pad 
9490
9491 2005-12-18  Julien MOUTTE  <julien@moutte.net>
9492
9493         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
9494         (gst_video_sink_get_type): Add a debug category.
9495
9496 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
9497
9498         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9499         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
9500           Handle downstream newsegment by sending our own newsegment before the
9501           next buffer to be released. (#323900)
9502
9503 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
9504
9505         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9506         (gst_base_rtp_depayload_set_gst_timestamp):
9507           add queue delay to new segment as well (as opposed to just the first
9508           buffer). (bug #322347)
9509
9510 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
9511
9512         * ext/libvisual/visual.c: (make_valid_name):
9513           change some char* into char[]
9514         * gst/audiotestsrc/gstaudiotestsrc.c:
9515         (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
9516         (gst_audio_test_src_create):
9517         * gst/audiotestsrc/gstaudiotestsrc.h:
9518           prepare to handle EOS and SEGMENT_DONE
9519
9520 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
9521
9522         * tests/check/generic/states.c: (GST_START_TEST):
9523           Blacklist cdparanoia element in state test.
9524
9525 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
9526
9527           Patch by: Benjamin Pineau
9528
9529         * gst/tcp/gsttcp.c:
9530         * gst/tcp/gsttcpclientsink.c:
9531         * gst/tcp/gsttcpserversink.c:
9532         * gst/tcp/gsttcpserversrc.c:
9533           Add <string.h> includes for memset and FD_ZERO (fixes #323878)
9534
9535 2005-12-15  Michael Smith  <msmith@fluendo.com>
9536
9537         * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
9538         (gst_video_rate_chain):
9539           Fix timestamping for videorate when the first buffer it sees has a
9540           non-zero timestamp. Fix some misleading debug output.
9541
9542 2005-12-15  Michael Smith  <msmith@fluendo.com>
9543
9544         * gst/audioresample/gstaudioresample.c:
9545           Don't leak all input buffers to audioresample.
9546
9547 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
9548
9549         * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
9550           Don't operate on empty text buffers. Strip newlines and
9551           tabs only from the end of the text, but leave them intact
9552           in the middle. Fix typo in gtk-doc description.
9553
9554 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
9555
9556         * gst/playback/gstplaybasebin.c:
9557         * gst/playback/gstplaybin.c: (handoff):
9558           Make sure the video frame buffer we return to apps via the
9559           "frame" property always has caps set on it. Modify
9560           _gst_gvalue_set_object() macro to handle NULL objects
9561           gracefully too.
9562
9563 2005-12-14  Stefan Kost  <ensonic@users.sf.net>
9564
9565         * gst/audiotestsrc/gstaudiotestsrc.c:
9566         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
9567         (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
9568         (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
9569         (gst_audio_test_src_create):
9570         * gst/audiotestsrc/gstaudiotestsrc.h:
9571         Adjust to some recent api changes and add wtays new cool seeking
9572         capabillities
9573
9574 2005-12-14  Tim-Philipp Müller  <tim at centricular dot net>
9575
9576         * ext/alsa/Makefile.am:
9577         * ext/alsa/gstalsadeviceprobe.c:
9578         * ext/alsa/gstalsadeviceprobe.h:
9579           Helper functions to add device probing via the GstPropertyProbe
9580           interface to a class.
9581
9582         * ext/alsa/gstalsamixer.h:
9583           Comment out GST_ALSA_MIXER, it returns a struct that's not
9584           used.
9585
9586         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
9587           Add some debug info. 
9588
9589         * ext/alsa/gstalsamixerelement.c:
9590         (gst_alsa_mixer_element_interface_supported),
9591         (gst_implements_interface_init),
9592         (gst_alsa_mixer_element_init_interfaces),
9593         (gst_alsa_mixer_element_class_init),
9594         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
9595         (gst_alsa_mixer_element_set_property),
9596         (gst_alsa_mixer_element_get_property),
9597         (gst_alsa_mixer_element_change_state):
9598         * ext/alsa/gstalsamixerelement.h:
9599           Add 'device' and 'device-name' properties. Add GstPropertyProbe
9600           for device handling (gnome-volume-control will need that).
9601
9602 2005-12-12  Christian Schaller  <uraeus@gnome.org>
9603
9604         * ext/Makefile.am: fix cdparanoia entry
9605         * gst-plugins-base.spec.in: add cdparanoia
9606
9607 2005-12-12  Michael Smith  <msmith@fluendo.com>
9608
9609         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
9610           Use the correct function to free list of typefind factories.
9611
9612 2005-12-12  Wim Taymans  <wim@fluendo.com>
9613
9614         * gst/videotestsrc/gstvideotestsrc.c:
9615         (gst_video_test_src_class_init), (gst_video_test_src_init),
9616         (gst_video_test_src_parse_caps), (gst_video_test_src_query),
9617         (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
9618         (gst_video_test_src_create):
9619         * gst/videotestsrc/gstvideotestsrc.h:
9620         Implement seeking in videotestsrc.
9621         Small cleanups.
9622
9623 2005-12-12  Wim Taymans  <wim@fluendo.com>
9624
9625         * ext/cdparanoia/Makefile.am:
9626         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
9627         (gst_paranoia_endian_get_type), (_do_init),
9628         (cdparanoia_class_init), (cdparanoia_init),
9629         (cdparanoia_set_property), (cdparanoia_get_property),
9630         (cdparanoia_do_seek), (cdparanoia_is_seekable),
9631         (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
9632         (cdparanoia_convert), (cdparanoia_get_query_types),
9633         (cdparanoia_query), (cdparanoia_set_index),
9634         (cdparanoia_uri_set_uri):
9635         * ext/cdparanoia/gstcdparanoia.h:
9636         Partially ported cdparanoia now that basesrc can support a
9637         plugin like this..
9638
9639 2005-12-12  Wim Taymans  <wim@fluendo.com>
9640
9641         * tests/examples/seek/scrubby.c: (main):
9642         Set higher priority for bus events so they don't get reordered with
9643         gtk gui events.
9644
9645         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
9646         (flush_toggle_cb), (main):
9647         Added checkbox to disable flushing seeks. 
9648         Disable scrubbing when doing non flushing seeks.
9649
9650 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
9651
9652         * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
9653         (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
9654         (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
9655         (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
9656           Implement some sort of event handling that doesn't rely on
9657           g_return_if_fail; make sure we always push the last chunk of an 
9658           .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
9659           state change function; remove some old cruft. Seeking is still
9660           rather unlikely to work though.
9661
9662         * tools/.cvsignore:
9663           Ignore more.
9664
9665 2005-12-11  Julien MOUTTE  <julien@moutte.net>
9666
9667         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): 
9668         Fixed a leak of the current image reference when cleaning up.
9669         Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
9670
9671 2005-12-09  Michael Smith  <msmith@fluendo.com>
9672
9673         * tools/Makefile.am:
9674         * tools/gst-launch-ext-m.m:
9675           Remove gst-launch-ext. It doesn't work, and is no longer
9676           particularly useful.
9677
9678 2005-12-08  Luca Ognibene  <luogni@tin.it>
9679
9680         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
9681           don't pass random values to ogmparse convert function.
9682           Make seeking possible in the exile1.ogm file.
9683
9684 2005-12-07  Tim-Philipp Müller  <tim at centricular dot net>
9685
9686         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
9687         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
9688           Work around refcount problem with g_value_set_object() that occur
9689           if the core has been compiled against GLib-2.6 (g_value_set_object()
9690           will only g_object_ref() the element, but the caller will
9691           gst_object_unref() it and bad things will happen due to the way
9692           GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
9693           totem for people on FC4 using Thomas's 0.10 RPMs.
9694           
9695 2005-12-07  Edward Hervey  <edward@fluendo.com>
9696
9697         Time to welcome ogm to 0.10 :)
9698         
9699         * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
9700         (gst_ogg_pad_typefind):
9701         Oggdemux can now properly typefind elements with dynamic pads.
9702         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
9703         Properly set caps on src pad, and set caps on outgoing buffers.
9704
9705 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
9706
9707         * ext/alsa/gstalsamixer.h:
9708         * ext/alsa/gstalsamixerelement.h:
9709         * ext/alsa/gstalsamixeroptions.h:
9710         * ext/alsa/gstalsamixertrack.h:
9711         * ext/alsa/gstalsasink.c:
9712         * ext/alsa/gstalsasink.h:
9713         * ext/alsa/gstalsasrc.c:
9714         * ext/alsa/gstalsasrc.h:
9715         * ext/cdparanoia/gstcdparanoia.h:
9716         * ext/gnomevfs/gstgnomevfsuri.h:
9717         * ext/ogg/gstoggdemux.c:
9718         * ext/ogg/gstoggmux.c:
9719         * ext/pango/gsttextoverlay.h:
9720         * ext/theora/theoradec.c:
9721         * ext/theora/theoraenc.c:
9722         * ext/vorbis/vorbisdec.h:
9723         * ext/vorbis/vorbisenc.c:
9724         * ext/vorbis/vorbisenc.h:
9725         * ext/vorbis/vorbisparse.h:
9726         * gst-libs/gst/audio/gstaudioclock.h:
9727         * gst-libs/gst/audio/gstaudiosink.c:
9728         * gst-libs/gst/audio/gstaudiosink.h:
9729         * gst-libs/gst/audio/gstaudiosrc.c:
9730         * gst-libs/gst/audio/gstaudiosrc.h:
9731         * gst-libs/gst/audio/gstbaseaudiosink.c:
9732         * gst-libs/gst/audio/gstbaseaudiosink.h:
9733         * gst-libs/gst/audio/gstbaseaudiosrc.c:
9734         * gst-libs/gst/audio/gstbaseaudiosrc.h:
9735         * gst-libs/gst/audio/gstringbuffer.h:
9736         * gst-libs/gst/audio/multichannel.h:
9737         * gst-libs/gst/floatcast/floatcast.h:
9738         * gst-libs/gst/interfaces/colorbalance.c:
9739         * gst-libs/gst/interfaces/colorbalance.h:
9740         * gst-libs/gst/interfaces/colorbalancechannel.h:
9741         * gst-libs/gst/interfaces/mixer.h:
9742         * gst-libs/gst/interfaces/mixeroptions.h:
9743         * gst-libs/gst/interfaces/mixertrack.h:
9744         * gst-libs/gst/interfaces/navigation.h:
9745         * gst-libs/gst/interfaces/propertyprobe.h:
9746         * gst-libs/gst/interfaces/tuner.h:
9747         * gst-libs/gst/interfaces/tunerchannel.h:
9748         * gst-libs/gst/interfaces/tunernorm.h:
9749         * gst-libs/gst/interfaces/xoverlay.h:
9750         * gst-libs/gst/netbuffer/gstnetbuffer.h:
9751         * gst-libs/gst/riff/riff-ids.h:
9752         * gst-libs/gst/riff/riff-media.h:
9753         * gst-libs/gst/riff/riff-read.h:
9754         * gst-libs/gst/rtp/gstbasertpdepayload.h:
9755         * gst-libs/gst/rtp/gstbasertppayload.c:
9756         * gst-libs/gst/rtp/gstbasertppayload.h:
9757         * gst-libs/gst/rtp/gstrtpbuffer.c:
9758         * gst-libs/gst/rtp/gstrtpbuffer.h:
9759         * gst-libs/gst/tag/gsttageditingprivate.h:
9760         * gst-libs/gst/tag/gstvorbistag.c:
9761         (gst_tag_list_from_vorbiscomment_buffer):
9762         * gst-libs/gst/tag/tag.h:
9763         * gst-libs/gst/video/video.h:
9764         * gst/adder/gstadder.c:
9765         * gst/adder/gstadder.h:
9766         * gst/audioconvert/audioconvert.c:
9767         * gst/audioconvert/audioconvert.h:
9768         * gst/audioconvert/gstaudioconvert.c:
9769         * gst/audioconvert/gstchannelmix.c:
9770         * gst/audioconvert/gstchannelmix.h:
9771         * gst/audiorate/gstaudiorate.c:
9772         * gst/audioresample/buffer.h:
9773         * gst/audioresample/functable.h:
9774         * gst/audioresample/gstaudioresample.c:
9775         * gst/audioresample/resample.h:
9776         * gst/ffmpegcolorspace/avcodec.h:
9777         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
9778         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
9779         * gst/ffmpegcolorspace/imgconvert.c:
9780         * gst/ffmpegcolorspace/imgconvert_template.h:
9781         * gst/playback/gstdecodebin.c:
9782         * gst/playback/gstplaybasebin.h:
9783         * gst/playback/gstplaybin.c:
9784         * gst/playback/gststreaminfo.h:
9785         * gst/tcp/gstfdset.c:
9786         * gst/tcp/gstfdset.h:
9787         * gst/tcp/gstmultifdsink.c:
9788         * gst/tcp/gstmultifdsink.h:
9789         * gst/tcp/gsttcp.h:
9790         * gst/tcp/gsttcpclientsrc.c:
9791         * gst/tcp/gsttcpclientsrc.h:
9792         * gst/tcp/gsttcpplugin.h:
9793         * gst/tcp/gsttcpserversink.c:
9794         * gst/tcp/gsttcpserversrc.c:
9795         * gst/typefind/gsttypefindfunctions.c:
9796         * gst/videorate/gstvideorate.c:
9797         * gst/videotestsrc/gstvideotestsrc.h:
9798         * gst/videotestsrc/videotestsrc.h:
9799         * sys/v4l/gstv4lcolorbalance.h:
9800         * sys/v4l/gstv4ltuner.h:
9801         * sys/v4l/gstv4lxoverlay.h:
9802         * sys/v4l/v4l_calls.h:
9803         * sys/v4l/videodev_mjpeg.h:
9804         * tests/check/elements/audioconvert.c:
9805         * tests/check/elements/audioresample.c:
9806         * tests/check/elements/audiotestsrc.c:
9807         * tests/check/elements/videotestsrc.c:
9808         * tests/check/elements/volume.c:
9809         * tests/examples/seek/scrubby.c:
9810         * tests/examples/seek/seek.c:
9811           expand tabs
9812
9813 === release 0.10.0 ===
9814
9815 2005-12-05 Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9816
9817         * configure.ac:
9818           releasing 0.10.0, "Mont-d'or"
9819
9820 2005-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
9821
9822         * tests/examples/seek/Makefile.am:
9823         Build fix for when gtk is not available.
9824
9825 2005-12-05  Andy Wingo  <wingo@pobox.com>
9826
9827         * ext/libvisual/visual.c: (get_buffer):
9828         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
9829         * ext/pango/gsttextrender.c: (gst_text_render_chain):
9830         * ext/theora/theoradec.c: (theora_handle_data_packet):
9831         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
9832         (theora_enc_chain):
9833         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9834         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
9835         Update for alloc_buffer changes.
9836
9837 2005-12-05  Andy Wingo  <wingo@pobox.com>
9838
9839         patch by: Kai Vehmanen <kv2004 eca cx>
9840         
9841         * gst-libs/gst/rtp/gstbasertpdepayload.c
9842         (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
9843
9844 2005-12-04  Andy Wingo  <wingo@pobox.com>
9845
9846         patch by: Sebastien Cote <sebas642 yahoo ca>
9847         
9848         * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
9849         Fixes #319172.
9850
9851 2005-12-02  Tim-Philipp Müller  <tim at centricular dot net>
9852
9853         * docs/plugins/Makefile.am:
9854         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9855         * docs/plugins/gst-plugins-base-plugins-sections.txt:
9856         * docs/plugins/gst-plugins-base-plugins.hierarchy:
9857         * ext/pango/gstclockoverlay.c:
9858         * ext/pango/gsttextoverlay.c: 
9859         * ext/pango/gsttextrender.c:
9860         * ext/pango/gsttimeoverlay.c:
9861           Add gtk-doc blurbs to pango elements.
9862
9863 2005-12-02  Wim Taymans  <wim@fluendo.com>
9864
9865         * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
9866         * gst/audioresample/buffer.h:
9867         * gst/audioresample/gstaudioresample.c:
9868         * gst/audioresample/gstaudioresample.h:
9869         * gst/audioresample/resample.c: (resample_input_flush),
9870         (resample_input_pushthrough), (resample_input_eos),
9871         (resample_get_output_size_for_input),
9872         (resample_get_input_size_for_output), (resample_get_output_size),
9873         (resample_get_output_data):
9874         * gst/audioresample/resample.h:
9875         * gst/audioresample/resample_ref.c: (resample_scale_ref):
9876         Fix audioresample, seek torture, new segments, reverse negotiation
9877         etc.. work fine.
9878
9879 2005-12-02  Wim Taymans  <wim@fluendo.com>
9880
9881         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9882         Small cleanups.
9883
9884 2005-12-02  Wim Taymans  <wim@fluendo.com>
9885
9886         * gst/audioconvert/gstaudioconvert.c:
9887         (gst_audio_convert_transform):
9888         Post errors.
9889
9890 === release 0.9.7 ===
9891
9892 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9893
9894         * configure.ac:
9895           releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
9896
9897 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
9898
9899         * Makefile.am:
9900         * po/hu.po:
9901         * win32/MANIFEST:
9902         * win32/gst.sln:
9903           add win32 MANIFEST file
9904           do something to the hungarian translation
9905
9906 2005-12-01  Tim-Philipp Müller  <tim at centricular dot net>
9907
9908         * ext/Makefile.am:
9909           Add $(PANGO_DIR) to SUBDIRS
9910
9911         * ext/pango/gstclockoverlay.c:
9912         * ext/pango/gsttimeoverlay.c:
9913           Fix and improve element descriptions.
9914
9915 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9916
9917         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9918         * docs/plugins/inspect/plugin-libvisual.xml:
9919         * docs/plugins/inspect/plugin-pango.xml:
9920           add pango plugin to docs
9921
9922 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9923
9924         * configure.ac:
9925         * ext/Makefile.am:
9926           moved pango to base
9927
9928 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
9929
9930         * configure.ac:
9931         * tests/Makefile.am:
9932         * tests/icles/.cvsignore:
9933         * tests/icles/Makefile.am:
9934         * tests/icles/stress-xoverlay.c: (myclock), (open_display),
9935         (close_display), (resize_window), (move_window), (create_window),
9936         (terminate_playback), (pause_playback), (start_playback), (main):
9937           add stress test for xoverlay from Julien
9938
9939 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9940
9941         * docs/libs/tmpl/gstcolorbalance.sgml:
9942         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9943         * gst-libs/gst/rtp/gstbasertppayload.c:
9944         * gst-libs/gst/rtp/gstrtpbuffer.c:
9945         * gst-libs/gst/rtp/gstrtpbuffer.h:
9946           Do burger's rename for rtp payloaders and depayloaders
9947
9948 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
9949
9950         * win32/:
9951           add Visual Studio 6 build files
9952
9953 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
9954
9955         * docs/libs/gst-plugins-base-libs-docs.sgml:
9956         * docs/libs/gst-plugins-base-libs-sections.txt:
9957         * docs/libs/tmpl/gstaudio.sgml:
9958         * docs/libs/tmpl/gstringbuffer.sgml:
9959         * gst-libs/gst/interfaces/xoverlay.c:
9960         * gst-libs/gst/video/gstvideofilter.c:
9961         * gst-libs/gst/video/gstvideosink.c:
9962           update documentation
9963
9964 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
9965
9966         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
9967         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
9968         (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
9969         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
9970         (gst_multi_fd_sink_get_stats),
9971         (gst_multi_fd_sink_remove_client_link),
9972         (gst_multi_fd_sink_handle_client_read),
9973         (gst_multi_fd_sink_client_queue_data),
9974         (gst_multi_fd_sink_client_queue_caps),
9975         (gst_multi_fd_sink_client_queue_buffer),
9976         (gst_multi_fd_sink_new_client),
9977         (gst_multi_fd_sink_handle_client_write),
9978         (gst_multi_fd_sink_recover_client),
9979         (gst_multi_fd_sink_queue_buffer),
9980         (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
9981         (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
9982         (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
9983         (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
9984         * gst/tcp/gstmultifdsink.h:
9985         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
9986         (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
9987         (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
9988         (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
9989         (gst_tcp_client_sink_set_property),
9990         (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
9991         (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
9992         * gst/tcp/gsttcpclientsink.h:
9993         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
9994         (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
9995         (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
9996         (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
9997         (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
9998         (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
9999         * gst/tcp/gsttcpclientsrc.h:
10000         * gst/tcp/gsttcpplugin.c: (plugin_init):
10001         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
10002         (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
10003         (gst_tcp_server_sink_finalize),
10004         (gst_tcp_server_sink_handle_server_read),
10005         (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
10006         (gst_tcp_server_sink_set_property),
10007         (gst_tcp_server_sink_get_property),
10008         (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
10009         * gst/tcp/gsttcpserversink.h:
10010         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
10011         (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
10012         (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
10013         (gst_tcp_server_src_set_property),
10014         (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
10015         (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
10016         * gst/tcp/gsttcpserversrc.h:
10017           more borgifying
10018
10019 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
10020
10021         * docs/plugins/Makefile.am:
10022         * docs/plugins/gst-plugins-base-plugins.args:
10023         * docs/plugins/inspect/plugin-libvisual.xml:
10024         * gst/audioconvert/plugin.h:
10025         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
10026         (gst_audio_rate_base_init), (gst_audio_rate_class_init),
10027         (gst_audio_rate_setcaps), (gst_audio_rate_init),
10028         (gst_audio_rate_chain), (gst_audio_rate_set_property),
10029         (gst_audio_rate_get_property), (gst_audio_rate_change_state),
10030         (plugin_init):
10031         * gst/audiotestsrc/gstaudiotestsrc.c:
10032         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
10033         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
10034         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
10035         (gst_audio_test_src_get_query_types),
10036         (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
10037         (gst_audio_test_src_create_square),
10038         (gst_audio_test_src_create_saw),
10039         (gst_audio_test_src_create_triangle),
10040         (gst_audio_test_src_create_silence),
10041         (gst_audio_test_src_create_white_noise),
10042         (gst_audio_test_src_init_pink_noise),
10043         (gst_audio_test_src_generate_pink_noise_value),
10044         (gst_audio_test_src_create_pink_noise),
10045         (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
10046         (gst_audio_test_src_create), (gst_audio_test_src_set_property),
10047         (gst_audio_test_src_get_property), (gst_audio_test_src_start),
10048         (plugin_init):
10049         * gst/audiotestsrc/gstaudiotestsrc.h:
10050         * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
10051         (gst_sub_parse_base_init), (gst_sub_parse_class_init),
10052         (gst_sub_parse_init), (gst_sub_parse_formats),
10053         (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
10054         (convert_encoding), (get_next_line),
10055         (gst_sub_parse_data_format_autodetect),
10056         (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
10057         (gst_sub_parse_loop), (gst_sub_parse_chain),
10058         (gst_sub_parse_change_state), (gst_sub_parse_type_find),
10059         (plugin_init):
10060         * gst/subparse/gstsubparse.h:
10061         * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
10062         (gst_video_rate_base_init), (gst_video_rate_class_init),
10063         (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
10064         (gst_video_rate_setcaps), (gst_video_rate_blank_data),
10065         (gst_video_rate_init), (gst_video_rate_event),
10066         (gst_video_rate_chain), (gst_video_rate_set_property),
10067         (gst_video_rate_get_property), (gst_video_rate_change_state),
10068         (plugin_init):
10069         * gst/videoscale/gstvideoscale.c:
10070         (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
10071         (gst_video_scale_src_template_factory),
10072         (gst_video_scale_sink_template_factory),
10073         (gst_video_scale_get_type), (gst_video_scale_base_init),
10074         (gst_video_scale_class_init), (gst_video_scale_init),
10075         (gst_video_scale_set_property), (gst_video_scale_get_property),
10076         (gst_video_scale_transform_caps), (gst_video_scale_get_format),
10077         (gst_video_scale_prepare_size), (parse_caps),
10078         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
10079         (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
10080         (gst_video_scale_transform), (gst_video_scale_handle_src_event),
10081         (plugin_init):
10082         * gst/videoscale/gstvideoscale.h:
10083         * gst/videotestsrc/gstvideotestsrc.c:
10084         (gst_video_test_src_pattern_get_type),
10085         (gst_video_test_src_base_init), (gst_video_test_src_class_init),
10086         (gst_video_test_src_init), (gst_video_test_src_src_fixate),
10087         (gst_video_test_src_set_pattern),
10088         (gst_video_test_src_set_property),
10089         (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
10090         (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
10091         (gst_video_test_src_event), (gst_video_test_src_get_times),
10092         (gst_video_test_src_create), (plugin_init):
10093         * gst/videotestsrc/gstvideotestsrc.h:
10094         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
10095         (gst_video_test_src_smpte), (gst_video_test_src_snow),
10096         (gst_video_test_src_black):
10097         * gst/videotestsrc/videotestsrc.h:
10098           borgify further
10099           clean up docs a little
10100
10101 2005-11-30  Wim Taymans  <wim@fluendo.com>
10102
10103         * gst-libs/gst/rtp/gstbasertpdepayload.h:
10104         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
10105         (gst_basertppayload_event), (gst_basertppayload_push),
10106         (gst_basertppayload_change_state):
10107         * gst-libs/gst/rtp/gstbasertppayload.h:
10108         closed #320644.
10109
10110 2005-11-30  Julien MOUTTE  <julien@moutte.net>
10111
10112         * docs/libs/gst-plugins-base-libs-docs.sgml:
10113         * docs/libs/gst-plugins-base-libs-sections.txt:
10114         * gst-libs/gst/video/gstvideofilter.c:
10115         * gst-libs/gst/video/gstvideosink.c:
10116         * gst-libs/gst/video/gstvideosink.h: Adding docs.
10117
10118 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
10119
10120         * LICENSE:
10121           move
10122         * po/af.po:
10123         * po/az.po:
10124         * po/cs.po:
10125         * po/en_GB.po:
10126         * po/hu.po:
10127         * po/it.po:
10128         * po/nb.po:
10129         * po/nl.po:
10130         * po/or.po:
10131         * po/sq.po:
10132         * po/sr.po:
10133         * po/sv.po:
10134         * po/uk.po:
10135         * po/vi.po:
10136         * Makefile.am:
10137           update
10138         * scripts/autoplugins.sh:
10139           remove
10140
10141 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
10142
10143         * Makefile.am:
10144         * configure.ac:
10145         * examples/Makefile.am:
10146         * examples/capsfilter/Makefile.am:
10147         * examples/capsfilter/capsfilter1.c:
10148         * examples/gob/Makefile.am:
10149         * examples/gob/gst-identity2.gob:
10150         * examples/indexing/.cvsignore:
10151         * examples/indexing/Makefile.am:
10152         * examples/indexing/indexmpeg.c:
10153         * examples/seeking/.cvsignore:
10154         * examples/seeking/Makefile.am:
10155         * examples/seeking/cdparanoia.c:
10156         * examples/seeking/cdplayer.c:
10157         * examples/seeking/chained.c:
10158         * examples/seeking/scrubby.c:
10159         * examples/seeking/seek.c:
10160         * examples/stats/Makefile.am:
10161         * examples/stats/mp2ogg.c:
10162         * examples/switch/.cvsignore:
10163         * examples/switch/Makefile.am:
10164         * examples/switch/switcher.c:
10165         * tests/Makefile.am:
10166         * tests/check/generic/.cvsignore:
10167         * tests/check/pipelines/.cvsignore:
10168         * tests/examples/Makefile.am:
10169         * tests/examples/seek/Makefile.am:
10170           reorganize stuff under tests/
10171
10172 2005-11-30  Edward Hervey  <edward@fluendo.com>
10173
10174         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
10175         Go away you stupid GstStaticPadTemplate memleak.
10176
10177 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
10178
10179         * gst-libs/gst/net/Makefile.am:
10180         * gst-libs/gst/net/README:
10181         * gst-libs/gst/net/gstnetbuffer.c:
10182         * gst-libs/gst/net/gstnetbuffer.h:
10183           this was moved to "netbuffer"
10184
10185 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
10186
10187         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
10188         (gst_video_filter_class_init), (gst_video_filter_init):
10189         * gst-libs/gst/video/gstvideofilter.h:
10190           borgify name to bring in line with other classes
10191
10192 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
10193
10194         * gst/audioscale/.cvsignore:
10195         * gst/audioscale/Makefile.am:
10196         * gst/audioscale/README:
10197         * gst/audioscale/audioscale.vcproj:
10198         * gst/audioscale/dtof.c:
10199         * gst/audioscale/dtos.c:
10200         * gst/audioscale/functable.c:
10201         * gst/audioscale/gstaudioscale.c:
10202         * gst/audioscale/gstaudioscale.h:
10203         * gst/audioscale/private.h:
10204         * gst/audioscale/resample.c:
10205         * gst/audioscale/resample.h:
10206         * gst/audioscale/test.c:
10207           remove
10208
10209 2005-11-30  Edward Hervey  <edward@fluendo.com>
10210
10211         * gst-libs/gst/netbuffer/Makefile.am:
10212         really, really tired
10213
10214 2005-11-30  Edward Hervey  <edward@fluendo.com>
10215
10216         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
10217         Update for new GstTypeFindFactory _register()
10218
10219 2005-11-30  Edward Hervey  <edward@fluendo.com>
10220
10221         * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir): 
10222         Let's not override libgstnet from core for no reason...
10223         (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
10224         Ok, maybe not so quick next time.
10225
10226 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10227
10228         * configure.ac:
10229         * gst-libs/gst/Makefile.am:
10230           moved gst-libs/gst/net to netbuffer through CVS surgery
10231           remove old directory
10232           updating build to accomodate
10233           (#322257)
10234
10235 2005-11-29  Andy Wingo  <wingo@pobox.com>
10236
10237         * pkgconfig/gstreamer-plugins-base.pc.in:
10238         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
10239         * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
10240         (#322257).
10241
10242 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
10243
10244         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
10245         3rd time's the charm. Correct ref-counting for discarded buffers.
10246
10247 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
10248
10249         * gst/playback/gststreamselector.c:
10250         (gst_stream_selector_class_init),
10251         (gst_stream_selector_set_property),
10252         (gst_stream_selector_get_property),
10253         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
10254         Fix ref-counting
10255
10256 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
10257
10258         * gst/subparse/gstsubparse.c: (feed_textbuf):
10259           Don't access already unref'ed buffer.
10260
10261 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
10262
10263         * gst/playback/gststreamselector.c:
10264         (gst_stream_selector_class_init), (gst_stream_selector_init),
10265         (gst_stream_selector_dispose), (gst_stream_selector_set_property),
10266         (gst_stream_selector_get_property),
10267         (gst_stream_selector_get_linked_pad),
10268         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
10269         * gst/playback/gststreamselector.h:
10270         Add the active-pad property for playbin to use shortly. Ignore buffers
10271         from any other pad, returning GST_FLOW_NOT_LINKED
10272
10273 2005-11-29  Julien MOUTTE  <julien@moutte.net>
10274
10275         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
10276         patch from bug #322704 (Alessandro Decina).
10277
10278 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10279
10280         * gst-libs/gst/audio/Makefile.am:
10281           folded audiofilter into the audio library
10282
10283 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10284
10285         * gst/videoscale/gstvideoscale.h:
10286         * gst/videoscale/gstvideoscale.c:
10287           remove unimplemented scale methods
10288
10289 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
10290
10291         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
10292           Don't leak caps.
10293
10294 2005-11-28  Julien MOUTTE  <julien@moutte.net>
10295
10296         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
10297         (gst_ximagesink_setcaps):
10298         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
10299         (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
10300         happens (only visible on ximagesink but bug is in xv too) set_caps was
10301         destroying the internal x[v]image used to memcpy non locally alloced
10302         buffers so that it got renewed on next _chain. The issue is that 
10303         _expose will try to put that image as it reffed it in _put.
10304         Using gst_buffer_unref instead of destroy fixes it !
10305
10306 2005-11-28  Edward Hervey  <edward@fluendo.com>
10307
10308         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
10309         (try_to_link_1), (queue_filled_cb):
10310         Better use of the queues. Start with a small size queue and only increase
10311         the size of the queues when the other queues are empty.
10312
10313 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10314
10315         * gst-libs/gst/video/Makefile.am:
10316           compile in copied-over videofilter into the video library
10317         * gst-libs/gst/video/videosink.h:
10318           rename the header to gstvideosink.h since it's a base GstObject class
10319         * sys/ximage/ximagesink.h:
10320         * sys/xvimage/xvimagesink.h:
10321           use the new header
10322
10323 2005-11-28  Wim Taymans  <wim@fluendo.com>
10324
10325         * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
10326         * gst/playback/gstplaybasebin.h:
10327         Prepare to handle errors betters.
10328
10329         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
10330         Set sinks to PAUSED first before adding and linking them so that
10331         we don't interrupt dataflow.
10332
10333 2005-11-28  Wim Taymans  <wim@fluendo.com>
10334
10335         * gst-libs/gst/audio/TODO:
10336         Updated TODO
10337
10338         * gst-libs/gst/audio/gstaudiosink.c:
10339         (gst_audioringbuffer_open_device),
10340         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
10341         (gst_audioringbuffer_release):
10342         Small cleanups.
10343
10344         * gst-libs/gst/audio/gstbaseaudiosink.c:
10345         (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
10346         (gst_base_audio_sink_change_state):
10347         Slave to the master clock when going to PLAYING and unslave when
10348         going to PAUSED.
10349
10350         * gst-libs/gst/audio/gstringbuffer.c:
10351         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
10352         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
10353         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
10354         (gst_ring_buffer_clear_all), (wait_segment),
10355         (gst_ring_buffer_commit), (gst_ring_buffer_read),
10356         (gst_ring_buffer_advance):
10357         * gst-libs/gst/audio/gstringbuffer.h:
10358         Add some docs and cleanups.
10359
10360 2005-11-28  Julien MOUTTE  <julien@moutte.net>
10361
10362         * sys/xvimage/xvimagesink.c:
10363         (gst_xvimagesink_navigation_send_event): Fix navigation events
10364         coordinates translation with pixel aspect ratios.
10365
10366 2005-11-28  Julien MOUTTE  <julien@moutte.net>
10367
10368         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
10369         Use calculated video geometry from _setcaps instead of buffer
10370         caps to respect pixel aspect ratio. (fixes #322388)
10371
10372 2005-11-28  Julien MOUTTE  <julien@moutte.net>
10373
10374         * docs/libs/tmpl/gstcolorbalance.sgml:
10375         * docs/libs/tmpl/gstmixer.sgml:
10376         * docs/libs/tmpl/gstxoverlay.sgml:
10377         * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
10378         interface.
10379
10380 2005-11-28  Julien MOUTTE  <julien@moutte.net>
10381
10382         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
10383         Refuse to create an XvImage if we can't find the format.
10384
10385 2005-11-28  Edward Hervey  <edward@fluendo.com>
10386
10387         * gst-libs/gst/riff/riff-media.c:
10388         (gst_riff_create_audio_template_caps):
10389         Add ATRAC3 to the list of riff-possible audio caps.
10390         I know we still don't have a plugin for atrac3, but it's saner to output
10391         that than a cryptic mimetype.
10392
10393 2005-11-27  Edward Hervey  <edward@fluendo.com>
10394
10395         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
10396         Don't try to create a zero-sized subbuffer.
10397
10398 2005-11-27  Julien MOUTTE  <julien@moutte.net>
10399
10400         * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
10401         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
10402         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
10403         (gst_ximagesink_expose): Fixed a tricky race.
10404         * sys/ximage/ximagesink.h:
10405         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
10406         (gst_xvimagesink_expose): Fixed a tricky race.
10407         * sys/xvimage/xvimagesink.h:
10408
10409 2005-11-27  Edward Hervey  <edward@fluendo.com>
10410
10411         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
10412         (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
10413         Remove unused properties, and add queues between demuxers and decoders
10414         so that a lot more files can preroll properly.
10415
10416 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
10417
10418         * gst-libs/gst/net/Makefile.am:
10419         * gst-libs/gst/rtp/Makefile.am:
10420         * gst-libs/gst/tag/Makefile.am:
10421           remove silly include
10422         * gst/tags/Makefile.am:
10423         * gst/tags/gsttagediting.c:
10424         * gst/tags/gsttageditingprivate.h:
10425         * gst/tags/tagedit.vcproj:
10426           remove directory, is as good as empty
10427
10428 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
10429
10430         * configure.ac:
10431           added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
10432         * gst-libs/Makefile.am:
10433         * gst-libs/gst/audio/Makefile.am:
10434         * gst-libs/gst/interfaces/Makefile.am:
10435         * gst-libs/gst/net/Makefile.am:
10436         * gst-libs/gst/riff/Makefile.am:
10437         * gst-libs/gst/rtp/Makefile.am:
10438         * gst-libs/gst/tag/Makefile.am:
10439         * gst-libs/gst/video/Makefile.am:
10440           and use them
10441
10442 2005-11-27  Julien MOUTTE  <julien@moutte.net>
10443
10444         * docs/libs/tmpl/gstcolorbalance.sgml:
10445         * docs/libs/tmpl/gstmixer.sgml:
10446         * docs/libs/tmpl/gstxoverlay.sgml:
10447         * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
10448         * sys/ximage/ximagesink.h:
10449         * sys/xvimage/xvimagesink.h: More and more documentation.
10450
10451 2005-11-26  Julien MOUTTE  <julien@moutte.net>
10452
10453         * docs/libs/gst-plugins-base-libs-docs.sgml:
10454         * docs/libs/gst-plugins-base-libs-sections.txt:
10455         * docs/libs/tmpl/gstcolorbalance.sgml:
10456         * docs/libs/tmpl/gstmixer.sgml:
10457         * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
10458         to documentation.
10459
10460 2005-11-26  Julien MOUTTE  <julien@moutte.net>
10461
10462         * docs/plugins/Makefile.am:
10463         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10464         * docs/plugins/gst-plugins-base-plugins-sections.txt:
10465         * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
10466
10467 2005-11-26  Julien MOUTTE  <julien@moutte.net>
10468
10469         * docs/plugins/Makefile.am:
10470         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10471         * docs/plugins/gst-plugins-base-plugins-sections.txt:
10472         * docs/plugins/inspect/plugin-adder.xml:
10473         * docs/plugins/inspect/plugin-alsa.xml:
10474         * docs/plugins/inspect/plugin-audioconvert.xml:
10475         * docs/plugins/inspect/plugin-audiorate.xml:
10476         * docs/plugins/inspect/plugin-audioresample.xml:
10477         * docs/plugins/inspect/plugin-audiotestsrc.xml:
10478         * docs/plugins/inspect/plugin-decodebin.xml:
10479         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
10480         * docs/plugins/inspect/plugin-gnomevfs.xml:
10481         * docs/plugins/inspect/plugin-ogg.xml:
10482         * docs/plugins/inspect/plugin-playbin.xml:
10483         * docs/plugins/inspect/plugin-subparse.xml:
10484         * docs/plugins/inspect/plugin-tcp.xml:
10485         * docs/plugins/inspect/plugin-theora.xml:
10486         * docs/plugins/inspect/plugin-typefindfunctions.xml:
10487         * docs/plugins/inspect/plugin-video4linux.xml:
10488         * docs/plugins/inspect/plugin-videorate.xml:
10489         * docs/plugins/inspect/plugin-videoscale.xml:
10490         * docs/plugins/inspect/plugin-videotestsrc.xml:
10491         * docs/plugins/inspect/plugin-volume.xml:
10492         * docs/plugins/inspect/plugin-vorbis.xml:
10493         * docs/plugins/inspect/plugin-ximagesink.xml:
10494         * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
10495         * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
10496
10497 2005-11-26  Edward Hervey  <edward@fluendo.com>
10498
10499         * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
10500         Properly return GstFlowReturn from gst_pad_push in chain functions.
10501
10502 2005-11-25  Michael Smith  <msmith@fluendo.com>
10503
10504         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
10505         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
10506         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
10507         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
10508           Handle various conditions better when we don't understand a stream.
10509           Removes a heap of CRITICALs on ogg streams containing unknown data.
10510
10511 2005-11-24  Andy Wingo  <wingo@pobox.com>
10512
10513         * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
10514         Be threadsafe.
10515
10516 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10517
10518         * configure.ac: back to HEAD
10519
10520 === release 0.9.6 ===
10521
10522 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
10523
10524         * configure.ac:
10525           releasing 0.9.6, "White Eight"
10526
10527 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10528
10529         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
10530         * docs/plugins/inspect/plugin-sine.xml:
10531           remove sinesrc some more
10532
10533 2005-11-23  Wim Taymans  <wim@fluendo.com>
10534
10535         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
10536         If we are reading too slowly, jump forward in the ringbuffer
10537         instead of blocking.
10538
10539 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
10540
10541         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
10542         (gst_visual_chain):
10543         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
10544         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
10545         (gst_videorate_chain):
10546         * gst/videotestsrc/gstvideotestsrc.c:
10547         (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
10548         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
10549         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
10550         (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
10551         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10552         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10553           Updates for API changes
10554
10555 2005-11-23  Wim Taymans  <wim@fluendo.com>
10556
10557         * gst-libs/gst/audio/gstbaseaudiosink.c:
10558         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
10559         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10560         Fix for calibration API change.
10561
10562 2005-11-23  Michael Smith <msmith@fluendo.com>
10563
10564         * gst-libs/gst/audio/multichannel.c:
10565         (gst_audio_get_channel_positions),
10566         (gst_audio_set_channel_positions),
10567         (gst_audio_set_structure_channel_positions_list),
10568         (gst_audio_fixate_channel_positions):
10569           Use gst_value_array_*() functions on value arrays, not
10570           gst_value_list_*().
10571
10572 2005-11-23  Edward Hervey  <edward@fluendo.com>
10573
10574         * autogen.sh:
10575         eheh, sinesrc is gone. Replacing sample srcfile by existing one.
10576         Fixes autogen
10577
10578 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10579
10580         * check/Makefile.am:
10581         * check/elements/videotestsrc.c: (setup_videotestsrc),
10582         (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
10583         (main):
10584           add a test for videotestsrc
10585
10586 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10587
10588         * gst/sine/.cvsignore:
10589         * gst/sine/Makefile.am:
10590         * gst/sine/gstsinesrc.c:
10591         * gst/sine/gstsinesrc.h:
10592         * gst/sine/sinesrc.vcproj:
10593           and remove sinesrc from the repository.  Closes #321446
10594
10595 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10596
10597         * configure.ac:
10598         * gst-plugins-base.spec.in:
10599           remove sinesrc from the build
10600
10601 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10602
10603         * check/Makefile.am:
10604         * check/elements/audiotestsrc.c: (setup_audiotestsrc),
10605         (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
10606         (main):
10607           add a test for audiotestsrc, testing all waves.  Even seems
10608           leak-free at first glance, nice job Stefan
10609
10610 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
10611
10612         * po/af.po:
10613         * po/az.po:
10614         * po/cs.po:
10615         * po/en_GB.po:
10616         * po/hu.po:
10617         * po/it.po:
10618         * po/nb.po:
10619         * po/nl.po:
10620         * po/or.po:
10621         * po/sq.po:
10622         * po/sr.po:
10623         * po/sv.po:
10624         * po/uk.po:
10625         * po/vi.po:
10626           Translation string updates
10627
10628         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
10629         (gst_v4lsrc_set_caps):
10630         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10631         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10632         * sys/v4l/v4lsrc_calls.h:
10633           Improve v4lsrc, by making it work again.
10634
10635 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
10636
10637         * ext/libvisual/visual.c: (gst_visual_chain):
10638           Fix the fps calculations.
10639
10640         * gst/ffmpegcolorspace/avcodec.h:
10641           Move structure element for clarity
10642
10643         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
10644         * gst-libs/gst/interfaces/tunernorm.h:
10645         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
10646         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
10647         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
10648         (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
10649         (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
10650         (gst_v4lmjpegsrc_getcaps):
10651         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
10652         (gst_v4lsrc_set_caps):
10653         * sys/v4l/gstv4lsrc.h:
10654         * sys/v4l/v4l_calls.c: (gst_v4l_open):
10655         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10656         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10657         * sys/v4l/v4lsrc_calls.h:
10658           Fractional framerates...
10659
10660 2005-11-22  Wim Taymans  <wim@fluendo.com>
10661
10662         * gst-libs/gst/audio/gstbaseaudiosink.c:
10663         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
10664         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10665         And we provide a clock by default, of course...
10666
10667 2005-11-22  Wim Taymans  <wim@fluendo.com>
10668
10669         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
10670         This clock can be slaved to a master clock now.
10671
10672         * gst-libs/gst/audio/gstbaseaudiosink.c:
10673         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
10674         (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
10675         (gst_base_audio_sink_set_clock),
10676         (gst_base_audio_sink_set_property),
10677         (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
10678         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10679         * gst-libs/gst/audio/gstbaseaudiosink.h:
10680         Handle slaving the internal clock to the clock selected in the
10681         pipeline.
10682         Add property to make the basesink not provide a clock.
10683
10684         * gst-libs/gst/rtp/gstbasertpdepayload.c:
10685         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
10686         (gst_base_rtp_depayload_wait):
10687         * gst-libs/gst/rtp/gstbasertpdepayload.h:
10688         We can use the clock in GstElement, no need to store it ourselves.
10689
10690 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
10691
10692         * docs/libs/tmpl/gstaudio.sgml:
10693           update
10694         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
10695         (gst_paranoia_endian_get_type):
10696         * ext/theora/theoraenc.c: (gst_border_mode_get_type):
10697         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
10698         * gst/audiotestsrc/gstaudiotestsrc.c:
10699         (gst_audiostestsrc_wave_get_type):
10700         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
10701         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
10702         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
10703         (gst_sync_method_get_type), (gst_unit_type_get_type),
10704         (gst_client_status_get_type), (gst_multifdsink_class_init),
10705         (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
10706         (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
10707         (gst_multifdsink_get_property):
10708         * gst/tcp/gstmultifdsink.h:
10709         * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
10710         * gst/videotestsrc/gstvideotestsrc.c:
10711         (gst_videotestsrc_pattern_get_type):
10712           remove deprecated properties
10713           fix up enums to correctly have short lowercase dashed nicks
10714
10715 2005-11-22  Michael Smith <msmith@fluendo.com>
10716
10717         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
10718         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
10719           Add underscore.
10720
10721 2005-11-22  Michael Smith <msmith@fluendo.com>
10722
10723         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
10724         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
10725           Use utility method for scaling clocktime for fractional framerates.
10726
10727 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
10728
10729         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
10730         (gst_visual_chain):
10731         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
10732         * ext/theora/theoradec.c: (theora_handle_type_packet):
10733         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
10734         (theora_enc_chain):
10735         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
10736         * gst-libs/gst/video/video.c: (gst_video_frame_rate):
10737         * gst-libs/gst/video/video.h:
10738         * gst/ffmpegcolorspace/avcodec.h:
10739         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10740         (gst_ffmpeg_caps_to_pixfmt):
10741         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10742         (gst_ffmpegcsp_set_caps):
10743         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
10744         (gst_videorate_setcaps), (gst_videorate_blank_data),
10745         (gst_videorate_chain):
10746         * gst/videotestsrc/gstvideotestsrc.c:
10747         (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
10748         (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
10749         (gst_videotestsrc_event), (gst_videotestsrc_create):
10750         * gst/videotestsrc/gstvideotestsrc.h:
10751         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
10752         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
10753         (gst_ximagesink_get_times), (gst_ximagesink_init):
10754         * sys/ximage/ximagesink.h:
10755         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
10756         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
10757         (gst_xvimagesink_get_times), (gst_xvimagesink_init):
10758         * sys/xvimage/xvimagesink.h:
10759           Convert elements to use fractions for their framerate.
10760           V4L elements to come later tonight.
10761
10762 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
10763
10764         * gst-libs/gst/audio/audio.c:
10765         * gst-libs/gst/audio/audio.h:
10766           remove some deprecated functions
10767
10768 2005-11-22  Andy Wingo  <wingo@pobox.com>
10769
10770         * Update for gst_tag_setter API changes.
10771
10772 2005-11-22  Andy Wingo  <wingo@pobox.com>
10773
10774         * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
10775         (gst_ogg_demux_perform_seek):
10776         * ext/theora/theoradec.c (theora_dec_sink_event):
10777         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
10778         update-funcnames.
10779
10780 2005-11-22  Wim Taymans  <wim@fluendo.com>
10781
10782         * examples/seeking/seek.c: (main):
10783         Give higher priority to bus signals than the gtk events
10784         to fix a race condition in the segment looping.
10785
10786 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
10787
10788         * ext/theora/Makefile.am:
10789         * ext/vorbis/Makefile.am:
10790         * gst-libs/gst/tag/Makefile.am:
10791         * gst-plugins-base.spec.in:
10792           Rename libgsttagedit to libgsttag (#322117).
10793
10794 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
10795
10796         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
10797         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
10798           Call gst_x_overlay_prepare_xwindow_id() to give applications
10799           a final chance to set their own xwindow id before the video
10800           sink creates its own window.
10801
10802 2005-11-22  Julien MOUTTE  <julien@moutte.net>
10803
10804         * sys/xvimage/xvimagesink.c:
10805         (gst_xvimagesink_navigation_send_event): Handle navigation
10806         events correcly with borders if applicable.
10807
10808 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
10809
10810         Patch by: Luca Ognibene
10811
10812         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10813         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
10814         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10815         (gst_ffmpegcsp_caps_remove_format_info):
10816         * gst/ffmpegcolorspace/imgconvert.c:
10817         * gst/ffmpegcolorspace/imgconvert_template.h:
10818           Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
10819           #318353); use gst_structure_has_name().
10820
10821 2005-11-22  Julien MOUTTE  <julien@moutte.net>
10822
10823         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
10824         (gst_ximagesink_class_init): Add debug macros on functions.
10825         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
10826         (gst_xvimagesink_xwindow_draw_borders),
10827         (gst_xvimagesink_xvimage_put),
10828         (gst_xvimagesink_xwindow_update_geometry),
10829         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
10830         (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
10831         (gst_xvimagesink_xcontext_clear),
10832         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
10833         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
10834         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
10835         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
10836         (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
10837         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
10838         * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
10839         expose while being PAUSED, out of data flow navigation events, etc..
10840
10841 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
10842
10843         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
10844         * gst-libs/gst/audio/audio.h:
10845           fix prototype - wondering why the test worked regardless
10846
10847 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
10848
10849         * check/Makefile.am:
10850         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
10851         * gst-libs/gst/audio/audio.h:
10852           add a method that returns a proper GstClockTime
10853
10854 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
10855
10856         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
10857         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
10858         * gst-libs/gst/interfaces/xoverlay.h:
10859           Remove everything having to do with the desired size; add 
10860           gst_x_overlay_prepare_xwindow_id() function; remove the
10861           'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
10862           post a message on the bus instead (#321816).
10863
10864         * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
10865         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
10866         (gst_xvimagesink_xoverlay_init):
10867           Remove desired size stuff (#321816).
10868
10869 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
10870
10871         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
10872         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
10873         (mpeg_video_type_find), (mpeg_video_stream_type_find):
10874           Terminate vararg functions with NULL instead of 0 to 
10875           make gcc4 happy.
10876
10877 2005-11-21  Andy Wingo  <wingo@pobox.com>
10878
10879         patch by: Sebastien Cote <sebas642@yahoo.ca>
10880         
10881         * gst-libs/gst/rtp/gstrtpbuffer.h: 
10882         * gst-libs/gst/rtp/gstrtpbuffer.c
10883         (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
10884
10885 2005-11-21  Andy Wingo  <wingo@pobox.com>
10886
10887         * gst/playback/gstplaybin.c (gen_audio_element) 
10888         (gen_video_element): Use the new MISSING_PLUGIN core error
10889         category. Closes #320060.
10890
10891         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): 
10892         * gst/videorate/gstvideorate.c (gst_videorate_event):
10893         * ext/theora/theoradec.c (theora_dec_sink_event): 
10894         * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
10895         stream lock.
10896
10897         * gst/subparse/gstsubparse.c (gst_subparse_src_event):
10898         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
10899         stream lock changes.
10900
10901 2005-11-21  Wim Taymans  <wim@fluendo.com>
10902
10903         * gst-libs/gst/audio/gstbaseaudiosink.c:
10904         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
10905         (gst_base_audio_sink_provide_clock),
10906         (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
10907         (gst_base_audio_sink_change_state):
10908         * gst/audioresample/gstaudioresample.c:
10909         Segment update fix.
10910
10911 2005-11-21  Andy Wingo  <wingo@pobox.com>
10912
10913         * *.h:
10914         * *.c: Ran scripts/update-macros. Oh yes.
10915
10916 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
10917
10918         * sys/ximage/Makefile.am:
10919         * sys/ximage/ximage.c:
10920           Rename ximage plugin to ximagesink (#321426) (Don't forget to
10921           remove your old libgstximage.* manually if necessary).
10922
10923 2005-11-21  Michael Smith <msmith@fluendo.com>
10924
10925         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
10926           Minimal fix for bug #320200: set the min/max bitrate in the correct
10927           units. A better fix would be to upgrade to the RATEMANAGE2
10928           interface, rather than using the deprecated interface used here, but
10929           that would require an update in our libvorbis dependency (to 1.1),
10930           which is probably undesirable.
10931
10932 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
10933
10934         * ext/libvisual/visual.c: (get_buffer):
10935         * gst-libs/gst/audio/gstbaseaudiosrc.c:
10936         (gst_base_audio_src_fixate):
10937         * gst/audioconvert/gstaudioconvert.c:
10938         (gst_audio_convert_fixate_caps):
10939         * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
10940         * gst/audiotestsrc/gstaudiotestsrc.c:
10941         (gst_audiotestsrc_src_fixate):
10942         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
10943         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
10944         * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
10945         * gst/videotestsrc/gstvideotestsrc.c:
10946         (gst_videotestsrc_src_fixate):
10947         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
10948         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
10949           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
10950           (#322027)
10951
10952
10953 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
10954
10955         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
10956         (gst_riff_create_iavs_caps):
10957         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
10958         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
10959         (gst_riff_parse_info):
10960         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
10961         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
10962         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
10963           Fixes for GST_FOURCC_FORMAT API change.
10964
10965 2005-11-21  Andy Wingo  <wingo@pobox.com>
10966
10967         patch by: Alessandro Dessina <alessandro nnva org>
10968
10969         * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
10970         * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
10971         (gst_ogg_parse_chain):
10972         * ext/theora/theoraenc.c (theora_set_header_on_caps):
10973         * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
10974         * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
10975         gst_value_list calls on arrays. Fixes #321962.
10976
10977 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
10978
10979         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
10980         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
10981         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
10982         * gst/adder/gstadder.c: (gst_adder_init),
10983         (gst_adder_request_new_pad), (gst_adder_collected),
10984         (gst_adder_change_state):
10985           Update for gst_collectpads_foo() to gst_collect_pads_foo()
10986           API change.
10987
10988 2005-11-21  Michael Smith <msmith@fluendo.com>
10989
10990         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
10991         (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
10992           Properly handle pad_push return values.
10993
10994 2005-11-20  Jan Schmidt  <thaytan@mad.scientist.com>
10995
10996         * gst-libs/gst/tag/Makefile.am:
10997         * gst-libs/gst/tag/gstvorbistag.c:
10998         (gst_tag_list_to_vorbiscomment_buffer):
10999           Remove obsolete vorbistag element and debug category.
11000
11001         * gst/playback/gstplaybasebin.c: (check_queue):
11002           Don't divide by 0 when queue-threshold is 0.
11003
11004         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
11005           Don't modify an existing pixel-aspect-ratio if we fail to read
11006           a new one.
11007
11008 2005-11-20  Wim Taymans  <wim@fluendo.com>
11009
11010         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
11011         (gst_vorbisenc_push_packet):
11012         GST_PAD_IS_USABLE is gone, use the return value of
11013         the push or pad_alloc_buffer instead.
11014
11015 2005-11-18  Julien MOUTTE  <julien@moutte.net>
11016
11017         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
11018         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
11019         (gst_ximagesink_ximage_destroy),
11020         (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
11021         (gst_ximagesink_xwindow_new),
11022         (gst_ximagesink_xwindow_update_geometry),
11023         (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
11024         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
11025         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
11026         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
11027         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
11028         (gst_ximagesink_navigation_send_event),
11029         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
11030         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
11031         (gst_ximagesink_finalize), (gst_ximagesink_init),
11032         (gst_ximagesink_class_init):
11033         * sys/ximage/ximagesink.h: Refactoring of ximagesink.
11034         This new version brings correct software scaling, non flickering
11035         window while resizing, pixel aspect ratio handling, usage of
11036         hardware buffer pools, out of data flow event thread for 
11037         navigation and handling of expose events even when being PAUSED,
11038         a new property to keep video aspect ratio when resizing, etc...
11039
11040 2005-11-18  Julien MOUTTE  <julien@moutte.net>
11041
11042         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
11043         (gst_videoscale_fixate_caps): Introduce back caps fixate with
11044         handling of PAR.
11045
11046 2005-11-18  Edward Hervey  <bilboed@dvdsrc.fluendo.com>
11047
11048         * gst/playback/gstdecodebin.c: (gst_decode_bin_init): 
11049         Unsetting IS_SINK flag from the fakesink, so decodebin
11050         never behaves as a sink.
11051
11052 2005-11-17  Wim Taymans  <wim@fluendo.com>
11053
11054         * gst-libs/gst/audio/gstbaseaudiosrc.c:
11055         (gst_base_audio_src_change_state):
11056         Fix the audiosrc base class again, we did not unflush.
11057
11058 2005-11-17  Julien MOUTTE  <julien@moutte.net>
11059
11060         * examples/seeking/seek.c: (make_dv_pipeline),
11061         (make_vorbis_theora_pipeline), (make_avi_pipeline),
11062         (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
11063         to ogg/vorbis/theora pipeline.
11064
11065 2005-11-17  Wim Taymans  <wim@fluendo.com>
11066
11067         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
11068         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
11069         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
11070         Fix EOS on multiple streams.
11071         More debugging.
11072
11073 2005-11-16  Wim Taymans  <wim@fluendo.com>
11074
11075         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
11076         (gst_ogg_demux_perform_seek):
11077         Segment done must include stream time.
11078
11079         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
11080         (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
11081         (gst_ogg_mux_change_state):
11082         Fix ogg muxer again.
11083
11084 2005-11-16  Wim Taymans  <wim@fluendo.com>
11085
11086         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
11087         Fix compile again.
11088
11089 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
11090
11091         * ext/libvisual/visual.c: (gst_visual_init):
11092         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
11093         * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
11094         (gst_ogg_parse_chain):
11095         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
11096         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
11097         * ext/theora/theoradec.c: (gst_theora_dec_init):
11098         * ext/theora/theoraenc.c: (gst_theora_enc_init):
11099         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
11100         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
11101         * gst/adder/gstadder.c: (gst_adder_class_init),
11102         (gst_adder_dispose):
11103         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
11104         * gst/subparse/gstsubparse.c: (gst_subparse_init):
11105         * gst/videorate/gstvideorate.c: (gst_videorate_init):
11106           Fix a whole set of pad template leaks
11107
11108 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
11109
11110         * check/generic/states.c: (GST_START_TEST):
11111           fix the test so that it only checks for elements that are part of
11112           this source module
11113
11114 2005-11-16  Michael Smith <msmith@fluendo.com>
11115
11116         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
11117         (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
11118         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11119         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11120         (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
11121         (gst_ogg_mux_change_state):
11122           Fix leaking collectpads.
11123
11124 2005-11-16  Edward Hervey  <edward@fluendo.com>
11125
11126         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
11127         (gst_videorate_event), (gst_videorate_chain):
11128         Handle segment seeks
11129
11130 2005-11-16  Wim Taymans  <wim@fluendo.com>
11131
11132         * gst-libs/gst/audio/gstbaseaudiosink.c:
11133         (gst_base_audio_sink_provide_clock),
11134         (gst_base_audio_sink_change_state):
11135         Set ringbuffer to non-flushing when going to PAUSED, set to
11136         flushing again when going to READY.
11137
11138         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
11139         (gst_ring_buffer_stop):
11140         Start in flushing mode by default.
11141         Don't set flushing in the _stop method, let the app call
11142         this explicitly.
11143
11144 2005-11-16  Julien MOUTTE  <julien@moutte.net>
11145
11146         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
11147         * gst-libs/gst/video/videosink.h: Add helper function needed
11148         for video sinks.
11149
11150 2005-11-16  Tim-Philipp Müller  <tim at centricular dot net>
11151
11152         * gst/videoscale/gstvideoscale.c:
11153         (gst_videoscale_handle_src_event):
11154           Don't leak reference to pad parent.
11155
11156 2005-11-16  Wim Taymans  <wim@fluendo.com>
11157
11158         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
11159         Set ringbuffer to flushing when stopping so that we don't
11160         block on wait_segment anymore and livelock.
11161
11162 2005-11-16  Wim Taymans  <wim@fluendo.com>
11163
11164         * examples/seeking/seek.c: (send_event), (do_seek),
11165         (loop_toggle_cb), (segment_done), (main):
11166         Added looping checkbox.
11167
11168 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
11169
11170         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
11171         (gst_ogg_demux_init):
11172         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
11173         (gst_vorbis_dec_init):
11174           revert unrefs, they don't pass make check
11175
11176 2005-11-15  Johan Dahlin  <johan@gnome.org>
11177
11178         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
11179         (gst_ogg_demux_init), (gst_ogg_demux_finalize):
11180         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
11181         (gst_vorbis_dec_init):
11182         Fix pad template leaks. 
11183
11184 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
11185
11186         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
11187           Make state change function thread safe.
11188
11189 2005-11-15  Edward Hervey  <edward@fluendo.com>
11190
11191         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
11192         (gst_ogg_demux_class_init):
11193         Implement GstElement::send_event, so we can send seek events
11194         in GST_STATE_READY
11195
11196 2005-11-14  Julien MOUTTE  <julien@moutte.net>
11197
11198         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
11199         Discovered how to take away flickering while resizing the
11200         window. Please don't put that in ximagesink, refactoring in
11201         progress.
11202
11203 2005-11-14  Michael Smith <msmith@fluendo.com>
11204
11205         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
11206         (gst_multifdsink_render):
11207           Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
11208
11209 2005-11-14  Tim-Philipp Müller  <tim at centricular dot net>
11210
11211         * gst/playback/gstplaybin.c: (gen_audio_element):
11212           Use autoaudiosink, it tends to be more widely available than
11213           autoaudiiosink.
11214           
11215 2005-11-14  Andy Wingo  <wingo@pobox.com>
11216
11217         * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
11218         as well if it is available. Fixes #316442.
11219
11220 2005-11-14  Michael Smith <msmith@fluendo.com>
11221
11222         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
11223         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
11224         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11225         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11226         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
11227         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
11228         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
11229         (gst_vorbisenc_change_state):
11230           Fix a small memory leak in vorbisenc.
11231           Fix large memory leaks in oggmux, also fix lots of state change
11232           bugs in oggmux.
11233
11234 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
11235
11236         * gst/videotestsrc/gstvideotestsrc.c:
11237         (gst_videotestsrc_class_init), (gst_videotestsrc_init),
11238         (gst_videotestsrc_src_fixate):
11239           move fixation to a fixate function
11240           remove negotiate function, basesrc's is good enough
11241           fixes a bug for check when using the element alone
11242
11243 2005-11-13  Edward Hervey  <edward@fluendo.com>
11244
11245         * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
11246         (key_toggle_cb), (main):
11247         Added checkboxes for adding/removing the accurate and key_unit seek
11248         flags.
11249
11250 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
11251
11252         * configure.ac: back to HEAD
11253
11254 === release 0.9.5 ===
11255
11256 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
11257
11258         * configure.ac:
11259           releasing 0.9.5, "No No Kia"
11260
11261 2005-11-11  Edward Hervey  <edward@fluendo.com>
11262
11263         * examples/seeking/seek.c: (make_parselaunch_pipeline):
11264         Added parse-launch syntax seeking mode for the seeking example.
11265         This should help stress-test even more cases.
11266         Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
11267
11268 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
11269
11270         * sys/xvimage/xvimagesink.c:
11271         (gst_xvimagesink_navigation_send_event):
11272           Check whether peer pad exists before sending navigation events
11273           to it.
11274
11275 2005-11-11  Michael Smith <msmith@fluendo.com>
11276
11277         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
11278         (gst_vorbisenc_buffer_from_packet):
11279         * ext/vorbis/vorbisenc.h:
11280           Set duration on encoded buffers. This allows oggmux's
11281           max_page_delay parameter to actually work.
11282
11283 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
11284
11285         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11286         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
11287         (gst_ffmpegcsp_avpicture_fill):
11288         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11289         (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
11290           Make palettes work again (see #132341). Use our own macros
11291           for rounding up.
11292
11293 2005-11-10  Andy Wingo  <wingo@pobox.com>
11294
11295         * gst/playback/gstplaybasebin.c (prepare_output): Fix format
11296         string doober.
11297
11298 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
11299
11300         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11301         (gst_ffmpegcsp_transform_caps):
11302           Prefer passthrough in transform_caps
11303
11304 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
11305
11306         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
11307           check for ALSA errors properly, instead of relying on ALSA's
11308           error strings to serve to the user.
11309
11310 2005-11-10  Wim Taymans  <wim@fluendo.com>
11311
11312         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
11313         (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
11314         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
11315         Modernise the seek code.
11316
11317 2005-11-10  Michael Smith <msmith@fluendo.com>
11318         
11319         * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
11320         (setup_substreams), (set_active_source):
11321           Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
11322           trying to go to NULL if we failed to read a file.
11323
11324 2005-11-10  Wim Taymans  <wim@fluendo.com>
11325
11326         * gst/audiotestsrc/gstaudiotestsrc.c:
11327         (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
11328         (gst_audiotestsrc_create):
11329         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
11330         (gst_sinesrc_get_times), (gst_sinesrc_create):
11331         * gst/videotestsrc/gstvideotestsrc.c:
11332         (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
11333         (gst_videotestsrc_create):
11334         The base class can now sync for us.
11335
11336 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
11337
11338         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
11339           a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
11340           name=source autoprobe=false autoprobe-fps=false copy-mode=1
11341           device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
11342           format=(fourcc)I420" ! xvimagesink
11343
11344 2005-11-10  Tim-Philipp Müller  <tim at centricular dot net>
11345
11346         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
11347         (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
11348         (gst_sinesrc_newsegment):
11349           Send newsegment event in TIME format, set duration if
11350           num-buffers is set, fix duration querying.
11351
11352 2005-11-10  Michael Smith <msmith@fluendo.com>
11353
11354         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
11355         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11356         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11357         (gst_ogg_mux_collected):
11358          Fix EOS handling, partially. Now forwarding an EOS event once we have
11359          EOS on all pads works correctly. However, we still don't properly set
11360          EOS on the actual ogg stream pages.
11361
11362 2005-11-09  Tim-Philipp Müller  <tim at centricular dot net>
11363
11364         * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
11365           Set elements to NULL state before disposing of them.
11366
11367 2005-11-08  Sebastien Cote  <sebas642 at yahoo dot ca>
11368
11369         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
11370
11371         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11372         (gst_base_rtp_depayload_init),
11373         (gst_base_rtp_depayload_set_gst_timestamp):
11374         * gst-libs/gst/rtp/gstbasertpdepayload.h:
11375           We need to send a newsegment event for each instance, not
11376           just for the first instance of this class (get rid of
11377           static variable in function). (#321011).
11378           
11379 2005-11-08  Michael Smith <msmith@fluendo.com>
11380
11381         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
11382         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
11383         (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
11384         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
11385           Forward port rewrite of muxing strategy to 0.9 version of oggmux.
11386           This makes us mux things correctly according to the ogg muxing
11387           rules. Still not handling EOS correctly right now, though.
11388
11389 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
11390
11391         * gst/audioconvert/gstaudioconvert.c:
11392           Fix typo in docs. 
11393
11394 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
11395
11396         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
11397         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
11398           Initialise segment_stop to GST_CLOCK_TIME_NONE when
11399           creating a new chain; should fix live streaming. Also
11400           add more debug output and fix a typo.
11401
11402 2005-11-08  Brian Cameron  <brian dot cameron at sun dot com>
11403
11404         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
11405
11406         * gst/volume/gstvolume.c: (volume_set_caps):
11407           Fix compilation on Solaris with Forte. (#320923)
11408
11409 2005-11-08  Wim Taymans  <wim@fluendo.com>
11410
11411         * gst-libs/gst/audio/gstbaseaudiosink.c:
11412         (gst_base_audio_sink_render):
11413         No need to do a typecheck.
11414
11415 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
11416
11417         * ext/alsa/gstalsa.h:
11418           We register a debug category, so let's use it.
11419
11420 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
11421
11422         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11423         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
11424         Fixed a small problem.
11425
11426 2005-11-04  Wim Taymans  <wim@fluendo.com>
11427
11428         * examples/seeking/Makefile.am:
11429         * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
11430         (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
11431         (make_playerbin_pipeline), (format_value), (update_scale),
11432         (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
11433         (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
11434         (print_usage), (main):
11435         Added app for playback speed testing.
11436
11437         * examples/seeking/seek.c: (dynamic_link),
11438         (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
11439         (make_mpeg_pipeline), (do_seek), (set_update_scale),
11440         (message_received), (main):
11441         Updated seek example.
11442
11443 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
11444
11445         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11446         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
11447         (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
11448         (gst_base_rtp_depayload_set_clock):
11449         * gst-libs/gst/rtp/gstbasertpdepayload.h:
11450         Don't sleep on the bench (system clock) when you have a nice 
11451         comfortable bed (Gstreamer clock) to sleep on.
11452
11453 2005-11-03  Wim Taymans  <wim@fluendo.com>
11454
11455         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11456         (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
11457         (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
11458         Handle the case where a pad_block failed.
11459
11460 2005-11-02  Sebastien Cote  <sebas642@yahoo.ca> 
11461
11462         reviewed by: Zeeshan Ali  <zeenix@gmail.com>
11463
11464         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11465         (gst_base_rtp_depayload_add_to_queue),
11466         (gst_base_rtp_depayload_push),
11467         (gst_base_rtp_depayload_set_gst_timestamp),
11468         (gst_base_rtp_depayload_queue_release):
11469           Fixes some bugs in the depayloader's queuing/de-queueing code.
11470
11471 2005-10-31  Michael Smith <msmith@fluendo.com>
11472
11473         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
11474         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
11475         (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
11476           Patch from Alessandro Decina <alessandro@nnva.org>.
11477           Make oggdemux only find the final time in a chain, not per-pad,
11478           since the per-pad information can be very expensive to locate, and
11479           it isn't used anywhere. This makes reading a file containing
11480           OggSkeleton reasonably fast.
11481           Also, make chain finding work when there are logical bitstreams that
11482           can't be decoded. Fixes #319110.
11483
11484 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
11485
11486         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11487         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
11488         (gst_base_rtp_depayload_chain),
11489         (gst_base_rtp_depayload_add_to_queue),
11490         (gst_base_rtp_depayload_push),
11491         (gst_base_rtp_depayload_set_gst_timestamp),
11492         (gst_base_rtp_depayload_queue_release),
11493         (gst_base_rtp_depayload_start_thread),
11494         (gst_base_rtp_depayload_set_property),
11495         (gst_base_rtp_depayload_get_property):
11496         * gst-libs/gst/rtp/gstbasertpdepayload.h:
11497         Some random fixes, to fullfill the desires of thomas.
11498
11499 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
11500
11501         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11502         (gst_base_rtp_depayload_add_to_queue),
11503         (gst_base_rtp_depayload_push):
11504         Fixed the queueing algorithm.
11505
11506 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
11507
11508         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11509         (gst_base_rtp_depayload_push):
11510         A small fix
11511
11512 2005-10-31  Wim Taymans  <wim@fluendo.com>
11513
11514         * gst-libs/gst/audio/gstringbuffer.h:
11515         Don't break ABI.
11516
11517         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11518         (gst_ffmpeg_caps_to_pixfmt):
11519         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11520         (gst_ffmpegcsp_set_caps):
11521         Some more comments.
11522         Handle missing required caps fields better.
11523
11524 2005-10-31  Wim Taymans  <wim@fluendo.com>
11525
11526         * gst-libs/gst/audio/gstbaseaudiosink.c:
11527         (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
11528         (gst_base_audio_sink_render):
11529         * gst-libs/gst/audio/gstringbuffer.c:
11530         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
11531         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
11532         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
11533         (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
11534         (gst_ring_buffer_read):
11535         * gst-libs/gst/audio/gstringbuffer.h:
11536         Add flushing mode to the ringbuffer so that it in all cases does
11537         not try to handle more audio. This makes sure it does not try to
11538         block anymore when flushing and fixes a livelock.
11539
11540 2005-10-29  Tim-Philipp Müller  <tim at centricular dot net>
11541
11542         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
11543         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
11544         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
11545           Explicitly check for -1 values before doing a conversion
11546           and always map them to -1. (#315545)
11547
11548 2005-10-28  Thomas Vander Stichele  <thomas at apestaart dot org>
11549
11550         * gst/playback/gstplaybin.c: (gen_video_element):
11551           first try autovideosink, then xvimagesink, then error out
11552         * po/POTFILES.in:
11553           add translatable file
11554         * po/af.po:
11555         * po/az.po:
11556         * po/cs.po:
11557         * po/en_GB.po:
11558         * po/hu.po:
11559         * po/it.po:
11560         * po/nb.po:
11561         * po/nl.po:
11562         * po/or.po:
11563         * po/sq.po:
11564         * po/sr.po:
11565         * po/sv.po:
11566         * po/uk.po:
11567         * po/vi.po:
11568           update translations
11569
11570 2005-10-27  Philippe Khalaf <burger at speedy dot org> 
11571
11572         * gst-libs/gst/rtp/gstbasedepayload.c:
11573         * gst-libs/gst/rtp/gstbasedepayload.h:
11574           Minor cleanups
11575
11576 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
11577
11578         * gst/playback/.cvsignore:
11579         * gst/playback/decodetest.c:
11580         * gst/playback/test3.c:
11581           Port these two tests as well.
11582
11583 2005-10-27  Wim Taymans  <wim@fluendo.com>
11584
11585         * ext/theora/theoradec.c: (theora_dec_src_query),
11586         (theora_dec_sink_event):
11587         * ext/theora/theoraenc.c: (theora_enc_sink_event),
11588         (theora_enc_change_state):
11589         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
11590         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
11591         Take proper locks when handling events.
11592
11593 2005-10-27  Wim Taymans  <wim@fluendo.com>
11594
11595         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
11596         (gst_adder_change_state):
11597         Fix timestamps and fix deadlock when stopping the collectpads.
11598
11599 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
11600
11601         * gst-libs/gst/rtp/gstrtpbuffer.h:
11602         Declaring the payload types as strings too so that they can be used
11603         in the padtemplate inialization.
11604
11605 2005-10-26  Andre Magalhaes  <andrunko@gmail.com>
11606
11607         reviewed by: Zeeshan Ali   <zeenix@gmail.com>
11608
11609         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11610         (gst_base_rtp_depayload_class_init):
11611         Fixes a small but nasty bug. The derived elements no longer segfaults
11612         on finalization.
11613
11614 2005-10-26  Michael Smith <msmith@fluendo.com>
11615
11616         * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
11617           When clearing an audioconvert context, set tmpbufsize to zero, so
11618           we'll allocate it again later if required.
11619           This fixes audioconvert re-negotiating formats, which previously
11620           segfaulted with a NULL destination buffer.
11621
11622 2005-10-26  Zeeshan Ali <zeenix@gmail.com>
11623
11624         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11625         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
11626         (gst_base_rtp_depayload_set_gst_timestamp),
11627         (gst_base_rtp_depayload_queue_release):
11628         Fixed a smalll memleak.
11629
11630 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
11631         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11632         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
11633         (gst_base_rtp_depayload_finalize),
11634         (gst_base_rtp_depayload_setcaps),
11635         (gst_base_rtp_depayload_add_to_queue),
11636         (gst_base_rtp_depayload_push),
11637         (gst_base_rtp_depayload_set_gst_timestamp),
11638         (gst_base_rtp_depayload_queue_release),
11639         (gst_base_rtp_depayload_thread),
11640         (gst_base_rtp_depayload_change_state):
11641         * gst-libs/gst/rtp/gstbasertpdepayload.h:
11642         Changed the C++ comments to C comments
11643
11644 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
11645
11646         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
11647         * gst/tcp/gsttcpclientsrc.h:
11648         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
11649         * gst/tcp/gsttcpserversrc.h:
11650           Remove unused 'curoffset' structure member.
11651
11652 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
11653
11654         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11655         (gst_base_rtp_depayload_base_init),
11656         (gst_base_rtp_depayload_finalize):
11657         * gst-libs/gst/rtp/gstbasertpdepayload.h:
11658         * gst-libs/gst/rtp/gstbasertppayload.h:
11659           The pad-template on the sinkpad should be set by the derived classes.
11660           Also added some useful macros.
11661
11662 2005-10-24  Wim Taymans  <wim@fluendo.com>
11663
11664         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
11665         Correctly flush decoder samples even if we could not
11666         copy them to an output buffer. Fixes #319618.
11667
11668 2005-10-24  Julien MOUTTE  <julien@moutte.net>
11669
11670         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
11671         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
11672         the caps against our xcontext caps.
11673
11674 2005-10-24  Wim Taymans  <wim@fluendo.com>
11675
11676         * gst-libs/gst/audio/gstbaseaudiosink.c:
11677         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
11678         Remove g_print
11679         Use sync property from baseclass to disable sync.
11680
11681 2005-10-24  Wim Taymans  <wim@fluendo.com>
11682
11683         * gst-libs/gst/audio/gstbaseaudiosink.c:
11684         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
11685         Buffers with no timestamps get aligned with previous buffers or
11686         on underrun, played ASAP.
11687
11688 2005-10-24  Julien MOUTTE  <julien@moutte.net>
11689
11690         * gst-libs/gst/video/video.h:
11691         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11692         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
11693         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
11694         here comes my change on caps for framerate and geometry range.
11695         We are now accepting 1 to MAXINT for width and height, and from
11696         0.0 to MAXDOUBLE for framerate. That allows duration less png frames
11697         to be blended correctly in videomixer.
11698
11699 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
11700
11701         * configure.ac:
11702           back to HEAD
11703
11704 === release 0.9.4 ===
11705
11706 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11707
11708         * NEWS:
11709         * RELEASE:
11710         * configure.ac:
11711           releasing 0.9.4, "Velociraptor"
11712
11713 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11714
11715         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
11716         * po/POTFILES.in:
11717           STOPPED -> FAILED
11718
11719 2005-10-21  Wim Taymans  <wim@fluendo.com>
11720
11721         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11722         (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
11723         (pad_blocked), (close_pad_link), (new_pad):
11724         Don't try to remove elements twice.
11725
11726 2005-10-21  Wim Taymans  <wim@fluendo.com>
11727
11728         * ext/theora/theoradec.c: (theora_dec_src_query),
11729         (theora_dec_sink_event):
11730         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11731         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
11732         (vorbis_handle_data_packet):
11733         * ext/vorbis/vorbisdec.h:
11734         Fix old naming.
11735
11736         * gst-libs/gst/audio/gstbaseaudiosink.c:
11737         (gst_base_audio_sink_render):
11738         Don't try to sync on buffers without a timestamp.
11739
11740 2005-10-21  Wim Taymans  <wim@fluendo.com>
11741
11742         * ext/theora/theoradec.c: (theora_dec_src_query),
11743         (theora_dec_sink_event):
11744         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11745         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
11746         (vorbis_handle_data_packet):
11747         * ext/vorbis/vorbisdec.h:
11748         Fix old naming.
11749
11750 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
11751
11752         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
11753         (gst_vorbisenc_src_query):
11754           Implement position and duration queries.
11755
11756         * gst/playback/test3.c: (update_scale), (main):
11757           Fix for async state changes and print nicer output.
11758
11759 2005-10-20  Wim Taymans  <wim@fluendo.com>
11760
11761         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11762         (dump_element_stats), (main):
11763         * gst/playback/test6.c: (main):
11764         Fix tests again
11765
11766 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
11767
11768         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
11769         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
11770           Don't use functions for position queries when handling
11771           duration queries.
11772
11773 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
11774
11775         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11776         (vorbis_handle_data_packet), (vorbis_dec_chain),
11777         (vorbis_dec_change_state):
11778         * ext/vorbis/vorbisdec.h:
11779           Vorbis streams can be embedded in other container formats
11780           than ogg, container formats where the demuxer might set 
11781           timestamps on encoded vorbis buffers instead of those silly 
11782           granulepos thingies. In short: make vorbisdec handle 
11783           timestamps on incoming buffers as well.
11784
11785 2005-10-20  Wim Taymans  <wim@fluendo.com>
11786
11787         * gst/playback/gstplaybasebin.c: (group_destroy),
11788         (gst_play_base_bin_change_state):
11789         Fix leak.
11790         Handle case where playbasebin is now ASYNC because
11791         decodebin is.
11792
11793 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
11794
11795         * gst/audioconvert/Makefile.am:
11796         * gst/audioconvert/bufferframesconvert.c:
11797         * gst/audioconvert/plugin.c: (plugin_init):
11798         * gst/audioconvert/plugin.h:
11799           And bye bye buffer-frames-convert
11800
11801 2005-10-19  Wim Taymans  <wim@fluendo.com>
11802
11803         * check/elements/audioconvert.c:
11804         * docs/libs/tmpl/gstaudio.sgml:
11805         * docs/libs/tmpl/gstcolorbalance.sgml:
11806         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11807         (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
11808         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
11809         * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
11810         * gst-libs/gst/audio/audio.h:
11811         * gst/audioconvert/audioconvert.h:
11812         * gst/audioconvert/gstaudioconvert.c:
11813         (gst_audio_convert_parse_caps):
11814         * gst/volume/gstvolume.c:
11815         Bye bye buffer-frames.
11816
11817 2005-10-19  Wim Taymans  <wim@fluendo.com>
11818
11819         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
11820         (query_positions_elems), (query_positions_pads), (update_scale),
11821         (do_seek), (set_update_scale), (message_received), (main):
11822         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
11823         (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
11824         (gst_ogg_demux_loop):
11825         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
11826         * ext/theora/theoradec.c: (theora_dec_src_query),
11827         (theora_dec_sink_event):
11828         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11829         (vorbis_dec_sink_event), (vorbis_handle_data_packet):
11830         * gst/adder/gstadder.c: (gst_adder_query):
11831         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
11832         * gst/playback/test3.c: (update_scale):
11833         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11834         (dump_element_stats), (main):
11835         * gst/playback/test6.c: (main):
11836         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
11837         Query API update.
11838
11839 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
11840
11841         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
11842         (xml_check_first_element), (xml_type_find), (smil_type_find),
11843         (plugin_init):
11844           Add typefinding for SMIL and for generic XML. Based on patch by
11845           Akos Maroy (#308663).
11846
11847 2005-10-18  Wim Taymans  <wim@fluendo.com>
11848
11849         * gst/playback/Makefile.am:
11850         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11851         (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
11852         (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
11853         (try_to_link_1), (new_pad), (no_more_pads), (type_found),
11854         (gst_decode_bin_change_state):
11855         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
11856         (gst_play_bin_send_event_to_sink):
11857         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11858         (dump_element_stats), (main):
11859         * gst/playback/test6.c: (main):
11860         Make playbin async, it'll commit state to paused when all streams
11861         are detected.
11862         Remove ugly hack.
11863         Added test6.c to show async behaviour.
11864
11865 2005-10-18  Wim Taymans  <wim@fluendo.com>
11866
11867         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
11868         (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
11869         Fix for segment-start/stop API change.
11870
11871 2005-10-18  Wim Taymans  <wim@fluendo.com>
11872
11873         * check/Makefile.am:
11874         * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
11875         (main):
11876         Add future test for clock selection.
11877
11878 2005-10-18  Wim Taymans  <wim@fluendo.com>
11879
11880         * ext/alsa/gstalsasink.c: (gst_alsasink_init),
11881         (gst_alsasink_close):
11882         Set handle to NULL.
11883
11884         * gst-libs/gst/audio/gstringbuffer.c:
11885         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
11886         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
11887         (gst_ring_buffer_start), (gst_ring_buffer_pause),
11888         (gst_ring_buffer_stop), (gst_ring_buffer_commit),
11889         (gst_ring_buffer_read):
11890         More debug info.
11891
11892 2005-10-17  Stefan Kost  <ensonic@users.sf.net>
11893
11894         * gst/audiotestsrc/Makefile.am:
11895         * gst/sine/Makefile.am:
11896         * gst/volume/Makefile.am:
11897           fix broken build of controllerized plugins
11898
11899 2005-10-17  Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
11900
11901         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
11902
11903         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
11904         (gst_riff_create_video_template_caps):
11905           Add support for Indeo-3 (IV32).
11906
11907 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
11908
11909         * configure.ac:
11910           rewrite
11911
11912 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
11913
11914         * gst-libs/gst/video/video.c: (gst_video_get_size):
11915         * gst/audiotestsrc/gstaudiotestsrc.c:
11916           doc updates
11917
11918 2005-10-17  Andy Wingo  <wingo@pobox.com>
11919
11920         * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
11921         with the collectpads change.
11922         (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
11923
11924         * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
11925
11926         * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
11927
11928         * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
11929         alloc_buffer flow return to callers.
11930         (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
11931         change. Fix some memleaks in theoraenc.
11932
11933         * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
11934         in strange circumstance.
11935
11936 2005-10-17  Julien MOUTTE  <julien@moutte.net>
11937
11938         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11939         (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
11940         from caps, let's use the caps...
11941
11942 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
11943
11944         * configure.ac:
11945           put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
11946
11947 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
11948
11949         * gst-libs/gst/interfaces/Makefile.am:
11950           fix silly typo
11951
11952 2005-10-16  Andy Wingo  <wingo@pobox.com>
11953
11954         * gst/playback/gstdecodebin.c
11955         (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
11956         function!
11957         (try_to_link_1): Increase kraziness level.
11958
11959 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
11960
11961         * configure.ac:
11962           restructure like the core one
11963         * gst-libs/gst/audio/Makefile.am:
11964         * gst-libs/gst/interfaces/Makefile.am:
11965         * gst-libs/gst/net/Makefile.am:
11966         * gst-libs/gst/riff/Makefile.am:
11967         * gst-libs/gst/rtp/Makefile.am:
11968         * gst-libs/gst/tag/Makefile.am:
11969         * gst-libs/gst/video/Makefile.am:
11970           use correct linker flags, now the libs are properly versioned
11971         * check/elements/audioconvert.c: (verify_convert):
11972         * ext/alsa/gstalsaplugin.c:
11973         * ext/cdparanoia/gstcdparanoia.c:
11974         * ext/gnomevfs/gstgnomevfs.c:
11975         * ext/libvisual/visual.c:
11976         * ext/ogg/gstogg.c:
11977         * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
11978         * ext/theora/theora.c:
11979         * ext/vorbis/vorbis.c:
11980         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
11981         * gst-libs/gst/tag/gsttagediting.c:
11982         * gst-libs/gst/video/video.c:
11983         * gst/adder/gstadder.c:
11984         * gst/audioconvert/plugin.c:
11985         * gst/audiorate/gstaudiorate.c:
11986         * gst/audioresample/gstaudioresample.c:
11987         * gst/audioresample/resample_ref.c: (resample_scale_ref):
11988         * gst/audioscale/gstaudioscale.c:
11989         * gst/audioscale/resample.c:
11990         * gst/audiotestsrc/gstaudiotestsrc.c:
11991         * gst/ffmpegcolorspace/gstffmpeg.c:
11992         * gst/playback/gstdecodebin.c: (close_pad_link):
11993         * gst/playback/gstplaybin.c: (gen_video_element),
11994         (gen_audio_element):
11995         * gst/sine/gstsinesrc.c:
11996         * gst/subparse/gstsubparse.c:
11997         * gst/tags/gsttagediting.c:
11998         * gst/tcp/gsttcpplugin.c:
11999         * gst/typefind/gsttypefindfunctions.c:
12000         * gst/videorate/gstvideorate.c:
12001         * gst/videoscale/gstvideoscale.c:
12002         * gst/videotestsrc/gstvideotestsrc.c:
12003         * gst/volume/gstvolume.c:
12004         * sys/v4l/gstv4l.c:
12005         * sys/ximage/ximage.c:
12006         * sys/xvimage/xvimagesink.c:
12007           fix up defines
12008
12009 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
12010
12011         * ext/vorbis/vorbisenc.c:
12012         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
12013         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
12014         (gst_tag_to_vorbis_comments):
12015           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
12016
12017 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
12018
12019         * examples/stats/mp2ogg.c:
12020         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12021           typo fixes
12022
12023 2005-10-13  Michael Smith <msmith@fluendo.com>
12024
12025         * ext/ogg/gstoggmux.c:
12026           Use magic glib macros to define constants as 64 bit, to ensure
12027           appropriate vararg passing.
12028
12029 2005-10-13  Michael Smith <msmith@fluendo.com>
12030
12031         * ext/ogg/gstoggmux.c:
12032         * gst/audioconvert/audioconvert.c: (float):
12033           Don't use LL suffix, as it's not portable, and neither of these
12034           uses required it anyway.
12035
12036 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
12037
12038         * examples/indexing/indexmpeg.c: (main):
12039         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
12040         (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
12041         (cdparanoia_convert), (cdparanoia_query):
12042         * ext/cdparanoia/gstcdparanoia.h:
12043         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
12044         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
12045         (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
12046         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
12047         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
12048         * gst/playback/gststreamselector.c: (gst_stream_selector_init):
12049         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
12050         (gst_multifdsink_render), (gst_multifdsink_start),
12051         (gst_multifdsink_stop):
12052         * gst/tcp/gstmultifdsink.h:
12053         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
12054         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
12055         (gst_tcpclientsink_stop):
12056         * gst/tcp/gsttcpclientsink.h:
12057         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
12058         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
12059         (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
12060         * gst/tcp/gsttcpclientsrc.h:
12061         * gst/tcp/gsttcpserversink.h:
12062         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
12063         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
12064         (gst_tcpserversrc_stop):
12065         * gst/tcp/gsttcpserversrc.h:
12066         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
12067         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
12068         * sys/ximage/ximagesink.c: (gst_ximagesink_init):
12069           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
12070           moved bitshift from macro to enum definition
12071
12072 2005-10-12  Wim Taymans  <wim@fluendo.com>
12073
12074         * examples/seeking/Makefile.am:
12075         Oops.
12076
12077 2005-10-12  Wim Taymans  <wim@fluendo.com>
12078
12079         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12080         (gst_ring_buffer_read), (gst_ring_buffer_clear):
12081         Don't assert on normal stuff.
12082
12083         * gst/playback/gstplaybin.c: (do_playbin_seek):
12084         API fix.
12085
12086 2005-10-12  Wim Taymans  <wim@fluendo.com>
12087
12088         * check/pipelines/simple_launch_lines.c: (run_pipeline):
12089         * examples/seeking/Makefile.am:
12090         * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
12091         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
12092         (do_seek), (set_update_scale), (message_received), (main):
12093         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12094         (gst_ring_buffer_read), (gst_ring_buffer_clear):
12095         Update for _get_state() API change.
12096
12097 2005-10-11  Wim Taymans  <wim@fluendo.com>
12098
12099         * gst-libs/gst/audio/gstbaseaudiosink.c:
12100         (gst_base_audio_sink_render):
12101         * gst-libs/gst/audio/gstbaseaudiosrc.c:
12102         (gst_base_audio_src_create):
12103         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12104         (gst_ring_buffer_read):
12105         Cleanups.
12106         Commit and read from ringbuffer in samples rather than bytes.
12107
12108 2005-10-11  Wim Taymans  <wim@fluendo.com>
12109
12110         * gst-libs/gst/audio/gstbaseaudiosink.c:
12111         (gst_base_audio_sink_render):
12112         Respect segment rate and accum when scheduling samples.
12113
12114 2005-10-11  Julien MOUTTE  <julien@moutte.net>
12115
12116         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
12117         (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
12118         EOS correctly, that needs more work.
12119
12120 2005-10-11  Wim Taymans  <wim@fluendo.com>
12121
12122         * check/generic/states.c: (GST_START_TEST):
12123         remove old property.
12124
12125         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
12126         (gst_ogg_demux_perform_seek):
12127         * ext/theora/theoradec.c: (theora_dec_sink_event):
12128         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
12129         (vorbis_handle_data_packet):
12130         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12131         (gst_base_rtp_depayload_set_gst_timestamp):
12132         * gst/videorate/gstvideorate.c: (gst_videorate_event):
12133         Update for newsegment API change.
12134
12135 2005-10-11  Michael Smith <msmith@fluendo.com>
12136
12137         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
12138         (do_playbin_seek), (gst_play_bin_send_event):
12139           Override send_event differently, so that we can takes bits of
12140           functionality from GstPipeline (special handling for seeks,
12141           including pausing/resuming, and resetting stream time) and still get
12142           the appropriate behaviour of only forwarding event to a single sink,
12143           rather than all of them.
12144           Unfortunately requires a lot of code duplication, but the
12145           alternatives are equally ugly in the end.
12146
12147 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
12148
12149         * check/elements/audioconvert.c: (setup_audioconvert),
12150         (cleanup_audioconvert), (get_int_caps), (verify_convert),
12151         (GST_START_TEST), (audioconvert_suite):
12152           clean up tests a little, fix some leaks.
12153
12154 2005-10-10  Wim Taymans  <wim@fluendo.com>
12155
12156         * ext/alsa/gstalsasink.c:
12157         Also allow unsigned int.
12158
12159         * gst-libs/gst/audio/gstbaseaudiosrc.c:
12160         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
12161         Small cleanup
12162
12163 2005-10-10  Wim Taymans  <wim@fluendo.com>
12164
12165         * check/pipelines/simple_launch_lines.c: (run_pipeline):
12166         Small update, use API as stated in design docs.
12167
12168         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
12169         (update_scale), (do_seek), (seek_cb), (set_update_scale),
12170         (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
12171         (message_received), (main):
12172         Updated seek example for GOption. Some usability improvements.
12173
12174 2005-10-10  Wim Taymans  <wim@fluendo.com>
12175
12176         * gst/audioconvert/audioconvert.h:
12177         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
12178         (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
12179         Alloc temp storage somewhere else where we can do it more
12180         portable.
12181
12182 2005-10-10  Wim Taymans  <wim@fluendo.com>
12183
12184         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
12185         (gst_tcpserversrc_start):
12186         Don't block in accept while doing the state change, move
12187         to poll and make cancellable.
12188
12189 2005-10-09  Philippe Khalaf <burger@speedy.org>
12190
12191         * gst-libs/gst/rtp/rtpbasedepayload.c:
12192         Set timestamp and add queue delay to timestamp
12193         * gst-libs/gst/rtp/rtpbuffer.h:
12194         Set correct payload type for h263
12195
12196 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
12197
12198         * gst/audiotestsrc/gstaudiotestsrc.c:
12199         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
12200         (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
12201         (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
12202         (gst_audiotestsrc_create_triangle),
12203         (gst_audiotestsrc_create_silence),
12204         (gst_audiotestsrc_create_white_noise),
12205         (gst_audiotestsrc_init_pink_noise),
12206         (gst_audiotestsrc_generate_pink_noise_value),
12207         (gst_audiotestsrc_create_pink_noise),
12208         (gst_audiotestsrc_change_wave):
12209         * gst/audiotestsrc/gstaudiotestsrc.h:
12210           fixed typo, added pink noise
12211
12212 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
12213
12214         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
12215         (plugin_init):
12216           Add wavpack and spc typefind functions from 0.8 branch.
12217
12218 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
12219
12220         * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
12221         (ar_type_find), (msdos_type_find), (plugin_init):
12222           Add typefind functions for tar archives, ar archives,
12223           RAR archives, and msdos-executables (dlls, exe, etc.).
12224           Some of those would be wrongly identified as mpeg
12225           streams of some sort before (#315550).
12226
12227 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
12228
12229         * configure.ac:
12230         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12231         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12232         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
12233         * gst/audiotestsrc/Makefile.am:
12234         * gst/audiotestsrc/gstaudiotestsrc.c:
12235         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
12236         (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
12237         (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
12238         (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
12239         (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
12240         (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
12241         (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
12242         (gst_audiotestsrc_create_silence),
12243         (gst_audiotestsrc_create_white_noise),
12244         (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
12245         (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
12246         (gst_audiotestsrc_start), (plugin_init):
12247         * gst/audiotestsrc/gstaudiotestsrc.h:
12248           add new plugin and element
12249         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
12250           use gobject_class
12251
12252 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
12253
12254         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
12255         (gst_adder_init), (gst_adder_request_new_pad),
12256         (gst_adder_change_state):
12257           Add query function to source pad, so adder reports the correct
12258           time/sample position when queried (#315457); fix state change
12259           function; use GST_DEBUG_FUNCPTR() for pad functions.
12260
12261 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
12262
12263         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
12264           Fix leaks in typefind registration
12265           Clean up the gratuitous commenting and whitespacing a little
12266
12267 2005-10-08  Wim Taymans  <wim@fluendo.com>
12268
12269         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
12270         Only actually wait for the thread to be stopped if it's 
12271         running.
12272
12273 2005-10-08  Wim Taymans  <wim@fluendo.com>
12274
12275         * gst-libs/gst/audio/gstbaseaudiosink.c:
12276         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
12277         If we receive EOS we can start playback of what we had.
12278
12279 2005-10-08  Wim Taymans  <wim@fluendo.com>
12280
12281         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
12282         (gst_multifdsink_finalize), (multifdsink_hash_remove),
12283         (gst_multifdsink_stop):
12284         Fix crasher when going to NULL multiple times.
12285
12286 2005-10-06  Wim Taymans  <wim@fluendo.com>
12287
12288         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
12289         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
12290         * gst-libs/gst/audio/gstbaseaudiosrc.h:
12291         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
12292         patch from Edgard Lima <edgard.lima@indt.org.br>
12293         Fixed gstbaseaudiosrc adding ring buffer sync to it.
12294
12295 2005-10-06  Wim Taymans  <wim@fluendo.com>
12296
12297         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
12298         Report the FLOW_RETURN as string in the error message.
12299
12300         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
12301         Don't assert when clearing an unnegotiated buffer.
12302
12303 2005-10-04  Michael Smith <msmith@fluendo.com>
12304
12305         * gst/playback/gstplaybasebin.c: (group_destroy),
12306         (gen_preroll_element), (remove_groups), (setup_source):
12307         * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
12308         (setup_sinks), (gst_play_bin_send_event),
12309         (gst_play_bin_change_state):
12310           Set state to NULL before removing from bin. Fix refcounting.
12311
12312 2005-10-04  Michael Smith <msmith@fluendo.com>
12313
12314         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
12315           Correct refcounting in send_event() function. Previously was wrong
12316           if the first sink was unable to handle the event.
12317
12318 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
12319
12320         * configure.ac:
12321           back to development
12322
12323 === release 0.9.3 ===
12324
12325 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
12326
12327         * configure.ac:
12328           Releasing 0.9.3, "De Facto"
12329
12330 2005-10-03  Andy Wingo  <wingo@pobox.com>
12331
12332         * gst/playback/gstdecodebin.c (try_to_link_1)
12333         (remove_element_chain): set element to NULL before removing it.
12334
12335 2005-10-02  Johan Dahlin  <johan@gnome.org>
12336
12337         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols): 
12338         protect gst_gnomevfs_get_supported_uris by a mutex, to make it
12339         MT safe.
12340
12341 2005-10-02  Andy Wingo  <wingo@pobox.com>
12342
12343         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear) 
12344         (gst_ring_buffer_prepare_read): 
12345         * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
12346         Demote to LOG.
12347
12348 2005-09-29  Wim Taymans  <wim@fluendo.com>
12349
12350         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
12351         * ext/theora/theoradec.c: (theora_handle_data_packet):
12352         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
12353         Propagate error codes from alloc_buffer too.
12354
12355 2005-09-29  Wim Taymans  <wim@fluendo.com>
12356
12357         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
12358         We use fixed caps.
12359
12360         * gst/playback/Makefile.am:
12361         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
12362         (dump_element_stats), (main):
12363         Added example stream introspection code.
12364
12365 2005-09-28  Stefan Kost  <ensonic@users.sf.net>
12366
12367         * gst/adder/gstadder.c: (gst_adder_collected):
12368           fix adder for float elements
12369
12370 2005-09-28  Wim Taymans  <wim@fluendo.com>
12371
12372         * gst-libs/gst/audio/gstbaseaudiosink.c:
12373         (gst_base_audio_sink_class_init),
12374         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
12375         * gst-libs/gst/audio/gstbaseaudiosrc.c:
12376         (gst_base_audio_src_class_init),
12377         (gst_base_audio_src_provide_clock):
12378         get_clock -> provide_clock
12379
12380 2005-09-28  Andy Wingo  <wingo@pobox.com>
12381
12382         * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
12383         and unlocking.
12384
12385         * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
12386         unlocking.
12387
12388         * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
12389         Actually add the pad template.
12390         (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
12391
12392         * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
12393         I'm at it...
12394
12395         * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
12396         from fdsrc. Get caps in create() instead of start() so it can be
12397         interrupted. Interruption somewhat untested.
12398
12399         * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
12400         Proper EOS handling.
12401
12402 2005-09-27  Andy Wingo  <wingo@pobox.com>
12403
12404         * gst/tcp/gsttcpclientsrc.c: Cleaned up.
12405
12406         * gst/tcp/gsttcpserversrc.c: Cleaned up.
12407
12408         * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
12409
12410         * gst/tcp/gsttcp.h: 
12411         * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
12412         out of tcpclientsrc.c. Cancellable.
12413         (gst_tcp_socket_read): Made private, cancellable, with better
12414         diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
12415         (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
12416         whole buffer, and better diagnostics.
12417         (gst_tcp_gdp_read_caps): Same.
12418
12419         * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
12420
12421 2005-09-26  Andy Wingo  <wingo@pobox.com>
12422
12423         * gst/sine/gstsinesrc.h:
12424         * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
12425         change the 'sync' property to 'is-live' and implement it halfway,
12426         update for controller api change.
12427
12428         * gst/volume/gstvolume.c (volume_transform_ip): Update for
12429         controller api change.
12430
12431 2005-09-24  Wim Taymans  <wim@fluendo.com>
12432
12433         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
12434         * gst-libs/gst/audio/gstaudiosink.c:
12435         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
12436         (gst_audioringbuffer_stop):
12437         * gst-libs/gst/audio/gstbaseaudiosink.c:
12438         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
12439         (gst_base_audio_sink_change_state):
12440         * gst-libs/gst/audio/gstbaseaudiosink.h:
12441         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
12442         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
12443         (gst_ring_buffer_commit), (gst_ring_buffer_read):
12444         * gst-libs/gst/audio/gstringbuffer.h:
12445         Fix sync again. Moved sample alignment to basesink.
12446
12447 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
12448
12449         * docs/plugins/Makefile.am:
12450         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12451         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12452         * gst/volume/gstvolume.c:
12453           add/fix docs
12454         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
12455         * gst-libs/gst/audio/audio.h:
12456           add conversion macros for frames <-> clocktime
12457
12458 2005-09-23  David Schleef  <ds@schleef.org>
12459
12460         * gst/audioresample/Makefile.am:
12461         * gst/audioresample/debug.h:
12462         * gst/audioresample/gstaudioresample.c:
12463         * gst/audioresample/resample.c: Convert to using gst debugging
12464
12465 2005-09-22  Wim Taymans  <wim@fluendo.com>
12466
12467         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
12468         (gst_play_bin_send_event):
12469         Only seek on one sink, the first one that succeeds.
12470
12471 2005-09-22  Michael Smith <msmith@fluendo.com>
12472
12473         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
12474         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
12475         Don't flush encoder state unless we have an initialised encoder.
12476         Clear out encoder state on PAUSED_TO_READY.
12477
12478 2005-09-22  Wim Taymans  <wim@fluendo.com>
12479
12480         * gst-libs/gst/rtp/gstbasertppayload.c:
12481         (gst_basertppayload_class_init), (gst_basertppayload_init),
12482         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12483         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12484         (gst_basertppayload_is_filled), (gst_basertppayload_push),
12485         (gst_basertppayload_set_property),
12486         (gst_basertppayload_get_property),
12487         (gst_basertppayload_change_state):
12488         * gst-libs/gst/rtp/gstbasertppayload.h:
12489         Added max-ptime to control amount of data in the rtp packets.
12490
12491 2005-09-21  Andy Wingo  <wingo@pobox.com>
12492
12493         * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
12494         thingies.
12495
12496         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
12497         can be called multiple times, dogs.
12498
12499 2005-09-21  Wim Taymans  <wim@fluendo.com>
12500
12501         * gst-libs/gst/rtp/gstbasertppayload.c:
12502         (gst_basertppayload_class_init), (gst_basertppayload_init),
12503         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12504         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12505         (gst_basertppayload_push), (gst_basertppayload_get_property),
12506         (gst_basertppayload_change_state):
12507         Allow 0 ssrc too.
12508
12509 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
12510
12511         * docs/libs/compiling.sgml:
12512           fixing typos
12513
12514 2005-09-20  Wim Taymans  <wim@fluendo.com>
12515
12516         * gst-libs/gst/rtp/gstbasertppayload.c:
12517         (gst_basertppayload_class_init), (gst_basertppayload_init),
12518         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12519         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12520         (gst_basertppayload_push), (gst_basertppayload_set_property),
12521         (gst_basertppayload_get_property),
12522         (gst_basertppayload_change_state):
12523         * gst-libs/gst/rtp/gstbasertppayload.h:
12524         Added property to configure sequence number offsets.
12525
12526 2005-09-20  Wim Taymans  <wim@fluendo.com>
12527
12528         * gst-libs/gst/rtp/gstbasertppayload.c:
12529         (gst_basertppayload_class_init), (gst_basertppayload_init),
12530         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12531         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12532         (gst_basertppayload_push), (gst_basertppayload_set_property),
12533         (gst_basertppayload_get_property),
12534         (gst_basertppayload_change_state):
12535         * gst-libs/gst/rtp/gstbasertppayload.h:
12536         Make timestamp offset configurable.
12537
12538 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
12539
12540         * check/pipelines/simple_launch_lines.c: (run_pipeline):
12541           fix wrong pop/unref
12542
12543 2005-09-19  Torsten Schoenfeld  <kaffeetisch at gmx dot net>
12544
12545         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
12546
12547         * gst-libs/gst/interfaces/propertyprobe.c:
12548         (gst_property_probe_probe_property_name),
12549         (gst_property_probe_needs_probe_name),
12550         (gst_property_probe_get_values_name),
12551         (gst_property_probe_probe_and_get_values_name):
12552           Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
12553           G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
12554
12555 2005-09-19  Thomas Vander Stichele  <thomas at apestaart dot org>
12556
12557         * check/Makefile.am:
12558           have some tests be disabled for valgrinding
12559         * check/elements/vorbisdec.c: (cleanup_vorbisdec),
12560         (GST_START_TEST):
12561         * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
12562           Fix A Leak.  Chain To Parent Finalize.
12563
12564 2005-09-19  Wim Taymans  <wim@fluendo.com>
12565
12566         * examples/seeking/seek.c: (make_wav_pipeline), (main):
12567         Fixed wav pipeline.
12568
12569 2005-09-19  Wim Taymans  <wim@fluendo.com>
12570
12571         * gst-libs/gst/rtp/gstbasertppayload.c:
12572         (gst_basertppayload_class_init), (gst_basertppayload_init),
12573         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12574         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12575         (gst_basertppayload_push), (gst_basertppayload_get_property),
12576         (gst_basertppayload_change_state):
12577         Posting ERROR and WARNING messages is good.
12578
12579 2005-09-19  Wim Taymans  <wim@fluendo.com>
12580
12581         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12582         (gst_base_rtp_depayload_add_to_queue),
12583         (gst_base_rtp_depayload_push),
12584         (gst_base_rtp_depayload_set_gst_timestamp),
12585         (gst_base_rtp_depayload_queue_release):
12586         This one was not supposed to go in.
12587
12588 2005-09-19  Wim Taymans  <wim@fluendo.com>
12589
12590         * check/pipelines/simple_launch_lines.c: (run_pipeline):
12591         Fix for bus API.
12592
12593         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12594         (gst_base_rtp_depayload_chain),
12595         (gst_base_rtp_depayload_add_to_queue),
12596         (gst_base_rtp_depayload_push),
12597         (gst_base_rtp_depayload_set_gst_timestamp),
12598         (gst_base_rtp_depayload_queue_release):
12599         Some cleanups.
12600
12601         * gst-libs/gst/rtp/gstbasertppayload.c:
12602         (gst_basertppayload_class_init), (gst_basertppayload_init),
12603         (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
12604         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
12605         (gst_basertppayload_get_property),
12606         (gst_basertppayload_change_state):
12607         Added debugging category.
12608
12609 2005-09-18  David Schleef  <ds@schleef.org>
12610
12611         * gst/playback/gstdecodebin.c: free plugin list correctly
12612         * gst/playback/gstplaybin.c: emit warning if autovideosink
12613           and autoaudiosink can't be found (instead of segfaulting)
12614
12615 2005-09-17  Thomas Vander Stichele  <thomas at apestaart dot org>
12616
12617         * check/elements/audioconvert.c: (GST_START_TEST):
12618           try out 24 bit conversion
12619
12620 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
12621
12622         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
12623         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
12624         (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
12625         * ext/vorbis/vorbisenc.h:
12626           Fix EOS handling.  Still needs a fix in the ogg muxer to
12627           mark the last page as eos.
12628
12629 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
12630
12631         * common/gtk-doc-plugins.mak:
12632         * docs/plugins/Makefile.am:
12633         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12634         * gst/ffmpegcolorspace/Makefile.am:
12635         * gst/ffmpegcolorspace/avcodec.h:
12636         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12637         * gst/tcp/gstmultifdsink.c:
12638           fix up ffmpegcolorspace docs; extract header
12639
12640 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
12641
12642         * common/gtk-doc-plugins.mak:
12643         * docs/plugins/Makefile.am:
12644         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12645         * ext/theora/Makefile.am:
12646         * ext/theora/gsttheoraenc.h:
12647         * ext/theora/theoraenc.c:
12648         * ext/vorbis/vorbisenc.c:
12649           pick up signals and args for vorbis; add some docs for vorbis
12650
12651 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
12652
12653         * common/gstdoc-scangobj:
12654         * common/gtk-doc-plugins.mak:
12655         * docs/libs/Makefile.am:
12656         * docs/plugins/gst-plugins-base-plugins.args:
12657         * docs/plugins/gst-plugins-base-plugins.hierarchy:
12658         * docs/plugins/gst-plugins-base-plugins.interfaces:
12659         * docs/plugins/gst-plugins-base-plugins.prerequisites:
12660         * docs/plugins/gst-plugins-base-plugins.signals:
12661           only scanobj stuff from our source module.  Not sure yet
12662           if that's correct, given the hierarchy stuff :)
12663
12664 2005-09-15  Wim Taymans  <wim@fluendo.com>
12665
12666         * gst/audioconvert/gstaudioconvert.c:
12667         And enable 24 bits mode as well..
12668
12669 2005-09-15  Wim Taymans  <wim@fluendo.com>
12670
12671         * gst-libs/gst/rtp/Makefile.am:
12672         * gst-libs/gst/rtp/gstbasertppayload.c:
12673         (gst_basertppayload_get_type), (gst_basertppayload_base_init),
12674         (gst_basertppayload_class_init), (gst_basertppayload_init),
12675         (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
12676         (gst_basertppayload_chain), (gst_basertppayload_set_options),
12677         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
12678         (gst_basertppayload_set_property),
12679         (gst_basertppayload_get_property),
12680         (gst_basertppayload_change_state):
12681         * gst-libs/gst/rtp/gstbasertppayload.h:
12682         Added rtp payloader base class.
12683
12684 2005-09-15  Andy Wingo  <wingo@pobox.com>
12685
12686         * configure.ac (plugindir): Remove the EOL matcher from the
12687         regexp, as it causes me problems. Libtool? Make? Who knows?
12688
12689 2005-09-14  David Schleef  <ds@schleef.org>
12690
12691         * check/generic/states.c: 
12692         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
12693         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
12694           Fixes for changes in registry API.
12695
12696         * configure.ac: Only export gst_plugins_desc.  Add -no-undefined
12697           to GST_PLUGIN_LDFLAGS.
12698         * ext/libvisual/visual.c: Make the library shut up.
12699         * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
12700         * gst-libs/gst/audio/gstaudiofilter.c: same
12701
12702 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
12703
12704         * docs/plugins/Makefile.am:
12705         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12706         * docs/plugins/inspect/plugin-libvisual.xml:
12707         * docs/plugins/tmpl/element-tcpserversink.sgml:
12708         * ext/theora/theoraenc.c:
12709           add libvisual plugin and theoraenc element to docs
12710
12711 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
12712
12713         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12714         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12715         * ext/theora/theoraenc.c:
12716           add theoraenc
12717
12718 2005-09-13  Tim-Philipp Müller  <tim at centricular dot net>
12719
12720         * gst/audioconvert/Makefile.am:
12721           Audioconvert derives from GstBaseTransform and should
12722           link to the library with our base elements to avoid
12723           unresolved symbols. Makes things work with MinGW (#316160)
12724
12725         * gst/playback/test4.c: (main):
12726           Fix MinGW build problem and use g_usleep() instead of 
12727           sleep() (#316162)
12728
12729 2005-09-12  Wim Taymans  <wim@fluendo.com>
12730
12731         * gst/audioconvert/audioconvert.c: (float),
12732         (audio_convert_prepare_context), (audio_convert_convert):
12733         * gst/audioconvert/audioconvert.h:
12734         Cleanups, speedups, simplifications, added back support
12735         for 24 bits.
12736
12737 2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>
12738
12739         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12740         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12741         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12742         * docs/plugins/tmpl/element-tcpserversink.sgml:
12743         * gst/ffmpegcolorspace/gstffmpeg.c:
12744         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12745         * gst/videotestsrc/gstvideotestsrc.c:
12746         * gst/volume/gstvolume.c:
12747           add more elements to the docs
12748
12749 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
12750
12751         * check/Makefile.am:
12752         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
12753         (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
12754           Add extra tests for basetransform based components. 
12755           Comment out the test_element_negotiation test until we decide
12756           if it's testing correct behaviour.
12757         * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
12758         (gst_visual_chain), (gst_visual_change_state):
12759           Slightly more correct but still bogus timestamping.
12760           Fix state change function.
12761         * gst/audioconvert/gstaudioconvert.c:
12762         (gst_audio_convert_class_init):
12763         * gst/audioresample/gstaudioresample.c:
12764         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12765         (gst_ffmpegcsp_class_init):
12766         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
12767         (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
12768         (gst_videoscale_prepare_image):
12769         * gst/volume/gstvolume.c: (gst_volume_class_init),
12770         (volume_transform_ip):
12771           Basetransform updates. Enable passthrough modes.
12772         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12773         (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
12774         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
12775           Negotiation fix that allows the window to return to the original
12776           size and renegotiate passthrough upstream. Extra debug output.
12777
12778 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
12779
12780         * gst/sine/gstsinesrc.c:
12781         * gst/volume/gstvolume.c:
12782           fix up header include
12783
12784 2005-09-09  Stefan Kost  <ensonic@users.sf.net>
12785
12786         * gst-libs/gst/audio/gstbaseaudiosink.c:
12787         (gst_base_audio_sink_render):
12788         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
12789         * gst/volume/gstvolume.c: (gst_volume_class_init),
12790         (volume_transform):
12791           fixing lost sync, some more debugging
12792
12793 2005-09-08  Jan Schmidt  <thaytan@mad.scientist.com>
12794
12795         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12796         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
12797         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
12798         (gst_xvimagesink_check_xshm_calls):
12799           Fix compilation when XShm is not available.
12800
12801 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
12802
12803         * ext/libvisual/visual.c: (gst_visual_dispose),
12804         (gst_visual_getcaps), (gst_visual_src_setcaps),
12805         (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
12806         (gst_visual_change_state):
12807           Finish fixing up libvisual plugin so that it runs. 
12808
12809 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
12810
12811         * ext/vorbis/vorbisenc.c:
12812         * gst-libs/gst/tag/gstvorbistag.c:
12813           gsttaginterface.h -> gsttagsetter.h
12814
12815 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
12816
12817         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
12818           added another test that failes for me (test is not active by default)
12819
12820 2005-09-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12821
12822         * configure.ac:
12823           v4l2 is no longer in gst-plugins-base
12824
12825 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
12826
12827         * configure.ac:
12828           In the output at the end, don't show the first plugin on the same
12829           line as "Core plug-ins, always built:".
12830           Indent the output as for other plugin categories
12831         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
12832           #define that can be used to not use peer buffer_alloc functions for
12833           test purposes.
12834         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12835         (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
12836         (gst_ximagesink_show_frame):
12837         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
12838         (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
12839         (gst_xvimagesink_show_frame):
12840           Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
12841           fails gracefully instead of XError aborting or deadlocking.
12842
12843 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
12844
12845         * ext/libvisual/Makefile.am:
12846           link against gst-base-libs
12847
12848 2005-09-06  David Schleef  <ds@schleef.org>
12849
12850         * configure.ac: Enable libvisual plugin.
12851         * ext/libvisual/Makefile.am:
12852         * ext/libvisual/visual.c: Fixes to make it compile.
12853
12854 === release 0.9.2 ===
12855
12856 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
12857
12858         * NEWS:
12859         * RELEASE:
12860         * configure.ac:
12861         * docs/random/ChangeLog-0.8:
12862           releasing 0.9.2, "Spoon"
12863
12864 2005-09-05  Michael Smith <msmith@fluendo.com>
12865
12866         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
12867           libvorbis accepts quality as low as -0.1, not just 0.0. So accept
12868           that in the vorbisenc element.
12869
12870 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
12871
12872         * common/gtk-doc-plugins.mak:
12873         * docs/plugins/Makefile.am:
12874           fix distcheck
12875         * gst/audioresample/resample.c:
12876           fix wrong docstring
12877
12878 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
12879
12880         * common/gst-xmlinspect.py:
12881         * common/gtk-doc-plugins.mak:
12882           only inspect plugins for this given package
12883           require gst-python 0.9
12884
12885 2005-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
12886
12887         * Makefile.am:
12888         * autogen.sh:
12889         * common/gst-xmlinspect.py:
12890         * configure.ac:
12891         * docs/Makefile.am:
12892         * docs/plugins/inspect/plugin-alsa.xml:
12893         * docs/plugins/inspect/plugin-audioresample.xml:
12894         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12895         * docs/plugins/inspect/plugin-ogg.xml:
12896         * docs/plugins/tmpl/element-gnomevfssink.sgml:
12897         * docs/plugins/tmpl/element-multifdsink.sgml:
12898         * docs/plugins/tmpl/element-tcpserversink.sgml:
12899         * docs/plugins/tmpl/element-vorbisenc.sgml:
12900         * gst-plugins-base.spec.in:
12901           various doc-related updates
12902
12903 2005-08-31  Wim Taymans  <wim@fluendo.com>
12904
12905         * gst-libs/gst/audio/gstbaseaudiosink.c:
12906         (gst_base_audio_sink_render):
12907         Resync if the buffer timestamps drift more than a 10th 
12908         of a second.
12909
12910 2005-08-31  Tim-Philipp Müller  <tim at centricular dot net>
12911
12912         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
12913         (gst_v4lsrc_get_property):
12914           The 'timestamp-offset' property is registered as an int64, so
12915           let's use g_value_{set|get}_int64() in our setter and getter
12916           functions (makes it work and fixes warnings with gst-inspect).
12917
12918 2005-08-30  Wim Taymans  <wim@fluendo.com>
12919
12920         * check/elements/audioconvert.c: (setup_audioconvert):
12921         * check/elements/audioresample.c: (setup_audioresample):
12922         * check/elements/volume.c: (setup_volume):
12923         Fix checks.
12924
12925 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
12926
12927         * common/gtk-doc-plugins.mak:
12928         * common/plugins.xsl:
12929         * docs/plugins/Makefile.am:
12930           make module a param
12931
12932 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
12933
12934         * examples/seeking/seek.c: (make_mp3_pipeline),
12935         (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
12936         (play_cb), (pause_cb), (stop_cb):
12937           update the example
12938
12939 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
12940
12941         * gst/volume/gstvolume.c: (gst_volume_class_init),
12942         (volume_transform):
12943           do not update controlled params, if buffer has no timestamp
12944
12945 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
12946
12947         * configure.ac:
12948         * gst/sine/Makefile.am:
12949         * gst/volume/Makefile.am:
12950           controllerized elements also need to link against controller-libs ;)
12951
12952 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
12953
12954         * docs/libs/tmpl/gstcolorbalance.sgml:
12955         * docs/libs/tmpl/gstgconf.sgml:
12956         * docs/libs/tmpl/gstmixer.sgml:
12957         * docs/libs/tmpl/gstringbuffer.sgml:
12958         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
12959         (gst_sinesrc_create):
12960         * gst/volume/gstvolume.c: (gst_volume_class_init),
12961         (volume_transform):
12962           controllerized two audio plugins
12963
12964 2005-08-29  Andy Wingo  <wingo@pobox.com>
12965
12966         * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push) 
12967         (vorbis_handle_data_packet): Fix some int overflow errors.
12968
12969         * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
12970         -1.
12971         (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
12972         valid.
12973         (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
12974         if it's valid. Fixed streaming-mode playback.
12975
12976         * check/elements/volume.c (cleanup_volume): Fix for running
12977         CK_FORK=no.
12978
12979         * check/elements/audioconvert.c: Convert from native endian, not
12980         little endian.
12981
12982 2005-08-29  Michael Smith <msmith@fluendo.com>
12983
12984         * ext/ogg/Makefile.am:
12985         * ext/ogg/gstogg.c: (plugin_init):
12986         * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
12987         (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
12988         (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
12989         (gst_ogg_parse_class_init), (gst_ogg_parse_init),
12990         (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
12991         (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
12992         (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
12993         (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
12994         Add an ogg parser element.
12995
12996 2005-08-28  Andy Wingo  <wingo@pobox.com>
12997
12998         * Updates for two-arg init from GST_BOILERPLATE_FULL.
12999
13000 2005-08-26  Wim Taymans  <wim@fluendo.com>
13001
13002         * gst/audioconvert/audioconvert.c: (if), (float),
13003         (audio_convert_get_func_index), (check_default),
13004         (audio_convert_clean_fmt), (audio_convert_prepare_context),
13005         (audio_convert_clean_context), (audio_convert_get_sizes),
13006         (audio_convert_convert):
13007         Cleanups.
13008
13009 2005-08-26  Wim Taymans  <wim@fluendo.com>
13010
13011         * gst/audioconvert/audioconvert.c: (if), (float),
13012         (audio_convert_get_func_index), (check_default),
13013         (audio_convert_clean_fmt), (audio_convert_prepare_context),
13014         (audio_convert_clean_context), (audio_convert_get_sizes),
13015         (audio_convert_convert):
13016         More elegant and working temp buffer selection algo.
13017
13018 2005-08-26  Wim Taymans  <wim@fluendo.com>
13019
13020         * gst/audioconvert/audioconvert.c: (if), (float),
13021         (audio_convert_get_func_index), (check_default),
13022         (audio_convert_clean_fmt), (audio_convert_prepare_context),
13023         (audio_convert_clean_context), (audio_convert_get_sizes),
13024         (get_temp_buffer), (audio_convert_convert):
13025         Use realloc else we lose our original data.
13026
13027 2005-08-26  Thomas Vander Stichele  <thomas at apestaart dot org>
13028
13029         * gst/audioresample/gstaudioresample.c:
13030           use base class' newsegment to properly timestamp
13031
13032 2005-08-26  Wim Taymans  <wim@fluendo.com>
13033
13034         * gst/audioconvert/audioconvert.c: (if), (float),
13035         (audio_convert_get_func_index), (check_default),
13036         (audio_convert_clean_fmt), (audio_convert_prepare_context),
13037         (audio_convert_clean_context), (audio_convert_get_sizes),
13038         (get_temp_buffer), (audio_convert_convert):
13039         * gst/audioconvert/gstaudioconvert.c:
13040         (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
13041         (gst_audio_convert_transform_caps),
13042         (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
13043         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
13044         Oops, allocate enough space to perform the channel mix.
13045
13046 2005-08-26  Wim Taymans  <wim@fluendo.com>
13047
13048         * gst/audioconvert/Makefile.am:
13049         * gst/audioconvert/audioconvert.c: (if), (float),
13050         (audio_convert_get_func_index), (check_default),
13051         (audio_convert_clean_fmt), (audio_convert_prepare_context),
13052         (audio_convert_clean_context), (audio_convert_get_sizes),
13053         (get_temp_buffer), (audio_convert_convert):
13054         * gst/audioconvert/audioconvert.h:
13055         * gst/audioconvert/gstaudioconvert.c:
13056         (gst_audio_convert_class_init), (gst_audio_convert_init),
13057         (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
13058         (gst_audio_convert_get_unit_size),
13059         (gst_audio_convert_transform_caps),
13060         (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
13061         (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
13062         * gst/audioconvert/gstaudioconvert.h:
13063         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
13064         (gst_channel_mix_fill_identical),
13065         (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
13066         (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
13067         (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
13068         (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
13069         (gst_channel_mix_mix):
13070         * gst/audioconvert/gstchannelmix.h:
13071         Cleanups, librarify a bit, optimize, better negotiation and more.
13072
13073 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
13074
13075         * ext/ogg/gstoggdemux.c: (ogg_find_peek):
13076         Another from MikeS:
13077         During typefinding, don't support negative offsets
13078         (offsets from the end of the stream) in our typefind->peek() function
13079         - nothing embedded in ogg ever needs them. However, we need to recognise
13080         those requests and reject them, otherwise we return invalid pointers.
13081
13082 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
13083
13084         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
13085         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
13086         (vorbisdec_finalize), (vorbis_handle_type_packet):
13087           Big shout-out to MikeS for fixing this giant memory leak.
13088           Huzzah!
13089
13090 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
13091
13092         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
13093         (audio_convert_get_unit_size):
13094           plug some leaks
13095
13096 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
13097
13098         * check/Makefile.am:
13099         * check/elements/audioconvert.c: (setup_audioconvert),
13100         (cleanup_audioconvert), (get_int_caps), (verify_convert),
13101         (GST_START_TEST), (audioconvert_suite), (main):
13102           add a test for audioconvert
13103         * gst/audioresample/gstaudioresample.c:
13104         * gst/audioresample/gstaudioresample.h:
13105           set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
13106           note that for buffers of 1/3 sec this means DURATION(c) is 
13107           one nanosecond more than for a and b
13108
13109 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
13110
13111         * check/Makefile.am:
13112         * check/elements/audioresample.c: (setup_audioresample),
13113         (cleanup_audioresample), (fail_unless_perfect_stream),
13114         (test_perfect_stream_instance), (GST_START_TEST),
13115           add a check for audioresample
13116         (audioresample_suite), (main):
13117         * check/elements/volume.c: (GST_START_TEST):
13118           remove unused method
13119         * gst/audioresample/gstaudioresample.c:
13120           set correct buffer parameters since we're changing them
13121         * gst/audioresample/resample_ref.c: (resample_scale_ref):
13122           add some debug
13123
13124 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
13125
13126         * gst/audioresample/debug.c:
13127         * gst/audioresample/gstaudioresample.c:
13128           add room for extra overlap samples when asked to transform size
13129           protect against possible mem corruption and check for discrepancies
13130           between written size and outbuffer's size so we can warn for
13131           potential problems
13132         * gst/audioresample/resample.c: (resample_init),
13133         (resample_get_output_size_for_input), (resample_get_output_size),
13134         (resample_set_n_channels), (resample_set_format):
13135           set debug level based on RESAMPLE_DEBUG env var
13136           make sure that get_output_size* returns a whole number of
13137           sample_size
13138           set sample_size each time either channel or format is set
13139         * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
13140         * gst/audioresample/resample_functable.c:
13141         (resample_scale_functable):
13142         * gst/audioresample/resample_ref.c: (resample_scale_ref):
13143           remove r->sample_size, it's done in resample.c now
13144           add some debugging to the ref implementation
13145           make sure we only give back bytes that are wholes of the sample
13146           size
13147
13148 2005-08-25  Jan Schmidt  <thaytan@mad.scientist.com>
13149         * gst/playback/gstplaybasebin.c: (fill_buffer):
13150         Revert unpopular change for GST_MESSAGE_SRC to GObject.
13151
13152 2005-08-25  Stefan Kost  <ensonic@users.sf.net>
13153
13154         * gst/volume/gstvolume.c:
13155           made set_caps function static
13156
13157 2005-08-24  Wim Taymans  <wim@fluendo.com>
13158
13159         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
13160         (gst_vorbisenc_change_state):
13161         Stop leaking taglists.
13162
13163 2005-08-24  Wim Taymans  <wim@fluendo.com>
13164
13165         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
13166         (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
13167         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
13168         (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
13169         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13170         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
13171         Parse seeking events better.
13172         Unref static caps.
13173         Generate correct newsegment events, fixes seeking in live oggs.
13174
13175         * ext/theora/theoradec.c: (theora_dec_src_query),
13176         (theora_dec_src_event), (theora_dec_src_getcaps),
13177         (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
13178         Use newsegment values to report correct play time.
13179
13180         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
13181         (vorbis_dec_src_event), (vorbis_dec_sink_event):
13182         * ext/vorbis/vorbisdec.h:
13183         Parse and use newsegment values to report correct play time.
13184
13185         * gst-libs/gst/audio/gstbaseaudiosink.c:
13186         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
13187         Clear ringbuffer on flush.
13188         Use newsegment values to calculate playback time.
13189
13190         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
13191         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
13192         Basesink does newsegment calculations for us now.
13193
13194 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
13195
13196         * check/Makefile.am:
13197         * configure.ac:
13198           add core's plugins to the mix so that playbin works
13199         * check/generic/states.c: (GST_START_TEST):
13200           set a 0 timeout on pipelines, so they don't force the next
13201           state change
13202         * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
13203         (gst_play_base_bin_change_state):
13204           remove the crappy error handling and do GST error handling
13205
13206 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
13207
13208         * check/Makefile.am:
13209         * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
13210           add same test as to core, it bitches out on playbin atm.
13211
13212 2005-08-24  Wim Taymans  <wim@fluendo.com>
13213
13214         * configure.ac:
13215         Remove audioscale.
13216
13217 2005-08-24  Wim Taymans  <wim@fluendo.com>
13218
13219         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
13220         (gst_videoscale_prepare_size), (parse_caps),
13221         (gst_videoscale_set_caps), (gst_videoscale_get_size),
13222         (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
13223         (gst_videoscale_transform):
13224         * gst/videoscale/gstvideoscale.h:
13225         Refactor, make use of BaseTranform really well.
13226
13227 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
13228
13229         * configure.ac:
13230           compile audioresample
13231         * gst/audioresample/Makefile.am:
13232         * gst/audioresample/buffer.c:
13233         * gst/audioresample/functable.c:
13234         * gst/audioresample/gstaudioresample.c:
13235         * gst/audioresample/gstaudioresample.h:
13236         * gst/audioresample/resample.c:
13237         (resample_get_output_size_for_input):
13238         * gst/audioresample/resample.h:
13239         * gst/audioresample/resample_chunk.c:
13240         * gst/audioresample/resample_functable.c:
13241         * gst/audioresample/resample_ref.c:
13242           port to use basetransform; doesn't work in all cases yet
13243
13244 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
13245
13246         * gst/audioconvert/gstaudioconvert.c:
13247         (gst_audio_convert_class_init), (gst_audio_convert_init),
13248         (audio_convert_get_unit_size), (audio_convert_transform_caps),
13249         (audio_convert_fixate_caps), (audio_convert_set_caps),
13250         (audio_convert_transform),
13251         (gst_audio_convert_buffer_to_default_format),
13252         (gst_audio_convert_buffer_from_default_format),
13253         (gst_audio_convert_channels):
13254         * gst/audioconvert/gstchannelmix.c:
13255         * gst/audioconvert/gstchannelmix.h:
13256           port to basetransform
13257         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13258         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
13259         (gst_ffmpegcsp_get_unit_size):
13260         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
13261         (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
13262           fix for basetransform changes
13263
13264 2005-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
13265
13266         * check/Makefile.am:
13267           Add CHECK_CFLAGS and LDFLAGS
13268
13269         * gst/playback/gstplaybasebin.c: (fill_buffer):
13270           GST_MESSAGE_SRC became a GObject
13271
13272 2005-08-24  Wim Taymans  <wim@fluendo.com>
13273
13274         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
13275         (gst_ring_buffer_clear_all):
13276         * gst-libs/gst/audio/gstringbuffer.h:
13277         Added function to clear the ringbuffer.
13278
13279 2005-08-24  Andy Wingo  <wingo@pobox.com>
13280
13281         * sys/v4l/gstv4lelement.c (gst_v4lelement_start) 
13282         (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
13283         of _open and _close.
13284
13285         * sys/v4l/gstv4lxoverlay.h:
13286         * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
13287         an Xv connection here, instead of all the time. Make Xv only be
13288         loaded if you axe for it. Kindof a workaround for buggy behaviour
13289         of Xv when using remote xservers (XvQueryExtension would block).
13290         (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
13291         replace the _open and _close public API. Only start the xv
13292         connection if necessary.
13293         (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
13294
13295 2005-08-23  David Schleef  <ds@schleef.org>
13296
13297         * gst/audioresample/Makefile.am: Leet audioresampling code
13298         * gst/audioresample/buffer.c:
13299         * gst/audioresample/buffer.h:
13300         * gst/audioresample/debug.c:
13301         * gst/audioresample/debug.h:
13302         * gst/audioresample/functable.c:
13303         * gst/audioresample/functable.h:
13304         * gst/audioresample/gstaudioresample.c:
13305         * gst/audioresample/gstaudioresample.h:
13306         * gst/audioresample/resample.c:
13307         * gst/audioresample/resample.h:
13308         * gst/audioresample/resample_chunk.c:
13309         * gst/audioresample/resample_functable.c:
13310         * gst/audioresample/resample_ref.c:
13311
13312 2005-08-23  Wim Taymans  <wim@fluendo.com>
13313
13314         * examples/seeking/seek.c: (make_vorbis_pipeline),
13315         (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
13316         Small seek updates.
13317
13318 2005-08-23  Andy Wingo  <wingo@pobox.com>
13319
13320         * gst-libs/gst/audio/gstbaseaudiosrc.c
13321         (gst_base_audio_src_fixate): Only fixate endianness if it is
13322         present in the caps.
13323
13324 2005-08-22  Andy Wingo  <wingo@pobox.com>
13325
13326         * ext/alsa/gstalsasink.c (gst_alsasink_get_property): 
13327         * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
13328         device-name property.
13329
13330         * gst-libs/gst/audio/gstaudiosrc.h:
13331         * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
13332         close_device in the ring buffer, like gstaudiosink.
13333
13334         * ext/alsa/gstalsamixer.h:
13335         * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
13336         macro to implement the interface without much code. Cleanups. 
13337
13338         * ext/alsa/gstalsasrc.h:
13339         * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
13340         READY.
13341
13342         * ext/alsa/Makefile.am: Add new files.
13343         * ext/alsa/gstalsamixerelement.c: 
13344         * ext/alsa/gstalsamixerelement.c: Split element code out from
13345         mixer code so that alsasrc can be a mixer too.
13346
13347 2005-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
13348
13349         * check/elements/volume.c: (setup_volume), (cleanup_volume),
13350         (GST_START_TEST):
13351         * check/elements/vorbisdec.c: (setup_vorbisdec),
13352         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
13353         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
13354         (vorbis_handle_identification_packet),
13355         (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
13356         (vorbis_handle_header_packet), (vorbis_dec_push),
13357         (vorbis_dec_chain):
13358           use the setup/teardown methods to save code.  save code is good.
13359
13360 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
13361
13362         * check/Makefile.am:
13363           add ext dir for plugins
13364           add vorbisdec test conditionally
13365         * check/elements/volume.c: (setup_volume), (cleanup_volume),
13366         (GST_START_TEST), (volume_suite):
13367           add a test with wrong caps
13368         * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
13369         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
13370           add a vorbisdec test
13371         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
13372         (gst_ogg_demux_chain), (gst_ogg_demux_loop):
13373           clean up debug output
13374         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
13375           yay, fix a segfault/security issue in vorbisdec
13376           gst-launch fakesrc ! vorbisdec wasn't happy
13377         * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
13378         (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
13379         (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
13380         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
13381         (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
13382         (gst_vorbisenc_set_metadata), (get_constraints_string),
13383         (update_start_message), (gst_vorbisenc_setup),
13384         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
13385         (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
13386         (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
13387         (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
13388         * ext/vorbis/vorbisenc.h:
13389           march in line
13390         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13391         (gst_ffmpegcsp_transform):
13392           have the kow come home
13393         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
13394           debug my func ptr
13395         * gst/volume/gstvolume.c: (volume_set_caps):
13396           add a debug
13397
13398 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
13399
13400         * Makefile.am:
13401         * check/.cvsignore:
13402         * check/Makefile.am:
13403         * check/elements/.cvsignore:
13404         * check/elements/volume.c: (chain_func), (event_func),
13405         (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
13406         (main):
13407         * configure.ac:
13408           add unit test structure for gst-plugins-base
13409           add a test for volume
13410         * gst/volume/gstvolume.c: (gst_volume_list_tracks),
13411         (gst_volume_set_volume), (gst_volume_get_volume),
13412         (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
13413         (volume_funcfind), (volume_process_float), (volume_process_int16),
13414         (volume_set_caps), (volume_transform), (volume_update_mute),
13415         (volume_update_volume), (volume_set_property),
13416         (volume_get_property):
13417           document a little; use basetransform vmethod _set_caps
13418
13419 2005-08-19  Andy Wingo  <wingo@pobox.com>
13420
13421         * ext/alsa/gstalsamixertrack.h:
13422         * ext/alsa/gstalsamixertrack.c:
13423         * ext/alsa/gstalsamixeroptions.h:
13424         * ext/alsa/gstalsamixeroptions.c:
13425         * ext/alsa/gstalsamixer.h:
13426         * ext/alsa/gstalsamixer.c: Port to 0.9.
13427
13428         * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
13429         Remove gstalsa.c and alsaclock. No more cruft here.
13430         
13431 2005-08-18  Wim Taymans  <wim@fluendo.com>
13432
13433         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13434         (gst_base_rtp_depayload_chain),
13435         (gst_base_rtp_depayload_add_to_queue),
13436         (gst_base_rtp_depayload_push),
13437         (gst_base_rtp_depayload_queue_release):
13438         * gst-libs/gst/rtp/gstbasertpdepayload.h:
13439         Fix for RTPBuffer changes.
13440
13441         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
13442         (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
13443         (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
13444         (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
13445         (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
13446         (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
13447         (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
13448         (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
13449         (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
13450         (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
13451         (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
13452         (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
13453         (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
13454         (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
13455         (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
13456         (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
13457         (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
13458         (gst_rtpbuffer_get_payload):
13459         * gst-libs/gst/rtp/gstrtpbuffer.h:
13460         Don't subclass GstBuffer but add methods and helper functions
13461         to construct and manipulate RTP packets in regular GstBuffers.
13462
13463 2005-08-18  Stefan Kost  <ensonic@users.sf.net>
13464
13465         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
13466           moved statement below switch
13467         * gst/volume/gstvolume.c: (gst_volume_class_init):
13468           added debug ptr
13469
13470 2005-08-16  Wim Taymans  <wim@fluendo.com>
13471
13472         * gst-libs/gst/audio/gstbaseaudiosrc.c:
13473         (gst_base_audio_src_change_state):
13474         Open and close device in READY<->NULL state change.
13475
13476 2005-08-16  Andy Wingo  <wingo@pobox.com>
13477
13478         * examples/seeking/Makefile.am: Don't compile non-compiling
13479         compiled objects with the compiler.
13480
13481         * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
13482         elements.
13483
13484 2005-08-12  Philippe Khalaf <burger@speedy.org>
13485         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13486         * gst-libs/gst/rtp/gstbasertpdepayload.h:
13487           Made a thread to release the queue.
13488           Removed timestamp conversion for now.
13489
13490 2005-08-10  Philippe Khalaf <burger@speedy.org>
13491         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13492         * gst-libs/gst/rtp/gstbasertpdepayload.h:
13493           Added rtp timestamp -> gst timestamp conversion.
13494           Fixed several problems with queue.
13495
13496 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
13497
13498         * gst-libs/gst/audio/gstaudioclock.h:
13499         * gst-libs/gst/audio/gstaudiofilter.h:
13500         * gst-libs/gst/audio/gstaudiosink.h:
13501         * gst-libs/gst/audio/gstaudiosrc.h:
13502         * gst-libs/gst/audio/gstbaseaudiosink.h:
13503         * gst-libs/gst/audio/gstbaseaudiosrc.h:
13504         * gst-libs/gst/audio/gstringbuffer.h:
13505         * gst-libs/gst/net/gstnetbuffer.h:
13506         * gst-libs/gst/rtp/gstbasertpdepayload.h:
13507         * gst-libs/gst/rtp/gstrtpbuffer.h:
13508           Add padding (you will need to rebuild gst-plugins-base,
13509           gst-plugins and all applications afterwards!)
13510
13511 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
13512
13513         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
13514         (gst_riff_parse_chunk):
13515           Fix bug in debug message and add some more debug messages.
13516
13517 2005-08-08  Edward Hervey  <edward@fluendo.com>
13518
13519         * gst-libs/gst/riff/riff-media.c:
13520         backported updates since branch
13521
13522 2005-08-08  Andy Wingo  <wingo@pobox.com>
13523
13524         * gst-libs/gst/audio/gstbaseaudiosink.c
13525         (gst_base_audio_sink_change_state): Open the device in NULL->READY
13526         like good elements should. Close on READY->NULL too.
13527
13528         * gst-libs/gst/audio/gstaudiosink.c
13529         (gst_audioringbuffer_open_device,
13530         (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
13531         (gst_audioringbuffer_release): Updates for new ring buffer API,
13532         hook into the new audio sink api.
13533
13534         * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
13535         (GstAudioSinkClass.close): Just open and close the device -- no
13536         resource allocation or configuration.
13537         (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
13538         vmethods, handle device setup and resource allocation.
13539
13540         * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
13541         (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
13542         base class API.
13543
13544         * gst-libs/gst/audio/gstringbuffer.h
13545         (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
13546         New vmethods.
13547
13548         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
13549         (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
13550         New API functions. The device should be opened before acquiring
13551         and closed after releasing.
13552
13553 2005-08-08  Tim-Philipp Müller  <tim at centricular dot net>
13554
13555         * gst-libs/gst/interfaces/mixer.h:
13556           Reset padding to GST_PADDING.
13557
13558 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13559
13560         * gst/playback/gstplaybin.c: (remove_sinks):
13561           Remove visualization from parent explicitely; works around some
13562           apparent refcount issue that I haven't tracked down yet.
13563
13564 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13565
13566         * ext/alsa/gstalsasink.c: (set_hwparams):
13567           Assign debug category, add negotiation debug msgs.
13568
13569 2005-08-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13570
13571         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
13572           Fix error code for file-not-found to NOT_FOUND.
13573
13574 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
13575
13576         * common/gtk-doc-plugins.mak:
13577         * docs/plugins/Makefile.am:
13578         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13579         * docs/plugins/gst-plugins-base-plugins-sections.txt:
13580           renamed to actual element names, so much nicer to look at
13581         * docs/plugins/tmpl/gstmultifdsink.sgml:
13582           remove
13583         * docs/plugins/tmpl/multifdsink.sgml:
13584         * docs/plugins/tmpl/tcpserversink.sgml:
13585           add
13586         * ext/alsa/gstalsa.c:
13587         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
13588         * ext/ogg/gstoggmux.c:
13589         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
13590         * gst/playback/gstdecodebin.c:
13591         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
13592         * gst/tcp/gsttcpserversink.c:
13593           various fixes and documentation additions
13594
13595 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
13596
13597         * common/Makefile.am:
13598         * common/gstdoc-scangobj:
13599         * common/gtk-doc-plugins.mak:
13600         * common/gtk-doc.mak:
13601           add a custom scangobj that uses the registry
13602           add a custom gtk-doc-plugins.mak that uses it
13603           some doc build fixes
13604         * configure.ac:
13605         * docs/Makefile.am:
13606         * docs/plugins/Makefile.am:
13607         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13608         * docs/plugins/gst-plugins-base-plugins-sections.txt:
13609         * docs/plugins/gst-plugins-base-plugins.types:
13610         * docs/plugins/tmpl/gstmultifdsink.sgml:
13611           add docs for one element, multifdsink
13612         * gst/adder/gstadder.h:
13613         * gst/volume/gstvolume.h:
13614           don't privatize enum
13615         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
13616         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
13617         (gst_sync_method_get_type), (gst_client_status_get_type),
13618         (gst_multifdsink_class_init),
13619         (gst_multifdsink_client_queue_buffer),
13620         (gst_multifdsink_handle_client_write):
13621         * gst/tcp/gstmultifdsink.h:
13622         * gst/tcp/gsttcp.h:
13623         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
13624         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
13625         (gst_tcpclientsink_render):
13626         * gst/tcp/gsttcpclientsink.h:
13627         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
13628         (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
13629         (gst_tcpclientsrc_start):
13630         * gst/tcp/gsttcpclientsrc.h:
13631         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
13632         (gst_tcpserversrc_init), (gst_tcpserversrc_create):
13633         * gst/tcp/gsttcpserversrc.h:
13634         * gst/typefind/gsttypefindfunctions.c:
13635           remove superfluous Type stuff
13636
13637 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13638
13639         * gst/playback/gstplaybin.c: (gen_video_element):
13640           Enable videoscale.
13641
13642 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13643
13644         * gst-libs/gst/gconf/gconf.c:
13645         * gst-libs/gst/gconf/gconf.h:
13646           Fix some Andy Problem [tm].
13647
13648 2005-08-04  Andy Wingo  <wingo@pobox.com>
13649
13650         * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
13651         * gst/ffmpegcolorspace/gstffmpegcolorspace.c
13652         (gst_ffmpegcsp_get_size): Adapt to API changes.
13653
13654         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
13655         Implement an in-place do-nothing transform.
13656
13657 2005-08-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13658
13659         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
13660         (gst_ximagesink_renegotiate_size):
13661           Do not set new window sizes yet if we prepare a new buffer size
13662           for upstream renegotiation (software scaling) at some point in the
13663           future, because this new size waqs not actually accepted yet. Once
13664           accepted, renegotiation later on will set the new sizes just fine.
13665           Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
13666           embedding testcase.
13667
13668 2005-08-03  Andy Wingo  <wingo@pobox.com>
13669
13670         * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
13671         (gst_ximagesink_buffer_alloc): 
13672         Protect the height, width, and desired_caps with the pool_lock.
13673         Fixes videotestsrc ! queue ! ximagesink.
13674
13675 2005-08-02  Edward Hervey  <edward@fluendo.com>
13676
13677         * gst/volume/gstvolume.c:
13678         include left from controller cleanup
13679
13680 2005-08-02  Jan Schmidt  <thaytan@mad.scientist.com>
13681         * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
13682           Stop collectpads before calling the parent state
13683           change function on PAUSED->READY.
13684
13685 2005-08-01  Jan Schmidt  <thaytan@mad.scientist.com>
13686         * configure.ac:
13687           When testing for X libs, use the X CFlags 
13688         * gst/adder/gstadder.c: (gst_adder_change_state):
13689           Stop the collectpads before calling parent state change function
13690           on PAUSED->READY, otherwise we deadlock deactivating pads.
13691
13692 2005-08-01  Stefan Kost  <ensonic@users.sf.net>
13693
13694         * configure.ac:
13695         * docs/libs/tmpl/gstcolorbalance.sgml:
13696         * docs/libs/tmpl/gstmixer.sgml:
13697         * examples/Makefile.am:
13698         * gst/sine/Makefile.am:
13699         * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
13700         (gst_sinesrc_set_property), (plugin_init):
13701         * gst/sine/gstsinesrc.h:
13702         * gst/volume/Makefile.am:
13703         * gst/volume/gstvolume.c: (gst_volume_set_volume),
13704         (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
13705         (volume_process_float), (volume_process_int16),
13706         (volume_set_property), (plugin_init):
13707         * gst/volume/gstvolume.h:
13708           deactivate and remove dparams (libgstcontrol)
13709
13710 2005-07-29  Wim Taymans  <wim@fluendo.com>
13711
13712         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
13713         Convert me to BaseTransform!! help..
13714
13715 2005-07-29  Andy Wingo  <wingo@pobox.com>
13716
13717         * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
13718         sinks.
13719
13720         * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
13721         support of both endiannesses.
13722
13723 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
13724
13725         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
13726           Fix confusing debug message (s/event/query/)
13727
13728 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
13729
13730         * gst/videotestsrc/videotestsrc.h:
13731           Use "_stdint.h" instead of <stdint.h>
13732
13733 2005-07-27  Wim Taymans  <wim@fluendo.com>
13734
13735         * ext/vorbis/Makefile.am:
13736         Revert wrong commit.
13737
13738 2005-07-27  Wim Taymans  <wim@fluendo.com>
13739
13740         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
13741         More compilation fixen.
13742
13743 2005-07-27  Wim Taymans  <wim@fluendo.com>
13744
13745         * gst-libs/gst/audio/gstbaseaudiosink.c:
13746         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
13747         (gst_base_audio_sink_create_ringbuffer),
13748         (gst_base_audio_sink_change_state):
13749         Fix compilation.
13750
13751 2005-07-27  Wim Taymans  <wim@fluendo.com>
13752
13753         * examples/seeking/seek.c: (setup_dynamic_link),
13754         (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
13755         (query_positions_elems), (query_positions_pads), (do_seek):
13756         Update seek example.
13757
13758         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
13759         (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
13760         (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
13761         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
13762         (gst_ogg_demux_handle_event),
13763         (gst_ogg_demux_deactivate_current_chain),
13764         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
13765         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13766         (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
13767         (gst_ogg_demux_loop):
13768         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
13769         * ext/theora/theoradec.c: (theora_dec_src_event),
13770         (theora_dec_src_getcaps), (theora_dec_sink_event),
13771         (theora_dec_push), (theora_dec_chain):
13772         * ext/vorbis/Makefile.am:
13773         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
13774         (vorbis_dec_sink_event), (vorbis_dec_push),
13775         (vorbis_handle_data_packet):
13776         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
13777         (gst_vorbisenc_chain):
13778         * gst/playback/gststreaminfo.c: (cb_probe):
13779         * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
13780         * gst/videorate/gstvideorate.c: (gst_videorate_event):
13781         * gst/videoscale/gstvideoscale.c:
13782         (gst_videoscale_handle_src_event):
13783         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
13784         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
13785         (gst_ximagesink_navigation_send_event):
13786         * sys/xvimage/xvimagesink.c:
13787         (gst_xvimagesink_navigation_send_event):
13788         Various event updates and cleanups
13789
13790 2005-07-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13791
13792         * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
13793           Fix segfault for I420/YV12.
13794
13795 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13796
13797         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
13798           Report bitrate.
13799
13800 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13801
13802         * gst/playback/gstplaybin.c: (gen_video_element),
13803         (gen_audio_element):
13804           Switch to auto*sink elements as default sinks; add volume element
13805           so that volume control in totem works.
13806
13807 2005-07-21  Wim Taymans  <wim@fluendo.com>
13808
13809         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
13810         * gst/playback/gstplaybin.c: (setup_sinks),
13811         (gst_play_bin_change_state):
13812         Refcount fix and more comments.
13813
13814 2005-07-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13815
13816         * sys/ximage/Makefile.am:
13817         * sys/ximage/ximage.c: (plugin_init):
13818         * sys/ximage/ximagesink.c:
13819         Prepare for adding ximagesrc, rename of plugin to ximage etc.
13820         
13821
13822 2005-07-21  Wim Taymans  <wim@fluendo.com>
13823
13824         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
13825         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
13826         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
13827         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13828         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
13829         (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
13830         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
13831         (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
13832         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
13833         Generate correct disconts for live chained oggs.
13834
13835         * gst-libs/gst/audio/gstbaseaudiosink.c:
13836         (gst_base_audio_sink_render),
13837         (gst_base_audio_sink_create_ringbuffer),
13838         (gst_base_audio_sink_change_state):
13839         Handle discont math correctly.
13840
13841         * gst/playback/gstplaybin.c: (add_sink):
13842         Some small debug cleanup.
13843
13844 2005-07-21  Wim Taymans  <wim@fluendo.com>
13845
13846         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
13847         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
13848         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
13849         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13850         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
13851         (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
13852         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
13853         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
13854         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13855         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
13856         (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
13857         (gst_ogg_demux_change_state), (gst_ogg_print):
13858         Reorganize code to send the right disconts when in streaming
13859         mode.
13860
13861 2005-07-20  Andy Wingo  <wingo@pobox.com>
13862
13863         * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
13864         fix (?), fixes a seggie mcfalterson (#310894).
13865
13866 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13867
13868         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
13869         (gst_ogg_mux_set_header_on_caps):
13870         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
13871         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
13872         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
13873         * gst-libs/gst/audio/multichannel.c:
13874         (gst_audio_set_channel_positions),
13875         (gst_audio_set_structure_channel_positions_list):
13876         * gst/playback/gstdecodebin.c: (dynamic_create):
13877         * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
13878         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
13879           Fixes for API changes in core.
13880
13881 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13882
13883         * gst/playback/gstplaybasebin.c: (fill_buffer):
13884           Use _new_custom() so we can set custom message types for buffering
13885           messages.
13886
13887 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13888
13889         * configure.ac:
13890         * gst-libs/gst/Makefile.am:
13891         * gst-libs/gst/gconf/.cvsignore:
13892         * gst-libs/gst/gconf/Makefile.am:
13893         * gst-libs/gst/gconf/test-gconf.c:
13894         * pkgconfig/Makefile.am:
13895         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
13896         * pkgconfig/gstreamer-gconf.pc.in:
13897           Remove gconf stuff, use gconf elements instead from now on.
13898
13899 2005-07-20  Wim Taymans  <wim@fluendo.com>
13900
13901         * gst-libs/gst/audio/TODO:
13902         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
13903         (gst_audio_clock_get_internal_time):
13904         * gst-libs/gst/audio/gstaudioclock.h:
13905         * gst-libs/gst/audio/gstbaseaudiosink.c:
13906         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
13907         (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
13908         (gst_base_audio_sink_render),
13909         (gst_base_audio_sink_create_ringbuffer),
13910         (gst_base_audio_sink_change_state):
13911         Make sure the audio clock always returns an increasing value.
13912
13913 2005-07-19  Andy Wingo  <wingo@pobox.com>
13914
13915         * gst/videotestsrc/: Cleanups.
13916
13917 2005-07-19  Wim Taymans  <wim@fluendo.com>
13918
13919         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
13920         Better debugging.
13921
13922 2005-07-19  Wim Taymans  <wim@fluendo.com>
13923
13924         * examples/seeking/seek.c: (make_dv_pipeline),
13925         (make_vorbis_theora_pipeline), (query_rates),
13926         (query_positions_elems), (query_positions_pads), (do_seek):
13927         Make correct DV pipeline.
13928
13929 2005-07-18  Andy Wingo  <wingo@pobox.com>
13930
13931         * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
13932         default. Also because it's the only thing that really works. (This
13933         is used in the GConf elements).
13934         Use AS_LIBTOOL_TAGS.
13935
13936 2005-07-18  Wim Taymans  <wim@fluendo.com>
13937
13938         * gst/playback/gstdecodebin.c: (remove_element_chain):
13939         * gst/playback/gstplaybin.c: (add_sink):
13940         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
13941         (gst_stream_info_set_mute):
13942         * gst/playback/gststreamselector.c:
13943         (gst_stream_selector_get_linked_pad),
13944         (gst_stream_selector_getcaps), (gst_stream_selector_chain):
13945         More leak and compile fixes.
13946
13947 2005-07-18  Wim Taymans  <wim@fluendo.com>
13948
13949         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
13950         (query_rates), (query_positions_elems), (query_positions_pads),
13951         (do_seek), (seek_cb), (stop_seek):
13952         Updated seek example. 
13953
13954         * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
13955         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
13956         (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
13957         * gst/playback/gstplaybin.c: (add_sink):
13958         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
13959         (gst_stream_info_set_mute):
13960         Some refcount leak fixes.
13961
13962 2005-07-16  Wim Taymans  <wim@fluendo.com>
13963
13964         * gst-libs/gst/audio/gstbaseaudiosink.c:
13965         (gst_base_audio_sink_render):
13966         Align samples even if we have roundoff errors in the 
13967         timestamp conversion.
13968
13969 2005-07-16  Wim Taymans  <wim@fluendo.com>
13970
13971         * docs/libs/tmpl/gstringbuffer.sgml:
13972         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
13973         (query_rates), (query_positions_elems), (query_positions_pads),
13974         (update_scale), (do_seek):
13975         Updated seek example.
13976
13977         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
13978         (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
13979         (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
13980         (gst_ogg_demux_loop):
13981         Push out correct discont values.
13982
13983         * ext/theora/theoradec.c: (theora_dec_src_convert),
13984         (theora_dec_sink_convert), (theora_dec_src_getcaps),
13985         (theora_dec_sink_event), (theora_handle_type_packet),
13986         (theora_handle_header_packet), (theora_dec_push),
13987         (theora_handle_data_packet), (theora_dec_chain),
13988         (theora_dec_change_state):
13989         Better timestamping.
13990
13991         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
13992         (vorbis_dec_sink_event), (vorbis_dec_push),
13993         (vorbis_handle_data_packet), (vorbis_dec_chain):
13994         * ext/vorbis/vorbisdec.h:
13995         Better timestamping.
13996
13997         * gst-libs/gst/audio/gstbaseaudiosink.c:
13998         (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
13999         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
14000         Handle syncing on timestamps instead of sample offsets. Make
14001         use of DISCONT values as described in design docs.
14002
14003         * gst-libs/gst/audio/gstbaseaudiosrc.c:
14004         (gst_base_audio_src_get_time):
14005         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
14006         (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
14007         (gst_ring_buffer_read):
14008         * gst-libs/gst/audio/gstringbuffer.h:
14009         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
14010         (gst_ximagesink_show_frame):
14011         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
14012         Correcly convert buffer timestamp to stream time.
14013
14014 2005-07-16  Wim Taymans  <wim@fluendo.com>
14015
14016         * gst/audioconvert/gstaudioconvert.c:
14017         (gst_audio_convert_get_buffer):
14018         Timestamp buffers correctly.
14019
14020         * gst/playback/gstplaybin.c: (gen_video_element):
14021         Make internal fakesink silent.
14022
14023 2005-07-15  Wim Taymans  <wim@fluendo.com>
14024
14025         * gst/ffmpegcolorspace/Makefile.am:
14026         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14027         (gst_ffmpegcsp_caps_remove_format_info),
14028         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
14029         (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
14030         (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
14031         (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
14032         Ported ffmpegcolorspace to basetransform.
14033
14034         * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
14035         * gst/volume/gstvolume.c: (volume_transform):
14036         Ported to new API.
14037
14038 2005-07-14  Wim Taymans  <wim@fluendo.com>
14039
14040         * gst/videotestsrc/Makefile.am:
14041         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
14042         (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
14043         (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
14044         (gst_videotestsrc_init), (gst_videotestsrc_event),
14045         (gst_videotestsrc_create), (gst_videotestsrc_start),
14046         (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
14047         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
14048         (gst_videotestsrc_get_property):
14049         * gst/videotestsrc/gstvideotestsrc.h:
14050         Make videotestsrc a pushsrc.
14051
14052 2005-07-14  Wim Taymans  <wim@fluendo.com>
14053
14054         * gst/tcp/gstfdset.c: (gst_fdset_free):
14055         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
14056         (gst_multifdsink_add), (gst_multifdsink_remove),
14057         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
14058         (gst_multifdsink_remove_client_link),
14059         (gst_multifdsink_client_queue_data),
14060         (gst_multifdsink_client_queue_caps),
14061         (gst_multifdsink_client_queue_buffer),
14062         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
14063         (gst_multifdsink_stop):
14064         * gst/tcp/gstmultifdsink.h:
14065         0.8 backporting.
14066
14067         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
14068         Also draw image when not from a pool.
14069
14070 2005-07-14  Wim Taymans  <wim@fluendo.com>
14071
14072         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
14073         (mute_stream), (silence_stream):
14074         Small debug additions.
14075
14076 2005-07-14  Wim Taymans  <wim@fluendo.com>
14077
14078         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
14079         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
14080         (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
14081         Better error recovery, ignore unconnected pads and
14082         non-fatal errors.
14083
14084 2005-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
14085
14086         * docs/libs/tmpl/gstaudio.sgml:
14087         * docs/libs/tmpl/gstcolorbalance.sgml:
14088         * docs/libs/tmpl/gstgconf.sgml:
14089         * docs/libs/tmpl/gstmixer.sgml:
14090         * docs/libs/tmpl/gstringbuffer.sgml:
14091         * docs/libs/tmpl/gsttuner.sgml:
14092         * gst-libs/gst/audio/gstbaseaudiosrc.c:
14093         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
14094         (gst_tcpclientsrc_class_init):
14095         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
14096         (gst_tcpserversrc_class_init):
14097         * sys/v4l/gstv4lelement.c:
14098           more autistic cleanliness in functions/names/defines
14099
14100 2005-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
14101
14102         * configure.ac:
14103           make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
14104           added manually to each Makefile.am so we are sure it goes
14105           *last* and doesn't add -L flags before linking in libs of our
14106           own, like, say, internal .la libs, that then accidentally pick
14107           up the installed copy.
14108         * docs/libs/Makefile.am:
14109         * ext/alsa/Makefile.am:
14110         * ext/cdparanoia/Makefile.am:
14111         * ext/gnomevfs/Makefile.am:
14112         * ext/libvisual/Makefile.am:
14113         * ext/ogg/Makefile.am:
14114         * ext/theora/Makefile.am:
14115         * ext/vorbis/Makefile.am:
14116         * gst-libs/gst/video/Makefile.am:
14117         * gst/adder/Makefile.am:
14118         * gst/audioconvert/Makefile.am:
14119         * gst/audiorate/Makefile.am:
14120         * gst/audioscale/Makefile.am:
14121         * gst/ffmpegcolorspace/Makefile.am:
14122         * gst/playback/Makefile.am:
14123         * gst/sine/Makefile.am:
14124         * gst/subparse/Makefile.am:
14125         * gst/tags/Makefile.am:
14126         * gst/tcp/Makefile.am:
14127         * gst/typefind/Makefile.am:
14128         * gst/videorate/Makefile.am:
14129         * gst/videoscale/Makefile.am:
14130         * gst/videotestsrc/Makefile.am:
14131         * gst/volume/Makefile.am:
14132         * sys/v4l/Makefile.am:
14133         * sys/ximage/Makefile.am:
14134         * sys/xvimage/Makefile.am:
14135           adapt properly to this change. This should make sure that
14136           plugins and libs properly link to the as-yet-uninstalled
14137           copies of stuff like libgstinterfaces and libgstvideo
14138
14139 2005-07-13  Andy Wingo  <wingo@pobox.com>
14140
14141         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
14142         (gst_v4lsrc_fixate): Fixate on format as well.
14143
14144         * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy) 
14145         (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
14146         buffer points to it.
14147         (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
14148         rather just doing X calls ourselves. Also fixes a memleak.
14149
14150 2005-07-12  Andy Wingo  <wingo@pobox.com>
14151
14152         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property) 
14153         (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init) 
14154         (gst_v4lsrc_create): Re-add the copy-mode property, default to
14155         TRUE to avoid deadlocks if an element holds on to our buffers.
14156
14157 2005-07-11  Thomas Vander Stichele  <thomas at apestaart dot org>
14158
14159         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
14160         (gst_sinesrc_init), (gst_sinesrc_create),
14161         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
14162         (gst_sinesrc_start):
14163         * gst/sine/gstsinesrc.h:
14164           removing num-buffers property before moving it
14165
14166 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
14167
14168         * configure.ac:
14169           use overridable ERROR_CFLAGS
14170         * docs/libs/gst-plugins-base-libs.types:
14171         * docs/libs/tmpl/gstringbuffer.sgml:
14172         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
14173         (gst_alsasink_class_init):
14174         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
14175         (gst_alsasrc_class_init):
14176         * gst-libs/gst/audio/audio.h:
14177         * gst-libs/gst/audio/gstaudioclock.h:
14178         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
14179         (gst_audio_filter_base_init), (gst_audio_filter_class_init),
14180         (gst_audio_filter_link), (gst_audio_filter_init),
14181         (gst_audio_filter_chain), (gst_audio_filter_set_property),
14182         (gst_audio_filter_get_property),
14183         (gst_audio_filter_class_add_pad_templates):
14184         * gst-libs/gst/audio/gstaudiofilter.h:
14185         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
14186         (gst_audio_filter_template_get_type),
14187         (gst_audio_filter_template_base_init),
14188         (gst_audio_filter_template_class_init),
14189         (gst_audio_filter_template_init),
14190         (gst_audio_filter_template_set_property),
14191         (gst_audio_filter_template_get_property), (plugin_init),
14192         (gst_audio_filter_template_setup),
14193         (gst_audio_filter_template_filter),
14194         (gst_audio_filter_template_filter_inplace):
14195         * gst-libs/gst/audio/gstaudiosink.c:
14196         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14197         (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
14198         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
14199         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
14200         (gst_audio_sink_base_init), (gst_audio_sink_class_init),
14201         (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
14202         * gst-libs/gst/audio/gstaudiosink.h:
14203         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
14204         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
14205         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14206         (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
14207         (gst_audioringbuffer_delay), (gst_audio_src_base_init),
14208         (gst_audio_src_class_init), (gst_audio_src_init),
14209         (gst_audio_src_create_ringbuffer):
14210         * gst-libs/gst/audio/gstaudiosrc.h:
14211         * gst-libs/gst/audio/gstbaseaudiosink.c:
14212         (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
14213         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
14214         (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
14215         (gst_base_audio_sink_set_property),
14216         (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
14217         (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
14218         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
14219         (gst_base_audio_sink_create_ringbuffer),
14220         (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
14221         * gst-libs/gst/audio/gstbaseaudiosink.h:
14222         * gst-libs/gst/audio/gstbaseaudiosrc.c:
14223         (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
14224         (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
14225         (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
14226         (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
14227         (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
14228         (gst_base_audio_src_event), (gst_base_audio_src_create),
14229         (gst_base_audio_src_create_ringbuffer),
14230         (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
14231         * gst-libs/gst/audio/gstbaseaudiosrc.h:
14232         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
14233         (gst_ring_buffer_class_init), (gst_ring_buffer_init),
14234         (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
14235         (gst_ring_buffer_debug_spec_caps),
14236         (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
14237         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
14238         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
14239         (gst_ring_buffer_start), (gst_ring_buffer_pause),
14240         (gst_ring_buffer_stop), (gst_ring_buffer_delay),
14241         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
14242         (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
14243         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
14244         (gst_ring_buffer_clear):
14245         * gst-libs/gst/audio/gstringbuffer.h:
14246         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
14247         (gst_video_sink_class_init), (gst_video_sink_get_type):
14248         * gst-libs/gst/video/videosink.h:
14249         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
14250         (gst_multifdsink_class_init),
14251         (gst_multifdsink_handle_client_write),
14252         (gst_multifdsink_change_state):
14253         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
14254         (gst_tcpclientsink_setcaps):
14255         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
14256         (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
14257         (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
14258         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
14259         (gst_ximagesink_send_pending_navigation),
14260         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
14261         (gst_ximagesink_class_init), (gst_ximagesink_get_type):
14262         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
14263         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
14264         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
14265         (gst_xvimagesink_send_pending_navigation),
14266         (gst_xvimagesink_navigation_send_event),
14267         (gst_xvimagesink_set_xwindow_id),
14268         (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
14269         (gst_xvimagesink_get_type):
14270         more macro splitting
14271
14272 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
14273
14274         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
14275           plug a memleak, allows me to import 1479 albums in one go
14276           in jamboree
14277         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14278         (vorbis_handle_type_packet), (vorbis_dec_chain),
14279         (vorbis_dec_change_state):
14280           fix some format strings
14281
14282 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
14283
14284         * docs/libs/tmpl/gstcolorbalance.sgml:
14285         * docs/libs/tmpl/gstmixer.sgml:
14286         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
14287         (gst_alsasink_set_property), (gst_alsasink_get_property):
14288         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
14289         (gst_alsasrc_set_property), (gst_alsasrc_get_property):
14290           add device property
14291
14292 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
14293
14294         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
14295         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
14296         (audiocast_register_listener), (audiocast_thread_run),
14297         (gst_gnomevfssrc_send_additional_headers_callback),
14298         (gst_gnomevfssrc_received_headers_callback),
14299         (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
14300         (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
14301         (gst_gnomevfssrc_get_size):
14302           add/clean up debugging
14303         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
14304           cleanups
14305
14306 2005-07-07  Andy Wingo  <wingo@pobox.com>
14307
14308         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
14309         framerate. Need to get a handle on when exactly this function is
14310         called, tho.
14311
14312         * sys/v4l/v4lsrc_calls.h:
14313         * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
14314         (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
14315         (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
14316
14317         * sys/v4l/v4l_calls.h: Cast to V4lElement.
14318         * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
14319         v4lelements are sources.
14320
14321         * sys/v4l/gstv4lxoverlay.h:
14322         * sys/v4l/gstv4lxoverlay.c:
14323         * sys/v4l/gstv4ltuner.h:
14324         * sys/v4l/gstv4ltuner.c: Header loc fixen.
14325         
14326         * sys/v4l/gstv4lsrc.h:
14327         * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
14328         PushSrc/BaseSrc. Removed most sync-related properties, videorate
14329         or something should handle that. Made a live source.
14330
14331         * sys/v4l/gstv4lelement.h:
14332         * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
14333         signals. Some cleanups.
14334
14335         * sys/v4l/gstv4lcolorbalance.h: Interface header update.
14336
14337         * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
14338         stuff.
14339
14340         * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
14341         stuff.
14342
14343         * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
14344
14345 2005-07-07  Wim Taymans  <wim@fluendo.com>
14346
14347         * ext/theora/theoradec.c: (theora_get_query_types),
14348         (theora_dec_src_getcaps), (theora_dec_push):
14349         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
14350         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
14351         Remove deprecated/unused query types.
14352
14353 2005-07-06  Wim Taymans  <wim@fluendo.com>
14354
14355         * ext/alsa/Makefile.am:
14356         * ext/alsa/gstalsaplugin.c: (plugin_init):
14357         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
14358         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
14359         (gst_alsasrc_dispose), (gst_alsasrc_base_init),
14360         (gst_alsasrc_class_init), (gst_alsasrc_init),
14361         (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
14362         (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
14363         (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
14364         (gst_alsasrc_reset):
14365         * ext/alsa/gstalsasrc.h:
14366         * gst-libs/gst/audio/Makefile.am:
14367         * gst-libs/gst/audio/gstaudiosink.c:
14368         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14369         (gst_audioringbuffer_start):
14370         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
14371         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
14372         (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
14373         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
14374         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
14375         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
14376         (gst_audiosrc_base_init), (gst_audiosrc_class_init),
14377         (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
14378         * gst-libs/gst/audio/gstaudiosrc.h:
14379         * gst-libs/gst/audio/gstbaseaudiosink.c:
14380         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
14381         (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
14382         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
14383         * gst-libs/gst/audio/gstbaseaudiosrc.c:
14384         (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
14385         (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
14386         (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
14387         (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
14388         (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
14389         (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
14390         (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
14391         (gst_baseaudiosrc_change_state):
14392         * gst-libs/gst/audio/gstbaseaudiosrc.h:
14393         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
14394         (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
14395         (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
14396         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
14397         (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
14398         (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
14399         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
14400         * gst-libs/gst/audio/gstringbuffer.h:
14401         Added audiosource base classes.
14402         Ported alsasrc, still very basic.
14403
14404 2005-07-06  Wim Taymans  <wim@fluendo.com>
14405
14406         * ext/theora/theoradec.c: (theora_dec_src_getcaps),
14407         (theora_dec_push), (theora_handle_data_packet):
14408         Prepare for better timestamp fix later.
14409
14410         * gst/audioconvert/gstaudioconvert.c:
14411         List most accurate caps first
14412
14413         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
14414         Use proper pad task function.
14415
14416         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
14417         (gst_xvimagesink_show_frame):
14418         Fix deadlock when alloc failed.
14419
14420 2005-07-05  Andy Wingo  <wingo@pobox.com>
14421
14422         * ext/gnomevfs/gstgnomevfssrc.c:
14423         * gst/sine/gstsinesrc.c:
14424         * gst/tcp/gsttcpserversrc.c:
14425         * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
14426
14427         * sys/v4l/: Port from 0.8.
14428
14429         * Many files: Null if we got it....
14430
14431 2005-07-05  Andy Wingo  <wingo@pobox.com>
14432
14433         * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read): 
14434         * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
14435         Signedness fixes.
14436
14437 2005-07-05  Wim Taymans  <wim@fluendo.com>
14438
14439         * configure.ac:
14440         * gst/tcp/Makefile.am:
14441         * gst/tcp/README:
14442         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
14443         (gst_multifdsink_base_init), (gst_multifdsink_class_init),
14444         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
14445         (is_sync_frame), (gst_multifdsink_handle_client_write),
14446         (gst_multifdsink_render), (gst_multifdsink_start),
14447         (gst_multifdsink_stop), (gst_multifdsink_change_state):
14448         * gst/tcp/gstmultifdsink.h:
14449         * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
14450         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
14451         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
14452         * gst/tcp/gsttcp.h:
14453         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
14454         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
14455         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
14456         (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
14457         * gst/tcp/gsttcpclientsink.h:
14458         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
14459         (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
14460         (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
14461         (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
14462         (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
14463         * gst/tcp/gsttcpclientsrc.h:
14464         * gst/tcp/gsttcpplugin.c: (plugin_init):
14465         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
14466         * gst/tcp/gsttcpserversink.h:
14467         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
14468         (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
14469         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
14470         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
14471         (gst_tcpserversrc_stop):
14472         * gst/tcp/gsttcpserversrc.h:
14473         * gst/tcp/gsttcpsink.c:
14474         * gst/tcp/gsttcpsink.h:
14475         * gst/tcp/gsttcpsrc.c:
14476         * gst/tcp/gsttcpsrc.h:
14477         Ported tcp plugins to 0.9. 
14478         
14479
14480 2005-07-05  Andy Wingo  <wingo@pobox.com>
14481
14482         * gst/playback/gstplaybasebin.c (fill_buffer):
14483         message_new_application fixen.
14484
14485         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
14486         Style fix.
14487
14488 2005-07-04  Wim Taymans  <wim@fluendo.com>
14489
14490         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
14491         Set caps on output buffer.
14492
14493 2005-07-04  Andy Wingo  <wingo@pobox.com>
14494
14495         * ext/gnomevfs/gstgnomevfssrc.c
14496         (gst_gnomevfssrc_received_headers_callback) 
14497         (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
14498         hopefully.
14499
14500         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
14501         No refcount leakage.
14502
14503         * configure.ac: Enable -Werror.
14504         
14505         * ext/theora/theoradec.c (theora_dec_src_getcaps):
14506         * gst/audioconvert/bufferframesconvert.c
14507         (buffer_frames_convert_fixate):
14508         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
14509         (gst_audio_convert_fixate):
14510         * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
14511         (gst_sinesrc_create): Fixate func changes.
14512         
14513         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
14514         (gst_ximagesink_buffer_alloc): Unused var.
14515
14516 2005-07-01  Andy Wingo  <wingo@pobox.com>
14517
14518         * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
14519         getcaps to do explicit caps. Needs to be done in all decoders,
14520         possibly via a base class.
14521
14522         * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
14523
14524         * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
14525         caps on the sink pad, just rely on the pad template. Also, setting
14526         ANY caps on a pad is not valid because the caps are not fixed.
14527
14528         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
14529         caps on the buffer, and get the width from the desired_caps if
14530         they're set.
14531         (gst_ximagesink_renegotiate_size): Implement via setting the
14532         desired_caps on the ximagesink.
14533         (gst_ximagesink_setcaps): Only reset the width of the player if it
14534         wasn't already set. Not sure if this is right.
14535         (gst_ximagesink_show_frame): Memcpy only for normal buffers.
14536
14537         * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
14538         that the user wants. NULL unless the window has been resized.
14539
14540         * gst/volume/gstvolume.c (volume_transform): Adapt to
14541         basetransform refcount changes.
14542         
14543 2005-07-01  Andy Wingo  <wingo@pobox.com>
14544
14545         * gst/videoscale/gstvideoscale.c:
14546         * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
14547         from BaseTransform, implements a transform_caps. Removed dead code
14548         including some PAR stuff that was never reached -- should probably
14549         be added back somehow.
14550
14551 2005-07-01  Andy Wingo  <wingo@pobox.com>
14552
14553         * gst/videoscale: Merge David's work from 0.8 branch. Changes to
14554         come later.
14555
14556 2005-06-30  Thomas Vander Stichele  <thomas at apestaart dot org>
14557
14558         * configure.ac:
14559         * docs/libs/Makefile.am:
14560         * docs/libs/gst-plugins-libs.types:
14561         * ext/alsa/Makefile.am:
14562         * ext/alsa/gstalsamixer.h:
14563         * ext/alsa/gstalsamixeroptions.h:
14564         * ext/alsa/gstalsamixertrack.h:
14565         * gst-libs/gst/Makefile.am:
14566         * gst-libs/gst/colorbalance/.cvsignore:
14567         * gst-libs/gst/colorbalance/Makefile.am:
14568         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
14569         * gst-libs/gst/colorbalance/colorbalance.c:
14570         * gst-libs/gst/colorbalance/colorbalance.h:
14571         * gst-libs/gst/colorbalance/colorbalance.vcproj:
14572         * gst-libs/gst/colorbalance/colorbalancechannel.c:
14573         * gst-libs/gst/colorbalance/colorbalancechannel.h:
14574         * gst-libs/gst/interfaces/Makefile.am:
14575         * gst-libs/gst/interfaces/colorbalance.c:
14576         (gst_color_balance_class_init):
14577         * gst-libs/gst/interfaces/colorbalance.h:
14578         * gst-libs/gst/interfaces/interfaces-marshal.list:
14579         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
14580         * gst-libs/gst/interfaces/mixer.h:
14581         * gst-libs/gst/interfaces/mixeroptions.h:
14582         * gst-libs/gst/interfaces/navigation.c:
14583         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
14584         * gst-libs/gst/interfaces/tuner.h:
14585         * gst/volume/Makefile.am:
14586         * gst/volume/gstvolume.c:
14587         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
14588         * sys/ximage/Makefile.am:
14589         * sys/ximage/ximagesink.c:
14590         * sys/xvimage/Makefile.am:
14591         * sys/xvimage/xvimagesink.c:
14592           fold in all interfaces into an interfaces dir, preserving CVS
14593           history
14594
14595 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14596
14597         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
14598           Fix build after riff changes.
14599
14600 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14601
14602         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
14603         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
14604         (gst_riff_create_video_template_caps),
14605         (gst_riff_create_audio_template_caps),
14606         (gst_riff_create_iavs_template_caps):
14607         * gst-libs/gst/riff/riff-media.h:
14608         * gst-libs/gst/riff/riff-read.h:
14609         * gst-libs/gst/riff/riff.c: (gst_riff_init):
14610           Add gst_riff_init() to initialize the debug category, instead
14611           of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
14612
14613 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14614
14615         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
14616           Oops, I shouldn't apply hacks.
14617
14618 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14619
14620         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
14621           Remove pad_loop function which doesn't work.
14622
14623 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14624
14625         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
14626           Send EOS when deactivating.
14627         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
14628         (check_queue), (queue_threshold_reached), (queue_out_of_data),
14629         (gen_preroll_element), (probe_triggered), (mute_stream),
14630         (silence_stream), (new_decoded_pad), (setup_substreams),
14631         (set_active_source):
14632         * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
14633         (remove_sinks), (add_sink):
14634         * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
14635           Change for new probe API.
14636
14637 2005-06-29  Wim Taymans  <wim@fluendo.com>
14638
14639         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
14640         * gst-libs/gst/audio/gstbaseaudiosink.c:
14641         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
14642         (gst_baseaudiosink_change_state):
14643         * gst-libs/gst/audio/gstbaseaudiosink.h:
14644         * gst-libs/gst/audio/gstringbuffer.c:
14645         (gst_ringbuffer_set_callback):
14646         Fix compilation error.
14647         Ringbuffer starts out as not running.
14648         Free our clock in dispose.
14649         When releasing the ringbuffer we need to renegotiate so
14650         clear the pad caps.
14651
14652 2005-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
14653
14654         * autogen.sh:
14655         * configure.ac:
14656         * docs/Makefile.am:
14657         * docs/libs/Makefile.am:
14658         * docs/libs/gst-plugins-libs-docs.sgml:
14659         * docs/libs/gst-plugins-libs-sections.txt:
14660         * docs/libs/gst-plugins-libs.types:
14661         * docs/libs/tmpl/gstaudio.sgml:
14662         * docs/libs/tmpl/gstcolorbalance.sgml:
14663         * docs/libs/tmpl/gstringbuffer.sgml:
14664         * gst-libs/gst/audio/gstringbuffer.c:
14665         (gst_ringbuffer_set_callback):
14666           reinstate gtk-doc docs for plugin libs
14667
14668 2005-06-28  Wim Taymans  <wim@fluendo.com>
14669
14670         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14671         (gst_ogg_demux_init):
14672         Removed pad loop function.
14673
14674 2005-06-28  Wim Taymans  <wim@fluendo.com>
14675
14676         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
14677         If we're building a chain we are not in an error case
14678         when we queue a buffer.
14679
14680 2005-06-28  Andy Wingo  <wingo@pobox.com>
14681
14682         * *.c: Don't cast to GstObject before reffing/unreffing.
14683
14684 2005-06-27  Andy Wingo  <wingo@pobox.com>
14685
14686         * gst/videotestsrc/gstvideotestsrc.c
14687         (gst_videotestsrc_activate_push): Activation API changes.
14688
14689         * gst/playback/gstdecodebin.c (gst_decode_bin_change_state) 
14690         (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
14691         they have refs on the decodebin.
14692
14693         * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
14694         parent class.
14695         (gst_ogg_pad_typefind): Don't leak a pad ref.
14696         (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
14697         (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push) 
14698         (gst_ogg_demux_sink_activate_pull): Changes for activation API.
14699
14700 2005-06-27  Edward Hervey  <edward@fluendo.com>
14701
14702         * ext/theora/theoradec.c: (theora_dec_change_state): 
14703         re-arranged call to parent's state change in order to avoid locks (or
14704         worse).
14705
14706 2005-06-26  Edward Hervey  <edward@fluendo.com>
14707
14708         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
14709         2nd argument of 'unknow-type' signal is a GstCaps and not a
14710         GstMiniObject
14711
14712 2005-06-25  Jan Schmidt  <thaytan@mad.scientist.com>
14713         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
14714           Set the worker thread's running flag to TRUE before starting the
14715           thread.
14716         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
14717           Catch a failure to add typefind to the bin.
14718
14719 2005-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
14720
14721         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
14722         (gst_sinesrc_init), (gst_sinesrc_create),
14723         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
14724         (gst_sinesrc_start):
14725         * gst/sine/gstsinesrc.h:
14726           add num-buffers and timestamp-offset properties
14727         * gst/videotestsrc/gstvideotestsrc.c:
14728         (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
14729         (gst_videotestsrc_get_property):
14730           add timestamp-offset property
14731
14732 2005-06-23  Christian Schaller  <uraeus@gnome.org>
14733
14734         * configure.ac: add videorate
14735         * gst-plugins-base.spec.in: add videorate
14736
14737 2005-06-23  Wim Taymans  <wim@fluendo.com>
14738
14739         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14740         (gst_videorate_getcaps), (gst_videorate_setcaps),
14741         (gst_videorate_event), (gst_videorate_chain):
14742         Fixed videorate, fixating an already fixated caps is not
14743         an error.
14744
14745 2005-06-23  Wim Taymans  <wim@fluendo.com>
14746
14747         * ext/ogg/README:
14748         * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
14749         Buffer on caps is not boxed anymore.
14750
14751 2005-06-22  Wim Taymans  <wim@fluendo.com>
14752
14753         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
14754         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
14755         Set buffers on caps as miniobjects and not as boxed.
14756
14757 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
14758
14759         * configure.ac:
14760           back to HEAD
14761
14762 === release 0.9.1 ===
14763
14764 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
14765
14766         * .cvsignore:
14767         * NEWS:
14768         * README:
14769         * RELEASE:
14770         * configure.ac:
14771         * po/af.po:
14772         * po/az.po:
14773         * po/cs.po:
14774         * po/en_GB.po:
14775         * po/hu.po:
14776         * po/it.po:
14777         * po/nb.po:
14778         * po/nl.po:
14779         * po/or.po:
14780         * po/sq.po:
14781         * po/sr.po:
14782         * po/sv.po:
14783         * po/uk.po:
14784         * po/vi.po:
14785           updates for release
14786
14787 2005-06-09  Andy Wingo  <wingo@pobox.com>
14788
14789         * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
14790         
14791 2005-06-09  Andy Wingo  <wingo@pobox.com>
14792
14793         * configure.ac:
14794         * gst-libs/gst/Makefile.am:
14795         * gst-libs/gst/net/Makefile.am:
14796         Add gstnet to build.
14797
14798 2005-06-09  Andy Wingo  <wingo@pobox.com>
14799
14800         * gst-libs/gst/gconf/gconf.c:
14801         * gst/playback/test.c:
14802         * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
14803         fixes.
14804
14805         * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
14806
14807         * ext/theora/theoraenc.c (theora_enc_chain): 
14808         * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
14809
14810         * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
14811         RealPad.
14812
14813 2005-06-02  Wim Taymans  <wim@fluendo.com>
14814
14815         * gst-libs/gst/net/Makefile.am:
14816         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
14817         * pkgconfig/gstreamer-libs.pc.in:
14818         Added net stuff, version net lib.
14819
14820 2005-06-02  Wim Taymans  <wim@fluendo.com>
14821
14822         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
14823         (query_rates), (query_positions_elems), (query_positions_pads),
14824         (do_seek):
14825         Updated seek example.
14826
14827 2005-06-02  Andy Wingo  <wingo@pobox.com>
14828
14829         * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
14830         * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
14831         list.
14832
14833         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
14834         remove the typefind, the bin dispose will do it for us. When it's
14835         removed and unreffed, the signal handler will be disconnected,
14836         too.
14837         (unlinked): It's too difficult to disconnect from unlinked
14838         handlers, as they are on pads not elements. Just punt if the pads
14839         aren't grandkids of the bin.
14840
14841 2005-06-02  Wim Taymans  <wim@fluendo.com>
14842
14843         * ext/ogg/README:
14844         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14845         (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
14846         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
14847         * ext/theora/theoradec.c: (theora_dec_src_query),
14848         (theora_handle_data_packet):
14849         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
14850         (theora_enc_chain):
14851         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14852         (vorbis_handle_data_packet):
14853         * gst/audioconvert/bufferframesconvert.c:
14854         (buffer_frames_convert_chain):
14855         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14856         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14857         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
14858         (gst_ffmpegcsp_chain):
14859         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14860         (gst_videorate_getcaps), (gst_videorate_setcaps),
14861         (gst_videorate_event), (gst_videorate_chain):
14862         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
14863         (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
14864         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14865         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
14866         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
14867         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
14868         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
14869         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
14870         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
14871         Cleanups and buffer alloc.
14872
14873 2005-05-31  Wim Taymans  <wim@fluendo.com>
14874
14875         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
14876         Don't try to call the delay method when the device is not
14877         opened.
14878
14879 2005-05-31  Wim Taymans  <wim@fluendo.com>
14880
14881         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
14882         Get actual segment size and buffer size after opening
14883         the device.
14884
14885 2005-05-30  Wim Taymans  <wim@fluendo.com>
14886
14887         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
14888         (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
14889         Also FLUSH upstream, makes the loop function exit faster.
14890         
14891         * ext/theora/theoradec.c: (theora_dec_src_query):
14892         Some more debug info in the query.
14893         
14894         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14895         (gst_ximagesink_setcaps):
14896         Release lock on par error, better error reporting.
14897
14898 2005-05-26  Wim Taymans  <wim@fluendo.com>
14899
14900         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14901         (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
14902         (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
14903         Clear chains in READY
14904         Queue packets until the chain is activated.
14905
14906 2005-05-25  Wim Taymans  <wim@fluendo.com>
14907
14908         * gst-libs/gst/audio/gstaudiosink.c:
14909         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14910         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
14911         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14912         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
14913         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
14914         (gst_audiosink_create_ringbuffer):
14915         * gst-libs/gst/audio/gstbaseaudiosink.c:
14916         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
14917         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
14918         (gst_baseaudiosink_set_property), (build_linear_format),
14919         (debug_spec_caps), (debug_spec_buffer),
14920         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
14921         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
14922         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
14923         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
14924         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
14925         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
14926         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
14927         (gst_ringbuffer_play), (gst_ringbuffer_pause),
14928         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
14929         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
14930         (wait_segment), (gst_ringbuffer_commit),
14931         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
14932         (gst_ringbuffer_clear):
14933         Various small cleanups.
14934
14935         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
14936         (gst_audio_convert_change_state):
14937         * gst/subparse/gstsubparse.c: (gst_subparse_chain):
14938         No need to take the locks anymore.
14939
14940 2005-05-25  Wim Taymans  <wim@fluendo.com>
14941
14942         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
14943         (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
14944         (remove_element_chain), (no_more_pads), (unlinked), (close_link),
14945         (type_found):
14946         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
14947         (group_destroy), (group_commit), (queue_overrun),
14948         (gen_preroll_element), (no_more_pads), (preroll_unlinked),
14949         (mute_stream), (new_decoded_pad), (setup_substreams),
14950         (setup_source), (mute_group_type), (set_active_source),
14951         (gst_play_base_bin_change_state):
14952         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
14953         (gen_video_element), (gen_text_element), (gen_audio_element),
14954         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
14955         * gst/playback/gststreaminfo.c: (gst_stream_info_new),
14956         (gst_stream_info_dispose), (gst_stream_info_set_mute):
14957         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
14958         Some playbin cleanups mostly refcounting sloppyness.
14959
14960 2005-05-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14961
14962         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
14963           Work with streaming input.
14964
14965 2005-05-25  Wim Taymans  <wim@fluendo.com>
14966
14967         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14968         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14969         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
14970         (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
14971         No need to take the STREAM lock anymore.
14972
14973 2005-05-25  Wim Taymans  <wim@fluendo.com>
14974
14975         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
14976         (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
14977         (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
14978         (gst_ogg_demux_chain), (gst_ogg_demux_loop),
14979         (gst_ogg_demux_sink_activate):
14980         * ext/theora/theoradec.c: (theora_dec_src_event),
14981         (theora_handle_comment_packet), (theora_dec_chain),
14982         (theora_dec_change_state):
14983         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14984         (vorbis_handle_data_packet), (vorbis_dec_chain),
14985         (vorbis_dec_change_state):
14986         Remove STREAM locks as they are taken in core now.
14987         Never set bogus granulepos on vorbis/theora.
14988         Fix leaks in theoradec tag parsing.
14989
14990 2005-05-25  Wim Taymans  <wim@fluendo.com>
14991
14992         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
14993         Fix memleaks, GST_BUFFER_DATA() is not freed.
14994
14995 2005-05-25  Wim Taymans  <wim@fluendo.com>
14996
14997         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
14998         Open non-blocking, set to blocking mode afterwards to avoid
14999         lockups when audio device is busy.
15000
15001 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15002
15003         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
15004           This can't be good.
15005
15006 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15007
15008         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
15009         (gst_audio_convert_chain), (gst_audio_convert_link_src),
15010         (gst_audio_convert_setcaps):
15011           Implement instant setup switching.
15012
15013 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15014
15015         * gst/playback/gstplaybasebin.c: (probe_triggered):
15016           Fix missing unlock.
15017         * gst/playback/gstplaybin.c: (add_sink):
15018           First add, then link (otherwise pad link fails).
15019
15020 2005-05-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15021
15022         * examples/Makefile.am:
15023         fix buildbot (make distcheck)
15024
15025 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15026
15027         * gst/playback/gstplaybin.c: (gen_vis_element):
15028           Remove some wrong code. Doesn't work yet.
15029
15030 2005-05-19  Wim Taymans  <wim@fluendo.com>
15031
15032         * gst-libs/gst/net/Makefile.am:
15033         * gst-libs/gst/net/README:
15034         * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
15035         (gst_netbuffer_class_init), (gst_netbuffer_init),
15036         (gst_netbuffer_finalize), (gst_netbuffer_copy),
15037         (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
15038         (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
15039         (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
15040         * gst-libs/gst/net/gstnetbuffer.h:
15041         Added buffer subclass to store extra to/from addresses for
15042         network sources/sinks.
15043
15044 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15045
15046         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
15047           Don't lock an unassigned variable.
15048
15049 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15050
15051         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
15052           Increase buffer for video, decrease buffer for other media types.
15053         * gst/playback/gstplaybin.c: (gen_video_element),
15054         (gen_audio_element):
15055           Change names for debugging purposes.
15056
15057 2005-05-18  Wim Taymans  <wim@fluendo.com>
15058
15059         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15060         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15061         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
15062         (gst_ffmpegcsp_chain):
15063         Enable buffer alloc passthrough if the source and dest
15064         formats are the same.
15065
15066 2005-05-17  Wim Taymans  <wim@fluendo.com>
15067
15068         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
15069         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
15070         (gst_ogg_demux_chain_unlocked):
15071         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15072         (gst_audio_convert_caps_remove_format_info),
15073         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15074         (gst_audio_convert_fixate), (gst_audio_convert_change_state):
15075         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15076         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15077         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
15078         (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
15079         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
15080         (gst_ffmpegcsp_get_property):
15081         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
15082         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
15083         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
15084         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
15085         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
15086         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
15087         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
15088         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
15089         Leak fixes in oggdemux.
15090         Some cleanups in audioconvert.
15091         Make passthrough work along with buffer_alloc etc.
15092         Make buffer_alloc and buffer recycling actually work in
15093         xvimagesink.
15094
15095 2005-05-17  Thomas Vander Stichele  <thomas at apestaart dot org>
15096
15097         * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
15098           make the compiler happy
15099
15100 2005-05-17  Wim Taymans  <wim@fluendo.com>
15101
15102         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
15103         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
15104         (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
15105         (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
15106         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
15107         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
15108         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
15109         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
15110         (gst_xvimagesink_set_xwindow_id):
15111         * sys/xvimage/xvimagesink.h:
15112         Port xvimagesink to new MiniObject.
15113
15114 2005-05-17  Wim Taymans  <wim@fluendo.com>
15115
15116         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
15117         (gst_audiofilter_chain):
15118         * gst-libs/gst/audio/gstaudiosink.c:
15119         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15120         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15121         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15122         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15123         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15124         (gst_audiosink_create_ringbuffer):
15125         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15126         (gst_audio_convert_caps_remove_format_info),
15127         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15128         (gst_audio_convert_fixate), (gst_audio_convert_channels):
15129         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15130         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15131         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15132         Fix passthrough in ffmpegcolorspace.
15133         Fix memset in audiosink on wrong memory.
15134
15135 2005-05-16  David Schleef  <ds@schleef.org>
15136
15137         * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
15138         to GstMiniObject.
15139
15140 2005-05-16  David Schleef  <ds@schleef.org>
15141
15142         Port from GstData to GstMiniObject.
15143         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
15144         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
15145         (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
15146         (gst_ogg_mux_collected):
15147         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
15148         * ext/theora/theoradec.c: (theora_handle_comment_packet),
15149         (theora_handle_data_packet):
15150         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
15151         (theora_set_header_on_caps), (theora_enc_chain):
15152         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
15153         (vorbis_handle_comment_packet):
15154         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
15155         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
15156         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
15157         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
15158         * gst/audioconvert/gstaudioconvert.c:
15159         (gst_audio_convert_get_buffer):
15160         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
15161         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
15162         (mute_stream), (silence_stream):
15163         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
15164         * gst/volume/gstvolume.c: (volume_transform):
15165         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
15166         (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
15167         (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
15168         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
15169         (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
15170         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
15171         (gst_ximagesink_buffer_alloc):
15172         * sys/ximage/ximagesink.h:
15173
15174 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15175
15176         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15177         (fill_buffer), (check_queue), (queue_threshold_reached),
15178         (queue_out_of_data):
15179         * gst/playback/gstplaybasebin.h:
15180           Post buffer-fullness on the bus.
15181
15182 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15183
15184         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
15185         (try_to_link_1):
15186         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15187         (group_commit), (probe_triggered), (setup_source),
15188         (gst_play_base_bin_change_state):
15189         * gst/playback/gstplaybasebin.h:
15190         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15191         (gst_play_bin_init), (remove_sinks), (setup_sinks),
15192         (gst_play_bin_change_state):
15193           Move setup_output_pads into a virtual function, remove
15194           group-switch (no longer needed) and redirect (handled by bus
15195           now) signals.
15196
15197 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15198
15199         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
15200         (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
15201         (get_active_group), (get_building_group), (group_destroy),
15202         (group_commit), (check_queue), (queue_overrun),
15203         (queue_threshold_reached), (queue_out_of_data),
15204         (gen_preroll_element), (remove_groups), (unknown_type),
15205         (add_element_stream), (no_more_pads), (probe_triggered),
15206         (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
15207         (setup_substreams), (setup_source), (finish_source),
15208         (prepare_output), (muted_group_change_state),
15209         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
15210         (gst_play_base_bin_change_state):
15211         * gst/playback/gstplaybasebin.h:
15212         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15213         (gst_play_bin_init), (gst_play_bin_set_property),
15214         (gen_video_element), (gen_text_element), (gen_audio_element),
15215         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
15216         (gst_play_bin_change_state):
15217         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
15218         (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
15219         (stream_info_change_state), (gst_stream_info_set_mute),
15220         (gst_stream_info_get_property):
15221         * gst/playback/gststreaminfo.h:
15222         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
15223         (gst_stream_selector_get_linked_pad),
15224         (gst_stream_selector_getcaps),
15225         (gst_stream_selector_get_linked_pads),
15226         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
15227         * gst/playback/gststreamselector.h:
15228           Rough port of playbin. Needs some more work, but is mostly done,
15229           and uses a few locks in important places, which should make stuff
15230           like chain-switches clean. Still uses GST_STATE() in a few places,
15231           which isn't all that good an idea, subtitles/elements disabled
15232           because no elements to test with and thus probably broken, query
15233           and event handling moved to GstBin, internal thread removed
15234           alltogether because the pipeline does that for us now. Can play
15235           Ogg/Vorbis files. Haven't tested anything else yet.
15236
15237 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15238
15239         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
15240           Do no-more-pads (needed for autoplugging).
15241
15242 2005-05-10  Andy Wingo  <wingo@pobox.com>
15243
15244         * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
15245         message to the bus with the tags. Still not sent downstream tho.
15246
15247         * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
15248         get_parent.
15249         (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
15250         avoid refcounting hassles.
15251
15252 2005-05-09  Andy Wingo  <wingo@pobox.com>
15253
15254         * gst/volume/Makefile.am:
15255         * gst/volume/demo.c
15256         * gst/volume/gstvolume.h
15257         * gst/volume/gstvolume.c: Port to 0.9 API, derive from
15258         basetransform. Probably need an audio filter base class.
15259
15260 2005-05-09  Wim Taymans  <wim@fluendo.com>
15261
15262         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
15263         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
15264         (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
15265         (gst_vorbisenc_chain):
15266         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15267         (gst_audio_convert_caps_remove_format_info),
15268         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15269         (gst_audio_convert_fixate), (gst_audio_convert_channels):
15270         Make caps writable before writing to it.
15271         Fix negotiation in audioconvert some more.
15272
15273 2005-05-09  Wim Taymans  <wim@fluendo.com>
15274
15275         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
15276         (gst_videorate_getcaps), (gst_videorate_setcaps),
15277         (gst_videorate_event), (gst_videorate_chain):
15278         Better negotiation.
15279
15280 2005-05-09  Wim Taymans  <wim@fluendo.com>
15281
15282         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
15283         (gst_videorate_getcaps), (gst_videorate_setcaps),
15284         (gst_videorate_blank_data), (gst_videorate_init),
15285         (gst_videorate_event), (gst_videorate_chain),
15286         (gst_videorate_change_state):
15287         Port videorate, do a better job at negotiation while we're at
15288         it.
15289
15290 2005-05-09  Jan Schmidt  <thaytan@mad.scientist.com>
15291
15292         * configure.ac:
15293           Disable libvisual
15294
15295         * examples/Makefile.am:
15296         * gst-libs/gst/audio/Makefile.am:
15297         * gst-libs/gst/riff/Makefile.am:
15298         * gst-libs/gst/tag/Makefile.am:
15299         * gst-libs/gst/video/Makefile.am:
15300           Fixups for missing variables.
15301
15302 2005-05-09  Wim Taymans  <wim@fluendo.com>
15303
15304         * examples/seeking/seek.c: (make_theora_pipeline),
15305         (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
15306         (query_rates), (query_positions_elems), (query_positions_pads),
15307         (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
15308         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
15309         (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
15310         (gst_ogg_pad_typefind), (gst_ogg_demux_init),
15311         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
15312         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
15313         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
15314         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
15315         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
15316         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
15317         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
15318         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
15319         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
15320         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
15321         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
15322         (theora_dec_src_convert), (theora_dec_sink_convert),
15323         (theora_dec_src_query), (theora_dec_sink_query),
15324         (theora_dec_src_event), (theora_dec_sink_event),
15325         (theora_handle_comment_packet), (theora_handle_type_packet),
15326         (theora_handle_header_packet), (theora_handle_data_packet),
15327         (theora_dec_chain):
15328         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
15329         (vorbis_dec_convert), (vorbis_dec_src_query),
15330         (vorbis_dec_sink_query), (vorbis_dec_src_event),
15331         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15332         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15333         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
15334         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
15335         (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
15336         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
15337         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15338         (gst_play_bin_query):
15339         * gst/playback/test3.c: (update_scale):
15340         * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
15341         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
15342         * gst/subparse/gstsubparse.c: (gst_subparse_init):
15343         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
15344         (gst_videotestsrc_src_query):
15345         * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
15346         (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
15347         (paint_hline_YUV9):
15348         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
15349         Port to new query API.
15350         Updated seek.
15351         Cleanups in x[v]imagesink
15352
15353 2005-05-09  Andy Wingo  <wingo@pobox.com>
15354
15355         * ext/alsa/gstalsasink.h:
15356         * ext/gnomevfs/gstgnomevfssrc.c:
15357         (gst_gnomevfssrc_get_icy_metadata):
15358         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
15359         (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
15360         * ext/theora/theoradec.c (theora_dec_src_query)
15361         (theora_dec_src_event, theora_dec_sink_event)
15362         (theora_handle_comment_packet, theora_handle_data_packet):
15363         * ext/theora/theoraenc.c (theora_enc_chain):
15364         * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
15365         (vorbis_dec_sink_event, vorbis_handle_comment_packet):
15366         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
15367         * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
15368         (qt_type_find):
15369         * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
15370         (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
15371         (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
15372         (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
15373         (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
15374         (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
15375         (paint_setup_xBGR8888, paint_setup_RGBx8888)
15376         (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
15377         (paint_setup_RGB565, paint_setup_xRGB1555):
15378         * gst/videotestsrc/videotestsrc.h:
15379         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
15380         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
15381         (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
15382         GCC4 fixes.
15383         
15384         * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
15385         gst_pad_query_position. Fixes oggdemux.
15386
15387 2005-05-08  David Schleef  <ds@schleef.org>
15388
15389         * configure.ac: Require liboil.
15390         * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
15391         a few more.
15392         * gst/videotestsrc/videotestsrc.c:
15393         * gst/videotestsrc/videotestsrc.h:
15394
15395 2005-05-06  Wim Taymans  <wim@fluendo.com>
15396
15397         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15398         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15399         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15400         Well, unreffing a buffer right before pushing it is asking
15401         for trouble..
15402
15403 2005-05-06  Christian Schaller  <uraeus@gnome.org>
15404
15405         * pkgconfig/gstreamer-libs.pc.in: add missing library calls
15406
15407 2005-05-06  Wim Taymans  <wim@fluendo.com>
15408
15409         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15410         (gst_audio_convert_caps_remove_format_info),
15411         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15412         (gst_audio_convert_fixate), (gst_audio_convert_channels):
15413         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15414         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15415         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15416         * gst/sine/Makefile.am:
15417         * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
15418         (gst_sinesrc_class_init), (gst_sinesrc_init),
15419         (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
15420         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
15421         (gst_sinesrc_update_freq):
15422         * gst/sine/gstsinesrc.h:
15423         * gst/tcp/gstmultifdsink.c:
15424         * sys/xvimage/xvimagesink.c:
15425         Fixed negotiation wrt _peer_get_caps()
15426         Some cleanups.
15427
15428
15429 2005-05-06  Wim Taymans  <wim@fluendo.com>
15430
15431         * gst-libs/gst/audio/gstaudiosink.c:
15432         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15433         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15434         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15435         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15436         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15437         (gst_audiosink_create_ringbuffer):
15438         * gst-libs/gst/audio/gstbaseaudiosink.c:
15439         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15440         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15441         (gst_baseaudiosink_set_property), (build_linear_format),
15442         (debug_spec_caps), (debug_spec_buffer),
15443         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15444         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15445         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15446         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15447         * gst-libs/gst/audio/gstbaseaudiosink.h:
15448         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15449         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15450         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
15451         (gst_ringbuffer_play), (gst_ringbuffer_pause),
15452         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
15453         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
15454         (wait_segment), (gst_ringbuffer_commit),
15455         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
15456         (gst_ringbuffer_clear):
15457         * gst-libs/gst/audio/gstringbuffer.h:
15458         Make the base audiosink return an error when there is no
15459         audiobuffer negotiated.
15460
15461 2005-05-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15462
15463         * ext/Makefile.am:
15464         Disable cdparanoia until someone ports it!
15465
15466 2005-05-06  Wim Taymans  <wim@fluendo.com>
15467
15468         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15469         (gst_ogg_demux_sink_activate):
15470         And revert after wingo's revert.. sigh..
15471
15472 2005-05-05  Andy Wingo  <wingo@pobox.com>
15473
15474         * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
15475         GObject.
15476         * configure.ac: Return audiorate and subparse from the ghetto.
15477         Re-enable -Wall -Werror.
15478         * gst/subparse/gstsubparse.c:
15479         * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
15480         or chain-based. Cleaned up a bit. Not tested.
15481         
15482 2005-05-05  Christian Schaller <christian@fluendo.com> 
15483
15484         * Makefile.am: remove stuff that is not building
15485         * configure.ac: remove stuff that is not building
15486         * examples/Makefile.am: remove stuff that is not building
15487         * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
15488         * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
15489         * sys/Makefile.am: remove stuff that is not building
15490         * testsuite/Makefile.am: remove stuff that is not building
15491
15492 2005-05-05  Andy Wingo  <wingo@pobox.com>
15493
15494         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
15495         * gst-libs/gst/tag/gstvorbistag.c:
15496         (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
15497         * gst/adder/gstadder.h:
15498         * gst/audioconvert/gstchannelmix.c:
15499         (gst_audio_convert_fill_one_other):
15500         * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
15501         (gst_audiorate_init), (gst_audiorate_chain):
15502         * gst/playback/gstplaybasebin.c: (setup_source):
15503         * gst/playback/test3.c: (update_scale):
15504         Some GCC4 fixes
15505         
15506         * po/af.po:
15507         * po/az.po:
15508         * po/cs.po:
15509         * po/en_GB.po:
15510         * po/hu.po:
15511         * po/it.po:
15512         * po/nb.po:
15513         * po/nl.po:
15514         * po/or.po:
15515         * po/sq.po:
15516         * po/sr.po:
15517         * po/sv.po:
15518         * po/uk.po:
15519         * po/vi.po: Foo
15520
15521 2005-05-05  Wim Taymans  <wim@fluendo.com>
15522
15523         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15524         (gst_audio_convert_caps_remove_format_info),
15525         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
15526         (gst_audio_convert_change_state), (gst_audio_convert_channels):
15527         * gst/videotestsrc/gstvideotestsrc.c:
15528         (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
15529         (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
15530         (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
15531         (gst_videotestsrc_init), (gst_videotestsrc_loop):
15532         Don't ignore _push() return values.
15533         Make sure no processing is done when shutting down.
15534         Videotestsrc pad activation fix.
15535
15536 2005-05-05  Wim Taymans  <wim@fluendo.com>
15537
15538         * gst/adder/Makefile.am:
15539         * gst/adder/gstadder.c: (gst_adder_setcaps),
15540         (gst_adder_class_init), (gst_adder_init),
15541         (gst_adder_request_new_pad), (gst_adder_collected),
15542         (gst_adder_change_state):
15543         * gst/adder/gstadder.h:
15544         Ported adder as an example of a mixer element using
15545         collect pads. Needs more negotiation work.
15546
15547 2005-05-05  Wim Taymans  <wim@fluendo.com>
15548
15549         * ext/theora/theoradec.c: (_inc_granulepos),
15550         (theora_dec_src_event), (theora_dec_sink_event),
15551         (theora_handle_comment_packet), (theora_handle_type_packet),
15552         (theora_handle_header_packet), (theora_handle_data_packet),
15553         (theora_dec_chain):
15554         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
15555         (gst_theora_enc_init), (theora_enc_sink_setcaps),
15556         (theora_push_buffer), (theora_push_packet),
15557         (theora_enc_sink_event), (theora_enc_chain),
15558         (theora_enc_change_state), (theora_enc_set_property),
15559         (theora_enc_get_property):
15560         Added stream lock to decoder so that we can serialize
15561         the discont event.
15562         More theoraenc porting, recover from errors, do clean
15563         shutdown.
15564
15565 2005-05-05  Wim Taymans  <wim@fluendo.com>
15566
15567         * ext/ogg/Makefile.am:
15568         * ext/ogg/README:
15569         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15570         (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
15571         (gst_ogg_print):
15572         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
15573         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
15574         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
15575         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
15576         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
15577         (gst_ogg_mux_change_state):
15578         Ported ogg muxer.
15579
15580 2005-05-05  Wim Taymans  <wim@fluendo.com>
15581
15582         * docs/design-audiosinks.txt:
15583         * gst-libs/gst/audio/TODO:
15584         * gst-libs/gst/audio/gstaudiosink.c:
15585         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15586         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15587         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15588         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15589         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15590         (gst_audiosink_create_ringbuffer):
15591         * gst-libs/gst/audio/gstbaseaudiosink.c:
15592         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15593         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15594         (gst_baseaudiosink_set_property), (build_linear_format),
15595         (debug_spec_caps), (debug_spec_buffer),
15596         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15597         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15598         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15599         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15600         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15601         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15602         (gst_ringbuffer_release), (gst_ringbuffer_play),
15603         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
15604         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
15605         (gst_ringbuffer_set_sample), (wait_segment),
15606         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
15607         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
15608         More work on the audiosink, mostly debugging and a race in
15609         shutdown.
15610
15611 2005-04-28  Wim Taymans  <wim@fluendo.com>
15612
15613         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15614         (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
15615         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
15616         (vorbis_dec_src_query), (vorbis_dec_src_event),
15617         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15618         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15619         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
15620         Don't crap out when seeking back to position 0.
15621
15622 2005-04-28  Wim Taymans  <wim@fluendo.com>
15623
15624         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
15625         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
15626         (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
15627         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
15628         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
15629         Make audio sink configurable, use alsasink as default.
15630
15631 2005-04-28  Wim Taymans  <wim@fluendo.com>
15632
15633         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
15634         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15635         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15636         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
15637         (vorbis_dec_change_state):
15638         * ext/vorbis/vorbisdec.h:
15639         Refactor, use STREAM_LOCK.
15640
15641 2005-04-28  Wim Taymans  <wim@fluendo.com>
15642
15643         * ext/theora/theoradec.c: (_inc_granulepos),
15644         (theora_dec_sink_event), (theora_handle_comment_packet),
15645         (theora_handle_type_packet), (theora_handle_header_packet),
15646         (theora_handle_data_packet), (theora_dec_chain),
15647         (theora_dec_change_state):
15648         Refactor a bit, use STREAM_LOCK.
15649
15650 2005-04-28  Wim Taymans  <wim@fluendo.com>
15651
15652         * ext/alsa/Makefile.am:
15653         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
15654         (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
15655         (gst_alsa_link), (gst_alsa_close_audio):
15656         * ext/alsa/gstalsaplugin.c: (plugin_init):
15657         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
15658         (gst_alsasink_dispose), (gst_alsasink_base_init),
15659         (gst_alsasink_class_init), (gst_alsasink_init),
15660         (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
15661         (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
15662         (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
15663         (gst_alsasink_reset):
15664         * ext/alsa/gstalsasink.h:
15665         Implement alsasink with simple open/write/close API. 
15666         Make alsa dir build by disabling compilation of code.
15667
15668 2005-04-28  Wim Taymans  <wim@fluendo.com>
15669
15670         * gst-libs/gst/audio/Makefile.am:
15671         * gst-libs/gst/audio/audio.h:
15672         * gst-libs/gst/audio/audioclock.c:
15673         * gst-libs/gst/audio/audioclock.h:
15674         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
15675         (gst_audio_clock_class_init), (gst_audio_clock_init),
15676         (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
15677         * gst-libs/gst/audio/gstaudioclock.h:
15678         * gst-libs/gst/audio/gstaudiosink.c:
15679         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15680         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15681         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15682         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15683         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15684         (gst_audiosink_create_ringbuffer):
15685         * gst-libs/gst/audio/gstbaseaudiosink.c:
15686         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15687         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15688         (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
15689         (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
15690         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15691         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15692         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15693         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15694         * gst-libs/gst/audio/gstbaseaudiosink.h:
15695         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15696         (gst_ringbuffer_init), (gst_ringbuffer_finalize),
15697         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15698         (gst_ringbuffer_release), (gst_ringbuffer_play),
15699         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
15700         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
15701         (gst_ringbuffer_set_sample), (wait_segment),
15702         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
15703         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
15704         * gst-libs/gst/audio/gstringbuffer.h:
15705         Make ringbuffer faster and more simple by removing the locks
15706         in the playback thread.
15707         Add sample accurate playback based on buffer sample offsets.
15708         Make the baseaudiosink provide a clock.
15709         Parse caps in the base class.
15710         Correctly handle seeking, flushing and state changes.
15711
15712 2005-04-25  Thomas Vander Stichele  <thomas at apestaart dot org>
15713
15714         * configure.ac:
15715         * gst/audioconvert/Makefile.am:
15716         * gst/audioscale/Makefile.am:
15717           Fix part of the build.  Come on guys, autogen didn't even work :)
15718
15719 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15720
15721         * configure.ac:
15722         * gst-libs/gst/Makefile.am:
15723         * gst-libs/gst/media-info/.cvsignore:
15724         * gst-libs/gst/media-info/Makefile.am:
15725         * gst-libs/gst/media-info/README:
15726         * gst-libs/gst/media-info/media-info-priv.c:
15727         * gst-libs/gst/media-info/media-info-priv.h:
15728         * gst-libs/gst/media-info/media-info-test.c:
15729         * gst-libs/gst/media-info/media-info.c:
15730         * gst-libs/gst/media-info/media-info.h:
15731         * gst-libs/gst/media-info/media-info.vcproj:
15732         * pkgconfig/Makefile.am:
15733         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
15734         * pkgconfig/gstreamer-media-info.pc.in:
15735           Remove media-info, which is also successed by playbin (see Totem
15736           implementation).
15737
15738 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15739
15740         * configure.ac:
15741         * examples/Makefile.am:
15742         * examples/gstplay/.cvsignore:
15743         * examples/gstplay/Makefile.am:
15744         * examples/gstplay/player.c:
15745         * gst-libs/gst/Makefile.am:
15746         * gst-libs/gst/play/.cvsignore:
15747         * gst-libs/gst/play/Makefile.am:
15748         * gst-libs/gst/play/play.c:
15749         * gst-libs/gst/play/play.h:
15750         * gst-libs/gst/play/play.vcproj:
15751         * pkgconfig/Makefile.am:
15752         * pkgconfig/gstreamer-play-uninstalled.pc.in:
15753         * pkgconfig/gstreamer-play.pc.in:
15754           Remove libgstplay, playbin is now the official successor.
15755
15756 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15757
15758         * configure.ac:
15759         * gst-libs/gst/Makefile.am:
15760         * gst-libs/gst/xwindowlistener/Makefile.am:
15761         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
15762         * gst-libs/gst/xwindowlistener/xwindowlistener.h:
15763           Remove deprecated xwindowlistener (I've moved xwindowlistening
15764           in the v4l/v4l2 plugins over to serverside).
15765
15766 2005-04-25  David Schleef  <ds@schleef.org>
15767
15768         * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
15769         to examples/dynparams.  Examples do not belong interspersed with
15770         source code.
15771         * examples/dynparams/demo-dparams.c:
15772         * gst/sine/Makefile.am:
15773         * gst/sine/demo-dparams.c:
15774
15775 2005-04-25  David Schleef  <ds@schleef.org>
15776
15777         Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
15778         * gst-libs/gst/audio/Makefile.am:
15779         * gst-libs/gst/riff/Makefile.am:
15780         * gst-libs/gst/tag/Makefile.am:
15781         * gst-libs/gst/video/Makefile.am:
15782         * gst-libs/gst/xwindowlistener/Makefile.am:
15783
15784         Convert to 0.9 API, seems to work:
15785         * sys/ximage/Makefile.am:
15786         * sys/ximage/ximagesink.c:
15787
15788 2005-04-24  David Schleef  <ds@schleef.org>
15789
15790         Link plugins against libraries:
15791         * ext/alsa/Makefile.am:
15792         * gst/tcp/Makefile.am:
15793
15794         Remove asm code that should be in liboil
15795         * gst/videoscale/Makefile.am:
15796         * gst/videoscale/videoscale_x86_asm.s:
15797
15798         gettext wants these checked in:
15799         * po/af.po:
15800         * po/az.po:
15801         * po/cs.po:
15802         * po/en_GB.po:
15803         * po/hu.po:
15804         * po/it.po:
15805         * po/nb.po:
15806         * po/nl.po:
15807         * po/or.po:
15808         * po/sq.po:
15809         * po/sr.po:
15810         * po/sv.po:
15811         * po/uk.po:
15812         * po/vi.po:
15813
15814 2005-04-24  David Schleef  <ds@schleef.org>
15815
15816         Convert gst_main() to g_main_loop_run()
15817         * gst/playback/decodetest.c: (main):
15818         * gst/playback/test2.c: (main):
15819         * gst/playback/test3.c: (main):
15820         * gst/playback/test4.c: (main):
15821
15822         Link plugins against libraries:
15823         * ext/libvisual/Makefile.am:
15824         * sys/xvimage/Makefile.am:
15825
15826 2005-04-24  David Schleef  <ds@schleef.org>
15827
15828         * configure.ac: Remove idct and resample libs
15829         * gst-libs/gst/Makefile.am: same
15830
15831         Remove usage of gst_library_load():
15832         * ext/alsa/gstalsaplugin.c: (plugin_init):
15833         * ext/libvisual/visual.c: (plugin_init):
15834         * ext/ogg/gstogg.c: (plugin_init):
15835         * ext/theora/theora.c: (plugin_init):
15836         * ext/vorbis/vorbis.c: (plugin_init):
15837         * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
15838         * gst/audioscale/gstaudioscale.c:
15839         * gst/adder/gstadder.c: (plugin_init):
15840         * gst/audioconvert/plugin.c: (plugin_init):
15841         * sys/ximage/ximagesink.c: (plugin_init):
15842         * sys/xvimage/xvimagesink.c: (plugin_init):
15843         * gst/tcp/gsttcpplugin.c: (plugin_init):
15844
15845         Link plugins against libraries:
15846         * ext/ogg/Makefile.am:
15847         * ext/theora/Makefile.am:
15848         * ext/vorbis/Makefile.am:
15849         * gst/audioconvert/Makefile.am:
15850
15851         Create proper libraries:
15852         * gst-libs/gst/riff/Makefile.am:
15853         * gst-libs/gst/audio/Makefile.am:
15854         * gst-libs/gst/video/Makefile.am:
15855
15856         Move resample library to audioscale plugin directory:
15857         * gst-libs/gst/resample/Makefile.am:
15858         * gst-libs/gst/resample/README:
15859         * gst-libs/gst/resample/dtof.c:
15860         * gst-libs/gst/resample/dtos.c:
15861         * gst-libs/gst/resample/functable.c:
15862         * gst-libs/gst/resample/private.h:
15863         * gst-libs/gst/resample/resample.c:
15864         * gst-libs/gst/resample/resample.h:
15865         * gst-libs/gst/resample/resample.vcproj:
15866         * gst-libs/gst/resample/test.c:
15867         * gst/audioscale/Makefile.am:
15868         * gst/audioscale/README:
15869         * gst/audioscale/dtof.c:
15870         * gst/audioscale/dtos.c:
15871         * gst/audioscale/functable.c:
15872         * gst/audioscale/private.h:
15873         * gst/audioscale/resample.c:
15874         * gst/audioscale/resample.h:
15875         * gst/audioscale/test.c:
15876
15877         Move tagedit library to gst-libs:
15878         * gst-libs/gst/tag/Makefile.am:
15879         * gst-libs/gst/tag/gstid3tag.c:
15880         * gst-libs/gst/tag/gsttagediting.c:
15881         * gst-libs/gst/tag/gsttageditingprivate.h:
15882         * gst-libs/gst/tag/gstvorbistag.c:
15883         * gst/tags/Makefile.am:
15884         * gst/tags/gstid3tag.c:
15885         * gst/tags/gstvorbistag.c:
15886
15887         Fix for core changes:
15888         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
15889         (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
15890         (gst_sinesrc_getrange):
15891
15892 2005-04-23  David Schleef  <ds@schleef.org>
15893
15894         * gst-libs/gst/Makefile.am: Remove idct.  It hasn't been used
15895         in gst-plugins in a long time, and properly belongs in liboil.
15896         * gst-libs/gst/idct/Makefile.am:
15897         * gst-libs/gst/idct/README:
15898         * gst-libs/gst/idct/dct.h:
15899         * gst-libs/gst/idct/doieee:
15900         * gst-libs/gst/idct/fastintidct.c:
15901         * gst-libs/gst/idct/floatidct.c:
15902         * gst-libs/gst/idct/idct.c:
15903         * gst-libs/gst/idct/idct.h:
15904         * gst-libs/gst/idct/idtc.vcproj:
15905         * gst-libs/gst/idct/ieeetest.c:
15906         * gst-libs/gst/idct/intidct.c:
15907
15908 2005-04-20  Wim Taymans  <wim@fluendo.com>
15909
15910         * docs/design-audiosinks.txt:
15911         * gst-libs/gst/audio/Makefile.am:
15912         * gst-libs/gst/audio/TODO:
15913         * gst-libs/gst/audio/gstaudiosink.c:
15914         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15915         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15916         (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
15917         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15918         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15919         (gst_audioringbuffer_delay), (gst_audiosink_base_init),
15920         (gst_audiosink_class_init), (gst_audiosink_init),
15921         (gst_audiosink_create_ringbuffer):
15922         * gst-libs/gst/audio/gstaudiosink.h:
15923         * gst-libs/gst/audio/gstbaseaudiosink.c:
15924         (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
15925         (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
15926         (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
15927         (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
15928         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
15929         (gst_baseaudiosink_create_ringbuffer),
15930         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15931         * gst-libs/gst/audio/gstbaseaudiosink.h:
15932         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15933         (gst_ringbuffer_class_init), (gst_ringbuffer_init),
15934         (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
15935         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15936         (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
15937         (gst_ringbuffer_play), (gst_ringbuffer_pause),
15938         (gst_ringbuffer_resume), (gst_ringbuffer_stop),
15939         (gst_ringbuffer_callback), (gst_ringbuffer_delay),
15940         (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
15941         (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
15942         * gst-libs/gst/audio/gstringbuffer.h:
15943         An attempt at a set of audio base classes together with some
15944         design docs.
15945
15946 2005-04-20  Wim Taymans  <wim@fluendo.com>
15947
15948         * gst/audioconvert/Makefile.am:
15949         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15950         (gst_audio_convert_caps_remove_format_info),
15951         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
15952         (gst_audio_convert_channels):
15953         Link against audio libs.
15954         Fix audio convert plugin.
15955
15956 2005-04-20  Wim Taymans  <wim@fluendo.com>
15957
15958         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
15959         (gst_ogg_demux_sink_activate):
15960         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
15961         (theora_set_header_on_caps), (theora_enc_sink_event),
15962         (theora_enc_chain):
15963         Fix theora encoder.
15964
15965 2005-04-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15966
15967         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
15968         * gst/playback/gstdecodebin.c: (find_compatibles):
15969           Work with staticpadtemplates in elementfactories.
15970
15971 2005-04-12  Wim Taymans  <wim@fluendo.com>
15972
15973         * gst/playback/README:
15974         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
15975         (compare_ranks), (print_feature), (gst_decode_bin_init),
15976         (dynamic_create), (dynamic_free), (find_compatibles),
15977         (mimetype_is_raw), (close_pad_link), (got_redirect),
15978         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
15979         (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
15980         (gst_decode_bin_change_state):
15981         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15982         (gst_play_base_bin_init), (group_destroy), (group_commit),
15983         (check_queue), (queue_overrun), (queue_threshold_reached),
15984         (queue_out_of_data), (gen_preroll_element), (unknown_type),
15985         (new_decoded_pad), (setup_subtitle), (gen_source_element),
15986         (got_redirect), (setup_source), (play_base_eos),
15987         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
15988         (gst_play_base_bin_remove_element):
15989         * gst/playback/gstplaybasebin.h:
15990         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15991         (gst_play_bin_init), (gst_play_bin_dispose),
15992         (gst_play_bin_set_property), (gen_video_element),
15993         (gen_text_element), (gen_audio_element), (remove_sinks),
15994         (gst_play_bin_send_event):
15995         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
15996         (stream_info_change_state), (gst_stream_info_set_mute):
15997         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
15998         (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
15999         (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
16000         (gst_stream_selector_chain):
16001         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
16002         (main):
16003         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
16004         (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
16005         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
16006         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
16007         Raw and crude port of decodebin. 
16008         Make playbin compile.
16009
16010 2005-04-06  Wim Taymans  <wim@fluendo.com>
16011
16012         * ext/gnomevfs/Makefile.am:
16013         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
16014         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
16015         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
16016         (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
16017         (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
16018         (gst_gnomevfssrc_stop):
16019         * ext/ogg/Makefile.am:
16020         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
16021         (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
16022         * ext/theora/Makefile.am:
16023         * ext/theora/theoradec.c: (_inc_granulepos),
16024         (theora_dec_sink_event), (theora_dec_chain):
16025         * ext/vorbis/Makefile.am:
16026         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
16027         (vorbis_dec_sink_event), (vorbis_dec_chain):
16028         * gst-libs/gst/audio/Makefile.am:
16029         * sys/xvimage/Makefile.am:
16030         Make gnomevfssrc extend the source base class.
16031         Fix linking against libs in various plugins.
16032
16033 2005-04-06  Andy Wingo  <wingo@pobox.com>
16034
16035         * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
16036         GST_BASE_LIBS.
16037
16038         * configure.ac: Add check and AC_SUBST for libgstbase.
16039
16040 2005-03-31  Wim Taymans  <wim@fluendo.com>
16041
16042         * examples/seeking/Makefile.am:
16043         * examples/seeking/cdparanoia.c: (main):
16044         * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
16045         (play_cb), (pause_cb), (stop_cb), (main):
16046         * examples/seeking/playbin.c:
16047         * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
16048         (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
16049         (make_sid_pipeline), (make_vorbis_pipeline),
16050         (make_theora_pipeline), (make_vorbis_theora_pipeline),
16051         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
16052         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
16053         (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
16054         (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
16055         (stop_cb), (main):
16056         * examples/seeking/spider_seek.c:
16057         * examples/seeking/vorbisfile.c:
16058         * ext/gnomevfs/Makefile.am:
16059         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
16060         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
16061         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
16062         (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
16063         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
16064         (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
16065         (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
16066         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
16067         * ext/ogg/README:
16068         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
16069         (gst_ogg_pad_class_init), (gst_ogg_pad_init),
16070         (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
16071         (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
16072         (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
16073         (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
16074         (gst_ogg_pad_event), (gst_ogg_pad_reset),
16075         (gst_ogg_demux_factory_filter), (compare_ranks),
16076         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
16077         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
16078         (gst_ogg_chain_new), (gst_ogg_chain_free),
16079         (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
16080         (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
16081         (gst_ogg_demux_class_init), (gst_ogg_demux_init),
16082         (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
16083         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
16084         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
16085         (gst_ogg_demux_get_prev_page),
16086         (gst_ogg_demux_deactivate_current_chain),
16087         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
16088         (gst_ogg_demux_bisect_forward_serialno),
16089         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
16090         (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
16091         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
16092         (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
16093         (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
16094         (gst_ogg_demux_change_state), (gst_ogg_print):
16095         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
16096         (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
16097         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
16098         (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
16099         (gst_ogg_mux_loop):
16100         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
16101         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
16102         (theora_dec_src_convert), (theora_dec_sink_convert),
16103         (theora_dec_src_query), (theora_dec_src_event),
16104         (theora_dec_sink_event), (theora_dec_chain),
16105         (theora_dec_change_state):
16106         * ext/theora/theoraenc.c: (gst_theora_enc_init),
16107         (theora_enc_sink_setcaps), (theora_buffer_from_packet),
16108         (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
16109         (theora_enc_change_state):
16110         * ext/vorbis/Makefile.am:
16111         * ext/vorbis/oggvorbisenc.c:
16112         * ext/vorbis/oggvorbisenc.h:
16113         * ext/vorbis/vorbis.c: (plugin_init):
16114         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
16115         (vorbis_dec_src_query), (vorbis_dec_src_event),
16116         (vorbis_dec_sink_event), (vorbis_dec_chain),
16117         (vorbis_dec_change_state):
16118         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
16119         (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
16120         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
16121         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
16122         (gst_vorbisenc_change_state):
16123         * ext/vorbis/vorbisenc.h:
16124         * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
16125         * gst-libs/gst/audio/audioclock.c:
16126         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
16127         (gst_audiofilter_init), (gst_audiofilter_chain):
16128         * gst-libs/gst/audio/testchannels.c: (main):
16129         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
16130         * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
16131         (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
16132         (gmip_find_track_streaminfo), (gmip_find_track_format):
16133         * gst-libs/gst/media-info/media-info.c:
16134         (gst_media_info_read_idler):
16135         * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
16136         (gst_play_get_all_by_interface):
16137         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
16138         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
16139         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
16140         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
16141         (gst_riff_parse_info):
16142         * gst-libs/gst/riff/riff-read.h:
16143         * gst-libs/gst/riff/riff.c: (plugin_init):
16144         * gst-libs/gst/video/Makefile.am:
16145         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
16146         (gst_videosink_class_init), (gst_videosink_get_type):
16147         * gst-libs/gst/video/videosink.h:
16148         * gst/audioconvert/bufferframesconvert.c:
16149         (buffer_frames_convert_init), (buffer_frames_convert_fixate),
16150         (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
16151         * gst/audioconvert/channelmixtest.c: (main):
16152         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
16153         (gst_audio_convert_chain),
16154         (gst_audio_convert_caps_remove_format_info),
16155         (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
16156         (gst_audio_convert_setcaps), (_fixate_caps_to_int),
16157         (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
16158         (gst_audio_convert_buffer_to_default_format),
16159         (gst_audio_convert_buffer_from_default_format),
16160         (gst_audio_convert_channels):
16161         * gst/audioconvert/gstchannelmix.h:
16162         * gst/ffmpegcolorspace/avcodec.h:
16163         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16164         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
16165         (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
16166         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
16167         * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
16168         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
16169         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
16170         (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
16171         (mpeg_video_type_find), (mpeg_video_stream_type_find),
16172         (dv_type_find):
16173         * gst/videotestsrc/gstvideotestsrc.c:
16174         (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
16175         (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
16176         (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
16177         (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
16178         (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
16179         (gst_videotestsrc_init), (gst_videotestsrc_src_query),
16180         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
16181         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
16182         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
16183         (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
16184         (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
16185         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
16186         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
16187         (gst_xvimagesink_navigation_send_event),
16188         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
16189         (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
16190         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
16191         * sys/xvimage/xvimagesink.h:
16192         Plugin port to 0.9, ogg/theora playback should work in the seek
16193         example now.
16194         Removed old examples.
16195         Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
16196         explained in 0.9 TODO doc.
16197
16198
16199 2005-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
16200
16201         * autogen.sh:
16202         * configure.ac:
16203         * ext/Makefile.am:
16204         * gst/Makefile.am:
16205         * po/POTFILES.in:
16206         * po/af.po:
16207         * po/az.po:
16208         * po/cs.po:
16209         * po/en_GB.po:
16210         * po/hu.po:
16211         * po/it.po:
16212         * po/nb.po:
16213         * po/nl.po:
16214         * po/or.po:
16215         * po/sq.po:
16216         * po/sr.po:
16217         * po/sv.po:
16218         * po/uk.po:
16219         * po/vi.po:
16220         * sys/Makefile.am:
16221         * testsuite/Makefile.am:
16222           remove a whole bunch of plugins.  This module now contains a set
16223           of free reference plugins/elements as agreed.
16224
16225 2005-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
16226
16227         * configure.ac:
16228           hunting season on 0.9 is now OPEN
16229
16230 2005-02-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16231
16232         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
16233           Kick the hell out of gcc for not warning me about a symbol conflict.
16234
16235 2005-02-22  Luca Ognibene  <luogni@tin.it>
16236
16237         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
16238
16239         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
16240           Don't leak caps string (fixes #168134)
16241
16242         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
16243         (gst_jpegenc_init), (gst_jpegenc_finalize),
16244         (gst_jpegenc_change_state):
16245           Don't leak line buffers and context struct (fixes #168133).
16246
16247 2005-02-21  Tim-Philipp Müller  <tim at centricular dot net>
16248
16249         * configure.ac:
16250         * ext/dirac/gstdiracdec.cc:
16251         (gst_diracdec_chain):
16252           Since dirac 0.5.0 the framerate in dirac is expressed as a
16253           rational number. Fix build and up requirement to 0.5.0, and
16254           also pass parameters to gst_diracdec_link in the right order
16255           (fixes #167959).
16256
16257 2005-02-21  Maciej Katafiasz  <mathrick@freedesktop.org>
16258
16259         * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
16260         * ext/faad/gstfaad.h:
16261         TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with 
16262         certain invalid muxed streams, where some packets will contain 
16263         junk after decoder data. Partially fixes #149158.
16264
16265 2005-02-21  Jan Schmidt <thaytan@mad.scientist.com>
16266         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
16267           Make sure we only write to writable buffers
16268
16269 2005-02-20  Tim-Philipp Müller  <tim at centricular dot net>
16270
16271         * gst-libs/gst/riff/riff-media.c:
16272         (gst_riff_create_audio_caps_with_data):
16273           Do actually fix invalid RIFF fmt header values for alaw
16274           and mulaw audio instead of just saying so.
16275
16276         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
16277           Give gst_riff_create_audio_caps_with_data() a chance to
16278           fix up broken format header fields before extracting any
16279           parameters from the header. (fixes #167633)
16280
16281 2005-02-19  Martin Holters  <martin.holters@gmx.de>
16282
16283         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
16284
16285         * gst/audioconvert/bufferframesconvert.c:
16286         (buffer_frames_convert_link):
16287           Don't leak othercaps. (fixes #167878)
16288
16289 2005-02-19  Arwed v. Merkatz  <v.merkatz@gmx.net>
16290
16291         * configure.ac:
16292         * ext/libvisual/visual.c: (gst_visual_srclink),
16293         (gst_visual_change_state):
16294           Support libvisual 0.2.0.
16295
16296 2005-02-18  Tim-Philipp Müller  <tim at centricular dot net>
16297
16298         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
16299         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
16300           Use same rowstrides for I420 as used everywhere else.
16301
16302 2005-02-17  Tim-Philipp Müller  <tim at centricular dot net>
16303
16304         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
16305           Declare variables at beginning of block and make gcc-2.95 happy
16306           (fixes # 167482, patch by Gergely Nagy).
16307           
16308         * gst/tcp/gsttcpclientsrc.c:
16309         * gst/tcp/gsttcpclientsrc.h:
16310           Move some includes into the header, so that struct sockaddr_in is
16311           defined when it should be defined on FreeBSD as well (fixes
16312           #167483).
16313           
16314         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
16315           Don't pass uninitialised values to setsockopt() here either.
16316
16317 2005-02-17  Luca Ognibene  <luogni at tin dot it>
16318
16319         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
16320
16321         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
16322           Don't pass uninitialised values to setsockopt(). (fixes #167704)
16323
16324 2005-02-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16325
16326         * gst/playback/gstplaybin.c: (add_sink):
16327           Invert bin_add/link order to workaround deadlock in opt.
16328
16329 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16330
16331         * gst/modplug/gstmodplug.cc:
16332           Add missing break causing position queries to fail.
16333
16334 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16335
16336         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
16337           Granpos can apparently be -1, which screws up calculations...
16338
16339 2005-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
16340
16341         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
16342         (gst_ximagesink_send_pending_navigation),
16343         (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
16344         (gst_ximagesink_init):
16345         * sys/ximage/ximagesink.h:
16346         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
16347         (gst_xvimagesink_send_pending_navigation),
16348         (gst_xvimagesink_navigation_send_event),
16349         (gst_xvimagesink_finalize), (gst_xvimagesink_init):
16350         * sys/xvimage/xvimagesink.h:
16351           Use a mutex protected list to marshal navigation
16352           events into the stream thread from whichever thread
16353           sends them.
16354
16355 2005-02-15  Tim-Philipp Müller  <tim at centricular dot net>
16356
16357         * gst/speed/demo-mp3.c: (time_tick_cb), (main):
16358           Display current position and track length; misc. clean-ups.
16359           
16360         * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
16361         (speed_init), (speed_chain):
16362           Add query function, so that the stream length and current position
16363           get adjusted when queried (note that current position queries may
16364           still be wrong if the audio sink returns values based on buffer
16365           timestamps instead of passing on the query).
16366
16367 2005-02-13  Benjamin Otte  <otte@gnome.org>
16368
16369         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
16370         (gst_audio_convert_channels):
16371           create channel conversion matrix when linking
16372         * gst/audioconvert/.cvsignore:
16373         * gst/audioconvert/Makefile.am:
16374         * gst/audioconvert/channelmixtest.c: (main):
16375           add (ugly) test that ensures stereo <=> mono conversion works
16376           correctly
16377
16378 2005-02-13  Benjamin Otte  <otte@gnome.org>
16379
16380         * gst/audioconvert/gstchannelmix.h:
16381           include missing header file
16382         * gst/audioconvert/gstchannelmix.c:
16383         (gst_audio_convert_fill_compatible):
16384           use same sign for both channels when converting to/from compatible
16385           channel. Previously used different signs made the signals cancel
16386           each other out and appear like silence. (fixes #167269)
16387
16388 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
16389
16390         * gst/ffmpegcolorspace/avcodec.h:
16391         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16392         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
16393         (gst_ffmpegcsp_avpicture_fill):
16394         * gst/ffmpegcolorspace/imgconvert.c:
16395           Convert to and from YV12 (fixes #156379).
16396
16397 2005-02-12  Julien MOUTTE  <julien@moutte.net>
16398
16399         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
16400         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
16401         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
16402         (gst_ximagesink_expose), (gst_ximagesink_set_property),
16403         (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
16404         methods from chain and negotiation and vice versa (Fixes #166142).
16405         * sys/ximage/ximagesink.h: Add stream_lock.
16406         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
16407         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
16408         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
16409         (gst_xvimagesink_expose): Check for xcontext before trying to link.
16410
16411 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
16412
16413         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
16414           Don't send "Hey! You gave me a NULL pointer you naughty person" as
16415           error message when we can't open the DVD device (when dvdnav_open()
16416           fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
16417           the above). Send something more useful instead (fixes #167117).
16418
16419 2005-02-11  Julien MOUTTE  <julien@moutte.net>
16420
16421         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
16422         (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
16423         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
16424         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
16425         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
16426         (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
16427         methods from chain and negotiation and vice versa (Fixes #166142).
16428         Fix a possible bug of images in the buffer pool being discarded because
16429         we are looking at the wrong geometry.
16430         * sys/xvimage/xvimagesink.h: Add stream_lock.
16431
16432 2005-02-11  David Schleef  <ds@schleef.org>
16433
16434         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
16435         unsigned int. (fixes #167128)
16436
16437 2005-02-11  David Schleef  <ds@schleef.org>
16438
16439         * gst/librfb/Makefile.am: Testing stuff before committing is
16440           for wimps... and people with fast machines.  Fix stupid
16441           mistake.
16442
16443 2005-02-11  David Schleef  <ds@schleef.org>
16444
16445         * configure.ac: Pull in librfb from my CVS tree, because it is
16446           too small and annoying to be separate.  Move rfbsrc plugin
16447           to gst/.
16448         * ext/Makefile.am:
16449         * ext/librfb/Makefile.am:
16450         * ext/librfb/gstrfbsrc.c:
16451         * gst/librfb/Makefile.am:
16452         * gst/librfb/gstrfbsrc.c:
16453         * gst/librfb/rfb.c:
16454         * gst/librfb/rfb.h:
16455         * gst/librfb/rfbbuffer.c:
16456         * gst/librfb/rfbbuffer.h:
16457         * gst/librfb/rfbbytestream.c:
16458         * gst/librfb/rfbbytestream.h:
16459         * gst/librfb/rfbcontext.h:
16460         * gst/librfb/rfbdecoder.c:
16461         * gst/librfb/rfbdecoder.h:
16462         * gst/librfb/rfbutil.h:
16463
16464 2005-02-10  Tim-Philipp Müller  <tim at centricular dot net>
16465
16466         * gst/speed/Makefile.am:
16467         * gst/speed/demo-mp3.c: (main):
16468         * gst/speed/filter.func:
16469         * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
16470         (speed_class_init), (speed_init), (speed_chain_int16),
16471         (speed_chain_float32), (speed_chain), (speed_set_property),
16472         (speed_get_property), (speed_change_state):
16473         * gst/speed/gstspeed.h:
16474           Fix speed element and make it chain-based (fixes #156467),
16475           and make it handle more than one channel.
16476
16477 2005-02-10  Jan Schmidt  <thaytan@mad.scientist.com>
16478
16479         * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
16480         (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
16481         (gst_dtsdec_chain), (gst_dtsdec_change_state):
16482         * ext/dts/gstdtsdec.h:
16483           Don't clobber the stack constructing the channels array.
16484           Make the element chain-based. DTS tracks can now be played.
16485           
16486 2005-02-09  Tim-Philipp Müller  <tim at centricular dot net>
16487
16488         * gst-libs/gst/audio/multichannel.h:
16489         * gst-libs/gst/gconf/gconf.h:
16490         * gst-libs/gst/idct/idct.h:
16491         * gst-libs/gst/media-info/media-info-priv.h:
16492         * gst-libs/gst/play/play.h:
16493         * gst-libs/gst/resample/private.h:
16494         * gst-libs/gst/resample/resample.h:
16495         * gst-libs/gst/riff/riff-ids.h:
16496         * gst-libs/gst/video/video.h:
16497         * gst-libs/gst/video/videosink.h:
16498           Add G_BEGIN_DECLS and G_END_DECLS around headers where
16499           missing, so that they work when included from C++ code.
16500
16501 2005-02-09  David Schleef  <ds@schleef.org>
16502
16503         * testsuite/gst-lint: Check for non-statically scoped
16504           parent_class variables.  This won't be a problem once
16505           plugins are loaded with RTLD_LOCAL.
16506
16507 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16508
16509         * ext/mplex/gstmplexibitstream.cc:
16510           gcc madness.
16511
16512 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16513
16514         * ext/ogg/gstogmparse.c:
16515         * gst/debug/gstnavigationtest.c:
16516           Die, thou faulty symbol pollutors (non-static parent_class).
16517
16518 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16519
16520         * ext/mplex/gstmplexibitstream.cc:
16521           Fix event handling (#165525).
16522
16523 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16524
16525         * ext/mikmod/gstmikmod.c:
16526         * gst/modplug/gstmodplug.cc:
16527           Add missing endianness to template (fixes #165509).
16528
16529 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16530
16531         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
16532           Fix wrong order of reading of optional bytes (#165290).
16533
16534 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16535
16536         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
16537           Implement FILLER event awareness.
16538
16539 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16540
16541         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
16542           Fix track calculations (#166208).
16543
16544 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
16545
16546         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16547
16548         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
16549         * ext/libpng/gstpngenc.c:
16550           Fix byte-order, use proper fixed caps. Fixes #164197.
16551
16552 2005-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
16553
16554         * configure.ac:
16555           Add dvdlpcmdec 
16556
16557         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
16558         (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
16559           Don't push buffers if the src pad isn't negotiated yet.
16560           
16561         * gst/audioconvert/gstaudioconvert.c:
16562         (gst_audio_convert_buffer_to_default_format),
16563         (gst_audio_convert_buffer_from_default_format):
16564           Add support for 24-bit width.
16565
16566         * gst/dvdlpcmdec/.cvsignore:
16567         * gst/dvdlpcmdec/Makefile.am:
16568         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
16569         (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
16570         (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
16571         (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
16572         (plugin_init):
16573         * gst/dvdlpcmdec/gstdvdlpcmdec.h:
16574           New decoder for rearranging DVD LPCM into our audio/x-raw-int
16575           format. Needs support for the channels maps if someone can find 
16576           a DVD LPCM track with > 2 channels.
16577
16578         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
16579         (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
16580         (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
16581         * gst/mpegstream/gstdvddemux.h:
16582         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
16583         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
16584         (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
16585         * gst/mpegstream/gstmpegdemux.h:
16586         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
16587         (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
16588         (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
16589         (gst_mpeg_parse_handle_src_query),
16590         (gst_mpeg_parse_handle_src_event):
16591           Use audio/x-dvd-lpcm for LPCM output.
16592           Add DTS output.
16593
16594 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
16595
16596         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16597
16598         * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
16599         (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
16600           Add BGRA handling (#165736).
16601
16602 2005-02-08  Francis Labonte  <francis_labonte@hotmail.com>
16603
16604         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16605
16606         * gst/law/alaw-decode.c: (alawdec_link):
16607         * gst/law/alaw-encode.c: (alawenc_link):
16608         * gst/law/mulaw-decode.c: (mulawdec_link):
16609         * gst/law/mulaw-encode.c: (mulawenc_link):
16610           Fix caps memleaks (#166600).
16611
16612 2005-02-08  Tim-Philipp Müller  <tim at centricular dot net>
16613
16614         * ext/tarkin/mem.h:
16615         * ext/tarkin/wavelet.h:
16616         * ext/tarkin/yuv.h:
16617         * gst/ffmpegcolorspace/avcodec.h:
16618           Include "_stdint.h" instead of <stdint.h>. Fixes build on
16619           systems that don't have stdint.h, like Solaris9 (fixes #166631).
16620
16621 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16622
16623         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
16624         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
16625         (gst_xvimagesink_change_state):
16626           Clear window on PAUSED->READY instead of READY->PAUSED. Stop
16627           Xv video (and thereby regenerate Xv colourkey) in clear() so
16628           that PLAY -> READY -> PLAY works (fixes #162504).
16629
16630 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16631
16632         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
16633           Switch to list instead of range, since MJPEG-devices really just
16634           support decimations, not any size.
16635
16636 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
16637         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
16638         (gst_mpeg2dec_reset), (free_all_buffers),
16639         (gst_mpeg2dec_alloc_buffer), (handle_sequence):
16640         * ext/mpeg2dec/gstmpeg2dec.h:
16641           The libmpeg2 user-allocated buffer management is awkward, 
16642           to say the least. Hopefully this fixes things.
16643
16644 2005-02-04  Andy Wingo  <wingo@pobox.com>
16645
16646         * gst/audioconvert/bufferframesconvert.c
16647         (buffer_frames_convert_fixate): New function, fixates to 256
16648         frames per buffer by default. (Much better than 1.)
16649         (buffer_frames_convert_init): Set the fixate function for both src
16650         and sink pad.
16651         (buffer_frames_convert_link): After success setting nonfixed caps,
16652         get the negotiated caps so we can know how many buffer-frames it
16653         will be. No idea how this worked at all before.
16654
16655 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
16656
16657         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
16658         (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
16659         (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
16660         (handle_sequence), (handle_picture):
16661         * ext/mpeg2dec/gstmpeg2dec.h:
16662           Rearrange buffer tracking and refcounting and refactor
16663           a little for readability. 
16664
16665 2005-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
16666         * sys/v4l/gstv4l.c: (plugin_init):
16667         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
16668         (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
16669         (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
16670         (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
16671         * sys/v4l/gstv4ljpegsrc.h:
16672         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
16673         * sys/v4l/v4l_calls.h:
16674         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
16675         (gst_v4lsrc_get_fps):
16676         * sys/v4l/v4lsrc_calls.h:
16677           Add new v4ljpegsrc for handling the ov51x hacky "I'll give
16678           you jpeg inside rgb frames" driver.
16679           Don't error in the v4lsrc link function, just return 
16680           REFUSED.
16681
16682 2005-02-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16683
16684         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
16685         (gst_qcamsrc_open):
16686           Use GST_ELEMENT_ERROR, not g_warning, if open failed.
16687
16688 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16689
16690         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
16691           Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
16692
16693 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16694
16695         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
16696           Reset negotiated state on PAUSED->READY.
16697
16698 2005-02-02  David Schleef  <ds@schleef.org>
16699
16700         * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
16701         whereever possible.  (Fixes #165997)
16702         * examples/capsfilter/capsfilter1.c: (main):
16703         * examples/dynparams/filter.c: (create_ui):
16704         * examples/seeking/cdparanoia.c: (get_track_info), (main):
16705         * examples/seeking/chained.c: (main):
16706         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
16707         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
16708         (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
16709         (make_mpeg_pipeline), (make_mpegnt_pipeline):
16710         * examples/seeking/spider_seek.c: (make_spider_pipeline):
16711         * examples/switch/switcher.c: (main):
16712         * ext/dv/demo-play.c: (main):
16713         * ext/faad/gstfaad.c: (gst_faad_change_state):
16714         * ext/mad/gstmad.c: (gst_mad_chain):
16715         * ext/smoothwave/demo-osssrc.c: (main):
16716         * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
16717         (gst_gconf_render_bin_from_description),
16718         (gst_gconf_get_default_audio_sink),
16719         (gst_gconf_get_default_video_sink),
16720         (gst_gconf_get_default_audio_src),
16721         (gst_gconf_get_default_video_src),
16722         (gst_gconf_get_default_visualization_element):
16723         * gst/level/demo.c: (main):
16724         * gst/level/plot.c: (main):
16725         * gst/playback/gstplaybin.c: (gen_video_element),
16726         (gen_audio_element):
16727         * gst/playback/test.c: (gen_video_element), (gen_audio_element):
16728         * gst/playondemand/demo-mp3.c: (setup_pipeline):
16729         * gst/sine/demo-dparams.c: (main):
16730         * gst/spectrum/demo-osssrc.c: (main):
16731         * gst/speed/demo-mp3.c: (main):
16732         * gst/volume/demo.c: (main):
16733         * testsuite/embed/embed.c: (main):
16734
16735 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
16736
16737         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
16738         (gst_tcpclientsink_finalize):
16739         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
16740         (gst_tcpclientsrc_finalize):
16741         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
16742         (gst_tcpserversink_init), (gst_tcpserversink_finalize):
16743         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
16744         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
16745           Don't leak the hostname when shutting down.
16746           In tcpserversrc, take a copy of the default hostname.
16747
16748 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16749
16750         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
16751           Set caps to systemstream=TRUE.
16752
16753 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16754
16755         * testsuite/Makefile.am:
16756           Fix more OSX buildbots.
16757
16758 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
16759
16760         * ext/mpeg2dec/gstmpeg2dec.c:
16761           Don't send things to NULL PAD_PEERs
16762
16763         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
16764           Copy-on-write the incoming buffer.
16765
16766         * gst/mpegstream/gstdvddemux.h:
16767         * gst/mpegstream/gstmpegclock.h:
16768         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
16769         (normal_seek), (gst_mpeg_demux_handle_src_event):
16770         * gst/mpegstream/gstmpegdemux.h:
16771         * gst/mpegstream/gstmpegpacketize.h:
16772         * gst/mpegstream/gstmpegparse.c:
16773         (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
16774         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
16775         (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
16776         (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
16777         (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
16778         * gst/mpegstream/gstmpegparse.h:
16779         * gst/mpegstream/gstrfc2250enc.h:
16780           Various changes to the way time is computed that make seeking and
16781           total time estimation much better here.
16782           Use G_BEGIN/END_DECLS instead of __cplusplus
16783
16784         * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
16785           Use gst_buffer_stamp instead of only copying the TIMESTAMP
16786
16787 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16788
16789         * gst/subparse/gstsubparse.c:
16790           Fix OSX buildbot.
16791
16792 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
16793
16794         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
16795         (theora_enc_chain), (theora_enc_change_state):
16796         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
16797         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
16798         (gst_vorbisenc_change_state):
16799         * ext/vorbis/vorbisenc.h:
16800           Set granulepos and timestamp correctly for streams not
16801           starting at 0, taking into account the initial delay.
16802
16803 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
16804
16805         * gst/mpegstream/gstdvddemux.c:
16806           Add audio/x-dts to audio pad template caps
16807
16808 2005-01-30  David Schleef  <ds@schleef.org>
16809
16810         * ext/polyp/polypsink.c: (gst_polypsink_base_init),
16811         (create_context), (gst_polypsink_link): Fix silly endianness
16812         bug.  Add some debugging.  Remove float from caps; it doesn't
16813         work.  Attempt to get remote audio working.
16814
16815 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16816
16817         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
16818           Add 3IV2 fourcc.
16819
16820 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16821
16822         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
16823         (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
16824         (gst_avi_demux_stream_data):
16825         * gst/avi/gstavidemux.h:
16826           Invert DIB images. Fixes #132341.
16827
16828 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16829
16830         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16831         (gst_ffmpegcsp_chain):
16832           D'oh, reference the palette data, not the palette structure.
16833           Fixes color distortion in #132341.
16834
16835 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16836
16837         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
16838           PAR can be non-fixed when not provided as argument (#162626).
16839
16840 2005-01-29  David Moore  <dcm@acm.org>
16841
16842         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16843
16844         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
16845         (gst_qtdemux_loop_header):
16846           Re-apply patch from #142272 that allows non-seekable sources,
16847           re-proposed by Daniel Drake <dsd@gentoo.org>.
16848
16849 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16850
16851         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
16852           Use the src template for creating the src pad (#162330).
16853
16854 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16855
16856         * configure.ac:
16857         * ext/musepack/Makefile.am:
16858         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
16859         (gst_musepackdec_init), (gst_musepackdec_dispose),
16860         (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
16861         (gst_musepack_stream_init), (gst_musepackdec_loop),
16862         (gst_musepackdec_change_state):
16863         * ext/musepack/gstmusepackdec.cpp:
16864         * ext/musepack/gstmusepackdec.h:
16865         * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
16866         (gst_musepack_reader_read), (gst_musepack_reader_seek),
16867         (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
16868         (gst_musepack_reader_canseek), (gst_musepack_init_reader):
16869         * ext/musepack/gstmusepackreader.cpp:
16870         * ext/musepack/gstmusepackreader.h:
16871           Update to 1.1 API (#165446).
16872
16873 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16874
16875         * ext/Makefile.am:
16876           Unbreak buildbot.
16877
16878 2005-01-28  Andy Wingo  <wingo@pobox.com>
16879
16880         * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
16881         to reflect a different dubious internet source. Add a reference
16882         and some commentary.
16883
16884 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16885
16886         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
16887         (gst_stream_selector_get_caps), (gst_stream_selector_chain):
16888         * gst/playback/gststreamselector.h:
16889           Be more selective when we're redoing caps negotiation from
16890           within the chain function on a stream change.
16891
16892 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16893
16894         * configure.ac:
16895         * ext/Makefile.am:
16896         * ext/amrnb/Makefile.am:
16897         * ext/amrnb/amrnb.c: (plugin_init):
16898         * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
16899         (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
16900         (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
16901         (gst_amrnbdec_state_change):
16902         * ext/amrnb/amrnbdec.h:
16903         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
16904         (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
16905         (gst_amrnbparse_init), (gst_amrnbparse_formats),
16906         (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
16907         (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
16908         (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
16909         * ext/amrnb/amrnbparse.h:
16910           Add support for AMR-NB (mobile phone audio format; #155163, #163286).
16911         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16912           Add AMR-NB/-WB raw formats.
16913         * ext/alsa/gstalsa.c: (gst_alsa_link):
16914           Keep valid time when changing format.
16915         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
16916         (qtdemux_parse_trak):
16917           Add some more format-specific options (#140141, #143555, #155163).
16918
16919 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16920
16921         * gst/matroska/matroska-demux.c:
16922         (gst_matroska_demux_parse_blockgroup):
16923           Fix logic error in timing of subtitle stream synchronization.
16924         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
16925           Add skip-chunk, which is found in kodak-camera streams.
16926
16927 2005-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
16928
16929         * po/LINGUAS:
16930         * po/vi.po:
16931           Adding Vietnamese translation (submitted by Clytie Siddall)
16932
16933 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16934
16935         * gst/playback/gstdecodebin.c: (try_to_link_1):
16936           Use realpad for signal.
16937
16938 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16939
16940         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
16941           Fix category so decodebin picks it up.
16942
16943 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16944
16945         * ext/mad/Makefile.am:
16946         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
16947         (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
16948         (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
16949         (found_type), (gst_id3demux_bin_change_state):
16950         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
16951         (gst_id3_tag_init), (gst_id3_tag_handle_event),
16952         (gst_id3_tag_src_link), (gst_id3_tag_chain),
16953         (gst_id3_tag_change_state), (plugin_init):
16954         * ext/mad/gstmad.h:
16955           Add id3demuxbin (which is a simple bin consisting of id3demux
16956           and typefind), take over rank from id3demux, remove typefind
16957           code from id3demux. Makes all broken mp3s that I know of work,
16958           and thereby fixes #152688.
16959
16960 2005-01-27  Edward Hervey  <bilboed@bilboed.com>
16961
16962         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16963
16964         * ext/mad/gstmad.c: (gst_mad_src_event):
16965         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
16966           Allow seeks on audio pad, make mad forward those (#164826).
16967         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
16968           Set duration (#165335).
16969
16970 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16971
16972         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
16973         (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
16974         (gst_asf_demux_process_ext_content_desc),
16975         (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
16976         (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
16977         * gst/asfdemux/gstasfdemux.h:
16978           Improve metadata display, e.g. if the metadata comes before the
16979           streams are loaded (which is perfectly valid).
16980
16981 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16982
16983         * tools/gst-launch-ext-m.m:
16984           Fix AVI/ASF pipelines (#165340).
16985
16986 2005-01-26  Amaury Jacquot  <sxpert@esitcom.org>
16987         * ext/cairo/gsttextoverlay.c: include  string.h and strings.h to fix
16988         build failure on amd64
16989
16990 2005-01-26  Tim-Philipp Müller  <tim at centricular dot net>
16991
16992         * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
16993         (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
16994           Check environment variables GST_ID3V2_TAG_ENCODING,
16995           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
16996           list of character encodings to force interpretation of non-unicode
16997           strings stored in an ID3v2 tag to a particular encoding. If none
16998           is specified, try to use current locale's encoding, then fall back
16999           to ISO-8859-1 (which will always succeed). (Resolves #149274)
17000         * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
17001         (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
17002           Check environment variables GST_ID3V1_TAG_ENCODING,
17003           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
17004           list of character encodings to use in case a string encountered
17005           in an ID3v1 tag is not valid UTF-8 already. If no encoding is
17006           specified, try to use the current locale's encoding, then fall
17007           back to ISO-8859-1 (which will always succeed).
17008
17009 2005-01-25  Benjamin Otte  <otte@gnome.org>
17010
17011         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
17012           - on half framerate, compute the rate in advance so the comparisons
17013             don't compare wrong values
17014           - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
17015             behaviour
17016           - don't use mad_header_decode anymore, mad_frame_decode does that
17017             automatically
17018           - when getting rid of consumed bytes, reset the stream's skiplen
17019           (fixes #163867)
17020
17021 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
17022
17023         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
17024           Use 1/2 a second for default max_discont, as PES streams from DVB
17025           seem to have larger spacings in the SCR. 
17026           Fix a typo.
17027
17028 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17029
17030         * gst/playback/gstplaybasebin.c: (group_commit):
17031           Notify delayed stream-info availability.
17032
17033 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
17034         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
17035         (gst_a52dec_handle_event), (gst_a52dec_chain):
17036         Add some debug output. Check that a discont has a valid
17037         time associated.
17038         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
17039         (gst_alsa_sink_loop):
17040         Ignore TAG events. A little extra debug for broken timestamps.
17041         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
17042         (dvdnavsrc_change_state):
17043         Ensure we send a discont to engage the link before we send any
17044         other events.
17045         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
17046         (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
17047         (_seek_chapter), (seek_sector), (dvdreadsrc_get),
17048         (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
17049         Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
17050         dvd://title works in totem because typefinding sends a seek that ends
17051         up going back to chapter 1 regardless.
17052         * ext/mpeg2dec/gstmpeg2dec.c:
17053         * ext/mpeg2dec/gstmpeg2dec.h:
17054         Output correct timestamps and handle disconts.
17055         * ext/ogg/gstoggdemux.c: (get_relative):
17056         Small guard against a null dereference.
17057         * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
17058         (gst_textoverlay_set_property):
17059         Free memory when done. Don't call gst_event_filler_get_duration on
17060         EOS events. Use GST_LOG and GST_WARNING instead of g_message and
17061         g_warning.
17062         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
17063         (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
17064         (gst_sw_srclink), (gst_smoothwave_chain):
17065         Draw solid lines, prettier colours.
17066         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
17067         Add a default palette that'll work for some movies.
17068         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
17069         (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
17070         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
17071         * gst/mpegstream/gstdvddemux.h:
17072         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
17073         (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
17074         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
17075         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
17076         * gst/mpegstream/gstmpegparse.h:
17077         Use PTM/NAV events when for timestamp adjustment when connected to 
17078         dvdnavsrc. Don't use many discont events where one suffices.
17079         * gst/playback/gstplaybasebin.c: (group_destroy),
17080         (gen_preroll_element), (gst_play_base_bin_add_element):
17081         * gst/playback/gstplaybasebin.h:
17082         Make sure we remove subtitles from the same bin we put them in.
17083         * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
17084         (gst_subparse_buffer_format_autodetect),
17085         (gst_subparse_change_state):
17086         Fix some memleaks and invalid accesses.
17087         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
17088         (oggskel_type_find), (cmml_type_find), (plugin_init):
17089         Some typefind functions for Annodex v3.0 files
17090         * gst/wavparse/gstwavparse.h:
17091         GstRiffReadClass is the correct parent class.
17092
17093 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17094
17095         * gst-libs/gst/riff/riff-media.c:
17096         (gst_riff_create_video_caps_with_data):
17097           Add extradata to huffyuv (fixes #165013).
17098         * gst-libs/gst/riff/riff-read.c:
17099         (gst_riff_read_strf_vids_with_data):
17100           Fix extradata extraction if it is in the chunk size.
17101
17102 2005-01-25  Edward Hervey  <bilboed@bilboed.com>
17103
17104         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17105
17106         * gst/effectv/gstquark.c: (gst_quarktv_class_init),
17107         (gst_quarktv_change_state), (gst_quarktv_dispose):
17108           Memory free'ing location fix (#164708).
17109
17110 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17111
17112         * gst/playback/gstplaybasebin.c: (group_commit),
17113         (gen_preroll_element), (probe_triggered), (gen_source_element),
17114         (setup_source), (gst_play_base_bin_change_state),
17115         (gst_play_base_bin_add_element):
17116           Don't block for streams.
17117         * gst/playback/gststreaminfo.c: (stream_info_change_state),
17118         (gst_stream_info_set_mute):
17119           Use gst_pad_set_active_recursive.
17120
17121 2005-01-25  Andy Wingo  <wingo@pobox.com>
17122
17123         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
17124         for #ifndef HAVE_XVIDEO.
17125
17126 2005-01-24  Jeffrey C. Ollie
17127
17128         reviewed by: Maciej Katafiasz  <mathrick@freedesktop.org>
17129
17130         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
17131         * ext/gsm/gstgsmdec.h:
17132         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
17133         * ext/gsm/gstgsmenc.h:
17134         Fix rate to 8kHz as per spec, removes obscure errors when no rate
17135         was given by property. Add proper buffer timestamps and offsets.
17136
17137 2005-01-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17138
17139         * gst-libs/gst/riff/riff-media.c:
17140         (gst_riff_create_audio_caps_with_data):
17141           Audio can be <8000Hz.
17142
17143 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17144
17145         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
17146           Explicit state change to workaround refcount bugs.
17147
17148 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17149
17150         * gst/avi/gstavimux.c: (gst_avimux_write_tag),
17151         (gst_avimux_riff_get_avi_header):
17152           Fix...
17153
17154 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17155
17156         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
17157         (gst_riff_read_element_data):
17158         * gst-libs/gst/riff/riff-read.h:
17159           Add _peek version (req'ed in CDXA).
17160         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
17161         (gst_cdxaparse_loop):
17162           Fix parsing in playbin.
17163         * gst/playback/gstdecodebin.c: (close_pad_link):
17164           Ignore current_ pads, they cause major annoyance.
17165
17166 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17167
17168         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
17169           Safety guard.
17170
17171 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17172
17173         * gst/avi/gstavimux.c: (gst_avimux_write_tag):
17174           Fix padding...
17175
17176 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17177
17178         * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
17179           Allow for 0-sized buffers. Fixes length query problems in
17180           starwars.mkv from the testsuite.
17181
17182 2005-01-19  Tim-Philipp Müller  <tim at centricular dot net>
17183
17184         * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
17185         (gst_video_box_i420), (gst_video_box_chain):
17186           Fix row strides for I420 (fixes #163159)
17187           
17188 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17189
17190         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
17191           MPEG2 has a useful rate property, so we can actually use that.
17192           For MPEG-1, continue using the bytes/time properties.
17193
17194 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17195
17196         * gst-libs/gst/riff/riff-media.c:
17197         (gst_riff_create_video_caps_with_data),
17198         (gst_riff_create_video_template_caps):
17199           Add intel-h263.
17200
17201 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17202
17203         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
17204           Fail if caps negotiation fails. Should fix #162184, and should
17205           definately be in there regardless of it fixing the actual bug.
17206         * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
17207         (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
17208         (gst_avimux_riff_get_avix_header),
17209         (gst_avimux_riff_get_video_header),
17210         (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
17211         (gst_avimux_start_file), (gst_avimux_handle_event),
17212         (gst_avimux_change_state):
17213         * gst/avi/gstavimux.h:
17214           Refactor structure writing to use GST_WRITE_UINT macros, add
17215           metadata writing support.
17216
17217 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17218
17219         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
17220           Elements may already be destroyed when this function is called.
17221
17222 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17223
17224         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
17225         (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
17226           More memory leak fixes (#149162).
17227
17228 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17229
17230         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
17231         (gst_qtdemux_add_stream):
17232           Fix two memleaks.
17233
17234 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17235
17236         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
17237           Argh...
17238
17239 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17240
17241         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
17242           Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
17243           when fixating to six channels in Totem.
17244
17245 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
17246
17247         * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
17248           Fix compile warnings on Solaris 10 buildbot
17249
17250 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
17251
17252         * ext/dvdread/dvdreadsrc.c: (_read):
17253           Don't read beyond the last cell in a chapter (fixes 
17254           invalid memory access)
17255
17256 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
17257
17258         * ext/dvdread/stream_labels.c:
17259         (dvdreadsrc_get_audio_stream_labels):
17260           Use NULL for an empty GList instead of g_list_alloc(); fix 
17261           memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead 
17262           of GString (easier to bulk free later)
17263
17264 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
17265
17266         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17267
17268         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17269         (gst_ffmpeg_pixfmt_to_caps):
17270           Fix BGRA32 caps (#164209).
17271
17272 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
17273
17274         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17275
17276         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17277         (gst_ffmpeg_caps_to_pixfmt):
17278           alpha_mask can be RGBA/ABGR. Fixes #164265.
17279
17280 2005-01-17  Francis Labonte  <francis_labonte@hotmail.com>
17281
17282         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17283
17284         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
17285         (gst_mpeg2dec_alloc_buffer):
17286         * ext/mpeg2dec/gstmpeg2dec.h:
17287           Crop if decoding size is not the actual image size (#163676).
17288
17289 2005-01-17  Steve Baker  <steve@stevebaker.org>
17290
17291         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17292
17293         * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
17294         (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
17295           Add libsndfile typefind functions (#163309).
17296
17297 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17298
17299         * tools/gst-launch-ext-m.m:
17300           Add .aac, fix .m1v/.m2v (#163891).
17301
17302 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17303
17304         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
17305           Sanity check, don't wait endlessly since the clock might not
17306           actually run at this point (which is a deadlock). Fixes #164069.
17307
17308 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17309
17310         * gst/playback/gstplaybasebin.c: (probe_triggered):
17311           Of course, only pause if group is done...
17312
17313 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17314
17315         * gst/playback/gstplaybasebin.c: (probe_triggered):
17316           Thread safety.
17317
17318 2005-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
17319
17320         * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
17321           Don't return state change success when the parent
17322           failed.
17323
17324 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17325
17326         * gst/avi/gstavimux.c: (gst_avimux_handle_event):
17327           Free events (fix memleak in #162905).
17328
17329 2005-01-15  Gergely Nagy  <algernon@bonehunter.rulez.org>
17330
17331         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17332
17333         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17334         (gst_ffmpeg_caps_to_pixfmt):
17335           Fix for depth = 15. Fixes #161675.
17336
17337 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17338
17339         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
17340           Set FPS correctly, even for webcams and the like.
17341         * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
17342           Don error on setting while capturing.
17343
17344 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17345
17346         * ext/dv/gstdvdec.c:
17347         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
17348         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
17349           I'm a bad boy. using /1001. to force C to do float division
17350           and not integer division (as it did in my last commit)
17351           Thanks to David I. Lehn for pointing this mistake.
17352
17353 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17354
17355         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
17356           Revert Johan's 1.35->1.36 since it breaks compat.
17357
17358 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17359
17360         * ext/dv/gstdvdec.c:
17361         * ext/libfame/gstlibfame.c:
17362         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
17363         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
17364           replace framerate aproximations by their real value
17365           (24000/1001, 30000/1001, 60000/1001)
17366           Finish fixing bug #164049
17367
17368 2005-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
17369
17370         * ext/ogg/gstoggmux.c:
17371           eos/bos debugging
17372         * gst/tcp/gstmultifdsink.c:
17373         * gst/tcp/gstmultifdsink.h:
17374         * gst/tcp/gsttcp.c:
17375         * gst/tcp/gsttcp.h:
17376         * gst/tcp/gsttcpclientsink.c:
17377         * gst/tcp/gsttcpclientsrc.c:
17378         * gst/tcp/gsttcpserversink.c:
17379         * gst/tcp/gsttcpserversrc.c:
17380           improve reusability of elements after state changes and errors
17381           make multifdsink throw away streamheaders when receiving new ones
17382
17383 2005-01-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17384
17385         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
17386           Fix for if items are already in list...
17387
17388 2005-01-12  Benjamin Otte  <otte@gnome.org>
17389
17390         * gst/adder/gstadder.c: (gst_adder_loop):
17391           fix adder a bit so it doesn't screw up with events as much anymore
17392
17393 2005-01-12  Jan Schmidt  <thaytan@mad.scientist.com>
17394
17395         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
17396         (pixbufscale_scale), (gst_pixbufscale_chain):
17397         * ext/gdk_pixbuf/pixbufscale.h:
17398           Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
17399           to ensure rowstrides are calculated the same way as 
17400           ffmpegcolorspace
17401           Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
17402           that we pick up duration and offset also.
17403
17404 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17405
17406         * gst/avi/gstavimux.c: (gst_avimux_class_init),
17407         (gst_avimux_pad_unlink), (gst_avimux_release_pad):
17408           Reusability fixes.
17409
17410 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17411
17412         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
17413         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
17414         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
17415         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
17416           Update flags when requested.
17417
17418 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17419
17420         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
17421           Fix dmix.
17422
17423 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17424
17425         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
17426         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
17427         (probe_triggered), (new_decoded_pad), (gen_source_element),
17428         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
17429         * gst/playback/gstplaybasebin.h:
17430         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
17431         (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
17432         (gst_play_bin_change_state):
17433           Implement group-switch signal for use in apps to clear metadata
17434           cache, clean up subtitle, add suburi property instead of # hack,
17435           some error-out fixes.
17436
17437 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17438
17439         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
17440           Debug.
17441         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
17442           If we got a state change in the _get handler, don't return success.
17443
17444 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17445
17446         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
17447         (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
17448           Make jpegdec quiet on MJPEG decoding
17449         * gst/asfdemux/README:
17450           Fix mimetypes for MJPEG and H263
17451
17452 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17453
17454         * ext/theora/theoradec.c: (theora_dec_chain):
17455           Fix broken code generation by gcc by swapping arguments.
17456         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
17457           Fix \n in debug.
17458
17459 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17460
17461         * TODO:
17462           delete this file, it is by far outdated
17463         * ext/alsa/gstalsa.1: remove
17464         * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
17465         (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
17466         (gst_alsa_get_caps):
17467           Add HW probing for supported sample rates. Fixes #161704
17468
17469 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17470
17471         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17472           Don't crash, biatch! :).
17473
17474 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17475
17476         * ext/musepack/gstmusepackreader.cpp:
17477         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
17478           Some work on tags - still doesn't work in playbin...
17479         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17480           Handle events...
17481
17482 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17483
17484         * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
17485           Also shove tags on kid pads.
17486
17487 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17488
17489         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
17490           Don't bail on unknown events.
17491         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17492           Don't crash on events before negotiation.
17493         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
17494           Send tags on pads, too.
17495         * gst/playback/gststreamselector.c:
17496         (gst_stream_selector_request_new_pad):
17497           Forward events on first pad if no input was selected yet.
17498
17499 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17500
17501         * gst/playback/gstplaybasebin.c: (setup_substreams):
17502           Don't disable streamtype if the stream doesn't exist, since
17503           then playing a video after audio will disable both and nothing
17504           will happen. Fixes the testsuite.
17505
17506 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17507
17508         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
17509         (gst_v4l_xoverlay_set_xwindow_id):
17510         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
17511         (gst_v4l2_xoverlay_set_xwindow_id):
17512           Add debug categories, fix overlay disabling.
17513
17514 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17515
17516         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
17517         * ext/alsa/gstalsa.h:
17518           Add HW probing for period_count/size and buffer_size MIX/MAX
17519           Adjust default/user defined value if out of bounds
17520           Should fix bug #162024
17521
17522 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17523
17524         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
17525           Fix warning (#161191).
17526
17527 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17528
17529         * ext/dvdread/stream_labels.c:
17530         (dvdreadsrc_get_audio_stream_labels):
17531           Fix warning (init the good variable in switch default)
17532
17533 2005-01-09  Koop Mast  <kwm@rainbow-runner.nl>
17534
17535         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17536
17537         * gst/tta/gstttaparse.c: (gst_tta_src_event):
17538           Fix gcc-2.95 compile (#163485).
17539
17540 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17541
17542         * configure.ac:
17543         * ext/flac/gstflacenc.c: (gst_flacenc_init),
17544         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
17545         (gst_flacenc_tell_callback), (gst_flacenc_chain),
17546         (gst_flacenc_change_state):
17547         * ext/flac/gstflacenc.h:
17548           Update for API change in flac-1.1.1. Update requirement in
17549           configure.ac. Fixes #162974.
17550
17551 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17552
17553         * gst/playback/gstplaybasebin.c: (group_destroy):
17554           Remove hack to get rid of assert and get rid of unlinked
17555           signals properly.
17556
17557 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17558
17559         * gst/playback/gstplaybasebin.c: (setup_source):
17560           Set source to NULL so that resources are free'ed. Fixes issues
17561           with playback of CDDA and similar device-accessing things.
17562
17563 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17564
17565         * testsuite/embed/Makefile.am:
17566           test->noinst, fix make test in buildbot.
17567
17568 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17569
17570         * ext/dvdread/stream_labels.c: new file
17571         * ext/dvdread/stream_labels.h: new file
17572         * ext/dvdread/Makefile.am:
17573         * ext/dvdread/dvdreadsrc.c: (_seek_title):
17574           Extract audio stream label from DVD IFO files.
17575           It only dump them on the console for now, still have to
17576           make playbin aware of them.
17577
17578 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17579
17580         * gst/playback/gstplaybasebin.c: (setup_source):
17581           Fix hanging subs.
17582
17583 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17584
17585         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
17586         (gen_preroll_element), (remove_groups), (setup_subtitle),
17587         (gen_source_element), (setup_source):
17588         * gst/playback/gstplaybasebin.h:
17589           Multiple .sub files is just a stupid idea... Fix some threading
17590           mistakes. Interestingly, external .sub files cause playbin to
17591           hang, I don't know why... Parsing fixes contributed by Fran??ois
17592           Kooman <fkooman@tuxed.net>.
17593
17594 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17595
17596         * testsuite/embed/Makefile.am:
17597           Fix buildbot.
17598
17599 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
17600
17601         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17602
17603         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
17604         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
17605         (gst_pngenc_set_property):
17606         * ext/libpng/gstpngenc.h:
17607           Add compression level property (#163323).
17608
17609 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17610
17611         * configure.ac:
17612         * examples/capsfilter/capsfilter1.c: (main):
17613         * examples/seeking/spider_seek.c: (make_spider_pipeline):
17614         * ext/dvdread/Makefile.am:
17615         * ext/dvdread/demo-play:
17616         * ext/dvdread/demo-play.c:
17617         * gconf/gstreamer.schemas.in:
17618         * gst-libs/gst/gconf/gconf.c:
17619         * sys/v4l/TODO:
17620         * testsuite/Makefile.am:
17621         * testsuite/embed/Makefile.am:
17622         * testsuite/embed/embed.c: (cb_expose), (main):
17623           Remove all references to xvideosink, fix examples (#140845).
17624         * gst/playback/gstplaybasebin.c: (group_destroy):
17625           Apparently, disposal does not unlink - so do explicitely.
17626         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
17627           Add debug.
17628
17629 2005-01-09  Maciej Katafiasz <mathrick@freedesktop.org>
17630
17631         * README: fix PKG_CONFIG_PATH instructions, what was there
17632         previously was breaking default search path, not nice. 
17633         Fixes #163358
17634
17635 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17636
17637         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
17638         (gst_audioscale_chain):
17639           %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
17640           when resampling - how the ^@$^!@^! is this possible?!?
17641
17642 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17643
17644         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
17645           Reset variables on READY.
17646         * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
17647         (gst_matroska_mux_loop):
17648           Require data before writing header.
17649
17650 2005-01-09  Francis Labonte  <francis_labonte@hotmail.com>
17651
17652         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17653
17654         * ext/mad/gstmad.c: (gst_mad_chain):
17655           Don't call mad_stream_sync() directly after recovering sync.
17656           Fixes #151661.
17657
17658 2005-01-09  Martin Eikermann  <meiker@upb.de>
17659
17660         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17661
17662         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
17663         (snapshot_handler), (gst_snapshot_sinkconnect),
17664         (gst_snapshot_chain):
17665           Allocate resources when required, fix recursive signal emission
17666           and fix caps. Fixes #161667.
17667
17668 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
17669
17670         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17671
17672         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
17673         (gst_pngdec_chain):
17674           Handle only 8-bppc (bits-per-pixel-component) images, better
17675           error handling and correct strides. Fixes #163177.
17676         * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
17677         (gst_pngenc_chain):
17678           Better error handling. Fixes #163348.
17679
17680 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17681
17682         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
17683         (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
17684         (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
17685         (dvdnavsrc_uri_handler_init):
17686           Add DVD-nav URI (dvdnav://) for Totem testing purposes.
17687         * gst/playback/gstplaybasebin.c: (gen_source_element):
17688           Add MMS to streaming URIs.
17689
17690 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17691
17692         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
17693         * sys/xvimage/xvimagesink.c:
17694         (gst_xvimagesink_navigation_send_event):
17695           Check for pad availability before sending event.
17696
17697 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17698
17699         * gst-plugins.spec.in:
17700           Add subparse.
17701
17702 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17703
17704         * configure.ac:
17705           Since we use functions from CVS, up requirement.
17706
17707 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17708
17709         * gst/playback/Makefile.am:
17710         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
17711         (group_destroy), (group_commit), (group_is_muted),
17712         (gen_preroll_element), (add_stream), (unknown_type),
17713         (probe_triggered), (preroll_unlinked), (mute_stream),
17714         (silence_stream), (new_decoded_pad), (setup_substreams),
17715         (setup_source), (get_active_source), (mute_group_type),
17716         (muted_group_change_state), (set_active_source),
17717         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
17718         (play_base_eos), (gst_play_base_bin_change_state):
17719         * gst/playback/gstplaybasebin.h:
17720         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
17721         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
17722         (gst_stream_info_dispose), (stream_info_mute_pad),
17723         (stream_info_change_state), (gst_stream_info_set_mute):
17724         * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
17725         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
17726         (gst_stream_selector_init), (gst_stream_selector_dispose),
17727         (gst_stream_selector_get_linked_pad),
17728         (gst_stream_selector_get_caps), (gst_stream_selector_link),
17729         (gst_stream_selector_get_linked_pads),
17730         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
17731         * gst/playback/gststreamselector.h:
17732           Adding stream selection support plus required properties for
17733           applications to use this. Fully fixes #100931.
17734
17735 2005-01-08  Benjamin Otte  <otte@gnome.org>
17736
17737         * gst/games/gstpuzzle.c: (nav_event_handler):
17738           - handle nav events differently: forward every event no matter if it
17739             was handled or not.
17740           - translate events
17741           You can now cheat by using navigationtest ! puzzle and moving the
17742           mouse close to the edge of a tile. ;)
17743
17744 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17745
17746         * configure.ac:
17747         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
17748         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
17749         (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
17750         (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
17751         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
17752         (gst_ogm_parse_plugin_init):
17753         * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
17754         (gst_textoverlay_link), (gst_textoverlay_getcaps),
17755         (gst_textoverlay_event), (gst_textoverlay_video_chain),
17756         (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
17757         * ext/pango/gsttextoverlay.h:
17758         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
17759         (gst_matroska_demux_handle_seek_event),
17760         (gst_matroska_demux_sync_streams),
17761         (gst_matroska_demux_parse_blockgroup),
17762         (gst_matroska_demux_subtitle_caps),
17763         (gst_matroska_demux_plugin_init):
17764         * gst/matroska/matroska-ids.h:
17765         * gst/playback/gstdecodebin.c: (close_pad_link):
17766         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
17767         (gen_preroll_element), (remove_groups), (add_stream),
17768         (new_decoded_pad), (setup_subtitles), (gen_source_element),
17769         (setup_source):
17770         * gst/playback/gstplaybasebin.h:
17771         * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
17772         * gst/subparse/Makefile.am:
17773         * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
17774         (gst_subparse_base_init), (gst_subparse_class_init),
17775         (gst_subparse_init), (gst_subparse_formats),
17776         (gst_subparse_eventmask), (gst_subparse_event),
17777         (gst_subparse_handle_event), (convert_encoding), (get_next_line),
17778         (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
17779         (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
17780         (parse_mpsub_deinit), (parse_mpsub_init),
17781         (gst_subparse_buffer_format_autodetect),
17782         (gst_subparse_format_autodetect), (gst_subparse_loop),
17783         (gst_subparse_change_state), (gst_subparse_type_find),
17784         (plugin_init):
17785         * gst/subparse/gstsubparse.h:
17786         * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
17787         (plugin_init):
17788           Add subtitle support, .sub parser (supports SRT and MPsub),
17789           OGM text support, Matroska UTF-8 text support, deadlock fixes
17790           all over the place, subtitle awareness in decodebin/playbin
17791           and some fixes to textoverlay to handle subtitles in a stream
17792           correctly. Fixes #100931.
17793
17794 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17795
17796         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
17797           Check for pad availability before doing a query on it.
17798
17799 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17800
17801         * ext/dv/gstdvdec.c:
17802           really fix bpp24/32 dvdec caps (classic rgba indeed)
17803         * gst/asfdemux/gstasfdemux.c:
17804         (gst_asf_demux_process_ext_content_desc):
17805           don't send text tags if they are empty (bis repetita)
17806
17807 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17808
17809         * ext/dv/gstdvdec.c:
17810          remove unneeded comment from dvdec
17811           (related to DV 4CC codes in AVI files)
17812           moved them in gstreamer/docs/random/mimetypes
17813         * gst/asfdemux/gstasfdemux.c:
17814         (gst_asf_demux_process_ext_content_desc):
17815          don't send text tags if they are empty
17816          fix mem leak on error path
17817         * gst/ffmpegcolorspace/avcodec.h:
17818         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17819         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
17820         (gst_ffmpegcsp_avpicture_fill):
17821         * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
17822         * gst/ffmpegcolorspace/imgconvert_template.h:
17823          adds BGR32 and BGRA32 to ffmpegcolorspace
17824           (still bad colors, fixing it on next commit)
17825           helps with dvdec outputing BGR32
17826
17827 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17828
17829         * ext/dv/gstdvdec.c:
17830          Fix audio caps i just broke (missing ',')
17831         * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
17832         (gst_matroska_mux_reset):
17833          Fix typo + add FIXME about old "x-gst-metadata" crap
17834
17835 2005-01-07  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17836
17837         * ext/dv/demo-play.c: (main):
17838          xvideosink -> xvimagesink
17839         * ext/dv/gstdvdec.c:
17840          change rgb 32/32 caps to 24/32 (no alpha)
17841          change nb of channels to be a list (2 or 4, not 2)
17842          change sample rate to be a list (32, 44.1, 48 kHz) not a range
17843         * gst/asfdemux/gstasfdemux.c:
17844         (gst_asf_demux_process_ext_content_desc):
17845          Add 'date/year' to extracted metadata list
17846
17847 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17848
17849         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
17850           The return value of fixate_to does not imply that the requested
17851           value was set, so don't assume.
17852
17853 2005-01-07  Gergely Nagy  <algernon@bonehunter.rulez.org>
17854
17855         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17856
17857         * ext/libpng/gstpngdec.c:
17858         * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
17859         (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
17860         * ext/libpng/gstpngenc.h:
17861           Alpha support (encoder; #163161), mime fixage.
17862
17863 2005-01-07  Sebastien Cote  <sc5@hermes.usherb.ca>
17864
17865         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17866
17867         * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
17868         (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
17869         (gst_faac_set_property), (gst_faac_get_property):
17870         * ext/faac/gstfaac.h:
17871           Allow for ADTS output (#153434).
17872
17873 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17874
17875         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
17876           Fix against template (#150576).
17877
17878 2005-01-06  Benjamin Otte  <otte@gnome.org>
17879
17880         * gst/games/gstpuzzle.c: (draw_puzzle):
17881           don't draw a puzzle if either width or height of tiles would be 0.
17882
17883 2005-01-06  Benjamin Otte  <otte@gnome.org>
17884
17885         * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
17886         (gst_puzzle_class_init), (gst_puzzle_finalize):
17887           no memleaks, please
17888         (gst_puzzle_create), (gst_puzzle_init),
17889         (gst_puzzle_set_property), (gst_puzzle_setup):
17890           change initialization code around so we don't reshuffle on resize
17891         (draw_puzzle):
17892           fix another stupid typo
17893
17894 2005-01-06  Benjamin Otte  <otte@gnome.org>
17895
17896         * gst/games/gstvideoimage.c: (copy_hline_YUY2):
17897           fix stupid typo that borked copying on YUY2
17898
17899 2005-01-06  Benjamin Otte  <otte@gnome.org>
17900
17901         * gst/games/gstpuzzle.c: (draw_puzzle):
17902           fix edges when image sizes aren't multiples of tile sizes
17903
17904 2005-01-06  Benjamin Otte  <otte@gnome.org>
17905
17906         * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
17907           make RGB endianness work correctly
17908         (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
17909           refactor and fix race with initial shuffling
17910         (nav_event_handler):
17911           allow using the mouse to puzzle
17912         (draw_puzzle):
17913           insist on tiles having width and height as multiples of 4 to get
17914           clean YUV image handling
17915         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
17916         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
17917           s/DEBUG/LOG/ for common messages
17918         (gst_xvimagesink_navigation_send_event):
17919           fix mouse event translation to not include screen PAR
17920         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
17921           fix mouse event translation to actually work
17922
17923 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17924
17925         * gst/asfdemux/gstasfdemux.c:
17926         (gst_asf_demux_process_ext_content_desc):
17927          Extract TrackNumber metadata + clean up code
17928         * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
17929          Hope this is the good fix (var used unitialised)
17930
17931 2005-01-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17932
17933         * ext/faad/gstfaad.c: (gst_faad_chain):
17934           Only increment timestamp if it's valid. Fixes raw AAC streams.
17935
17936 2005-01-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
17937
17938         * configure.ac:
17939         * gst/games/Makefile.am:
17940         * gst/games/gstpuzzle.c:
17941           add a puzzle game with...
17942         * gst/games/gstvideoimage.c:
17943         * gst/games/gstvideoimage.h:
17944           ... full colorspace support (that includes YUV9 and RGB16)) stolen
17945           from videotestsrc and made into something that would be a nice
17946           library for a lot of other plugins.
17947
17948 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17949
17950         * configure.ac:
17951          don't compile faad plugin if a RC of 2.0 is found
17952          Fixes #155346 (and FC1 buildbot)
17953         * gst/asfdemux/gstasfdemux.c:
17954         (gst_asf_demux_process_ext_content_desc):
17955          try to make Solaris compiler happier
17956
17957 2005-01-06  Paul Jack  <pjack@sfaf.org>
17958
17959         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17960
17961         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
17962           Fix segfault (#161667).
17963
17964 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17965
17966         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
17967           Fix framerate reporting.
17968
17969 2005-01-05  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17970
17971         * gst-libs/gst/riff/riff-ids.h:
17972         * gst/wavenc/riff.h:
17973          Add AMR (VBR and CBR) ids to riff.h audio codec list
17974         * gst/asfdemux/gstasfdemux.c:
17975         (gst_asf_demux_process_ext_content_desc),
17976         (gst_asf_demux_process_object):
17977           Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
17978
17979 2005-01-05  Martin Eikermann  <meiker@upb.de>
17980
17981         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17982
17983         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
17984         (gst_dvd_demux_handle_discont):
17985         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
17986         (gst_mpeg_demux_handle_discont):
17987           Recreate pads on new-media (#160730).
17988         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
17989           Send discont even if manager changes timestamps (#161929).
17990
17991 2005-01-05  Sebastien Cote  <sc5@hermes.usherb.ca>
17992
17993         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17994
17995         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
17996           Fix invalid memory access (#159211).
17997
17998 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17999
18000         * examples/gstplay/player.c: (main):
18001           Don't iterate.
18002         * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
18003           Add visualizations.
18004         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
18005         (gst_a52dec_handle_frame):
18006           Set duration.
18007         * ext/dvdnav/gst-dvd:
18008           Add audioconvert. Fixes #161325.
18009         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
18010           Explicitely case to gint64. Possible valgrind error.
18011         * gst-libs/gst/play/play.c: (caps_set), (setup_size),
18012         (gst_play_tick_callback), (gst_play_change_state),
18013         (gst_play_dispose), (gst_play_init), (gst_play_class_init),
18014         (gst_play_set_location), (gst_play_get_location),
18015         (gst_play_seek_to_time), (gst_play_set_data_src),
18016         (gst_play_set_video_sink), (gst_play_set_audio_sink),
18017         (gst_play_set_visualization), (gst_play_connect_visualization),
18018         (gst_play_get_framerate), (gst_play_get_all_by_interface),
18019         (gst_play_new):
18020           Use playbin. Fixes #139749 and #147744.
18021         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
18022           Add genre tag.
18023         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
18024         (audioscale_get_type), (gst_audioscale_base_init),
18025         (gst_audioscale_class_init), (gst_audioscale_expand_caps),
18026         (gst_audioscale_getcaps), (gst_audioscale_fixate),
18027         (gst_audioscale_link), (gst_audioscale_get_buffer),
18028         (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
18029         (gst_audioscale_init), (gst_audioscale_dispose),
18030         (gst_audioscale_chain), (gst_audioscale_set_property),
18031         (gst_audioscale_get_property), (plugin_init):
18032           Indent properly.
18033         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
18034           Fix LPCM.
18035         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
18036         (qtdemux_tag_add_str), (qtdemux_tag_add_num),
18037         (qtdemux_tag_add_gnre), (qtdemux_video_caps):
18038           Add more metadata (fixes #162656).
18039
18040 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
18041
18042         * configure.ac:
18043           back to cvs
18044
18045 === release 0.8.7 ===
18046
18047 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
18048
18049         * NEWS:
18050         * RELEASE:
18051         * configure.ac:
18052           releasing 0.8.7, "Hyperspace"
18053
18054 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
18055
18056         patch by: Tim-Philipp Müller  <t.i.m@zen.co.uk>
18057
18058         * gst/playback/gstplaybasebin.c:
18059          Fix for #162924 - free caps after use, not before
18060
18061 2005-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
18062
18063         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18064
18065         * gst/playback/gstplaybasebin.c:
18066         * gst/wavparse/gstwavparse.c:
18067           Fix for #154773 - fixes playback of small .wav files
18068
18069 2005-01-03  Thomas Vander Stichele  <thomas at apestaart dot org>
18070
18071         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18072
18073         * gst/audioscale/gstaudioscale.c:
18074           Fix for #162819 - make audioscale reusable
18075           Fixes playback of more than one file with playbin/totem
18076
18077 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
18078
18079         * gst/ffmpegcolorspace/avcodec.h:
18080         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18081         * gst/ffmpegcolorspace/imgconvert.c:
18082           clean up the mess that made me cry and avoid needless duplication
18083
18084 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
18085
18086         * gst/ffmpegcolorspace/imgconvert.c:
18087           give some indication of why we're segfaulting
18088
18089 2004-12-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18090
18091         * configure.ac:
18092           Fix indentation, fix v4l2 plugin detection.
18093         * ext/Makefile.am:
18094           Fix libmms location (Maciej, use diff -u!).
18095         * ext/alsa/gstalsa.c: (gst_alsa_init):
18096           Initialize caps cache to NULL.
18097         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
18098           Only change state on audiosink if it exists.
18099
18100 2004-12-28  Maciej Katafiasz  <mathrick@mathrick.org>
18101
18102         * gst/matroska/matroska-demux.c:
18103         * gst/matroska/matroska-ids.h:
18104         * gst/matroska/matroska-demux.h:
18105         Fix Vorbis streams failing to decode in some files, where cluster_time
18106         isn't 0, because then it doesn't send codec_priv before actual data.
18107         Remove time-based test and replace it with marker set on beginning of
18108         new stream
18109
18110 2004-12-28  David Schleef  <ds@schleef.org>
18111
18112         Merge patch from Ronald fixing problems with streaming
18113         text.
18114         * ext/cairo/gstcairo.c: (plugin_init):
18115         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
18116         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
18117         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
18118         (gst_textoverlay_font_init), (gst_textoverlay_init),
18119         (gst_textoverlay_set_property):
18120         * ext/cairo/gsttextoverlay.h:
18121
18122 2004-12-27  David Schleef  <ds@schleef.org>
18123
18124         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
18125         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
18126         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
18127         (gst_textoverlay_font_init), (gst_textoverlay_init),
18128         (gst_textoverlay_set_property): Improvements to actually
18129         render text as white on black outline on video, including
18130         font selection and horizontal/vertical alignment.  (Ronald's
18131         christmas present)
18132         * ext/cairo/gsttextoverlay.h:
18133
18134 2004-12-26  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
18135
18136         * ext/ogg/gstogg.c:
18137         * ext/ogg/gstogmparse.c:
18138           fix ogm[audio/video]parse plugin registration
18139           (riff won't load if bytestream is already loaded)
18140
18141 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
18142
18143         * gst/audioconvert/gstchannelmix.c:
18144           fix for GLIB < 2.4
18145
18146 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
18147
18148         * Makefile.am:
18149         * configure.ac:
18150           disable docs again until it actually passes make distcheck.
18151
18152 2004-12-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18153
18154         * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
18155         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
18156         (plugin_init):
18157           Add 3GP (variables name Q3GP because they can't start with a
18158           number). Add samr audio fourcc (used in .3gp files), decoder
18159           is work in progress. Also do a GST_WARNING instead of ERROR
18160           in case of unknown nodes, to decrease output.
18161
18162 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
18163
18164         * Makefile.am:
18165           really fix dist
18166
18167 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18168
18169         * configure.ac:
18170         * ext/speex/gstspeexdec.h:
18171         * ext/speex/gstspeexenc.h:
18172           Fixes #158382.  Make speex plugin compatible with both 1.0 and 1.1.
18173           Fix detection code in configure.ac
18174
18175 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18176
18177         * gst/matroska/matroska-demux.c:
18178         (gst_matroska_demux_parse_blockgroup):
18179           Save position, so that queries give proper return values. Don't
18180           know how this could ever have worked before...
18181
18182 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18183
18184         * configure.ac:
18185           Put additional LAME check inside the conditional.  Fixes #152339
18186
18187 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18188
18189         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18190         (gst_avi_demux_stream_scan):
18191           Add some more debug. Fix logic error when setting movi offset
18192           while reading index.
18193
18194 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18195
18196         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18197         (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
18198         (gst_avi_demux_process_next_entry):
18199           Add some debugging. Better detection of broken indexes and the
18200           accompanying index recovery. No infinite loops on state changes
18201           when we're still in our loopfunction.
18202
18203 2004-12-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18204
18205         * configure.ac:
18206           Fix up.
18207
18208 2004-12-22  Archana Shah  <archana.shah@wipro.com>
18209
18210         Reviewed by:  Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18211
18212         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
18213           Normalizing the value before setting
18214         (gst_sunaudiomixer_get_volume):
18215           Normalizing the value after getting. Fixes bug# 161980
18216
18217 2004-12-22  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
18218
18219         * Makefile.am: Make sure docs gets disted
18220         * docs/Makefile.am: Make sure all needed files get disted
18221         * gst-plugins.spec.in: latest updates
18222
18223 2004-12-22  Wim Taymans  <wim@fluendo.com>
18224
18225         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
18226         Revert patch 1.38 as clock distribution over schedulers does
18227         not work correcly in the core yet.
18228
18229 2004-12-21  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
18230
18231         * sys/oss/README: remove this file, which predates my birth
18232           (and which content is by far outdated)
18233
18234 2004-12-20  Stefan Kost  <ensonic@users.sf.net>
18235
18236         * Makefile.am:
18237         * configure.ac:
18238         * docs/Makefile.am:
18239         * docs/libs/Makefile.am:
18240         * docs/libs/gst-plugins-libs-docs.sgml:
18241         * docs/libs/gst-plugins-libs-sections.txt:
18242         * docs/libs/tmpl/gstgconf.sgml:
18243         * docs/upload.mak:
18244         * docs/version.entities.in:
18245           Added boilerplate gtk-doc files for plugin-libs documentation.
18246
18247 2004-12-19  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
18248
18249         * gst/auparse/gstauparse.c: fix int and float audio caps
18250
18251 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18252
18253         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
18254         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
18255           g_assert() can be a macro, don't use #ifdef inside it.
18256
18257 2004-12-19  Edward Hervey  <bilboed@bilboed.com>
18258
18259         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18260
18261         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
18262         (gst_videorate_init), (gst_videorate_chain),
18263         (gst_videorate_change_state):
18264           Event handling (fixes #159986).
18265
18266 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18267
18268         * gst-libs/gst/riff/riff-media.c:
18269         (gst_riff_create_video_caps_with_data):
18270           Add BLZ0 (Blizzard's version of DivX) fourcc.
18271
18272 2004-12-18  David Schleef  <ds@schleef.org>
18273
18274         * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
18275         portability fix.
18276
18277 2004-12-18  David Schleef  <ds@schleef.org>
18278
18279         * gst/tta/ttadec.h: Disable some header code that isn't used
18280         and clearly isn't portable.
18281
18282 2004-12-18  David Schleef  <ds@schleef.org>
18283
18284         * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
18285         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
18286         (avcodec_get_pix_fmt), (avpicture_layout),
18287         (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
18288         (get_convert_table_entry), (img_convert), (img_get_alpha_info):
18289         Fix code to not use GCC extensions (and c99 extensions that
18290         Forte does not like.)
18291
18292 2004-12-19  Tim-Philipp Müller  <t.i.m@zen.co.uk>
18293
18294         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18295
18296         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
18297         (gst_deinterlace_chain):
18298           Rowstride fixes. Fixes #161039.
18299         * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
18300         (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
18301         (gst_video_crop_getcaps), (gst_video_crop_link),
18302         (gst_video_crop_i420), (gst_video_crop_chain),
18303         (gst_video_crop_change_state):
18304           Rework of negotiation. Actually works now. Fixes #158650.
18305
18306 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18307
18308         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
18309           That was very stupid.
18310
18311 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18312
18313         * gst/matroska/matroska-demux.c:
18314         (gst_matroska_demux_parse_blockgroup):
18315           Fix possible crasher.
18316
18317 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18318
18319         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
18320         (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
18321           Lace sizes can be zero.
18322
18323 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18324
18325         * ext/musepack/gstmusepackdec.cpp:
18326           Fetch error return values. Fixes #161624.
18327         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
18328           Really EOS.
18329
18330 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18331
18332         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
18333           Work for truncated (unfinished download etc.) files. Fixes #160514.
18334
18335 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18336
18337         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18338           Fix for integer overflow. Makes #156001 not crash. Probably masks
18339           the real bug.
18340
18341 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18342
18343         * gst/ac3parse/gstac3parse.c: (plugin_init):
18344           Parsers never have ranks. Fixes #159651.
18345
18346 2004-12-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18347
18348         * gst/playback/gstdecodebin.c: (compare_ranks):
18349           make sure the facotries are ordered the same every time even if they
18350           have the same rank by using the name
18351         * gst/playback/gstdecodebin.c: (find_compatibles):
18352           make sure we don't add factories to the list twice
18353
18354 2004-12-16  David Schleef  <ds@schleef.org>
18355
18356         * configure.ac: look for musepack headers as musepack/*.h
18357         (fixes #159847)
18358         * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
18359         * ext/musepack/gstmusepackreader.h: same
18360
18361 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18362
18363         * gst-libs/gst/riff/riff-read.c:
18364         (gst_riff_read_strf_auds_with_data):
18365           Read extradata correctly (fixes #155879).
18366
18367 2004-12-16  David Schleef  <ds@schleef.org>
18368
18369         * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
18370         audio.  does _not_ attempt or allow conversion unless channels
18371         is 1 or 2.
18372
18373 2004-12-16  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
18374
18375         * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
18376
18377 2004-12-16  David Schleef  <ds@schleef.org>
18378
18379         * gst/audioscale/gstaudioscale.c: the resample library only
18380         handles 1 or 2 channels.  Change caps to compensate.
18381
18382 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18383
18384         * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
18385         (gst_matroska_demux_audio_caps):
18386           Some MPEG-AAC hacks, because else it doesn't work...
18387
18388 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18389
18390         * gst-libs/gst/riff/riff-media.c:
18391         (gst_riff_create_video_caps_with_data),
18392         (gst_riff_create_video_template_caps):
18393           Add h264.
18394
18395 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18396
18397         * gst-libs/gst/audio/Makefile.am:
18398           Try to fix buildbot.
18399
18400 2004-12-16  Thomas Vander Stichele  <thomas at apestaart dot org>
18401
18402         * gst/tcp/gstmultifdsink.c:
18403           Clean up and uniformize debugging.
18404
18405 2004-12-16  Edward Hervey  <bilboed@bilboed.com>
18406
18407         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18408
18409         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
18410         (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
18411         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
18412         (gst_mpeg_demux_change_state):
18413           Reset on ready. Fixes 160276.
18414
18415 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
18416
18417         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18418
18419         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18420         (gst_ffmpegcsp_pad_link):
18421           Fix memleak (#154815).
18422
18423 2004-12-16  James Bowes  <bowes@cs.dal.ca>
18424
18425         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18426
18427         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
18428         (gst_musicbrainz_init), (gst_musicbrainz_chain),
18429         (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
18430         * ext/musicbrainz/gsttrm.h:
18431           Add support for using a proxy server when getting a trm id from
18432           the MusicBrainz database (#149613).
18433
18434 2004-12-16  Christophe Fergeau  <teuf@gnome.org>
18435
18436         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18437
18438         * gst/playback/gstdecodebin.c: (new_pad), (close_link):
18439         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
18440           Fix memleaks (#157233).
18441
18442 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
18443
18444         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18445
18446         * gst-libs/gst/resample/resample.c: (gst_resample_close):
18447         * gst-libs/gst/resample/resample.h:
18448         * gst/audioscale/gstaudioscale.c:
18449           Fix memleak (#159215).
18450
18451 2004-12-16  Toni Willberg  <toniw@iki.fi>
18452
18453         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18454
18455         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
18456         * sys/oss/oss_probe.c: (main):
18457           Check for mono/stereo support (similar to samplerate probing),
18458           fixes #159433. Also add missing copyright header to oss_probe.c.
18459
18460 2004-12-15  David Schleef  <ds@schleef.org>
18461
18462         * configure.ac: add audioresample and cairo plugins.  Remove
18463         HAVE_MMX stuff, because it's not used.
18464         * ext/Makefile.am: same
18465         * ext/audioresample/Makefile.am: You are not ready for an
18466         audio resampling element based on audioresample.
18467         * ext/audioresample/gstaudioresample.c:
18468         * ext/audioresample/gstaudioresample.h:
18469         * ext/cairo/Makefile.am: You are not ready for overlay elements
18470         based on cairo.  Don't look too closely, these elements kinda
18471         suck right now.
18472         * ext/cairo/gstcairo.c: new
18473         * ext/cairo/gsttextoverlay.c: new
18474         * ext/cairo/gsttextoverlay.h: new
18475         * ext/cairo/gsttimeoverlay.c: new
18476         * ext/cairo/gsttimeoverlay.h: new
18477         * gst-libs/gst/media-info/media-info-priv.h: fix compile
18478         problem with compilers that don't support variadic macros.
18479
18480 2004-12-15  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
18481
18482         Reviewed by:  David Schleef  <ds@schleef.org>
18483
18484         * sys/sunaudio/gstsunaudio.c: (plugin_init):  Apply patch from
18485         Bala, registering sunaudiosrc (oops!), and cleaning up code a
18486         bit.  Also ran indent-gst.
18487         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
18488         (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
18489         (gst_sunaudiosrc_setparams):
18490
18491 2004-12-14  David Schleef  <ds@schleef.org>
18492
18493         * gst/festival/gstfestival.c: (gst_festival_chain): Set the
18494         output rate to 16000.  Should fix #160235.
18495
18496 2004-12-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18497
18498         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
18499         Add typefinding for mpeg2 pes streams
18500
18501 2004-12-13  David Schleef  <ds@schleef.org>
18502
18503         * configure.ac:  Applied patch from bug #143659, making default
18504         sources and sinks OS-dependent (for Solaris), and added code
18505         for OS/X.
18506         * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
18507
18508 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
18509
18510         * gst-libs/gst/riff/riff-media.c:
18511           forgot to add h2.64 to avidemux template caps
18512
18513 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
18514
18515         * gst/wavenc/riff.h:
18516         * gst-libs/gst/riff/riff-media.c:
18517         * gst-libs/gst/riff/riff-ids.h:
18518         * gst/avi/gstavimux.c
18519         add 4CC code for VideoSoft h264 in AVI (VSSH)
18520           fixes bug #160655
18521         remove s323 from riff, it's quicktime specific :(
18522
18523 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
18524
18525         * gst/asfdemux/README
18526         * gst/wavenc/riff.h
18527         * gst-libs/gst/riff/riff-ids.h
18528         * gst-libs/gst/riff/riff-media.c
18529         * gst/qtdemux/qtdemux.c:
18530           add new 4CC codes for h263 related codecs
18531           fixes partially bug #155163
18532
18533 2004-12-12  Christian Fredrik Kalager Schaller  <christian at fluendo dot com>
18534
18535         * configure.ac: Update polyaudio requirement to 0.7
18536         * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
18537
18538 2004-12-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18539
18540         * gst/interleave/deinterleave.c:
18541         fix my name's spelling! :)
18542
18543 2004-12-11  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
18544
18545         * AUTHORS ChangeLog
18546         * gst/auparse/gstauparse.c
18547         * gst/interleave/deinterleave.c
18548         * gst/law/:
18549                 alaw-decode.c alaw-encode.c
18550                 mulaw-decode.c mulaw-encode.c
18551         * gst/oneton/gstoneton.c
18552         * sys/osxaudio/:
18553                 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
18554         * sys/osxvideo/:
18555                 cocoawindow.h cocoawindow.m
18556                 osxvideosink.h osxvideosink.m
18557
18558         put the same mail address for Zaheer Abbas Merali everywhere
18559
18560 2004-12-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18561
18562         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
18563           Align by packetsize, and assert that we a packet available before
18564           playing. The first makes webstreams work (they often include
18565           trailing padding data in a packet), the second allows pausing a
18566           ASF stream in totem without getting demux errors afterwards.
18567
18568 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18569
18570         * ext/ogg/gstoggdemux.c: (get_relative):
18571           Check for non-NULL before accessing member (end-of-chain).
18572
18573 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18574
18575         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
18576         (cdparanoia_set_property), (cdparanoia_get_property):
18577         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
18578         (dvdnavsrc_set_property), (dvdnavsrc_get_property):
18579         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
18580         (dvdreadsrc_init), (dvdreadsrc_set_property),
18581         (dvdreadsrc_get_property):
18582         * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
18583         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
18584           Synchronize property names where not yet the case. Devices are
18585           now device=X, other versions are deprecated (but still exist).
18586           Also use g_free() unconditionally.
18587         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
18588         (setup_source), (gst_play_base_bin_get_property):
18589           Expose source.
18590
18591 2004-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
18592
18593         * configure.ac: move GCONF macro outside conditional for the am
18594           conditional. Fixes #160439
18595
18596 2004-12-08  David Schleef  <ds@schleef.org>
18597
18598         * tools/gst-visualise-m.m: Switch to elements that currently
18599         exist.
18600
18601 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18602
18603         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
18604           We love wrong commas.
18605
18606 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18607
18608         * gst/matroska/matroska-demux.c:
18609         (gst_matroska_demux_handle_src_query):
18610           Don't set DEFAULT, unsupported - makes length display incorrectly
18611           in some cases.
18612
18613 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
18614
18615         * gst/monoscope/README: remove blurb about files being GPL
18616         * gst/monoscope/gstmonoscope.c: Change license field to LGPL
18617         * gst/monoscope/monoscope.c: Change license to BSD with explanation
18618           monoscope is now effectively LGPL licensed
18619
18620 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
18621
18622         * gst/monoscope/README: Update information to be more correct
18623         * gst/monoscope/convolve.c: Relicense to LGPL
18624         * gst/monoscope/convolve.h: Relicense to LGPL
18625
18626 2004-12-06  Arwed v. Merkatz <v.merkatz@gmx.net>
18627
18628         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
18629           set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
18630         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
18631           set default_duration for mpeg1 audio
18632
18633 2004-12-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18634
18635         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
18636         * ext/alsa/gstalsa.h:
18637           refactor big chunks of the core caps negotiation code to make it
18638           a lot faster, because people claim it's really slow
18639           (actually, just cache the getcaps when the device is opened)
18640
18641 2004-12-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18642
18643         * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
18644         (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
18645         (gst_a52dec_handle_frame), (gst_a52dec_chain),
18646         (gst_a52dec_change_state), (plugin_init):
18647         * ext/a52dec/gsta52dec.h:
18648           Do something useful with timestamps. Make chain-based (since
18649           there's really no reason to be loopbased).
18650         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
18651           Update current_byte/frame correctly.
18652
18653 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18654
18655         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
18656         (gst_ape_demux_stream_init):
18657           Forward tags, too.
18658
18659 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18660
18661         * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
18662           Let's make sure we're done typefinding when detecting tags.
18663
18664 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18665
18666         * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
18667         (gst_ebml_read_init), (gst_ebml_read_use_event),
18668         (gst_ebml_read_element_id), (gst_ebml_peek_id),
18669         (gst_ebml_read_seek), (gst_ebml_read_skip),
18670         (gst_ebml_read_reserve), (gst_ebml_read_buffer),
18671         (gst_ebml_read_master):
18672         * gst/matroska/ebml-read.h:
18673         * gst/matroska/matroska-demux.c:
18674         (gst_matroska_demux_parse_contents),
18675         (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
18676           Disgustingly evil hack for working around INTERRUPT events and
18677           their extremely annoying habit of being a pain in the ass. We
18678           simply peek a cluster before reading any of it.
18679
18680 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18681
18682         * ext/musepack/gstmusepackdec.cpp:
18683           There's also floating point libmusepacks.
18684
18685 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18686
18687         * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
18688         (gst_faad_chanpos_to_gst), (gst_faad_chain):
18689           Set DURATION even if source buffer didn't. Also use increasing
18690           timestamps.
18691         * gst-libs/gst/riff/riff-media.c:
18692         (gst_riff_create_audio_caps_with_data):
18693           Block_align can have larger values than 8192.
18694
18695 2004-12-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18696
18697         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
18698         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
18699         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
18700         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
18701           Fix caps.
18702
18703 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18704
18705         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
18706           Fix logic bug.
18707
18708 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18709
18710         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
18711           Yay, another one.
18712
18713 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18714
18715         * ext/esd/esdsink.c: (gst_esdsink_chain):
18716           Make error actually say something useful (fixes #156798).
18717         * gst-libs/gst/riff/riff-media.c:
18718         (gst_riff_create_video_caps_with_data),
18719         (gst_riff_create_video_template_caps):
18720           Add Intel Video 5.0 fourcc (IV50).
18721
18722 2004-12-01  Christophe Fergeau  <teuf@gnome.org>
18723
18724         * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
18725         detection on mono and stereo mp3 files.
18726
18727 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18728
18729         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
18730           Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
18731           the contained stream).
18732
18733 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18734
18735         * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
18736           Oops, remove debug.
18737
18738 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
18739
18740         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18741
18742         * gst/law/alaw-decode.c: (alawdec_getcaps):
18743         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
18744           Prevent warnings when negotiating caps (fixes #159338).
18745
18746 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18747
18748         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18749         (gst_ffmpegcsp_chain):
18750           Remove old leftover that shouldn't be there...
18751
18752 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
18753
18754         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18755
18756         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
18757           Don't forward DISCONT events (fixes #159684).
18758
18759 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18760
18761         * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
18762           Unlink manually since sometimes bin disposal (and therefore
18763           pad unlinking) is delayed, which will cause a new media file
18764           to not be able to start playing instantly.
18765
18766 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18767
18768         * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
18769           On mute of an unlinked stream, check for pad availability so
18770           we don't crash on unlinked pad.
18771
18772 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18773
18774         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18775         (gst_avi_demux_massage_index):
18776           Fix quite humiliating bug in omitting 0-sized index chunks but
18777           forgetting to count them for timestamps.
18778
18779 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18780
18781         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
18782           Actually leave the loop if we failed to sync. Don't crash.
18783
18784 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18785
18786         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
18787         (gst_dvd_demux_process_private):
18788         * gst/mpegstream/gstdvddemux.h:
18789           Fix crash (#159759). Doesn't work, though. :-(.
18790
18791 2004-11-28  Benjamin Otte  <otte@gnome.org>
18792
18793         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
18794           more overwriting protection due to modifying channels one by one
18795           instead of all at once
18796
18797 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18798
18799         * gst/audioconvert/gstchannelmix.c:
18800         (gst_audio_convert_fill_normalize):
18801           Normalize using absolute values.
18802
18803 2004-11-28  Julien MOUTTE  <julien@moutte.net>
18804
18805         * configure.ac:
18806         * ext/Makefile.am:
18807         * ext/directfb/Makefile.am:
18808         * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
18809         (gst_directfbvideosink_get_pixel_format),
18810         (gst_directfbvideosink_get_format_from_fourcc),
18811         (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
18812         (gst_directfbvideosink_sink_link),
18813         (gst_directfbvideosink_change_state),
18814         (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
18815         (gst_directfbvideosink_buffer_alloc),
18816         (gst_directfbvideosink_interface_supported),
18817         (gst_directfbvideosink_interface_init),
18818         (gst_directfbvideosink_navigation_send_event),
18819         (gst_directfbvideosink_navigation_init),
18820         (gst_directfbvideosink_set_property),
18821         (gst_directfbvideosink_get_property),
18822         (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
18823         (gst_directfbvideosink_base_init),
18824         (gst_directfbvideosink_class_init),
18825         (gst_directfbvideosink_get_type), (plugin_init):
18826         * ext/directfb/directfbvideosink.h: Adding a first version of
18827         directfbvideosink.
18828         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
18829         more.
18830
18831 2004-11-28  Benjamin Otte  <otte@gnome.org>
18832
18833         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
18834           walk the samples backwards if out_channels > in_channels so we don't
18835           overwrite data
18836
18837 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18838
18839         * gst/audioconvert/Makefile.am:
18840         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
18841         (gst_audio_convert_link), (gst_audio_convert_change_state),
18842         (gst_audio_convert_channels):
18843         * gst/audioconvert/gstchannelmix.c:
18844         (gst_audio_convert_unset_matrix),
18845         (gst_audio_convert_fill_identical),
18846         (gst_audio_convert_fill_compatible),
18847         (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
18848         (gst_audio_convert_fill_others),
18849         (gst_audio_convert_fill_normalize),
18850         (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
18851         (gst_audio_convert_passthrough), (gst_audio_convert_mix):
18852         * gst/audioconvert/gstchannelmix.h:
18853           Implement a channel mixer.
18854
18855 2004-11-28  Martin Soto  <martinsoto@users.sourceforge.net>
18856
18857         * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
18858         * ext/alsa/gstalsa.h:
18859         * ext/alsa/gstalsa.c (gst_alsa_set_clock):
18860         Make alsasink actually honor gst_element_set_clock and use that
18861         clock instead of its internal one.
18862
18863 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
18864
18865         * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
18866         (gst_play_base_bin_change_state): nullify source and decoder when
18867         going from READY to NULL so that we don't try to do weird stuff with
18868         them when going from NULL to READY
18869         * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
18870         instead of g_object_unref
18871         (gen_video_element), (gen_audio_element): more refcounting fixes, now
18872         it should be correct
18873         (gst_play_bin_change_state): don't call remove_sinks if we are
18874         currently disposing the object
18875
18876 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18877
18878         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
18879           Don't forget bass if it's there. Else left channel is silent...
18880
18881 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18882
18883         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
18884         (gst_a52dec_change_state):
18885           Don't do sample adjusting anymore, we use float audio now.
18886         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
18887           Don't fixate to non-existing properties.
18888
18889 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18890
18891         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
18892         (gst_a52dec_change_state):
18893           Advertise that we can do surround sound.
18894
18895 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18896
18897         * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
18898           Add buffer-frames=0.
18899         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
18900         (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
18901         (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
18902         (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
18903         (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
18904         (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
18905         (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
18906         (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
18907         (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
18908         * ext/dvdread/dvdreadsrc.h:
18909           Add seeking, querying for bytes, sectors, title, angle and
18910           chapter. Handle multiple chapters. Relicense to LGPL because
18911           Billy agreed on that (thanks Billy!).
18912
18913 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
18914
18915         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
18916         call parent dispose method
18917
18918 2004-11-27  Martin Soto  <martinsoto@users.sourceforge.net>
18919
18920         * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
18921         (gst_audio_clock_get_internal_time):
18922         Fix active <-> inactive transitions: ensure time value always
18923         grows and avoid abrupt value changes.
18924
18925 2004-11-27  Arwed v. Merkatz <v.merkatz@gmx.net>
18926
18927         * configure.ac:
18928         * gst/tta/Makefile.am:
18929         * gst/tta/crc32.h:
18930         * gst/tta/filters.h:
18931         * gst/tta/gsttta.c:
18932         * gst/tta/gstttadec.c:
18933         * gst/tta/gstttadec.h:
18934         * gst/tta/gstttaparse.c:
18935         * gst/tta/gstttaparse.h:
18936         * gst/tta/ttadec.h:
18937           added TTA parser and decoder
18938
18939 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18940
18941         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
18942         (probe_triggered), (check_queue), (buffer_underrun),
18943         (buffer_running), (buffer_overrun), (gen_source_element),
18944         (setup_source):
18945         * gst/playback/gstplaybasebin.h:
18946           Implement buffering. Needs some more work.
18947
18948 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18949
18950         * ext/theora/theoradec.c: (theora_dec_chain):
18951           Fix ilog mask range overflow.
18952
18953 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18954
18955         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
18956           Don't omit the last (which in case of dmix is the only :) )
18957           channel count. Don't set channels if <= 2.
18958
18959 2004-11-26  Christophe Fergeau  <teuf@gnome.org>
18960
18961         * gst/playback/gstplaybin.c: (gen_video_element),
18962         (gen_audio_element): Removed 2 obsolete comments
18963
18964 2004-11-26  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18965
18966         * ext/vorbis/oggvorbisenc.c
18967         * ext/vorbis/vorbisenc.c :
18968           change description fields of those plugins to differentiate them
18969           (pitivi show Encoders by description, they had the same one)
18970
18971 2004-11-25  Christophe Fergeau  <teuf@gnome.org>
18972
18973         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18974
18975         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
18976         (gst_play_bin_set_property), (gen_video_element),
18977         (gen_audio_element):
18978           Refcounting fixes for provided audio-/videosinks.
18979
18980 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18981
18982         * gst/playback/gstplaybin.c: (gen_video_element),
18983         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
18984           Don't reference all sinks, but only the video- and audiosinks.
18985           The vis. element should be disposed when we're done with it.
18986           We don't have any reason to keep it around. This fixes warnings
18987           when reusing playbin for playing multiple audio files with
18988           vis. enabled. Also release audio device on pause - idea stolen
18989           from Rhythmbox.
18990
18991 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18992
18993         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
18994         (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
18995         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
18996         * ext/alsa/gstalsaplugin.c: (plugin_init):
18997         * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
18998         (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
18999         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
19000         (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
19001         (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
19002         (gst_faad_change_state), (plugin_init):
19003         * ext/faad/gstfaad.h:
19004         * ext/vorbis/vorbis.c: (plugin_init):
19005         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
19006         * gst-libs/gst/audio/Makefile.am:
19007         * gst-libs/gst/audio/audio.c: (plugin_init):
19008         * gst-libs/gst/audio/multichannel.c:
19009         (gst_audio_check_channel_positions),
19010         (gst_audio_get_channel_positions),
19011         (gst_audio_set_channel_positions),
19012         (gst_audio_set_structure_channel_positions_list),
19013         (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
19014         (gst_audio_fixate_channel_positions):
19015         * gst-libs/gst/audio/multichannel.h:
19016         * gst-libs/gst/audio/testchannels.c: (main):
19017         * gst/audioconvert/gstaudioconvert.c:
19018         (gst_audio_convert_class_init), (gst_audio_convert_init),
19019         (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
19020         (gst_audio_convert_parse_caps), (gst_audio_convert_link),
19021         (gst_audio_convert_fixate), (gst_audio_convert_channels):
19022         * gst/audioconvert/plugin.c: (plugin_init):
19023           Surround sound support.
19024
19025 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19026
19027         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
19028           Fix position for discont if we're close as well. Nitpicking, but
19029           saves a few milliseconds of extra waiting or skipping.
19030
19031 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19032
19033         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
19034           We sometimes need parsers for playback, so add those too.
19035
19036 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19037
19038         * configure.ac:
19039         * gst/apetag/Makefile.am:
19040         * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
19041         (gst_ape_demux_base_init), (gst_ape_demux_class_init),
19042         (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
19043         (gst_ape_demux_get_src_query_types),
19044         (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
19045         (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
19046         (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
19047         (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
19048         (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
19049         (gst_ape_demux_stream_data), (gst_ape_demux_loop),
19050         (gst_ape_demux_change_state):
19051         * gst/apetag/apedemux.h:
19052         * gst/apetag/apetag.c: (plugin_init):
19053         * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
19054         (plugin_init):
19055           APE v1/2 tag reader plus typefind function.
19056
19057 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19058
19059         * configure.ac:
19060         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19061         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
19062           Remove hacks for older core. Require newer core version
19063           accordingly.
19064
19065 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19066
19067         * gst/cdxaparse/Makefile.am:
19068         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
19069         (gst_cdxaparse_class_init), (gst_cdxaparse_init),
19070         (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
19071         * gst/cdxaparse/gstcdxaparse.h:
19072         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
19073         (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
19074         (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
19075         (gst_cdxastrip_get_src_query_types),
19076         (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
19077         (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
19078         (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
19079         (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
19080         * gst/cdxaparse/gstcdxastrip.h:
19081           SVCD/VCD header stripping separated from CDXA image parsing.
19082         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
19083         (plugin_init):
19084           Add VCD/SVCD header typefinding for VCD/SVCD.
19085         * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
19086         (gst_vcdsrc_class_init), (gst_vcdsrc_init),
19087         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
19088         (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
19089         (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
19090         (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
19091         (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
19092         (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
19093         (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
19094         (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
19095         (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
19096         * sys/vcd/vcdsrc.h:
19097           Fix up, add seeking, querying, URI interface. Works in totem now.
19098
19099 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
19100
19101         * configure.ac:
19102           back to CVS
19103
19104 === release 0.8.6 ===
19105
19106 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
19107
19108         * NEWS:
19109         * RELEASE:
19110         * configure.ac:
19111         * po/af.po:
19112         * po/az.po:
19113         * po/cs.po:
19114         * po/en_GB.po:
19115         * po/hu.po:
19116         * po/it.po:
19117         * po/nb.po:
19118         * po/nl.po:
19119         * po/or.po:
19120         * po/sq.po:
19121         * po/sr.po:
19122         * po/sv.po:
19123         * po/uk.po:
19124           releasing 0.8.6, "IOU Love"
19125
19126 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19127
19128         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
19129
19130         * gst/playback/gstplaybasebin.c:
19131           Fix unplayable files error handling.  Fixes #158365
19132
19133 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19134
19135         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
19136
19137         * gst/typefind/gsttypefindfunctions.c:
19138           Fix broken mp3 typefinding.  Fixes #158375
19139
19140 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19141
19142         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
19143
19144         * ext/ogg/gstoggdemux.c:
19145           Fix sync on broken files.  Fixes #158976
19146
19147 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19148
19149         patch by: Edward Hervey <bilboed@bilboed.com>
19150
19151         * ext/libpng/gstpngenc.c:
19152           Copy over buffer properties.  Fixes #158832
19153
19154 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19155
19156         patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
19157
19158         * ext/dvdread/dvdreadsrc.c:
19159           Fixes invalid reads (#158462)
19160
19161 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19162
19163         * sys/v4l/gstv4lsrc.c:
19164         * sys/v4l/gstv4lsrc.h:
19165         * sys/v4l/v4lsrc_calls.c:
19166           Probe less and cache it.  Fixes #159187.
19167
19168 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19169
19170         * gst/videorate/gstvideorate.c:
19171           Handle all video formats. Fixes #159186.
19172
19173 2004-11-16  Jan Schmidt  <thaytan@mad.scientist.com>
19174         * gst/synaesthesia/gstsynaesthesia.c:
19175         (gst_synaesthesia_class_init), (gst_synaesthesia_init),
19176         (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
19177         (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
19178         (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
19179         (gst_synaesthesia_change_state), (plugin_init):
19180         Fix up synaesthesia to work under different samplerates/ buffer sizes.
19181         Force 320x200 output, as that's the only thing the underlying
19182         synaesthesia implementation supports. Still needs to be made
19183         re-entrant.
19184
19185 2004-11-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19186
19187         * configure.ac:
19188           Fix mpeg2enc configure check (similar to mplex check below).
19189
19190 2004-11-14  Koop Mast  <kwm@rainbow-runner.nl>
19191
19192         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19193
19194         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19195           Fix for gcc-2.95 (fixes #158221).
19196
19197 2004-11-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19198
19199         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19200           Re-add clock distribution hack (until new core is released).
19201           Fixes #158125.
19202
19203 2004-11-13  Arwed v. Merkatz  <v.merkatz@gmx.net>
19204         * configure.ac:
19205           fix mplex configure check segfaulting on some systems (bug #140994)
19206
19207 2004-11-13  Benjamin Otte  <otte@gnome.org>
19208
19209         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
19210           add debugging
19211         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
19212           do a wait when we enter the loop func with no data available to
19213           write instead of getting into an 100% CPU loop by just returning and
19214           being called again by the scheduler
19215
19216 2004-11-13  Jan Schmidt  <thaytan@mad.scientist.com>
19217
19218         * configure.ac:
19219         * ext/libvisual/visual.c: (gst_visual_get_type),
19220         (libvisual_log_handler), (gst_visual_getcaps),
19221         (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
19222         (plugin_init):
19223           Update libvisual to 0.1.7. Link in the debug handling to gstreamer
19224         * ext/smoothwave/Makefile.am:
19225         * ext/smoothwave/demo-osssrc.c: (main):
19226         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
19227         (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
19228         (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
19229         (plugin_init):
19230         * ext/smoothwave/gstsmoothwave.h:
19231           Make gstsmoothwave a working element in the 20th century.
19232
19233         * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
19234           Fix incorrect link function
19235
19236 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19237
19238         * gst/volume/gstvolume.c:
19239           Allow buffer-frames=0.
19240
19241 2004-11-12 Iain <iaingnome@gmail.com>
19242
19243         * configure.ac: Check for polypaudio
19244
19245         * ext/Makefile.am: Build the polyp dir
19246
19247         * ext/polyp: The polypsink sources.
19248
19249 2004-10-30 Iain <iaingnome@gmail.com>
19250
19251         * gst/interleave/interleave.c (interleave_unlink): Change the src pads
19252         caps to reflect the new number of channels.
19253
19254 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19255
19256         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
19257           Fix for negotiation order problem. This would show when the
19258           ALSA loopfuction was called before any other function. ALSA
19259           wouldn't do anything because we're not negotiated yet, leading
19260           to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
19261
19262 2004-11-11  Tim-Philipp Müller  <t.i.m@zen.co.uk>
19263
19264         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19265
19266         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
19267           No warnings (#157986).
19268
19269 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19270
19271         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
19272           Prefer apev1/2 and id3v1 (at end of file) over musepack.
19273
19274 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19275
19276         * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
19277           Signal no-more-pads (so it works in playbin).
19278
19279 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19280
19281         * ext/musepack/gstmusepackreader.cpp:
19282           Workaround for older core.
19283
19284 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19285
19286         * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
19287           Actually test for odd width/height rather than testing whether
19288           a temporary variable that was 0 before we subtracted 1 is now
19289           not equal to zero (which it always is).
19290
19291 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
19292
19293         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
19294         Fix compilation if HAVE_XVIDEO is not defined
19295
19296 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
19297
19298         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
19299         Fix compilation if HAVE_XVIDEO is not defined
19300
19301 2004-11-11  Jan Schmidt  <thaytan@mad.scientist.com>
19302
19303         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
19304         (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
19305         (gst_goom_change_state), (plugin_init):
19306         Use the bytestream adapter so goom doesn't depend on the input
19307         buffer size.
19308         Add a debug category
19309
19310 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19311
19312         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
19313           Only set hardware parameters *after* negotiation. Before
19314           negotiation, it will set ANY and that seems to cause crashes
19315           (see e.g. #151288, #153227).
19316
19317 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19318
19319         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
19320           This seems to be antique leftover. It needs to pass error
19321           checking.
19322         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
19323         (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
19324         (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
19325         (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
19326           Fix GstXOverlay implementation (#151059).
19327
19328 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19329
19330         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
19331           Don't assert (#157853).
19332
19333 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19334
19335         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
19336           Fix bytes/samples confustion.
19337         (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
19338           Fix for underrun (#144389).
19339
19340 2004-11-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19341
19342         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
19343           Disable halfway-seek for pending release (since it needs a new
19344           core release).
19345
19346 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
19347
19348         * sys/v4l/gstv4lsrc.c:
19349         * sys/v4l/gstv4lsrc.h:
19350         * sys/v4l/v4lsrc_calls.c:
19351           add autoprobe-fps property so we can separate autoprobing parts
19352
19353 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
19354
19355         * sys/v4l/gstv4lsrc.c:
19356         * sys/v4l/v4lsrc_calls.c:
19357         initialise fourcc to catch unset fourcc's, and debug
19358
19359 2004-11-09  Wim Taymans  <wim@fluendo.com>
19360
19361         * gst/playback/README:
19362         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
19363         * gst/playback/gstplaybin.c: (gst_play_bin_init),
19364         (gst_play_bin_dispose), (gst_play_bin_set_property),
19365         (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
19366         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
19367         (gst_play_bin_get_formats), (gst_play_bin_convert),
19368         (gst_play_bin_get_query_types), (gst_play_bin_query):
19369         Cleanups and some more documentation.
19370
19371 2004-11-09  Jan Schmidt  <thaytan@mad.scientist.com>
19372
19373         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
19374         (gst_cacasink_init), (gst_cacasink_chain):
19375         * ext/libcaca/gstcacasink.h:
19376         Cacasink inherits from VideoSink, so let that store the clock.
19377
19378 2004-11-09  Wim Taymans  <wim@fluendo.com>
19379
19380         * gst/playback/README:
19381         * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
19382         (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
19383         (probe_triggered), (preroll_unlinked), (new_decoded_pad),
19384         (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
19385         * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
19386         (setup_sinks):
19387         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
19388         (gst_stream_info_is_mute), (gst_stream_info_set_property):
19389         * gst/playback/gststreaminfo.h:
19390         Updated README.
19391         Only switch groups if all streams have muted (EOSed).
19392         Send Tags in sync with the stream playback instead of in
19393         the playback/preroll phase.
19394         Some cleanups, free the fakesrc elements.
19395
19396 2004-11-09  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19397
19398         * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
19399           buffer-frames property was missing
19400         * ext/arts/gst_arts.c:
19401           rate missing from sinkcaps
19402         * ext/audiofile/gstafparse.c:
19403         * ext/audiofile/gstafsink.c:
19404         * ext/audiofile/gstafsrc.c:
19405         * ext/swfdec/gstswfdec.c:
19406           int audio doesn't know buffer-frames
19407         * ext/cdparanoia/gstcdparanoia.c:
19408           int audio doesn't know chunksize either
19409         * ext/nas/nassink.c:
19410           it's endianness, not endianess
19411         * gst-libs/gst/audio/audio.h:
19412           make float standard pad template caps really describe float
19413         * gst/law/mulaw.c: (linear_factory):
19414           signed only, please
19415         * gst/mpegstream/gstdvddemux.c:
19416           widths of 20 are not valid
19417
19418 2004-11-08  Thomas Vander Stichele  <thomas at apestaart dot org>
19419
19420         Submitted by: Luca Ferretti <elle.uca@infinito.it>
19421
19422         * po/LINGUAS:
19423         * po/it.po:
19424           Add Italian
19425
19426 2004-11-08  Wim Taymans  <wim@fluendo.com>
19427
19428         * gst/playback/README:
19429         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
19430         * gst/playback/gstplaybasebin.c: (probe_triggered),
19431         (gst_play_base_bin_change_state):
19432         Updated README, added more comments for fixmes etc..
19433
19434 2004-11-08  Wim Taymans  <wim@fluendo.com>
19435
19436         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19437         We can remove this hack now.
19438
19439 2004-11-08  Wim Taymans  <wim@fluendo.com>
19440
19441         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
19442         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
19443         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
19444         Only mix AYUV for maximum quality.
19445
19446 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19447
19448         * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
19449         (gst_ogg_demux_push), (gst_ogg_pad_push):
19450           Let's act as if we're synchronized now! :).
19451         * ext/theora/theoradec.c: (theora_dec_chain):
19452           Add some debug.
19453
19454 2004-11-08  Wim Taymans  <wim@fluendo.com>
19455
19456         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19457         (gst_alpha_set_property), (gst_alpha_sink_link),
19458         (gst_alpha_set_ayuv), (gst_alpha_set_i420),
19459         (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
19460         (gst_alpha_init_params), (gst_alpha_chain):
19461         Implement alpha functions for AYUV too, this increases
19462         accuracy quite a bit.
19463
19464 2004-11-08  Wim Taymans  <wim@fluendo.com>
19465
19466         * gst/ffmpegcolorspace/avcodec.h:
19467         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19468         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
19469         (gst_ffmpegcsp_avpicture_fill):
19470         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19471         (gst_ffmpegcsp_caps_remove_format_info):
19472         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19473         (shrink12), (img_get_alpha_info), (deinterlace_line),
19474         (deinterlace_line_inplace):
19475         * gst/ffmpegcolorspace/imgconvert_template.h:
19476         Added AYUV colorspace and handle RGBA a bit more respectful.
19477
19478 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19479
19480         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19481           Actually always send a discont (cornercase when resending the
19482           same serial-tagged chain twice).
19483
19484 2004-11-08  Julien MOUTTE  <julien@moutte.net>
19485
19486         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
19487         (gst_ximagesink_finalize):
19488         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
19489         (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
19490
19491 2004-11-08  Wim Taymans  <wim@fluendo.com>
19492
19493         * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
19494         Don't segfault on NULL data.
19495
19496 2004-11-08  Wim Taymans  <wim@fluendo.com>
19497
19498         * gst/playback/gstdecodebin.c: (unlinked):
19499         * gst/playback/gstplay-marshal.list:
19500         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
19501         (gst_play_base_bin_init), (group_create), (get_active_group),
19502         (get_building_group), (group_destroy), (group_commit),
19503         (queue_overrun), (remove_groups), (add_stream), (unknown_type),
19504         (add_element_stream), (no_more_pads), (probe_triggered),
19505         (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
19506         (state_change), (setup_source), (gst_play_base_bin_get_property),
19507         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
19508         (gst_play_base_bin_link_stream),
19509         (gst_play_base_bin_get_streaminfo):
19510         * gst/playback/gstplaybasebin.h:
19511         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
19512         (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
19513         Add support for chained ogg files. Prepare for playlist
19514         support. This patch introduces the concept of pad groups, which
19515         together compose one playable media file.
19516
19517 2004-11-07  David Schleef  <ds@schleef.org>
19518
19519         * testsuite/gst-lint: Check for pad templates that aren't statically
19520         scoped.
19521
19522 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19523
19524         * configure.ac:
19525         * ext/Makefile.am:
19526         * ext/musepack/Makefile.am:
19527         * ext/musepack/gstmusepackdec.cpp:
19528         * ext/musepack/gstmusepackdec.h:
19529         * ext/musepack/gstmusepackreader.cpp:
19530         * ext/musepack/gstmusepackreader.h:
19531           Add musepack decoder.
19532         * ext/faad/gstfaad.c: (gst_faad_base_init):
19533           Make pad templates static.
19534         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
19535         (plugin_init):
19536           Add musepack typefinder, make mp3 typefinding work halfway stream,
19537           which doesn't actually work yet because id3demux doesn't implement
19538           _get_length().
19539
19540 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19541
19542         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
19543         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
19544           Fix interrupt event handling (#144436).
19545
19546 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19547
19548         * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
19549           Hide unused glory.
19550
19551 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
19552
19553         reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19554
19555         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
19556           Fix weird caps (#157548).
19557
19558 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
19559
19560         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19561
19562         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
19563           Add missing NULL terminator (#157543).
19564
19565 2004-11-05  Thomas Vander Stichele  <thomas at apestaart dot org>
19566
19567         * gst/tcp/gsttcp.h:
19568         * gst/tcp/gsttcpclientsink.c:
19569         * gst/tcp/gsttcpclientsrc.c:
19570         * gst/tcp/gsttcpserversink.c:
19571         * gst/tcp/gsttcpserversrc.c:
19572           ports can go up to 65535.  Move common defines to gsttcp.h
19573
19574 2004-11-05  Wim Taymans  <wim@fluendo.com>
19575
19576         * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
19577         (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
19578         Added two more colorspaces.
19579
19580 2004-11-05  Wim Taymans  <wim@fluendo.com>
19581
19582         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19583         (gst_ffmpegcsp_avpicture_fill):
19584         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19585         (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
19586         (img_convert), (deinterlace_line), (deinterlace_line_inplace):
19587         More stride fixes.
19588
19589 2004-11-05  Wim Taymans  <wim@fluendo.com>
19590
19591         * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
19592         (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
19593         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
19594         (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
19595         (gst_videomixer_loop):
19596         More stride fixes.
19597
19598 2004-11-05  Benjamin Otte  <otte@gnome.org>
19599
19600         * ext/mad/gstmad.c: (gst_mad_chain):
19601           don't overflow data buffer. Flush not needed sync data when syncing
19602           failed.
19603
19604 2004-11-04  Wim Taymans  <wim@fluendo.com>
19605
19606         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19607         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
19608         (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
19609         (gst_alpha_init_params), (gst_alpha_chain),
19610         (gst_alpha_change_state):
19611         Updated the chroma keying algorithm with something more
19612         sophisticated.
19613
19614 2004-11-03  Wim Taymans  <wim@fluendo.com>
19615
19616         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
19617         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
19618         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
19619         Fix stride issues. Does not completely work for odd
19620         heights.
19621
19622 2004-11-03  Wim Taymans  <wim@fluendo.com>
19623
19624         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19625         (gst_alpha_chroma_key), (gst_alpha_chain):
19626         Fix stride issues. Does not completely work for odd
19627         heights.
19628
19629 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
19630
19631         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
19632         * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
19633         leak fixes
19634
19635 2004-11-03  Wim Taymans  <wim@fluendo.com>
19636
19637         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19638         (gst_ffmpegcsp_avpicture_fill):
19639         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19640         (avpicture_alloc):
19641         * gst/ffmpegcolorspace/imgconvert_template.h:
19642         Use correct _fill function to get correct strides.
19643
19644 2004-11-02  David Schleef  <ds@schleef.org>
19645
19646         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19647         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
19648         (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
19649         Change all g_print()s to debugging.  Add a bunch of consistency
19650         checks.
19651
19652 2004-11-02  Wim Taymans  <wim@fluendo.com>
19653
19654         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19655         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
19656         (unlinked), (no_more_pads), (close_link):
19657         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
19658         (unknown_type), (add_element_stream), (new_decoded_pad),
19659         (removed_decoded_pad), (setup_source):
19660         * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
19661         (gst_stream_info_class_init), (gst_stream_info_init),
19662         (gst_stream_info_new), (gst_stream_info_dispose),
19663         (stream_info_mute_pad), (gst_stream_info_set_property),
19664         (gst_stream_info_get_property):
19665         * gst/playback/gststreaminfo.h:
19666         Fix playback of multiple files.
19667         a slightly different approach to handling dynamic pad removals.
19668         This one only looks at pads that we have linked.
19669
19670 2004-11-01  Christophe Fergeau  <teuf@gnome.org>
19671
19672         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
19673         free" warning from libc.
19674
19675 2004-11-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19676
19677         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19678         (get_unconnected_element), (remove_starting_from), (pad_removed),
19679         (close_link):
19680           Implement support for dynamic pad changing. We listen to "live"
19681           pad removals (i.e. while playing) and re-setup autoplugging
19682           after that. Playbasebin/playbin need some more work for this
19683           to finally work, but decodebin supports (and replugs) chained
19684           ogg now.
19685
19686 2004-11-02  Jan Schmidt  <thaytan@mad.scientist.com>
19687
19688         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
19689         (gst_alsa_finalize):
19690         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
19691         (gst_cdaudio_finalize):
19692         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
19693         (cdparanoia_finalize):
19694         * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
19695         * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
19696         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
19697         (dvdreadsrc_finalize):
19698         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
19699         (gst_flacdec_finalize):
19700         * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
19701         (gst_flacenc_finalize):
19702         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
19703         (gst_gnomevfssink_finalize):
19704         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
19705         (gst_gnomevfssrc_finalize):
19706         * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
19707         (gst_fameenc_finalize):
19708         * ext/nas/nassink.c: (gst_nassink_class_init),
19709         (gst_nassink_finalize):
19710         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
19711         (gst_sdlvideosink_class_init):
19712         * ext/sndfile/gstsf.c: (gst_sf_dispose):
19713         * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
19714         * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
19715         * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
19716         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
19717         (gst_x_window_listener_dispose):
19718         * gst/audioscale/gstaudioscale.c:
19719         * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
19720         (play_on_demand_finalize):
19721         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
19722         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
19723         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
19724         (cdplayer_finalize):
19725         * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
19726         (gst_glimagesink_class_init):
19727         * sys/oss/gstosselement.c: (gst_osselement_class_init),
19728         (gst_osselement_finalize):
19729         * sys/oss/gstosssink.c: (gst_osssink_dispose):
19730         * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
19731         * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
19732           Fixes a bunch of problems with finalize and dispose functions,
19733           either assumptions that dispose is only called once, or not calling
19734           the parent class dispose/finalize function
19735
19736 2004-11-01  Stefan Kost  <ensonic@users.sf.net>
19737
19738         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
19739           added two api precondition guards
19740           use g_strdup with getenv to fix crash when using ENVVAR
19741
19742 2004-11-01  Jan Schmidt  <thaytan@mad.scientist.com>
19743         * ext/esd/esdsink.c: (gst_esdsink_class_init),
19744         (gst_esdsink_finalize):
19745         Use a finalize function, not dispose, and more importantly,
19746         call the parent class finalize function too
19747
19748 2004-11-01  Johan Dahlin  <johan@gnome.org>
19749
19750         * ext/ogg/gstoggdemux.c:
19751         * gst/tags/gstvorbistag.c:
19752         Plug leaks.
19753
19754 2004-10-31  Benjamin Otte  <otte@gnome.org>
19755
19756         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
19757           lotsa memleaks today. But they're all small...
19758
19759 2004-10-31  Benjamin Otte  <otte@gnome.org>
19760
19761         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19762           another memleak crushed
19763
19764 2004-10-31  Benjamin Otte  <otte@gnome.org>
19765
19766         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
19767           fix memleak
19768
19769 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19770
19771         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19772           Hack to prevent crash when going to READY inside signal handler
19773           while this function is active.
19774
19775 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19776
19777         * gst/ffmpegcolorspace/Makefile.am:
19778         * gst/ffmpegcolorspace/avcodec.h:
19779         * gst/ffmpegcolorspace/common.h:
19780         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
19781         * gst/ffmpegcolorspace/dsputil.h:
19782         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
19783         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19784         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
19785         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
19786         (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
19787         (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
19788         (gst_ffmpegcsp_avpicture_fill):
19789         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
19790         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19791         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
19792         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
19793         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
19794         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
19795         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
19796         (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
19797         * gst/ffmpegcolorspace/imgconvert.c:
19798         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
19799         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
19800         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
19801         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
19802         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
19803         (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
19804         (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
19805         (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
19806         (img_convert_init), (img_apply_table), (shrink41), (shrink21),
19807         (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
19808         (grow21), (grow22), (grow41), (grow44), (conv411),
19809         (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
19810         (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
19811         (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
19812         (avpicture_free), (is_yuv_planar), (img_convert),
19813         (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
19814         (deinterlace_line_inplace), (deinterlace_bottom_field),
19815         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
19816         * gst/ffmpegcolorspace/imgconvert_template.h:
19817         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
19818         * gst/ffmpegcolorspace/mmx.h:
19819         * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
19820         (av_fast_realloc), (av_mallocz_static), (av_free_static),
19821         (av_freep), (avcodec_get_context_defaults),
19822         (avcodec_alloc_context), (avcodec_init):
19823           Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
19824           handling plus update from ffmpeg CVS. Large clean-up.
19825
19826 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19827
19828         * gst/playback/Makefile.am:
19829           We need the marshallers for decodebin, too.
19830
19831 2004-10-30  David Schleef  <ds@schleef.org>
19832
19833         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
19834           quicktime typefinding work with 64-bit offsets.
19835
19836 2004-10-30  Jan Schmidt  <thaytan@mad.scientist.com>
19837
19838         * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
19839           Set EOS on the element when processing an EOS event.
19840         * ext/speex/gstspeexdec.h:
19841         * ext/speex/gstspeexenc.h:
19842           Only keep a const ptr to the mode
19843         * gst-libs/gst/riff/riff-media.c:
19844         (gst_riff_create_audio_caps_with_data),
19845         (gst_riff_create_audio_template_caps):
19846           Allow WMAV3, with up to 6 channels.
19847         * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
19848           Don't call gst_pad_set_event_function on a sink pad.
19849         * gst/mpegstream/gstdvddemux.c:
19850         (gst_dvd_demux_get_subpicture_stream),
19851         (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
19852           Copy the explicit caps that were set across to the cur_* pads,
19853           instead of trying to use a possibly non-existent negotiated caps.
19854           Reset the type of subpicture pads to UNKNOWN after calling
19855           init_stream, so that the caps get set.
19856
19857 2004-10-29  Martin Pitt  <martin.pitt@canonical.com>
19858
19859         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19860
19861         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
19862           Don't touch buffer if it is of size 0 (fixes #151064).
19863
19864 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19865
19866         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
19867           Synchronized discont handling.
19868
19869 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19870
19871         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
19872         (gst_ogg_demux_push):
19873           Make seeking sort-of exact again (fixes #156387).
19874
19875 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19876
19877         * gst/playback/gstplaybasebin.c: (unknown_type),
19878         (add_element_stream), (new_decoded_pad),
19879         (gst_play_base_bin_change_state):
19880         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
19881         (gst_stream_info_init), (gst_stream_info_new),
19882         (gst_stream_info_dispose), (gst_stream_info_get_property):
19883         * gst/playback/gststreaminfo.h:
19884           Make caps explicitely available. Makes testing for unsupported
19885           types possible. Improves error reporting.
19886
19887 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19888
19889         * gst/audioconvert/gstaudioconvert.c:
19890         (gst_audio_convert_buffer_to_default_format):
19891           Really don't touch read-only buffers (#156563).
19892
19893 2004-10-29  Sebastien Cote  <sc5@hermes.usherb.ca>
19894
19895         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19896
19897         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
19898           Fix memleak (#155223).
19899
19900 2004-10-29  Wim Taymans  <wim@fluendo.com>
19901
19902         * gst/tcp/.cvsignore:
19903         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
19904         (gst_multifdsink_class_init), (gst_multifdsink_init),
19905         (gst_multifdsink_add), (gst_multifdsink_remove),
19906         (gst_multifdsink_remove_client_link), (is_sync_frame),
19907         (gst_multifdsink_new_client),
19908         (gst_multifdsink_handle_client_write),
19909         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
19910         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
19911         (gst_multifdsink_get_property):
19912         * gst/tcp/gstmultifdsink.h:
19913         Added burst on connect sync_method, deprecated sync_clients,
19914         streamlined the sync code some more.
19915
19916 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19917
19918         * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
19919         (gst_play_base_bin_change_state):
19920           Improve error reporting.
19921
19922 2004-10-28  Wim Taymans  <wim@fluendo.com>
19923
19924         * gst/tcp/Makefile.am:
19925         * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
19926         * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
19927         (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
19928         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
19929         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
19930         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
19931         (gst_fdset_wait):
19932         Added more locks around fdset structures. Fixed/reworked
19933         the poll array resizing code.
19934         Added stress test for fdset.
19935
19936 2004-10-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
19937
19938         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
19939         fix build
19940
19941 2004-10-28  Benjamin Otte  <otte@gnome.org>
19942
19943         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
19944           fix link function to always query channels and query width for
19945           floats
19946         * configure.ac:
19947           add equalizer dir
19948         * gst/equalizer/Makefile.am:
19949         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
19950         (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
19951         (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
19952         (arg_to_scale), (setup_filter),
19953         (gst_iir_equalizer_compute_frequencies),
19954         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
19955         (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
19956         (plugin_init):
19957           add an equalizer
19958
19959 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
19960
19961         Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
19962
19963         * po/LINGUAS:
19964         * po/nb.po:
19965           Added Norwegian Bokmaal translation
19966
19967 2004-10-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19968
19969         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
19970           Don't break on options (fixes #156488).
19971
19972 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
19973
19974         * configure.ac:
19975         * ext/cdaudio/Makefile.am:
19976         * sys/Makefile.am:
19977           fix build on older automake
19978
19979 2004-10-26  Wim Taymans  <wim@fluendo.com>
19980
19981         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
19982         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
19983         Allow a little margin when negotiating the framerate.
19984
19985 2004-10-26  Stefan Kost  <ensonic@users.sf.net>
19986
19987         * gst/level/gstlevel.c:
19988           synchonised naming of pads and pad-templates
19989
19990 2004-10-26  Wim Taymans  <wim@fluendo.com>
19991
19992         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
19993         (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
19994         (_find_streams_check), (gst_ogg_demux_push):
19995         Fix EOS again. Needs to be done in a better way. We should not
19996         remove the pad if there is no new chained stream.
19997
19998 2004-10-26 Iain <iaingnome@gmail.com>
19999
20000         * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
20001         * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
20002         of the caps.
20003         * gst/interleave/interleave.c (interleave_class_init): Hook up release
20004         pad.
20005         (interleave_release_pad): Remove the pad.
20006         * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
20007         * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
20008         the set device.
20009         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
20010         attrs
20011         (gst_xvimagesink_xcontext_clear): Free the xcontext.
20012         (gst_xvimagesink_finalize): Free the par.
20013
20014 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20015
20016         * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
20017         (gst_avimux_stop_file):
20018           First calculate the rate, and only then use it. Hdr.rate is a
20019           multiple and not a derivative of hdr.scale. Scale is not the
20020           same as blockalign but is solely related to rate.
20021
20022 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20023
20024         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
20025         (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
20026           Implement seeking.
20027
20028 2004-10-25  James Henstridge  <james@jamesh.id.au>
20029
20030         Reviewed by:  David Schleef  <ds@schleef.org>
20031
20032         * examples/gstplay/player.c: (got_stream_length), (main):
20033         * examples/seeking/cdplayer.c: (update_scale):
20034         * examples/seeking/seek.c: (format_value), (update_scale):
20035         * examples/seeking/spider_seek.c: (format_value), (update_scale),
20036         (stop_seek):
20037         Build fixes on AMD64.
20038
20039 2004-10-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
20040
20041         reviewed by: Ronald Bultje <rbultje at gnome dot org>
20042
20043         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
20044         Fix for some v4l cards which hang in v4lsrc
20045
20046 2004-10-25  Wim Taymans  <wim@fluendo.com>
20047
20048         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
20049         (gst_ogg_demux_push), (gst_ogg_chains_clear):
20050         Make sure to remove the pad when a new chain is
20051         encountered. Set some vars to NULL so we don't try
20052         to reference freed memory.
20053
20054 2004-10-25  Wim Taymans  <wim@fluendo.com>
20055
20056         * examples/seeking/Makefile.am:
20057         * examples/seeking/cdplayer.c: (update_scale):
20058         * examples/seeking/chained.c: (unlinked), (new_pad), (main):
20059         * examples/seeking/playbin.c: (make_playerbin_pipeline),
20060         (format_value), (update_scale), (iterate), (start_seek),
20061         (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
20062         (print_usage), (main):
20063         Added some more examples, update others.
20064
20065 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20066
20067         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
20068         * ext/speex/gstspeexdec.c: (speex_dec_chain):
20069         * ext/theora/theoradec.c: (theora_dec_chain):
20070         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
20071           Add codec-name metadata.
20072
20073 2004-10-25  Takao Fujiwara  <Takao.Fujiwara@Sun.COM>
20074
20075         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20076
20077         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
20078         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
20079         * ext/alsa/gstalsamixertrack.h:
20080         * po/POTFILES.in:
20081           ALSA mixer track label internationalization (#154054).
20082
20083 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20084
20085         * ext/theora/theoradec.c: (theora_dec_chain):
20086           Export bitrate as metadata.
20087
20088 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20089
20090         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
20091         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
20092         * ext/alsa/gstalsamixertrack.h:
20093           Fix names, fix loop.
20094
20095 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20096
20097         * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
20098         (speex_dec_convert):
20099           sinkconvert function so oggdemux can get the file length (totem).
20100
20101 2004-10-25  James Morrison  <ja2morri@csclub.uwaterloo.ca>
20102
20103         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20104
20105         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
20106           Don't push incomplete packets.
20107         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
20108           Fix MPEG-4 audio typefinding.
20109
20110 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20111
20112         * sys/v4l/Makefile.am:
20113         * sys/v4l/gstv4l.c: (plugin_init):
20114         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
20115         (gst_v4lelement_init), (gst_v4lelement_dispose),
20116         (gst_v4lelement_change_state):
20117         * sys/v4l/gstv4lelement.h:
20118         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
20119         (gst_v4l_xoverlay_close), (idle_refresh),
20120         (gst_v4l_xoverlay_set_xwindow_id):
20121         * sys/v4l/gstv4lxoverlay.h:
20122         * sys/v4l/v4l-overlay_calls.c:
20123         * sys/v4l/v4l_calls.h:
20124         * sys/v4l2/Makefile.am:
20125         * sys/v4l2/gstv4l2.c: (plugin_init):
20126         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
20127         (gst_v4l2element_init), (gst_v4l2element_dispose),
20128         (gst_v4l2element_change_state):
20129         * sys/v4l2/gstv4l2element.h:
20130         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
20131         (gst_v4l2_xoverlay_close), (idle_refresh),
20132         (gst_v4l2_xoverlay_set_xwindow_id):
20133         * sys/v4l2/gstv4l2xoverlay.h:
20134         * sys/v4l2/v4l2-overlay_calls.c:
20135         * sys/v4l2/v4l2_calls.h:
20136           Remove client-side overlay handling, use the X-server v4l plugin
20137           for that. Nicer overlay, less code. Also make the plugin
20138           compileable without X (but then without overlay, obviously).
20139           Makes xwindowlistener obsolete, should we remove that?
20140
20141 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20142
20143         * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
20144         (gst_osssrc_src_query):
20145         * sys/oss/gstosssrc.h:
20146           OK, so people want offset in DEFAULT. This time, actually fix all
20147           cases.
20148         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
20149           Add FPS properly.
20150
20151 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20152
20153         * gst/asfdemux/gstasfmux.c:
20154         * gst/avi/gstavimux.c:
20155           Framerate.
20156
20157 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20158
20159         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
20160           Fix properties (channel, norm, frequency).
20161
20162 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20163
20164         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
20165           Flag typo.
20166         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
20167           No warnings.
20168
20169 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20170
20171         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
20172           Fix hang.
20173
20174 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20175
20176         * sys/v4l2/gstv4l2element.h:
20177           Yet Another Hack (tm) for kernel header borkedness.
20178         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
20179         (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
20180         (gst_v4l2src_link), (gst_v4l2src_getcaps),
20181         (gst_v4l2src_change_state):
20182         * sys/v4l2/gstv4l2src.h:
20183         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
20184         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
20185           Fix caps, keep track of state, work.
20186
20187 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20188
20189         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
20190           Quiet.
20191
20192 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20193
20194         * sys/oss/gstosssrc.c: (gst_osssrc_get):
20195           Don't mix bytes and samples.
20196
20197 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20198
20199         * ext/ogg/gstoggmux.c:
20200           Basic pad template which accepts OGM tracks, speex, flac, vorbis
20201           and theora. Any is incorrect.
20202         * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
20203           Fix caps.
20204         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
20205         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
20206         (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
20207         (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
20208         * sys/v4l/gstv4lmjpegsrc.h:
20209         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
20210         (gst_v4lsrc_change_state):
20211         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
20212         (gst_v4lmjpegsrc_capture_stop):
20213           Fix caps. Keep track of internal state. Work.
20214
20215 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20216
20217         * ext/Makefile.am:
20218           Fix the build fixes.
20219
20220 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20221
20222         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20223         (gst_ogg_demux_src_event), (_find_chain_seek),
20224         (gst_ogg_pad_push):
20225           Check for pad availability before using it.
20226         * ext/ogg/gstoggdemux.c: (_find_chain_process):
20227           Fix parsing of chained ogg. Needs more work on the decoder side.
20228
20229 2004-10-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20230
20231         * gst/spectrum/Makefile.am:
20232         * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
20233         (idle_func):
20234           Fix demo and reenable it. Yes, I'm currently playing with audio
20235           analysis tools
20236
20237 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20238
20239         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
20240           We love it if files that start at zero work too...
20241
20242 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20243
20244         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20245           Handle files with missing EOS headers.
20246
20247 2004-10-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
20248
20249         * gst/tcp/gsttcpserversink.c:
20250         (gst_tcpserversink_handle_server_read),
20251         (gst_tcpserversink_init_send):
20252         Zero some variables first (need for accept not to return EINVAL)
20253
20254 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20255
20256         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20257         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
20258         * ext/theora/theoradec.c: (theora_dec_sink_convert),
20259         (theora_dec_chain):
20260         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
20261         (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
20262           Seeking and querying finetune.
20263
20264 2004-10-20  Thomas Vander Stichele  <thomas at apestaart dot org>
20265
20266         * configure.ac:
20267         * ext/Makefile.am:
20268         * ext/raw1394/Makefile.am:
20269           fix the build
20270
20271 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20272
20273         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20274           Wrong return.
20275         * gst/playback/Makefile.am:
20276         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
20277         * gst/playback/gstplay-marshal.list:
20278         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
20279           Fix marshallers.
20280
20281 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20282
20283         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
20284           Silence.
20285
20286 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20287
20288         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20289         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
20290         (gst_ogg_pad_push):
20291           Yay for non-lineair granulepos in theora.
20292
20293 2004-10-18  Wim Taymans  <wim@fluendo.com>
20294
20295         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
20296         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
20297         * ext/dv/gstdvdec.h:
20298         Make sure we renegotiate aspect ratio when the camera switches.
20299
20300 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20301
20302         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20303         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
20304           Start at zero.
20305         * ext/theora/theoradec.c: (theora_dec_chain):
20306           Skip headers. Bad idea for chained ogg, but fixes seeking.
20307
20308 2004-10-18  Wim Taymans  <wim@fluendo.com>
20309
20310         * configure.ac:
20311         I swear, this is the last time I touch this.
20312
20313 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20314
20315         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20316         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
20317         (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
20318           Faster seeking.
20319         * ext/theora/theoradec.c: (theora_dec_sink_convert):
20320           Time-to-default conversion.
20321         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
20322           Don't error on unknown packets, just skip. We should probably
20323           read them if we want to support chained ogg.
20324
20325 2004-10-18  Wim Taymans  <wim@fluendo.com>
20326
20327         * configure.ac:
20328         Added cdaudio to wrong list.
20329
20330 2004-10-18  Wim Taymans  <wim@fluendo.com>
20331
20332         * configure.ac:
20333         Revive cdaudio.
20334
20335 2004-10-18  Wim Taymans  <wim@fluendo.com>
20336
20337         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
20338         (gst_dvdec_video_link), (gst_dvdec_push):
20339         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
20340         (gst_smokeenc_resync), (gst_smokeenc_chain):
20341         Fix mimetype on smoke encoder.
20342         Add aspect ratio to dvdec. Not sure if these
20343         values are correct though....
20344
20345 2004-10-18  Wim Taymans  <wim@fluendo.com>
20346
20347         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
20348         Fix vorbis property descriptions and ranges.
20349
20350 2004-10-18  Wim Taymans  <wim@fluendo.com>
20351
20352         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20353         Really do nothing when no data is available.
20354         Go to the playing state when the stream is not seekable
20355         instead of failing.
20356
20357 2004-10-18  Wim Taymans  <wim@fluendo.com>
20358
20359         * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
20360         (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
20361         (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
20362         (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
20363         (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
20364         Added uri handler for cd://
20365         Port to new API.
20366
20367 2004-10-18  Wim Taymans  <wim@fluendo.com>
20368
20369         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
20370         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20371         (try_to_link_1), (no_more_pads), (close_link), (type_found):
20372         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
20373         (remove_prerolls), (unknown_type), (add_element_stream),
20374         (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
20375         (gst_play_base_bin_remove_element),
20376         (gst_play_base_bin_link_stream):
20377         * gst/playback/gstplaybin.c: (gen_video_element),
20378         (gen_vis_element), (remove_sinks), (setup_sinks):
20379         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
20380         (gst_stream_info_get_type), (gst_stream_info_class_init),
20381         (gst_stream_info_init), (gst_stream_info_new),
20382         (gst_stream_info_dispose), (stream_info_mute_pad),
20383         (gst_stream_info_set_property), (gst_stream_info_get_property):
20384         * gst/playback/gststreaminfo.h:
20385         Add sink padtemplate to decodebin.
20386         Added some more comments.
20387         Make queue size configurable in playbasebin.
20388         Added possibility to use elements as sinks (ex cdaudio).
20389
20390 2004-10-15  Wim Taymans  <wim@fluendo.com>
20391
20392         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
20393         (gst_speexenc_chain):
20394         Fix speex timestamps so that it gets muxed properly.
20395
20396 2004-10-15  Wim Taymans  <wim@fluendo.com>
20397
20398         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
20399         (gst_dv1394src_base_init), (gst_dv1394src_class_init),
20400         (gst_dv1394src_init), (gst_dv1394src_dispose),
20401         (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
20402         (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
20403         (gst_dv1394src_event), (gst_dv1394src_get_formats),
20404         (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
20405         (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
20406         (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
20407         (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
20408         * ext/raw1394/gstdv1394src.h:
20409         Added conversion/query functions.
20410         Update buffer timestamps,
20411         Added signals.
20412         Added uri dv:// so it might play from the firewire in playbin.
20413         Fix a possible leak.
20414         Added debugging.
20415
20416 2004-10-15  Wim Taymans  <wim@fluendo.com>
20417
20418         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
20419         (gst_dv1394src_init), (gst_dv1394src_set_property),
20420         (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
20421         (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
20422         * ext/raw1394/gstdv1394src.h:
20423         Added AV/C VTR control support needed for some cameras.
20424         Added automatic port detection.
20425         Added properties for selecting the channel.
20426         The configure.ac script is not yet updated to reflect the
20427         new libavc1394 and librom1394 dependencies.
20428
20429 2004-10-15  Wim Taymans  <wim@fluendo.com>
20430
20431         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
20432         (qtdemux_parse), (gst_qtdemux_handle_esds):
20433         An esds box is not a container.
20434         Fix parsing of mp4v boxes.
20435         Do not try to renegotiate fps for each frame. Need to
20436         find a better method. This should fix mp4 playback.
20437
20438 2004-10-14  David Schleef  <ds@schleef.org>
20439
20440         * configure.ac: update for swfdec-0.3 and liboil-0.2
20441         * ext/swfdec/gstswfdec.c: update for swfdec-0.3
20442         * ext/swfdec/gstswfdec.h: same
20443         * gst/videofilter/gstvideobalance.c: update for liboil-0.2
20444         * gst/videotestsrc/videotestsrc.c: same
20445
20446 2004-10-14  Wim Taymans  <wim@fluendo.com>
20447
20448         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
20449         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
20450         (is_sync_frame), (gst_multifdsink_new_client),
20451         (gst_multifdsink_handle_client_write),
20452         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
20453         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
20454         Turn warnings into info.
20455         Don't allow a state change in the streaming thread.
20456
20457 2004-10-14  Thomas Vander Stichele  <thomas at apestaart dot org>
20458
20459         * ext/vorbis/oggvorbisenc.c:
20460         * ext/vorbis/vorbisdec.c:
20461           fix template sample rate
20462
20463 2004-10-13  Wim Taymans  <wim@fluendo.com>
20464
20465         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
20466         Decoding the header first fixes some problems in resyncing
20467         in more mp3s.
20468
20469 2004-10-12  Wim Taymans  <wim@fluendo.com>
20470
20471         * gst/playback/gstplaybin.c: (gen_video_element),
20472         (gen_vis_element), (remove_sinks), (setup_sinks):
20473         Added vis plugin support, need to configure the vis
20474         element to activate it.
20475
20476 2004-10-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20477
20478         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
20479         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
20480           Some debug.
20481         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
20482         (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
20483         (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
20484         (gst_avi_demux_stream_index), (gst_avi_demux_skip),
20485         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
20486         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
20487         * gst/avi/gstavidemux.h:
20488           Support for openDML-2.0 indx/ix## chunks. Support for broken index
20489           recovery (where, if part of the index is broken, we will still read
20490           the rest of the index and recover the broken part by stream
20491           scanning). More broken media support. EOS workarounds. General AVI
20492           braindamage headache recovery. Aspirin included.
20493
20494 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20495
20496         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
20497         (cdparanoia_event), (cdparanoia_query):
20498           Get rid of hideous lead-in.
20499
20500 2004-10-11  Wim Taymans  <wim@fluendo.com>
20501
20502         * gst/playback/gstplaybasebin.c: (setup_source):
20503         Wrong var used to get g_list_next.
20504
20505 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20506
20507         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
20508         (cdparanoia_get), (cdparanoia_open):
20509           Report discid as metadata, add duration.
20510
20511 2004-10-11  Wim Taymans  <wim@fluendo.com>
20512
20513         * gst/playback/gstplaybasebin.c: (setup_source):
20514         Cleanup the previous pipeline a little earlier for the
20515         case that a source element provides raw data.
20516
20517 2004-10-11  Benjamin Otte  <otte@gnome.org>
20518
20519         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
20520           reset v1 tag offset when there is no v1 tag. Fixes id3demux always
20521           consuming the last 128 bytes, even though it was valid mp3 data.
20522
20523 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
20524
20525         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
20526         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
20527         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
20528         Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
20529
20530 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
20531
20532         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
20533         Fix for webcams that support only specific width or height
20534
20535 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
20536
20537         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20538
20539         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
20540           Fix wrong discont event setup (fixes #154967).
20541
20542 2004-10-09  Sebastien Cote  <sc5@hermes.usherb.ca>
20543
20544         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20545
20546         * gst/auparse/gstauparse.c: (gst_auparse_chain):
20547           Error out on invalid data (fixes #154807).
20548
20549 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
20550
20551         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20552
20553         * ext/dvdread/dvdreadsrc.c: (_read):
20554           Make titles > 0 work again (fixes #154834).
20555
20556 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20557
20558         * gst-libs/gst/riff/riff-media.c:
20559         (gst_riff_create_video_template_caps):
20560           WMV3 missing in template caps.
20561
20562 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20563
20564         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20565           OK, so the original code was too strict. It makes random AVI files
20566           hang for seconds upon opening, which is unacceptable and is far
20567           beyond the original goal of getting multiple chunks for one-chunk
20568           sounc stream files. So now do just that.
20569
20570 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20571
20572         * gst/playback/gstplaybasebin.c: (setup_source),
20573         (gst_play_base_bin_change_state):
20574           Actually clean up streaminfo if output fails. This would trigger
20575           if, for example, there was no CD in the drive. No preroll, so
20576           a streaminfo structure is created, but the subsequent state change
20577           of the thread fails.
20578         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
20579           Don't change state if parent failed.
20580
20581 2004-10-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20582
20583         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
20584         (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
20585         (gen_video_element), (remove_sinks):
20586           Add small bits of code for screenshot handling.
20587
20588 2004-10-08  Wim Taymans  <wim@fluendo.com>
20589
20590         * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
20591         (gen_video_element), (gen_audio_element), (setup_sinks):
20592         Don't assume the user provided sinks are named "sink"...
20593
20594 2004-10-08  Wim Taymans  <wim@fluendo.com>
20595
20596         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
20597         (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
20598         (gst_play_base_bin_link_stream):
20599         Do not try to autoplug sources that generate raw streams like
20600         cdparanoia.
20601         disconnect the preroll overrun signal when we don't need it anymore.
20602
20603 2004-10-08  Milosz Derezynski  <internalerror.rez@fhtw-berlin.de>
20604
20605         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
20606         Added reworked patch from #154903 from milosz derezynski (deadchip).
20607
20608 2004-10-08  Wim Taymans  <wim@fluendo.com>
20609
20610         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
20611         (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
20612         (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
20613         (cdparanoia_convert), (cdparanoia_uri_get_type),
20614         (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
20615         (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
20616         * ext/cdparanoia/gstcdparanoia.h:
20617         This adds the cdda://<tracknum> uri.
20618
20619 2004-10-08  Wim Taymans  <wim@fluendo.com>
20620
20621         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
20622         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20623         (try_to_link_1), (no_more_pads), (close_link), (type_found):
20624         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
20625         (unknown_type), (gst_play_base_bin_remove_element),
20626         (gst_play_base_bin_link_stream):
20627         * gst/playback/gstplaybasebin.h:
20628         * gst/playback/gstplaybin.c: (gst_play_bin_init),
20629         (gst_play_bin_set_property), (gen_video_element),
20630         (gen_audio_element), (setup_sinks):
20631         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
20632         (gst_stream_info_get_type), (gst_stream_info_class_init),
20633         (gst_stream_info_init), (gst_stream_info_new),
20634         (gst_stream_info_dispose), (stream_info_mute_pad),
20635         (gst_stream_info_set_property), (gst_stream_info_get_property):
20636         * gst/playback/gststreaminfo.h:
20637         Reuse the audio and video bins.
20638         Some internal cleanups in the stream selection code.
20639
20640 2004-10-08  Julien MOUTTE  <julien@moutte.net>
20641
20642         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20643         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
20644         * sys/ximage/ximagesink.h:
20645         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
20646         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
20647         * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
20648         not coming from those elements. Moreover these elements should not keep
20649         the xid they have been given when in NULL state.
20650
20651 2004-10-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20652
20653         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20654         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
20655         * sys/ximage/ximagesink.h:
20656         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
20657         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
20658         * sys/xvimage/xvimagesink.h:
20659           Actually only create a new toplevel window if we're not gonna
20660           embed it right after.
20661
20662 2004-10-07  Wim Taymans  <wim@fluendo.com>
20663
20664         * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
20665         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
20666         * gst/playback/gstplaybin.c: (setup_sinks):
20667         Implement muting/unmuting of streams, mute streams that are not
20668         used.
20669
20670 2004-10-07  Wim Taymans  <wim@fluendo.com>
20671
20672         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
20673         (plugin_init):
20674         Added lame audio/x-ac3 typefind function.
20675
20676 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
20677
20678         * configure.ac:
20679           bump nano to cvs
20680
20681 === release 0.8.5 ===
20682
20683 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
20684
20685         * NEWS:
20686         * RELEASE:
20687         * configure.ac:
20688           releasing 0.8.5, "Take You On"
20689
20690 2004-10-06  Wim Taymans  <wim@fluendo.com>
20691
20692         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20693         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
20694         (no_more_pads), (close_link), (type_found):
20695         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20696         * gst/playback/gstplaybin.c: (gen_video_element):
20697         Do not signal the no_more_pads after the first pad when
20698         we are plugging a non dynamic element with multiple
20699         output pads (like swfdec, dvdec, ...).
20700
20701 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
20702
20703         * configure.ac:
20704           bump for prerelease
20705
20706 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
20707
20708         * gst/wavparse/gstwavparse.c:
20709           add ATRAC3 to STATIC CAPS to fix a warning
20710
20711         * gst/matroska/ebml-read.c:
20712         * gst-libs/gst/riff/riff-read.c:
20713           fix typos
20714
20715 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
20716
20717         * gst-libs/gst/riff/riff-media.c:
20718           generate caps for ATRAC3 audio streams
20719
20720         * gst/realmedia/rmdemux.c:
20721           generate caps for ATRAC3 audio streams
20722
20723 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
20724
20725         * gst/wavparse/Makefile.am
20726         * gst/wavparse/riff.h
20727         * gst/wavparse/wavparse.vcproj
20728           riff.h removal (unused and duplication with riff-ids.h)
20729
20730 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
20731
20732         * gst/wavparse/gstwavparse.h
20733           remove duplicated defines for audio codec codes
20734
20735         * gst-libs/gst/riff/riff-ids.h
20736         * gst/wavenc/riff.h:
20737           add "4CC" code for ATRAC3 audio streams
20738           add "4CC" code for ITU_G721_ADPCM (unused for now)
20739
20740 2004-10-06  Wim Taymans  <wim@fluendo.com>
20741
20742         * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
20743         Actually _do_ negotiation. Pass gdouble as arg instead
20744         of guint64 for the framerate.
20745
20746 2004-10-06  Wim Taymans  <wim@fluendo.com>
20747
20748         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20749         (find_compatibles), (close_pad_link), (try_to_link_1),
20750         (no_more_pads), (close_link), (type_found):
20751         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20752         * gst/playback/gstplaybin.c: (gen_video_element),
20753         (gen_audio_element):
20754         Set state on newly added element to READY so that negotiation
20755         can happen ASAP.
20756         Addes some more debug info.
20757         Do not try to plug pads with multiple caps structures or ANY
20758         because it is too dangerous since we do not do dynamic
20759         replugging.
20760
20761 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
20762
20763         written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
20764
20765         * po/LINGUAS:
20766         * po/or.po:
20767           add Oriya translation
20768
20769 2004-10-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20770
20771         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20772           Prevent overwrite of size member. Makes audio sound crappy.
20773
20774 2004-10-05  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
20775
20776         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
20777         Add rmvb to the list of known RealMedia extensions
20778
20779 2004-10-05  Wim Taymans  <wim@fluendo.com>
20780
20781         * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
20782         (mngdec_openstream), (mngdec_closestream),
20783         (mngdec_handle_sink_event), (mngdec_readdata),
20784         (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
20785         (mngdec_getcanvasline), (mngdec_refresh),
20786         (gst_mngdec_change_state):
20787         Set the framerate correctly.
20788
20789 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20790
20791         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20792           There was something wrong with the index massaging.
20793
20794 2004-10-04  Wim Taymans  <wim@fluendo.com>
20795
20796         * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
20797         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
20798         (gst_smokedec_chain):
20799         * ext/jpeg/gstsmokedec.h:
20800         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
20801         (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
20802         * ext/jpeg/gstsmokeenc.h:
20803         * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
20804         (smokecodec_decode_new), (smokecodec_info_free),
20805         (smokecodec_set_quality), (smokecodec_get_quality),
20806         (smokecodec_set_threshold), (smokecodec_get_threshold),
20807         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
20808         (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
20809         (smokecodec_encode), (smokecodec_parse_id),
20810         (smokecodec_parse_header), (smokecodec_decode):
20811         * ext/jpeg/smokecodec.h:
20812         * ext/jpeg/smokeformat.h:
20813         Updated smoke, new bitstream, allows embedding in ogg.
20814
20815 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20816
20817         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
20818           Fix seeking in some files. All this code is no longer needed (and
20819           actually breaks stuff) because we now synchronize the full index
20820           right when reading the header.
20821
20822 2004-10-04  Wim Taymans  <wim@fluendo.com>
20823
20824         * configure.ac:
20825         configure update for libmng.
20826
20827 2004-10-04  Wim Taymans  <wim@fluendo.com>
20828
20829         * ext/libmng/Makefile.am:
20830         * ext/libmng/gstmng.c: (plugin_init):
20831         * ext/libmng/gstmng.h:
20832         * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
20833         (gst_mngdec_base_init), (gst_mngdec_class_init),
20834         (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
20835         (gst_mngdec_loop), (gst_mngdec_get_property),
20836         (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
20837         (mngdec_closestream), (mngdec_handle_sink_event),
20838         (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
20839         (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
20840         (gst_mngdec_change_state):
20841         * ext/libmng/gstmngdec.h:
20842         * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
20843         (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
20844         (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
20845         (gst_mngenc_chain), (gst_mngenc_get_property),
20846         (gst_mngenc_set_property):
20847         * ext/libmng/gstmngenc.h:
20848         Added basic MNG decoder. Needs more work. The encoder does
20849         not work yet.
20850
20851 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20852
20853         * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
20854         (gst_rmdemux_loop), (gst_rmdemux_add_stream),
20855         (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
20856           Don't hang on length=0 chunks. Some negotiation fixes. Signal
20857           no-more-pads.
20858
20859 2004-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
20860
20861         * configure.ac:
20862           you need at least 1.0.4 of speex
20863
20864 2004-10-04 Iain <iaingnome@gmail.com>
20865
20866         * ext/speex/gstspeexdec.h: Revert the includes changes.
20867
20868         * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
20869
20870 2004-09-30 Iain <iaingnome@gmail.com>
20871
20872         * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
20873         found during init or set as a property instead of hardcoding /dev/audio
20874
20875 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20876
20877         * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
20878         (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
20879         (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
20880         (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
20881         (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
20882         (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
20883         (gst_rmdemux_dump_data):
20884           Use debug category, fix EOS handling. filesrc ! rmdemux now
20885           works.
20886
20887 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20888
20889         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
20890         (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
20891         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
20892           Improve allocation, cutting and sorting of the index. How takes a
20893           few seconds instead of minutes.
20894
20895 2004-10-03  Christophe Fergeau  <teuf@gnome.org>
20896
20897         * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
20898           fixed compilation
20899
20900 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20901
20902         * gst-libs/gst/riff/riff-media.c:
20903         (gst_riff_create_video_caps_with_data),
20904         (gst_riff_create_video_template_caps):
20905           Add wing commander format mimetype/fourccs.
20906         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20907           Don't crash if some value is 0.
20908
20909 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20910
20911         * gst-libs/gst/riff/riff-media.c:
20912         (gst_riff_create_video_caps_with_data),
20913         (gst_riff_create_video_template_caps):
20914           Add DIB fourcc (raw, palettized 8-bit RGB).
20915         * gst-libs/gst/riff/riff-read.c:
20916         (gst_riff_read_strf_vids_with_data):
20917           Oops, fix strf_data reading bug.
20918         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
20919           Use a non-NULL tag.
20920         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
20921           Time for hacks. Sorry Dave. At least one quicktime movie (a
20922           trailer) that I've encountered contains multiple video tracks.
20923           One of those is the actual video track, the other are one-frame
20924           tracks (images). Unfortunately, the number of frames according
20925           to the trak header is 1 for each, so that doesn't help. So
20926           instead, I look at the duration and discard tracks with a
20927           duration shorter than 20% of the length of the stream. Better
20928           than nothing.
20929
20930 2004-10-01  Christian Schaller <christian@fluendo.com>
20931
20932         * ext/ivorbis/vorbis.c:
20933           Patch from Phil Blundell (Bug 152341)
20934
20935 2004-10-01  Wim Taymans  <wim@fluendo.com>
20936
20937         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
20938         (speex_dec_get_formats), (speex_dec_convert),
20939         (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
20940         (speex_dec_chain), (gst_speexdec_get_property),
20941         (gst_speexdec_set_property):
20942         Small cleanups.
20943
20944 2004-10-01  Wim Taymans  <wim@fluendo.com>
20945
20946         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
20947         (gst_wavparse_stream_init), (gst_wavparse_fmt),
20948         (gst_wavparse_other), (gst_wavparse_loop),
20949         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
20950         (gst_wavparse_srcpad_event):
20951         * gst/wavparse/gstwavparse.h:
20952         Added some more debugging info.
20953         Fix the case where the length of the file is 0.
20954         Make sure we seek to sample borders.
20955
20956 2004-10-01  Wim Taymans  <wim@fluendo.com>
20957
20958         * gst/playback/README:
20959         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
20960         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20961         (try_to_link_1), (no_more_pads), (close_link), (type_found):
20962         Add some debug info to decodebin, update README
20963
20964 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20965
20966         * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
20967           Don't use g_print(); use GST_DEBUG().
20968
20969 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20970
20971         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
20972         (gst_ogg_mux_queue_pads):
20973           Handle EOS properly.
20974
20975 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
20976
20977         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20978
20979         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
20980         (gst_faad_chain), (gst_faad_change_state):
20981         * ext/faad/gstfaad.h:
20982           Allow playback of raw (unframed) MPEG AAC files (#148993).
20983
20984 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
20985
20986         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20987
20988         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
20989           Throw error if we didn't recognize the stream. Fixes #152289.
20990
20991 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20992
20993         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
20994           Fix negotiation.
20995
20996 2004-10-01  Francis Labonte  <francis_labonte@hotmail.com>
20997
20998         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20999
21000         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
21001           Fix memleak.
21002
21003 2004-10-01  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
21004
21005         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21006
21007         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
21008           Solve #152805.
21009         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
21010           Solve 152806.
21011
21012 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21013
21014         * gst-libs/gst/riff/riff-media.c:
21015         (gst_riff_create_video_caps_with_data),
21016         (gst_riff_create_audio_caps_with_data):
21017           Add codec_data handling (like asfdemux used to do).
21018         * gst/asfdemux/gstasf.c: (plugin_init):
21019         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
21020         (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
21021           Use riff-media for caps creation instead of our own (mostly
21022           broken) copy of its functions.
21023
21024 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21025
21026         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
21027           Don't actually error out if we get another return value than
21028           -EINVAL. Opposite to what I first thought, drivers have random
21029           return values for this, although -EINVAL is the expected return
21030           value. Since this is not fatal, we shouldn't use
21031           GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
21032
21033 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21034
21035         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
21036         (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
21037         (dvdreadsrc_get_property), (_open), (_seek), (_read),
21038         (dvdreadsrc_get), (dvdreadsrc_open_file),
21039         (dvdreadsrc_change_state):
21040           Fix. Don't do one big huge loop around the whole DVD, that will
21041           cache all data and thus eat sizeof(dvd) (several GB) before we
21042           see something.
21043         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
21044           Actually NULL'ify event after using it.
21045         * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
21046         (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
21047         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
21048         (gst_ebml_read_seek), (gst_ebml_read_skip):
21049           Handle events.
21050         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
21051         (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
21052         (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
21053           Fix timing (this will probably break if I seek using menus, but
21054           I didn't get there yet). VOBs and normal DVDs should now work.
21055           Add a mpeg2-only pad with high rank so this get autoplugged for
21056           MPEG-2 movies.
21057         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
21058         (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
21059         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
21060         (gst_mpeg_demux_get_audio_stream),
21061         (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
21062         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
21063           Use this as second rank for MPEG-1 and MPEG-2. Still use this for
21064           MPEG-1 but use dvddemux for MPEG-2.
21065         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
21066         (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
21067         (gst_mpeg_parse_parse_packhead):
21068           Timing. Only add pad template if it exists. Add sink template from
21069           class and not from ourselves. This means we will always use the
21070           correct sink template even if it is not the one defined in this
21071           file.
21072
21073 2004-09-29  Wim Taymans  <wim@fluendo.com>
21074
21075         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
21076         (gst_mpeg_demux_parse_pes):
21077         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
21078         Fix playback of mpeg again, timestamps where screwed up by
21079         patch 1.61.
21080
21081 2004-09-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21082
21083         * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
21084           Only return true if we actually filled something in. Prevents
21085           player applications from showing a random length for flac files.
21086         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
21087         (gst_riff_read_use_event), (gst_riff_read_handle_event),
21088         (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
21089         (gst_riff_read_strf_vids_with_data),
21090         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
21091           OK, ok, so I implemented event handling. Apparently it's normal
21092           that we receive random events at random points without asking
21093           for it.
21094         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
21095         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
21096         (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
21097         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
21098         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
21099         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
21100         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
21101         * gst/avi/gstavidemux.h:
21102           Implement non-lineair chunk handling and subchunk processing.
21103           The first solves playback of AVI files where the audio and video
21104           data of individual buffers that we read are not synchronized.
21105           This should not happen according to the wonderful AVI specs, but
21106           of course it does happen in reality. It is also a prerequisite for
21107           the second. Subchunk processing allows us to cut chunks in small
21108           pieces and process each of these pieces separately. This is
21109           required because I've seen several AVI files with incredibly large
21110           audio chunks, even some files with only one audio chunk for the
21111           whole file. This allows for proper playback including seeking.
21112           This patch is supposed to fix all AVI A/V sync issues.
21113         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
21114         (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
21115           Work.
21116         * gst/modplug/gstmodplug.cc:
21117           Proper return value setting for the query() function.
21118         * gst/playback/gstplaybasebin.c: (setup_source):
21119           Being in non-playing state (after, e.g., EOS) is not necessarily
21120           a bad thing. Allow for that. This fixes playback of short files.
21121           They don't actually playback fully now, because the clock already
21122           runs. This means that small files (<500kB) with a small length
21123           (<2sec) will still not or barely play. Other files, such as mod
21124           or flx, will work correctly, however.
21125
21126 2004-09-28  Wim Taymans  <wim@fluendo.com>
21127
21128         * ext/speex/gstspeex.c: (plugin_init):
21129         * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
21130         (gst_speex_dec_class_init), (speex_dec_get_formats),
21131         (speex_get_event_masks), (speex_get_query_types),
21132         (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
21133         (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
21134         (gst_speexdec_get_property), (gst_speexdec_set_property),
21135         (speex_dec_change_state):
21136         * ext/speex/gstspeexdec.h:
21137         * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
21138         (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
21139         (gst_speexenc_base_init), (gst_speexenc_class_init),
21140         (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
21141         (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
21142         (gst_speexenc_src_query), (gst_speexenc_init),
21143         (gst_speexenc_get_tag_value), (comment_init), (comment_add),
21144         (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
21145         (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
21146         (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
21147         (gst_speexenc_chain), (gst_speexenc_get_property),
21148         (gst_speexenc_set_property), (gst_speexenc_change_state):
21149         * ext/speex/gstspeexenc.h:
21150         Rewrote speex encoder, make sure it can be embedded in ogg.
21151         Implemented speex decoder.
21152
21153 2004-09-28  Christian Schaller <christian@fluendo.com>
21154
21155         * configure.ac:
21156         Remove kioslave plugin. Markey is brewing a new working one
21157         * ext/Makefile.am: Remove kioslave plugin
21158         * ext/kio: remove
21159         * gst-plugins.spec.in: remove kio plugin from spec
21160
21161 2004-09-27  Wim Taymans  <wim@fluendo.com>
21162
21163         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21164         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
21165         (is_sync_frame), (gst_multifdsink_client_queue_buffer),
21166         (gst_multifdsink_new_client),
21167         (gst_multifdsink_handle_client_write),
21168         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
21169         (gst_multifdsink_handle_clients):
21170         * gst/tcp/gstmultifdsink.h:
21171         Make syncing to keyframes actually work for new clients and lagging
21172         clients.
21173
21174 2004-09-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21175
21176         * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
21177         (gst_navigationtest_handle_src_event), (draw_box_planar411),
21178         (gst_navigationtest_planar411), (gst_navigationtest_change_state):
21179         * gst/debug/gstnavigationtest.h:
21180           make navigationtest display button-press and button-release events
21181
21182 2004-09-26 Iain <iaingnome@gmail.com>
21183
21184         * gst/interleave/interleave.c (all_channels_new_media): Checks if all
21185         the channels have received a new media event.
21186         (interleave_buffered_loop): Compresses a new media event on all
21187         channels into one.
21188
21189 2004-09-26 Iain <iaingnome@gmail.com>
21190
21191         * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
21192         call the sinkpad's default event handler and not the srcpads. He also
21193         says this is confusing :)
21194         (gst_wavenc_stop_file): Company says that seek events only go upstream
21195         we should send a discontinuous downstream instead.
21196
21197 2004-09-25  Christian Schaller <christian@fluendo.com>
21198
21199         * Update SPEC file to be usable in conjunction with Fedora Core,
21200           Fedora.us and freshrpms packages
21201         * Fix typo in multifilesrc test Makefile
21202
21203 2004-09-24  Wim Taymans  <wim@fluendo.com>
21204
21205         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
21206         Only signal the no_more_pads signal when we have
21207         added the stream to our list.
21208
21209 2004-09-24  Wim Taymans  <wim@fluendo.com>
21210
21211         * gst/playback/gstplaybasebin.c: (remove_prerolls),
21212         (new_decoded_pad):
21213         * gst/playback/gstplaybasebin.h:
21214         * gst/playback/gstplaybin.c: (setup_sinks):
21215         Don't try to preroll or decode more than one audio/video
21216         track.
21217
21218 2004-09-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21219
21220         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
21221           Throw error if we failed to find a suitable output. This should
21222           throw an error if we successfully set up a pipeline (e.g. because
21223           we recognized a media file) but found no decodable streams in it
21224           (e.g. because it contains only media stream types for which we
21225           have no decoders, or because it's not a media type).
21226
21227 2004-09-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21228
21229         * ext/dirac/Makefile.am:
21230         * ext/dirac/gstdirac.cc:
21231         * ext/dirac/gstdiracdec.cc:
21232         * ext/dirac/gstdiracdec.h:
21233           Do something. Don't actually know if this works because I don't
21234           have a demuxer yet.
21235         * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
21236           Add channels=1 to caps returned from _getcaps().
21237         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
21238         (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
21239         (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
21240         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
21241         (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
21242         (gst_ogm_parse_change_state):
21243           Separate between audio/video so ogmaudioparse actually uses the
21244           audio pad templates. Both audio and video work now, including
21245           autoplugging. Also use sometimes-srcpad hack.
21246         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
21247           Handle events better. Don't hang on infinite loops.
21248         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
21249         (gst_avi_demux_init), (gst_avi_demux_reset),
21250         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
21251         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
21252         (gst_avi_demux_change_state):
21253         * gst/avi/gstavidemux.h:
21254           Improve A/V sync. Still not perfect.
21255         * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
21256         (gst_ebml_read_skip):
21257           Handle events better.
21258         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
21259         (gst_qtdemux_loop_header), (qtdemux_parse_trak),
21260         (qtdemux_audio_caps):
21261           Add IMA4. Improve event handling. Save offset after a seek when
21262           the headers are at the end of the file so that we don't end up in
21263           an infinite loop.
21264         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
21265           Add low-priority typefind support for files with no length.
21266
21267 2004-09-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21268
21269         * testsuite/multifilesink/Makefile.am:
21270         fix typo
21271
21272 2004-09-22  Julien MOUTTE  <julien@moutte.net>
21273
21274         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
21275         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
21276         mistakes from thaytan's patches.
21277
21278 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
21279
21280         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
21281           For completeness, XSync in the destroy function as xvimage does.
21282
21283 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
21284
21285         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
21286            Correct caps negotiation
21287         * gst/volume/gstvolume.c: (volume_chain_float),
21288         (volume_chain_int16):
21289            Modify debug output to be little more informative
21290         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
21291         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
21292         (gst_xvimagesink_xvimage_destroy):
21293           Add XSync calls after detaching from the shared memory segment to
21294           avoid a crash.
21295
21296 2004-09-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21297
21298         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
21299         (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
21300         * ext/vorbis/vorbis.c: (plugin_init):
21301         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
21302         (gst_vorbisenc_chain):
21303         * ext/vorbis/vorbisenc.h:
21304         remove explicit newmedia support from oggmux and vorbisenc
21305         add debug category to vorbisenc
21306         * gst/multifilesink/gstmultifilesink.c:
21307         (gst_multifilesink_class_init), (gst_multifilesink_init),
21308         (gst_multifilesink_dispose), (gst_multifilesink_set_location),
21309         (gst_multifilesink_set_property), (gst_multifilesink_next_file),
21310         (gst_multifilesink_handle_event), (gst_multifilesink_chain),
21311         (plugin_init):
21312         * gst/multifilesink/gstmultifilesink.h:
21313         add support for streamheader in multifilesink
21314
21315 2004-09-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21316
21317         * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
21318         (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
21319         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
21320           Prevent infinite loops. More correct error reporting.
21321         * gst/auparse/gstauparse.c: (gst_auparse_chain):
21322           Error out if negotiation fails.
21323         * gst/playback/gstplaybasebin.c: (setup_source),
21324         (gst_play_base_bin_change_state), (gst_play_base_bin_error),
21325         (gst_play_base_bin_found_tag):
21326           Error/tag forwarding. Pre-roll fixes for source errors on state
21327           changes (e.g. "file does not exist") to prevent hangs.
21328
21329 2004-09-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21330
21331         * testsuite/multifilesink/Makefile.am:
21332         * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
21333         (gst_newmedia_class_init), (gst_newmedia_init),
21334         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
21335         (newfile_signal), (test_signal), (main):
21336         * testsuite/multifilesink/multifilesrc_test.c: (main):
21337         * testsuite/multifilesink/oggtheora_test.c:
21338         (gst_newmedia_base_init), (gst_newmedia_class_init),
21339         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
21340         (test_format), (newfile_signal), (test_signal), (main):
21341         * testsuite/multifilesink/oggvorbis_test.c:
21342         (gst_newmedia_base_init), (gst_newmedia_class_init),
21343         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
21344         (test_format), (newfile_signal), (test_signal), (main):
21345         * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
21346         (gst_newmedia_class_init), (gst_newmedia_init),
21347         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
21348         (newfile_signal), (test_signal), (main):
21349         New media tests
21350
21351 2004-09-20  Christian Schaller <christian@fluendo.com>
21352
21353         * Fix mikmod license to LGPL as they have relicensed
21354         * Move Dirac and Effectv into LGPL section of README_license
21355
21356 2004-09-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21357
21358         * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
21359         (gst_mad_change_state):
21360           Allow for mp3 rate/channels changes. However, only very
21361           conservatively. Reason that we *have* to enable this is smiply
21362           because the mad find_sync() function is not good enough, it will
21363           regularly sync on random data as valid frames and therefore make
21364           us provide random caps as *final* caps of the stream. The best fix
21365           I could think of is to simply require several of the same stream
21366           changes in a row before we change caps.
21367           The actual testcase that works now is #
21368         * ext/ogg/Makefile.am:
21369         * ext/ogg/gstogg.c: (plugin_init):
21370         * ext/ogg/gstogmparse.c:
21371           OGM support (video only for now; I need an audio sample file).
21372         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
21373         (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
21374         (gst_asf_demux_add_video_stream):
21375           WMV extradata.
21376         * gst/playback/gstplaybasebin.c: (unknown_type):
21377           Don't error out on single unknown-types after all. It's wrong.
21378           If we found type of video and audio but not of a subtitle stream,
21379           it will still error out (which is unwanted). Will find a better fix
21380           later on.
21381         * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
21382         (ogmaudio_type_find), (plugin_init):
21383           OGM support.
21384
21385 2004-09-20  Johan Dahlin  <johan@gnome.org>
21386
21387         * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
21388         after setting caps.
21389
21390 2004-09-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21391
21392         * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
21393         * gst/wavenc/gstwavenc.h:
21394         Added newmedia support to wavenc
21395
21396 2004-09-17  Wim Taymans  <wim@fluendo.com>
21397
21398         * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
21399         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
21400         (gst_fdset_fd_can_write), (gst_fdset_wait):
21401         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
21402         (gst_multifdsink_init), (gst_multifdsink_add),
21403         (gst_multifdsink_remove), (gst_multifdsink_get_stats),
21404         (gst_multifdsink_remove_client_link),
21405         (gst_multifdsink_client_queue_buffer),
21406         (gst_multifdsink_handle_client_write),
21407         (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
21408         (gst_multifdsink_close), (gst_multifdsink_change_state):
21409         * gst/tcp/gstmultifdsink.h:
21410         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
21411         (gst_tcpserversink_removed):
21412         Small cleanups in fdset.c
21413         Use a hastable to map fd to the client structure for faster
21414         lookup in _remove and get_stats.
21415         Added virtual function to close the fds.
21416         Handle clients even when the select/poll call was unblocked because
21417         of a command.
21418         Implement syncing to keyframe in the recovery procedure.
21419
21420 2004-09-16 Iain <iaingnome@gmail.com>
21421
21422         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
21423         try caps.
21424
21425 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21426
21427         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
21428           Caps are only set if the type of the stream is unknown, but this
21429           is initialized in ->init_stream(), so set to UNKNOWN after calling
21430           ->init_stream() so that capsnego starts.
21431
21432 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21433
21434         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21435         (gst_avi_demux_stream_data):
21436           Just hardcode for raw audio then. AVI audio sucks.
21437
21438 2004-09-15  Arwed v. Merkatz  <v.merkatz@gmx.net>
21439
21440         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
21441         * gst/matroska/matroska-mux.c: (audiosink_templ),
21442         (gst_matroska_mux_audio_pad_link):
21443         * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
21444         Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
21445
21446 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21447
21448         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21449         (gst_avi_demux_stream_data):
21450           Try to fix a/v sync issues.
21451
21452 2004-09-15  David Schleef  <ds@schleef.org>
21453
21454         * configure.ac: remove NASM check, since we don't use it.  Update
21455         dirac check to 0.4
21456         * ext/dirac/gstdiracdec.cc: update to current 0.4 API
21457         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
21458         Initialized variables.
21459         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
21460         (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
21461         (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
21462         SVQ3 format
21463
21464 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21465
21466         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21467         (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
21468         * gst/avi/gstavidemux.h:
21469           Fix for compressed audio (mp3) timestamp generation. How did this
21470           ever work?
21471
21472 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21473
21474         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
21475           Volume is a double not a float.
21476
21477 2004-09-15  Wim Taymans  <wim@fluendo.com>
21478
21479         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
21480         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
21481         Don't close the fd in multifdsink as we didn't open it in the
21482         first place. Some cleanups.
21483
21484 2004-09-15  Wim Taymans  <wim@fluendo.com>
21485
21486         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
21487         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21488         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21489         Fix the case where the muxer would mark pages as delta
21490         frames when they are not (vorbis only ogg).
21491
21492 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21493
21494         * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
21495         (gst_play_base_bin_change_state):
21496           Handle the case where we failed to setup a clear pipeline. This
21497           will throw an error (or EOS, another nice case) and if you don't
21498           catch that, the app will wait for the signal forever (and thus
21499           hang).
21500
21501 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21502
21503         * ext/gnomevfs/gstgnomevfssink.c:
21504         (gst_gnomevfssink_uri_get_protocols):
21505         * ext/gnomevfs/gstgnomevfssrc.c:
21506         (gst_gnomevfssrc_uri_get_protocols):
21507         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
21508         * ext/gnomevfs/gstgnomevfsuri.h:
21509           Use _uri_new() instead of _open(), so it doesn't take as long and
21510           Christophe's computer won't hang.
21511         * gst/playback/gstplaybasebin.c: (unknown_type):
21512           Throw error on unknown media type, so apps actually display it.
21513
21514 2004-09-14  Brian Cameron  <brian.cameron@sun.com
21515
21516         * tools/gst-launch-ext-m.m:  Changed ~ to $ENV{HOME} to allow
21517           this script to work on Solaris since bash shell handles echo
21518           differenly than bash.
21519
21520 2004-09-17  Wim Taymans  <wim@fluendo.com>
21521
21522         * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
21523         (setup_source), (gst_play_base_bin_set_property),
21524         (gst_play_base_bin_add_element):
21525         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
21526         Some more work on making sure seeking pauses the pipeline and
21527         that changing the uri actually does something.
21528
21529 2004-09-17  Wim Taymans  <wim@fluendo.com>
21530
21531         * gst/tcp/gstfdset.c: (gst_fdset_wait):
21532         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
21533         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
21534         (gst_tcpserversink_close):
21535         Be a bit more paranoid when freeing memory.
21536
21537 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21538
21539         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
21540         (qtdemux_parse_trak):
21541           Don't crash by dividing by zero (see sample movie in #126922).
21542
21543 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21544
21545         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
21546           Don't touch non-existing data (fixes crash on file in #140147).
21547
21548 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21549
21550         * gst/playback/gstplaybasebin.c:
21551         (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
21552           Handle double disposals, and proper change of URIs.
21553
21554 2004-09-13  Martin Eikermann <meiker@upb.de>
21555
21556         * gst/mpegstream/gstmpegparse.c:
21557           fix synchronistation for streams recorded from digital PCR
21558           fixes bug #119376
21559
21560 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21561
21562         * ext/gnomevfs/Makefile.am:
21563         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
21564         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
21565         (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
21566         (gst_gnomevfssink_uri_get_type),
21567         (gst_gnomevfssink_uri_get_protocols),
21568         (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
21569         (gst_gnomevfssink_uri_handler_init),
21570         (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
21571         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
21572         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
21573         (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
21574         (gst_gnomevfssrc_uri_get_type),
21575         (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
21576         (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
21577         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
21578         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
21579         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
21580         * ext/gnomevfs/gstgnomevfsuri.h:
21581           Add URI support to Gnome-VFS plugins. Tries to load a fixed list
21582           of fake URIs to see which this version of Gnome-VFS likes, and
21583           uses that for the Gst-URI interface. Makes playbin support http://
21584           streams. Also fix up some stupid behaviour in gnomevfssrc.
21585
21586 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21587
21588         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
21589         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
21590         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
21591         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
21592           Update mixer (to sync with other sessions) if we try to obtain
21593           a new value. This makes alsamixer work accross applications.
21594         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
21595           Only call sync functions if we're running, else alsalib asserts.
21596         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
21597           Sometimes fails to compile. Possibly a gcc bug.
21598         * gst/playback/gstplaybin.c: (gen_video_element),
21599         (gen_audio_element):
21600           Add a reference to an application-provided object, because we lose
21601           this same reference if we add it to the bin. If we don't do this,
21602           we can only use this object once and thus crash if we go from
21603           ready to playing, back to ready and back to playing again.
21604           Also add an audioscale element because several cheap soundcards -
21605           like mine - don't support all samplerates.
21606         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
21607         (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
21608           Fix wrong order or PAR calls. Makes automatically obtained PAR
21609           from the X server atually being used.
21610
21611 2004-09-12  David Schleef  <ds@schleef.org>
21612
21613         Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
21614         #151887, #152102, #152247.
21615         * examples/indexing/indexmpeg.c: 64-bit warning fixes.
21616         * examples/seeking/cdparanoia.c: same
21617         * examples/seeking/cdplayer.c: same
21618         * examples/seeking/seek.c: same
21619         * examples/seeking/spider_seek.c: same
21620         * examples/seeking/vorbisfile.c: same
21621         * examples/stats/mp2ogg.c: same
21622         * ext/esd/esdsink.c: (gst_esdsink_class_init),
21623         (gst_esdsink_dispose): Dispose of element properly.
21624         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
21625         fixes.
21626         * ext/nas/nassink.c: (gst_nassink_class_init),
21627         (gst_nassink_dispose): Dispose of element correctly.
21628         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
21629         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
21630         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
21631         Fix 64-bit warning.
21632         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
21633         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
21634         Fix 64-bit warning.
21635
21636 2004-09-12  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
21637
21638         * configure.ac : change speex detection as 1.1.6 now uses
21639           .pc/pkg-config and they changed their headers location.
21640
21641 2004-09-09  Arwed v. Merkatz  <v.merkatz@gmx.net>
21642
21643         * gst/matroska/matroska-mux.h:
21644         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
21645         (gst_matroska_mux_start), (gst_matroska_mux_finish),
21646         (gst_matroska_mux_write_data):
21647           Write multiple blocks/frames per cluster.
21648                 Write meta-seek information (seek heads).
21649
21650 2004-09-09  Scott Wheeler <wheeler@kde.org>
21651
21652         * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
21653         (gst_play_bin_set_property), (gst_play_bin_get_property),
21654         (gen_audio_element), (gen_audio_element):
21655           Add a volume element / property to the pipeline.
21656
21657 2004-09-07  Wim Taymans  <wim@fluendo.com>
21658
21659         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
21660         Copy timestamps from the master pad to the output buffers.
21661
21662 2004-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21663
21664         * ext/raw1394/gstdv1394src.c:
21665           throw errors when applicable
21666
21667 2004-09-01  Arwed v. Merkatz  <v.merkatz@gmx.net>
21668
21669         * gst/matroska/ebml-ids.h:
21670         * gst/matroska/ebml-read.c: (gst_ebml_read_date):
21671         * gst/matroska/ebml-write.c: (gst_ebml_write_date):
21672         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
21673           automatically convert unix time <-> ebml time when reading/writing
21674           a date, use gst_ebml_write_uint to write CUETIME,
21675           not gst_ebml_write_date.
21676         * gst/matroska/matroska-ids.h:
21677         * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
21678         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
21679         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
21680         (gst_matroska_mux_write_data):
21681           Write track and segment UIDs, write muxing date, write
21682           TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
21683           Create cues for audio only files.
21684
21685 2004-08-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21686
21687         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
21688         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
21689           Re-commit ALSA switches.
21690         * gst/adder/gstadder.c: (gst_adder_loop):
21691           64-bit fix (#151416).
21692         * gst/debug/progressreport.c: (gst_progressreport_report):
21693           64-bit fix (#151419).
21694         * gst/matroska/matroska-demux.c:
21695         (gst_matroska_demux_parse_contents):
21696           64-bit fix (#151420).
21697         * gst/playback/test3.c: (update_scale):
21698           64-bit fix (#151421).
21699
21700 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
21701
21702         * configure.ac:
21703           bump nano to cvs
21704
21705 === release 0.8.4 ===
21706
21707 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
21708
21709         * configure.ac: releasing 0.8.4, "Alias"
21710
21711 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
21712
21713         * ext/theora/Makefile.am:
21714           fix makefile.  Fixes #151462.
21715
21716 2004-08-30  Wim Taymans  <wim@fluendo.com>
21717
21718         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
21719         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21720         (gst_multifdsink_remove_client_link),
21721         (gst_multifdsink_client_queue_buffer),
21722         (gst_multifdsink_handle_client_write):
21723         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
21724         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
21725         Fix some memory leaks.
21726
21727 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
21728
21729         Patch by: David Schleef
21730
21731         * configure.ac:
21732         * sys/Makefile.am:
21733           rename our detection macro for V4L2.  Fixes #151236.
21734
21735 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
21736
21737         Patch by: David Schleef
21738
21739         * configure.ac:
21740           check to define LAMEPRESET.  Fixes #151232.
21741
21742 2004-08-27  David Schleef  <ds@schleef.org>
21743
21744         * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
21745         (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
21746         (gst_glimagesink_fixate):  Move local variable declarations to
21747         make gcc-2.95 happy.
21748
21749 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
21750
21751         * configure.ac:
21752           bump nano for prerelease
21753
21754 2004-08-27  David Schleef  <ds@schleef.org>
21755
21756         * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
21757         * sys/sunaudio/gstsunaudiosrc.c:
21758         * sys/sunaudio/gstsunaudiosrc.h:
21759
21760 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
21761
21762         * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
21763         handle EOS correctly
21764         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
21765         * gst/matroska/matroska-mux.h:
21766         added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
21767         VFW compatibility mode
21768
21769 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
21770
21771         patch by: Zaheer Abbas Merali
21772
21773         * ext/ogg/gstoggmux.c:
21774         * ext/vorbis/vorbisenc.c:
21775         * ext/vorbis/vorbisenc.h:
21776           handle NEWMEDIA
21777
21778 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
21779
21780         * gst/matroska/ebml-write.c: (gst_ebml_write_float),
21781         fix byte order reversion on little endian machines.
21782         * gst/matroska/matroska-mux.c: (audiosink_templ),
21783         (gst_matroska_mux_audio_pad_link):
21784         add TTA codec to the list of supported codecs.
21785         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
21786         (gst_matroska_mux_start), (gst_matroska_mux_finish),
21787         (gst_matroska_mux_write_data):
21788         * gst/matroska/matroska-mux.h:
21789         write segment duration correctly, write muxing app string, fixes bugs
21790         #140897 and #140898.
21791         * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
21792         wait for all pads to be negotiated before starting to mux.
21793
21794 2004-08-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21795
21796         * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
21797         * ext/lame/gstlame.h:
21798         Added new media support to lame
21799
21800 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
21801
21802         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
21803         send vorbis headers at the beginning of a stream, fixes bug #141554.
21804         Interpret BLOCKDURATION and set buffer duration accordingly, fixes
21805         bug #148950.
21806         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
21807         (gst_matroska_demux_plugin_init):
21808         * gst/matroska/matroska-ids.h:
21809         enable demuxing of TTA audio streams, fixes bug #148951.
21810         * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
21811         enable typefinding for TTA audio files, fixes bug #148711.
21812         * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
21813         set XVID_LOWDELAY flag for decoding so xvid always returns an image,
21814         fixes playback of packed bitstream and xvid with bframes, bug #135407.
21815
21816 2004-08-24  Sebastien Cote  <sc5@hermes.usherb.ca>
21817
21818         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
21819         (gst_riff_read_element_data), (gst_riff_read_seek),
21820         (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
21821         #144616, patch reviewed by Ronald and committed by Christophe Fergeau
21822         <teuf@gnome.org>
21823
21824 2004-08-23 Iain <iaingnome@gmail.com>
21825
21826         * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
21827         tags. They appear to be handled differently to normal.
21828         (tag_list_to_id3_tag_foreach): Ditto.
21829
21830 2004-08-22  Wim Taymans  <wim@fluendo.com>
21831
21832         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21833         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21834         Make sure we never send -1 granulepos.
21835
21836 2004-08-20  Wim Taymans  <wim@fluendo.com>
21837
21838         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21839         (gst_ogg_mux_loop):
21840         I will accept bitchslappings with non sharp objects.
21841
21842 2004-08-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21843
21844         * configure.ac:
21845         Clean up the test for lame presets
21846
21847 2004-08-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21848
21849         * configure.ac:
21850         * ext/lame/Makefile.am:
21851         * ext/lame/gstlame.c: (gst_lame_class_init),
21852         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
21853         Only enable lame presets if version of lame has presets in API
21854
21855 2004-08-19  Jan Schmidt  <thaytan@mad.scientist.com>
21856         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
21857         * gst/udp/gstudpsrc.h:
21858           Don't call gst_pad_push in a get function. Fixes #150449
21859
21860 2004-08-18  Wim Taymans  <wim@fluendo.com>
21861
21862         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
21863         (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
21864         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
21865         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21866         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21867         (gst_fdset_wait):
21868         * gst/tcp/gstfdset.h:
21869         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21870         (gst_multifdsink_client_queue_buffer),
21871         (gst_multifdsink_handle_client_write):
21872         * gst/tcp/gstmultifdsink.h:
21873         Some extra checks in gstfdset.
21874         Only use send() when the fd is a socket. Don't try to
21875         read from write only fds.
21876
21877 2004-08-18  Wim Taymans  <wim@fluendo.com>
21878
21879         * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
21880         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
21881         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21882         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21883         (gst_fdset_wait):
21884         Add more locking and bounds checking.
21885
21886 2004-08-18  Wim Taymans  <wim@fluendo.com>
21887
21888         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
21889         Realloc test fdset in the lock and right before starting
21890         the poll call. Bump the limit to 4096.
21891
21892 2004-08-17  David Schleef  <ds@schleef.org>
21893
21894         * sys/sunaudio/Makefile.am:
21895         * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
21896         of rates and channels.  Make debugging less obnoxious.
21897
21898         Patch from Balamurali Viswanathan implementing a mixer for
21899         Sun audio.  (bug #144091):
21900         * sys/sunaudio/gstsunelement.c:
21901         * sys/sunaudio/gstsunelement.h:
21902         * sys/sunaudio/gstsunmixer.c:
21903         * sys/sunaudio/gstsunmixer.h:
21904
21905 2004-08-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21906
21907         * gst/audioscale/gstaudioscale.c:
21908         * gst/audioscale/gstaudioscale.h:
21909         made audioscale resample from any sample rate to any sample rate
21910
21911 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21912
21913         * ext/libpng/gstpngdec.c:
21914           error out on unsupported types
21915
21916 2004-08-17  Iain <iaingnome@gmail.com>
21917
21918         * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
21919         mid_side and loose_mid_side properties if its a stereo stream.
21920
21921 2004-08-17  Wim Taymans  <wim@fluendo.com>
21922
21923         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
21924         (theora_get_formats), (theora_dec_src_convert),
21925         (theora_dec_sink_convert), (theora_dec_src_query),
21926         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
21927         Add a debug line.
21928
21929 2004-08-17  Wim Taymans  <wim@fluendo.com>
21930
21931         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
21932         (gst_ogg_pad_push):
21933         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
21934         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
21935         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
21936         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21937         Mark delta units in the muxer.
21938         Try to decode the packet after an out-of-sync error from
21939         libogg.
21940
21941 2004-08-17  Wim Taymans  <wim@fluendo.com>
21942
21943         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
21944         (gst_multifdsink_init), (gst_multifdsink_add),
21945         (gst_multifdsink_client_queue_buffer),
21946         (gst_multifdsink_set_property), (gst_multifdsink_get_property):
21947         * gst/tcp/gstmultifdsink.h:
21948         Added option to send a keyframe to clients as the first buffer.
21949         Make timeout property writable.
21950
21951 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21952
21953         patch by: Wim Taymans
21954
21955         * gst/tcp/gstfdset.c:
21956         * gst/tcp/gstmultifdsink.c:
21957           fix index comparison, should include 0
21958
21959 2004-08-16  Wim Taymans  <wim@fluendo.com>
21960
21961         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
21962         (gst_fdset_add_fd), (gst_fdset_remove_fd),
21963         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21964         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21965         (gst_fdset_wait):
21966           copy when reallocing for poll so the select arguments don't get
21967           changed during the call
21968
21969 2004-08-16  Wim Taymans  <wim@fluendo.com>
21970
21971         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
21972         (gst_theora_enc_class_init), (theora_enc_sink_link),
21973         (theora_buffer_from_packet), (theora_enc_chain):
21974         Fix bug where buffers were not marked as keyframes
21975         correctly.
21976
21977 2004-08-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21978
21979         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
21980         (gst_lame_preset_get_type), (gst_lame_class_init):
21981         describe the enum values for vbr mode and presets more verbosely
21982
21983 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21984
21985         * ext/lame/gstlame.c: (gst_lame_mode_get_type),
21986         (gst_lame_quality_get_type), (gst_lame_padding_get_type),
21987         (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
21988         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
21989         * ext/lame/gstlame.h:
21990         add preset property to lame so it can use lame presets
21991
21992 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21993
21994         * ext/lame/gstlame.c: (gst_lame_get_property):
21995         whoops forgot break, thanks teuf
21996
21997 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21998
21999         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
22000         (gst_lame_class_init), (gst_lame_src_getcaps),
22001         (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
22002         (gst_lame_get_property), (gst_lame_setup):
22003         * ext/lame/gstlame.h:
22004         fix lame's broken vbr stuff, allow it to resample if need be, and also
22005         make xing header optional
22006
22007 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22008
22009         * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
22010         added getcaps function so samplerate doesnt get fixated to silly values
22011
22012 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22013
22014         * ext/lame/gstlame.c: (gst_lame_src_link):
22015         revert previous fix
22016
22017 2004-08-12  Johan Dahlin  <johan@gnome.org>
22018
22019         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
22020         checks. Doesn't matter what state we are in. Interfaces are a
22021         compile time thing, not runtime. It also broke the python bindings.
22022
22023 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22024
22025         * ext/lame/gstlame.c: (gst_lame_src_link):
22026         made source pad link function check if sinkpad is ok..fixes the problem
22027         where core fixates the output rate of lame stupidly
22028
22029 2004-08-12  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
22030
22031         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
22032         * sys/v4l/v4l_calls.c:
22033         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
22034           fix fixate function to handle nonsimple caps.
22035           remove bogus check in _link
22036           cleanups
22037
22038 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22039
22040         * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
22041         set default compression ratio parameter to 0.0 so bitrate parameter
22042         works :)
22043
22044 2004-08-11  David Schleef  <ds@schleef.org>
22045
22046         * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
22047
22048 2004-08-11  David Schleef  <ds@schleef.org>
22049
22050         * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
22051         before.
22052
22053 2004-08-11  David Schleef  <ds@schleef.org>
22054
22055         * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
22056
22057 2004-08-11  David Schleef  <ds@schleef.org>
22058
22059         * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
22060           license field
22061         * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
22062         * gst-libs/gst/video/gstvideosink.c: Change copyright block to
22063           LGPL.
22064         * gst/auparse/gstauparse.c: Fix plugin license field.
22065         * gst/monoscope/gstmonoscope.c: Fix plugin license field.
22066         * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
22067         * gst/rtp/gstrtp.c: Fix plugin license field.
22068
22069 2004-08-11  Wim Taymans  <wim@fluendo.com>
22070
22071         * gst/tcp/Makefile.am:
22072         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
22073         (ensure_size), (gst_fdset_new), (gst_fdset_free),
22074         (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
22075         (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
22076         (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
22077         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
22078         (gst_fdset_fd_can_write), (gst_fdset_wait):
22079         * gst/tcp/gstfdset.h:
22080         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
22081         (gst_multifdsink_class_init), (gst_multifdsink_init),
22082         (gst_multifdsink_add), (gst_multifdsink_remove),
22083         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
22084         (gst_multifdsink_remove_client_link),
22085         (gst_multifdsink_handle_client_read),
22086         (gst_multifdsink_client_queue_data),
22087         (gst_multifdsink_client_queue_caps),
22088         (gst_multifdsink_client_queue_buffer),
22089         (gst_multifdsink_handle_client_write),
22090         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
22091         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
22092         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
22093         (gst_multifdsink_close):
22094         * gst/tcp/gstmultifdsink.h:
22095         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
22096         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
22097         (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
22098         (gst_tcpserversink_close):
22099         * gst/tcp/gsttcpserversink.h:
22100         Abstracted away the select call, implemented poll (yes we ran into
22101         the 1024 limit in production).
22102
22103 2004-08-11  Thomas Vander Stichele  <thomas at apestaart dot org>
22104
22105         * gst/tcp/gsttcp.c:
22106         * gst/tcp/gsttcpplugin.c:
22107           improve debuggging, remove assert
22108
22109 2004-08-10  Wim Taymans  <wim@fluendo.com>
22110
22111         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
22112         (gst_client_status_get_type), (gst_multifdsink_class_init),
22113         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
22114         (gst_multifdsink_handle_client_read),
22115         (gst_multifdsink_handle_client_write),
22116         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
22117         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
22118         (gst_multifdsink_get_property):
22119         * gst/tcp/gstmultifdsink.h:
22120         * gst/tcp/gsttcp-marshal.list:
22121         Starting to prepare for specifying buffer time in other units
22122         than buffers. Expose remove reason in signal.
22123
22124 2004-08-10  Wim Taymans  <wim@fluendo.com>
22125
22126         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
22127         (gst_multifdsink_remove), (gst_multifdsink_clear),
22128         (gst_multifdsink_remove_client_link),
22129         (gst_multifdsink_handle_client_read),
22130         (gst_multifdsink_client_queue_data),
22131         (gst_multifdsink_client_queue_buffer),
22132         (gst_multifdsink_handle_client_write),
22133         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
22134         (gst_multifdsink_chain), (gst_multifdsink_close):
22135         * gst/tcp/gstmultifdsink.h:
22136         Added more debugging info. Changed the way clients are
22137         removed from the lists. Fixed a bug where a bad file descriptor
22138         could cause many clients to be removed.
22139
22140 2004-08-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22141
22142         * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
22143           allow all pixel-aspect-ratios, not just 1:1
22144
22145 2004-08-09  David Schleef  <ds@schleef.org>
22146
22147         * sys/glsink/ARB_multitexture.h:  Remove old files.
22148         * sys/glsink/EXT_paletted_texture.h:
22149         * sys/glsink/NV_register_combiners.h:
22150         * sys/glsink/gstgl_nvimage.c:
22151         * sys/glsink/gstgl_pdrimage.c:
22152         * sys/glsink/gstgl_rgbimage.c:
22153         * sys/glsink/gstglsink.c:
22154         * sys/glsink/gstglsink.h:
22155         * sys/glsink/gstglxwindow.c:
22156         * sys/glsink/regcomb_yuvrgb.c:
22157
22158 2004-08-09  David Schleef  <ds@schleef.org>
22159
22160         Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
22161         GL sink plugin.  (Bug #147302)
22162
22163         * configure.ac: Test for OpenGL
22164         * sys/Makefile.am: Use test for OpenGL
22165         * sys/glsink/Makefile.am:
22166         * sys/glsink/glimagesink.c: rewrite
22167         * sys/glsink/glimagesink.h: rewrite
22168
22169 2004-08-09  David Schleef  <ds@schleef.org>
22170
22171         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init):  Only allow
22172         sane framerates.
22173         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
22174         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
22175         * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
22176
22177 2004-08-09  Wim Taymans  <wim@fluendo.com>
22178
22179         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22180         (gst_multifdsink_add), (gst_multifdsink_get_stats),
22181         (gst_multifdsink_client_remove),
22182         (gst_multifdsink_handle_client_read),
22183         (gst_multifdsink_handle_client_write),
22184         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22185         Do a bit more logging, make the client_read code more robust.
22186
22187 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22188
22189         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
22190         (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
22191         (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
22192         (gst_jpegdec_init), (gst_jpegdec_chain):
22193         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
22194         (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
22195           cleanups, debugging fixes and memleak plugging
22196
22197 2004-08-09  Wim Taymans  <wim@fluendo.com>
22198
22199         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
22200         (theora_get_formats), (theora_dec_src_convert),
22201         (theora_dec_sink_convert), (theora_dec_src_query),
22202         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
22203         (theora_dec_change_state):
22204         Don't crash on missing header packets.
22205
22206 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22207
22208         * po/LINGUAS:
22209         * po/sq.po:
22210           Added Albanian translation (Laurent Dhima)
22211         * po/cs.po:
22212           updated
22213
22214 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22215
22216         * ext/lame/gstlame.c:
22217           fix/add debugging
22218
22219 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22220
22221         * sys/ximage/ximagesink.c:
22222         * sys/xvimage/xvimagesink.c:
22223           assign all TOO_LAZY's to a real category.  Thanks to Warthy Warthog.
22224
22225 2004-08-06  Wim Taymans  <wim@fluendo.com>
22226
22227         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22228         (gst_multifdsink_add), (gst_multifdsink_get_stats),
22229         (gst_multifdsink_client_remove),
22230         (gst_multifdsink_handle_client_read),
22231         (gst_multifdsink_handle_client_write),
22232         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22233         Make sure we don't try to read more from a client that what
22234         ioctl says us or we deadlock.
22235
22236 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
22237
22238         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
22239         (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
22240         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
22241           decouple running_time and n_frames so it can handle changing
22242           framerate while running
22243
22244 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
22245
22246         * po/nl.po:
22247         * po/sv.po:
22248           updated translations
22249
22250 2004-08-04  Benjamin Otte  <otte@gnome.org>
22251
22252         * gst/videotestsrc/gstvideotestsrc.c:
22253         (gst_videotestsrc_get_capslist), (generate_capslist),
22254         (plugin_init):
22255           generate the list of supported caps at startup and reuse it instead
22256           of always generating it
22257
22258 2004-07-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22259
22260         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
22261           whoops, last checkin broke normal build
22262
22263 2004-08-03  Benjamin Otte  <otte@gnome.org>
22264
22265         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
22266         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
22267         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
22268         (gst_alsa_mixer_get_option):
22269         * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
22270         (dvdnavsrc_print_event):
22271         * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
22272         * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
22273         (gst_ogg_mux_pad_unlink):
22274         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
22275         (gst_multipart_mux_pad_unlink):
22276         * gst/videofilter/gstvideobalance.c:
22277         (gst_videobalance_colorbalance_set_value):
22278         * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
22279         (gst_videomixer_pad_unlink):
22280         * po/uk.po:
22281         * sys/oss/gstossmixer.c:
22282         * sys/v4l/gstv4lcolorbalance.c:
22283         * sys/v4l/gstv4ltuner.c:
22284         * sys/v4l/v4lsrc_calls.c:
22285         * sys/v4l2/gstv4l2colorbalance.c:
22286         * sys/v4l2/gstv4l2tuner.c:
22287           compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
22288
22289 2004-08-03  Benjamin Otte  <otte@gnome.org>
22290
22291         * examples/dynparams/filter.c: (ui_control_create):
22292         * examples/gstplay/player.c: (print_tag):
22293         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
22294         * ext/gdk_pixbuf/gstgdkanimation.c:
22295         (gst_gdk_animation_iter_may_advance):
22296         * ext/jack/gstjack.c: (gst_jack_request_new_pad):
22297         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
22298         (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
22299         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
22300         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
22301         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
22302         * gst-libs/gst/media-info/media-info-test.c: (print_tag):
22303         * gst/sine/demo-dparams.c: (main):
22304         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
22305         * testsuite/alsa/formats.c: (create_pipeline):
22306         * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
22307           fixes for G_DISABLE_ASSERT and friends
22308         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
22309         (mp3_type_frame_length_from_header), (mp3_type_find),
22310         (plugin_init):
22311           require mp3 typefinding to have at least MIN_HEADERS valid headers
22312           add typefinding for AAC adts files
22313
22314 2004-08-04  Jan Schmidt  <thaytan@mad.scientist.com>
22315
22316         * sys/ximage/ximagesink.c:
22317         (gst_ximagesink_calculate_pixel_aspect_ratio):
22318         * sys/xvimage/xvimagesink.c:
22319         (gst_xvimagesink_calculate_pixel_aspect_ratio):
22320         Make sure we calculate pixel-aspect-ratio using floating point maths
22321
22322 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
22323
22324         * po/uk.po:
22325           updated translation
22326
22327 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
22328
22329         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
22330         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
22331           add debugging for display PAR calculation
22332
22333 2004-08-02  David Schleef  <ds@schleef.org>
22334
22335         * configure.ac: Fix mikmod CFLAGS.
22336
22337 2004-07-27  Benjamin Otte  <otte@gnome.org>
22338
22339         * gst/audioscale/gstaudioscale.c:
22340         - fix templates to only support S16, it's the only format that works
22341         - make caps nego code use try_set_caps_nonfixed and fixation instead
22342         of try_set_caps twice, which is not nice for autopluggers
22343         - change rank to secondary, so autopluggers can pick it up after
22344         audioconvert
22345
22346 2004-08-02  Iain <iain@prettypeople.org>
22347
22348         * gst/interleave/interleave.c (interleave_init),
22349         (interleave_request_new_pad),
22350         (interleave_pad_removed),
22351         (interleave_buffered_loop): Use the real pad count, not the artificial
22352         one.
22353
22354 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22355
22356         * configure.ac: bump nano back to development
22357
22358 === release 0.8.3 ===
22359
22360 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22361
22362         * configure.ac: releasing 0.8.3, "Water"
22363
22364 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22365
22366         * sys/xvimage/xvimagesink.c:
22367         (gst_xvimagesink_calculate_pixel_aspect_ratio),
22368         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
22369         (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
22370         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
22371         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
22372         * sys/xvimage/xvimagesink.h:
22373           apply similar PAR fixes as to ximagesink
22374
22375 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22376
22377         patch from: Benjamin Otte
22378
22379         * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
22380           add link function to lame.  Fixes #148986.
22381
22382 2004-08-02  Johan Dahlin  <johan@gnome.org>
22383
22384         * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
22385         fix debugging log
22386
22387 2004-07-30  David Schleef  <ds@schleef.org>
22388
22389         * gst/videomixer/Makefile.am: Fix things that should have been
22390         fixed in the last checkin.
22391
22392 2004-07-30  David Schleef  <ds@schleef.org>
22393
22394         * gst/multipart/Makefile.am: Fix things that should have been
22395         fixed in the last checkin.
22396
22397 2004-07-30  David Schleef  <ds@schleef.org>
22398
22399         * testsuite/multifilesink/Makefile.am: Fix unused variable.
22400
22401 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22402
22403         * configure.ac:
22404           bump nano for prerelease
22405         * po/af.po:
22406         * po/az.po:
22407         * po/cs.po:
22408         * po/en_GB.po:
22409         * po/hu.po:
22410         * po/nl.po:
22411         * po/sr.po:
22412         * po/sv.po:
22413         * po/uk.po:
22414           updates
22415
22416 2004-07-30  Wim Taymans  <wim@fluendo.com>
22417
22418         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22419         (gst_multifdsink_add), (gst_multifdsink_remove),
22420         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
22421         (gst_multifdsink_client_remove),
22422         (gst_multifdsink_handle_client_write),
22423         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22424         * gst/tcp/gstmultifdsink.h:
22425         Recover from a select with a bad file descriptor by removing
22426         the client.
22427
22428 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22429
22430         * configure.ac:
22431           fix requirement of core
22432         * gst-libs/gst/play/play.c: (gst_play_error_plugin),
22433         (gst_play_pipeline_setup):
22434           don't use colorspace element.  do use hermescolorspace element.
22435           make macro to get a colorspace element.
22436           mark strings for translation.
22437         * po/POTFILES.in:
22438           add play.c
22439         * po/af.po:
22440         * po/az.po:
22441         * po/cs.po:
22442         * po/en_GB.po:
22443         * po/hu.po:
22444         * po/nl.po:
22445         * po/sr.po:
22446         * po/sv.po:
22447         * po/uk.po:
22448           update translations
22449
22450 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22451
22452         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
22453         fix default for newmedia flag
22454
22455 2004-07-30  Wim Taymans  <wim@fluendo.com>
22456
22457         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
22458         (gst_theora_dec_init), (theora_get_formats),
22459         (theora_dec_src_convert), (theora_dec_sink_convert),
22460         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22461         (theora_dec_chain), (theora_dec_set_property),
22462         (theora_dec_get_property):
22463         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
22464         (gst_theora_enc_class_init), (gst_theora_enc_init),
22465         (theora_enc_sink_link), (theora_enc_chain),
22466         (theora_enc_set_property), (theora_enc_get_property):
22467         Added cropping option to theora decoder.
22468         Added border option to theora encoder.
22469
22470 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22471
22472         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
22473         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
22474         (gst_pngenc_set_property):
22475         * ext/libpng/gstpngenc.h:
22476         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
22477
22478 2004-07-30  Wim Taymans  <wim@fluendo.com>
22479
22480         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
22481         (theora_enc_sink_link), (theora_enc_chain),
22482         (theora_enc_set_property), (theora_enc_get_property):
22483         Fix encoding of non-multiple-of-16 video.
22484
22485 2004-07-29  David Schleef  <ds@schleef.org>
22486
22487         * configure.ac: make test for audiofile more strict
22488
22489 2004-07-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22490
22491         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
22492           give different names to typefind functions
22493
22494 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
22495
22496         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
22497         (gst_ximagesink_calculate_pixel_aspect_ratio),
22498         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
22499         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
22500         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
22501         (gst_ximagesink_get_property), (gst_ximagesink_init):
22502         * sys/ximage/ximagesink.h:
22503           allocate PAR's dynamically.
22504           use autodetected PAR if no object-set PAR is given.
22505           add workaround for directfb's X not setting physical size.
22506           fix to xvimagesink will follow tomorrow.
22507
22508 2004-07-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22509
22510         * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
22511         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
22512         (gst_shout2send_get_type), (gst_shout2send_set_clock),
22513         (gst_shout2send_class_init), (gst_shout2send_init),
22514         (set_shout_metadata), (gst_shout2send_set_metadata),
22515         (gst_shout2send_chain), (gst_shout2send_set_property),
22516         (gst_shout2send_get_property), (gst_shout2send_connect),
22517         (gst_shout2send_change_state):
22518         * ext/shout2/gstshout2.h:
22519         - fix for sending mp3 audio to icecast2 server, if pad link function not
22520         called before PAUSED state
22521         - added option to use GStreamer clock sync (as opposed to libshout's own sync)
22522         - added tagging support for mp3 audio broadcasted
22523         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
22524         debug info
22525
22526 2004-07-28  Wim Taymans  <wim@fluendo.com>
22527
22528         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
22529         (gst_ogg_demux_push):
22530         Return query failure when we don't know the length of
22531         an ogg stream insteda of returning TRUE with a bogus value.
22532
22533 2004-07-28  Wim Taymans  <wim@fluendo.com>
22534
22535         * ext/theora/theoradec.c: (theora_get_formats),
22536         (theora_dec_src_convert), (theora_dec_sink_convert),
22537         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22538         (theora_dec_chain):
22539         Don't screw up the 1 Chroma for 1 luma sample situation when we
22540         have an odd offset/width by adding a black border in those cases.
22541
22542 2004-07-28  Wim Taymans  <wim@fluendo.com>
22543
22544         * ext/theora/theoradec.c: (theora_get_formats),
22545         (theora_dec_src_convert), (theora_dec_sink_convert),
22546         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22547         (theora_dec_chain):
22548         * ext/theora/theoraenc.c: (theora_enc_sink_link):
22549         Added first attempt at cropping of the image as required by the
22550         theora spec. We need more properties in the caps (offset_x,
22551         offset_y,stride) to implement this correctly.
22552
22553 2004-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
22554
22555         * ext/dvdnav/README:
22556           Update the README to use dvddemux
22557         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
22558           Ensure getcaps returns a subset of the template caps
22559         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
22560         (gst_mpeg2subt_init):
22561           Ensure getcaps returns a subset of the template caps
22562         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
22563         (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
22564         (gst_dvd_demux_get_subpicture_stream),
22565         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
22566         * gst/mpegstream/gstdvddemux.h:
22567           Set the explicit caps on the current_video pad before pushing
22568           anything
22569         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
22570         (gst_mpeg_demux_get_audio_stream):
22571           Free caps used to gst_pad_set_explicit_caps, which takes a const
22572           GstCaps *
22573
22574 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
22575
22576         * configure.ac: update GStreamer requirement to 0.8.4 because of
22577           GstFraction.
22578
22579 2004-07-28  Wim Taymans  <wim@fluendo.com>
22580
22581         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
22582         (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
22583         Add the pad to the element after setting up the caps. This
22584         makes it a lot easier to autoplug.
22585
22586 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
22587
22588         * gst/median/gstmedian.c:
22589         * gst/mpeg2subt/gstmpeg2subt.c:
22590         * gst/mpegaudioparse/gstmpegaudioparse.c:
22591         * gst/mpegstream/gstdvddemux.c:
22592         * gst/mpegstream/gstmpegdemux.c:
22593         * gst/mpegstream/gstmpegpacketize.c:
22594         * gst/rtjpeg/gstrtjpeg.c:
22595         * gst/rtjpeg/gstrtjpegdec.c:
22596         * gst/rtjpeg/gstrtjpegenc.c:
22597         * gst/sine/gstsinesrc.c:
22598         * gst/smooth/gstsmooth.c:
22599         * gst/smpte/gstsmpte.c:
22600         * gst/smpte/gstsmpte.h:
22601         * gst/stereo/gststereo.c:
22602         * gst/videofilter/gstgamma.c:
22603         * gst/videofilter/gstvideobalance.c:
22604         * gst/videofilter/gstvideofilter.c:
22605         * gst/videofilter/gstvideoflip.c:
22606         * gst/videoscale/gstvideoscale.c:
22607         * gst/videoscale/videoscale.c:
22608         * gst/videotestsrc/gstvideotestsrc.c:
22609         * gst/videotestsrc/videotestsrc.c:
22610         * gst/wavenc/gstwavenc.c:
22611         * gst/wavparse/gstwavparse.c:
22612           fix local includes and 64 bits constants
22613
22614 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
22615
22616         * win32/gst.sln:
22617         * gst-libs/gst/*/*.vcproj:
22618         * gst/*/*.vcproj:
22619           more working plugins
22620
22621 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22622
22623         * testsuite/alsa/Makefile.am:
22624         * testsuite/alsa/srcstate.c:
22625         add test for alsasrc changing state
22626
22627 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22628
22629         * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
22630         (gst_silence_get):
22631         * gst/silence/gstsilence.h:
22632         fix silence generation for 16bit raw audio
22633
22634 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
22635
22636         * gst/matroska/matroska-demux.c:
22637         (gst_matroska_demux_parse_metadata),
22638         (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
22639         * gst/mpegaudio/common.c:
22640         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
22641         (gst_videoscale_getcaps), (gst_videoscale_link),
22642         (gst_videoscale_src_fixate), (gst_videoscale_init),
22643         (gst_videoscale_finalize):
22644         * gst/videoscale/gstvideoscale.h:
22645         * gst/videotestsrc/gstvideotestsrc.c:
22646         (gst_videotestsrc_get_capslist):
22647         * gst/wavenc/gstwavenc.c:
22648         * sys/oss/gstossmixer.c: (fill_labels):
22649         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
22650         (gst_ximagesink_handle_xevents),
22651         (gst_ximagesink_calculate_pixel_aspect_ratio),
22652         (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
22653         (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
22654         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
22655         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
22656         (gst_ximagesink_init), (gst_ximagesink_class_init):
22657         * sys/ximage/ximagesink.h:
22658         * sys/xvimage/xvimagesink.c:
22659         (gst_xvimagesink_calculate_pixel_aspect_ratio),
22660         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
22661         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
22662         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
22663         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
22664         * sys/xvimage/xvimagesink.h:
22665           first batch of pixel aspect ratio commits.
22666
22667 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
22668
22669         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22670         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
22671         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
22672           handle stride, needs work if we want to move stride handling
22673           upstream, but works correctly for our purposes.
22674
22675 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
22676
22677         * gst/videoscale/README:
22678           add testing examples
22679         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
22680         (gst_videoscale_chain):
22681         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22682         (gst_videoscale_get_size):
22683           add get_size function that handles stride like videotestsrc.
22684           fixes conversion for YUV formats for as much as I can test them.
22685
22686 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
22687
22688         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22689         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
22690         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22691         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
22692         (gst_xvimagesink_xvimage_put):
22693           further cleanups, logging, error handling and synchronizing
22694
22695 2004-07-27  Wim Taymans  <wim@fluendo.com>
22696
22697         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
22698         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
22699         (gst_videomixer_pad_set_property),
22700         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
22701         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
22702         (gst_videomixer_class_init), (gst_videomixer_init),
22703         (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
22704         (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
22705         (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
22706         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
22707         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
22708         (gst_videomixer_loop), (plugin_init):
22709         Be a nicer negotiation citizen and provide a getcaps function on
22710         the srcpad. This also fixes a crash when resizing.
22711
22712 2004-07-27  Julien MOUTTE  <julien@moutte.net>
22713
22714         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22715         (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
22716
22717 2004-07-27  Wim Taymans  <wim@fluendo.com>
22718
22719         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
22720         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
22721         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
22722         (gst_pngenc_set_property):
22723         * ext/libpng/gstpngenc.h:
22724         Added snapshot property to pngenc.
22725         removed g_print from pngdec
22726
22727 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
22728
22729         * gst/ac3parse/ac3parse.vcproj
22730         * gst/adder/adder.vcproj
22731         * gst/alpha/alpha.vcproj
22732         * gst/alpha/alphacolor.vcproj
22733         * gst/asfdemux/asf.vcproj
22734         * gst/audioconvert/audioconvert.vcproj
22735         * gst/audiorate/audiorate.vcproj
22736         * gst/audioscale/audioscale.vcproj
22737         * gst/auparse/auparse.vcproj
22738         * gst/avi/avi.vcproj
22739         * gst/cdxaparse/cdxaparse.vcproj
22740         * gst/chart/chart.vcproj
22741         * gst/colorspace/colorspace.vcproj
22742         * gst/cutter/cutter.vcproj
22743         * gst/debug/debug.vcproj
22744         * gst/debug/efence.vcproj
22745         * gst/debug/navigationtest.vcproj
22746         * gst/deinterlace/deinterlace.vcproj
22747         * gst/effectv/effectv.vcproj
22748         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
22749         * gst/filter/filter.vcproj
22750         * gst/flx/flxdec.vcproj
22751         * gst/goom/goom.vcproj
22752         * gst/interleave/interleave.vcproj
22753         * gst/law/alaw.vcproj
22754         * gst/law/mulaw.vcproj
22755         * gst/matroska/matroska.vcproj
22756         * gst/median/median.vcproj
22757         * gst/mixmatrix/mixmatrix.vcproj
22758         * gst/mpeg1sys/mpeg1systemencode.vcproj
22759         * gst/mpeg1videoparse/mp1videoparse.vcproj
22760         * gst/mpeg2sub/mpeg2subt.vcproj
22761         * gst/mpegaudio/mpegaudio.vcproj
22762         * gst/mpegaudioparse/mpegaudioparse.vcproj
22763         * gst/mpegstream/mpegstream.vcproj
22764         * gst/multifilesink/multifilesink.vcproj
22765         * gst/multipart/multipart.vcproj
22766         * gst/oneton/oneton.vcproj
22767         * gst/overlay/overlay.vcproj
22768         * gst/passthrough/passthrough.vcproj
22769         * gst/qtdemux/qtdemux.vcproj
22770         * gst/realmedia/rmdemux.vcproj
22771         * gst/rtjpeg/rtjpeg.vcproj
22772         * gst/rtp/rtp.vcproj
22773         * gst/silence/silence.vcproj
22774         * gst/sine/sinesrc.vcproj
22775         * gst/smooth/smooth.vcproj
22776         * gst/smpte/smpte.vcproj
22777         * gst/spectrum/spectrum.vcproj
22778         * gst/speed/speed.vcproj
22779         * gst/stereo/stereo.vcproj
22780         * gst/switch/switch.vcproj
22781         * gst/tags/tagedit.vcproj
22782         * gst/tcp/tcp.vcproj
22783         * gst/typefind/typefindfunctions.vcproj
22784         * gst/udp/udp.vcproj
22785         * gst/videobox/videobox.vcproj
22786         * gst/videocrop/videocrop.vcproj
22787         * gst/videodrop/videodrop.vcproj
22788         * gst/videofilter/gamma.vcproj
22789         * gst/videofilter/videobalance.vcproj
22790         * gst/videofilter/videofilter.vcproj
22791         * gst/videofilter/videoflip.vcproj
22792         * gst/videoflip/videoflip.vcproj
22793         * gst/videomixer/videomixer.vcproj
22794         * gst/videorate/videorate.vcproj
22795         * gst/videoscale/videoscale.vcproj
22796         * gst/videotestsrc/videotestsrc.vcproj
22797         * gst/virtualdub/virtualdub.vcproj
22798         * gst/volenv/volenv.vcproj
22799         * gst/volume/volume.vcproj
22800         * gst/wavenc/wavenc.vcproj
22801         * gst/wavparse/wavparse.vcproj
22802         * gst/y4m/y4menc.vcproj
22803         * gst-libs/gst/audio/audio.vcproj
22804         * gst-libs/gst/audio/audiofilter.vcproj
22805         * gst-libs/gst/colorbalance/colorbalance.vcproj
22806         * gst-libs/gst/idct/idtc.vcproj
22807         * gst-libs/gst/media-info/media-info.vcproj
22808         * gst-libs/gst/mixer/mixer.vcproj
22809         * gst-libs/gst/navigation/navigation.vcproj
22810         * gst-libs/gst/play/play.vcproj
22811         * gst-libs/gst/propertyprobe/propertyprobe.vcproj
22812         * gst-libs/gst/resample/resample.vcproj
22813         * gst-libs/gst/riff/riff.vcproj
22814         * gst-libs/gst/tuner/tuner.vcproj
22815         * gst-libs/gst/video/video.vcproj
22816         * gst-libs/gst/xoverlay/xoverlay.vcproj
22817           avoid problems with math.h, fix release dependancy
22818           rename GStreamer-0.8.lib to libgstreamer.lib
22819
22820 2004-07-27  Julien MOUTTE  <julien@moutte.net>
22821
22822         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
22823         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
22824         the atom is not available we have to unlock the mutex. Fixes #148023
22825
22826 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22827
22828         * gst-libs/gst/media-info/media-info.h:
22829           issue for a vararg macro with MSVC
22830
22831 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22832
22833         * gst/effectv/effectv.vcproj
22834         * gst-libs/gst/idct/idct.vcproj:
22835         * gst-libs/gst/media-info/media-info.vcproj:
22836         * gst-libs/gst/navigation/navigation.vcproj:
22837         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
22838         * gst-libs/gst/video/video.vcproj:
22839         * gst-libs/gst/xoverlay/xoverlay.vcproj:
22840           fixes for build problems
22841
22842 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22843
22844         * gst-libs/gst/audio/audio.def:
22845         * gst-libs/gst/audio/riff.def:
22846           add some definitions needed by plugins
22847
22848 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22849
22850         * gst/asfdemux/gstasfmux.c
22851           Fix some 64 bits constants to be glib friendly
22852
22853 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22854
22855         * gst/ac3parse/gstac3parse.c
22856         * gst/audioscale/gstaudioscale.c
22857         * gst/auparse/gstauparse.c
22858         * gst/colorspace/gstcolorspace.c
22859         * gst/colorspace/yuv2rgb.h
22860           local include fixes
22861
22862 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22863
22864         * win32/gst.sln
22865           add more plugins to the build
22866
22867 2004-07-26  Julien MOUTTE  <julien@moutte.net>
22868
22869         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22870         (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
22871
22872 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
22873
22874         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
22875         (gst_level_set_property), (gst_level_get_property),
22876         (gst_level_base_init), (gst_level_class_init):
22877           add debugging categories.  cleanups.
22878
22879 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
22880
22881         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22882         (gst_videoscale_planar411), (gst_videoscale_planar400),
22883         (gst_videoscale_packed422), (gst_videoscale_packed422rev),
22884         (gst_videoscale_scale_nearest_str1),
22885         (gst_videoscale_scale_nearest_str2),
22886         (gst_videoscale_scale_nearest_str4),
22887         (gst_videoscale_scale_nearest_16bit),
22888         (gst_videoscale_scale_nearest_24bit):
22889           fixed stride issues
22890           tested with 320x240 -> 321, 322, 324 x240
22891           tested with YV12, I420, YUY2, UYVY
22892           fixed packed422rev (don't think it could have worked before)
22893           by testing with UYVY
22894
22895 2004-07-26  Benjamin Otte  <otte@gnome.org>
22896
22897         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
22898         (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
22899         (plugin_init):
22900           add debugging category, add error checks like checking return values
22901           of setup calls, make sure it still works after
22902           PLAYING=>NULL=>PLAYING, fix encoding of mono streams
22903
22904 2004-07-26  Wim Taymans  <wim@fluendo.com>
22905
22906         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
22907         (gst_mpeg_demux_get_audio_stream),
22908         (gst_mpeg_demux_process_private):
22909         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
22910         Check for error codes from the negotiation functions. Make sure
22911         we really set the pad caps when a new pad is created.
22912
22913 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
22914
22915         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
22916         (gst_ffmpeg_caps_to_pix_fmt):
22917         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
22918         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22919         (gst_ffmpegcolorspace_pad_link):
22920           don't make function do two things at the same time without reason.
22921
22922 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22923
22924         * gst/ac3parse/ac3parse.vcproj
22925         * gst/adder/adder.vcproj
22926         * gst/alpha/alpha.vcproj
22927         * gst/alpha/alphacolor.vcproj
22928         * gst/asfdemux/asf.vcproj
22929         * gst/audioconvert/audioconvert.vcproj
22930         * gst/audiorate/audiorate.vcproj
22931         * gst/audioscale/audioscale.vcproj
22932         * gst/auparse/auparse.vcproj
22933         * gst/avi/avi.vcproj
22934         * gst/cdxaparse/cdxaparse.vcproj
22935         * gst/chart/chart.vcproj
22936         * gst/colorspace/colorspace.vcproj
22937         * gst/cutter/cutter.vcproj
22938         * gst/debug/debug.vcproj
22939         * gst/debug/efence.vcproj
22940         * gst/debug/navigationtest.vcproj
22941         * gst/deinterlace/deinterlace.vcproj
22942         * gst/effectv/effectv.vcproj
22943         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
22944         * gst/filter/filter.vcproj
22945         * gst/flx/flxdec.vcproj
22946         * gst/goom/goom.vcproj
22947         * gst/interleave/interleave.vcproj
22948         * gst/law/alaw.vcproj
22949         * gst/law/mulaw.vcproj
22950         * gst/matroska/matroska.vcproj
22951         * gst/median/median.vcproj
22952         * gst/mixmatrix/mixmatrix.vcproj
22953         * gst/mpeg1sys/mpeg1systemencode.vcproj
22954         * gst/mpeg1videoparse/mp1videoparse.vcproj
22955         * gst/mpeg2sub/mpeg2subt.vcproj
22956         * gst/mpegaudio/mpegaudio.vcproj
22957         * gst/mpegaudioparse/mpegaudioparse.vcproj
22958         * gst/mpegstream/mpegstream.vcproj
22959         * gst/multifilesink/multifilesink.vcproj
22960         * gst/multipart/multipart.vcproj
22961         * gst/oneton/oneton.vcproj
22962         * gst/overlay/overlay.vcproj
22963         * gst/passthrough/passthrough.vcproj
22964         * gst/qtdemux/qtdemux.vcproj
22965         * gst/realmedia/rmdemux.vcproj
22966         * gst/rtjpeg/rtjpeg.vcproj
22967         * gst/rtp/rtp.vcproj
22968         * gst/silence/silence.vcproj
22969         * gst/sine/sinesrc.vcproj
22970         * gst/smooth/smooth.vcproj
22971         * gst/smpte/smpte.vcproj
22972         * gst/spectrum/spectrum.vcproj
22973         * gst/speed/speed.vcproj
22974         * gst/stereo/stereo.vcproj
22975         * gst/switch/switch.vcproj
22976         * gst/tags/tagedit.vcproj
22977         * gst/tcp/tcp.vcproj
22978         * gst/typefind/typefindfunctions.vcproj
22979         * gst/udp/udp.vcproj
22980         * gst/videobox/videobox.vcproj
22981         * gst/videocrop/videocrop.vcproj
22982         * gst/videodrop/videodrop.vcproj
22983         * gst/videofilter/gamma.vcproj
22984         * gst/videofilter/videobalance.vcproj
22985         * gst/videofilter/videofilter.vcproj
22986         * gst/videofilter/videoflip.vcproj
22987         * gst/videoflip/videoflip.vcproj
22988         * gst/videomixer/videomixer.vcproj
22989         * gst/videorate/videorate.vcproj
22990         * gst/videoscale/videoscale.vcproj
22991         * gst/videotestsrc/videotestsrc.vcproj
22992         * gst/virtualdub/virtualdub.vcproj
22993         * gst/volenv/volenv.vcproj
22994         * gst/volume/volume.vcproj
22995         * gst/wavenc/wavenc.vcproj
22996         * gst/wavparse/wavparse.vcproj
22997         * gst/y4m/y4menc.vcproj
22998           more plugins supported under windows
22999
23000 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
23001
23002         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
23003         (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
23004         (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
23005         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
23006         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
23007           Add debugging statements.  Use the sizes as returned by the
23008           *CreateImage calls.
23009
23010 2004-07-26  Johan Dahlin  <johan@gnome.org>
23011
23012         * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
23013         the pad is negotiated.
23014
23015         * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
23016
23017 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
23018
23019         * gst-libs/gst/colorbalance/colorbalance.vcproj:
23020         * gst-libs/gst/idct/idct.vcproj:
23021         * gst-libs/gst/media-info/media-info.vcproj:
23022         * gst-libs/gst/mixer/mixer.vcproj:
23023         * gst-libs/gst/navigation/navigation.vcproj:
23024         * gst-libs/gst/play/play.vcproj:
23025         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
23026         * gst-libs/gst/resample/resample.vcproj:
23027         * gst-libs/gst/tuner/tuner.vcproj:
23028         * gst-libs/gst/video/video.vcproj:
23029         * gst-libs/gst/xoverlay/xoverlay.vcproj:
23030           more plugins supported under windows
23031
23032 2004-07-25 Iain <iain@prettypeople.org>
23033
23034         * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
23035         pad now rather than when the pad is created because state changes wipe
23036         explicit caps (fixes #148043).
23037
23038 2004-07-25  Sebastien Cote  <sc5@hermes.usherb.ca>
23039
23040         reviewed by Benjamin Otte  <otte@gnome.org>
23041
23042         * ext/mad/gstmad.c:
23043           fix mad plugin crashing on Sun (fixes #148289)
23044
23045 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
23046
23047         * gst/avi/avi.def:
23048         * gst/avi/avi.vcproj:
23049         * gst/matroska/matroska.def:
23050         * gst/matroska/matroska.vcproj:
23051           remove unused .def files
23052
23053 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
23054
23055         * gst-libs/gst/audio/gstaudiofilter.c:
23056           Clean the local include
23057
23058 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
23059
23060         * win32/gst.sln:
23061         * gst-libs/gst/audio/audio.def:
23062         * gst-libs/gst/audio/audio.vcproj:
23063         * gst-libs/gst/audio/audiofilter.vcproj:
23064         * gst-libs/gst/audio/riff.def:
23065         * gst-libs/gst/audio/riff.vcproj:
23066         * gst-libs/gst/gst-libs.def:
23067         * gst-libs/gst/gst-libs.vcproj:
23068         * gst/avi/avi.vcproj:
23069         * gst/avi/avi.vcproj:
23070           Copy the files where needed after building, cleaner projects
23071
23072 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
23073
23074         * gst/matroska/ebml-write.c:
23075           Fix some 64 bits constants to be glib friendly
23076
23077 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
23078
23079         * win32/gst.sln:
23080         * gst-libs/gst/gst-libs.def:
23081         * gst-libs/gst/gst-libs.vcproj:
23082         * gst/matroska/matroska.def:
23083         * gst/matroska/matroska.vcproj:
23084           Add the preliminary canvas to build plugins on Win32
23085
23086 2004-07-23  Benjamin Otte  <otte@gnome.org>
23087
23088         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
23089           don't enfore negotiation from source side, it breaks
23090           sinesrc ! audioconvert ! osssink
23091
23092 2004-07-22  David Schleef  <ds@schleef.org>
23093
23094         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
23095         for ELF files, since they can easily be recognized as audio/mpeg.
23096         (bug #147441)
23097
23098 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
23099
23100         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
23101         (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
23102         (gst_videoscale_scale_nearest_24bit),
23103         (gst_videoscale_scale_nearest_16bit):
23104           fix 16bit and 24bit for stride (24bit might need testing)
23105           don't pretend we do more than one algorithm
23106
23107 2004-07-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
23108
23109         * configure.ac:
23110         * gst/Makefile.am:
23111         * gst/multifilesink/Makefile.am:
23112         * gst/multifilesink/gstmultifilesink.c:
23113         (gst_multifilesink_get_formats),
23114         (gst_multifilesink_get_query_types), (_do_init),
23115         (gst_multifilesink_base_init), (gst_multifilesink_class_init),
23116         (gst_multifilesink_init), (gst_multifilesink_dispose),
23117         (gst_multifilesink_set_location), (gst_multifilesink_set_property),
23118         (gst_multifilesink_get_property), (gst_multifilesink_open_file),
23119         (gst_multifilesink_close_file), (gst_multifilesink_next_file),
23120         (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
23121         (gst_multifilesink_chain), (gst_multifilesink_change_state),
23122         (gst_multifilesink_uri_get_type),
23123         (gst_multifilesink_uri_get_protocols),
23124         (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
23125         (gst_multifilesink_uri_handler_init), (plugin_init):
23126         * gst/multifilesink/gstmultifilesink.h:
23127         * testsuite/Makefile.am:
23128         * testsuite/multifilesink/Makefile.am:
23129         * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
23130         (gst_newmedia_class_init), (gst_newmedia_init),
23131         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
23132         (newfile_signal), (test_signal), (main):
23133         multifilesink plugin for creating new files every time a new media
23134         discontinuity event occurs
23135
23136 2004-07-22  Wim Taymans  <wim@fluendo.com>
23137
23138         * gst/alpha/Makefile.am:
23139         * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
23140         (gst_alpha_color_base_init), (gst_alpha_color_class_init),
23141         (gst_alpha_color_init), (gst_alpha_color_set_property),
23142         (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
23143         (transform), (gst_alpha_color_chain),
23144         (gst_alpha_color_change_state), (plugin_init):
23145         Stupid plugin to to RGBA to AYUV conversion because none of
23146         the colorspace plugins can handle that yet.
23147
23148 2004-07-22  Wim Taymans  <wim@fluendo.com>
23149
23150         * examples/seeking/seek.c: (update_scale), (main):
23151         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23152         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
23153         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
23154         (gst_decode_bin_init), (gst_decode_bin_dispose),
23155         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23156         (no_more_pads), (close_link), (type_found),
23157         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23158         (plugin_init):
23159         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23160         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23161         (gst_play_base_bin_dispose), (queue_overrun),
23162         (gen_preroll_element), (remove_prerolls), (unknown_type),
23163         (no_more_pads), (new_stream), (setup_source),
23164         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
23165         (play_base_eos), (gst_play_base_bin_change_state),
23166         (gst_play_base_bin_add_element),
23167         (gst_play_base_bin_remove_element),
23168         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23169         (gst_play_base_bin_unlink_stream),
23170         (gst_play_base_bin_get_streaminfo):
23171         * gst/playback/gstplaybin.c: (gen_video_element),
23172         (gen_audio_element):
23173         * gst/playback/gststreaminfo.h:
23174         More playback updates, attempt to fix things after the state change
23175         breakage.
23176
23177 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
23178
23179         * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
23180         (gst_videoscale_scale_nearest_16bit):
23181           comment algorithm
23182
23183 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
23184
23185         * gst/videotestsrc/gstvideotestsrc.c:
23186         (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
23187         (gst_videotestsrc_init), (gst_videotestsrc_get),
23188         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
23189         (gst_videotestsrc_get_property):
23190         * gst/videotestsrc/gstvideotestsrc.h:
23191         * gst/videotestsrc/videotestsrc.c:
23192         * gst/videotestsrc/videotestsrc.h:
23193           cleanup and commenting
23194
23195 2004-07-21  Wim Taymans  <wim@fluendo.com>
23196
23197         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
23198         (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
23199         (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
23200         (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
23201         (_find_chain_get_unknown_part), (_find_streams_check),
23202         (gst_ogg_demux_push), (gst_ogg_pad_push):
23203         * ext/theora/theoradec.c: (theora_get_formats),
23204         (theora_dec_src_convert), (theora_dec_sink_convert),
23205         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
23206         (theora_dec_chain):
23207         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
23208         (vorbis_dec_convert), (vorbis_dec_src_query),
23209         (vorbis_dec_src_event), (vorbis_dec_event):
23210         More seeking fixes, oggdemux now supports seeking to time and
23211         uses the downstream element to convert granulepos to time.
23212         Seeking in theora-only ogg files now works.
23213
23214 2004-07-21  Wim Taymans  <wim@fluendo.com>
23215
23216         * ext/theora/theoradec.c: (gst_theora_dec_init),
23217         (theora_get_formats), (theora_get_event_masks),
23218         (theora_get_query_types), (theora_dec_src_convert),
23219         (theora_dec_sink_convert), (theora_dec_src_query),
23220         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
23221         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
23222         (vorbis_get_event_masks), (vorbis_get_query_types),
23223         (gst_vorbis_dec_init), (vorbis_dec_convert),
23224         (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
23225         Added query/convert/formats functions to vorbis and theora decoders
23226         so that the outside world can use them too. Fixed seeking on an
23227         ogg/theora/vorbis file by disabling the seeking seeking on the
23228         theora srcpad.
23229
23230 2004-07-21  Julien MOUTTE  <julien@moutte.net>
23231
23232         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
23233         (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
23234         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
23235         images creation for both elements. We don't create the image on caps
23236         nego or renego, we just destroy the internal one if present if it does
23237         not match the needs. The chain function takes care of creating a new
23238         image when needed.
23239         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
23240         (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
23241         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
23242         (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
23243         the image format information. The buffer pool checks for the context
23244         image format and discard images with different formats.
23245         * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
23246
23247 2004-07-21  Thomas Vander Stichele  <thomas at apestaart dot org>
23248
23249         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23250         (gst_ffmpegcolorspace_chain):
23251           no point in doing any chaining if the pad we want to push from
23252           isn't usable.
23253
23254 2004-07-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23255
23256         * gst-libs/gst/riff/riff-media.c:
23257         (gst_riff_create_audio_caps_with_data):
23258           Fix double end-to-native symbol conversion (#148021).
23259
23260 2004-07-20  David Schleef  <ds@schleef.org>
23261
23262         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
23263         Don't use an Atom that doesn't exist.
23264
23265 2004-07-20  Wim Taymans  <wim@fluendo.com>
23266
23267         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23268         (gst_multifdsink_add), (gst_multifdsink_get_stats),
23269         (gst_multifdsink_client_remove),
23270         (gst_multifdsink_handle_client_write),
23271         (gst_multifdsink_queue_buffer):
23272         * gst/tcp/gstmultifdsink.h:
23273         More multifdsink stats. Avoid deadlock by releasing locks
23274         before sending out a signal.
23275
23276 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
23277
23278         * po/LINGUAS:
23279         * po/hu.po:
23280           added Hungarian translation (Laszlo Dvornik)
23281
23282 2004-07-20  Wim Taymans  <wim@fluendo.com>
23283
23284         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23285         (gst_multifdsink_add), (gst_multifdsink_client_remove),
23286         (gst_multifdsink_handle_client_write),
23287         (gst_multifdsink_queue_buffer):
23288         * gst/tcp/gsttcp-marshal.list:
23289         Fixed the stupid marshal definition.
23290
23291 2004-07-20  Wim Taymans  <wim@fluendo.com>
23292
23293         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23294         (gst_multifdsink_init), (gst_multifdsink_add),
23295         (gst_multifdsink_client_remove),
23296         (gst_multifdsink_handle_client_write),
23297         (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
23298         (gst_multifdsink_set_property), (gst_multifdsink_get_property),
23299         (gst_multifdsink_init_send):
23300         * gst/tcp/gstmultifdsink.h:
23301         Added more stats, added timeout for a client, fixed some typos
23302         and added some comments.
23303
23304 2004-07-20  Wim Taymans  <wim@fluendo.com>
23305
23306         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23307         (gst_multifdsink_add), (gst_multifdsink_get_stats),
23308         (gst_multifdsink_client_remove),
23309         (gst_multifdsink_handle_client_write):
23310         * gst/tcp/gstmultifdsink.h:
23311         * gst/tcp/gsttcp-marshal.list:
23312         Added get_stats method that returns a GValueArray of
23313         stats values.
23314
23315 2004-07-19  Benjamin Otte  <otte@gnome.org>
23316
23317         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
23318           make sure longname, description and author are valid UTF-8
23319
23320 2004-07-19  Thomas Vander Stichele  <thomas at apestaart dot org>
23321
23322         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
23323         (gst_ximagesink_set_property):
23324         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
23325         (gst_xvimagesink_set_property):
23326           make sure SYNCHRONOUS is respected after getting the X context
23327
23328 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
23329
23330         * gst/matroska/matroska-demux.c:
23331         (gst_matroska_demux_handle_src_event),
23332         (gst_matroska_demux_parse_blockgroup):
23333         * gst/matroska/matroska-ids.h:
23334           add BlockReference tag and ignore it to clear out log.
23335           ignore NAVIGATION events to clear out log.
23336
23337 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
23338
23339         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
23340         (gst_matroska_demux_add_stream):
23341         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
23342           add debug categories
23343
23344 2004-07-16  Wim Taymans  <wim@fluendo.com>
23345
23346         * ext/libpng/Makefile.am:
23347         * ext/libpng/gstpng.c: (plugin_init):
23348         * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
23349         (gst_pngdec_get_type), (gst_pngdec_base_init),
23350         (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
23351         (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
23352         * ext/libpng/gstpngdec.h:
23353         Added png decoder.
23354
23355 2004-07-16  Julien MOUTTE  <julien@moutte.net>
23356
23357         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
23358         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
23359         (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
23360         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
23361         (gst_ximagesink_buffer_alloc):
23362         * sys/ximage/ximagesink.h:
23363         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
23364         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
23365         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
23366         (gst_xvimagesink_buffer_alloc):
23367         * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
23368         again. Using internal data pointer of the x(v)image to store image's
23369         data to be coherent with the buffer alloc mechanism. Investigated the
23370         image destruction code to be sure that everything gets freed correctly.
23371
23372 2004-07-16  Wim Taymans  <wim@fluendo.com>
23373
23374         * gst-libs/gst/riff/riff-read.c:
23375         (gst_riff_read_strf_vids_with_data),
23376         (gst_riff_read_strf_auds_with_data):
23377         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
23378         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
23379         Make sure we don't create 0 sized subbuffers in riff-read.
23380         Signal the no more pads signal after reading the avi header.
23381
23382 2004-07-16  Wim Taymans  <wim@fluendo.com>
23383
23384         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23385         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
23386         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
23387         (gst_decode_bin_init), (gst_decode_bin_dispose),
23388         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23389         (no_more_pads), (close_link), (type_found),
23390         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23391         (gst_decode_bin_change_state), (plugin_init):
23392         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23393         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23394         (gst_play_base_bin_dispose), (queue_overrun),
23395         (gen_preroll_element), (remove_prerolls), (unknown_type),
23396         (no_more_pads), (new_stream), (setup_source),
23397         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
23398         (play_base_eos), (gst_play_base_bin_change_state),
23399         (gst_play_base_bin_add_element),
23400         (gst_play_base_bin_remove_element),
23401         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23402         (gst_play_base_bin_unlink_stream),
23403         (gst_play_base_bin_get_streaminfo):
23404         * gst/playback/gstplaybasebin.h:
23405         Better error recovery. Added configurable preroll queue size. Faster
23406         detection of no-more-pads.
23407
23408 2004-07-16  Wim Taymans  <wim@fluendo.com>
23409
23410         * gst-libs/gst/video/video.h:
23411         Added 32 bits RGBA. Not sure if we should use another mime-type
23412         for alpha rgb. Currently the presence of the alpha_mask property
23413         signals an alpha channel.
23414
23415 2004-07-16  Wim Taymans  <wim@fluendo.com>
23416
23417         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
23418         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
23419         FPS seems to be 0.0 to MAX everywhere else.
23420
23421 2004-07-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23422
23423         * gst-libs/gst/riff/riff-media.c:
23424         (gst_riff_create_video_caps_with_data):
23425           mp42/mp43 (no caps) exist too.
23426         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
23427           Set pixel_width/height; we've got them in-caps.
23428         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
23429         * gst/wavparse/gstwavparse.c: (plugin_init):
23430           Both are valid primary.
23431         * sys/oss/gstossmixer.c:
23432           Remove i18n hack and enable translations.
23433
23434 2004-07-15  Benjamin Otte  <otte@gnome.org>
23435
23436         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
23437         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
23438           fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
23439
23440 2004-07-15  Benjamin Otte  <otte@gnome.org>
23441
23442         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
23443         (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
23444         (gst_alsa_close_audio):
23445           disable some of the debugging code for now. Writing debugging to a
23446           buffer is broken in current alsalib releases.
23447
23448 2004-07-12  Benjamin Otte  <otte@gnome.org>
23449
23450         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
23451           use bufferpools
23452
23453 2004-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
23454
23455         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
23456         (theora_dec_src_query), (theora_dec_event):
23457         * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
23458           add debugging categories.  Remove \n's.
23459
23460 2004-07-13  Johan Dahlin  <johan@gnome.org>
23461
23462         * gst/playback/gstplaybin.c (gst_play_bin_set_property)
23463         (gst_play_bin_get_property): Impl.
23464
23465 2004-07-13  Wim Taymans  <wim@fluendo.com>
23466
23467         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
23468         When trying to find the stream length, seek back N pages
23469         instead of just one, where N is the number of streams in
23470         the current chain.
23471
23472 2004-07-13  Wim Taymans  <wim@fluendo.com>
23473
23474         * gst-libs/gst/riff/riff-media.c:
23475         (gst_riff_create_audio_caps_with_data),
23476         (gst_riff_create_audio_caps),
23477         (gst_riff_create_audio_template_caps):
23478         * gst-libs/gst/riff/riff-media.h:
23479         * gst-libs/gst/riff/riff-read.c:
23480         (gst_riff_read_strf_vids_with_data),
23481         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
23482         * gst-libs/gst/riff/riff-read.h:
23483         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
23484         (gst_avi_demux_add_stream):
23485         Set codec_data on caps for avidemuxer.
23486
23487 2004-07-12  David Schleef  <ds@schleef.org>
23488
23489         * configure.ac: Fix test for Objective C
23490
23491 2004-07-12  Jan Schmidt  <thaytan@mad.scientist.com>
23492         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
23493         (gst_gdk_pixbuf_chain):
23494           Add svg and pcx to template caps, and ensure that getcaps returns a
23495           subset of the template caps.
23496           Copy each row manually for output, as gdkpixbuf may pad the
23497           rowstride to a 32-bit word boundary.
23498
23499 2004-07-12  Wim Taymans  <wim@fluendo.com>
23500
23501         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
23502         (gst_riff_create_video_template_caps):
23503         Fix the template caps to include some more media types.
23504
23505 2004-07-12  Wim Taymans  <wim@fluendo.com>
23506
23507         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23508         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23509         (compare_ranks), (print_feature), (gst_decode_bin_init),
23510         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23511         (try_to_link_1), (new_pad), (close_link), (type_found),
23512         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23513         (gst_decode_bin_change_state), (plugin_init):
23514         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23515         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23516         (gst_play_base_bin_dispose), (queue_overrun),
23517         (gen_preroll_element), (remove_prerolls), (no_more_pads),
23518         (new_stream), (setup_source), (gst_play_base_bin_set_property),
23519         (gst_play_base_bin_get_property), (play_base_eos),
23520         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
23521         (gst_play_base_bin_remove_element),
23522         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23523         (gst_play_base_bin_unlink_stream),
23524         (gst_play_base_bin_get_streaminfo):
23525         * gst/playback/gstplaybasebin.h:
23526         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23527         (gst_play_bin_class_init), (gst_play_bin_init),
23528         (gst_play_bin_dispose), (gst_play_bin_set_property),
23529         (gst_play_bin_get_property), (gen_video_element),
23530         (gen_audio_element), (remove_sinks), (setup_sinks),
23531         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
23532         (gst_play_bin_send_event), (gst_play_bin_get_formats),
23533         (gst_play_bin_convert), (gst_play_bin_get_query_types),
23534         (gst_play_bin_query), (plugin_init):
23535         * gst/playback/test4.c: (main):
23536         More fixes on reusing of the element.
23537
23538 2004-07-11  Benjamin Otte  <otte@gnome.org>
23539
23540         * ext/mad/gstmad.c: (normal_seek):
23541           allow seeking for other methods than just SET
23542
23543 2004-07-11  Andy Wingo  <wingo@pobox.com>
23544
23545         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
23546         float, "any" caps -> buffer_frames=[0,MAX].
23547
23548         * gst/interleave/interleave.c (interleave_getcaps): Seems the core
23549         doesn't intersect our caps with the template any more. Do it
23550         ourselves.
23551         (interleave_buffered_loop): Use g_newa instead of malloc/free.
23552
23553 2004-07-09  Wim Taymans  <wim@fluendo.com>
23554
23555         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23556         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23557         (compare_ranks), (print_feature), (gst_decode_bin_init),
23558         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23559         (try_to_link_1), (new_pad), (close_link), (type_found),
23560         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23561         (gst_decode_bin_change_state), (plugin_init):
23562         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23563         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23564         (gst_play_base_bin_dispose), (queue_overrun),
23565         (gen_preroll_element), (remove_prerolls), (no_more_pads),
23566         (new_stream), (setup_source), (gst_play_base_bin_set_property),
23567         (gst_play_base_bin_get_property), (play_base_eos),
23568         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
23569         (gst_play_base_bin_remove_element),
23570         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23571         (gst_play_base_bin_unlink_stream),
23572         (gst_play_base_bin_get_streaminfo):
23573         * gst/playback/gstplaybasebin.h:
23574         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23575         (gst_play_bin_class_init), (gst_play_bin_init),
23576         (gst_play_bin_dispose), (gst_play_bin_set_property),
23577         (gst_play_bin_get_property), (gen_video_element),
23578         (gen_audio_element), (remove_sinks), (setup_sinks),
23579         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
23580         (gst_play_bin_send_event), (gst_play_bin_get_formats),
23581         (gst_play_bin_convert), (gst_play_bin_get_query_types),
23582         (gst_play_bin_query), (plugin_init):
23583         * gst/playback/test4.c: (main):
23584         Work on object reuse and seeking.
23585
23586 2004-07-09  Wim Taymans  <wim@fluendo.com>
23587
23588         * examples/seeking/seek.c: (iterate):
23589         Don't consume all CPU in the idle loop.
23590
23591 2004-07-09  Wim Taymans  <wim@fluendo.com>
23592
23593         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
23594         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
23595         Add pad to element *after* setting the pad functions so that
23596         the scheduler can use the correct ones.
23597
23598 2004-07-09  Wim Taymans  <wim@fluendo.com>
23599
23600         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
23601         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
23602         Sync to keyframe after seek
23603
23604 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23605
23606         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
23607         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
23608         (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
23609         * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
23610         * ext/libvisual/visual.c: (gst_visual_change_state):
23611         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
23612         * ext/theora/theoradec.c: (theora_dec_change_state):
23613         * ext/theora/theoraenc.c: (theora_enc_change_state):
23614         * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
23615         * gst-libs/gst/navigation/navigation.c:
23616         * gst/adder/gstadder.c: (gst_adder_change_state):
23617         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
23618         (gst_audio_convert_get_buffer):
23619         * gst/multipart/multipartdemux.c:
23620         (gst_multipart_demux_change_state):
23621         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
23622         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
23623         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
23624         * gst/videoscale/gstvideoscale.c:
23625         (gst_videoscale_handle_src_event):
23626         * gst/volume/gstvolume.c: (volume_chain_int16):
23627           don't assert in state change, this should be done by the base
23628           GstElement class.
23629           various debugging fixes.
23630
23631 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23632
23633         * configure.ac:
23634         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
23635         (gst_play_dispose), (gst_play_set_location),
23636         (gst_play_set_data_src), (gst_play_set_video_sink),
23637         (gst_play_set_audio_sink), (gst_play_set_visualization),
23638         (gst_play_connect_visualization), (gst_play_get_sink_element),
23639         (gst_play_get_all_by_interface):
23640         * gst-libs/gst/play/play.h:
23641           add new method to get elements implementing an interface.
23642           add various error logging
23643
23644 2004-07-08  Wim Taymans  <wim@fluendo.com>
23645
23646         * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
23647         (make_mpeg_pipeline), (make_mpegnt_pipeline),
23648         (make_playerbin_pipeline), (query_durations_elems),
23649         (query_durations_pads), (query_positions_elems),
23650         (query_positions_pads), (update_scale), (iterate), (stop_seek),
23651         (main):
23652         Added playbin seeking example.
23653
23654 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23655
23656         * gst-libs/gst/play/play.c: (gst_play_set_location),
23657         (gst_play_set_data_src), (gst_play_set_video_sink),
23658         (gst_play_set_audio_sink), (gst_play_set_visualization),
23659         (gst_play_connect_visualization), (gst_play_get_framerate):
23660           use a macro to look up elements from hash table
23661
23662 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23663
23664         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
23665         (gst_play_get_length_callback), (gst_play_set_location),
23666         (gst_play_seek_to_time), (gst_play_set_data_src),
23667         (gst_play_set_video_sink), (gst_play_set_audio_sink),
23668         (gst_play_set_visualization), (gst_play_connect_visualization),
23669         (gst_play_get_sink_element):
23670         - add debugging info
23671         - fix looking up sink elements by iterating over complete caps
23672         - put everything except for source and autoplugger in a complete bin
23673
23674 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23675
23676         * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
23677         * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
23678         (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
23679         (gst_alsa_sink_write), (gst_alsa_sink_loop):
23680         * ext/alsa/gstalsasink.h:
23681         - add debugging info
23682         - clean up schizophrenia of data/buffer/event
23683         - fix double event unref error
23684
23685 2004-07-08  Wim Taymans  <wim@fluendo.com>
23686
23687         * gst/playback/Makefile.am:
23688         Add headers to noinst
23689
23690 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23691
23692         * tools/gst-launch-ext-m.m:
23693         * tools/gst-launch-ext.1.in:
23694           convert to the third millenium
23695
23696 2004-07-07  David Schleef  <ds@schleef.org>
23697
23698         * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
23699
23700 2004-07-07  Wim Taymans  <wim@fluendo.com>
23701
23702         * gst/playback/Makefile.am:
23703         * gst/playback/README:
23704         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23705         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23706         (compare_ranks), (print_feature), (gst_decode_bin_init),
23707         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23708         (try_to_link_1), (new_pad), (close_link), (type_found),
23709         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23710         (plugin_init):
23711         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23712         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23713         (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
23714         (gen_preroll_element), (no_more_pads), (new_stream),
23715         (setup_source), (gst_play_base_bin_set_property),
23716         (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
23717         (gst_play_base_bin_add_element),
23718         (gst_play_base_bin_remove_element),
23719         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23720         (gst_play_base_bin_unlink_stream),
23721         (gst_play_base_bin_get_streaminfo):
23722         * gst/playback/gstplaybasebin.h:
23723         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23724         (gst_play_bin_class_init), (gst_play_bin_init),
23725         (gst_play_bin_dispose), (gst_play_bin_set_property),
23726         (gst_play_bin_get_property), (gen_video_element),
23727         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
23728         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
23729         (gst_play_bin_get_formats), (gst_play_bin_convert),
23730         (gst_play_bin_get_query_types), (gst_play_bin_query),
23731         (plugin_init):
23732         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
23733         (gst_stream_info_get_type), (gst_stream_info_class_init),
23734         (gst_stream_info_init), (gst_stream_info_new),
23735         (gst_stream_info_dispose), (gst_stream_info_set_property),
23736         (gst_stream_info_get_property):
23737         * gst/playback/gststreaminfo.h:
23738         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
23739         (main):
23740         * gst/playback/test2.c: (main):
23741         * gst/playback/test3.c: (update_scale), (main):
23742         More playbin fixes. Added README. Do better element filtering.
23743         Added base class to preroll media. Added test apps.
23744
23745 2004-07-07  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23746
23747         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
23748         * ext/mpeg2dec/gstmpeg2dec.h:
23749           various debugging improvements.  Reset stream to next picture
23750           instead of sequence header, otherwise seeks cannot work.
23751
23752 2004-07-07  Wim Taymans  <wim@fluendo.com>
23753
23754         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
23755         (gst_video_box_class_init), (gst_video_box_set_property),
23756         (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
23757         Use pad_alloc where possible.
23758
23759 2004-07-07  Wim Taymans  <wim@fluendo.com>
23760
23761         * sys/oss/gstosselement.c: (gst_osselement_reset),
23762         (gst_osselement_parse_caps):
23763         * sys/oss/gstosselement.h:
23764         * sys/oss/gstosssrc.c: (gst_osssrc_get):
23765         Fix offset on osssrc.
23766
23767 2004-07-07  Wim Taymans  <wim@fluendo.com>
23768
23769         * ext/theora/theora.c: (plugin_init):
23770         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
23771         (theora_dec_src_query), (theora_dec_chain):
23772         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
23773         (theora_enc_sink_link), (theora_buffer_from_packet),
23774         (theora_push_packet), (theora_enc_chain):
23775         Fix theora granulepos calculation.
23776         Fix overflow in duration/position calculation.
23777         Bump rank to PRIMARY for theoradec.
23778         Use granulepos of last packet to calculate position.
23779         Set keyframe flag on buffers when needed.
23780
23781 2004-07-06  David Schleef  <ds@schleef.org>
23782
23783         * gst/playback/Makefile.am: 'test' in bin_PROGRAMS?  Are you
23784         serious?  (Fixed, obviously.)
23785
23786 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
23787
23788         * po/LINGUAS:
23789         * po/cs.po:
23790           added Czech translation (Miloslav Trmac)
23791
23792 2004-07-05  Wim Taymans  <wim@fluendo.com>
23793
23794         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23795         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23796         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
23797         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23798         (close_link), (type_found), (gst_decode_bin_set_property),
23799         (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
23800         (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
23801         (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
23802         (gst_decode_bin_query), (plugin_init):
23803         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23804         (gst_play_bin_class_init), (gst_play_bin_init),
23805         (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
23806         (get_video_element), (new_pad), (setup_source),
23807         (gst_play_bin_set_property), (gst_play_bin_get_property),
23808         (gst_play_bin_change_state), (gst_play_bin_add_element),
23809         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
23810         (gst_play_bin_send_event), (gst_play_bin_get_formats),
23811         (gst_play_bin_convert), (gst_play_bin_get_query_types),
23812         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
23813         * gst/playback/test.c: (main):
23814         More fixes, cleaned up playbin, make it use decodebin. Added
23815         threaded property to playbin.
23816
23817 2004-07-05  Wim Taymans  <wim@fluendo.com>
23818
23819         * configure.ac:
23820         * gst/playback/Makefile.am:
23821         * gst/playback/decodetest.c: (main):
23822         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23823         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23824         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
23825         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23826         (close_link), (type_found), (gst_decode_bin_set_property),
23827         (gst_decode_bin_get_property), (gst_decode_bin_change_state),
23828         (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
23829         (gst_decode_bin_get_formats), (gst_decode_bin_convert),
23830         (gst_decode_bin_get_query_types), (gst_decode_bin_query),
23831         (plugin_init):
23832         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23833         (gst_play_bin_class_init), (gst_play_bin_init),
23834         (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
23835         (collect_sink_pads), (find_compatibles), (close_pad_link),
23836         (try_to_link_1), (new_pad), (close_link), (type_found),
23837         (setup_source), (gst_play_bin_set_property),
23838         (gst_play_bin_get_property), (gst_play_bin_factory_filter),
23839         (compare_ranks), (gst_play_bin_collect_factories),
23840         (gst_play_bin_change_state), (gst_play_bin_add_element),
23841         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
23842         (gst_play_bin_send_event), (gst_play_bin_get_formats),
23843         (gst_play_bin_convert), (gst_play_bin_get_query_types),
23844         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
23845         * gst/playback/test.c: (main):
23846         Added some playback helper elements and some test apps, very alpha
23847         still.
23848
23849 2004-07-04  Benjamin Otte  <otte@gnome.org>
23850
23851         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
23852           only restart audio when we indeed have an xrun to fix repeated
23853           xruns. Fix suggested by Giuliano Pochini.
23854
23855 2004-07-03  David Schleef  <ds@schleef.org>
23856
23857         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
23858         call to gst_debug_log() if debugging is disabled (bug #145118)
23859
23860 2004-07-03  Benjamin Otte  <otte@gnome.org>
23861
23862         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
23863           use our own functions for restarting the alsa device.
23864         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
23865           I should apply patches myself - use MIN for the third argument, not
23866           the second, this fixes seeking
23867
23868 2004-07-02  David Schleef  <ds@schleef.org>
23869
23870         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
23871         (gst_flacdec_write):  Actually, GST_PAD_CAPS() has nothing to
23872         do with the logic.
23873
23874 2004-07-02  David Schleef  <ds@schleef.org>
23875
23876         * ext/flac/gstflacdec.c: (gst_flacdec_write):  Set duration on
23877         output buffers.  Fix logic mistake.  (bug #144866)
23878
23879 2004-07-02  David Schleef  <ds@schleef.org>
23880
23881         * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
23882         on X.  (bug #144753)
23883
23884 2004-07-02  David Schleef  <ds@schleef.org>
23885
23886         * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
23887         (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
23888         (bug #144624)
23889         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
23890         (gst_osselement_rate_probe_check): Add another workaround for
23891         buggy drivers (bug #145336)
23892
23893 2004-07-02  David Schleef  <ds@schleef.org>
23894
23895         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
23896         Most systems don't have MSG_NOSIGNAL.
23897
23898 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
23899
23900         * Makefile.am:
23901         * gst-libs/gst/colorbalance/Makefile.am:
23902         * gst-libs/gst/mixer/Makefile.am:
23903         * gst-libs/gst/play/Makefile.am:
23904         * gst-libs/gst/tuner/Makefile.am:
23905           (hopefully) fix both install and dist and make error message useful.
23906           needs testing across automakes.
23907
23908 2004-07-02  Benjamin Otte  <otte@gnome.org>
23909
23910         * ext/ogg/gstogg.c: (plugin_init):
23911           we require bytestream now
23912         * ext/ogg/gstoggdemux.c:
23913           huge diff to implement chain setup in a fast and generic way. This
23914           improves tag reading and startup of huge files (read: Theora videos)
23915           quite a bit. It probably contains bugs, too, so please test.
23916           Seeking is not improved to the fast method.
23917
23918 2004-06-29  Wim Taymans  <wim@fluendo.com>
23919
23920         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
23921         * ext/ogg/gstoggmux.c:
23922         Fix memleak in oggdemux when running unconnected pads.
23923         doc update in mux, start working on keyframe mode.
23924
23925 2004-06-29  Benjamin Otte  <otte@gnome.org>
23926
23927         * sys/oss/gstosssink.c:
23928         * sys/oss/gstosssrc.c:
23929           advertise correct template caps - we indeed do non-native endianness
23930           and 8bit audio has no endianness
23931         * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
23932         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
23933           avoid (wrong) duplications in getcaps function and return
23934           template caps
23935
23936 2004-06-29  Wim Taymans  <wim@fluendo.com>
23937
23938         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
23939         (gst_multifdsink_class_init), (gst_multifdsink_add),
23940         (gst_multifdsink_remove), (gst_multifdsink_clear),
23941         (gst_multifdsink_client_remove),
23942         (gst_multifdsink_handle_client_read),
23943         (gst_multifdsink_client_queue_data),
23944         (gst_multifdsink_client_queue_caps),
23945         (gst_multifdsink_client_queue_buffer),
23946         (gst_multifdsink_handle_client_write),
23947         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
23948         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
23949         (gst_multifdsink_init_send), (gst_multifdsink_close):
23950         Fix wrong GList iteration that could crash the server when
23951         more then 2 clients disconnect at the same time. Read all the
23952         pending commands in one batch to recover from command storms under
23953         very heavy load.
23954
23955 2004-06-28  Wim Taymans  <wim@fluendo.com>
23956
23957         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
23958         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
23959         (gst_videomixer_pad_set_property),
23960         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
23961         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
23962         (gst_videomixer_class_init), (gst_videomixer_init),
23963         (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
23964         (pad_zorder_compare), (gst_videomixer_sort_pads),
23965         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
23966         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
23967         (gst_videomixer_update_queues), (gst_videomixer_loop),
23968         (plugin_init):
23969         Avoid divide by zero, choose masterpad as the pad with the highest
23970         framerate.
23971
23972 2004-06-27  Julien Moutte  <julien@moutte.net>
23973
23974         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
23975         (gst_ximagesink_xwindow_new):
23976         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
23977         (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
23978         function directly. We might want to call it from somewhere else one day.
23979
23980 2004-06-27  Julien Moutte  <julien@moutte.net>
23981
23982         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
23983         (gst_ximagesink_xwindow_new):
23984         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
23985         (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
23986         window decorations.
23987
23988 2004-06-27  Wim Taymans  <wim@fluendo.com>
23989
23990         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
23991         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
23992         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
23993         (gst_dvdec_set_property), (gst_dvdec_get_property):
23994         * ext/dv/gstdvdec.h:
23995         Implement drop_factor property to lower the framerate with
23996         a factor.
23997
23998 2004-06-27  Thomas Vander Stichele  <thomas at apestaart dot org>
23999
24000         * gst-libs/gst/colorbalance/Makefile.am:
24001         * gst-libs/gst/mixer/Makefile.am:
24002         * gst-libs/gst/play/Makefile.am:
24003         * gst-libs/gst/tuner/Makefile.am:
24004           unbreak Company's fix that didn't install the -enum.h files
24005
24006 2004-06-27  Wim Taymans  <wim@fluendo.com>
24007
24008         * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
24009         (gst_dvdec_change_state):
24010         * ext/dv/gstdvdec.h:
24011         Fix timestamp, duration and offset of the buffers.
24012
24013 2004-06-27  Wim Taymans  <wim@fluendo.com>
24014
24015         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
24016         (gst_multifdsink_class_init), (gst_multifdsink_add),
24017         (gst_multifdsink_remove), (gst_multifdsink_clear),
24018         (gst_multifdsink_client_remove),
24019         (gst_multifdsink_handle_client_read),
24020         (gst_multifdsink_client_queue_data),
24021         (gst_multifdsink_client_queue_caps),
24022         (gst_multifdsink_client_queue_buffer),
24023         (gst_multifdsink_handle_client_write),
24024         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
24025         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
24026         (gst_multifdsink_init_send), (gst_multifdsink_close):
24027         * gst/tcp/gstmultifdsink.h:
24028         * gst/tcp/gsttcpserversink.c:
24029         (gst_tcpserversink_handle_server_read),
24030         (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
24031         More multifdsink fixes, more recovery policy fixes.
24032         Removed stupid g_print
24033
24034 2004-06-26  Wim Taymans  <wim@fluendo.com>
24035
24036         * gst/tcp/Makefile.am:
24037         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
24038         (gst_multifdsink_get_type), (gst_multifdsink_base_init),
24039         (gst_multifdsink_class_init), (gst_multifdsink_init),
24040         (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
24041         (gst_multifdsink_handle_client_read),
24042         (gst_multifdsink_client_queue_data),
24043         (gst_multifdsink_client_queue_caps),
24044         (gst_multifdsink_client_queue_buffer),
24045         (gst_multifdsink_handle_client_write),
24046         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
24047         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
24048         (gst_multifdsink_chain), (gst_multifdsink_set_property),
24049         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
24050         (gst_multifdsink_close), (gst_multifdsink_change_state):
24051         * gst/tcp/gstmultifdsink.h:
24052         * gst/tcp/gsttcpplugin.c: (plugin_init):
24053         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
24054         (gst_tcpserversink_class_init), (gst_tcpserversink_init),
24055         (gst_tcpserversink_handle_server_read),
24056         (gst_tcpserversink_handle_select),
24057         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
24058         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
24059         * gst/tcp/gsttcpserversink.h:
24060         Added multifdsink, made tcpserversink a subclass of fdsink, removed
24061         one of the locks, added recovery policy to multifdsink.
24062
24063 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
24064
24065         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
24066           fix decision for when getting frames with same timestamp
24067         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
24068         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24069         (gst_v4lsrc_get_property):
24070         * sys/v4l/gstv4lsrc.h:
24071           add latency offset property
24072
24073 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
24074
24075         * gst/videorate/gstvideorate.c: (gst_videorate_chain),
24076         (plugin_init):
24077           fix debugging. add category.
24078
24079 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
24080
24081         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
24082           fix wrong offsets
24083
24084 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
24085
24086         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
24087         (gst_alsa_src_get_time), (gst_alsa_src_loop),
24088         (gst_alsa_src_change_state):
24089           return a time that is in sync with the element's processing
24090
24091 2004-06-25  Wim Taymans  <wim@fluendo.com>
24092
24093         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
24094         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
24095         (gst_tcpserversink_client_remove),
24096         (gst_tcpserversink_handle_client_read),
24097         (gst_tcpserversink_client_queue_data),
24098         (gst_tcpserversink_client_queue_caps),
24099         (gst_tcpserversink_client_queue_buffer),
24100         (gst_tcpserversink_handle_client_write),
24101         (gst_tcpserversink_queue_buffer),
24102         (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
24103         (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
24104         (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
24105         (gst_tcpserversink_close):
24106         * gst/tcp/gsttcpserversink.h:
24107         Serversink rewrite. Really do non blocking writes to clients and
24108         maintain an internal queue to handle slower clients while not
24109         disturbing fast clients.
24110
24111 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
24112
24113         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24114           better debug, don't override OFFSET and OFFSET_END
24115
24116 2004-06-25  Iain <iain@prettypeople.org>
24117
24118         * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
24119         name=source for the wavparse pipeline.
24120
24121 2004-06-24  Johan Dahlin  <johan@gnome.org>
24122
24123         * ext/theora/theoraenc.c (theora_enc_chain): Call
24124         gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
24125         streamheader caps are set correctly.
24126
24127 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
24128
24129         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
24130         (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
24131           respect minimum bitrate; same could be done for max bitrate
24132
24133 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
24134
24135         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
24136         (gst_vorbisenc_setup):
24137           fix sample rate range
24138
24139 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
24140
24141         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
24142         (gst_oggvorbisenc_setup):
24143         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
24144         (gst_vorbisenc_setup):
24145           resolve ambiguities in code and description
24146
24147 2004-06-24  Wim Taymans  <wim@fluendo.com>
24148
24149         * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
24150         * ext/alsa/gstalsa.h:
24151         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
24152         (gst_alsa_src_update_avail), (gst_alsa_src_loop):
24153         Use alsa trigger_tstamp to get the timestamp of the first
24154         sample in the buffer for more precise sync. Some cleanups.
24155
24156 2004-06-24  Wim Taymans  <wim@fluendo.com>
24157
24158         * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
24159         (gst_audiorate_init), (gst_audiorate_chain),
24160         (gst_audiorate_set_property), (gst_audiorate_get_property):
24161         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24162         (gst_videorate_chain):
24163         Added some logging, fixed an overflow bug in videorate.
24164
24165 2004-06-24  Benjamin Otte  <otte@gnome.org>
24166
24167         * ext/kio/Makefile.am:
24168           fix for builddir != srcdir and distcheck
24169
24170 2004-06-24  Benjamin Otte  <otte@gnome.org>
24171
24172         * gst-libs/gst/colorbalance/Makefile.am:
24173         * gst-libs/gst/mixer/Makefile.am:
24174         * gst-libs/gst/play/Makefile.am:
24175         * gst-libs/gst/tuner/Makefile.am:
24176         * gst/tcp/Makefile.am:
24177         * sys/dxr3/Makefile.am:
24178           don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
24179           tarball.
24180           Also add all *.list files that were missing.
24181         * Makefile.am:
24182           add a distcheck hook to ensure the above doesn't happen again.
24183
24184 2004-06-23  David I. Lehn  <dlehn@users.sourceforge.net>
24185
24186         * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
24187
24188 2004-06-23  Colin Walters  <walters@redhat.com>
24189
24190         * m4/Makefile.am: Distribute gst-fionread.m4.
24191
24192 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
24193
24194         * configure.ac: back to dev
24195
24196 2004-06-23  Wim Taymans  <wim@fluendo.com>
24197
24198         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
24199         (gst_alsa_xrun_recovery):
24200         * ext/alsa/gstalsa.h:
24201         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
24202         (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
24203         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
24204         (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
24205         (gst_alsa_src_loop):
24206         Add clock to alsasrc. Take new capture timestamp when
24207         restarting after an overrun. Split up some functions between
24208         alsasrc and alsasink.
24209
24210 === release 0.8.2 ===
24211
24212 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
24213
24214         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
24215         (gst_alsa_change_state), (gst_alsa_update_avail),
24216         (gst_alsa_xrun_recovery):
24217         * ext/alsa/gstalsa.h:
24218         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24219           merge back changes from release
24220
24221 2004-06-23  Wim Taymans  <wim@fluendo.com>
24222
24223         * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
24224         (gst_audiorate_init), (gst_audiorate_chain),
24225         (gst_audiorate_set_property), (gst_audiorate_get_property):
24226         Implement sample dropping and notify
24227
24228 2004-06-22  Wim Taymans  <wim@fluendo.com>
24229
24230         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
24231         (theora_enc_sink_link), (theora_buffer_from_packet),
24232         (theora_push_packet), (theora_enc_chain):
24233         Some cleanups, make sure the timestamps are correct.
24234
24235 2004-06-22  Wim Taymans  <wim@fluendo.com>
24236
24237         * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
24238         (gst_alsa_change_state), (gst_alsa_update_avail),
24239         (gst_alsa_xrun_recovery):
24240         * ext/alsa/gstalsa.h:
24241         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
24242         Cleanups, take queued samples into account when reporting
24243         the time.
24244
24245 2004-06-22  Wim Taymans  <wim@fluendo.com>
24246
24247         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24248         (gst_videorate_init):
24249         Initialize the property as well.
24250
24251 2004-06-22  Wim Taymans  <wim@fluendo.com>
24252
24253         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24254         (gst_videorate_init), (gst_videorate_chain),
24255         (gst_videorate_set_property), (gst_videorate_get_property):
24256         Add property to make videorate silent.
24257         Add property to prefer new frames over old ones.
24258
24259 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24260
24261         * sys/osxvideo/Makefile.am:
24262         Workaround so that the osxvideo .so file gets linked with the
24263         Cocoa, OpenGL and QuickTime frameworks
24264
24265 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24266
24267         * sys/osxaudio/Makefile.am:
24268         Workaround so that the osxaudio .so file gets linked with the
24269         CoreAudio framework
24270
24271 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24272
24273         * configure.ac:
24274         Whoops, my fault...fixed build issues
24275
24276 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24277
24278         * configure.ac:
24279         Add objective-c support if running in Darwin/Mac OS X
24280         * sys/Makefile.am:
24281         * sys/osxvideo:
24282         * sys/osxvideo/Makefile.am:
24283         * sys/osxvideo/osxvideosink.h:
24284         * sys/osxvideo/osxvideosink.m:
24285         * sys/osxvideo/cocoawindow.h:
24286         * sys/osxvideo/cocoawindow.m:
24287         Add osxvideosink, a cocoa-based osx video sink
24288
24289
24290 2004-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
24291         * ext/dvdnav/gst-dvd:
24292         Grab the gconf key from the right spot
24293         * gst/debug/gstnavseek.c: (gst_navseek_init),
24294         (gst_navseek_segseek), (gst_navseek_handle_src_event),
24295         (gst_navseek_chain):
24296         * gst/debug/gstnavseek.h:
24297           Add 's', 'e' and 'l' keypresses to navseek to define the start,end
24298           and loop parameters of a segment seek.
24299         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
24300         (gst_videotestsrc_get_event_masks),
24301         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
24302         * gst/videotestsrc/gstvideotestsrc.h:
24303           Add seeking support to videotestsrc
24304           Initialise the timestamp_offset variable.
24305
24306 2004-06-18  Wim Taymans  <wim@fluendo.com>
24307
24308         * ext/sidplay/gstsiddec.cc:
24309         Fix negotiation and set correct end offset.
24310
24311 2004-06-18  Thomas Vander Stichele  <thomas at apestaart dot org>
24312
24313         * configure.ac: branch and prerelease
24314
24315 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
24316
24317         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
24318         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
24319         (gst_tcpclientsrc_init_receive):
24320         * gst/tcp/gsttcpclientsrc.h:
24321           read caps when connecting to server for GDP so we set them correctly
24322
24323 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
24324
24325         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
24326           notify drops and duplicates
24327         * gst/videoscale/videoscale.c: (videoscale_get_structure):
24328           no good reason to limit ourselves to 100x100
24329
24330 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
24331
24332         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
24333         (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
24334         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24335         (gst_v4lsrc_get_property):
24336         * sys/v4l/gstv4lsrc.h:
24337         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24338         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
24339         (gst_v4l_set_audio):
24340         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
24341         (gst_v4lsrc_try_capture):
24342         * sys/v4l/v4lsrc_calls.h:
24343           change try_palette to more general try_capture
24344           add autoprobe option so we can turn off autoprobing
24345           various fixes
24346
24347 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
24348
24349         * configure.ac:
24350           add videorate
24351         * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
24352         (gst_ximagesink_class_init):
24353         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
24354         (gst_xvimagesink_class_init):
24355           run them as finalize, not dispose, since dispose can be invoked
24356           multiple times
24357
24358 2004-06-17  Wim Taymans  <wim@fluendo.com>
24359
24360         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
24361         (gst_alsa_get_time), (gst_alsa_xrun_recovery):
24362         * ext/alsa/gstalsa.h:
24363         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
24364         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
24365         (gst_alsa_src_change_state):
24366         * ext/alsa/gstalsasrc.h:
24367         Make the xrun code timestamp and offset the buffers correctly.
24368         moved the clock to the base class, use alsa methods to get time.
24369         Do correct timestamping on outgoing buffers.
24370
24371 2004-06-17  Wim Taymans  <wim@fluendo.com>
24372
24373         * gst/audiorate/Makefile.am:
24374         * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
24375         (gst_audiorate_base_init), (gst_audiorate_class_init),
24376         (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
24377         (gst_audiorate_set_property), (gst_audiorate_get_property),
24378         (gst_audiorate_change_state), (plugin_init):
24379         Added an audiorate converter that fills in gaps.
24380
24381 2004-06-17  Johan Dahlin  <johan@gnome.org>
24382
24383         * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
24384
24385 2004-06-16  Wim Taymans  <wim@fluendo.com>
24386
24387         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
24388         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
24389         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
24390         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24391         (gst_v4lsrc_get_property):
24392         * sys/v4l/gstv4lsrc.h:
24393         Added a copy mode to v4lsrc where it will output a copied version
24394         of its internal hardware buffer.
24395         Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
24396         can't | them.
24397
24398 2004-06-16  Wim Taymans  <wim@fluendo.com>
24399
24400         * sys/oss/gstosssrc.c: (gst_osssrc_get):
24401         Timestamp fixes.
24402
24403 2004-06-16  Wim Taymans  <wim@fluendo.com>
24404
24405         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
24406         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
24407         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24408         (gst_v4lsrc_get_property):
24409         * sys/v4l/gstv4lsrc.h:
24410         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
24411         Added a sync mode enum property to control v4lsrc timestamp method
24412         Removed the use-fixed-fps property and moved functionality in
24413         the enum.
24414         Don't error on an error value from v4l-conf, it might not always
24415         be a real error.
24416
24417 2004-06-16  Wim Taymans  <wim@fluendo.com>
24418
24419         * gst/videorate/Makefile.am:
24420         * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
24421         (gst_videorate_base_init), (gst_videorate_class_init),
24422         (gst_videorate_getcaps), (gst_videorate_link),
24423         (gst_videorate_init), (gst_videorate_chain),
24424         (gst_videorate_set_property), (gst_videorate_get_property),
24425         (gst_videorate_change_state), (plugin_init):
24426         Added a video timestamp corrector.
24427
24428 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24429
24430         fixed a potential leak with previous commit
24431
24432         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
24433
24434 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24435
24436         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
24437         Added missing refcount, fixes bug #144425
24438         Cheers Tim for finding the bug
24439
24440 2004-06-15  Thomas Vander Stichele  <thomas at apestaart dot org>
24441
24442         * sys/v4l/gstv4l.c: (plugin_init):
24443         * sys/v4l/gstv4lcolorbalance.c:
24444         * sys/v4l/gstv4lcolorbalance.h:
24445         * sys/v4l/gstv4lelement.c:
24446         * sys/v4l/gstv4lelement.h:
24447         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
24448         * sys/v4l/gstv4lmjpegsink.h:
24449         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
24450         * sys/v4l/gstv4lmjpegsrc.h:
24451         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
24452         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
24453         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
24454         * sys/v4l/gstv4lsrc.h:
24455         * sys/v4l/gstv4ltuner.c:
24456         * sys/v4l/gstv4ltuner.h:
24457         * sys/v4l/gstv4lxoverlay.c:
24458         * sys/v4l/gstv4lxoverlay.h:
24459         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
24460         (gst_v4l_set_window), (gst_v4l_enable_overlay):
24461         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24462         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
24463         (gst_v4l_set_audio):
24464         * sys/v4l/v4l_calls.h:
24465         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
24466         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
24467         (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
24468         (gst_v4lmjpegsink_playback_init),
24469         (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
24470         (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
24471         (gst_v4lmjpegsink_playback_stop),
24472         (gst_v4lmjpegsink_playback_deinit):
24473         * sys/v4l/v4lmjpegsink_calls.h:
24474         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
24475         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
24476         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
24477         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
24478         (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
24479         (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
24480         * sys/v4l/v4lmjpegsrc_calls.h:
24481         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
24482         (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
24483         (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
24484         (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
24485         (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
24486         (gst_v4lsrc_try_palette):
24487         * sys/v4l/v4lsrc_calls.h:
24488           bunch of paranoia cleanups
24489
24490 2004-06-14  David Schleef  <ds@schleef.org>
24491
24492         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
24493         (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
24494         Send discont events and change timestamps appropriately when
24495         we get a seek event.  (bug #144240)
24496         * ext/cdparanoia/gstcdparanoia.h:
24497
24498 2004-06-14  Benjamin Otte  <otte@gnome.org>
24499
24500         * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
24501           snd_pcm_hw_params_set_rate  since the latter fails for no good
24502           reason on some setups.
24503
24504 2004-06-14  David Schleef  <ds@schleef.org>
24505
24506         * gst/volume/demo.c: (value_changed_callback): exp10() is not
24507         standard.  Thank you for playing.
24508
24509 2004-06-14  Wim Taymans  <wim@fluendo.com>
24510
24511         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
24512         Patch 1.3 broke the ordering of the colorspace info and
24513         made the plugin basically work by coincidence, reordered
24514         the info.
24515
24516 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
24517
24518         * ext/lame/gstlame.c:
24519         * ext/mad/gstmad.c:
24520           sync caps.  Make sure mad can only output a list of rates, not
24521           a full range.  In the future, have three caps lists for each of the
24522           mpeg versions.  Change mpegversion to a double as well.
24523
24524 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
24525
24526         * gst/volume/.cvsignore:
24527         * gst/volume/Makefile.am:
24528         * gst/volume/demo.c: (value_changed_callback), (idler),
24529         (setup_gui), (main):
24530           added small demo app
24531
24532 2004-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
24533         * ext/esd/esdsink.c: (gst_esdsink_change_state):
24534         * ext/esd/esdsink.h:
24535         Close the esd connection on pause, because esd will just wait -
24536         blocking all other esd clients indefinitely.
24537
24538 2004-06-12  Christophe Fergeau  <teuf@gnome.org>
24539
24540         * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
24541           previous commit with GST_DEBUG
24542
24543 2004-06-12  Thomas Vander Stichele  <thomas at apestaart dot org>
24544
24545         * configure.ac:
24546           add a header check for a dvdread header in dvdnav.  Fixes #133002
24547
24548 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24549
24550         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
24551         * gst/tcp/gsttcpclientsink.h:
24552         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
24553         * gst/tcp/gsttcpclientsrc.h:
24554         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
24555         (gst_tcpserversink_handle_server_read),
24556         (gst_tcpserversink_init_send):
24557         * gst/tcp/gsttcpserversink.h:
24558         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
24559         * gst/tcp/gsttcpserversrc.h:
24560         Modified the tcp plugins so they are portable (IPv4,IPv6, any future
24561         version of IP)
24562
24563 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24564
24565         * configure.ac:
24566         Added ogg library so that OSX detects libtheora properly
24567
24568 2004-06-11  Wim Taymans  <wim@fluendo.com>
24569
24570         * ext/theora/theoradec.c: (theora_dec_chain),
24571         (theora_dec_change_state):
24572         Don't try to decode frames before we received a keyframe.
24573
24574 2004-06-11  Wim Taymans  <wim@fluendo.com>
24575
24576         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
24577         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
24578         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24579         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
24580         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
24581         Added property to set the maximum delay of a page.
24582
24583 2004-06-10  Wim Taymans  <wim@fluendo.com>
24584
24585         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
24586         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
24587         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24588         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
24589         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
24590         Added max-delay property to control the maximum amount
24591         of data to put in one page.
24592
24593 2004-06-10  Wim Taymans  <wim@fluendo.com>
24594
24595         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
24596         (gst_theora_enc_init), (theora_enc_sink_link),
24597         (theora_buffer_from_packet), (theora_enc_set_property),
24598         (theora_enc_get_property):
24599         Set duration on encoded buffer, added some more properties
24600
24601 2004-06-10  Wim Taymans  <wim@fluendo.com>
24602
24603         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
24604         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24605         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
24606         * ext/theora/theoraenc.c: (theora_enc_chain):
24607         Fix refcounting bugs
24608
24609 2004-06-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24610
24611         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
24612         (gst_asf_demux_loop), (gst_asf_demux_process_file),
24613         (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
24614         (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
24615         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
24616         (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
24617         (gst_asf_demux_change_state):
24618         * gst/asfdemux/gstasfdemux.h:
24619           You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
24620           feels like. I think we should set a new requirement for demuxers
24621           from now on to implement sane loop functions, data loops, query
24622           and seek functions before first commit into CVS. And this commit
24623           fixes all of the above.
24624
24625 2004-06-10  Christophe Fergeau  <teuf@gnome.org>
24626
24627         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
24628           vorbis comments are properly encoded in UTF-8 before adding them
24629           to a GstTagList
24630
24631 2004-06-09  Benjamin Otte  <otte@gnome.org>
24632
24633         * ext/alsa/gstalsa.c: (add_channels):
24634           handle min <= max correctly
24635         * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
24636         (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
24637           add fixation functions so we fixate correctly. No preferring of alaw
24638           anymore because it's the first structure.
24639         * ext/alsa/gstalsa.h:
24640         * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
24641         (gst_alsa_hw_params_dump):
24642           add functions to ease debugging in alsalib
24643         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
24644         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
24645         (gst_alsa_start_audio):
24646           only specify hw params if we really setup a format (fixes #134007 -
24647           or at least works around it)
24648
24649 2004-06-09  Wim Taymans  <wim@fluendo.com>
24650
24651         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
24652         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
24653         (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
24654         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
24655         (gst_ogg_mux_loop):
24656         Use stream caps to setup the initial pages in the ogg stream.
24657         Correctly set the streamheader caps on the srcpad.
24658
24659 2004-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
24660
24661         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
24662         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
24663         (gst_v4lsrc_getcaps):
24664         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24665         (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
24666           add querying of fps lists for webcams.  Negotiating to a framerate
24667           now works.
24668
24669 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24670
24671         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
24672         (theora_push_buffer), (theora_push_packet),
24673         (theora_set_header_on_caps), (theora_enc_chain):
24674           mark buffers and put on streamheader, raw theora streaming
24675           now works too, whee
24676
24677 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24678
24679         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
24680         (gst_tcp_gdp_read_caps):
24681           do a looping read for caps and GDP headers too
24682
24683 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24684
24685         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24686         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
24687           return EOS instead of NULL in _get
24688
24689 2004-06-08  Wim Taymans  <wim@fluendo.com>
24690
24691         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
24692         (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
24693         (gst_tcp_gdp_write_caps):
24694         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24695         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
24696         (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
24697         Memory leak fixes
24698
24699 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24700
24701         * ext/vorbis/Makefile.am:
24702         * ext/vorbis/vorbis.c: (plugin_init):
24703         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
24704         (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
24705         (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
24706         (vorbis_parse_change_state):
24707         * ext/vorbis/vorbisparse.h:
24708           adding a vorbisparse element that marks the buffers, streaming
24709           raw vorbis using GDP now works, whee
24710
24711 2004-06-08  Wim Taymans  <wim@fluendo.com>
24712
24713         * ext/jpeg/Makefile.am:
24714         * ext/jpeg/README:
24715         * ext/jpeg/gstjpeg.c: (plugin_init):
24716         * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
24717         (gst_smokedec_base_init), (gst_smokedec_class_init),
24718         (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
24719         * ext/jpeg/gstsmokedec.h:
24720         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
24721         (gst_smokeenc_base_init), (gst_smokeenc_class_init),
24722         (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
24723         (gst_smokeenc_resync), (gst_smokeenc_chain),
24724         (gst_smokeenc_set_property), (gst_smokeenc_get_property):
24725         * ext/jpeg/gstsmokeenc.h:
24726         * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
24727         (smokecodec_flush_destination), (smokecodec_term_destination),
24728         (smokecodec_init_source), (smokecodec_fill_input_buffer),
24729         (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
24730         (smokecodec_term_source), (smokecodec_encode_new),
24731         (smokecodec_decode_new), (smokecodec_info_free),
24732         (smokecodec_set_quality), (smokecodec_get_quality),
24733         (smokecodec_set_threshold), (smokecodec_get_threshold),
24734         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
24735         (find_best_size), (abs_diff), (put), (smokecodec_encode),
24736         (smokecodec_parse_header), (smokecodec_decode):
24737         * ext/jpeg/smokecodec.h:
24738         Added a new simple jpeg based codec
24739
24740 2004-06-08  Wim Taymans  <wim@fluendo.com>
24741
24742         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24743         (gst_multipart_mux_loop):
24744         Fix memory leak
24745
24746 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24747
24748         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24749         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
24750         (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
24751         (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
24752         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
24753         * gst/tcp/gsttcpserversink.h:
24754           take streamheader into account
24755
24756 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24757
24758         * gst/level/Makefile.am:
24759         * gst/level/gstlevel.c: (gst_level_class_init):
24760           clean up marshal generation
24761
24762 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24763
24764         * gst/tcp/Makefile.am:
24765         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
24766         (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
24767         (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
24768         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
24769         (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
24770         (gst_tcpclientsrc_get_property):
24771         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
24772         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
24773         (gst_tcpserversink_handle_client_read),
24774         (gst_tcpserversink_handle_client_write),
24775         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
24776         * gst/tcp/gsttcpserversink.h:
24777           add signals client-added and client-removed
24778         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
24779         (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
24780         (gst_tcpserversrc_get_property):
24781         uniformized, change default protocol to NONE
24782         * gst/tcp/gsttcp-marshal.list: added
24783 2004-06-07  Benjamin Otte  <otte@gnome.org>
24784
24785         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24786           handle discont events if they happen before caps nego
24787
24788 2004-06-07  Wim Taymans  <wim@fluendo.com>
24789
24790         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
24791         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
24792         (gst_multipart_demux_plugin_init):
24793         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24794         (gst_multipart_mux_init), (gst_multipart_mux_loop),
24795         (gst_multipart_mux_change_state):
24796         Small updates, fix a memleak
24797
24798 2004-06-07  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
24799
24800         * configure.ac: OSS portability
24801         * ext/arts/gst_arts.c: idem
24802         * sys/oss/gstosselement.c: idem
24803         * sys/oss/gstossmixer.c: idem
24804         * sys/oss/gstosssink.c: idem
24805         * sys/oss/gstosssrc.c: idem
24806         * sys/oss/oss_probe.c: idem
24807           - check for soundcard.h in different places for some BSD
24808
24809 2004-06-07  Jan Schmidt <thaytan@mad.scientist.com>
24810
24811         * AUTHORS:
24812         Add me to the authors file
24813         * configure.ac:
24814         Increase the libdv requirement to >= version 0.100
24815         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
24816         (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
24817         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
24818         * ext/dv/gstdvdec.h:
24819         Add support for the new_media flag when sending DISCONT events
24820         Make the querying work when video pad is not linked
24821
24822 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
24823
24824         reviewed by Benjamin Otte  <otte@gnome.org>
24825
24826         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
24827           create a NULL-initialized array of pads, so we don't think they
24828           exist already. (fixes #143130)
24829
24830 2004-06-07  Benjamin Otte  <otte@gnome.org>
24831
24832         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
24833         (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
24834         (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
24835           don't use // coments
24836
24837 2004-06-07  Benjamin Otte  <otte@gnome.org>
24838
24839         * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
24840           cast to GstClockTime to get higher granularity
24841         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24842           use gst_element_set_time_delay to get the exact time
24843         * ext/mad/gstmad.c: (gst_mad_chain):
24844           use the negotiated rate instead of the current frame's rate which
24845           might be wrong because of bit errors. This avoids emitting totally
24846           bogus timestamps and screwing sync.
24847         (fixes #143454)
24848
24849 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
24850
24851         reviewed by Benjamin Otte  <otte@gnome.org>
24852
24853         * gst/adder/gstadder.c: (gst_adder_loop):
24854           properly error out when no negotiation has happened yet. (fixes
24855           #143032)
24856
24857 2004-06-06  Benjamin Otte  <otte@gnome.org>
24858
24859         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
24860           forward correctly transformed offset in discont events. Based on
24861           patch by Arwed v. Merkatz. (fixes #142851)
24862
24863 2004-06-06  David Schleef  <ds@schleef.org>
24864
24865         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
24866         G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS.  Should fix compile
24867         problems on several systems.
24868
24869 2004-06-06  Benjamin Otte  <otte@gnome.org>
24870
24871         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
24872           use explicit caps on the srcpad
24873         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
24874           properly error out if caps couldn't be set (fixes #142764)
24875
24876 2004-06-06  Benjamin Otte  <otte@gnome.org>
24877
24878         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
24879         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
24880         (gst_alsa_start_audio):
24881           - don't call set_periods_integer anymore, it breaks the
24882           configuration randomly
24883           - call snd_pcm_hw_params_set_access directly instead of using masks
24884           - don't fail if the sw_params can't be set, just use the default
24885           params and hope it works. Alsalib has weird issues when you touch
24886           sw_params and does no proper error reporting about what failed.
24887         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
24888         (gst_alsa_close_audio):
24889           make our alsa debugging go via gst debugging and not conditionally
24890           defined
24891         * ext/alsa/gstalsa.h:
24892           add ALSA_DEBUG_FLUSH macro
24893         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
24894         (plugin_init):
24895           wrap alsa errors to be printed via the gst debugging system and not
24896           spammed to stderr
24897
24898 2004-06-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24899
24900         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
24901         (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
24902         (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
24903         (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
24904         (qtdemux_parse_trak):
24905         * gst/qtdemux/qtdemux.h:
24906           Bitch. Also known as seeking, querying & co.
24907         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
24908         (gst_osssink_change_state):
24909         * sys/oss/gstosssink.h:
24910           Resyncing is for weenies, this hack is no longer needed and was
24911           broken anyway (since it - unintendedly - always leaves resync to
24912           TRUE).
24913
24914 2004-06-05  Andrew Turner <zxombie@hotpop.com>
24915
24916         * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
24917         * gst/tcp/gsttcpclientsrc.h: idem
24918           - define MSG_NOSIGNAL if not done
24919           - include unistd.h for off_t
24920           (fixes #143749)
24921
24922 2004-06-05  Benjamin Otte  <otte@gnome.org>
24923
24924         * configure.ac:
24925         * ext/kio/Makefile.am:
24926           check for qt's moc preprocessor explicitly and use it
24927
24928 2004-06-03  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
24929
24930         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
24931           don't get a signal for EPIPE on socket writes
24932           (somebody check if this works on other platforms)
24933
24934 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
24935
24936         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
24937         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
24938           check error condition on available samples correctly
24939
24940 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
24941
24942         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
24943           avoid a segfault
24944         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
24945         (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
24946         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
24947         (gst_tcpserversrc_gdp_read_header):
24948          use ssize_t over size_t since the former is signed and thus the
24949          check for error codes can work
24950
24951 2004-06-02  Wim Taymans  <wim@fluendo.com>
24952
24953         reviewed by: Johan
24954
24955         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24956         (gst_multipart_mux_loop):
24957         Oops
24958
24959 2004-06-02  Wim Taymans  <wim@fluendo.com>
24960
24961         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24962         (gst_multipart_mux_init), (gst_multipart_mux_loop),
24963         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
24964         (gst_multipart_mux_change_state):
24965         Added configurable boundary specifier, added the value as a
24966         caps field as well.
24967
24968 2004-06-02  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24969
24970         * gst/tcp/gsttcp.c:
24971         * gst/tcp/gsttcpclientsrc.c:
24972         * gst/tcp/gsttcpclientsrc.h:
24973         * gst/tcp/gsttcpserversrc.c:
24974           - portability fix, to compile on OSX
24975             (fixes #143146)
24976
24977         * sys/osxaudio/gstosxaudioelement.c:
24978         * sys/osxaudio/gstosxaudiosink.c:
24979         * sys/osxaudio/gstosxaudiosrc.c:
24980           - compilation warnings on OSX
24981             (fixes #143153)
24982
24983 2004-06-02  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24984
24985         * ext/vorbis/vorbisdec.c : sign warning fixes
24986
24987         * gst-libs/gst/mixer/mixertrack.c :
24988           do no use defines which are glib 2.4 specific
24989
24990 2004-06-01  Christophe Fergeau  <teuf@gnome.org>
24991
24992         * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
24993           buffer since libflac doesn't expect it (reports a sync error when
24994           it encounters that)
24995
24996
24997 2004-06-01  Owen Fraser-Green  <owen@discobabe.net>
24998
24999         * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
25000         * gst-libs/gst/mixer/mixertrack.c:
25001         (gst_mixer_track_get_property), (get_mixer_track_init),
25002         (get_mixer_track_get_property): Added property accessors
25003         * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
25004         * gst-libs/gst/mixer/mixeroptions.c:
25005         (gst_mixer_options_get_values): Added
25006         * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
25007         * gst-libs/gst/mixer/mixer.c: Fixed comment
25008
25009
25010 2004-06-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
25011
25012         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
25013           improve error messages on open
25014
25015
25016 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
25017
25018         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
25019           check if v4l-conf is in path
25020
25021 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
25022
25023         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
25024           change assert to a more readable error message
25025
25026 2004-05-31  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
25027
25028         * gst-libs/gst/tuner/tunerchannel.h:
25029           - add a freq_multiplicator field to make the conversion
25030             between internal frequency unit and Hz
25031         * sys/v4l/gstv4lelement.c:
25032         * sys/v4l2/gstv4l2element.c:
25033           - change default video device to /dev/video0
25034         * sys/v4l/v4l_calls.c:
25035         * sys/v4l2/v4l2_calls.c:
25036           - we only expose frequency to the user in Hz instead of
25037             bastard v4lX unit (either 62.5kHz or 62.5Hz)
25038
25039 2004-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
25040         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
25041           Initialise b_o_s and e_o_s variables
25042         * gst-libs/gst/riff/riff-media.c:
25043         (gst_riff_create_video_caps_with_data):
25044           Add some unusual fourcc's from mplayer avi's
25045         * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
25046           Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
25047           autoplugging.
25048
25049 2004-05-28  Wim Taymans  <wim@fluendo.com>
25050
25051         * configure.ac:
25052         * gst/alpha/Makefile.am:
25053         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
25054         (gst_alpha_get_type), (gst_alpha_base_init),
25055         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
25056         (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
25057         (gst_alpha_chroma_key), (gst_alpha_chain),
25058         (gst_alpha_change_state), (plugin_init):
25059         A plugin to add an alpha channel to I420 video. Can optionally do
25060         chroma keying.
25061         * gst/multipart/Makefile.am:
25062         * gst/multipart/multipart.c: (plugin_init):
25063         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
25064         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
25065         (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
25066         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
25067         (gst_multipart_demux_change_state),
25068         (gst_multipart_demux_plugin_init):
25069         * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
25070         (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
25071         (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
25072         (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
25073         (gst_multipart_mux_pad_unlink),
25074         (gst_multipart_mux_request_new_pad),
25075         (gst_multipart_mux_handle_src_event),
25076         (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
25077         (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
25078         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
25079         (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
25080         A Multipart demuxer/muxer. Not sure if it violates specs. Used to
25081         send multipart jpeg images to a browser.
25082         * gst/videobox/Makefile.am:
25083         * gst/videobox/README:
25084         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
25085         (gst_video_box_get_type), (gst_video_box_base_init),
25086         (gst_video_box_class_init), (gst_video_box_init),
25087         (gst_video_box_set_property), (gst_video_box_get_property),
25088         (gst_video_box_sink_link), (gst_video_box_i420),
25089         (gst_video_box_ayuv), (gst_video_box_chain),
25090         (gst_video_box_change_state), (plugin_init):
25091         Crops or adds borders around an image. can do alpha channel
25092         borders as well.
25093         * gst/videomixer/Makefile.am:
25094         * gst/videomixer/README:
25095         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
25096         (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
25097         (gst_videomixer_pad_get_sink_event_masks),
25098         (gst_videomixer_pad_get_property),
25099         (gst_videomixer_pad_set_property),
25100         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
25101         (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
25102         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
25103         (gst_videomixer_base_init), (gst_videomixer_class_init),
25104         (gst_videomixer_init), (gst_videomixer_request_new_pad),
25105         (gst_videomixer_handle_src_event),
25106         (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
25107         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
25108         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
25109         (gst_videomixer_loop), (gst_videomixer_get_property),
25110         (gst_videomixer_set_property), (gst_videomixer_change_state),
25111         (plugin_init):
25112         Generic video mixer plugin, can handle multiple inputs all with
25113         different framerates and video sizes. Is fully alpha channel
25114         aware.
25115
25116 2004-05-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25117
25118         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
25119           Select first track as master track. Not sure how else to handle
25120           that...
25121         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
25122           Discard discont events. Should fix #142962.
25123
25124 2004-05-26  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25125
25126         * ext/alsa/Makefile.am:
25127         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
25128         (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
25129         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
25130         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
25131         (gst_alsa_mixer_get_option):
25132         * ext/alsa/gstalsamixer.h:
25133         * ext/alsa/gstalsamixeroptions.c:
25134         (gst_alsa_mixer_options_get_type),
25135         (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
25136         (gst_alsa_mixer_options_new):
25137         * ext/alsa/gstalsamixeroptions.h:
25138         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
25139         * ext/alsa/gstalsamixertrack.h:
25140           Add enumerations (as GstMixerOptions). Make correct distinction
25141           between input/output tracks. Add capture/playback private flag.
25142           Use flag to decide on whether to set capture or playback volumes
25143           or switches. Use playback and record switches.
25144         * gst-libs/gst/mixer/Makefile.am:
25145         * gst-libs/gst/mixer/mixer-marshal.list:
25146         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
25147         (gst_mixer_set_option), (gst_mixer_get_option),
25148         (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
25149         (gst_mixer_volume_changed), (gst_mixer_option_changed):
25150         * gst-libs/gst/mixer/mixer.h:
25151         * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
25152         (gst_mixer_options_class_init), (gst_mixer_options_init),
25153         (gst_mixer_options_dispose):
25154         * gst-libs/gst/mixer/mixeroptions.h:
25155           Add GstMixerOptions.
25156         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
25157           Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
25158           broken device detection on computers with multiple OSS sound
25159           cards.
25160
25161 2004-05-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25162
25163         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
25164           fixate nicely even when the peer is not negotiating
25165
25166 2004-05-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25167
25168         * gst/audioconvert/gstaudioconvert.c:
25169         (gst_audio_convert_parse_caps):
25170           make sure we don't allow depth > width
25171         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
25172           fixate endianness to G_BYTE_ORDER as default
25173         * gst/audioscale/gstaudioscale.c:
25174           we don't handle another endianness as host-endianness
25175
25176 2004-05-25  David Schleef  <ds@schleef.org>
25177
25178         * gst/ffmpegcolorspace/mem.c:  malloc() is in stdlib.h, not malloc.h
25179
25180 2004-05-24  Benjamin Otte  <otte@gnome.org>
25181
25182         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
25183         (gst_oggvorbisenc_setup):
25184           properly fail when we can't setup the vorbis encoder due to
25185           unsupported settings
25186         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
25187         (gst_vorbisenc_setup):
25188           same
25189         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
25190           fix case where warnings occured when one pad was unlinked while the
25191           other's link function was called
25192
25193 2004-05-24  Thomas Vander Stichele  <thomas at apestaart dot org>
25194
25195         * gst/tcp/Makefile.am:
25196           use GST_ENABLE_NEW
25197
25198 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25199
25200         * gst-libs/gst/resample/private.h:
25201           don't use optimizations that are #if 0'ed
25202
25203 2004-05-24  Wim Taymans  <wim@fluendo.com>
25204
25205         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
25206         Fix potential division by zero error and hopefully get
25207         the position query right to get correct timestamps on avi
25208         audio.
25209
25210 2004-05-24  Wim Taymans  <wim@fluendo.com>
25211
25212         * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
25213         (gst_videoscale_scale_nearest_str2),
25214         (gst_videoscale_scale_nearest_str4),
25215         (gst_videoscale_scale_nearest_32bit),
25216         (gst_videoscale_scale_nearest_24bit),
25217         (gst_videoscale_scale_nearest_16bit):
25218         Fix the scaling algorithm and avoid a buffer overflow.
25219         removed the while loop in the scaling function as it
25220         was used for point sampling only.
25221
25222 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25223
25224         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
25225         (gst_id3_tag_class_init), (gst_id3_tag_init),
25226         (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
25227         (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
25228         (gst_id3_tag_send_tag_event):
25229           lots of fixes to make id3mux work and id3demux work correctly
25230
25231 2004-05-24  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25232
25233         * ext/Makefile.am:
25234           add rules to build shout2send (was removed by accident
25235           when this module was no more marked experimental/broken)
25236
25237 2004-05-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
25238
25239         * ext/shout2/gstshout2.c:
25240         * ext/shout2/gstshout2.h:
25241           adding a "connection problem" signal to shout2send
25242           (fixes #142954)
25243
25244 2004-05-21  Thomas Vander Stichele  <thomas at apestaart dot org>
25245
25246         * ext/kio/kioreceiver.cpp:
25247         * ext/kio/kioreceiver.h:
25248           fix sign comparison issues
25249
25250 2004-05-21  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25251
25252         * gst/cdxaparse/gstcdxaparse.c:
25253         * gst/cdxaparse/gstcdxaparse.h:
25254           some renaming
25255           add some checks/sanity
25256           prepare for seek addition
25257
25258         * sys/sunaudio/gstsunaudio.c:
25259           remove exported dupe init function
25260
25261 2004-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
25262
25263         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
25264         (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
25265           Fix format conversion and position querying.
25266         * gst/debug/progressreport.c: (gst_progressreport_report):
25267           Don't output a bogus total value that we didn't query.
25268         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
25269           Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
25270           only a blank window after xine has been used.
25271
25272 2004-05-21  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
25273
25274         * m4/as-arts.m4:
25275           sync with upstream version to fix test on FC2
25276           readd with -ko to preserve Id header
25277
25278 2004-05-20  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25279
25280         * configure.ac:
25281           test for FIONREAD ioctl in sys/filio.h for Solaris compat.
25282         * gst/tcp/gsttcpclientsrc.c: idem
25283         * gst/tcp/gsttcpserversink.c: idem
25284         * gst/tcp/gsttcpserversrc.c: idem
25285         * m4/gst-fionread.m4: idem
25286
25287         * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
25288
25289         * configure.ac: enable speex plugin for speex 1.1.5+
25290         * ext/speex/gstspeexenc.c: fix cast warning
25291
25292         * ext/esd/README: fix typo
25293
25294 2004-05-20  David Schleef  <ds@schleef.org>
25295
25296         * configure.ac: Minor cosmetic change to convince the buildbot to
25297         reautogen.
25298         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
25299         (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
25300         (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
25301         (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
25302         (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
25303         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
25304         More hacking.  Plays audio now.
25305
25306 2004-05-20  David Schleef  <ds@schleef.org>
25307
25308         * configure.ac:
25309         * sys/Makefile.am:
25310
25311 2004-05-20  David Schleef  <ds@schleef.org>
25312
25313         * sys/osxaudio/Makefile.am:  New OS X audio plugin by Zaheer Abbas Merali
25314         * sys/osxaudio/gstosxaudio.c:
25315         * sys/osxaudio/gstosxaudioelement.c:
25316         * sys/osxaudio/gstosxaudioelement.h:
25317         * sys/osxaudio/gstosxaudiosink.c:
25318         * sys/osxaudio/gstosxaudiosink.h:
25319         * sys/osxaudio/gstosxaudiosrc.c:
25320         * sys/osxaudio/gstosxaudiosrc.h:
25321
25322 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
25323
25324         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
25325         (gst_vorbisenc_chain):
25326           put the codec headers on the caps as streamheader as well as
25327           pushing them out
25328
25329 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
25330
25331         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
25332         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
25333         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
25334         split up push_packet into two functions
25335
25336 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
25337
25338         * gst/tcp/.cvsignore:
25339           ignore enums
25340         * gst/tcp/Makefile.am:
25341         * gst/tcp/README:
25342         * gst/tcp/gsttcp.c:
25343         * gst/tcp/gsttcp.h:
25344         * gst/tcp/gsttcpclientsink.c:
25345         * gst/tcp/gsttcpclientsink.h:
25346         * gst/tcp/gsttcpclientsrc.c:
25347         * gst/tcp/gsttcpclientsrc.h:
25348         * gst/tcp/gsttcpplugin.c:
25349         * gst/tcp/gsttcpserversink.c:
25350         * gst/tcp/gsttcpserversink.h:
25351         * gst/tcp/gsttcpserversrc.c:
25352         * gst/tcp/gsttcpserversrc.h:
25353           add new tcp elements
25354
25355 2004-05-19  Wim Taymans  <wim@fluendo.com>
25356
25357         * gst/law/mulaw-conversion.c: (mulaw_encode):
25358         Fix overflow bug in ulaw encoding.
25359
25360 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25361
25362         * ext/mad/gstmad.c: (gst_mad_handle_event):
25363           don't unref the event twice
25364
25365 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25366
25367         * configure.ac:
25368           remove -Wno-sign-compare
25369
25370 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25371
25372         * configure.ac:
25373           remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
25374           if you want to work against glib 2.2 and 2.4
25375
25376 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
25377
25378         * gst/tcp/Makefile.am:
25379         * gst/tcp/gsttcp.c:
25380         * gst/tcp/gsttcp.h:
25381         * gst/tcp/gsttcpsink.h:
25382         * gst/tcp/gsttcpsrc.h:
25383           gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
25384
25385 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25386
25387         * gst/debug/tests.c: (md5_get_value):
25388           fix segfault on gst-inspect
25389
25390 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25391
25392         * gst/debug/testplugin.c:
25393         * gst/debug/tests.c:
25394         * gst/debug/tests.h:
25395           add new extensible and configurable testing element. Current tests
25396           include buffer count, stream length, timestamp/duration matching and
25397           md5.
25398         * gst/debug/Makefile.am:
25399         * gst/debug/gstdebug.c: (plugin_init):
25400           add infrastructure for new element
25401
25402 2004-05-19  Johan Dahlin  <johan@gnome.org>
25403
25404         * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
25405         ending of the array. Fixes gst-inspect segfault on ppc.
25406
25407 2004-05-19  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25408
25409         * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
25410
25411         * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
25412
25413 2004-05-18  David Schleef  <ds@schleef.org>
25414
25415         * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
25416         warnings (bugs, actually) noticed by gcc but not forte.
25417
25418 2004-05-18  David Schleef  <ds@schleef.org>
25419
25420         * sys/sunaudio/Makefile.am:
25421         * sys/sunaudio/gstsunaudio.c: New sunaudiosink
25422
25423 2004-05-18  David Schleef  <ds@schleef.org>
25424
25425         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
25426         (gst_qtdemux_loop_header):  Patch from dcm@acm.org (David Moore)
25427         to allow qtdemux to use non-seekable streams. (bug #142272)
25428
25429 2004-05-18  David Schleef  <ds@schleef.org>
25430
25431         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
25432         (gst_resample_sinc_ft_float): Remove use of static temporary
25433         buffer.  This code was obviously not supposed to last long, but
25434         it's stuck in our ABI, so it required a little hack to make it
25435         ABI-compatible.  Fixes #142585.
25436         * gst-libs/gst/resample/resample.h: same.
25437
25438 2004-05-18  David Schleef  <ds@schleef.org>
25439
25440         * configure.ac: Add sunaudio
25441         * examples/Makefile.am: make gstplay depend on gconf
25442         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
25443         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
25444         (convert_table_lookup), (img_convert): remove c99-isms
25445         * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
25446           unsigned, to fix a warning on Solaris
25447         * gst/mpeg1sys/systems.c: bcopy->memcpy
25448         * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
25449         * sys/Makefile.am: Add sunaudio
25450
25451 2004-05-18  Wim Taymans  <wim@fluendo.com>
25452
25453         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
25454         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
25455         (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
25456         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
25457         (gst_ogg_mux_loop):
25458         Fix an ugly memleak where the muxer didn't flush enough ogg
25459         pages. This also resulted in badly muxed ogg files.
25460
25461 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25462
25463         * gst/asfdemux/asfheaders.c :
25464         * gst/asfdemux/asfheaders.h :
25465         * gst/asfdemux/gstasfdemux.c :
25466           - fix ASF_OBJ_PADDING guid
25467           - add 3 new object guids (language list, metadata,
25468             extended stream properties)
25469           - add a function to parse extended header objects
25470
25471 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25472
25473         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
25474           remove leftover debugging g_print
25475
25476 2004-05-17  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25477
25478         * ext/mad/gstmad.c: (gst_mad_handle_event):
25479           Fix for when the first format in a discont event is not a
25480           byte-based one. Should fix #137710.
25481
25482 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25483
25484         * m4/a52.m4 : fix compilation with -Wall -Werror
25485         * m4/libfame.m4 : idem
25486         * m4/libmikmod.m4 : idem
25487
25488 2004-05-17  Benjamin Otte  <otte@gnome.org>
25489
25490         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25491           signal the new tags before giving up the reference
25492
25493 2004-05-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25494
25495         * ext/shout2/gstshout2.c:
25496           use application/ogg instead of application/x-ogg (patch by Patrick
25497           Guimond, fixes #142432)
25498         * sys/oss/gstosselement.c: (gst_osselement_reset),
25499         (gst_osselement_sync_parms):
25500           don't set fragment size unless specified (fixes #142493)
25501
25502 2004-05-17  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25503
25504         * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
25505           fixes #142664
25506
25507 2004-05-17  Benjamin Otte  <otte@gnome.org>
25508
25509         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
25510           compute offsets correctly for internal buffers so timestamps are set
25511           correctly when we can't seek. Also handle cases where there are no
25512           offsets. (based on a patch by David Moore, fixes #142507)
25513
25514 2004-05-17  Benjamin Otte  <otte@gnome.org>
25515
25516         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25517           use correct variable when determining amount of data to skip so we
25518           don't skip into the void and segfault
25519
25520 2004-05-16  Benjamin Otte  <otte@gnome.org>
25521
25522         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
25523           Hi, I'm a memleak
25524
25525 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25526
25527         * gst/asfdemux/gstasfdemux.c:
25528           - fix a mem leak and always propagate tags
25529           - add WMV3 to known video codecs (but no decoder yet)
25530           - replace "surplus data" at end of audio header for what
25531             it is : codec specific data
25532           - fix a typo
25533
25534 2004-05-16  Arwed v. Merkatz  <v.merkatz@gmx.net>
25535
25536         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
25537
25538         * gst-libs/gst/audio/audioclock.c:
25539           Fix wrong return type (#142205).
25540
25541 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25542
25543         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
25544           Ignore CRCs by default (fixes #142566).
25545
25546 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25547
25548         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
25549         (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
25550         (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
25551         (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
25552         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
25553         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
25554           Fix for cases where we fail to attach to a mixer.
25555
25556 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25557
25558         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
25559           Don't touch events after not owning them anymore.
25560         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
25561         (gst_wavparse_fmt), (gst_wavparse_other),
25562         (gst_wavparse_handle_seek), (gst_wavparse_loop),
25563         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
25564         (gst_wavparse_srcpad_event):
25565         * gst/wavparse/gstwavparse.h:
25566           Add seeking, fix querying.
25567
25568 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25569
25570         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25571           - process comments even if they don't end with \0\0
25572             g_convert would ignore them if present and works well without them
25573
25574 2004-05-16  Benjamin Otte  <otte@gnome.org>
25575
25576         * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
25577           simplify caps
25578
25579 2004-05-16  Benjamin Otte  <otte@gnome.org>
25580
25581         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25582           don't write to memory we might not write to - g_convert does that
25583           for us anyway (fixes #142613)
25584         (gst_asf_demux_audio_caps):
25585           comment out gst_util_dump_mem
25586
25587 2004-05-16  Benjamin Otte  <otte@gnome.org>
25588
25589         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25590           compute correct expected timestamps after seek (broken since
25591           last commit)
25592         * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
25593           rename element and debugging category to gdkpixbufscale
25594
25595 2004-05-16  Benjamin Otte  <otte@gnome.org>
25596
25597         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25598           add error checking to snd_pcm_delay and remove duplicate call to
25599           snd_pcm_delay that caused issues (see inline code comments)
25600         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
25601           make more readable and fix return value when snd_pcm_delay fails
25602         (fixes #142586)
25603
25604 2004-05-15  Jan Schmidt  <thaytan@mad.scientisti.com>
25605         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
25606         (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
25607         (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
25608         (gst_pixbufscale_link), (gst_pixbufscale_init),
25609         (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
25610         (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
25611         (gst_pixbufscale_get_property), (pixbufscale_init):
25612         * ext/gdk_pixbuf/pixbufscale.h:
25613         Add these files I forgot earlier
25614
25615 2004-05-15  Jan Schmidt  <thaytan@mad.scientist.com>
25616         * ext/gdk_pixbuf/Makefile.am:
25617         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
25618         * ext/gdk_pixbuf/gstgdkpixbuf.h:
25619         Add new pixbufscale element to scale RGB video
25620         using gdk_pixbuf, because gdk_pixbuf does BILINEAR
25621         and HYPER interpolation correctly.
25622         * ext/theora/theoraenc.c: (theora_enc_chain),
25623         Discard buffer and return if explicit caps could not be set
25624         (theora_enc_get_property):
25625         Make _get return kbps for the bitrate consistent with
25626         the _set function.
25627
25628
25629 2004-05-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25630
25631         * ext/libvisual/visual.c: (gst_visual_chain):
25632           add missing visual_audio_analyze
25633
25634 2004-05-14  David Schleef  <ds@schleef.org>
25635
25636         * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
25637         is killed while we're playing.
25638         * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
25639         gst_element_no_more_pads().
25640
25641 2004-05-14  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25642
25643         * gst-libs/gst/riff/riff-read.c :
25644           - fix INFO tag extraction in RIFF/AVI files
25645             because gst_event_unref (event) also freed taglist
25646           - avoid a mem leak
25647
25648 2004-05-13  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25649
25650         * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
25651         * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
25652
25653         * gst/auparse/gstauparse.c :
25654           - add code (commented for now) to support audio/x-adpcm on src pad
25655             (we have no decoder for those layout yet)
25656
25657         * gst/cdxaparse/gstcdxaparse.c :
25658         * gst/cdxaparse/gstcdxaparse.h :
25659           - partial rewrite using RiffRead (ripped iain's wavparse code)
25660
25661         * gst/rtp/gstrtpL16enc.c : typo
25662         * gst/rtp/gstrtpgsmenc.c : typo
25663
25664 2004-05-13  Benjamin Otte  <otte@gnome.org>
25665
25666         * configure.ac:
25667           check for exact version of libvisual, it's not supposed to be
25668           API/ABI stable yet
25669
25670 2004-05-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25671
25672         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
25673           signal no-more-pads
25674
25675 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
25676
25677         * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
25678         Report which format was used for GST_FORMAT_DEFAULT
25679         * gst/debug/Makefile.am:
25680         * gst/debug/gstdebug.c: (plugin_init):
25681         * gst/debug/progressreport.c: (gst_progressreport_base_init),
25682         (gst_progressreport_class_init), (gst_progressreport_init),
25683         (gst_progressreport_report), (gst_progressreport_set_property),
25684         (gst_progressreport_get_property), (gst_progressreport_chain),
25685         (gst_progressreport_plugin_init):
25686         Add progressreport element for testing.
25687
25688 2004-05-13  Thomas Vander Stichele  <thomas at apestaart dot org>
25689
25690         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
25691         * sys/v4l/gstv4lsrc.h:
25692         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
25693         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
25694         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
25695         (gst_v4lsrc_grab_frame):
25696           add more debugging
25697           send a discont at start
25698
25699 2004-05-12  Colin Walters  <walters@redhat.com>
25700
25701         * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
25702         inflooping if we can't find a chunk.  Or in other words, don't blow
25703         chunks if we don't have a chunk to blow.
25704
25705 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
25706         * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
25707         Remove old debug output
25708         * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
25709         (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
25710         (gst_dvdec_set_property), (gst_dvdec_get_property):
25711         Change the quality setting to an enum, so it works from gst-launch
25712         Don't renegotiate a non-linked pad. Allows audio only decoding.
25713         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
25714         (gst_deinterlace_link), (gst_deinterlace_init):
25715         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
25716         (gst_videodrop_link):
25717         Some caps negotiation fixes
25718
25719 2004-05-12  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25720
25721         * ext/tarkin/gsttarkin.c :
25722           - Change RANK from NONE to PRIMARY
25723         * ext/gdk_pixbuf/gstgdkpixbuf.c :
25724           - Change RANK from NONE to MARGINAL
25725         * ext/divx/gstdivxenc.c :
25726           - Change RANK from PRIMARY to NONE (encoder/spider issue)
25727
25728 2004-05-12  Thomas Vander Stichele  <thomas at apestaart dot org>
25729
25730         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
25731         (gst_vorbisenc_push_packet):
25732           copy a function that was added between 1.0 and 1.0.1 until we
25733           depend on worthwhile features of post-1.0
25734
25735 2004-05-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25736
25737         * configure.ac:
25738           enable shout2 by default
25739         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
25740         (gst_shout2send_base_init), (gst_shout2send_init),
25741         (gst_shout2send_connect), (gst_shout2send_change_state):
25742         * ext/shout2/gstshout2.h:
25743           make this work again. Based on a patch by Zaheer Abbas Merali (fixes
25744           #142262)
25745         * ext/theora/theora.c: (plugin_init):
25746           don't set rank on encoders
25747
25748 2004-05-11  Jeremy Simon  <jesimon@libertysurf.fr>
25749
25750         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
25751           Use codec_data property instead of flag1 and flag2 for wma
25752
25753 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25754
25755         * gst/cdxaparse/gstcdxaparse.c :
25756           - Add mpegversion to CAPS to make it link
25757           - Rank is as GST_RANK_SECONDARY instead of NONE
25758         * gst/auparse/gstauparse.c :
25759           - Document all audio encoding we can encounter from Solaris 9
25760             headers and libsndfile information.
25761           - Increase max. rate from 48000 to 192000 (to match other elements)
25762           - Don't try to play junk data between header and samples
25763
25764 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25765
25766         * ext/libvisual/visual.c: (gst_visual_getcaps):
25767           use the right caps depending on endianness (I hope)
25768         * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
25769           use GST_RANK_NONE for all non-decoding elements or spider gets
25770           mighty confused
25771
25772 2004-05-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25773
25774         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25775           Fix some odd cases and fix BE metadata parsing of unicode16 text.
25776
25777 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25778
25779         * gst/switch/gstswitch.c: (gst_switch_release_pad),
25780         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
25781         (gst_switch_loop), (gst_switch_get_type):
25782           whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
25783           HEADERS. Had to be said.
25784
25785 2004-05-10  David Schleef  <ds@schleef.org>
25786
25787         * configure.ac: Add prototype Dirac support.
25788         * ext/Makefile.am:
25789         * ext/dirac/Makefile.am:
25790         * ext/dirac/gstdirac.cc:
25791         * ext/dirac/gstdiracdec.cc:
25792
25793 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25794
25795         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
25796         (gst_auparse_init), (gst_auparse_chain),
25797         (gst_auparse_change_state):
25798           Hack around spider. Remove me some day please.
25799
25800 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25801
25802         * gst/auparse/gstauparse.c: (gst_auparse_chain):
25803           Fix for some uninitialized variables in previous patch, also
25804           makes it work. Fixes #142286 while we're at it.
25805
25806 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25807
25808         * gst/auparse/gstauparse.c:
25809                 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
25810                 only unsupported formats are ADPCM/CCITT G.72x
25811                 reviewed by Ronald
25812         * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
25813
25814 2004-05-10  Wim Taymans  <wim@fluendo.com>
25815
25816         * ext/vorbis/Makefile.am:
25817         * ext/vorbis/README:
25818         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
25819         (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
25820         (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
25821         (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
25822         (gst_oggvorbisenc_convert_sink),
25823         (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
25824         (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
25825         (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
25826         (get_constraints_string), (update_start_message),
25827         (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
25828         (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
25829         (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
25830         * ext/vorbis/oggvorbisenc.h:
25831         * ext/vorbis/vorbis.c: (plugin_init):
25832         * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
25833         (raw_caps_factory), (gst_vorbisenc_class_init),
25834         (gst_vorbisenc_init), (gst_vorbisenc_setup),
25835         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
25836         (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
25837         * ext/vorbis/vorbisenc.h:
25838         Added a raw vorbis encoder to be used with the oggmuxer.
25839         We still need the old encoder for some gnome applications,
25840         read the README to find out how that works.
25841         The raw encoder is called "rawvorbisenc" until 0.9.
25842
25843 2004-05-10  Wim Taymans  <wim@fluendo.com>
25844
25845         * ext/ogg/gstogg.c: (plugin_init):
25846         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
25847         (gst_ogg_print):
25848         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
25849         (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
25850         (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
25851         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
25852         (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
25853         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
25854         (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
25855         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
25856         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
25857         (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
25858         Added an ogg muxer.
25859         Small typo fixes in the demuxer.
25860
25861 2004-05-10  Wim Taymans  <wim@fluendo.com>
25862
25863         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
25864         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
25865         (theora_enc_change_state), (theora_enc_set_property),
25866         (theora_enc_get_property):
25867         Mark the last packet with an EOS flag which is not really needed
25868         in gstreamer.
25869         Do some better video framerate initialisation.
25870         Update the buffer timestamp.
25871
25872 2004-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
25873
25874         * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
25875         Return the result of the parent state change call
25876
25877 2004-05-10  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25878
25879         * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
25880         * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
25881         * gst/law/alaw-encode.c : (idem)
25882         * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
25883         * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
25884         * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
25885
25886 2004-05-09  Benjamin Otte  <otte@gnome.org>
25887
25888         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
25889           don't use a fixed buffer size when writing variable length data to
25890           it. Fixes memory corruption and makes alsasrc work
25891
25892 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25893
25894         * ext/gnomevfs/gstgnomevfssink.c:
25895         (_gst_boolean_allow_overwrite_accumulator),
25896         (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
25897           Run glib's default signal handler (??) in RUN_CLEANUP rather than
25898           RUN_LAST, and don't use that to set the accumulator value because
25899           then it's always FALSE.
25900
25901 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25902
25903         * gst-libs/gst/riff/riff-media.c:
25904         (gst_riff_create_video_caps_with_data),
25905         (gst_riff_create_audio_caps),
25906         (gst_riff_create_audio_template_caps):
25907         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
25908           Fix for unaligned RIFF files (i.e. where all the chunks together
25909           in a LIST chunk are not of the same size as the size given in
25910           the LIST chunk header). Fixes several odd WAVE files. Also fix
25911           ADPCM (block_align property) in audio, so that wavparse based
25912           on this works now as it used to stand-alone.
25913
25914 2004-05-09  Edward Hervey  <bilboed@bilboed.com>
25915
25916         reviewed by Benjamin Otte  <otte@gnome.org>
25917
25918         * ext/a52dec/gsta52dec.c:
25919         * ext/divx/gstdivxdec.c:
25920         * ext/divx/gstdivxenc.c:
25921         * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
25922         * ext/faac/gstfaac.c: (gst_faac_base_init):
25923         * ext/faad/gstfaad.c: (gst_faad_base_init):
25924         * ext/ivorbis/vorbisfile.c:
25925         * ext/lame/gstlame.c:
25926         * ext/libfame/gstlibfame.c:
25927         * ext/mpeg2enc/gstmpeg2enc.cc:
25928         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
25929         * ext/sidplay/gstsiddec.cc:
25930         * ext/speex/gstspeexdec.c:
25931         * ext/speex/gstspeexenc.c:
25932         * ext/xvid/gstxviddec.c:
25933         * ext/xvid/gstxvidenc.c:
25934           correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
25935           (fixes #142193)
25936
25937 2004-05-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25938
25939         * ext/alsa/gstalsa.c: (device_list),
25940         (gst_alsa_class_probe_devices):
25941         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
25942           Fix alsa oddness in mixer after the combination of using mixer
25943           in source/sink elements and using hw:x,y instead of just hw:x.
25944
25945 2004-05-09  Benjamin Otte  <otte@gnome.org>
25946
25947         * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
25948         (gst_wavparse_create_sourcepad):
25949           make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
25950           sourcepads
25951
25952 2004-05-09  Benjamin Otte  <otte@gnome.org>
25953
25954         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
25955           allow discont events before caps nego
25956
25957 2004-05-08  Benjamin Otte  <otte@gnome.org>
25958
25959         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
25960           don't leak events
25961
25962 2004-05-08  Benjamin Otte  <otte@gnome.org>
25963
25964         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
25965         (gst_level_change_state), (gst_level_init):
25966         * gst/level/gstlevel.h:
25967           figure out if we're initialized directly instead of keeping a
25968           variable that's wrong in 90% of cases
25969           don't initialize pads and then leak them and use a new unitialized
25970           pad. (fixes #142084)
25971           these were bugs so n00bish I didn't find them for an hour :/
25972
25973 2004-05-08 Iain <iain@prettypeople.org>
25974
25975         * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
25976         * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
25977         (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
25978         return the length that was read.
25979         (gst_riff_read_strf_auds): Allow fmt tags as well.
25980
25981 2004-05-07  David Schleef  <ds@schleef.org>
25982
25983         * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
25984         signed char assumption in faad.h.
25985
25986 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25987
25988         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
25989           Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
25990
25991 2004-05-07  Colin Walters  <walters@redhat.com>
25992
25993         * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
25994         * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
25995         function.
25996         * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
25997         Add dispose function.
25998
25999 2004-05-08  Jan Schmidt  <thaytan@mad.scientist.com>
26000         * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
26001           Fix caps nego and pad templates. RGB mode caps should
26002           work now.
26003         * ext/dvdnav/gst-dvd:
26004           Move mpeg2dec inside the thread because otherwise the
26005           queue rejects cap changes mid-stream
26006         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
26007         (gst_mpeg2dec_flush_decoder):
26008           For mpeg2dec > 0.4.0, call the flush function instead of
26009           manually extracting all in-flight frames.
26010         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
26011         (gst_dv1394src_init), (gst_dv1394src_iso_receive):
26012           Change mime type video/dv go video/x-dv to match the
26013           rest of gst-plugins
26014
26015 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26016
26017         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
26018         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
26019         (gst_alsa_sink_class_init):
26020         * ext/alsa/gstalsasink.h:
26021         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
26022         (gst_alsa_src_class_init):
26023         * ext/alsa/gstalsasrc.h:
26024           Make alsasink/src a subclass of alsamixer so that mixer stuff
26025           shows up in gst-rec. Needs some finetuning.
26026
26027 2004-05-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26028
26029         * ext/lame/gstlame.c: (gst_lame_chain):
26030           simplify
26031         * ext/mad/gstmad.c: (gst_mad_handle_event):
26032           fix event leak
26033         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
26034           be able to detect mp3 files < 4096 bytes
26035
26036 2004-05-06  Wim Taymans  <wim@fluendo.com>
26037
26038         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
26039         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
26040         (theora_enc_set_property), (theora_enc_get_property):
26041         Also encode the first frame, cleanup some code.
26042
26043 2004-05-06  Wim Taymans  <wim@fluendo.com>
26044
26045         * ext/mpeg2enc/gstmpeg2enc.cc:
26046         Forward events first before deciding that negotiation was
26047         not performed.
26048
26049 2004-05-06  Wim Taymans  <wim@fluendo.com>
26050
26051         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
26052         First process the events before deciding that negotiation
26053         was not performed.
26054
26055 2004-05-06  Wim Taymans  <wim@fluendo.com>
26056
26057         * ext/theora/Makefile.am:
26058         * ext/theora/theora.c: (plugin_init):
26059         * ext/theora/theoradec.c: (theora_dec_change_state):
26060         * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
26061         (gst_theora_enc_class_init), (gst_theora_enc_init),
26062         (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
26063         (theora_enc_chain), (theora_enc_change_state),
26064         (theora_enc_set_property), (theora_enc_get_property):
26065         Added a theora encoder, grouped the encoder and decoder into the
26066         same plugin.
26067
26068 2004-05-05  Thomas Vander Stichele  <thomas at apestaart dot org>
26069
26070         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26071         (gst_jpegenc_chain):
26072         fix DURATION on outgoing buffers
26073         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
26074         debug using time formats
26075         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
26076         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
26077         (gst_xvimagesink_sink_link):
26078         windows with width/height 0 generate X errors, so don't allow them
26079
26080 2004-05-05  Wim Taymans  <wim@fluendo.com>
26081
26082         * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
26083         (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
26084         (gst_mpeg2dec_negotiate_format):
26085         * ext/mpeg2dec/gstmpeg2dec.h:
26086           removed the static pad template so that we can add the
26087           more accurate framerate value to the caps.
26088
26089
26090 2004-05-04  Benjamin Otte  <otte@gnome.org>
26091
26092         * configure.ac:
26093           check for kdemacros.h, too (should fix #141821)
26094         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
26095           don't crash if no header was sent, but nicely error out (fixes part
26096           of #141554)
26097
26098 2004-05-04  Wim Taymans  <wim@fluendo.com>
26099
26100         * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
26101         parent dispose function to avoid segfault on destroy.
26102
26103 2004-05-04  Thomas Vander Stichele  <thomas at apestaart dot org>
26104
26105         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
26106         (plugin_init):
26107         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
26108         (gst_xvimagesink_sink_link):
26109         clean up debugging caps
26110         also recreate xvimage when format has changed
26111
26112 2004-05-04  Benjamin Otte  <otte@gnome.org>
26113
26114         * ext/libvisual/Makefile.am:
26115         * ext/libvisual/visual.c: (gst_visual_class_init),
26116         (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
26117         (gst_visual_srclink), (gst_visual_chain),
26118         (gst_visual_change_state), (plugin_init):
26119           use a GstAdapter to correctly adapt buffer sizes - allows using a
26120           framerate
26121
26122 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
26123
26124         * sys/v4l/gstv4lelement.h:
26125         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
26126         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
26127         (gst_v4lsrc_buffer_free):
26128         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
26129         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
26130         (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
26131         (gst_v4lsrc_requeue_frame):
26132         move some debugging categories around
26133         query for fps index and set accordingly if found
26134
26135 2004-05-03  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
26136
26137         * ext/lame/gstlame.c:
26138         correct defaults that lame_init puts out of range
26139
26140 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
26141
26142         * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
26143         (gst_divxenc_class_init):
26144         fix range since -1 is the default
26145         * gst/mpeg1sys/gstmpeg1systemencode.c:
26146         (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
26147         * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
26148         (gst_rtjpegdec_chain):
26149         * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
26150         (gst_rtjpegenc_chain):
26151         * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
26152         (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
26153         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
26154         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
26155         * sys/v4l/gstv4lsrc.c:
26156         * sys/v4l/v4l_calls.c: (gst_v4l_open):
26157         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
26158         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
26159         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
26160         * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
26161           remove gst_info calls
26162
26163 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
26164
26165         * Makefile.am:
26166         * po/af.po:
26167         * po/az.po:
26168         * po/en_GB.po:
26169         * po/nl.po:
26170         * po/sr.po:
26171         * po/sv.po:
26172           Updated translations
26173
26174 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
26175
26176         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26177           refactor/comment code
26178
26179 2004-05-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26180
26181         * gst/asfdemux/Makefile.am:
26182         * gst/asfdemux/asfheaders.c:
26183         * gst/asfdemux/asfheaders.h:
26184         * gst/asfdemux/gstasf.c: (plugin_init):
26185         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
26186         (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
26187         (gst_asf_demux_setup_pad):
26188         * gst/asfdemux/gstasfdemux.h:
26189         * gst/asfdemux/gstasfmux.c:
26190         * gst/asfdemux/gstasfmux.h:
26191           Add tagging support to demuxer, split out registration in its own
26192           file instead of in demux (hacky), and prevent having some tables
26193           in our memory multiple times (in asfheaders.h).
26194
26195 2004-05-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26196
26197         * gst/matroska/matroska-demux.c:
26198         (gst_matroska_demux_parse_metadata):
26199         * gst/matroska/matroska-ids.h:
26200           Basic tag reading support.
26201
26202 2004-04-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26203
26204         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
26205           Really detect ac-3 audio.
26206         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
26207           really detect matroska files (off-by-1).
26208
26209 2004-04-30  David Schleef  <ds@schleef.org>
26210
26211         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
26212         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
26213         (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
26214         (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
26215         (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
26216         hackage -- parse a lot more atoms, extract a few tags.  One might even
26217         mistake this for tag support.  Maybe it is.
26218         * gst/qtdemux/qtdemux.h:
26219
26220 2004-04-30  Colin Walters  <walters@verbum.org>
26221
26222         * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
26223
26224 2004-04-30  Thomas Vander Stichele  <thomas at apestaart dot org>
26225
26226         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26227         (gst_ffmpegcolorspace_getcaps):
26228           remove broken nego fix
26229
26230 2004-04-30  Benjamin Otte  <otte@gnome.org>
26231
26232         * configure.ac:
26233         * ext/Makefile.am:
26234         * ext/libvisual/Makefile.am:
26235         * ext/libvisual/visual.c:
26236           add initial support for libvisual (http://libvisual.sourceforge.net)
26237           libvisual is still quite alpha, so expect crashes in there :)
26238
26239 2004-04-29  David Schleef  <ds@schleef.org>
26240
26241         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
26242         (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
26243         up qtdemux to make it spit out codec_data.  Do _not_ look at this
26244         code; you will no longer respect me.
26245
26246 2004-04-29  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
26247
26248         * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
26249         * ext/alsa/gstalsa.h :
26250         change alsa pcm device discovery to find more than 1 device
26251         per card. code review by Ronald.
26252
26253 2004-04-29  David Schleef  <ds@schleef.org>
26254
26255         * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
26256         Add a check for a driver bug on FreeBSD.  (bug #140565)
26257
26258 2004-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
26259
26260         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
26261         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26262         (gst_jpegenc_getcaps):
26263           move format setting to inner loop
26264         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26265         (gst_ffmpegcolorspace_getcaps):
26266           use GST_PAD_CAPS if available so that we use already negotiated
26267           caps
26268         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
26269         (qtdemux_parse_moov), (qtdemux_parse):
26270           extra debugging
26271         * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
26272         * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
26273           move hardcoded path to DEFINE
26274
26275 2004-04-28  David Schleef  <ds@schleef.org>
26276
26277         * gst/speed/gstspeed.c: (speed_parse_caps):  Fix caps parsing.
26278         (bug #140064)
26279
26280 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26281
26282         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
26283           Don't probe for playback device if we're a source element. Fixes
26284           #139658.
26285
26286 2004-04-29  Benjamin Otte  <otte@gnome.org>
26287
26288         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
26289         (gst_id3_tag_chain):
26290           rewrite buffer offset
26291
26292 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26293
26294         * configure.ac:
26295         * ext/Makefile.am:
26296         * ext/dts/Makefile.am:
26297         * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
26298         (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
26299         (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
26300         (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
26301         (gst_dtsdec_loop), (gst_dtsdec_change_state),
26302         (gst_dtsdec_set_property), (gst_dtsdec_get_property),
26303         (plugin_init):
26304         * ext/dts/gstdtsdec.h:
26305           New DTS decoder.
26306         * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
26307         (gst_faad_srcconnect):
26308           Add ESDS atom handling (.m4a).
26309
26310 2004-04-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26311
26312         * ext/divx/gstdivxdec.c: (plugin_init):
26313           Remove comment that makes no sense.
26314         * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
26315           Fix for obvious typo that resulted in warnings during gst-register.
26316         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
26317         (gst_xviddec_sink_link):
26318           Fix caps negotiation a bit better.
26319         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
26320           We call this 'codec_data', not 'esds'.
26321
26322 2004-04-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26323
26324         * gst/monoscope/gstmonoscope.c:
26325           make sure we only provide 256x128
26326         * gst/monoscope/monoscope.c: (monoscope_init):
26327           assert size of 256x128
26328
26329 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
26330
26331         * Makefile.am:
26332         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
26333         (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
26334           fixate to max width and height of device
26335
26336 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
26337
26338         * Makefile.am:
26339         * sys/v4l/gstv4l.c:
26340         * sys/v4l/gstv4lsrc.c:
26341         * sys/v4l/v4l_calls.c:
26342         * sys/v4l/v4lsrc_calls.c:
26343           fix for qc-usb driver which fakes having more than one buffer
26344           by handing the same buffer twice, which confused GStreamer's/v4lsrc
26345           buffer_free override
26346           add debugging
26347
26348 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
26349
26350         * Makefile.am:
26351         * gst/videotestsrc/gstvideotestsrc.c:
26352         (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
26353         (gst_videotestsrc_init), (gst_videotestsrc_get),
26354         (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
26355         * gst/videotestsrc/gstvideotestsrc.h:
26356           add num-buffers property
26357
26358         2004-04-26  Benjamin Otte  <otte@gnome.org>
26359
26360         * ext/mad/gstid3tag.c: (plugin_init):
26361           set id3mux rank to NONE so it doesn't confuse spider
26362           require audio/mpeg,mpegversion=1 in id3mux
26363
26364 2004-04-26  Benjamin Otte  <otte@gnome.org>
26365
26366         * configure.ac:
26367           detect faad correctly as non-working if it's indeed non-working
26368
26369 2004-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
26370
26371         * Makefile.am:
26372         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26373         (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
26374         fix _getcaps so it only negotiates to its supported format
26375
26376 2004-04-25  Benjamin Otte  <otte@gnome.org>
26377
26378         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26379           fix memleak
26380
26381 2004-04-23  Benjamin Otte  <otte@gnome.org>
26382
26383         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
26384           audio/x-raw-int with height rules! not. Now it's depth.
26385
26386 2004-04-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26387
26388         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
26389         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
26390         (gst_wavparse_loop):
26391           Missing variable initialization. Add handling of DVI ADPCM. Fix
26392           mis-parsing of LIST chunks. This works around a bug where we mis-
26393           parse non-aligning LIST chunks (so LIST chunks where the contents
26394           don't align with the actual LIST size). The correct fix is to use
26395           rifflib, I'm not going to fix wavparse - too much work. All this
26396           fixes #104878.
26397
26398 2004-04-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
26399
26400         reviewed by Benjamin Otte  <otte@gnome.org>
26401
26402         * ext/shout/gstshout.c: (gst_icecastsend_change_state):
26403           fix shoutcast not working (fixes #140844)
26404
26405 2004-04-22  Benjamin Otte  <otte@gnome.org>
26406
26407         * ext/hermes/gsthermescolorspace.c:
26408         (gst_hermes_colorspace_caps_remove_format_info):
26409         * gst/colorspace/gstcolorspace.c:
26410         (gst_colorspace_caps_remove_format_info):
26411         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26412         (gst_ffmpegcolorspace_caps_remove_format_info):
26413           s/gst_caps_simplify/gst_caps_do_simplify/
26414
26415 2004-04-22  Benjamin Otte  <otte@gnome.org>
26416
26417         * gst-libs/gst/riff/riff-media.c:
26418         (gst_riff_create_video_caps_with_data):
26419           mpegversion is an int
26420         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
26421           don't try to create pad templates with NULL caps, use any caps
26422           instead.
26423
26424 2004-04-20  David Schleef  <ds@schleef.org>
26425
26426         * ext/sdl/Makefile.am: Link against libgstinterfaces, not
26427         libgstxoverlay.  jmmv@menta.net (Julio M. Merino Vidal)
26428         (bug #140384)
26429
26430 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
26431
26432         reviewed by David Schleef
26433
26434         * ext/mad/gstid3tag.c: Add stdlib.h
26435         * gst/rtp/gstrtpgsmenc.c: same
26436         * gst/tags/gstid3tag.c: same
26437         * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
26438         * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
26439         GST_DISABLE_LOADSAVE use.
26440         * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
26441         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
26442         * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
26443         atol(3)).
26444         * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
26445         * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
26446         strtoul(3)).
26447         * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
26448         * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
26449         $(ID3_CFLAGS).
26450         * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
26451         $(LIBFAME_CFLAGS).
26452
26453 2004-04-20  David Schleef  <ds@schleef.org>
26454
26455         * gst/realmedia/rmdemux.c:  This was supposed to part of the
26456         last checkin.  Same idea.
26457
26458 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
26459
26460         reviewed by David Schleef
26461
26462         * configure.ac: bump required gstreamer version to 0.8.1.1
26463         because of following changes [--ds]
26464
26465         * gst-libs/gst/riff/riff-read.c:  Include gst/gstutils.h.
26466         (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
26467         (gst_riff_read_header):  Use GST_READ_UINT*
26468         macros to access possibly unaligned memory.
26469
26470         * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
26471         (mp3_type_find):  Use GST_READ_UINT*
26472         macros to access possibly unaligned memory.
26473         (mp3_type_find, mpeg1_parse_header, qt_type_find)
26474         (speex_type_find): Likewise
26475
26476         * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
26477
26478         * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
26479         (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
26480         (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
26481         (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
26482         (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
26483         (qtdemux_tree_get_sibling_by_type):  Use GST_READ_UINT*
26484         macros to access possibly unaligned memory.
26485
26486         * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
26487         Likewise.
26488
26489         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
26490         (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
26491
26492         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
26493         Likewise.
26494
26495         * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
26496         (gst_mpeg2subt_chain_subtitle): Likewise.
26497
26498         * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
26499         (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
26500         Likewise.
26501
26502         * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
26503         Likewise.
26504
26505         * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
26506         Likewise.
26507
26508         * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
26509         Likewise.
26510
26511 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
26512
26513         * configure.ac:
26514           update required version of GStreamer because of GST_TIME_FORMAT
26515
26516 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26517
26518         * ext/mad/gstid3tag.c: (gst_id3_tag_init):
26519           remove leftover g_print
26520         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
26521           don't try setting only a subset of the caps. We don't want to kill
26522           autoplugging on purpose
26523
26524 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
26525
26526         * sys/ximage/ximagesink.c: (plugin_init):
26527         * sys/xvimage/xvimagesink.c: (plugin_init):
26528           add debugging categories
26529
26530 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
26531
26532         * po/en_GB.po:
26533         * po/LINGUAS:
26534           Adding en_GB translation (Gareth Owen)
26535
26536 2004-04-20  David Schleef  <ds@schleef.org>
26537
26538         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
26539         (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
26540         (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
26541         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
26542         A number of new features and hacks to extract the esds atom and
26543         put it into the caps.  (bug #137724)
26544
26545 2004-04-19  David Schleef  <ds@schleef.org>
26546
26547         * gconf/Makefile.am: Fix for non-GNU make
26548         * gst-libs/gst/Makefile.am: Change directory order to handle
26549         GstPlay linking with gstinterfaces
26550         * gst-libs/gst/audio/make_filter: make use of tr portable
26551         * gst-libs/gst/play/Makefile.am: Add intended \
26552         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
26553         (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
26554         function prototype instead of void *.
26555         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
26556         macro.
26557         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26558         (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
26559         * gst/videofilter/make_filter: make use of tr portable
26560         * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
26561
26562 2004-04-19  Thomas Vander Stichele  <thomas at apestaart dot org>
26563
26564         * po/LINGUAS:
26565         * po/uk.po:
26566           Added Ukrainian translation (Maxim V. Dziumanenko)
26567
26568 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26569
26570         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
26571         (gst_gsmdec_link), (gst_gsmdec_chain):
26572           Fix capsnego, simplify chain function slightly.
26573         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
26574           Add GSM.
26575
26576 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26577
26578         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
26579         (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
26580         (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
26581           Hack to make wavparse work with spider (always -> sometimes pad).
26582           Fixes #135862 && #140411.
26583
26584 2004-04-18  Benjamin Otte  <otte@gnome.org>
26585
26586         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
26587         (gst_osselement_rate_probe_check),
26588         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
26589           get rid of \n in debug output
26590
26591 2004-04-17  Iain <iain@prettypeople.org>
26592
26593         * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
26594         not just EOS.
26595
26596 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26597
26598         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
26599         (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
26600         (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
26601         (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
26602         (gst_id3_tag_src_link), (gst_id3_tag_chain),
26603         (gst_id3_tag_change_state), (plugin_init):
26604           deprecate id3tag element and replace with id3demux/id3mux.
26605           great side effect: this ugly file is now even uglier, yay!
26606         * ext/mad/gstmad.h:
26607           remove non-available function
26608           update for new get_type
26609
26610 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26611
26612         * configure.ac:
26613           require mpeg2dec >= 0.4.0
26614
26615 2004-04-17  Benjamin Otte  <otte@gnome.org>
26616
26617         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
26618         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
26619         (gst_xvimagesink_set_xwindow_id):
26620           call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
26621           assorted cleanup fixes.
26622
26623 2004-04-16  David Schleef  <ds@schleef.org>
26624
26625         * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
26626         * sys/xvimage/xvimagesink.h: same
26627
26628 2004-04-16  Thomas Vander Stichele  <thomas at apestaart dot org>
26629
26630         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
26631           Fix GST_ELEMENT_ERROR with (NULL)
26632
26633 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26634
26635         * gst-libs/gst/riff/riff-media.c:
26636         (gst_riff_create_video_caps_with_data):
26637           Add div[3456] as fourccs for DivX 3 (fixes #140137).
26638
26639 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26640
26641         * gst-libs/gst/riff/riff-media.c:
26642         (gst_riff_create_video_caps_with_data),
26643         (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
26644         (gst_riff_create_video_template_caps),
26645         (gst_riff_create_audio_template_caps):
26646         * gst-libs/gst/riff/riff-media.h:
26647         * gst-libs/gst/riff/riff-read.c:
26648         (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
26649         * gst-libs/gst/riff/riff-read.h:
26650         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
26651           Add MS RLE support. I added some functions to read out strf chunks
26652           into strf chunks and the data behind it. This is usually color
26653           palettes (as in RLE, but also in 8-bit RGB). Also use those during
26654           caps creation. Lastly, add ADPCM (similar to wavparse - which
26655           should eventually be rifflib based).
26656         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
26657         (gst_matroska_demux_init), (gst_matroska_demux_reset):
26658         * gst/matroska/matroska-demux.h:
26659           Remove placeholders for some prehistoric tagging system. Didn't add
26660           support for any tag system really anyway.
26661         * gst/qtdemux/qtdemux.c:
26662           Add support for audio/x-m4a (MPEG-4) through spider.
26663         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
26664         (gst_wavparse_loop):
26665           ADPCM support (#135862). Increase max. buffer size because we
26666           cannot split buffers for ADPCM (screws references) and I've seen
26667           files with 2048 byte chunks. 4096 seems safe for now.
26668
26669 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
26670
26671         * configure.ac: bump nano to 1
26672
26673 === release 0.8.1 ===
26674
26675 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
26676
26677         * configure.ac: releasing 0.8.1, "Comforting Sounds"
26678
26679 2004-04-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26680
26681         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26682           Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
26683           Fixes #140058
26684
26685 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
26686
26687         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
26688           lower rank of dvddemux so that it's not used for mpeg playback.
26689
26690 2004-04-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26691
26692         * configure.ac:
26693           save libs correctly when checking mad
26694
26695 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
26696
26697         * ext/mad/gstid3tag.c: (plugin_init):
26698           lower rank of id3tag as proposed by Benjamin.  Fixes #139926.
26699
26700 2004-04-13  David Schleef  <ds@schleef.org>
26701
26702         * common/m4/gst-feature.m4: Call -config scripts with
26703         --plugin-libs if it is supported.
26704         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
26705         JPEG images are image/jpeg.
26706         * gst/debug/Makefile.am:
26707         * gst/debug/negotiation.c: (gst_negotiation_class_init),
26708         (gst_negotiation_getcaps), (gst_negotiation_pad_link),
26709         (gst_negotiation_update_caps), (gst_negotiation_get_property),
26710         (gst_negotiation_plugin_init): Add a property that acts like
26711         filter caps.
26712         * testsuite/gst-lint:  Move license checking to be a standard
26713         test.
26714
26715 2004-04-13  David Schleef  <ds@schleef.org>
26716
26717         * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
26718         patch from Sebastien Cote (bug #139958)
26719
26720 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
26721
26722         * examples/gstplay/Makefile.am:
26723         * examples/gstplay/player.c: (main):
26724           make the commandline player example use gconf settings
26725
26726 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
26727
26728         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
26729         (gst_cacasink_sinkconnect), (gst_cacasink_init),
26730         (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
26731           init/end library during state transition, not object
26732           creation/disposal.  get rid of custom dispose handler.
26733
26734
26735 2004-04-12  Christian Schaller <Uraeus@gnome.org>
26736
26737         * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
26738         be a symlink
26739
26740 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26741
26742         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
26743           Handle JUNK chunks inside data section. Prevents warnings.
26744
26745 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26746
26747         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
26748         (gst_riff_create_video_template_caps):
26749           Add MS video v1.
26750         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
26751         (gst_avi_demux_stream_data):
26752           Add support for "rec-list" chunks.
26753
26754 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26755
26756         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
26757           Fix another codecname mismatch.
26758
26759 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26760
26761         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26762           Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
26763           so that MJPEG plays back.
26764
26765 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26766
26767         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
26768         (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
26769         * gst/mpeg1videoparse/gstmp1videoparse.h:
26770           Fix for some slight mis-cuts in buffer parsing, and for some
26771           potential overflows or faults-causers. Adds disconts. Also fixes
26772           #139105 while we're at it.
26773
26774 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26775
26776         * configure.ac:
26777         * sys/v4l2/gstv4l2element.h:
26778           Workaround for missing struct v4l2_buffer declaration in Suse 9
26779           and Mandrake 10 linux/videodev2.h header file (#135919).
26780
26781 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26782
26783         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
26784           Bail out if no filename was given.
26785
26786 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26787
26788         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
26789         (gst_v4l2_fourcc_from_structure):
26790           Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
26791           Y41B somewhere).
26792
26793 2004-04-09  Benjamin Otte  <otte@gnome.org>
26794
26795         * ext/gnomevfs/gstgnomevfssink.c:
26796         (_gst_boolean_allow_overwrite_accumulator),
26797         (gst_gnomevfssink_class_init):
26798           fix erase signal - if any handler returns false the file will not be
26799           overwritten. If no handler is connected, the file will not be
26800           overwritten either.
26801           renamed signal to "allow-overwrite"
26802         * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
26803           free string when adding it to ID3 failed
26804         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
26805           unref event when done
26806         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26807           free caps
26808         * gst/typefind/gsttypefindfunctions.c:
26809         (mpeg_video_stream_type_find):
26810           fix invalid read
26811
26812 2004-04-08  David Schleef  <ds@schleef.org>
26813
26814         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26815         (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
26816
26817 2004-04-08  David Schleef  <ds@schleef.org>
26818
26819         * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
26820         we don't support (bug #139532)
26821
26822 2004-04-07  Thomas Vander Stichele  <thomas at apestaart dot org>
26823
26824         * ext/mad/gstmad.c: (gst_mad_handle_event),
26825         (gst_mad_check_caps_reset), (gst_mad_chain),
26826         (gst_mad_change_state):
26827           only set explicit caps if they haven't been set before for
26828           this stream.  MPEG-audio sample rate/channels aren't allowed
26829           to change in-stream.
26830           Fixes #139382
26831
26832 2004-04-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26833
26834         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
26835         (_gst_boolean_did_something_accumulator),
26836         (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
26837         (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
26838         (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
26839         (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
26840         (gst_gnomevfssink_change_state):
26841           Fix erase signal. Don't erase by default. Remove handoff signal.
26842           Remove erase property. Don't segfault. General cleanup.
26843
26844 2004-04-07  Benjamin Otte  <otte@gnome.org>
26845
26846         * gst-libs/gst/gconf/test-gconf.c: (main):
26847           add missing gst_init
26848
26849 2004-04-07  Benjamin Otte  <otte@gnome.org>
26850
26851         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
26852           free the mutexes, too
26853
26854 2004-04-07  Benjamin Otte  <otte@gnome.org>
26855
26856         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
26857           actually free the URI string
26858         * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
26859           compute offset correctly when passing discont events
26860         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
26861           don't leak discont events
26862         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
26863           add some missing breaks so caps aren't copied randomly
26864         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
26865           if we realloc memory, we better use it
26866
26867 2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26868
26869         * ext/mad/gstmad.c: (normal_seek):
26870           fix GST_FORMAT_TIME usage
26871
26872 2004-04-05  David Schleef  <ds@schleef.org>
26873
26874         * ext/kio/kiosrc.cpp:  Undefine KDE_DEPRECATED so we can use
26875         a deprecated function (hack!)
26876
26877 2004-04-05  Benjamin Otte  <otte@gnome.org>
26878
26879         * ext/esd/esdmon.c: (gst_esdmon_get):
26880           fix nonterminated vararg and memleak
26881
26882 2004-04-05  Benjamin Otte  <otte@gnome.org>
26883
26884         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
26885         (gst_ladspa_init), (gst_ladspa_force_src_caps),
26886         (gst_ladspa_set_property), (gst_ladspa_get_property),
26887         (gst_ladspa_instantiate), (gst_ladspa_activate),
26888         (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
26889           clean up debugging
26890
26891 2004-04-05  Stefan Kost <kost@imn.htwk-leipzig.de>
26892
26893         reviewed by Benjamin Otte  <otte@gnome.org>
26894
26895         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
26896           check for broken LADSPA parameters (fixes #138635)
26897
26898 2004-04-05  Benjamin Otte  <otte@gnome.org>
26899
26900         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
26901           advertise buffer-frames correctly on sinkpads
26902
26903 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
26904
26905         * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
26906         (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
26907         (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
26908         (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
26909         (gst_mad_check_caps_reset), (gst_mad_chain):
26910         add more debugging, only reset caps when we're not in error state
26911
26912 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
26913
26914         * ext/mad/gstmad.c: add debugging category, comment + cleanups
26915
26916 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
26917
26918         reviewed by Benjamin Otte  <otte@gnome.org>
26919
26920         * configure.ac:
26921           fix == in test(1) operator
26922
26923 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
26924
26925         reviewed by Benjamin Otte  <otte@gnome.org>
26926
26927         * configure.ac:
26928           fix --export-symblos-regex to a working regex.
26929
26930 2004-04-04  Benjamin Otte  <otte@gnome.org>
26931
26932         * sys/oss/.cvsignore:
26933           add for oss_probe
26934
26935 2004-04-03  Tim-Phillip Müller <t.i.m@zen.co.uk>
26936
26937         reviewed by Benjamin Otte  <otte@gnome.org>
26938
26939         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
26940           add missing 'new_media' argument (fixes #138168)
26941         * gst/matroska/matroska-demux.c:
26942         (gst_matroska_demux_handle_seek_event):
26943           add vararg terminator (fixes #138169)
26944
26945 2004-04-02  David Schleef  <ds@schleef.org>
26946
26947         * ext/gdk_pixbuf/Makefile.am:  Make sure gstgdkanimation.h is
26948         disted (bug #138914)
26949
26950 2004-04-01  Benjamin Otte  <otte@gnome.org>
26951
26952         * ext/alsa/gstalsa.c: (gst_alsa_change_state),
26953         (gst_alsa_close_audio):
26954           handle case better where a soundcard can't pause
26955         * ext/ogg/gstoggdemux.c:
26956           don't crash when we get events but don't have pads yet
26957
26958 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
26959
26960         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
26961           throw an error if we couldn't probe any caps.
26962
26963 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
26964
26965         * ext/dvdnav/gst-dvd:
26966         Add a really simple sample DVD player
26967
26968 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
26969
26970         * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
26971         (gst_a52dec_push), (gst_a52dec_handle_event),
26972         (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
26973         (gst_a52dec_change_state):
26974         * ext/a52dec/gsta52dec.h:
26975           Use a debug category, Output timestamps correctly
26976           Emit tag info, Handle events, tell liba52dec about cpu
26977           capabilities so it can use MMX etc.
26978         * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
26979           Fix a crasher accessing invalid memory
26980         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
26981         (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
26982         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
26983         (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
26984         (dvdnavsrc_query):
26985           Some support for byte-format seeking.
26986           Small fixes for still frames and menu button overlays
26987         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
26988         (gst_mpeg2dec_alloc_buffer):
26989           Use a debug category. Adjust the report level of several items to
26990           LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
26991           so it doesn't lose the GstBuffer pointer
26992         * gst/debug/Makefile.am:
26993         * gst/debug/gstdebug.c: (plugin_init):
26994         * gst/debug/gstnavseek.c: (gst_navseek_get_type),
26995         (gst_navseek_base_init), (gst_navseek_class_init),
26996         (gst_navseek_init), (gst_navseek_seek),
26997         (gst_navseek_handle_src_event), (gst_navseek_set_property),
26998         (gst_navseek_get_property), (gst_navseek_chain),
26999         (gst_navseek_plugin_init):
27000         * gst/debug/gstnavseek.h:
27001           Add the navseek debug element for seeking back and forth in a
27002           video stream using arrow keys.
27003         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
27004         (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
27005         (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
27006         (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
27007         (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
27008         (gst_mpeg2subt_parse_header), (gst_get_nibble),
27009         (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
27010         (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
27011         (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
27012         (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
27013         * gst/mpeg2sub/gstmpeg2subt.h:
27014           Pretty much a complete rewrite. Now a loopbased element. May still
27015           require work to properly synchronise subtitle buffers.
27016         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
27017         (gst_dvd_demux_send_subbuffer):
27018         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
27019           Don't attempt to create subbuffers of size 0
27020           Reduce a couple of error outputs to warnings.
27021         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
27022         (gst_y4mencode_chain):
27023         Output the y4m frame header correctly.
27024
27025 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
27026
27027         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
27028           throw errors instead of allowing SIGFPE
27029
27030 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
27031
27032         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
27033         (gst_gconf_render_bin_from_key):
27034           leak plugging and style fixing
27035
27036 2004-03-31  David Schleef  <ds@schleef.org>
27037
27038         * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
27039         (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
27040         (bug #138225)
27041         * gst/debug/Makefile.am:
27042         * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
27043         * gst/debug/gstdebug.c: (plugin_init):  Merge elements into one
27044         plugin.
27045         * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
27046         (gst_negotiation_base_init), (gst_negotiation_class_init),
27047         (gst_negotiation_init), (gst_negotiation_getcaps),
27048         (gst_negotiation_pad_link), (gst_negotiation_chain),
27049         (gst_negotiation_set_property), (gst_negotiation_get_property),
27050         (gst_negotiation_plugin_init):  New element to talk about random
27051         negotiation things happening in a pipeline.
27052
27053 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
27054
27055         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
27056           fix integer addition with help of Stefan Kost
27057
27058 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
27059
27060         * po/nl.po: updated Dutch translation (Elros Cyriatan)
27061
27062 2004-03-30  David Schleef  <ds@schleef.org>
27063
27064         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
27065         (gst_mpeg2dec_negotiate_format):  Handle Y42B-format MPEG
27066         video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
27067         (bug #137504)
27068         * ext/mpeg2dec/gstmpeg2dec.h:
27069
27070 2004-03-30  David Schleef  <ds@schleef.org>
27071
27072         * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
27073
27074 2004-03-30  David Schleef  <ds@schleef.org>
27075
27076         * tools/gst-launch-ext-m.m:  Applied patch from gnome@flyn.org (W.
27077         Michael Petullo) to handle .mov
27078
27079 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
27080
27081         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
27082         (gst_osselement_rate_check_rate):
27083           probe caps correctly for sound cards that only support one format
27084
27085 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
27086
27087         * ext/kio/kiosrc.cpp: (process_events):
27088           update handling event processing if inside KDE - untested
27089
27090 2004-03-29  David Schleef  <ds@schleef.org>
27091
27092         * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
27093         by 2 to not interfere with other colorspaces.
27094         * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
27095         * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
27096         one to not interfere with ffmpeg_colorspace.
27097
27098 2004-03-29  David Schleef  <ds@schleef.org>
27099
27100         * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
27101         aren't in the caps.
27102         * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
27103         * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
27104
27105 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
27106
27107         * gst-libs/gst/riff/riff-media.c:
27108           fail on error, don't try to set stuff on NULL caps
27109
27110 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
27111
27112         * configure.ac:
27113         * ext/Makefile.am:
27114         * ext/kio/Makefile.am:
27115         * ext/kio/kioreceiver.cpp:
27116         * ext/kio/kioreceiver.h:
27117         * ext/kio/kiosrc.cpp:
27118         * ext/kio/kiosrc.h:
27119           add experimental kiosrc plugin
27120         * ext/alsa/gstalsaplugin.c: (plugin_init):
27121           initialize debugging category only when we're sure registering the
27122           plugins worked.
27123
27124 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
27125
27126         * examples/gstplay/player.c: (main):
27127         * gst-libs/gst/play/play.c: (gst_play_class_init),
27128         (gst_play_set_location), (gst_play_set_data_src),
27129         (gst_play_set_video_sink), (gst_play_set_audio_sink),
27130         (gst_play_set_visualization), (gst_play_connect_visualization):
27131           check return values of element_set_state and return FALSE where
27132           failed
27133
27134 2004-03-29  Benjamin Otte  <otte@gnome.org>
27135
27136         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
27137           try harder to check if an event is really a discont
27138
27139 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
27140
27141         * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
27142         * po/az.po:
27143
27144 2004-03-28  Benjamin Otte  <otte@gnome.org>
27145
27146         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
27147         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
27148         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
27149           get rid of non-standard "..." ranges in case statements.
27150
27151 2004-03-27  Martin Soto  <martinsoto@users.sourceforge.net>
27152
27153         * gst/mpegstream/gstmpegdemux.c:
27154         * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
27155         specific functionality split to the new dvddemux element.
27156         * gst/mpegstream/gstdvddemux.c:
27157         * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
27158         streams, derived from mpegdemux.
27159         * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
27160         up. SCR based timestamp rewriting can be turned off (will probably
27161         completely disappear soon).
27162         * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
27163         hacking. General cleanup. All printf statements replaced by
27164         debugging messages. Almost complete libdvdnav support.
27165         (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
27166         by events. New properties for audio and subpicture languages.
27167         (dvdnavsrc_update_highlight): Now uses events.
27168         (dvdnavsrc_user_op): Cleaned up.
27169         (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
27170         based). Lots of cleanup, and propper support for most libdvdnav
27171         events.
27172         (dvdnavsrc_make_dvd_event): New function.
27173         (dvdnavsrc_make_dvd_nav_packet_event): New function.
27174         (dvdnavsrc_make_clut_change_event): New function.
27175
27176 2004-03-26  Benjamin Otte  <otte@gnome.org>
27177
27178         * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
27179           fix bug where typefinding would claim it's theora whenever less then
27180           7 bytes of data were available
27181
27182 2004-03-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27183
27184         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
27185         (gst_alawdec_base_init), (gst_alawdec_class_init),
27186         (gst_alawdec_init), (gst_alawdec_chain):
27187         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
27188         (gst_alawenc_base_init), (gst_alawenc_class_init),
27189         (gst_alawenc_init), (gst_alawenc_chain):
27190         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
27191         (gst_mulawdec_base_init), (gst_mulawdec_class_init),
27192         (gst_mulawdec_init), (gst_mulawdec_chain):
27193         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
27194         (gst_mulawenc_base_init), (gst_mulawenc_class_init),
27195         (gst_mulawenc_init), (gst_mulawenc_chain):
27196           Fix capsnego in all four, remove the unused property functions and
27197           simplify the chain functions slightly. I guess we could use macros
27198           or something similar for those, since the code is so similar, but
27199           I'm currently too lazy...
27200
27201 2004-03-24  David Schleef  <ds@schleef.org>
27202
27203         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
27204         (gst_osselement_close_audio), (gst_osselement_probe_caps),
27205         (gst_osselement_get_format_structure),
27206         (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
27207         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
27208         (gst_osselement_rate_int_compare): Add code to handle rate probing
27209         (bug #120883)
27210         * sys/oss/gstosselement.h: same
27211         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
27212         Use rate probing provided by osselement.
27213         * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
27214
27215 2004-03-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27216
27217         * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
27218         (gst_xvidenc_get_property):
27219           ulong/int mess-up.
27220
27221 2004-03-24  David Schleef  <ds@schleef.org>
27222
27223         * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
27224         (gst_speexdec_init):
27225         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
27226         (gst_speexenc_init):  Create the pad template correctly (from
27227         the static pad template, not a NULL pointer.)
27228
27229 2004-03-25  Benjamin Otte  <otte@gnome.org>
27230
27231         * gst/debug/Makefile.am:
27232         * gst/debug/breakmydata.c:
27233           add element that quasi-randomly changes bytes in the stream.
27234           Intended use is robustness checking of demuxers and decoders in
27235           media tests.
27236
27237 2004-03-24  Benjamin Otte  <otte@gnome.org>
27238
27239         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
27240         (gst_alsa_probe_hw_params):
27241         * ext/alsa/gstalsa.h:
27242           debugging output fixes
27243
27244 2004-03-24  Benjamin Otte  <otte@gnome.org>
27245
27246         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
27247           don't g_return_if_fail if element is PLAYING, fail silently as every
27248           other element.
27249         * gst/effectv/gstquark.c: (gst_quarktv_chain):
27250           only fix needed for cast lvalue issues in gst-plugins
27251         * gst/volenv/gstvolenv.c: (gst_volenv_init):
27252           add proxy_getcaps
27253
27254 2004-03-24  Benjamin Otte  <otte@gnome.org>
27255
27256         * gst/level/gstlevel.c: (gst_level_init):
27257           add proxying getcaps function, so level doesn't advertise impossible
27258           caps
27259
27260 2004-03-24  David Schleef  <ds@schleef.org>
27261
27262         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
27263         (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
27264         (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
27265         (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
27266         (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
27267         (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
27268         (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
27269         (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
27270         (qtdemux_parse_tree), (qtdemux_parse_trak):  Fix debugging
27271         messages.  Divide the chunk size by the compression ratio
27272         (needed for MACE audio)
27273
27274 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27275
27276         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
27277           Fix buffer overflow read error.
27278
27279 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27280
27281         * ext/alsa/gstalsa.h:
27282           Remove unused entry.
27283         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
27284           Add cinepak.
27285         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
27286         (gst_videodrop_link), (gst_videodrop_chain):
27287           Fix, sort of. Was horribly broken with new capsnego. Bah...
27288
27289 2004-03-23  Jeremy Simon  <jesimon@libertysurf.fr>
27290
27291         * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
27292         (plugin_init):
27293         Add a monkeysaudio typefind function
27294
27295 2004-03-23  Johan Dahlin  <johan@gnome.org>
27296
27297         * gst-libs/gst/play/play.c (gst_play_audio_fixate)
27298         (gst_play_video_fixate): Check so the structure has the field
27299         before trying to fixate them, this makes it possible to have
27300         fakesinks for video and audio output without printing errors on
27301         the output console.
27302
27303 2004-03-22  David Schleef  <ds@schleef.org>
27304
27305         * sys/oss/Makefile.am:
27306         * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
27307         (check_rate), (add_rate):  Rate probing test app.
27308
27309 2004-03-21  Benjamin Otte  <otte@gnome.org>
27310
27311         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
27312         (_fixate_caps_to_int), (gst_audio_convert_fixate):
27313           add a fixation function that pretty much does the right thing (fixes
27314           #137556)
27315
27316 2004-03-20  David I. Lehn  <dlehn@users.sourceforge.net>
27317
27318         * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
27319
27320 2004-03-20  Tim-Phillip Müller <t.i.m@zen.co.uk>
27321
27322         reviewed by: Benjamin Otte  <otte@gnome.org>
27323
27324         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
27325           terminate gst_event_new_discontinuous correctly (fixes parts of
27326           #137711)
27327
27328 2004-03-19  David Schleef  <ds@schleef.org>
27329
27330         * gst-libs/gst/Makefile.am:  Enable xoverlay unconditionally,
27331         since it doesn't depend on X, and it's part of our ABI.
27332
27333 2004-03-19  Iain <iain@prettypeople.org>
27334
27335         * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
27336         is_int in the structure, not the local variable.
27337
27338 2004-03-19  David Schleef  <ds@schleef.org>
27339
27340         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
27341         (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
27342         (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
27343         Improvements in caps negotiation.
27344
27345 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
27346
27347         * po/LINGUAS:
27348         * po/af.po:
27349           adding Afrikaans (Petri Jooste)
27350
27351 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
27352
27353         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27354         (gst_ffmpegcolorspace_chain):
27355         throw error instead of g_critical (#137588)
27356
27357 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
27358
27359         * Makefile.am:
27360         * configure.ac:
27361           dist common and m4 correctly
27362         * po/sv.po:
27363
27364 2004-03-17  David Schleef  <ds@schleef.org>
27365
27366         * pkgconfig/gstreamer-media-info.pc.in:  Add Version.
27367         (bug #137348)
27368
27369 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
27370
27371         * po/LINGUAS:
27372         * po/sv.po:
27373           adding Swedish translation (Christian Rose)
27374
27375 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
27376
27377         * Makefile.am: use release.mak
27378
27379 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
27380
27381         * common/ChangeLog:
27382         * common/gst-autogen.sh:
27383           add some explanation about the version detection
27384         * configure.ac:
27385           fix X check
27386
27387 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
27388
27389         * configure.ac: bump nano to 1
27390
27391 === release 0.8.0 ===
27392
27393 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
27394
27395         * configure.ac: release 0.8.0, "Pharmaceutical Itch"
27396
27397 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
27398
27399         * configure.ac:
27400           update libtool version
27401         * gst-libs/gst/media-info/Makefile.am:
27402           actually use libtool version
27403
27404 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
27405
27406         * configure.ac: fix speex detection to work with 1.0 but not 1.1
27407
27408 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
27409
27410         * configure.ac:
27411         * gst-plugins.spec.in:
27412         * pkgconfig/Makefile.am:
27413         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
27414         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
27415         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
27416         * pkgconfig/gstreamer-libs.pc.in:
27417         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
27418         * pkgconfig/gstreamer-play-uninstalled.pc.in:
27419         * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
27420         * pkgconfig/gstreamer-plugins.pc.in:
27421           remove @VERSION@ from some of the pc files since core and plugins
27422           are decoupled.
27423           created gstreamer-plugins.pc as it's a better name, but keeping
27424           -libs around for now to get fixes upstream done first.
27425
27426 2004-03-15  Julien MOUTTE <julien@moutte.net>
27427
27428         * gst-libs/gst/play/play.c: (gst_play_get_framerate),
27429         (gst_play_get_sink_element): First draft of gst_play_get_framerate.
27430         * gst-libs/gst/play/play.h:
27431
27432 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
27433
27434         * *.c, *.cc: don't mix tabs and spaces
27435
27436 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
27437
27438         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
27439           use the new ffmpegcolorspace
27440         * gst-plugins.spec.in:
27441           package new colorspace and media-info
27442         * configure.ac:
27443         * pkgconfig/Makefile.am:
27444           fix some more disting issues
27445         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
27446         * pkgconfig/gstreamer-media-info.pc.in:
27447           generate media-info pc files
27448
27449 2004-03-15  Johan Dahlin  <johan@gnome.org>
27450
27451         * *.h: Revert indenting
27452
27453 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
27454
27455         * configure.ac:
27456           adding ffmpegcolorspace element
27457         * gst/ffmpegcolorspace/Makefile.am:
27458         * gst/ffmpegcolorspace/avcodec.h:
27459         * gst/ffmpegcolorspace/common.h:
27460         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
27461         * gst/ffmpegcolorspace/dsputil.h:
27462         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
27463         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27464         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
27465         (gst_ffmpeg_caps_to_pix_fmt):
27466         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
27467         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27468         (gst_ffmpegcolorspace_caps_remove_format_info),
27469         (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
27470         (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
27471         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
27472         (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
27473         (gst_ffmpegcolorspace_set_property),
27474         (gst_ffmpegcolorspace_get_property),
27475         (gst_ffmpegcolorspace_register):
27476         * gst/ffmpegcolorspace/imgconvert.c:
27477         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
27478         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
27479         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
27480         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
27481         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
27482         (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
27483         (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
27484         (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
27485         (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
27486         (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
27487         (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
27488         (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
27489         (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
27490         (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
27491         (img_get_alpha_info), (deinterlace_line),
27492         (deinterlace_line_inplace), (deinterlace_bottom_field),
27493         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
27494         * gst/ffmpegcolorspace/imgconvert_template.h:
27495         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
27496         * gst/ffmpegcolorspace/mmx.h:
27497         * gst/ffmpegcolorspace/utils.c: (avcodec_init):
27498           adding ffmpegcolorspace element supplied by Ronald after cleaning
27499           up and pulling in the right bits of upstream source.
27500           I'm sure a better C/compiler wizard could do some cleaning up (for
27501           example use GLIB's malloc stuff), but as a first pass this
27502           works very well
27503
27504 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
27505
27506         * ext/alsa/gstalsa.h:
27507           I assume Ronald forgot to commit the change to have cardname
27508           as a struct member.  Expect some public spanking at the next
27509           opportunity.
27510
27511 2004-03-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27512
27513         * ext/alsa/gstalsa.c: (gst_alsa_get_property),
27514         (gst_alsa_open_audio), (gst_alsa_close_audio):
27515         * ext/alsa/gstalsa.c:
27516           Don't open the device if we're a mixer (= padless).
27517         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
27518         (gst_alsa_mixer_init), (gst_alsa_mixer_open),
27519         (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
27520           Open mixer during state change rather than during object
27521           initialization. Also, get a device name. Currently in a somewhat
27522           hackish fashion, but I didn't really find something better.
27523
27524 2004-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
27525
27526         * *.c, *.h: run gst-indent
27527
27528 2004-03-14  Benjamin Otte  <otte@gnome.org>
27529
27530         * gst/modplug/gstmodplug.cc:
27531         * gst/modplug/gstmodplug.h:
27532           set correct timestamps on outgoing buffers
27533
27534 2004-03-14  Benjamin Otte  <otte@gnome.org>
27535
27536         * gst/modplug/gstmodplug.cc:
27537           handle events - don't do crap when a discont arrives that's not
27538           necessary
27539           This allows correct loading and playback of mods in Rhythmbox
27540
27541 2004-03-14  Benjamin Otte  <otte@gnome.org>
27542
27543         * configure.ac:
27544         * gst-libs/gst/gconf/Makefile.am:
27545         * pkgconfig/Makefile.am:
27546           move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
27547           they get rebuilt properly
27548         * configure.ac:
27549           when checking for vorbis, try pkgconfig first.
27550         * gst/modplug/gstmodplug.cc:
27551           add fixate function
27552
27553 2004-03-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27554
27555         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
27556           Fix for obvious mistake, where we first shift the offset and then
27557           read a samplesize element assuming the old offset. Note that this
27558           part still has something weird, i.e. my movies containing those
27559           don't actually play well, but at least there's something that looks
27560           like sound now.
27561
27562 2004-03-14  Jan Schmidt  <thaytan@mad.scientist.com>
27563         * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
27564         (plugin_init):
27565         Add a typefind function for speex format
27566
27567 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27568
27569         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
27570         (gst_asf_demux_setup_pad):
27571           Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
27572           instead of 0. Reason is simple: some elements have a fps range
27573           of 1-max instead of 0-max. So now ASF video actually works.
27574
27575 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
27576
27577         * po/LINGUAS:
27578         * po/sr.po:
27579           adding serbian as a language
27580
27581 2004-03-13  Benjamin Otte  <otte@gnome.org>
27582
27583         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
27584           return taglist correctly from _get function, don't gst_pad_push it.
27585           (fixes #137042)
27586
27587 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
27588         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
27589
27590 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27591
27592         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
27593         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
27594         (gst_alsa_mixer_track_new):
27595         * ext/alsa/gstalsamixertrack.h:
27596           Fix ancient leftovers... MixerTrack is a GObject.
27597
27598 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27599
27600         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
27601         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
27602           Don't block during probing...
27603
27604 2004-03-12  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27605
27606         * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
27607         (gst_alsa_get_property), (gst_alsa_probe_get_properties),
27608         (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
27609         (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
27610         (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
27611         (gst_alsa_open_audio), (gst_alsa_close_audio):
27612         * ext/alsa/gstalsa.h:
27613           Add propertyprobe interface implementation, add some device-name
27614           property, all this so that it looks good in gnome-volume-control.
27615
27616 2004-03-12  David Schleef  <ds@schleef.org>
27617
27618         * configure.ac: the Hermes library controls hermescolorspace, not
27619         colorspace.
27620         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
27621         (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
27622         not /* */
27623         * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
27624         * ext/sdl/sdlvideosink.h: ditto.
27625         * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
27626
27627 2004-03-12  Benjamin Otte  <otte@gnome.org>
27628
27629         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
27630         (gst_x_overlay_got_xwindow_id):
27631         * gst-libs/gst/xoverlay/xoverlay.h:
27632           replace XID with unsigned long to get rid of the xlibs dependency in
27633           XOverlay (fixes #137004)
27634
27635 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
27636         * gst/effectv/gstaging.c: (gst_agingtv_base_init),
27637         (gst_agingtv_setup):
27638         * gst/effectv/gstdice.c: (gst_dicetv_get_type),
27639         (gst_dicetv_base_init), (gst_dicetv_class_init),
27640         (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
27641         * gst/effectv/gstedge.c: (gst_edgetv_get_type),
27642         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
27643         (gst_edgetv_setup), (gst_edgetv_rgb32):
27644         * gst/effectv/gsteffectv.c:
27645         * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
27646         (gst_quarktv_set_property):
27647         * gst/effectv/gstrev.c: (gst_revtv_get_type),
27648         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
27649         (gst_revtv_setup), (gst_revtv_rgb32):
27650         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
27651         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
27652         (gst_shagadelictv_init), (gst_shagadelictv_setup),
27653         (gst_shagadelictv_rgb32):
27654         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
27655         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
27656         (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
27657         * gst/effectv/gstwarp.c:
27658         Port everything that can be ported to videofilter and fix up the caps.
27659         Can someone with a big-endian machine please check these?
27660
27661 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27662
27663         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
27664         (gst_osssink_chain), (gst_osssink_change_state):
27665           Latest fixes for A/V sync, audio playback and such. This is about
27666           all... MPEG playback issues are mostly related to the async build-
27667           up of MPEG files, I cannot fix that. Use basicgthread to solve it.
27668
27669 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
27670
27671         patch from: Stephane Loeuillet
27672
27673         * configure.ac:
27674           use pkg-config for some libraries, falling back to the old .m4 way
27675           (fixes #131270)
27676         * m4/libdv.m4:
27677           removed
27678
27679 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
27680
27681         * configure.ac:
27682         * tools/Makefile.am:
27683         * tools/Makefile.in:
27684         * tools/gst-launch-ext-m.m:
27685         * tools/gst-launch-ext.1.in:
27686         * tools/gst-visualise-m.m:
27687         * tools/gst-visualise.1:
27688         * tools/gst-visualise.1.in:
27689           reorganizing generation of script tools
27690
27691 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27692
27693         * ext/divx/gstdivxdec.c:
27694           Downgrade priority. We prefer ffdec_mpeg4.
27695         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
27696         (gst_faad_chain), (gst_faad_change_state):
27697           Fix capsnego. Doesn't work for some sounds because we don't have
27698           a 5:1 to stereo element.
27699         * ext/xvid/gstxvid.c: (plugin_init):
27700           Add priority.
27701         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
27702         (gst_osssink_change_state):
27703           Add discont handling.
27704
27705 2004-03-09  Colin Walters  <walters@verbum.org>
27706
27707         * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
27708         conversion.
27709
27710 2004-03-09  Benjamin Otte  <otte@gnome.org>
27711
27712         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
27713           the signals take 2 arguments
27714
27715 2004-03-09  David Schleef  <ds@schleef.org>
27716
27717         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
27718         (gst_alsa_fixate): Add fixate function.  (bug #136686)
27719         * ext/alsa/gstalsa.h:
27720         * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
27721
27722 2004-03-09  Benjamin Otte  <otte@gnome.org>
27723
27724         * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
27725         (gst_mikmod_change_state):
27726         * ext/mikmod/gstmikmod.h:
27727           make mikmod's loop function not loop infinitely and call
27728           gst_element_yield anymore
27729         * gst/modplug/gstmodplug.cc:
27730           fix pad negotiation (fixes #136590)
27731
27732 2004-03-09  David Schleef  <ds@schleef.org>
27733
27734         * ext/lcs/Makefile.am:  Fix so that the lcs colorspace plugin
27735         doesn't conflict with the internal colorspace plugin.
27736         * gst-libs/gst/audio/make_filter:  Use `` instead of $() to
27737         satisfy the crappy-ass shell shipped by a certain vendor.
27738         * gst/videofilter/make_filter: same (bug #135299)
27739
27740 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27741
27742         * configure.ac: bump nano to 1
27743
27744 === release 0.7.6 ===
27745
27746 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27747
27748         * configure.in: releasing 0.7.6, "There"
27749
27750 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27751
27752         * pkgconfig/gstreamer-play-uninstalled.pc.in:
27753         * pkgconfig/gstreamer-play.pc.in:
27754           synchronize the two
27755
27756 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27757
27758         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
27759         (cdparanoia_open), (cdparanoia_event):
27760           fix/add error handling
27761         * po/POTFILES.in:
27762           add cdparanoia source
27763         * tools/Makefile.am:
27764           make scripts executable
27765
27766 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27767
27768         * configure.ac:
27769         * ext/vorbis/Makefile.am:
27770         * sys/Makefile.am:
27771           remove id3types, vorbisfile and xvideosink from the build (#133783)
27772
27773 2004-03-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27774
27775         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
27776           Fix metadata read crash (#136537).
27777
27778 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
27779
27780         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
27781         * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
27782           adding mime types, fixing the one-stop function
27783
27784 2004-03-08  Christian Schaller <Uraeus@gnome.org>
27785
27786         * ext/nas/nassink.c and /ext/nas/nassink.h:
27787         More NAS love from Arwed von Merkatz
27788         So lets all sing 'Can you feel the NAS tonight'
27789
27790 2004-03-08  Christian Schaller <Uraeus@gnome.org>
27791
27792         * tools/gst-launch-ext.in:
27793         Replace vorbisfile with oggdemux/vorbisdec/audioconvert
27794
27795 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
27796
27797         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
27798         (gst_mpeg2dec_init):
27799         remove the user_data pad for now, because it is being used in
27800         fixating causing MPEG playback to fixate on 1000 Hz for playback.
27801         If someone knows how to fix this properly, please do.
27802
27803 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
27804
27805         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27806         (gst_osssink_get_time):
27807         add a warning, IMO this won't get triggered anymore, remove later
27808
27809 2004-03-07  David Schleef  <ds@schleef.org>
27810
27811         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):  Added Cinepak
27812         format (bug #136470)
27813
27814 2004-03-07  Thomas Vander Stichele  <thomas at apestaart dot org>
27815
27816         * gst-libs/Makefile.am:
27817         * gst-libs/gst/media-info/Makefile.am:
27818         * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
27819         (error_callback), (gst_media_info_error_create),
27820         (gst_media_info_error_element), (gmip_init), (gmip_reset),
27821         (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
27822         * gst-libs/gst/media-info/media-info-priv.h:
27823         * gst-libs/gst/media-info/media-info-test.c: (main):
27824         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
27825         (gst_media_info_class_init), (gst_media_info_instance_init),
27826         (gst_media_info_set_source), (gst_media_info_read_with_idler),
27827         (gst_media_info_read_idler), (gst_media_info_read):
27828         * gst-libs/gst/media-info/media-info.h:
27829         fixed, should work now
27830
27831 2004-03-07  Christian Schaller <Uraeus@gnome.org>
27832
27833         * ext/nas/nassink.c:
27834         A bunch of NAS fixes from Arwed von Merkatz
27835
27836 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27837
27838         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
27839         (qtdemux_parse_trak):
27840           Fix crash (j might be greater than n_samples, in which case we're
27841           writing outside the allocated space for the array) and memleak.
27842
27843 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27844
27845         * sys/oss/gstosssink.c: (gst_osssink_chain):
27846           And another caller that couldn't handle delay < 0 (unsigned
27847           integer overflow). Video now continues playing on an audio
27848           buffer underrun, and the clock continues working. Audio still
27849           stalls.
27850
27851 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27852
27853         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27854         (gst_osssink_get_time):
27855           get_delay() may return values lower than 0. In those cases, we
27856           should not actually cast to *unsigned* int64, that will break
27857           stuff horribly. In my case, it screwed up A/V sync in movies
27858           in totem rather badly.
27859
27860 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
27861
27862         * ext/faac/gstfaac.c: (gst_faac_chain):
27863         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
27864         * ext/libpng/gstpngenc.c: (user_write_data):
27865         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
27866         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
27867         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
27868         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
27869         Fix several misuse of gst_buffer_merge (it doesn't take ownership
27870         of any buffer), should fix some leaks. I hope I didn't unref buffers
27871         that shouldn't be...
27872
27873 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
27874
27875         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
27876         (deep_notify_callback), (tag_flag_score), (found_tag_callback),
27877         (error_callback), (gmi_reset), (gmi_seek_to_track),
27878         (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
27879         (gmip_find_type_post), (gmip_find_stream_post),
27880         (gmip_find_track_streaminfo_post):
27881         * gst-libs/gst/media-info/media-info-priv.h:
27882         * gst-libs/gst/media-info/media-info-test.c: (print_tag),
27883         (info_print), (main):
27884         * gst-libs/gst/media-info/media-info.c:
27885         (gst_media_info_error_create), (gst_media_info_error_element),
27886         (gst_media_info_instance_init), (gst_media_info_get_property),
27887         (gst_media_info_new), (gst_media_info_set_source),
27888         (gst_media_info_read_idler), (gst_media_info_read):
27889         * gst-libs/gst/media-info/media-info.h:
27890           first pass at making this work again.  This seems to work on
27891           tagged ogg/vorbis and mp3 files.
27892
27893 2004-03-06  Benjamin Otte  <otte@gnome.org>
27894
27895         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
27896           fix huge leak: gst_buffer_merge doesn't unref the first argument
27897           itself.
27898
27899 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
27900
27901         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
27902           report layer/mode/emphasis
27903
27904 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
27905
27906         * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
27907
27908 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
27909
27910         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
27911           signal serial
27912
27913 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
27914
27915         * ext/vorbis/vorbis.c: (plugin_init):
27916         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
27917         (gst_vorbis_dec_init), (vorbis_dec_event):
27918         add debug category
27919         make vorbisdec handle _BYTE and _TIME queries
27920
27921 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
27922
27923         * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
27924           from the xing header
27925
27926 2004-03-06  Benjamin Otte  <otte@gnome.org>
27927
27928         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
27929         (gst_audio_convert_link), (gst_audio_convert_change_state),
27930         (gst_audio_convert_buffer_from_default_format):
27931           do conversions from/to float correctly, fix some caps nego errors,
27932           export correct supported caps in template and getcaps, use correct
27933           caps in try_set_caps functions
27934
27935 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
27936
27937         For some reason, I only committed a ChangeLog entry yesterday and
27938         not the corresponding code...
27939         * ext/mad/gstmad.c: Fix detection of Xing headers
27940         * gst/tags/gstid3tag.c: Changes to support TLEN tags
27941
27942 2004-03-06  Benjamin Otte  <otte@gnome.org>
27943
27944         * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
27945         (gst_ogg_demux_src_query):
27946           make sure to handle the case where there's no current chain
27947           gracefully.
27948
27949 2004-03-05  David Schleef  <ds@schleef.org>
27950
27951         * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
27952         Add fixate function. (bug #131128)
27953         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
27954         (gst_sdlvideosink_fixate):  Add fixate function.
27955         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
27956         Fix attempt to print a non-pointer using GST_PTR_FORMAT.
27957         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
27958         Fix missing break that was causing ulaw to be interpreted as
27959         raw int.
27960
27961 2004-03-05  David Schleef  <ds@schleef.org>
27962
27963         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
27964         Fix code that ignores return value of gst_buffer_merge().
27965         (bug #114560)
27966         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
27967         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
27968         * testsuite/gst-lint:  Check for above.
27969
27970 2004-03-05  David Schleef  <ds@schleef.org>
27971
27972         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):  Check for unfixed
27973         caps and throw an element error.  (bug #136334)
27974
27975 2004-03-05  David Schleef  <ds@schleef.org>
27976
27977         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
27978         (gst_faad_chain): Fix negotiation.
27979         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
27980         key and button events.
27981         * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
27982         dung heap of code.
27983         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
27984         depends on gconf
27985         * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
27986         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
27987         (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
27988         function to encourage better negotiation, particularly between
27989         audioconvert and osssink.
27990         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
27991         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):  Make some debugging
27992         more important.
27993         * gst/typefind/gsttypefindfunctions.c:  Fix mistake in flash
27994         typefinding.
27995         * gst/vbidec/vbiscreen.c:  Add glib header
27996         * pkgconfig/gstreamer-play.pc.in:  Depends on gst-interfaces.
27997
27998 2004-03-06  Christophe Fergeau  <teuf@users.sourceforge.net>
27999
28000         * ext/mad/gstmad.c: Fix detection of Xing headers
28001         * gst/tags/gstid3tag.c: Changes to support TLEN tags
28002
28003 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
28004
28005         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
28006         (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
28007           debug updates
28008
28009 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
28010
28011         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
28012         * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
28013         (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
28014         files, and report the parsed length as a GST_TAG_DURATION tag.
28015         * gst/tags/gstid3tag.c: support TLEN (duration) tag
28016
28017 2004-03-05  Benjamin Otte  <otte@gnome.org>
28018
28019         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
28020           convert channels correctly. convert correctly to unsigned.
28021
28022 2004-03-05  Julien MOUTTE <julien@moutte.net>
28023
28024         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
28025         we have a window before clearing it.
28026
28027 2004-03-05  Julien MOUTTE <julien@moutte.net>
28028
28029         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
28030         have a window before clearing it.
28031
28032 2004-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
28033
28034         * gconf/gstreamer.schemas.in:
28035         * gst-libs/gst/gconf/Makefile.am:
28036           version installation path the same way as for 0.6
28037         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
28038         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28039         * pkgconfig/gstreamer-play-uninstalled.pc.in:
28040           remove comment that was fixed
28041
28042 2004-03-05  David Schleef  <ds@schleef.org>
28043
28044         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
28045         (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
28046         (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
28047         (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
28048         Add prototype code for handling seeking and querying.
28049
28050 2004-03-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
28051
28052         * examples/gstplay/player.c: (main):
28053           Initialize variables to NULL. Prevents a segfault because the
28054           (uninitialized) variable is not NULL, resulting in a crash on
28055           trying to reach error->message.
28056
28057 2004-03-05  Benjamin Otte  <otte@gnome.org>
28058
28059         * gst/audioconvert/gstaudioconvert.c:
28060         (gst_audio_convert_buffer_to_default_format):
28061         make float=>int conversion work correctly even in cornercases.
28062
28063 2004-03-04  David I. Lehn  <dlehn@users.sourceforge.net>
28064
28065         * debian/README.Debian:
28066         * debian/build-deps:
28067         * debian/changelog:
28068         * debian/control:
28069         * debian/control.in:
28070         * debian/copyright:
28071         * debian/gstreamer-a52dec.files:
28072         * debian/gstreamer-aa.files:
28073         * debian/gstreamer-alsa.files:
28074         * debian/gstreamer-alsa.manpages:
28075         * debian/gstreamer-arts.files:
28076         * debian/gstreamer-artsd.files:
28077         * debian/gstreamer-audiofile.files:
28078         * debian/gstreamer-avifile.files:
28079         * debian/gstreamer-cdparanoia.files:
28080         * debian/gstreamer-colorspace.files:
28081         * debian/gstreamer-doc.files:
28082         * debian/gstreamer-dv.files:
28083         * debian/gstreamer-dvd.files:
28084         * debian/gstreamer-esd.files:
28085         * debian/gstreamer-festival.files:
28086         * debian/gstreamer-flac.files:
28087         * debian/gstreamer-gconf.conffiles:
28088         * debian/gstreamer-gconf.files:
28089         * debian/gstreamer-gconf.postinst:
28090         * debian/gstreamer-gnomevfs.files:
28091         * debian/gstreamer-gsm.files:
28092         * debian/gstreamer-http.files:
28093         * debian/gstreamer-jack.files:
28094         * debian/gstreamer-jpeg.files:
28095         * debian/gstreamer-mad.files:
28096         * debian/gstreamer-mikmod.files:
28097         * debian/gstreamer-misc.files:
28098         * debian/gstreamer-mpeg2dec.files:
28099         * debian/gstreamer-oss.files:
28100         * debian/gstreamer-plugin-apps.files:
28101         * debian/gstreamer-plugin-apps.manpages:
28102         * debian/gstreamer-plugin-libs-dev.files:
28103         * debian/gstreamer-plugin-libs.files:
28104         * debian/gstreamer-plugin-template.postinst:
28105         * debian/gstreamer-plugin-template.postrm:
28106         * debian/gstreamer-sdl.files:
28107         * debian/gstreamer-sid.files:
28108         * debian/gstreamer-vorbis.files:
28109         * debian/gstreamer-x.files:
28110         * debian/mk.control:
28111         * debian/rules:
28112         Debian package info not maintained here.
28113
28114 2004-03-04  Thomas Vander Stichele  <thomas at apestaart dot org>
28115
28116         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
28117         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
28118         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
28119         * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
28120         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
28121         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
28122         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
28123         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
28124         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
28125         * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
28126         * gst-libs/gst/colorbalance/colorbalance.c:
28127         (gst_color_balance_class_init):
28128         * gst-libs/gst/colorbalance/colorbalancechannel.c:
28129         (gst_color_balance_channel_class_init):
28130         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
28131         * gst-libs/gst/play/play.c: (gst_play_class_init):
28132         * gst-libs/gst/propertyprobe/propertyprobe.c:
28133         (gst_property_probe_iface_init):
28134         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
28135         * gst-libs/gst/tuner/tunerchannel.c:
28136         (gst_tuner_channel_class_init):
28137         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
28138         * gst/cutter/gstcutter.c: (gst_cutter_class_init):
28139         * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
28140         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
28141         * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
28142         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
28143         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
28144         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
28145         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
28146           fix signals to use - instead of _
28147         * ext/libcaca/gstcacasink.h:
28148         * ext/sdl/sdlvideosink.h:
28149           fix header rename
28150
28151 2004-03-04  David Schleef  <ds@schleef.org>
28152
28153         * testsuite/gst-lint:  Add a check for bad signal names.
28154
28155 2004-03-04  Stefan Kost <kost@imn.htwk-leipzig.de>
28156
28157         reviewed by David Schleef
28158
28159         * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
28160         modified the alpha channel and caused a warning. (bug #136192)
28161
28162 2004-04-03  Christian Schaller <Uraeus@gnome.org>
28163
28164         * gst-plugins.spec.in:
28165         Change names of plugins to actually be correct. Try to keep things
28166         alphabetical to avoid getting beat up by Thomas
28167
28168 2004-03-03  Julien MOUTTE <julien@moutte.net>
28169
28170         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
28171         Using ximagesink as a default if no gconf key found. We should
28172         probably consider using alsasink instead of osssink for the audio
28173         part.
28174
28175 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
28176
28177         * configure.ac:
28178           fix --with-plugins, don't think it ever worked before
28179         * gst-plugins.spec.in:
28180           even more updates
28181
28182 2004-03-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
28183
28184         * ext/sdl/sdlvideosink.h:
28185         * sys/ximage/ximagesink.h:
28186         * sys/xvideo/xvideosink.h:
28187         * sys/xvimage/xvimagesink.h:
28188           Fix for move of gstvideosink.h -> videosink.h.
28189
28190 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
28191
28192         * gst-libs/gst/xwindowlistener/Makefile.am:
28193           this is a plugin library, not a library
28194
28195 2004-03-01  David Schleef  <ds@schleef.org>
28196
28197         * AUTHORS:  Added some names.  Add yourself if you're still
28198         missing.
28199
28200 2004-03-01  David Schleef  <ds@schleef.org>
28201
28202         * MAINTAINERS: Add
28203
28204 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
28205
28206         * gst-plugins.spec.in: clean up spec file
28207
28208 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
28209
28210         * gst-libs/gst/video/Makefile.am:
28211         * gst-libs/gst/video/gstvideosink.c:
28212         * gst-libs/gst/video/gstvideosink.h:
28213           rename gstvideosink.h to videosink.h to match other headers
28214         * gst/mixmatrix/Makefile.am:
28215           fix plugin filename
28216         * gst/tags/Makefile.am: fix plugin filename
28217
28218 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
28219
28220         * gst/tags/Makefile.am: fix plugin filename
28221
28222 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
28223
28224         * examples/gstplay/player.c: (got_time_tick), (main):
28225           add error handler
28226           display time_tick more readably
28227         * gst/mixmatrix/Makefile.am:
28228           fix plugin file name
28229
28230 2004-02-29  Christophe Fergeau  <teuf@gnome.org>
28231
28232         * sys/oss/gstosselement.c: (gst_osselement_probe),
28233         (device_combination_append), (gst_osselement_class_probe_devices):
28234         * sys/oss/gstosselement.h:
28235           Reworked enumeration of oss dsps and mixers so that gst-mixer works
28236           on my system using alsa oss emulation, fixes bug #135597
28237
28238 2004-02-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
28239
28240         * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
28241         (gst_videodrop_chain), (gst_videodrop_change_state):
28242         * gst/videodrop/gstvideodrop.h:
28243           Work based on timestamp of input data, not based on the expected
28244           framerate from the input. The consequence is that this element now
28245           not only scales framerates, but also functions as a framerate
28246           corrector or framerate stabilizer/constantizer.
28247
28248 2004-02-27  David Schleef  <ds@schleef.org>
28249
28250         patches from jmmv@menta.net (Julio M. Merino Vidal)
28251
28252         * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
28253         GST_ELEMENT_ERROR call (bug #135634)
28254         * gst/interleave/interleave.c: (interleave_buffered_loop),
28255         (interleave_bytestream_loop): Don't use alloca() (bug #135640)
28256         * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
28257         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
28258         (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
28259         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
28260         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
28261         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
28262         Fix GST_ELEMENT_ERROR call.
28263         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
28264         GST_ELEMENT_ERROR call.
28265
28266 2004-02-27  Benjamin Otte  <otte@gnome.org>
28267
28268         * gst-libs/gst/audio/audio.h:
28269           add macro to make sure header isn't included twice
28270         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
28271           don't use gst_buffer_free
28272         * gst/playondemand/filter.func:
28273           don't use gst_data_free. Free data only once.
28274
28275 2004-02-26  David Schleef  <ds@schleef.org>
28276
28277         * gst-libs/gst/colorbalance/Makefile.am:
28278         * gst-libs/gst/mixer/Makefile.am:
28279         * gst-libs/gst/tuner/Makefile.am:
28280         * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
28281         should not be disted, -marshal.h files should not be installed,
28282         and -enum.h files _should_ be installed.  Fix to make this the
28283         case.
28284
28285 === release 0.7.5 ===
28286
28287 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
28288
28289         * configure.ac: release 0.7.5, "Under The Sea"
28290
28291 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
28292
28293         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
28294         (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
28295         * gst/videoscale/gstvideoscale.c:
28296         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
28297           assorted debug/warning fixes
28298
28299 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
28300
28301         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
28302         (gst_videoscale_init), (gst_videoscale_chain),
28303         (gst_videoscale_set_property), (plugin_init):
28304         * gst/videoscale/gstvideoscale.h:
28305         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
28306         (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
28307         (gst_videoscale_planar400), (gst_videoscale_packed422),
28308         (gst_videoscale_packed422rev), (gst_videoscale_32bit),
28309         (gst_videoscale_24bit), (gst_videoscale_16bit),
28310         (gst_videoscale_bilinear), (gst_videoscale_bicubic),
28311         (gst_videoscale_scale_plane_slow),
28312         (gst_videoscale_scale_point_sample),
28313         (gst_videoscale_scale_nearest),
28314         (gst_videoscale_scale_nearest_str2),
28315         (gst_videoscale_scale_nearest_str4),
28316         (gst_videoscale_scale_nearest_32bit),
28317         (gst_videoscale_scale_nearest_24bit),
28318         (gst_videoscale_scale_nearest_16bit):
28319         add debugging category and use it properly
28320         fix use of GST_PTR_FORMAT
28321
28322 2004-02-25  Andy Wingo  <wingo@pobox.com>
28323
28324         * gst/interleave/interleave.c (interleave_buffered_loop): Always
28325         push only when channel->buffer is NULL. Prevents segfaults doing
28326         the state change after a nonlocal exit, like a scheme exception.
28327
28328         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
28329         Handle the case where the intersected caps is empty.
28330
28331 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
28332
28333         * gst/law/mulaw-decode.c: (mulawdec_link):
28334         * gst/law/mulaw.c: (plugin_init):
28335           fix mulawdec so it actually works again
28336
28337 2004-02-24  Arwed v. Merkatz  <v.merkatz@gmx.net>
28338
28339         reviewed by: David Schleef  <ds@schleef.org>
28340
28341         * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
28342         (gst_gamma_init), (gst_gamma_set_property),
28343         (gst_gamma_get_property), (gst_gamma_calculate_tables),
28344         (gst_gamma_rgb24), (gst_gamma_rgb32):  Adds gamma correction
28345         for RGB, with separate r g and b correction factors. (#131167)
28346
28347 2004-02-24  Thomas Vander Stichele  <thomas at apestaart dot org>
28348
28349         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
28350           only signal tags for bitrate if they're > 0 (#134894)
28351
28352 2004-02-24  David Schleef  <ds@schleef.org>
28353
28354         * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
28355         (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
28356         (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
28357         (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
28358         (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
28359         (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
28360         (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
28361         (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
28362         Cleanups.  Convert g_prints to GST_LOGs.  Add qtdemux debug
28363         category.  Attempt to fix timestamp calculation.
28364
28365 2004-02-24  Johan Dahlin  <johan@gnome.org>
28366
28367         * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
28368
28369 2004-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28370
28371         * configure.ac:
28372         * gconf/Makefile.am:
28373         * gconf/gstreamer.schemas:
28374         * gst-libs/gst/gconf/Makefile.am:
28375         * gst-libs/gst/gconf/gconf.c:
28376           version gconf schemas and install locations
28377
28378 2004-02-23  Benjamin Otte  <otte@gnome.org>
28379
28380         * ext/xine/xineinput.c: (gst_xine_input_dispose):
28381         (gst_xine_input_subclass_init):
28382           call parent dispose.
28383           change pad template for CD reader correctly
28384         * ext/xine/Makefile.am:
28385         * ext/xine/gstxine.h:
28386         * ext/xine/xine.c: (plugin_init):
28387         * ext/xine/xineaudiosink.c:
28388           wrap audio sinks, too
28389         * gst-libs/gst/resample/private.h:
28390         * gst-libs/gst/resample/resample.c: (gst_resample_init),
28391         (gst_resample_reinit), (gst_resample_scale),
28392         (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
28393         (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
28394         (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
28395         (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
28396         (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
28397         * gst-libs/gst/resample/resample.h:
28398         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
28399         (gst_audioscale_class_init), (gst_audioscale_link),
28400         (gst_audioscale_get_buffer), (gst_audioscale_init),
28401         (gst_audioscale_chain), (gst_audioscale_set_property),
28402         (gst_audioscale_get_property):
28403         * gst/audioscale/gstaudioscale.h:
28404           s/resample_*/gst_resample_*/i to not clobber namespaces
28405
28406 2004-02-23  Julien MOUTTE  <julien@moutte.net>
28407
28408         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
28409         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
28410         (gst_riff_create_video_template_caps),
28411         (gst_riff_create_audio_template_caps),
28412         (gst_riff_create_iavs_template_caps):
28413         * gst-libs/gst/riff/riff-media.h:
28414         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
28415         (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
28416         (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
28417         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
28418         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
28419         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
28420         (gst_matroska_demux_plugin_init): First batch implementing audio and
28421         video codec tags in demuxers.
28422
28423 2004-02-22  Benjamin Otte  <otte@gnome.org>
28424
28425         * ext/xine/Makefile.am:
28426         * ext/xine/gstxine.h:
28427         * ext/xine/xine.c: (plugin_init):
28428         * ext/xine/xineinput.c:
28429           add input plugin wrapper. Playback from files, http, mms and cdda
28430           works.
28431         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
28432           remove leftover G_GNUC_UNUSED
28433         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
28434         (gst_asf_demux_identify_guid):
28435           improve debugging output
28436
28437 2004-02-22  Benjamin Otte  <otte@gnome.org>
28438
28439         reported by: Padraig O'Briain <padraig.obriain@sun.com>
28440
28441         * autogen.sh:
28442           replace test -e with test -x for mkinstalldirs to be more portable.
28443           (fixes #134816)
28444
28445 2004-02-22  Benjamin Otte  <otte@gnome.org>
28446
28447         reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
28448
28449         * gst/audioconvert/gstaudioconvert.c: (plugin_init):
28450           set rank to PRIMARY
28451         * gst/volume/gstvolume.c: (plugin_init):
28452           set rank to NONE
28453         fixes #134960
28454
28455 2004-02-22   Julio M. Merino Vidal <jmmv@menta.net>
28456
28457         reviewed by Benjamin Otte  <otte@gnome.org>
28458
28459         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
28460           escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
28461
28462 2004-02-22  Benjamin Otte  <otte@gnome.org>
28463
28464         * configure.ac:
28465           export [_]*{gst,Gst,GST}.* symbols from plugins
28466
28467 2004-02-22  Christophe Fergeau <teuf@gnome.org>
28468
28469         reviewed by: Benjamin Otte  <otte@gnome.org>
28470
28471         * ext/lame/gstlame.c: (add_one_tag):
28472         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
28473         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
28474         (gst_vorbisenc_metadata_set1):
28475         * gst/tags/gstid3tag.c:
28476         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
28477           apply fixes from bugs #135042 (lame can't write tags) and #133817
28478           (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
28479
28480 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
28481
28482         * configure.ac: Export only gst_plugin_desc from plugins.
28483          Note that this change only makes any effect with Linux using libtool
28484          1.5.2 or higher. Otherwise it is silently ignored, but it would build
28485          fine. And don't try to have several versions of libtool in different
28486          directories.
28487
28488 2004-02-20  Andy Wingo  <wingo@pobox.com>
28489
28490         * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
28491         interleave respectively.
28492
28493         * gst/interleave/deinterleave.c: New plugin: deinterleave
28494         (replaces on oneton).
28495         * gst/interleave/interleave.c: New plugin: interleave.
28496         * gst/interleave/plugin.h: Support file.
28497         * gst/interleave/plugin.c: Support file.
28498
28499         * configure.ac: Remove intfloat and oneton, add interleave.
28500
28501         * ext/sndfile/gstsf.c: Handle events better.
28502
28503         * gst/audioconvert/gstaudioconvert.c: Change to support int2float
28504         and float2int operation. int2float has scheduling problems as
28505         noted in in2float_chain.
28506
28507 2004-02-20  Benjamin Otte  <otte@gnome.org>
28508
28509         * ext/xine/Makefile.am:
28510         * ext/xine/gstxine.h:
28511         * ext/xine/xine.c:
28512         * ext/xine/xineaudiodec.c:
28513         * ext/xine/xinecaps.c:
28514           add first version of xine plugin wrapper. Currently only wraps the
28515           QDM2 win32 DLL, and even that only in proof-of-concept quality.
28516         * configure.ac:
28517         * ext/Makefile.am:
28518           add xine plugin wrapper, disabled by default. Use --enable-xine to
28519           build. Note that it'll segfault on gst-register if you don't remove
28520           the goom and tvtime post plugins from xine.
28521         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
28522         (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
28523           add extradata parsing for QDM2.
28524           change around debugging prints.
28525
28526 2004-02-19  Benjamin Otte  <otte@gnome.org>
28527
28528         * ext/lame/gstlame.c: (gst_lame_chain):
28529         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
28530           use gst_tag_list_insert when you want to insert tags
28531
28532 2004-02-18  David Schleef  <ds@schleef.org>
28533
28534         * configure.ac:  Move massink to gst-rotten
28535         * ext/Makefile.am:
28536         * ext/mas/Makefile.am:
28537         * ext/mas/massink.c:
28538         * ext/mas/massink.h:
28539
28540 2004-02-18  David Schleef  <ds@schleef.org>
28541
28542         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
28543         typefinding, since it seems to be worse than nothing.
28544         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):  Add ftyp
28545         atom to recognize .mp4 and .m4a files as video/quicktime.
28546
28547 2004-02-18  David Schleef  <ds@schleef.org>
28548
28549         * gst/sine/demo-dparams.c: (quit_live),
28550         (dynparm_log_value_changed), (dynparm_value_changed), (main):
28551         Use double dparams, not float.
28552         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28553         (gst_sinesrc_init): Change sync default to FALSE, since multiple
28554         sync'd elements don't really work correctly.
28555         * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
28556         (volume_update_volume), (volume_get_property):  Change dparam
28557         to double.
28558
28559 2004-02-18  Julien MOUTTE  <julien@moutte.net>
28560
28561         * sys/ximage/ximagesink.c:
28562         (gst_ximagesink_xwindow_update_geometry),
28563         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
28564         (gst_ximagesink_change_state), (gst_ximagesink_expose),
28565         (gst_ximagesink_init): Rework the way software video scaling works. So
28566         now we check on each chain call if the video frames are feeling the
28567         window. If not we try to renegotiate caps. On failure we memorize that
28568         and we won't try again for that PLAYING sessions.
28569         * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
28570         failure.
28571         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
28572         synchronous flag.
28573
28574 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
28575
28576         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
28577           break up _link so we can give a better debug message for errors
28578
28579 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
28580
28581         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
28582           set up debug category
28583
28584 2004-02-18  Julien MOUTTE <julien@moutte.net>
28585
28586         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28587         (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
28588         the way renegotiation work. The event handling function is not taking
28589         care of external windows and renegotiate method check for pad flags
28590         NEGOTIATING. Should fix : #133209
28591
28592 2004-02-17  Julien MOUTTE  <julien@moutte.net>
28593
28594         * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
28595         pad is negotiating before trying renegotiation.
28596
28597 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
28598
28599         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
28600           pass on all possible mime types as typefind hints
28601
28602 2004-02-17  Julien MOUTTE <julien@moutte.net>
28603
28604         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
28605         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
28606         possible SHM leak if we crash. All other apps using XShm are doing
28607         that.
28608
28609 2004-02-17  Julien MOUTTE  <julien@moutte.net>
28610
28611         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28612         (gst_ximagesink_expose): Renegotiate size on expose.
28613         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
28614         size on expose.
28615
28616 2004-02-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28617
28618         * testsuite/alsa/sinesrc.c:
28619           cosmetic fix to fix compile issue with gcc 2.95.4
28620
28621 2004-02-16  Julien MOUTTE <julien@moutte.net>
28622
28623         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
28624         (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
28625         failed opening the audio device.
28626         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
28627         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
28628         (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
28629         (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
28630         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
28631         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
28632         (gst_ximagesink_change_state), (gst_ximagesink_chain),
28633         (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
28634         Removing some useless g_return_if_fail like wingo suggested.
28635         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
28636         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
28637         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
28638         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
28639         (gst_xvimagesink_update_colorbalance),
28640         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
28641         (gst_xvimagesink_xcontext_clear),
28642         (gst_xvimagesink_get_fourcc_from_caps),
28643         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
28644         (gst_xvimagesink_set_xwindow_id),
28645         (gst_xvimagesink_colorbalance_list_channels),
28646         (gst_xvimagesink_colorbalance_set_value),
28647         (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
28648         PAUSED. Removing some useless g_return_if_fail like wingo suggested.
28649
28650 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
28651
28652         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
28653           throw error when not negotiated instead of asserting
28654
28655 2004-02-15  Julien MOUTTE  <julien@moutte.net>
28656
28657         * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
28658         correct data refcounting.
28659
28660 2004-02-15  Julien MOUTTE  <julien@moutte.net>
28661
28662         * gst/switch/gstswitch.c: (gst_switch_change_state),
28663         (gst_switch_class_init): Cleaning the sinkpads correctly on state
28664         change, mostly the EOS flag.
28665
28666 2004-02-15  Julien MOUTTE  <julien@moutte.net>
28667
28668         * examples/gstplay/player.c: (got_eos), (main): Adding some
28669         output for debugging.
28670         * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
28671         timeouts if we go to any state different from PLAYING.
28672         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
28673         more EOS bugs in riff lib.
28674
28675 2004-02-14  Julien MOUTTE  <julien@moutte.net>
28676
28677         * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
28678         visualization until i find a way to fix switch correctly.
28679         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
28680         EOS arrives.
28681         * gst/switch/gstswitch.c: (gst_switch_release_pad),
28682         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
28683         (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
28684         Reworked switch to get a more correct behaviour with events and refing
28685         of data stored in sinkpads.
28686         * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
28687         we don't pull from a pad in EOS.
28688
28689 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28690
28691         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
28692           remove v1 tag even if we can't read it (makes sure we don't detect
28693           it again)
28694
28695 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28696
28697         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
28698         (gst_alsa_xrun_recovery):
28699         * ext/alsa/gstalsa.h:
28700           try xrun recovery when wait failed. Make xrun recovery function
28701           return TRUE/FALSE to indicate success. (might fix #134354)
28702
28703 2004-02-13  David Schleef  <ds@schleef.org>
28704
28705         * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
28706         (dynparm_value_changed), (main): Convert from float to double.
28707         * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
28708
28709 2004-02-13  David Schleef  <ds@schleef.org>
28710
28711         * gst/silence/gstsilence.c: (gst_silence_class_init),
28712         (gst_silence_set_clock), (gst_silence_get),
28713         (gst_silence_set_property), (gst_silence_get_property):
28714         * gst/silence/gstsilence.h: Add sync property.
28715         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28716         (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
28717         (gst_sinesrc_set_property), (gst_sinesrc_get_property):
28718         * gst/sine/gstsinesrc.h: Add sync property.
28719
28720 2004-02-13  David Schleef  <ds@schleef.org>
28721
28722         * gst/intfloat/gstint2float.c: (conv_f32_s16),
28723         (gst_int2float_chain_gint16):  Change stdint usage to glib types.
28724
28725 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
28726
28727         * configure.ac:
28728         * ext/Makefile.am:
28729         * gst-libs/ext/Makefile.am:
28730           move ffmpeg plugin to gst-ffmpeg module
28731
28732 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
28733
28734         * configure.ac: use GST_ARCH to detect architecture
28735
28736 2004-02-12  Julien MOUTTE  <julien@moutte.net>
28737
28738         * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
28739
28740 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
28741
28742         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
28743           classify LADSPA plugins based on number of src/sink pads
28744           (#133663, Stefan Kost)
28745         * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
28746           fix dparams registration
28747           (#133528, Stefan Kost)
28748         * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
28749           fix use of isprint and use g_ascii_isprint instead
28750           (#133316, Stefan Kost)
28751
28752 2004-02-11  David Schleef  <ds@schleef.org>
28753
28754         Convert a few inner loops to use liboil.  This is currently
28755         optional, and is only enabled if liboil is present (duh!).
28756         * configure.ac: Check for liboil-0.1
28757         * gst/intfloat/Makefile.am:
28758         * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
28759         (gst_int2float_chain_gint16):
28760         * gst/videofilter/Makefile.am:
28761         * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
28762         (tablelookup_u8), (gst_videobalance_planar411):
28763         * gst/videotestsrc/Makefile.am:
28764         * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
28765         * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
28766         (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
28767         (paint_hline_RGB565), (paint_hline_xRGB1555):
28768
28769 2004-02-11  David Schleef  <ds@schleef.org>
28770
28771         * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
28772         (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
28773         (gst_colorspace_getcaps), (gst_colorspace_link),
28774         (gst_colorspace_base_init), (gst_colorspace_init),
28775         (gst_colorspace_chain), (gst_colorspace_change_state),
28776         (plugin_init): Merge Ronald's patch (bug #117897) and update
28777         for new caps and negotiation.  Seems to work, although it
28778         shows off bugs in lcs.
28779
28780 2004-02-11  David Schleef  <ds@schleef.org>
28781
28782         * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
28783         (bug #133886)  Noticed by bugs@leroutier.net (Stephane LOEUILLET)
28784
28785 2004-02-11  David Schleef  <ds@schleef.org>
28786
28787         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
28788         (gst_rfbsrc_change_state), (gst_rfbsrc_init),
28789         (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
28790         Add server and port properties
28791
28792 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
28793
28794         * m4/a52.m4:
28795         * m4/aalib.m4:
28796         * m4/as-ffmpeg.m4:
28797         * m4/as-liblame.m4:
28798         * m4/as-slurp-ffmpeg.m4:
28799         * m4/check-libheader.m4:
28800         * m4/esd.m4:
28801         * m4/freetype2.m4:
28802         * m4/gconf-2.m4:
28803         * m4/glib.m4:
28804         * m4/gst-alsa.m4:
28805         * m4/gst-artsc.m4:
28806         * m4/gst-ivorbis.m4:
28807         * m4/gst-matroska.m4:
28808         * m4/gst-sdl.m4:
28809         * m4/gst-shout2.m4:
28810         * m4/gst-sid.m4:
28811         * m4/gtk.m4:
28812         * m4/libdv.m4:
28813         * m4/libfame.m4:
28814         * m4/libmikmod.m4:
28815         * m4/ogg.m4:
28816         * m4/vorbis.m4:
28817           fix underquotedness of macros (#133800)
28818         * m4/as-avifile.m4:
28819         * m4/xmms.m4:
28820           removed because no longer used
28821
28822 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
28823
28824         * configure.ac:
28825           require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
28826           by autopoint (fixes #132996)
28827
28828 2004-02-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28829
28830         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
28831         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
28832         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
28833         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
28834           fix memleaks
28835
28836 2004-02-11  David Schleef  <ds@schleef.org>
28837
28838         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
28839         (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
28840         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
28841         (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
28842         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
28843         (gst_jpegenc_class_init), (gst_jpegenc_init),
28844         (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
28845         (gst_jpegenc_chain), (gst_jpegenc_set_property),
28846         (gst_jpegenc_get_property):  Fix negotiation.  Add some properties.
28847         * ext/jpeg/gstjpegenc.h: Fix negotiation.
28848
28849 2004-02-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28850
28851         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
28852         (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
28853         * ext/mikmod/gstmikmod.h:
28854           fix caps negotiation in mikmod
28855         * ext/ogg/gstoggdemux.c: (gst_ogg_print):
28856           output debug information
28857
28858 2004-02-08  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28859
28860         * gst-libs/gst/colorbalance/Makefile.am:
28861         * gst-libs/gst/navigation/Makefile.am:
28862         * gst-libs/gst/xoverlay/Makefile.am:
28863           remove unused GST_OPT_CFLAGS from Makefiles
28864           include X_CFLAGS and X_LIBS in xoverlay. (#131948)
28865
28866 2004-02-07  David Schleef  <ds@schleef.org>
28867
28868         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
28869         push events to pads that haven't been created (#133508)
28870
28871 2004-02-07  Jan Schmidt  <thaytan@mad.scientist.com>
28872
28873         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
28874         (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
28875         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
28876         (gst_dvdec_loop), (gst_dvdec_change_state):
28877         Second attempt at committing a working dvdec element.
28878
28879 2004-02-06  David Schleef  <ds@schleef.org>
28880
28881         Build fixes for OS X: (see #129600)
28882         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
28883         (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
28884         (gst_riff_read_strf_iavs):
28885         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
28886         (gst_avi_demux_stream_odml):
28887         * gst/playondemand/Makefile.am:
28888         * gst/rtp/rtp-packet.c:
28889
28890 2004-02-05  David Schleef  <ds@schleef.org>
28891
28892         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
28893         last change, because it Just Doesn't Compile.
28894
28895 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28896
28897         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
28898           skip undecodable id3v2 tag instead of keeping it
28899
28900 2004-02-05  David Schleef  <ds@schleef.org>
28901
28902         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
28903         Unref leaked buffer.  (Noticed by Ronald)
28904
28905 2004-02-05  David I. Lehn  <dlehn@users.sourceforge.net>
28906
28907         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28908         Sync requires with other checks.  >= vs =.
28909
28910 2004-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
28911
28912         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
28913         (gst_dvdec_video_link), (gst_dvdec_loop):
28914         * ext/dv/gstdvdec.h:
28915           rework the caps negotiation so that dvdec works again instead
28916           of just segfaulting.
28917
28918 === release 0.7.4 ===
28919
28920 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
28921
28922         * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
28923         * configure.ac: changed for release
28924
28925 2004-02-05  Thomas Vander Stichele  <thomas at apestaart dot org>
28926
28927         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
28928         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
28929         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28930         * pkgconfig/gstreamer-play-uninstalled.pc.in:
28931           reworked patch by David Lehn to fix libdir and includedir for
28932           uninstalled libraries
28933           removed play and gconf from gstreamer-libs since they have their
28934           own pkgconfig files
28935
28936 2004-02-04  David Schleef  <ds@schleef.org>
28937
28938         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
28939         memleak.
28940
28941 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28942
28943         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
28944           use correct GST_TAG_ENCODER tag
28945
28946 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28947
28948         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
28949           be sure to stop the clock when going to paused
28950         * sys/oss/gstosssink.c: (gst_osssink_change_state):
28951           reset number of transmitted when going to ready.
28952         fixes #132935
28953
28954 2004-02-05  Charles Schmidt <cschmidt2@emich.edu>
28955
28956         reviewed by Benjamin Otte
28957
28958         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
28959           extract track count (fixes #133410)
28960
28961 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28962
28963         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
28964           that should be !=, not == (fixes #132519)
28965
28966 2004-02-04  David Schleef  <ds@schleef.org>
28967
28968         Make sure set_explicit_caps() is called before adding pad.
28969         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
28970         * gst/id3/gstid3types.c: (gst_id3types_loop):
28971         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
28972         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
28973
28974 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
28975
28976         * configure.ac:
28977           bump nano to 2, first prerelease
28978           put back AM_PROG_LIBTOOL
28979
28980 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
28981
28982         * testsuite/alsa/Makefile.am:
28983           these are user test apps, not automatic testsuite tests
28984
28985 2004-02-04  David Schleef  <ds@schleef.org>
28986
28987         Convert GST_DEBUG_CAPS() to GST_DEBUG():
28988         * gst/mpeg1videoparse/gstmp1videoparse.c:
28989         (mp1videoparse_parse_seq):
28990         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
28991         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
28992         * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
28993         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
28994         (gst_xvideosink_getcaps):
28995         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
28996         * testsuite/gst-lint: more tests
28997
28998 2004-02-04  David Schleef  <ds@schleef.org>
28999
29000         Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
29001         with the code that they would expand to.
29002         * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
29003         (gst_flacdec_get_src_query_types),
29004         (gst_flacdec_get_src_event_masks):
29005         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
29006         (gst_gnomevfssrc_get_query_types),
29007         (gst_gnomevfssrc_get_event_mask):
29008
29009 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29010
29011         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
29012         (gst_sinesrc_dispose):
29013           fix memleak by properly disposing sinesrc
29014
29015 2004-02-04  Julien MOUTTE  <julien@moutte.net>
29016
29017         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
29018         * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
29019         an overlay to redraw the image because it has been exposed.
29020         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
29021         (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
29022         (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
29023         * sys/ximage/ximagesink.h: Implement expose method from XOverlay
29024         interface
29025         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
29026         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
29027         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
29028         * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
29029         interface
29030
29031 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29032
29033         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
29034           more memleak fixage
29035
29036 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29037
29038         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
29039         * gst/typefind/gsttypefindfunctions.c:
29040           fix memleaks shown by gst-typefind
29041
29042 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
29043
29044         * common/glib-gen.mak:
29045           add hack rule to touch .Plo files
29046         * gst-libs/gst/colorbalance/Makefile.am:
29047         * gst-libs/gst/mixer/Makefile.am:
29048         * gst-libs/gst/play/Makefile.am:
29049         * gst-libs/gst/tuner/Makefile.am:
29050           remove glib_root variable
29051
29052 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29053
29054         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
29055           set explicit caps before adding the element, so the autopluggers can
29056           plug correctly.
29057         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
29058         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
29059         (mpeg_video_type_find), (mpeg_video_stream_type_find),
29060         (dv_type_find):
29061           fix memleaks in typefind functions. gst_type_find_suggest takes a const
29062           argument.
29063
29064 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
29065
29066         * gst-libs/gst/colorbalance/Makefile.am:
29067         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
29068         * gst-libs/gst/colorbalance/colorbalance.c:
29069         * gst-libs/gst/colorbalance/colorbalance.h:
29070         * gst-libs/gst/colorbalance/colorbalancemarshal.list:
29071         * gst-libs/gst/mixer/Makefile.am:
29072         * gst-libs/gst/mixer/mixer-marshal.list:
29073         * gst-libs/gst/mixer/mixer.c:
29074         * gst-libs/gst/mixer/mixer.h:
29075         * gst-libs/gst/mixer/mixermarshal.list:
29076         * gst-libs/gst/play/Makefile.am:
29077         * gst-libs/gst/play/play.h:
29078         * gst-libs/gst/tuner/Makefile.am:
29079         * gst-libs/gst/tuner/tuner-marshal.list:
29080         * gst-libs/gst/tuner/tuner.c:
29081         * gst-libs/gst/tuner/tuner.h:
29082         * gst-libs/gst/tuner/tunermarshal.list:
29083           use new glib-gen.mak snippet to clean up Makefile.am
29084           fix various bugs in Makefile.am's
29085
29086 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29087
29088         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
29089           handle chain parsing correctly in the multichain case
29090         * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
29091         (theora_dec_from_granulepos), (theora_dec_to_granulepos),
29092         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
29093         (theora_dec_chain):
29094           handle events and queries correctly
29095
29096 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
29097
29098         * .cvsignore:
29099         Ignore generated file _stdint.h.
29100
29101 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
29102
29103         * gst-libs/gst/colorbalance/Makefile.am:
29104         * gst-libs/gst/colorbalance/colorbalance.h:
29105         * gst-libs/gst/mixer/Makefile.am:
29106         * gst-libs/gst/mixer/mixer.h:
29107         * gst-libs/gst/play/Makefile.am:
29108         * gst-libs/gst/play/play.h:
29109         * gst-libs/gst/tuner/Makefile.am:
29110         * gst-libs/gst/tuner/tuner.h:
29111         Generate enum type code with glib-mkenums.
29112         * gst-libs/gst/colorbalance/.cvsignore:
29113         * gst-libs/gst/mixer/.cvsignore:
29114         * gst-libs/gst/play/.cvsignore:
29115         * gst-libs/gst/tuner/.cvsignore:
29116         Ignore generated files.
29117
29118 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
29119
29120         * gst-libs/gst/audio/.cvsignore:
29121         Ignore generated file.
29122         * gst-libs/gst/audio/Makefile.am:
29123         Do not install example filter.
29124
29125 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
29126
29127         * examples/switch/.cvsignore:
29128         Ignore generated file.
29129
29130 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29131
29132         * common/m4/ax_create_stdint_h.m4:
29133         * configure.ac:
29134           add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
29135           _stdint.h.
29136         * Makefile.am:
29137           remove generated _stdint.h in DISTCLEANFILES
29138         * ext/a52dec/gsta52dec.c:
29139           include _stdint.h for a52dec. (should fix #133064)
29140
29141 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
29142
29143         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
29144         (gst_tag_to_vorbis_comments):
29145         Add replaygain support to vorbistag
29146
29147 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
29148         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
29149         (gst_ffmpeg_caps_to_extradata):
29150           Fix SVQ3 caps flag properties
29151           Use glib macro for bytes swap
29152
29153 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
29154
29155         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
29156         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
29157         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
29158         * ext/sndfile/gstsf.c: (plugin_init):
29159         * gst/avi/gstavi.c: (plugin_init):
29160         * sys/dxr3/dxr3init.c: (plugin_init):
29161         * sys/oss/gstossaudio.c: (plugin_init):
29162         * sys/v4l/gstv4l.c: (plugin_init):
29163         * sys/v4l2/gstv4l2.c: (plugin_init):
29164           remove textdomain calls
29165         * po/nl.po:
29166           update Dutch translation
29167
29168 2004-02-02  Julien MOUTTE  <julien@moutte.net>
29169
29170         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
29171         (gst_play_set_audio_sink): Moving volume in the audio thread for
29172         instantaneous volume change. Maybe i will add another volume in front
29173         of visualization later, not sure yet though.
29174
29175 2004-02-02  Julien MOUTTE  <julien@moutte.net>
29176
29177         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
29178         (gst_ximagesink_handle_xevents): Better X events handling, only take
29179         the latest events for configure and motion.
29180         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
29181
29182 2004-02-02  Jon Trowbridge  <trow@gnu.org>
29183
29184         reviewed by: David Schleef  <ds@schleef.org>
29185
29186         Fix memory leaks:
29187         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
29188         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
29189
29190 2004-02-02  David Schleef  <ds@schleef.org>
29191
29192         code cleanup.  Change bzero() to memset().  Remove duplicate ; at ends
29193         of lines.
29194         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
29195         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
29196         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
29197         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
29198         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
29199         * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
29200         * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
29201         * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
29202         (gst_float2_2_int_link):
29203         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
29204         * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
29205         * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
29206         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
29207         * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
29208         * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
29209         * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
29210         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
29211         * testsuite/gst-lint: Add tests for bzero and ;;
29212
29213 2004-02-02  David Schleef  <ds@schleef.org>
29214
29215         * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
29216
29217 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
29218
29219         * ext/aalib/gstaasink.c: (gst_aasink_open):
29220         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
29221         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29222         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
29223         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
29224         (gst_afsink_close_file):
29225         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
29226         (gst_afsrc_close_file):
29227         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
29228         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
29229         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
29230         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
29231         * ext/esd/esdmon.c: (gst_esdmon_get):
29232         * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
29233         * ext/faac/gstfaac.c: (gst_faac_chain):
29234         * ext/faad/gstfaad.c: (gst_faad_chain):
29235         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
29236         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
29237         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
29238         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
29239         (gst_flacdec_loop):
29240         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
29241         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
29242         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
29243         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
29244         (gst_gnomevfssink_close_file):
29245         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
29246         (gst_gnomevfssrc_open_file):
29247         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
29248         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
29249         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
29250         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
29251         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
29252         * ext/mad/gstmad.c: (gst_mad_chain):
29253         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
29254         * ext/mpeg2dec/gstmpeg2dec.c:
29255         * ext/mpeg2enc/gstmpeg2enc.cc:
29256         * ext/mplex/gstmplex.cc:
29257         * ext/mplex/gstmplexibitstream.cc:
29258         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
29259         (gst_ogg_demux_push):
29260         * ext/raw1394/gstdv1394src.c:
29261         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
29262         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
29263         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
29264         (gst_sf_loop):
29265         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
29266         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
29267         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
29268         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
29269         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
29270         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
29271         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
29272         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
29273         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
29274         (gst_riff_read_element_data), (gst_riff_read_seek),
29275         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
29276         * gst/adder/gstadder.c: (gst_adder_loop):
29277         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
29278         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
29279         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
29280         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
29281         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
29282         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
29283         * gst/goom/gstgoom.c: (gst_goom_chain):
29284         * gst/id3/gstid3types.c: (gst_id3types_loop):
29285         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
29286         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
29287         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
29288         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
29289         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
29290         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
29291         (gst_ebml_read_float), (gst_ebml_read_header):
29292         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
29293         (gst_matroska_demux_parse_blockgroup):
29294         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
29295         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
29296         * gst/oneton/gstoneton.c: (gst_oneton_chain):
29297         * gst/silence/gstsilence.c: (gst_silence_get):
29298         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
29299         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
29300         * gst/speed/gstspeed.c: (speed_loop):
29301         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
29302         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
29303         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
29304         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
29305         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
29306         (gst_wavparse_loop):
29307         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
29308         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
29309         (dxr3audiosink_close):
29310         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
29311         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
29312         (dxr3videosink_close), (dxr3videosink_write_data):
29313         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
29314         * sys/oss/gstosssink.c: (gst_osssink_chain):
29315         * sys/oss/gstosssrc.c: (gst_osssrc_get):
29316         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
29317         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
29318         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
29319         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
29320         (gst_v4l_set_window), (gst_v4l_enable_overlay):
29321         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
29322         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
29323         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
29324         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
29325         (gst_v4l_set_audio):
29326         * sys/v4l/v4l_calls.h:
29327         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
29328         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
29329         (gst_v4lmjpegsink_playback_init),
29330         (gst_v4lmjpegsink_playback_start):
29331         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
29332         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
29333         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
29334         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
29335         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
29336         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
29337         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
29338         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
29339         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
29340         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
29341         (gst_v4l2_get_output), (gst_v4l2_set_output),
29342         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
29343         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
29344         (gst_v4l2_set_attribute):
29345         * sys/v4l2/v4l2_calls.h:
29346         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
29347         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
29348         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
29349         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
29350         (gst_v4l2src_capture_stop):
29351         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
29352         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
29353         (gst_ximagesink_chain):
29354         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
29355         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
29356         (gst_xvideosink_xwindow_new):
29357         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29358         (gst_xvimagesink_chain):
29359
29360 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
29361
29362         * gst/volume/gstvolume.c: (gst_volume_set_volume),
29363         (gst_volume_get_volume), (volume_class_init), (volume_init),
29364         (volume_chain_int16), (volume_update_volume):
29365         * gst/volume/gstvolume.h:
29366           make code more readable by removing magic numbers
29367           make mixer interface export 0-100 range
29368           make it internally map to 0.0-1.0 range so users don't distort
29369           output by putting the sliders at full volume
29370
29371 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
29372
29373         * gst-libs/gst/play/play.c: (gst_play_tick_callback),
29374         (gst_play_state_change), (gst_play_seek_to_time):
29375         block the tick callback for 0.5 secs after doing a seek
29376
29377 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
29378
29379         * gst-libs/gst/play/play.c: (gst_play_new):
29380           check for GError
29381
29382 2004-02-01  Julien MOUTTE  <julien@moutte.net>
29383
29384         * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
29385         (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
29386         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
29387         (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
29388         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
29389         (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
29390
29391 2004-02-01  Thomas Vander Stichele  <thomas at apestaart dot org>
29392
29393         * configure.ac:
29394         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29395           check for a function added in vorbis 1.1
29396
29397 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29398
29399         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
29400         (gst_alsa_drain_audio), (gst_alsa_stop_audio):
29401           really start/stop clock only on PLAYING <=> PAUSED
29402         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29403           remove \n from debugging lines
29404         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
29405           make it work when seeking does not
29406         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29407           reset on DISCONT
29408
29409 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29410
29411         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
29412           start clock on PAUSED=>PLAYING, not later
29413         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
29414           extract correct time for different discont formats
29415         (gst_alsa_sink_get_time):
29416           don't segfault when no format is negotiated yet, just return 0
29417         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29418         (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
29419         (gst_ogg_pad_push):
29420           handle flush and discont events correctly
29421         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
29422           handle discont events correctly
29423
29424 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
29425
29426         * gst-libs/gst/play/play.c: (gst_play_error_quark),
29427         (gst_play_error_create), (gst_play_error_plugin),
29428         (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
29429         * gst-libs/gst/play/play.h:
29430           add error handling during creation
29431         * examples/gstplay/player.c: (main):
29432           use new gst_play_new
29433
29434
29435 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29436
29437         * ext/theora/theoradec.c: (theora_dec_chain):
29438           make comments work
29439         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
29440         (vorbis_dec_src_event), (vorbis_dec_chain):
29441           add encoder tag, fix tag reading to be more error tolerant, change
29442           BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
29443           gst_pad_event_default.
29444         * gst/tags/gstvorbistag.c:
29445         (gst_tag_list_from_vorbiscomment_buffer):
29446           undefine function specific define at end of function
29447
29448 2004-01-31  Jeremy Simon  <jesimon@libertysurf.fr>
29449
29450         * ext/flac/gstflac.c: (plugin_init):
29451         * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
29452         * ext/flac/gstflacdec.h:
29453         * ext/flac/gstflacenc.h:
29454           Fix typos
29455
29456 2004-01-30  David I. Lehn  <dlehn@users.sourceforge.net>
29457
29458         * examples/gstplay/player.c: s/gstplay.h/play.h/
29459
29460 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
29461
29462         * gst-libs/gst/play/Makefile.am:
29463         * gst-libs/gst/play/gstplay.c:
29464         * gst-libs/gst/play/gstplay.h:
29465         * gst-libs/gst/play/play.c:
29466           more surgery, operation complete
29467
29468 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
29469
29470         * gst-libs/gst/play/play.old.c:
29471         * gst-libs/gst/play/play.old.h:
29472           after CVS surgery by moving, remove
29473         * gst-libs/gst/play/playpipelines.c:
29474           remove
29475
29476         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
29477           add negotiation error
29478
29479 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
29480
29481         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29482         (gst_ogg_demux_push):
29483           add some seeking debug info
29484           send a flush when seeking
29485
29486 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29487
29488         * configure.ac:
29489           use AC_C_INLINE
29490         * configure.ac:
29491         * ext/Makefile.am:
29492         * ext/theora/Makefile.am:
29493         * ext/theora/theoradec.c:
29494           add theora video decoder. Does just do simple decoding for now and
29495           has been tested against Theora cvs only. It only works when theora
29496           is compiled with --enable-static.
29497         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29498           always reset packetno on DISCONT
29499
29500 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29501
29502         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
29503           Fix audio.
29504
29505 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29506
29507         * gst/mpegaudioparse/gstmpegaudioparse.c:
29508         (mp3_type_frame_length_from_header):
29509           Fix header parsing - stolen from ffmpeg (thank you! :) ).
29510
29511 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29512
29513         * ext/esd/esdsink.c: (gst_esdsink_init):
29514           Since we have static pad template caps, we don't need to negotiate;
29515           either the core errors out or we know the format.
29516
29517 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29518
29519         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
29520         (gst_riff_read_seek):
29521         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
29522         (gst_ebml_read_seek):
29523           Fix event handling.
29524
29525 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29526
29527         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
29528           removee video/x-theora from vp3 decoder, it doesn't handle raw
29529           theora streams
29530         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
29531           fix bug with finalizing element that never went to PAUSED
29532         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
29533           length and position queries were swapped
29534         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
29535         (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
29536         (vorbis_dec_src_event):
29537           implement querying time and bytes
29538
29539 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
29540
29541         * just about every source file:
29542           gst_element_error -> GST_ELEMENT_ERROR
29543
29544 2004-01-29  Julien MOUTTE  <julien@moutte.net>
29545
29546         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
29547         emiting FLUSH and even before DISCONT.
29548         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
29549         get the best instant seeking as possible yay!
29550
29551 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29552
29553         * gst/mpeg1videoparse/gstmp1videoparse.c:
29554         (gst_mp1videoparse_real_chain):
29555           Committed wrong version last week... Grr... Didn't notice until now.
29556
29557 2004-01-29  Julien MOUTTE <julien@moutte.net>
29558
29559         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
29560         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
29561         have_xwindow_id signal in xwindow_create.
29562
29563 2004-01-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29564
29565         * ext/ogg/gstoggdemux.c:
29566           lots of changes - mainly support for chained bitstreams, seeking,
29567           querying and bugfixes of course
29568         * ext/vorbis/Makefile.am:
29569         * ext/vorbis/vorbisdec.c:
29570         * ext/vorbis/vorbisdec.h:
29571           add vorbisdec raw vorbis decoder
29572         * ext/vorbis/vorbis.c: (plugin_init):
29573           register vorbisdec as PRIMARY, vorbisfile as SECONDARY
29574         * gst/intfloat/Makefile.am:
29575         * gst/intfloat/float22int.c:
29576         * gst/intfloat/float22int.h:
29577         * gst/intfloat/gstintfloatconvert.c: (plugin_init):
29578           add float2intnew plugin. It converts multichannel interleaved float to
29579           multichannel interleaved int. The name should probably be changed.
29580         * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
29581         (plugin_init):
29582           add typefinding for raw theora video so oggdemux can detect it.
29583
29584 2004-01-28  Julien MOUTTE  <julien@moutte.net>
29585
29586         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
29587         sink element first.
29588         * gst/videoscale/gstvideoscale.c:
29589         (gst_videoscale_handle_src_event): Fixing src event handler.
29590
29591 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29592
29593         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
29594         (gst_v4lsrc_open), (gst_v4lsrc_close),
29595         (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
29596         (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
29597         * sys/v4l/gstv4lsrc.h:
29598         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
29599         (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
29600           Implement resizing... Hack. But that's why v4l is b0rked...
29601
29602 2004-01-28  Julien MOUTTE <julien@moutte.net>
29603
29604         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
29605         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
29606         (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
29607         (gst_ximagesink_xwindow_destroy):
29608         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
29609         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
29610         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
29611         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
29612         (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
29613         correctly cleaning the image created to check xshm calls on succes,
29614         added a lot of XSync calls in X11 functions, and fixed a segfault when
29615         no image format was defined before negotiation happened.
29616
29617 2004-01-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29618
29619         * ext/alsa/gstalsa.c: (gst_alsa_query_func):
29620           use gst_element_get_time to get correct time
29621
29622 2004-01-28  Julien MOUTTE  <julien@moutte.net>
29623
29624         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
29625         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
29626         (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
29627         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
29628         (gst_xvimagesink_check_xshm_calls),
29629         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
29630         X plugins are now able to detect that XShm calls will fail even if the
29631         server claims that it has XShm support (remote displays most of the
29632         time). We then log the error as a GST_DEBUG and set use_shm to FALSE
29633         so that we use non XShm functions. This feature is almost useless for
29634         xvimagesink as Xv is not supported on remote displays anyway, but
29635         it might happen than even on the local display XShm calls fail.
29636
29637 2004-01-27  David Schleef  <ds@schleef.org>
29638
29639         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
29640         (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
29641         (gst_esdsink_change_state):  Fix sync issues in esdsink.  Also
29642         changed esdsink to only use 44100,16,2, since esd sucks at rate
29643         conversion and esdsink has had difficulty negotiating.
29644
29645 2004-01-27  Julien MOUTTE <julien@moutte.net>
29646
29647         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
29648         (gst_play_seek_to_time): Fixing the way to get current position.
29649
29650 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29651
29652         * sys/oss/gstosssink.c: (gst_osssink_sink_query):
29653           use gst_element_get_time to get correct time
29654
29655 2004-01-27  Julien MOUTTE <julien@moutte.net>
29656
29657         * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
29658         fix ever... Inverting 2 lines of code make spider autoplug correctly
29659         tagged mp3 !
29660
29661 2004-01-27  David Schleef  <ds@schleef.org>
29662
29663         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
29664         Use gst_pad_try_set_caps_nonfixed().
29665
29666 2004-01-27  David Schleef  <ds@schleef.org>
29667
29668         * gst/ac3parse/gstac3parse.c: update to checklist 5
29669         * gst/adder/gstadder.c: rewrite negotiation.  update to checklist 5
29670         * gst/audioconvert/gstaudioconvert.c: update to checklist 5
29671         * gst/audioscale/gstaudioscale.c: same
29672         * gst/auparse/gstauparse.c: same
29673         * gst/avi/gstavidemux.c: same
29674
29675 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29676
29677         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
29678           stop processing after EOS
29679
29680 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29681
29682         * gst/asfdemux/asfheaders.h:
29683         * gst/asfdemux/gstasfdemux.c:
29684         * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
29685         (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
29686         (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
29687           lot's of fixes to make data extraction simpler and get the code
29688           architecture and compiler independant. Add debugging category
29689         * gst/goom/gstgoom.c: (gst_goom_change_state):
29690           reset channel count on PAUSED=>READY, not READY=>PAUSED
29691
29692 2004-01-26  Colin Walters  <walters@verbum.org>
29693
29694         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
29695         code to pull a bigger buffer in iradio mode.  This as a side effect
29696         makes typefinding work.
29697
29698 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
29699
29700         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
29701         Fix SVQ3 decoding on PPC
29702
29703 2004-01-26  Julien MOUTTE <julien@moutte.net>
29704
29705         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
29706         that one managed to stay there... Fixed.
29707
29708 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
29709
29710         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
29711         (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
29712         * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
29713         (qtdemux_video_caps):
29714         * gst/qtdemux/qtdemux.h:
29715         Add SVQ3 specific flags to qtdemux and ffmpeg
29716
29717 2004-01-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29718
29719         * gst-libs/gst/audio/audio.h:
29720           remove buffer-frames from audio caps
29721         * gst/audioconvert/gstaudioconvert.c:
29722           fix plugin to really work.
29723
29724 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29725
29726         * gst-libs/gst/mixer/mixer.c:
29727         * gst-libs/gst/propertyprobe/propertyprobe.c:
29728         * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
29729         (gst_tuner_find_channel_by_name):
29730         * gst-libs/gst/tuner/tuner.h:
29731           Add gtk-doc style comments. Also fix a function name.
29732
29733 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29734
29735         * ext/divx/gstdivxdec.c: (gst_divxdec_init),
29736         (gst_divxdec_negotiate):
29737           Fix for new capsnego - also fixes gst-player with divxdec.
29738
29739 2004-01-25  Julien MOUTTE  <julien@moutte.net>
29740
29741         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
29742         (gst_play_identity_handoff), (gst_play_set_location),
29743         (gst_play_set_visualization), (gst_play_connect_visualization): Another
29744         try in visualization implementation. Still have an issue with switch
29745         blocking when pulling from video_queue and only audio comes out of
29746         spider.
29747         * gst/switch/gstswitch.c: (gst_switch_release_pad),
29748         (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
29749         release method. And check if the pad is usable before pulling.
29750
29751 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29752
29753         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
29754         (gst_videobalance_init),
29755         (gst_videobalance_colorbalance_list_channels),
29756         (gst_videobalance_colorbalance_set_value),
29757         (gst_videobalance_colorbalance_get_value),
29758         (gst_videobalance_update_properties),
29759         (gst_videobalance_update_tables_planar411),
29760         (gst_videobalance_planar411):
29761         * gst/videofilter/gstvideobalance.h:
29762           Implement lookup-tables. +/- 10x faster.
29763
29764 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29765
29766         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
29767         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
29768           The index reading was broken. The rest worked fine, but the whole
29769           goal of my rewrite was to make avidemux readable, and this was
29770           not at all readable. Please use typed variables.
29771
29772 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29773
29774         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29775           Additional pad usability check.
29776         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
29777         (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
29778         (gst_mp1videoparse_real_chain):
29779           Fix MPEG video stream parsing. The original plugin had several
29780           issues, including not timestamping streams where the source was
29781           not timestamped (this happens with PTS values in mpeg system
29782           streams, but MPEG video is also a valid stream on its own so
29783           that needs timestamps too). We use the display time code for that
29784           for now. Also, if one incoming buffer contains multiple valid
29785           frames, we push them all on correctly now, including proper EOS
29786           handling. Lastly, several potential segfaults were fixed, and we
29787           properly sync on new sequence/gop headers to include them in next,
29788           not previous frames (since they're header for the next frame, not
29789           the previous). Also see #119206.
29790         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
29791         (bpf_from_header):
29792           Move caps setting so we only do it after finding several valid
29793           MPEG-1 fraes sequentially, not right after the first one (which
29794           might be coincidental).
29795         * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
29796         (mpeg_video_type_find), (mpeg_video_stream_type_find),
29797         (plugin_init):
29798           Add unsynced MPEG video stream typefinding, and change some
29799           probability values so we detect streams rightly. The idea is as
29800           follows: I can have an unsynced system stream which contains
29801           video. In the current code, I would randomly get a type for either
29802           system or video stream type found, because the probabilities are
29803           being calculated rather randomly. I now use fixed values, so we
29804           always prefer system stream if that was found (and that is how it
29805           should be). If no system stream was found, we can still identity                the stream as video-only.
29806
29807 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29808
29809         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
29810         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
29811           don't write to buffer. Extract data without the need of
29812           __attribute__ ((packed))
29813
29814 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29815
29816         * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
29817         (mpeg1_sys_type_find):
29818           Fix MPEG-1 stream typefinding.
29819
29820 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29821
29822         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
29823           Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
29824
29825 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
29826
29827         * ext/esd/esdsink.c: (gst_esdsink_open_audio):
29828         * ext/esd/gstesd.c: (plugin_init):
29829           private debugging, better error reporting
29830
29831 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29832
29833         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
29834         (gst_riff_read_init), (gst_riff_read_change_state):
29835         * gst-libs/gst/riff/riff-read.h:
29836           Remove stuff fromold metadata system.
29837
29838 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29839
29840         * ext/ogg/gstoggdemux.c:
29841           Fix wrong file comment.
29842         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29843         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
29844           Add metadata reading properly.
29845
29846 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
29847
29848         * ext/Makefile.am:
29849           Fix nas DIST_SUBDIRS
29850           Uraeus:
29851           Fix bug where make distcheck doesn't get run on adding stuff to
29852           the build.
29853
29854 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29855
29856         * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
29857         * ext/divx/gstdivxdec.h:
29858           Fix divx3 ("msmpeg4") playback using divxdec.
29859
29860 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29861
29862         * gst/typefind/gsttypefindfunctions.c:
29863         (mp3_type_frame_length_from_header): fix bug in length computation
29864         (mp3_type_find): improve debugging output
29865
29866 2004-01-23  Julien MOUTTE  <julien@moutte.net>
29867
29868         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
29869         (gst_play_set_location), (gst_play_seek_to_time),
29870         (gst_play_set_audio_sink), (gst_play_set_visualization),
29871         (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
29872         the pipeline from scratch. Visualization is back and switch went out as
29873         i realized it was not possible to use the way i wanted.
29874         * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
29875         (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
29876         clearing in state change from READY to NULL. So that one can clean the
29877         X ressources keeping the element.
29878         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29879         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
29880         (gst_xvimagesink_colorbalance_set_value),
29881         (gst_xvimagesink_colorbalance_get_value),
29882         (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
29883         (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
29884         change from READY to NULL and fixed some stupid bugs in colorbalance
29885         get/set values. Also added the following feature : when nobody tries to
29886         set some values to the colorbalance levels before the xcontext is
29887         grabbed, then when creating channels list from Xv attributes we set the
29888         internal values to the Xv defaults. This way we handle buggy Xv drivers
29889         that set default hue values far from the middle of the range (Thanks
29890         to Jon Trowbridge for pointing that issue).
29891         * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
29892         colorbalance levels have been set before xcontext is grabbed.
29893
29894 2004-01-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29895
29896         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
29897           Fix the ossmixer case where we shouldn't open /dev/dsp* because
29898           it might block operations (which is bad for a mixer).
29899
29900 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
29901
29902         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
29903         (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
29904         (gmip_find_type_pre):
29905         * gst-libs/gst/media-info/media-info-priv.h:
29906         * gst-libs/gst/media-info/media-info.c:
29907         (gst_media_info_instance_init), (gst_media_info_read_idler):
29908         add fakesink to get caps on decoder src pad again
29909         fix callback prototype to match new have_type signal signature
29910
29911 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
29912
29913         * gst/adder/gstadder.c: (gst_adder_link):
29914           fix non-compile and cut-n-paste code
29915
29916 2004-01-21  David Schleef  <ds@schleef.org>
29917
29918         * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
29919         (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
29920         (gst_swfdec_init), (gst_swfdec_change_state):
29921         * ext/swfdec/gstswfdec.h:
29922         Fix negotiation.
29923         * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
29924         (gst_adder_request_new_pad): Fix negotiation.
29925         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
29926         Add a fixate function.
29927         * gst/intfloat/gstfloat2int.c:
29928         * gst/intfloat/gstfloat2int.h:
29929         * gst/intfloat/gstint2float.c:
29930         * gst/intfloat/gstint2float.h:
29931         Completely rewrite the negotiation.  Doesn't quite work yet,
29932         due to some buffer-frames problem.
29933
29934 2004-01-21  Thomas Vander Stichele  <thomas at apestaart dot org>
29935
29936         * ext/gnomevfs/gstgnomevfssrc.c:
29937         * sys/v4l2/v4l2_calls.h:
29938           fix includes for distcheck
29939
29940 2004-01-21  Christian Schaller <uraeus@gnome.org>
29941
29942         * ext/nas/
29943         Add libnas (network audio system) plugin, patch from Arwed von Merkatz
29944         based on earlier patch from Laurent Vivier
29945
29946 2004-01-20  Jeremy Simon  <jesimon@libertysurf.fr>
29947
29948         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
29949         Fix wma caps property
29950         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
29951         Fix typo (flags1 and flags2)
29952
29953 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
29954
29955         * gst-libs/gst/media-info/media-info-priv.c:
29956         (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
29957         (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
29958         (gmip_find_stream), (gmip_find_track_metadata),
29959         (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
29960         (gmip_find_track_format):
29961         * gst-libs/gst/media-info/media-info-priv.h:
29962         * gst-libs/gst/media-info/media-info-test.c: (main):
29963         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
29964         (gst_media_info_read_idler), (gst_media_info_read):
29965         * gst-libs/gst/media-info/media-info.h:
29966           register debugging category and use it for debugging
29967
29968 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
29969
29970         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
29971         (gst_vorbisfile_new_link):
29972           signal streaminfo through tags
29973
29974 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29975
29976         * ext/mplex/gstmplex.cc:
29977         * ext/mplex/gstmplexibitstream.cc:
29978           g++ doesn't like NULL in our i18n/error macros, should be
29979           either (NULL) or ("").
29980
29981 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29982
29983         * sys/dxr3/dxr3audiosink.c:
29984         * sys/dxr3/dxr3init.c:
29985         * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
29986         * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
29987           Fix more error error error errors (missing includes here).
29988
29989 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29990
29991         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
29992           fix thomas' error errors.
29993
29994 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
29995
29996         * ext/mpeg2enc/gstmpeg2enc.cc:
29997           fix error errors.
29998
29999 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30000
30001         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
30002         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
30003           Fix for new error system.
30004
30005 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
30006
30007         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
30008           fix for new error reporting
30009
30010 2004-01-20  David Schleef  <ds@schleef.org>
30011
30012         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
30013         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
30014         (gst_ximagesink_set_xwindow_id): Change to using a framerate
30015         of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
30016         and neither is 100+, most likely.
30017         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
30018         (gst_xvimagesink_getcaps): same
30019
30020 2004-01-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30021
30022         * configure.ac:
30023           Up version requirement to 2.0.3 (not yet released) to avoid symbol
30024           clashes with ffmpeg.
30025
30026 2004-01-20  Julien MOUTTE  <julien@moutte.net>
30027
30028         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
30029         (gst_switch_init): Fixed switch element : proxying link and setting
30030         caps from src to sink on request.
30031
30032 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
30033
30034         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
30035         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
30036         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
30037         fix element_error
30038
30039 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
30040
30041         * sys/v4l/v4l_calls.h:
30042         * sys/v4l2/v4l2_calls.h:
30043           element_error fixes
30044
30045 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
30046
30047         * gst-libs/gst/gst-i18n-plugin.h:
30048           add locale.h
30049           remove config.h inclusion
30050
30051 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
30052
30053         * autogen.sh:
30054           adding autopoint invocation
30055         * Makefile.am:
30056         * configure.ac:
30057         * gst-libs/gst/gettext.h:
30058           adding gettext bits
30059         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
30060         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
30061         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
30062         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
30063         (gst_gnomevfssink_close_file):
30064         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
30065         * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
30066         * gst-libs/gst/gst-i18n-plugin.h:
30067         * gst/avi/gstavi.c: (plugin_init):
30068         * sys/dxr3/dxr3init.c: (plugin_init):
30069         * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
30070         * sys/oss/gstossaudio.c: (plugin_init):
30071         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
30072         * sys/v4l/gstv4l.c: (plugin_init):
30073         * sys/v4l/v4l_calls.c: (gst_v4l_open):
30074         * sys/v4l2/gstv4l2.c: (plugin_init):
30075         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
30076         (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
30077         (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
30078         (gst_v4l2_set_output), (gst_v4l2_get_frequency),
30079         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
30080         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
30081           make sure locale and translation domain are set
30082           fix translated strings
30083         * po/.cvsignore:
30084         * po/LINGUAS:
30085         * po/Makevars:
30086         * po/POTFILES.in:
30087         * po/nl.po:
30088           put translation files into place
30089         * sys/xvideo/imagetest.c: (main):
30090         * ext/dv/demo-play.c: (main):
30091           fix unnecessary translations
30092
30093 2004-01-19  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
30094
30095         * ext/sndfile/gstsf.c:
30096         * gst/avi/gstavimux.c:
30097         * ext/audiofile/gstafsink.c:
30098         * ext/audiofile/gstafsrc.c:
30099         * ext/gnomevfs/gstgnomevfssink.c:
30100         * ext/gnomevfs/gstgnomevfssrc.c:
30101         * sys/oss/gstosselement.c:
30102         * sys/v4l/v4l_calls.h:
30103           fix i18n include
30104
30105 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
30106
30107         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
30108         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
30109         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
30110         (gst_v4l2_get_output), (gst_v4l2_set_output),
30111         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
30112         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
30113         (gst_v4l2_set_attribute):
30114         update to new error handling
30115
30116 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
30117
30118         * ext/sidplay/gstsiddec.cc:
30119         * gst/modplug/gstmodplug.cc:
30120           parenthese NULL because C++ seems angry about it
30121
30122 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
30123
30124         * gst-libs/gst/gst-i18n-plugin.h:
30125           add skeleton i18n stuff, but needs to be further implemented
30126
30127 2004-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>
30128
30129         * examples/gstplay/player.c: (main):
30130         * ext/aalib/gstaasink.c: (gst_aasink_open):
30131         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
30132         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
30133         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
30134         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
30135         (gst_afsink_close_file):
30136         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
30137         (gst_afsrc_close_file):
30138         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
30139         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
30140         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
30141         * ext/esd/esdmon.c: (gst_esdmon_get):
30142         * ext/esd/esdsink.c: (gst_esdsink_chain):
30143         * ext/faac/gstfaac.c: (gst_faac_chain):
30144         * ext/faad/gstfaad.c: (gst_faad_chain):
30145         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
30146         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
30147         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
30148         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
30149         (gst_flacdec_loop):
30150         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
30151         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
30152         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
30153         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
30154         (gst_gnomevfssink_close_file):
30155         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
30156         (gst_gnomevfssrc_open_file):
30157         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
30158         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
30159         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
30160         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
30161         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
30162         * ext/mad/gstmad.c: (gst_mad_chain):
30163         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
30164         * ext/mpeg2dec/gstmpeg2dec.c:
30165         * ext/mpeg2enc/gstmpeg2enc.cc:
30166         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
30167         * ext/mplex/gstmplex.cc:
30168         * ext/mplex/gstmplexibitstream.cc:
30169         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
30170         (gst_ogg_demux_push), (gst_ogg_pad_push):
30171         * ext/raw1394/gstdv1394src.c:
30172         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
30173         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
30174         * ext/sidplay/gstsiddec.cc:
30175         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
30176         (gst_sf_loop):
30177         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
30178         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
30179         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
30180         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
30181         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
30182         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
30183         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
30184         * gst-libs/gst/Makefile.am:
30185         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
30186         (gst_riff_read_element_data), (gst_riff_read_seek),
30187         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
30188         * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
30189         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
30190         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
30191         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
30192         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
30193         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
30194         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
30195         * gst/goom/gstgoom.c: (gst_goom_chain):
30196         * gst/id3/gstid3types.c: (gst_id3types_loop):
30197         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
30198         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
30199         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
30200         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
30201         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
30202         (gst_ebml_read_float), (gst_ebml_read_header):
30203         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
30204         (gst_matroska_demux_parse_blockgroup):
30205         * gst/modplug/gstmodplug.cc:
30206         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
30207         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
30208         * gst/oneton/gstoneton.c: (gst_oneton_chain):
30209         * gst/silence/gstsilence.c: (gst_silence_get):
30210         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
30211         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
30212         * gst/speed/gstspeed.c: (speed_loop):
30213         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
30214         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30215         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
30216         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
30217         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
30218         (gst_wavparse_loop):
30219         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
30220         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
30221         (dxr3audiosink_close):
30222         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
30223         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
30224         (dxr3videosink_close), (dxr3videosink_write_data):
30225         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
30226         * sys/oss/gstosselement.h:
30227         * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
30228         (gst_osssink_chain):
30229         * sys/oss/gstosssrc.c: (gst_osssrc_get):
30230         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
30231         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
30232         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
30233         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
30234         (gst_v4l_enable_overlay):
30235         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
30236         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
30237         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
30238         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
30239         (gst_v4l_set_audio):
30240         * sys/v4l/v4l_calls.h:
30241         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
30242         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
30243         (gst_v4lmjpegsink_playback_init),
30244         (gst_v4lmjpegsink_playback_start):
30245         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
30246         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
30247         (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
30248         (gst_v4lmjpegsrc_requeue_frame):
30249         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
30250         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
30251         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
30252         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
30253         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
30254         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
30255         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
30256         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
30257         (gst_v4l2src_capture_stop):
30258         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
30259         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
30260         (gst_ximagesink_chain):
30261         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
30262         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
30263         (gst_xvideosink_xwindow_new):
30264         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30265         (gst_xvimagesink_chain):
30266         use new error signal, function and categories
30267
30268 2004-01-18  Jeremy Simon <jesimon@libertysurf.fr>
30269
30270         * configure.ac:
30271         * ext/Makefile.am:
30272         * ext/musicbrainz/gsttrm.c:
30273         * ext/musicbrainz/gsttrm.h:
30274         * ext/musicbrainz/Makefile.am:
30275         Add a trm plugin
30276
30277 2004-01-18  Julien MOUTTE  <julien@moutte.net>
30278
30279         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
30280         (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
30281         synchronous property for debugging.
30282         * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
30283         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30284         (gst_xvimagesink_set_property): Moving a pointer declaration to a
30285         smaller block, fixing indent.
30286
30287 2004-01-16  David Schleef  <ds@schleef.org>
30288
30289         * gst/videofilter/gstvideobalance.c: Fix regression; changing a
30290         property affects the video stream.
30291         * sys/xvimage/xvimagesink.c:
30292         * sys/xvimage/xvimagesink.h:
30293         Add synchronous property for debugging.  Should probably be
30294         disabled in non-CVS builds.  Make sure that the Xv attribute
30295         exists before we set it (crash!).  Fix a silly float bug that
30296         caused colorbalance to just not work.
30297
30298 2004-01-17  Christian Schaller <Uraeus@gnome.org>
30299
30300         * tools/gst-launch-ext.in - update for new plugins
30301
30302 2004-01-16  David Schleef  <ds@schleef.org>
30303
30304         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
30305         already-freed caps.
30306
30307 2994-01-16  Christian Schaller <Uraeus@gnome.org>
30308
30309         * Update spec for new colorspace plugin and libcaca plugin
30310         * Fix compilation of libcaca plugin (clock -> id)
30311
30312 2004-01-16  Julien MOUTTE <julien@moutte.net>
30313
30314         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
30315         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
30316         (gst_xvimagesink_set_xwindow_id),
30317         (gst_xvimagesink_colorbalance_set_value),
30318         (gst_xvimagesink_colorbalance_get_value),
30319         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
30320         (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
30321         correct colorbalance properties. They can now be set when the element
30322         is still in NULL state. The values will be committed to the Xv Port
30323         when xcontext is initialized.
30324         * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
30325         brightness int values in the GstXvImagesink structure.
30326
30327 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30328
30329         * gst-libs/gst/Makefile.am:
30330           restructure so having local patches works easier.
30331
30332 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30333
30334         * ext/mpeg2enc/Makefile.am:
30335         * ext/mpeg2enc/gstmpeg2enc.cc:
30336         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
30337           Bugfix with respect to EOS handling.
30338
30339 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30340
30341         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
30342           Link with right caps (else, it segfaults).
30343         * ext/mplex/gstmplexjob.cc:
30344           Fix for slight API change in 1.6.1.93 release of mjpegtools.
30345
30346 2004-01-15  David Schleef  <ds@schleef.org>
30347
30348         * gst-libs/gst/audio/Makefile.am:
30349         Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
30350         from the template.
30351         * gst-libs/gst/audio/gstaudiofilter.c:
30352         * gst-libs/gst/audio/gstaudiofilter.h:
30353         Add bytes_per_sample and size and n_samples calculation.
30354         * gst-libs/gst/audio/gstaudiofilterexample.c:
30355         Remove, now autogenerated.
30356         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
30357         Moved from gstaudiofilterexample, object name changed, code added
30358         so that it actually works.
30359         * gst-libs/gst/audio/make_filter:
30360         Script to build an audiofilter subclass from the template.
30361         * gst/colorspace/Makefile.am:
30362         * gst/colorspace/yuv2yuv.c:
30363         Remove file, since it's GPL, and we don't use it.
30364
30365 2004-01-15  Julien MOUTTE  <julien@moutte.net>
30366
30367         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30368         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
30369         them use the buffer free function to test how the buffer was allocated.
30370
30371 2004-01-15  David Schleef  <ds@schleef.org>
30372
30373         * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
30374         that handles osssink fallback.
30375         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
30376         (gst_audio_convert_getcaps):
30377         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
30378         Add audio/x-qdm2 for QDM2 audio.
30379         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
30380         * gst/sine/gstsinesrc.h: Add example of how to implement tags.
30381         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
30382         Decrease minimum size to 16x16.
30383         * gst/wavparse/gstwavparse.c:
30384         Convert disabled pad template caps to new caps.
30385         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
30386         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30387         (gst_xvimagesink_chain): Throw element error when display cannot
30388         be opened.  Increase minimum framerate to 1.0.  Check the data
30389         free function on a buffer to make sure it is the type we expect
30390         before manipulating it.
30391
30392 2004-01-15  Julien MOUTTE <julien@moutte.net>
30393
30394         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
30395         (gst_videobalance_colorbalance_set_value): Implement passthru if
30396         settings are in the middle.
30397         * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
30398
30399 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30400
30401         * gst/videofilter/Makefile.am:
30402         * gst/volume/Makefile.am:
30403           Since we use videofilter symbols, link to it.
30404
30405 2004-01-15  Julien MOUTTE <julien@moutte.net>
30406
30407         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
30408         mixer interface type to HARDWARE.
30409         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
30410         type to SOFTWARE.
30411         * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
30412         * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
30413         * gst/volume/gstvolume.c: (gst_volume_interface_supported),
30414         (gst_volume_interface_init), (gst_volume_list_tracks),
30415         (gst_volume_set_volume), (gst_volume_get_volume),
30416         (gst_volume_set_mute), (gst_volume_mixer_init),
30417         (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
30418         (volume_init): Implementing mixer interface.
30419         * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
30420         * sys/oss/gstosselement.c: (gst_osselement_get_type),
30421         (gst_osselement_change_state): Removing some trailing commas in
30422         structures.
30423         * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
30424         interface type to HARDWARE.
30425         * sys/v4l/gstv4lcolorbalance.c:
30426         (gst_v4l_color_balance_interface_init): Setting colorbalance interface
30427         type to HARDWARE.
30428         * sys/v4l2/gstv4l2colorbalance.c:
30429         (gst_v4l2_color_balance_interface_init): Setting colorbalance
30430         interface type to HARDWARE.
30431         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
30432         same code than ximagesink for event handling.
30433
30434 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30435
30436         * ext/snapshot/Makefile.am:
30437         * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
30438         (gst_snapshot_chain):
30439         * ext/snapshot/gstsnapshot.h:
30440           This has to be a joke... Snapshot should be connected to a tee,
30441           colorspace element before it and EOS after that, where the other
30442           src of the tee receives normal data.
30443           The current way is *wrong*.
30444
30445 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30446
30447         * ext/hermes/gsthermescolorspace.c:
30448           Fix another compile error. Same as below.
30449
30450 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30451
30452         * gst/colorspace/gstcolorspace.c:
30453         * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
30454         (gst_colorspace_i420_to_yv12):
30455           Fix compiling... Didn't test if it actually works.
30456
30457 2004-01-15  David Schleef  <ds@schleef.org>
30458
30459         * configure.ac:
30460         * gst/colorspace/Makefile.am:
30461         * gst/colorspace/gstcolorspace.c:
30462         * gst/colorspace/gstcolorspace.h:
30463         * gst/colorspace/yuv2rgb.c:
30464         * gst/colorspace/yuv2rgb.h:
30465         Duplicate the ext/hermes colorspace plugin, and remove Hermes
30466         code and GPL code.  Fix for new caps negotiation.  Rewrite
30467         much of the format handling code, and some of the conversion
30468         code.  Basically, rewrote almost everything.  This element
30469         handles I420, YV12 to RGB conversions.
30470         * ext/hermes/Makefile.am:
30471         * ext/hermes/gsthermescolorspace.c:
30472         Rename colorspace to hermescolorspace.  Fix negotiation issues.
30473         Remove non-Hermes related code.  This element handles lots of
30474         RGB to RGB conversions, but no YUV.
30475         * ext/hermes/gstcolorspace.c:
30476         * ext/hermes/gstcolorspace.h:
30477         * ext/hermes/rgb2yuv.c:
30478         * ext/hermes/yuv2rgb.c:
30479         * ext/hermes/yuv2rgb.h:
30480         * ext/hermes/yuv2rgb_mmx16.s:
30481         * ext/hermes/yuv2yuv.c:
30482         * ext/hermes/yuv2yuv.h:
30483         Remove old code.
30484
30485 2004-01-14  Colin Walters  <walters@verbum.org>
30486
30487         * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
30488         they've already been.
30489
30490 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30491
30492         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
30493           assume tag mode when pad is not connected
30494
30495 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30496
30497         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
30498           Don't update the time of the clock
30499         (gst_alsa_sink_loop):
30500           sync to the clock given to alsasink, not the own clock
30501         * sys/oss/gstosssink.c: (gst_osssink_chain):
30502           sync to the clock
30503         (gst_osssink_change_state):
30504           activate the clock
30505         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30506         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
30507           remove bogus code that made DISCONT events unhandled
30508         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
30509           explicitly case to double in _set_simple. (fixes 2nd warning in bug
30510           #131502)
30511         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
30512         (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
30513         (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
30514           convert g_warning because of wrong asf data to GST_WARNINGs (fixes
30515           2nd warning in bug #131502)
30516
30517 2004-01-14  Julien MOUTTE  <julien@moutte.net>
30518
30519         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
30520         (gst_videobalance_colorbalance_set_value),
30521         (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
30522         for colorbalance interface implementation.
30523         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
30524         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
30525         (gst_ximagesink_dispose), (gst_ximagesink_init),
30526         (gst_ximagesink_class_init): Adding DISPLAY property.
30527         * sys/ximage/ximagesink.h: Adding display_name to store display.
30528         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30529         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
30530         (gst_xvimagesink_dispose), (gst_xvimagesink_init),
30531         (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
30532         properties (they still need polishing though for gst-launch use : no
30533         xcontext yet, i ll do that tomorrow).
30534         * sys/xvimage/xvimagesink.h: Adding display_name to store display.
30535
30536 2004-01-14  Julien MOUTTE  <julien@moutte.net>
30537
30538         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
30539         (gst_play_set_location), (gst_play_set_visualization): Preparing
30540         switch integration, adding videobalance in the pipeline.
30541
30542 2004-01-14  Julien MOUTTE <julien@moutte.net>
30543
30544         * gst-libs/gst/colorbalance/colorbalance.c:
30545         (gst_color_balance_class_init): Adding a default type.
30546         * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
30547         the type.
30548         * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
30549         (gst_videobalance_dispose), (gst_videobalance_class_init),
30550         (gst_videobalance_init), (gst_videobalance_interface_supported),
30551         (gst_videobalance_interface_init),
30552         (gst_videobalance_colorbalance_list_channels),
30553         (gst_videobalance_colorbalance_set_value),
30554         (gst_videobalance_colorbalance_get_value),
30555         (gst_videobalance_colorbalance_init): Implementing colorbalance
30556         interface.
30557         * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
30558         list.
30559         * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
30560         bug which was triggering a BadAccess X error when setting an overlay
30561         before pad was really negotiated.
30562         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
30563         Using the colorbalance type macro.
30564
30565 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30566
30567         * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
30568         (gst_flacenc_chain):
30569           handle tags correctly
30570         * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
30571           extract ID3v1 tags correctly
30572
30573 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30574
30575         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
30576         (plugin_init):
30577           Improve matroska typefinding for odd-typed headers...
30578
30579 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30580
30581         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
30582           Fix for using incremental number on padnames.
30583
30584 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30585
30586         * ext/divx/gstdivxdec.c:
30587         * ext/divx/gstdivxenc.c:
30588           Set category to divx4linux instead of divx (too generic).
30589         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
30590         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
30591         (gst_wavparse_loop), (gst_wavparse_change_state):
30592         * gst/wavparse/gstwavparse.h:
30593           fix parsing of WAV files with non-standard fmt-tag size and fix
30594           skipping of unrecognized chunks... Someone please fix this thing
30595           to use rifflib so all this is automated.
30596         * sys/v4l/Makefile.am:
30597         * sys/v4l2/Makefile.am:
30598           Add X_CFLAGS because we depend on X (for overlay).
30599
30600 2004-01-14  Jan Schmidt  <thaytan@mad.scientist.com>
30601
30602         * ext/mpeg2dec/gstmpeg2dec.c:
30603           Don't issue a timestamp unless we tagged the frame
30604           with a PTS.
30605
30606 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30607
30608         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
30609           Query the audio element to get the time, not the clock. We're
30610           interested in the element's time here.
30611
30612 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30613
30614         * ext/aalib/gstaasink.c: (gst_aasink_chain):
30615         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
30616         * ext/esd/esdsink.c: (gst_esdsink_chain):
30617         * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
30618         * ext/mas/massink.c: (gst_massink_chain):
30619         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
30620         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
30621         (gst_matroska_demux_parse_metadata):
30622         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
30623         (gst_mpeg_parse_release_locks):
30624         * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
30625         * gst/udp/gstudpsink.c: (gst_udpsink_chain):
30626         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30627         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
30628         (gst_osssink_change_state):
30629         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
30630         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30631         * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
30632         (gst_xvideosink_release_locks):
30633         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
30634           use element time.
30635         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
30636         (gst_alsa_clock_stop):
30637         * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
30638         (gst_audio_clock_get_internal_time):
30639           simplify for use with new clocking code.
30640         * testsuite/alsa/Makefile.am:
30641         * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
30642           fix testsuite for new caps system
30643
30644 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30645
30646         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
30647         * ext/flac/gstflacenc.c: (add_one_tag):
30648           length is already host endian, no need to convert. Fixes playback of
30649           tagged files on PPC. (bug #128384)
30650
30651 2004-01-13  Julien MOUTTE <julien@moutte.net>
30652
30653         * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
30654         colorbalance interface stating if it is hardware based or software
30655         based.
30656         * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
30657         Removing a trailing comma.
30658         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30659         (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
30660         Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
30661         the documentation seems to be wrong on the -1000 to 1000 interval.
30662
30663 2004-01-12  David Schleef  <ds@schleef.org>
30664
30665         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
30666         (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
30667         (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
30668         Fix negotiation.  Add a bufferalloc function for the sink pad,
30669         and generally clean up some of the code.
30670
30671 2004-01-12  Julien MOUTTE <julien@moutte.net>
30672
30673         * gst-libs/gst/colorbalance/colorbalancechannel.c:
30674         (gst_color_balance_channel_dispose): Adding safety check in dispose
30675         method.
30676         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30677         (gst_xvimagesink_xcontext_clear),
30678         (gst_xvimagesink_interface_supported),
30679         (gst_xvimagesink_colorbalance_list_channels),
30680         (gst_xvimagesink_colorbalance_set_value),
30681         (gst_xvimagesink_colorbalance_get_value),
30682         (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
30683         Adding colorbalance interface support to set XV parameters such as
30684         HUE, BRIGHTNESS, CONTRAST, SATURATION.
30685         * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
30686         interface.
30687
30688 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
30689
30690         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
30691         (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
30692         (gst_audio_convert_init), (gst_audio_convert_set_property),
30693         (gst_audio_convert_get_property), (gst_audio_convert_chain),
30694         (gst_audio_convert_link),
30695         (gst_audio_convert_buffer_to_default_format),
30696         (gst_audio_convert_buffer_from_default_format), (plugin_init):
30697           - implement _getcaps and use it
30698           - improve linking
30699           - remove float caps since no float conversion is actually done
30700           - remove properties and arguments that were to be used for rate
30701             conversion
30702
30703 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
30704
30705         * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
30706         (gst_audio_structure_set_int):
30707         * gst-libs/gst/audio/audio.h:
30708           add helper functions for _getcaps matching the standard audio
30709           templates
30710
30711 2004-01-12  David Schleef  <ds@schleef.org>
30712
30713         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
30714         Test that pad is negotiated before getting its caps.
30715
30716 2004-01-12  Julien MOUTTE <julien@moutte.net>
30717
30718         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
30719         analyzing the pads of an element the bin is mostly in READY state so
30720         no caps were negotiated. This helper function needs to work with
30721         _get_caps directly then. I was not freeing them though, added that to
30722         fix the mem leak.
30723
30724 2004-01-12  Julien MOUTTE <julien@moutte.net>
30725
30726         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30727         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
30728         direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
30729         than the free_func.
30730
30731 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
30732
30733         * sys/oss/gstossaudio.c: (plugin_init):
30734         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
30735         * sys/oss/gstosselement.h:
30736           make an oss debugging category
30737           make failure more descriptive
30738
30739 2004-01-11  David Schleef  <ds@schleef.org>
30740
30741         * ext/ffmpeg/gstffmpeg.c:
30742         * ext/ffmpeg/gstffmpegcodecmap.c:
30743         * ext/ffmpeg/gstffmpegdec.c:
30744         * ext/ffmpeg/gstffmpegenc.c:
30745         * ext/ffmpeg/gstffmpegprotocol.c:
30746         * ext/gdk_pixbuf/gstgdkanimation.c:
30747         * ext/jpeg/gstjpeg.c:
30748         * ext/libpng/gstpng.c:
30749         * ext/mpeg2dec/perftest.c:
30750         * ext/speex/gstspeex.c:
30751         * gst-libs/gst/resample/dtos.c:
30752         * gst/intfloat/gstintfloatconvert.c:
30753         * gst/oneton/gstoneton.c:
30754         * gst/rtjpeg/RTjpeg.c:
30755         * gst/rtp/gstrtp.c:
30756         * sys/dxr3/dxr3init.c:
30757         * sys/glsink/gstgl_nvimage.c:
30758         * sys/glsink/gstgl_pdrimage.c:
30759         * sys/glsink/gstglsink.c:
30760         * testsuite/gst-lint:
30761         Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
30762
30763 2004-01-11  David Schleef  <ds@schleef.org>
30764
30765         * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
30766         * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
30767         * ext/gdk_pixbuf/gstgdkanimation.c:
30768         (gst_gdk_animation_iter_create_pixbuf):
30769         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
30770         (gst_gdk_pixbuf_chain):
30771         * ext/gdk_pixbuf/gstgdkpixbuf.h:
30772         * ext/jack/gstjack.c: (gst_jack_change_state):
30773         * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
30774         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
30775         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
30776         * gst/videofilter/gstvideofilter.c:
30777         (gst_videofilter_set_output_size):
30778         Remove all usage of gst_pad_get_caps(), and replace it with
30779         gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
30780
30781 2004-01-11  David Schleef  <ds@schleef.org>
30782
30783         * configure.ac:
30784         * ext/Makefile.am: Fixes to make ext/libcaca compile.
30785         * ext/divx/gstdivxdec.c:
30786         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
30787         (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
30788         handle images that span multiple buffers.  Now work with both
30789         filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
30790         * ext/gdk_pixbuf/gstgdkpixbuf.h:
30791         * ext/libcaca/gstcacasink.h: Fixes needed due to recent
30792         video/video.h changes
30793         * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
30794         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30795         (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
30796         of GstData free function.
30797         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
30798         same.
30799
30800 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30801
30802         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
30803         (gst_v4l2element_dispose), (gst_v4l2element_set_property),
30804         (gst_v4l2element_get_property):
30805         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
30806           add norm, channel and frequency properties.
30807         * sys/v4l2/gstv4l2tuner.c:
30808           fixes for tuner interface changes
30809         * sys/v4l2/gstv4l2element.h:
30810         * sys/v4l2/gstv4l2src.c:
30811         * sys/v4l2/gstv4l2src.h:
30812         * sys/v4l2/v4l2src_calls.c:
30813         * sys/v4l2/v4l2src_calls.h:
30814           rework v4l2src to work with saa1734 cards and allow mmaped buffers.
30815
30816 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30817
30818         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
30819         (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
30820         (gst_tuner_channel_changed), (gst_tuner_norm_changed),
30821         (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
30822         * gst-libs/gst/tuner/tuner.h:
30823           GObjects aren't const.
30824           Add find_by_name functions.
30825           Add checks to _changed functions.
30826         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
30827         (gst_v4l_tuner_get_norm):
30828           Fixes for above.
30829
30830 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30831
30832         * gst-libs/gst/video/video.h:
30833           Fix caps template names to be understandable.
30834           Prefix everything with GST_VIDEO.
30835         * ext/aalib/gstaasink.c:
30836         * ext/divx/gstdivxdec.c:
30837         * ext/divx/gstdivxenc.c:
30838         * ext/gdk_pixbuf/gstgdkpixbuf.c:
30839         * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
30840         * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
30841         * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
30842         * ext/libcaca/gstcacasink.c:
30843         * ext/libpng/gstpngenc.c: (raw_caps_factory):
30844         * ext/snapshot/gstsnapshot.c:
30845         * ext/swfdec/gstswfdec.c:
30846         * ext/xvid/gstxviddec.c:
30847         * ext/xvid/gstxvidenc.c:
30848         * gst/chart/gstchart.c:
30849         * gst/deinterlace/gstdeinterlace.c:
30850         * gst/effectv/gsteffectv.c:
30851         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
30852         * gst/goom/gstgoom.c:
30853         * gst/median/gstmedian.c:
30854         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
30855         (gst_monoscope_srcconnect), (gst_monoscope_chain):
30856         * gst/overlay/gstoverlay.c:
30857         * gst/smooth/gstsmooth.c:
30858         * gst/smpte/gstsmpte.c:
30859         * gst/synaesthesia/gstsynaesthesia.c:
30860         * gst/videocrop/gstvideocrop.c:
30861         * gst/videodrop/gstvideodrop.c:
30862         * gst/y4m/gsty4mencode.c:
30863         * sys/qcam/gstqcamsrc.c:
30864         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
30865           Make them work with new video.h file.
30866         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30867         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
30868         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30869         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
30870           Make it work with new buffer allocation system.
30871
30872 2004-01-11  Julien MOUTTE  <julien@moutte.net>
30873
30874         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
30875         pad_alloc_buffer implementation to use ->srcpad
30876         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
30877         pad_alloc_buffer implementation to use ->srcpad
30878         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):  Fixing the
30879         pad_alloc_buffer implementation to use ->srcpad
30880         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
30881         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
30882         (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
30883         a reference to everything we need.
30884         * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
30885         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
30886         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
30887         (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
30888         a reference to everything we need.
30889         * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
30890
30891 2004-01-11  David Schleef  <ds@schleef.org>
30892
30893         * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
30894         * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
30895         (gst_fenced_buffer_default_copy): Fix for rename of buffer private
30896         structure members.
30897         * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
30898         value during a resize/renegotiation.
30899         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
30900         gst_pad_alloc_buffer();
30901         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30902         (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
30903         structure members.
30904         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
30905         Fix for rename of buffer private structure members.
30906         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30907         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
30908         Fix for rename of buffer private structure members.
30909         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30910         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
30911         Fix for rename of buffer private structure members.
30912
30913 2004-01-11  Arwed v. Merkatz <v.merkatz@gmx.net>
30914
30915         reviewed by: David Schleef <ds@schleef.org>
30916
30917         * gst/videofilter/Makefile.am:
30918         * gst/videofilter/gstgamma.c: Gamma correction filter.  Modified
30919         from the patch by ds to fit in with recent make_filter changes.
30920
30921 2004-01-11  Julien MOUTTE  <julien@moutte.net>
30922
30923         * configure.ac: Adding examples/switch/Makefile
30924         * examples/Makefile.am: Adding examples/switch
30925         * examples/switch/Makefile.am: Adding switcher example.
30926         * examples/switch/switcher.c: (got_eos), (idle_iterate),
30927         (switch_timer), (main): Adding an example demonstrating switch usage
30928         with 2 videotestsrc showing different patterns.
30929         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
30930         (gst_switch_init): Fixing switch with the new caps system.
30931
30932 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30933
30934         * gst-libs/gst/video/video.h:
30935           Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
30936           They should probably be like
30937           GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
30938
30939 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30940
30941         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
30942         (qtdemux_parse_trak):
30943           fix audio chunk size/timestamp calculation
30944
30945 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30946
30947         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
30948           fix SVQ3 caps
30949
30950 2004-01-11  Steve Baker  <steve@stevebaker.org>
30951
30952         * gst/effectv/gstaging.c: (gst_agingtv_get_type),
30953         (gst_agingtv_base_init), (gst_agingtv_class_init),
30954         (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
30955         (gst_agingtv_set_property), (gst_agingtv_get_property):
30956         Port agingTV to videofilter
30957
30958 2004-01-09  Julien MOUTTE <julien@moutte.net>
30959
30960         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
30961         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30962
30963 2004-01-09  Julien MOUTTE <julien@moutte.net>
30964
30965         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
30966         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30967         * gst-libs/gst/xoverlay/xoverlay.c:
30968         (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
30969         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
30970         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30971         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30972         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30973         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30974         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
30975         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
30976         the bufferalloc_function to replace bufferpools, fixing the XOverlay
30977         interface implementation to handle xid being 0 and fix some bugs
30978         triggered by Benjamin's testcase.
30979         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30980         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
30981         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
30982         the bufferalloc_function to replace bufferpools, fixing the XOverlay
30983         interface implementation to handle xid being 0 and fix some bugs
30984         triggered by Benjamin's testcase.
30985
30986 2004-01-09  David Schleef  <ds@schleef.org>
30987
30988         * ext/librfb/gstrfbsrc.c:  Hacking.  Added actual decoding and
30989         mouse pointer events.  It works.
30990
30991 2004-01-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30992
30993         * ext/divx/gstdivxenc.c: (gst_divxenc_init):
30994           Use explicit caps - fix capsnego.
30995         * ext/xvid/gstxviddec.c:
30996         * ext/xvid/gstxvidenc.c:
30997           Remove macro-inside-macro which caused compile errors.
30998         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
30999           Error out if it's not a RIFF file. Else we error out without
31000           gst_element_error() which is not good...
31001
31002 2004-01-08  David Schleef  <ds@schleef.org>
31003
31004         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
31005         Fix pad_link function to handle formats that ffmpeg returns
31006         as multiple caps structures.
31007         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
31008         Only complain if source buffer is _smaller_ than expected.
31009         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
31010         (gst_videoscale_handle_src_event): Resize navigation events
31011         when passing them upstream.
31012         * gst/videotestsrc/gstvideotestsrc.c:
31013         * gst/videotestsrc/gstvideotestsrc.h:
31014         * gst/videotestsrc/videotestsrc.c:
31015         * gst/videotestsrc/videotestsrc.h:
31016         Rewrite many of the buffer painting functions to handle odd
31017         sizes (for many formats, size%4!=0 or size%8!=0).  Most have
31018         been verified to work with my video card.
31019         * testsuite/gst-lint:  Add check for elements calling
31020         gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
31021
31022 2004-01-08  David Schleef  <ds@schleef.org>
31023
31024         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
31025         (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
31026
31027 2004-01-08  Julien MOUTTE  <julien@moutte.net>
31028
31029         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
31030         configure event is not emiting the desired size signal. That fixes
31031         aspect ratio issues with gst-player.
31032
31033 2004-01-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31034
31035         * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
31036           Fix capsnego.
31037
31038 2004-01-08  Julien MOUTTE  <julien@moutte.net>
31039
31040         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
31041         public method to fire size signal.
31042
31043 2004-01-07  Julien MOUTTE  <julien@moutte.net>
31044
31045         * examples/gstplay/Makefile.am: Adding the interface library.
31046         * gst-libs/gst/play/Makefile.am: Adding the interface library.
31047         * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to         the XOverlay size signal instead of GstVideoSink.
31048         * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
31049         GST_IS_X_OVERLAY before signal connect.
31050         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
31051         Removing the have_video_size signal.
31052         * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
31053         and associated public method.
31054         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
31055         (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
31056         signal.
31057         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
31058         (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
31059         signal.
31060         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
31061         Using XOverlay public method to fire size signal.
31062
31063 2004-01-07  David Schleef  <ds@schleef.org>
31064
31065         * gst/videofilter/Makefile.am:
31066         * gst/videofilter/gstvideotemplate.c:
31067         * gst/videofilter/make_filter:
31068         Create gstvideoexample.c in a srcdir!=builddir friendly way.
31069         Convert make_filter to /bin/sh script.
31070
31071 2004-01-07  Thomas Vander Stichele  <thomas at apestaart dot org>
31072
31073         * gst/modplug/gstmodplug.cc: fix element description
31074
31075 2004-01-07  Julien MOUTTE  <julien@moutte.net>
31076
31077         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
31078         (got_video_size): Adding some new lines in g_print calls.
31079         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
31080         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
31081         (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
31082         (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
31083         (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
31084         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
31085         Complete code review, reverting some stuff i disagree with, adding
31086         some fixes : time synchronization on invalid timestamps, renegotiation
31087         of private window.
31088         * sys/ximage/ximagesink.h:
31089         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
31090         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
31091         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
31092         (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
31093         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
31094         (gst_xvimagesink_buffer_new),
31095         (gst_xvimagesink_navigation_send_event),
31096         (gst_xvimagesink_set_xwindow_id),
31097         (gst_xvimagesink_get_desired_size),
31098         (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
31099         stuff i disagree with, adding some fixes : Renegotiation of private
31100         window, implementing get_desired_size.
31101
31102 2004-01-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31103
31104         * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
31105         (gst_afsink_handle_event):
31106         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
31107         * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
31108         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
31109         * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
31110         * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
31111           Fix for instantiate-test (see core). Also remove dead code from
31112           jpegenc (which still needs fixing, but that's lower on my TODO
31113           list...).
31114         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
31115           Never return NULL as caps.
31116
31117 2004-01-07  David Schleef  <ds@schleef.org>
31118
31119         * configure.ac:
31120         * ext/Makefile.am:
31121         * ext/librfb/Makefile.am:
31122         * ext/librfb/gstrfbsrc.c:
31123         New source plugin based on librfb-0.1.  RFB (remote framebuffer)
31124         is the protocol used by VNC.
31125
31126 2004-01-07  David Schleef  <ds@schleef.org>
31127
31128         * gst/videofilter/gstvideotemplate.c:
31129         * gst/videofilter/gstvideotemplate.h:
31130         * gst/videofilter/make_filter:
31131         Merge videotemplate header into source file.
31132         * gst/effectv/Makefile.am:
31133         * gst/effectv/gsteffectv.c: (plugin_init):
31134         * gst/effectv/gstwarp.c:
31135         Make warpTV a subclass of videofilter.
31136
31137 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31138
31139         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
31140           Add guard against invalid utf-8 conversions in mad. Just in case.
31141
31142 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31143
31144         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
31145           Fix for bug shown by poisoning
31146
31147 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31148
31149         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
31150         (gst_v4lmjpegsrc_buffer_free):
31151         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
31152         (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
31153         (gst_v4lsrc_buffer_free):
31154           Fix for removed bufferpools.
31155
31156 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
31157
31158         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
31159         Fix caps negotiation.
31160
31161         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
31162         (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
31163         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
31164         (dvdnavsrc_event):
31165         * ext/mpeg2dec/gstmpeg2dec.c:
31166         * gst-libs/gst/navigation/navigation.c:
31167         (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
31168         * gst-libs/gst/navigation/navigation.h:
31169         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
31170         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
31171         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
31172         Super-simple first version of mouse and keyboard events. Clicking
31173         on a DVD menu now works, although it may not take you where you
31174         expected.
31175
31176         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
31177         * gst/videotestsrc/gstvideotestsrc.c:
31178         (gst_videotestsrc_src_fixate):
31179         These fixate functions were broken - they never actually
31180         fixated :)
31181
31182 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31183
31184         * ext/shout/gstshout.c: (gst_icecastsend_base_init),
31185         (gst_icecastsend_init):
31186           fix for new caps system.
31187         * gst-libs/gst/mixer/mixertrack.h:
31188         * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
31189           Add 'master track' flag (for tools like ACME that only want to
31190           change the main volume).
31191
31192 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
31193
31194         * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
31195         (gst_xvid_csp_to_caps):
31196         * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
31197         * ext/xvid/gstxvidenc.c:
31198         ifdef out ARGB type when it isn't available
31199         in xvidcore 1.0.0beta2
31200
31201 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31202
31203         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
31204           When we have received a new SCR right in the first buffer after
31205           a seek (so in the same cycle that handles the discont), we should
31206           handle the buffer instead of unreffing it, else we lose data.
31207
31208 2004-01-06  Iain <iain@prettypeople.org>
31209
31210         * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
31211           buffer-frames caps too.
31212
31213         * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
31214           caps that we need, don't destroy them all and rebuild them. And when
31215           creating src pads, use the src pad template rather than the sink...
31216
31217 2004-01-05  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31218
31219         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
31220           Add pad to element *after* setting functions such as event handler.
31221           Without this, the scheduler (opt) will link pads, set the event
31222           handler from the default event function (dispatcher in gstpad.c)
31223           and *after* that, we will set our own event function, which will
31224           thus never be used (and thus mpegdemux doesn't handle events).
31225
31226 2004-01-04  David Schleef  <ds@schleef.org>
31227
31228         Fix the fixate functions to handle new prototype:
31229         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
31230         * gst/videotestsrc/gstvideotestsrc.c:
31231         (gst_videotestsrc_src_fixate):
31232         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
31233         * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
31234         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
31235
31236 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31237
31238         * sys/ximage/ximagesink.h:
31239         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
31240         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
31241         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
31242         (gst_ximagesink_xoverlay_init):
31243           assorted fixes to make (re)embedding work
31244         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
31245         (gst_ximagesink_get_desired_size):
31246           implement desired size additions to XOverlay
31247
31248 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31249
31250         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
31251         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
31252         (gst_x_overlay_got_desired_size):
31253         * gst-libs/gst/xoverlay/xoverlay.h:
31254           Add optional "desired size" signal and querying.
31255
31256 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31257
31258         * gst/matroska/matroska-demux.c:
31259         (gst_matroska_demux_parse_blockgroup):
31260           Fix EBML-laced block parsing. Diffs are relative to previous
31261           lace, not the first lace. Thanks to Mosu from the Matroska
31262           team for detecting this.
31263         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
31264         (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
31265         (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
31266         (gst_wavparse_change_state):
31267         * gst/wavparse/gstwavparse.h:
31268           Quickfix for capsnego.
31269
31270 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31271
31272         * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
31273           Fix indenting, fix pad creation.
31274
31275 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31276
31277         * ext/xvid/gstxviddec.c: (gst_xviddec_init),
31278         (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
31279         (gst_xviddec_sink_link):
31280           Implement src_getcaps() so proper size caps is negotiated.
31281
31282 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31283
31284         * ext/flac/gstflacdec.c: (gst_flacdec_loop):
31285           Finish flac decoder on EOS. See #116178.
31286
31287 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31288
31289         * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
31290         (gst_matroska_demux_add_stream):
31291         * gst/matroska/matroska-ids.h:
31292           Add getcaps() function to fix capsnego...
31293
31294 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31295
31296         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
31297         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
31298         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
31299           Fix more integer overflows. Again, see #126967.
31300
31301 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31302
31303         * ext/mpeg2dec/gstmpeg2dec.c:
31304           Add support for mpeg2dec-0.4.0 (released two weeks ago). See
31305           #130416.
31306
31307 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31308
31309         * configure.ac:
31310         * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
31311         (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
31312         * ext/xvid/gstxvid.h:
31313         * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
31314         (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
31315         (gst_xviddec_src_link), (gst_xviddec_sink_link),
31316         (gst_xviddec_change_state):
31317         * ext/xvid/gstxviddec.h:
31318         * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
31319         (gst_xvidenc_base_init), (gst_xvidenc_class_init),
31320         (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
31321         (gst_xvidenc_link), (gst_xvidenc_set_property),
31322         (gst_xvidenc_get_property), (gst_xvidenc_change_state):
31323         * ext/xvid/gstxvidenc.h:
31324           Update xvid plugin to latest xvid (1.0.0-beta3) API.
31325
31326 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31327
31328         * gst/rtp/rtp-packet.c:
31329           Add sys/types.h include, since OS X doesn't define in_addr_t
31330           in netinet/in.h, like it does on Linux (see #129600).
31331
31332 2004-01-03  Thomas Canty <tommydal@optushome.com.au>
31333
31334         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
31335
31336         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
31337           Correct logic of dispose function (see #129306).
31338
31339 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31340
31341         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
31342         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
31343         (gst_mpeg_parse_init):
31344         * gst/mpegstream/gstmpegparse.h:
31345           Remove clock (which was never provided, i.e. dead code), and
31346           also fix integer overflows at high PTS values (see #126967).
31347
31348 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31349
31350         * ext/flac/gstflacdec.c:
31351         * ext/libpng/gstpngenc.h:
31352         * ext/mikmod/gstmikmod.h:
31353           OS X fixes (see #126628).
31354
31355 2004-01-02  David Schleef  <ds@schleef.org>
31356
31357         * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
31358         (gst_alsa_src_base_init): Remove bogus "src" request pad.
31359         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
31360         (gst_mpeg_parse_class_init): Move pad template registration
31361         to class_init, since the derived class (mpegdemux) doesn't
31362         want them.
31363
31364 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31365
31366         * sys/ximage/Makefile.am:
31367         * sys/xvideo/Makefile.am:
31368         * sys/xvimage/Makefile.am:
31369           Move interface libs from LDFLAGS to LIBADD, fix relocation errors
31370           after installation (see #127664).
31371
31372 2004-01-02  David Schleef  <ds@schleef.org>
31373
31374         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
31375         (gst_ffmpegenc_connect):  Negotiation fixes.
31376         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
31377         Remove inappropriate gst_caps_free().
31378         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31379         Reenable Ronald's internal resize code, since the core handles
31380         it correctly now.
31381
31382 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31383
31384         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
31385         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
31386         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
31387           Fix pad template stuff.
31388
31389 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31390
31391         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
31392         * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
31393           fix signed integer reading/writing.
31394
31395 2004-01-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31396
31397         * ext/alsa/README:
31398           Remove outdated document
31399
31400 2004-01-03  Jan Schmidt  <thaytan@mad.scientist.com>
31401
31402         * gst/cutter/gstcutter.c: (gst_cutter_init):
31403           src pad was being created twice - oops.
31404
31405 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31406
31407         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31408           Comment out internal resize. It doesn't handle the resulting
31409           XEvent internally, does another try_set_caps() which leads to
31410           a really nice loop.
31411           Real fix will come when Julien and Dave are awake. ;).
31412
31413 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31414
31415         * ext/mpeg2enc/gstmpeg2enc.cc:
31416           fix const/nonconst compile issue.
31417
31418 2004-01-02  David Schleef  <ds@schleef.org>
31419
31420         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
31421         (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
31422         Add fixate function and a check for bad formats.
31423
31424 2004-01-01  David Schleef  <ds@schleef.org>
31425
31426         Negotiation fixes:
31427         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
31428         (gst_audiofilter_init):
31429         * gst/debug/efence.c: (gst_efence_init):
31430         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
31431         (gst_deinterlace_init):
31432         * gst/volume/gstvolume.c: (volume_connect):
31433
31434 2004-01-01  David Schleef  <ds@schleef.org>
31435
31436         Convert elements to use gst_pad_use_explicit_caps() where
31437         appropriate:
31438         * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
31439         * ext/audiofile/gstafparse.c: (gst_afparse_init),
31440         (gst_afparse_open_file):
31441         * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
31442         (gst_afsrc_open_file):
31443         * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
31444         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
31445         (gst_ffmpegdec_chain):
31446         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
31447         * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
31448         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
31449         (gst_gdk_pixbuf_chain):
31450         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
31451         (gst_jpegdec_chain):
31452         * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
31453         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
31454         (gst_mikmod_negotiate):
31455         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
31456         (gst_mpeg2dec_negotiate_format):
31457         * ext/mpeg2enc/gstmpeg2enc.cc:
31458         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
31459         * ext/speex/gstspeexdec.c: (gst_speexdec_init),
31460         (gst_speexdec_sinkconnect):
31461         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
31462         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
31463         (gst_vorbisfile_new_link):
31464         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
31465         (gst_ac3parse_chain):
31466         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
31467         (gst_asf_demux_setup_pad):
31468         * gst/auparse/gstauparse.c: (gst_auparse_init),
31469         (gst_auparse_chain):
31470         * gst/id3/gstid3types.c: (gst_id3types_loop):
31471         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
31472         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
31473         (mp1videoparse_parse_seq):
31474         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
31475         (bpf_from_header):
31476         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
31477         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
31478         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
31479         (gst_mpeg_parse_send_data):
31480         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
31481         (gst_qtdemux_add_stream):
31482         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
31483         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
31484         (gst_wavparse_parse_fmt):
31485
31486 2004-01-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31487
31488         * configure.ac:
31489           Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
31490           1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
31491           it therefore uses the wrong include paths. Too bad... Note
31492           that 1.6.1.93 is not release yet. ;).
31493           Also add a check for mplex, which is now using the lib'ified
31494           mplex from mjpegtools, too.
31495         * ext/ffmpeg/gstffmpegcodecmap.c:
31496           Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
31497           issues. I don't think ffmpeg handles 3ivx correctly, so this
31498           probably won't work. But it won't hurt either.
31499         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
31500         (gst_ffmpegdec_chain):
31501         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
31502         (gst_ffmpegenc_chain_audio):
31503           Fix memleak in audio encoding. Close codec if open fails, this
31504           calls the cleanup routines so we can re-use the context.
31505         * ext/mpeg2enc/gstmpeg2enc.cc:
31506           Fix pad template names/types, fix memory issue with getcaps().
31507         * ext/mpeg2enc/gstmpeg2encoder.cc:
31508         * ext/mpeg2enc/gstmpeg2encoder.hh:
31509           Fix compile issue with new caps system (const thingy).
31510         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
31511         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
31512           We read a first frame right on initing, so that we have a caps
31513           when we init the output. This caps is cached in padprivate and
31514           read as first frame.
31515         * ext/mplex/Makefile.am:
31516         * ext/mplex/gstmplex.cc:
31517         * ext/mplex/gstmplex.h:
31518         * ext/mplex/gstmplex.hh:
31519         * ext/mplex/gstmplexibitstream.cc:
31520         * ext/mplex/gstmplexibitstream.hh:
31521         * ext/mplex/gstmplexjob.cc:
31522         * ext/mplex/gstmplexjob.hh:
31523         * ext/mplex/gstmplexoutputstream.cc:
31524         * ext/mplex/gstmplexoutputstream.hh:
31525           We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
31526           had issues, didn't do capsnego, supported only a subset of the
31527           mplex features and required a mplex fork in our local CVS. Plus
31528           that it worked agaist a very old mplex version. Rewriting was
31529           faster than updating it.
31530         * gst-libs/ext/Makefile.am:
31531         * gst-libs/ext/mplex/INSTRUCT:
31532         * gst-libs/ext/mplex/Makefile.am:
31533         * gst-libs/ext/mplex/README:
31534         * gst-libs/ext/mplex/TODO:
31535         * gst-libs/ext/mplex/ac3strm_in.cc:
31536         * gst-libs/ext/mplex/audiostrm.hh:
31537         * gst-libs/ext/mplex/audiostrm_out.cc:
31538         * gst-libs/ext/mplex/aunit.hh:
31539         * gst-libs/ext/mplex/bits.cc:
31540         * gst-libs/ext/mplex/bits.hh:
31541         * gst-libs/ext/mplex/buffer.cc:
31542         * gst-libs/ext/mplex/buffer.hh:
31543         * gst-libs/ext/mplex/fastintfns.h:
31544         * gst-libs/ext/mplex/format_codes.h:
31545         * gst-libs/ext/mplex/inputstrm.cc:
31546         * gst-libs/ext/mplex/inputstrm.hh:
31547         * gst-libs/ext/mplex/lpcmstrm_in.cc:
31548         * gst-libs/ext/mplex/mjpeg_logging.cc:
31549         * gst-libs/ext/mplex/mjpeg_logging.h:
31550         * gst-libs/ext/mplex/mjpeg_types.h:
31551         * gst-libs/ext/mplex/mpastrm_in.cc:
31552         * gst-libs/ext/mplex/mpegconsts.cc:
31553         * gst-libs/ext/mplex/mpegconsts.h:
31554         * gst-libs/ext/mplex/mplexconsts.hh:
31555         * gst-libs/ext/mplex/multplex.cc:
31556         * gst-libs/ext/mplex/outputstream.hh:
31557         * gst-libs/ext/mplex/padstrm.cc:
31558         * gst-libs/ext/mplex/padstrm.hh:
31559         * gst-libs/ext/mplex/stillsstream.cc:
31560         * gst-libs/ext/mplex/stillsstream.hh:
31561         * gst-libs/ext/mplex/systems.cc:
31562         * gst-libs/ext/mplex/systems.hh:
31563         * gst-libs/ext/mplex/vector.cc:
31564         * gst-libs/ext/mplex/vector.hh:
31565         * gst-libs/ext/mplex/videostrm.hh:
31566         * gst-libs/ext/mplex/videostrm_in.cc:
31567         * gst-libs/ext/mplex/videostrm_out.cc:
31568         * gst-libs/ext/mplex/yuv4mpeg.cc:
31569         * gst-libs/ext/mplex/yuv4mpeg.h:
31570         * gst-libs/ext/mplex/yuv4mpeg_intern.h:
31571         * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
31572           We don't fork mjpegtools' mplex in our CVS anymore.
31573         * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
31574         (gst_avi_demux_add_stream):
31575         * gst/avi/gstavidemux.h:
31576           Add getcaps() function for proper caps nego. This makes some
31577           parts of AVI playback/reading work.
31578         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31579           Resize window on new capsnego. This is probably wrong, but
31580           I'm still committing it because with current capsnego, the
31581           first successfull capsnego is auto-fixated, therefore rounded
31582           down to the lowest values in the caps. this results in a 16x16
31583           XWindow that is not reized when real capsnego finishes.
31584           Dave, I see more cases of this, do you know a proper solution?
31585         * tools/gst-launch-ext.in:
31586           Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
31587
31588 2003-12-31  David Schleef  <ds@schleef.org>
31589
31590         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
31591         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
31592           Change gst_pad_proxy_link() to gst_pad_try_set_caps()
31593
31594 2003-12-30  David Schleef  <ds@schleef.org>
31595
31596         * ext/ffmpeg/gstffmpegcolorspace.c:
31597         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
31598         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
31599         (gst_ffmpegcsp_chain): Negotiation fixes
31600         * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
31601         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
31602         (gst_audio_convert_link), (gst_audio_convert_channels):
31603         * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
31604         (gst_audioscale_link), (gst_audioscale_get_buffer),
31605         (gst_audioscale_chain): Negotiation fixes
31606         * gst/audioscale/gstaudioscale.h:
31607         * gst/videofilter/gstvideofilter.c:
31608         (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
31609         (gst_videofilter_link), (gst_videofilter_init),
31610         (gst_videofilter_set_output_size), (gst_videofilter_setup),
31611         (gst_videofilter_find_format_by_structure):
31612         * gst/videofilter/gstvideofilter.h: Negotiation fixes
31613         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
31614         (gst_videoscale_link):
31615         * gst/videoscale/videoscale.c: (videoscale_get_structure),
31616         (videoscale_find_by_structure), (gst_videoscale_setup):
31617         * gst/videoscale/videoscale.h: Negotiation fixes
31618         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
31619         (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
31620         function, restrict resizing to a multiple of 4 (hack until
31621         everyone supports odd sizes correctly).
31622
31623 2003-12-29  Colin Walters  <walters@verbum.org>
31624
31625         * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
31626         signed.
31627
31628 2003-12-30  Jan Schmidt <thaytan@mad.scientist.com>
31629
31630         * ext/sndfile/gstsf.c: (gst_sf_loop):
31631           Fix warning about discarding const qualifier
31632
31633 2003-12-27  Jeremy Simon   <jesimon@libertysurf.fr>
31634
31635         * gst/cutter/gstcutter.c:
31636         * gst/videoscale/gstvideoscale.c:
31637         * gst/volenv/gstvolenv.c:
31638         * gst-libs/gst/audio/audio.c:
31639         * gst-libs/gst/video/video.c:
31640           Fix warnings
31641
31642 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31643
31644         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
31645           Don't send ALSA debugging to stderr.
31646         * ext/alsa/gstalsa.h:
31647           Use GST_WARNING instead of g_warning when ALSA functions fail.
31648
31649 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31650
31651         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
31652           Free XVAdapterInfo correctly.
31653
31654 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31655
31656         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
31657         (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
31658           Make id3tag use correct caps nego.
31659
31660 2003-12-27  Amaury Jacquot <sxpert@esitcom.org>
31661
31662         * ext/ivorbis/vorbis.c:
31663         * ext/ivorbis/vorbisenc.h:
31664         * ext/ivorbis/vorbisfile.c:
31665           Modify so that it uses the new caps things
31666
31667 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31668
31669         * testsuite/spider/spider1.c: (main):
31670         * testsuite/spider/spider2.c: (main):
31671         * testsuite/spider/spider3.c: (main):
31672           Make tests compile again. They probably don't work.
31673
31674 2003-12-24  Colin Walters  <walters@verbum.org>
31675
31676         * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
31677         we can't fixate the caps anymore.
31678
31679 2003-12-23  David Schleef  <ds@schleef.org>
31680
31681         * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
31682         * sys/oss/gstosssink.c: (gst_osssink_init),
31683         (gst_osssink_sink_fixate): Add fixate function.
31684
31685 2003-12-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31686
31687         * ext/ffmpeg/gstffmpegcodecmap.c:
31688         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
31689         (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
31690         (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
31691         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
31692         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
31693         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
31694         (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
31695           fix typo in RGB masks, and move back to "old" colorspace
31696           capsnego code until whoever wrote this new crap has actually
31697           tested it so that it works.
31698           And yes, this works, keep it that way please.
31699
31700 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31701
31702         * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
31703         (gst_divxdec_init), (gst_divxdec_negotiate):
31704         * ext/divx/gstdivxdec.h:
31705         * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
31706         (gst_divxenc_init):
31707         * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
31708         (gst_faac_sinkconnect), (gst_faac_srcconnect):
31709         * ext/mpeg2enc/gstmpeg2enc.cc:
31710         * ext/mpeg2enc/gstmpeg2encoder.cc:
31711         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
31712         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
31713         (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
31714         * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
31715         (dxr3spusink_init):
31716         * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
31717         (dxr3videosink_init):
31718           Fix caps breakage after Dave's caps branch merge.
31719
31720 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31721
31722         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
31723           Fix for 24bpp display.
31724
31725 2003-12-23  Colin Walters  <walters@verbum.org>
31726
31727         * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
31728         a GnomeVFSHandle directly.
31729
31730 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31731
31732         * gst/volume/Makefile.am:
31733         * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
31734         (volume_base_init), (volume_init):
31735           Reenable volume element and fix to work with new caps stuff.
31736           Rhythmbox needs this.
31737
31738 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31739
31740         * gst/qtdemux/qtdemux.c: (plugin_init):
31741           qtdemux requires bytestream
31742
31743 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31744
31745         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
31746           Fix remaining caps handling errors due to CAPS merge.
31747
31748 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31749
31750         * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
31751         (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
31752         (gst_faad_srcconnect):
31753           Port to new caps system.
31754
31755 2003-12-21  Julien MOUTTE  <julien@moutte.net>
31756
31757         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
31758         (got_video_size), (main): using g_print instead of g_message.
31759         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
31760         signal which was not emitted because of "switch" element added to the
31761         bin but not connected. (Removing from the bin temporarily)
31762
31763 2003-12-21  Julien MOUTTE  <julien@moutte.net>
31764
31765         * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
31766         find X development files. I don't understand the previous tests and
31767         they fail on my debian/ppc unstable. This one works.
31768         * examples/gstplay/player.c: (main): Set the pipeline to READY before
31769         exiting.
31770         * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
31771         (gst_play_set_video_sink), (gst_play_set_audio_sink),
31772         (gst_play_set_visualization): Add some safety checks in set_ methods
31773         and state_change. This was throwing some ugly CRITICAL messages when
31774         pipeline was getting disposed and casts were failing.
31775
31776 2003-12-21  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31777
31778         * configure.ac:
31779           Improve mpeg2enc detection. This is for distributions that do
31780           ship mjpegtools, but without mpeg2enc. Also does object check
31781           for might there ever be ABI incompatibility.
31782         * ext/mpeg2enc/gstmpeg2enc.cc:
31783           Add Andrew as second maintainer (he's helping me), and also add
31784           an error if no caps was set. This happens if I pull before capsnego
31785           and that's something I should solve sometime else.
31786         * gst/matroska/matroska-demux.c:
31787         (gst_matroska_demux_parse_blockgroup):
31788           Fix time parsing.
31789         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
31790         (gst_matroska_mux_track_header):
31791           Add caps to templates.
31792         * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
31793           Add mpegversion=1 to prevent confusion with MPEG/AAC.
31794         * gst/mpegstream/gstmpegdemux.c:
31795           Remove layer since it causes warnings about unfixed caps.
31796         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
31797           Fix obvious typo (we error out if caps were set, we should of
31798           course error out if *no* caps were set).
31799         * sys/oss/gstosselement.c: (gst_osselement_convert):
31800           Fix format conversion, we confused bits/bytes.
31801         * sys/oss/gstosselement.h:
31802           Improve documentation for 'bps'.
31803         * sys/v4l/TODO:
31804           Remove stuff about plugins that need removing - this was done
31805           ages ago.
31806         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
31807         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
31808         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
31809         (gst_v4lsrc_src_query):
31810         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
31811         (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
31812           Add get_query_types(), get_formats() and query() functions.
31813
31814 2003-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
31815
31816         * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
31817           * moved CVS to freedesktop.org