1 2007-03-27 Tim-Philipp Müller <tim at centricular dot net>
3 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
4 * tests/check/libs/tag.c: (GST_START_TEST):
5 Make sure we parse floating-point numbers in vorbis comments
6 correctly with either '.' or ',' as separator, no matter what
7 the current locale is. Add unit test for this too.
9 2007-03-26 Tim-Philipp Müller <tim at centricular dot net>
11 Patch by: René Stadler <mail at renestadler de>
13 * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_to_vorbis_comments):
14 When writing out floating-point numbers to vorbis comment tags, always
15 use the same character as separator no matter what the current locale is
18 * tests/check/libs/tag.c: (GST_START_TEST):
19 Add unit tests for replaygain tags in vorbis comments (closes #423055).
21 2007-03-26 Thomas Vander Stichele <thomas at apestaart dot org>
23 * ext/vorbis/vorbisdec.c (vorbis_dec_push_forward,
24 vorbis_handle_data_packet):
25 Correctly set DURATION to generate a timestamp-continuous stream.
26 One bug left at the end; see
27 ihttp://bugzilla.gnome.org/show_bug.cgi?id=423086
28 * tests/check/Makefile.am:
29 * tests/check/pipelines/vorbisenc.c (GST_START_TEST):
30 Add a test to check this. Without the above patch this test fails.
32 2007-03-26 Jan Schmidt <thaytan@mad.scientist.com>
34 * gst-libs/gst/rtp/Makefile.am:
35 The base audio payloader uses GstAdapter - we need GST_BASE_LIBS.
37 2007-03-23 Michael Smith <msmith@fluendo.com>
39 * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps),
40 (gst_video_rate_reset), (gst_video_rate_chain):
41 If videorate changes caps, we can no longer use the old buffer
42 (which may have a different size, incompatible with our caps).
43 So don't do that; just duplicate the new frame more times.
45 2007-03-22 Jan Schmidt <thaytan@mad.scientist.com>
47 * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
48 Remove playbin's override of the set_clock vmethod. It's irrelevant
49 after Wim's commit on the 19th.
51 2007-03-22 Wim Taymans <wim@fluendo.com>
53 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_size),
54 (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
55 * ext/gnomevfs/gstgnomevfssrc.h:
56 Don't cache file sizes. Fixes #341078.
58 2007-03-21 Tim-Philipp Müller <tim at centricular dot net>
60 * gst/playback/gstplaybin.c: (add_sink):
61 Use GST_PTR_FORMAT to log caps.
63 2007-03-21 Tim-Philipp Müller <tim at centricular dot net>
65 Patch by: Young-Ho Cha <ganadist at chollian net>
67 * gst/subparse/samiparse.c: (handle_start_font):
68 Special-case some more colour names that pango doesn't handle by
69 default. Fixes #420578.
71 2007-03-20 Michael Smith <msmith@fluendo.com>
73 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
74 If we get a zero-sized input buffer, don't pass it to libvorbis, as
75 that marks EOS internally. After that, libvorbis will buffer all
76 input data, and encode none of it, eventually leading to memory
79 2007-03-19 Wim Taymans <wim@fluendo.com>
81 * gst/playback/gstdecodebin.c: (remove_fakesink):
82 Don't post STATE_DIRTY anymore.
84 * gst/playback/gstplaybin.c: (add_sink), (gst_play_bin_send_event),
85 (gst_play_bin_change_state):
86 Remove stream_time reset in seek handling, core does that now.
87 Disable clocking for live pipelines by forcing a NULL clock to the
88 complete pipeline, core is too smart now for our previous hack.
89 We can always autoplug in PAUSED now.
91 2007-03-17 David Schleef <ds@schleef.org>
93 * REQUIREMENTS: Update this file, change the formatting to make
94 it more consistent, plus more machine readable.
96 2007-03-16 Michael Smith <msmith@fluendo.com>
98 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
99 (strip_width_64), (append_with_other_format):
100 Previous fix was too simplistic, and broke the tests. Use a better
101 approach; only strip 64 from widths for integer audio.
103 2007-03-16 Michael Smith <msmith@fluendo.com>
105 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
106 (gst_audio_convert_transform_caps):
107 We don't support 64 bit integer audio, so don't try to claim we can.
108 Stops us producing caps don't match our template caps.
111 2007-03-15 Michael Smith <msmith@fluendo.com>
113 * gst/audioresample/gstaudioresample.c:
114 (audioresample_check_discont), (audioresample_transform):
115 Don't trigger discontinuities for very small imperfections; a filter
116 flush will sound bad, and many plugins have rounding errors leading
119 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
121 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
122 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
123 Add min-ptime property to RTP base audio payloader. Patch by
124 olivier.crete@collabora.co.uk.
127 Indentation/whitespace/documentation fixes.
129 2007-03-14 Julien MOUTTE <julien@moutte.net>
131 * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
132 (audioresample_transform_size), (audioresample_do_output),
133 (audioresample_transform), (audioresample_pushthrough): Handle
134 discontinuous streams.
135 * gst/audioresample/gstaudioresample.h:
136 * tests/check/elements/audioresample.c:
137 (test_discont_stream_instance), (GST_START_TEST),
138 (audioresample_suite): Add a test for discontinuous streams.
139 * win32/common/config.h: Updated.
141 2007-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
156 Update translations from translation project.
158 2007-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
160 * gst/audioresample/debug.h:
161 * gst/audioresample/resample.c: (resample_init):
162 Since I really am not interested in a debug line for each sample
163 being processed, move the library's debugging to its own category,
166 2007-03-13 Michael Smith <msmith@fluendo.com>
168 * ext/theora/theoradec.c: (theora_handle_type_packet):
169 Since the plugin doesn't support anything other than 4:2:0 right
170 now, post an error and fail if we get something else. Won't matter
171 until libtheora supports the other pixel formats, but hopefully
174 2007-03-10 Sebastien Moutte <sebastien@moutte.net>
176 * gst-libs/gst/audio/gstbaseaudiosink.c:(gst_base_audio_sink_render):
177 Use gst_guint64_to_gdouble for conversion.
179 Add new files to the win32 MANIFEST.
180 * win32/common/libgstaudio.def:
181 * win32/common/libgstpbutils.def:
182 Add new exported functions.
183 * win32/vs6/gst_plugins_base.dsw:
184 * win32/vs6/libgstdecodebin.dsp:
185 * win32/vs6/libgstplaybin.dsp:
186 Change the link to libgstpbutils.lib.
187 * win32/vs6/libgstdecodebin2.dsp:
188 Add a new project for decodebin2.
189 * win32/vs6/libgstpbutils.dsp:
190 Add a new project for pbutils.
192 2007-03-10 Tim-Philipp Müller <tim at centricular dot net>
194 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
195 Also accept partial dates with only year and month,
196 like 1999-12-00 (fixes #410396 even more).
198 * tests/check/libs/tag.c: (GST_START_TEST):
199 Add unit test for the above.
201 2007-03-10 Tim-Philipp Müller <tim at centricular dot net>
203 * tests/check/elements/subparse.c: (GST_START_TEST),
205 Add unit test for MPL2 subtitle format (#413799).
207 2007-03-10 Tim-Philipp Müller <tim at centricular dot net>
209 Patch by: Kamil Pawlowski <kamilpe gmail com>
211 * gst/subparse/Makefile.am:
212 * gst/subparse/gstsubparse.c:
213 (gst_sub_parse_data_format_autodetect),
214 (gst_sub_parse_format_autodetect), (gst_sub_parse_sink_event),
215 (gst_subparse_type_find):
216 * gst/subparse/gstsubparse.h:
217 * gst/subparse/mpl2parse.c: (mpl2_parse_line), (parse_mpl2):
218 * gst/subparse/mpl2parse.h:
219 Add support for MPL2 subtitle format (#413799).
221 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
224 We require core CVS for the new buffer metadata copy functions.
226 2007-03-09 Wim Taymans <wim@fluendo.com>
228 * gst-libs/gst/tag/gstid3tag.c:
229 Add read support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
232 Patch by: Alex Lancaster <alexl at users sourceforge net>
234 2007-03-09 Wim Taymans <wim@fluendo.com>
236 * ext/libvisual/visual.c: (gst_visual_sink_setcaps),
237 (gst_vis_src_negotiate), (get_buffer), (gst_visual_chain):
238 Improve adapter usage and comments.
240 2007-03-09 Wim Taymans <wim@fluendo.com>
242 * ext/pango/gsttextrender.c: (gst_text_render_chain):
243 * ext/vorbis/vorbistag.c: (gst_vorbis_tag_parse_packet):
244 * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_copy):
245 Use new metadata copy function.
247 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
248 (gst_ffmpegcsp_transform):
249 * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform):
250 Basetransform copied the metadata for us.
252 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
254 * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
255 (gst_text_overlay_video_event):
256 Some more logging. Only accept newsegment events in TIME format and
257 send a WARNING message if they are not in TIME format.
259 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
260 (gst_sub_parse_init), (gst_sub_parse_src_event), (handle_buffer),
261 (gst_sub_parse_chain), (gst_sub_parse_sink_event):
262 * gst/subparse/gstsubparse.h:
263 No need to allocate GstSegment structure dynamically, just put it
264 into the instance structure; ignore newsegment events in BYTE
265 format and in particular don't let it overwrite our saved TIME
266 segment from the last seek.
268 2007-03-09 Michael Smith <msmith@fluendo.com>
270 * gst/typefind/gsttypefindfunctions.c: (ac3_type_find):
271 Replace AC3 typefinder with one that isn't terrible, and actually
274 2007-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
276 * gst/audioconvert/gstaudioconvert.c:
277 (gst_audio_convert_transform):
278 fix error category and translatable string
281 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
283 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
284 * pkgconfig/gstreamer-plugins-base.pc.in:
285 Fix up utils => pbutils here too.
287 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
289 * gst/subparse/gstsubparse.c: (handle_buffer):
290 Break out of loop in chain function as soon as possible if we get
291 a non-OK flow return.
293 2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
295 * tests/check/elements/alsa.c: (GST_START_TEST):
296 Unref the mixer if the state change fails too (if the
297 alsa devices are inaccessible, for example)
299 2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
301 * tests/check/Makefile.am:
302 Don't test libvisual elements in the states check, because libvisual
303 seems to leak internally.
305 Re-enable the alsa and states tests now that there's new suppressions
308 * tests/check/elements/alsa.c: (GST_START_TEST):
309 Don't leak the alsamixer we instantiated.
311 2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
313 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
314 (gst_ximagesink_change_state), (gst_ximagesink_reset),
315 (gst_ximagesink_finalize):
316 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
317 (gst_xvimagesink_reset), (gst_xvimagesink_finalize):
318 Move some cleanup stuff from the state change handler into a _reset()
319 function that can be called from _finalize(). This ensures that things
320 get freed even if (for some reason) the NULL->READY state transition
321 fails in the parent class.
322 Even if a parent state change fails, process our downward state change
323 logic instead of bailing out early.
324 Free the correct xcontext pointer in ximagesink's xcontext_clear.
326 2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
328 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
331 * ext/pango/gstclockoverlay.c: (gst_clock_overlay_init):
332 * ext/pango/gsttimeoverlay.c: (gst_time_overlay_init):
333 Use pango_font_description_set_family_static instead of
334 pango_font_description_set_family to save a string copy (it was
335 leaking due to the strdup anyway)
337 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_finalize):
338 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_finalize):
339 * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_finalize):
340 * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_finalize):
341 Chain up in finalize.
343 2007-03-07 Tim-Philipp Müller <tim at centricular dot net>
345 * gst-libs/gst/interfaces/mixertrack.c:
346 (gst_mixer_track_class_init), (gst_mixer_track_get_property),
347 (gst_mixer_track_set_property):
348 API: add "untranslated-label" property which should be set by
349 implementations at construct time (#414645).
351 * ext/alsa/gstalsamixeroptions.c: (gst_alsa_mixer_options_new):
352 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
353 Set "untranslated-label" when constructing mixer track objects.
355 * tests/check/elements/alsa.c: (GST_START_TEST), (alsa_suite):
356 Unit test to check the above.
358 2007-03-07 Wim Taymans <wim@fluendo.com>
360 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
361 Fix confusing debug message.
363 2007-03-07 Jan Schmidt <thaytan@mad.scientist.com>
365 * gst-plugins-base.doap:
366 update doap file with new version
368 2007-03-07 Jan Schmidt <thaytan@mad.scientist.com>
373 === release 0.10.12 ===
375 2007-03-07 Jan Schmidt <thaytan@mad.scientist.com>
378 releasing 0.10.12, "Zombie Horde"
380 2007-03-06 Jan Schmidt <thaytan@mad.scientist.com>
383 Bump version to 0.10.11.4 pre-release
385 2007-03-06 Wim Taymans <wim@fluendo.com>
387 * gst-libs/gst/audio/gstbaseaudiosink.c:
388 (gst_base_audio_sink_async_play):
389 Fix regression that made GStreamer skip the first samples of audio.
392 2007-03-05 Jan Schmidt <thaytan@mad.scientist.com>
395 Bump version to 0.10.11.3 pre-release
397 2007-03-05 Sebastian Dröge <slomo@circular-chaos.org>
400 Update paths for the rename from utils to pbutils to fix the build.
402 2007-03-05 Tim-Philipp Müller <tim at centricular dot net>
404 * gst-libs/gst/pbutils/Makefile.am:
405 Change directory to install headers in from gst/utils to gst/pbutils
408 2007-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
411 * docs/libs/gst-plugins-base-libs-docs.sgml:
412 * docs/libs/gst-plugins-base-libs-sections.txt:
413 * gst-libs/gst/Makefile.am:
414 * gst-libs/gst/interfaces/mixer.c:
415 * gst-libs/gst/pbutils/Makefile.am:
416 * gst-libs/gst/pbutils/descriptions.c:
417 (gst_pb_utils_get_source_description),
418 (gst_pb_utils_get_sink_description),
419 (gst_pb_utils_get_decoder_description),
420 (gst_pb_utils_get_encoder_description),
421 (gst_pb_utils_get_element_description),
422 (gst_pb_utils_add_codec_description_to_tag_list),
423 (gst_pb_utils_get_codec_description), (gst_pb_utils_list_all):
424 * gst-libs/gst/pbutils/descriptions.h:
425 * gst-libs/gst/pbutils/install-plugins.c:
426 * gst-libs/gst/pbutils/install-plugins.h:
427 * gst-libs/gst/pbutils/missing-plugins.c:
428 (gst_missing_uri_source_message_new),
429 (gst_missing_uri_sink_message_new),
430 (gst_missing_element_message_new),
431 (gst_missing_decoder_message_new),
432 (gst_missing_encoder_message_new),
433 (gst_missing_plugin_message_get_description):
434 * gst-libs/gst/pbutils/missing-plugins.h:
435 * gst-libs/gst/pbutils/pbutils.c: (gst_pb_utils_init):
436 * gst-libs/gst/pbutils/pbutils.h:
437 * gst-libs/gst/utils/Makefile.am:
438 * gst-libs/gst/utils/base-utils.c:
439 * gst-libs/gst/utils/base-utils.h:
440 * gst-libs/gst/utils/descriptions.c:
441 * gst-libs/gst/utils/descriptions.h:
442 * gst-libs/gst/utils/install-plugins.c:
443 * gst-libs/gst/utils/install-plugins.h:
444 * gst-libs/gst/utils/missing-plugins.c:
445 * gst-libs/gst/utils/missing-plugins.h:
446 * gst-plugins-base.spec.in:
447 * gst/playback/Makefile.am:
448 * gst/playback/gstdecodebin.c:
449 * gst/playback/gstdecodebin2.c:
450 * gst/playback/gstplaybasebin.c: (setup_subtitle),
451 (gen_source_element):
452 * gst/playback/gstplaybin.c: (plugin_init):
453 * tests/check/Makefile.am:
454 * tests/check/libs/pbutils.c: (GST_START_TEST),
455 (test_pb_utils_install_plugins_do_callout), (libgstpbutils_suite):
456 * tests/check/libs/utils.c:
457 rename utils to pbutils
459 2007-03-02 Jan Schmidt <thaytan@mad.scientist.com>
461 * docs/plugins/Makefile.am:
462 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
463 * docs/plugins/gst-plugins-base-plugins-sections.txt:
464 * docs/plugins/inspect/plugin-decodebin2.xml:
465 * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
466 Add documentation for decodebin2 that indicates that the API
469 2007-03-01 Jan Schmidt <thaytan@mad.scientist.com>
472 Update to 0.10.11.2 (0.10.12 pre-release)
474 2007-03-01 Wim Taymans <wim@fluendo.com>
476 * gst-libs/gst/audio/gstbaseaudiosink.c:
477 (gst_base_audio_sink_async_play):
478 base time is irrelevant here.
480 2007-03-01 Wim Taymans <wim@fluendo.com>
482 * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
483 * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
486 * gst-libs/gst/audio/gstbaseaudiosink.c:
487 (gst_base_audio_sink_query), (gst_base_audio_sink_event),
488 (gst_base_audio_sink_render), (gst_base_audio_sink_async_play):
489 Improve latency and clock slaving calculations.
490 Improve slave clock calibration.
492 * gst-libs/gst/audio/gstringbuffer.c:
493 (gst_ring_buffer_commit_full):
494 When we are asked to render N sample to 0 bytes, return N.
496 2007-03-01 Wim Taymans <wim@fluendo.com>
498 * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
499 (gst_alsasink_write), (gst_alsasink_reset):
500 * ext/alsa/gstalsasink.h:
501 Remove unused dispose function.
502 Rename lock to not interfere with alsasrc lock.
504 * ext/alsa/gstalsasrc.c: (gst_alsasrc_finalize),
505 (gst_alsasrc_class_init), (gst_alsasrc_init), (set_swparams),
506 (gst_alsasrc_read), (gst_alsasrc_reset):
507 * ext/alsa/gstalsasrc.h:
508 Implement finalize function.
509 Use lock to protect alsa access.
513 2007-02-28 Thomas Vander Stichele <thomas at apestaart dot org>
516 Convert to new AG_GST style.
518 2007-02-28 Wim Taymans <wim@fluendo.com>
520 Patch by: Ed Catmur <ed at catmur dot co dot uk>
522 * gst/playback/gstplaybin.c: (gst_play_bin_vis_unblocked),
523 (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
524 Fix race condition when rapidly switching visualisations in playbin.
527 2007-02-28 Jan Schmidt <thaytan@mad.scientist.com>
529 * tests/check/Makefile.am:
530 Include local stuff before system installed things in LDFLAGS and
533 2007-02-28 Wim Taymans <wim@fluendo.com>
535 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_sink_activate):
538 2007-02-28 Wim Taymans <wim@fluendo.com>
540 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
541 (gst_v4lsrc_fixate), (gst_v4lsrc_query):
542 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_new):
543 Fix duration and timestamping, taking latency into account.
544 Implement latency query.
546 2007-02-28 Wim Taymans <wim@fluendo.com>
548 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
549 (gst_audio_clock_new):
552 * gst-libs/gst/audio/gstbaseaudiosink.c:
553 (gst_base_audio_sink_init), (gst_base_audio_sink_query):
554 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
555 (gst_base_audio_src_query), (gst_base_audio_src_get_offset),
556 (gst_base_audio_src_create):
557 Improve latency query code.
558 Use proper clock names.
560 2007-02-28 Thomas Vander Stichele <thomas at apestaart dot org>
562 * tests/check/generic/states.c: (GST_START_TEST):
563 Copy the states.c test from core again
564 * tests/check/Makefile.am:
565 ignore cdio and cdparanoiasrc
567 2007-02-28 Stefan Kost <ensonic@users.sf.net>
569 * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
570 (double_hq), (audio_convert_get_func_index), (check_default),
571 (audio_convert_prepare_context), (audio_convert_convert):
572 Also make valgrind happy and avoid copying data in some cases.
574 2007-02-28 Stefan Kost <ensonic@users.sf.net>
576 * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
577 (double_hq), (audio_convert_get_func_index),
578 (audio_convert_prepare_context), (audio_convert_convert):
579 * gst/audioconvert/gstaudioconvert.c:
580 (gst_audio_convert_class_init), (gst_audio_convert_get_unit_size),
581 (gst_audio_convert_transform_caps):
582 * tests/check/elements/audioconvert.c: (GST_START_TEST),
583 (audioconvert_suite):
584 Don't run inplace if that overwrites source data as we go. Add more
585 tests. Fixes #339837 even more.
587 2007-02-27 Julien MOUTTE <julien@moutte.net>
589 * tests/examples/seek/seek.c: (do_seek), (set_update_scale),
590 (msg_segment_done): Fix various seeking bugs (Slider was not
591 updating when doing a non flushing seek, Reverse playback
592 on segment seek was wrong).
594 2007-02-26 Wim Taymans <wim@fluendo.com>
596 * tests/examples/seek/seek.c: (stop_seek):
597 When we stop scrubbing, don't leave the pipeline PLAYING when we
598 requested a PAUSED state.
600 2007-02-25 Tim-Philipp Müller <tim at centricular dot net>
602 Patch by: René Stadler <mail at renestadler de>
604 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
605 Parse date strings in vorbis comments that have an invalid (zero)
606 month or day (#410396).
608 * tests/check/libs/tag.c: (GST_START_TEST):
609 Test case for the above.
611 2007-02-24 Tim-Philipp Müller <tim at centricular dot net>
613 Patch by: Loïc Minier <lool+gnome at via ecp fr>
616 * ext/alsa/Makefile.am:
617 * gst/audiotestsrc/Makefile.am:
618 Fix compilation with LDFLAGS='-Wl,-z,defs' (#410963).
620 2007-02-23 Tim-Philipp Müller <tim at centricular dot net>
622 * gst/playback/gstplaybin.c:
623 Improve docs: point out that the application needs to assist playbin
626 2007-02-23 Tim-Philipp Müller <tim at centricular dot net>
628 * gst-libs/gst/utils/install-plugins.c:
629 * gst-libs/gst/utils/missing-plugins.c:
630 * tests/check/libs/utils.c: (missing_msg_check_getters):
631 Change GStreamer marker prefix in detail string from 'gstreamer.net'
632 to just 'gstreamer'. Document the caps string component of the
633 decoder/encoder detail a bit better, since not everyone will be
634 familiar with the GStreamer media type/caps system (but they better
635 enjoy nested itemized lists).
637 2007-02-22 Tim-Philipp Müller <tim at centricular dot net>
639 * gst-libs/gst/netbuffer/gstnetbuffer.c:
640 (notgst_buffer_copy_fields_in_place), (gst_netbuffer_copy):
641 Fix copying of GstNetBuffer (would crash before, or at least lead to
642 invalid memory access, #410772), for now by copying the GstBuffer copy
643 code from the core over here so we can copy the GstBuffer fields on a
644 provided buffer instance (of type GstNetBuffer in this case). Would be
645 better to fix this with some support by the core though (and in the long
646 run change the broken GstBuffer/GstMiniObject copy semantics, #393099).
648 * tests/check/Makefile.am:
649 Enable unit test for GstNetBuffer.
651 2007-02-22 Andy Wingo <wingo@pobox.com>
653 * gst-libs/gst/audio/gstbaseaudiosink.c
654 (gst_base_audio_sink_init): Disable pull-mode activation until we
655 figure out how to make audio sinks go to PLAYING.
657 2007-02-22 Stefan Kost <ensonic@users.sf.net>
659 * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
660 (double_hq), (audio_convert_get_func_index),
661 (audio_convert_prepare_context), (audio_convert_convert):
662 * gst/audioconvert/audioconvert.h:
663 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_setup_matrix),
664 (gst_channel_mix_mix_int), (gst_channel_mix_mix_float):
665 * gst/audioconvert/gstchannelmix.h:
666 * tests/check/elements/audioconvert.c: (GST_START_TEST):
667 Add float as an intermediate format, as well as float mixing. Enable
668 test that was failing before. Fixes #339837
670 2007-02-21 Jan Schmidt <thaytan@mad.scientist.com>
672 * tests/examples/seek/seek.c: (do_seek):
673 Undo the previous commit: -1 as a stop time implies that the stop
674 time is the end of file, clearing any previously configured segment.
676 2007-02-21 Jan Schmidt <thaytan@mad.scientist.com>
678 * tests/examples/seek/seek.c: (do_seek):
679 Don't SEEK_SET with a stop time of -1, use SEEK_NONE instead.
681 2007-02-21 Stefan Kost <ensonic@users.sf.net>
683 * gst/volume/gstvolume.c: (volume_process_int16),
684 (volume_process_int16_clamp), (volume_set_caps):
685 Unbreak volume, value remains gint.
687 2007-02-21 Stefan Kost <ensonic@users.sf.net>
689 * gst/volume/gstvolume.c: (volume_choose_func),
690 (volume_update_real_volume), (gst_volume_set_volume),
691 (gst_volume_init), (volume_process_double), (volume_process_float),
692 (volume_process_int16), (volume_process_int16_clamp),
693 (volume_set_caps), (volume_transform_ip), (volume_update_volume):
694 * gst/volume/gstvolume.h:
695 Extend float audio support (double) and some int->uint cleanups.
697 2007-02-20 Edward Hervey <edward@fluendo.com>
699 * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
700 (multi_queue_underrun_cb), (gst_decode_group_check_if_drained),
701 (sort_end_pads), (gst_decode_group_expose),
702 (gst_decode_group_hide):
703 Don't free groups from the streaming threads. Just put them aside and
704 free them in dispose.
706 2007-02-20 Edward Hervey <edward@fluendo.com>
708 * gst/playback/gstdecodebin2.c: (connect_element),
709 (pad_added_group_cb), (gst_decode_group_check_if_blocked),
710 (sort_end_pads), (gst_decode_group_expose):
711 Handle dynamic pads within groups.
712 Sort pads before exposing them in order to make playbin happy.
713 There still is a race with the multiqueue filling up. This should be
717 2007-02-16 Tim-Philipp Müller <tim at centricular dot net>
719 * gst-libs/gst/utils/base-utils.c:
720 * gst-libs/gst/utils/descriptions.c:
721 * gst-libs/gst/utils/install-plugins.c:
722 * gst-libs/gst/utils/missing-plugins.c:
723 Some more docs (and descriptions for two subtitle formats).
725 2007-02-16 Tim-Philipp Müller <tim at centricular dot net>
727 * gst-libs/gst/audio/audio.c:
730 2007-02-16 Tim-Philipp Müller <tim at centricular dot net>
732 Patch by: Yves Lefebvre <ivanohe abacom com>
734 * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps):
735 Don't leak caps. Fixes #408278.
737 2007-02-15 Stefan Kost <ensonic@users.sf.net>
739 * ext/cdparanoia/gstcdparanoiasrc.h:
740 * ext/ogg/gstoggdemux.h:
741 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
742 (gst_audio_frame_length), (gst_audio_duration_from_pad_buffer),
743 (gst_audio_is_buffer_framed), (gst_audio_structure_set_int):
744 * gst-libs/gst/audio/audio.h:
745 * gst-libs/gst/audio/gstaudiofilter.h:
746 * gst-libs/gst/interfaces/videoorientation.h:
747 * gst/adder/gstadder.h:
748 More docs coverage and some ChangeLog surgery (add missing names)
750 2007-02-15 Wim Taymans <wim@fluendo.com>
752 * sys/ximage/ximagesink.c:
753 (gst_ximagesink_calculate_pixel_aspect_ratio):
754 * sys/xvimage/xvimagesink.c:
755 (gst_xvimagesink_calculate_pixel_aspect_ratio):
756 Small constifications.
758 2007-02-15 Wim Taymans <wim@fluendo.com>
760 * gst-libs/gst/audio/gstbaseaudiosink.c:
761 (gst_base_audio_sink_class_init), (gst_base_audio_sink_query),
762 (gst_base_audio_sink_render), (gst_base_audio_sink_callback),
763 (gst_base_audio_sink_async_play),
764 (gst_base_audio_sink_change_state):
765 Answer latency query.
766 Use configured latency when syncing.
769 * gst-libs/gst/audio/gstbaseaudiosrc.c:
770 (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
771 (gst_base_audio_src_query), (gst_base_audio_src_change_state):
772 Fix possible memleak.
773 Implement latency query.
776 2007-02-15 Wim Taymans <wim@fluendo.com>
778 * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
779 Ignore errors in reset, these are not fatal. They also grab the element
780 lock which is already taking when this function is called. Fixes
783 2007-02-13 Stefan Kost <ensonic@users.sf.net>
786 Remove 'tests/examples/xerror/Makefile' from output files again.
788 2007-02-13 Stefan Kost <ensonic@users.sf.net>
791 * docs/plugins/Makefile.am:
792 Also crossref against gst-plugins-base-libs.
794 2007-02-12 Stefan Kost <ensonic@users.sf.net>
797 * docs/libs/Makefile.am:
798 * docs/plugins/Makefile.am:
799 Add crossreferences to glib/gobject/gstream docs.
801 * gst-libs/gst/audio/audio.h:
804 * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
805 Add own debug category.
807 2007-02-12 Tim-Philipp Müller <tim at centricular dot net>
809 Patch by: René Stadler <mail at renestadler de>
811 * gst-libs/gst/tag/gstvorbistag.c:
812 Add vorbis/FLAC-tag mapping for new GST_TAG_REFERENCE_LEVEL
815 2007-02-10 Tim-Philipp Müller <tim at centricular dot net>
817 * gst/playback/gstplaybasebin.c: (setup_source):
818 When we have external subtitles and wait for the subtitle decodebin
819 to get up and running, we set up a (sync) bus handler for the
820 subtitle decodebin, so we can stop waiting when it posts an error
821 message. However, we should do that before we set the subtitle
822 decodebin's state to playing, otherwise things are racy and we might
823 miss error messages posted before we had a chance to set up the bus.
824 This should finally fix totem hanging on .txt pseudo-subtitle files.
826 2007-02-10 Sébastien Moutte <sebastien at moutte dot net>
828 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:(gst_base_rtp_audio_payload_handle_frame_based_buffer):
829 Use gst_gdouble_to_guint64 for conversions.
830 * win32/common/config.h.in:
831 Add a define for GST_INSTALL_PLUGINS_HELPER
832 * win32/common/libgstaudio.def:
833 * win32/common/libgstcdda.def:
834 * win32/common/libgstnetbuffer.def:
835 * win32/common/libgstrtp.def:
836 * win32/common/libgutils.def:
837 Add new exported functions.
838 * win32/vs6/gst_plugins_base.dsw:
839 * win32/vs6/libgstdecodebin.dsp:
840 * win32/vs6/libgstnetbuffer.dsp:
841 * win32/vs6/libgstplaybin.dsp:
842 * win32/vs6/libgstrtp.dsp:
843 * win32/vs6/libgstvorbis.dsp:
844 * win32/vs6/libgstcdda.dsp:
845 * win32/vs6/libgstgdp.dsp:
846 * win32/vs6/libgstutils.dsp:
847 Update and add new project files.
849 2007-02-10 Tim-Philipp Müller <tim at centricular dot net>
851 * gst/subparse/gstsubparse.c: (subrip_remove_unhandled_tag),
852 (subrip_remove_unhandled_tags), (parse_subrip):
853 For SubRip (.srt) subtitles, ignore all markup tags we don't
854 handle (like font tags, for example).
856 * tests/check/elements/subparse.c:
859 2007-02-09 Tim-Philipp Müller <tim at centricular dot net>
861 * gst/playback/gstdecodebin.c: (add_fakesink),
862 (gst_decode_bin_change_state):
863 * gst/playback/gstdecodebin2.c: (add_fakesink),
864 (gst_decode_bin_change_state):
865 Don't error out if there is no fakesink in the NULL to READY state
866 change, since when decodebin is re-used, we're only adding the
867 fakesink element in READY to PAUSED.
869 * tests/check/elements/decodebin.c:
870 (new_decoded_pad_plug_fakesink_cb), (GST_START_TEST),
872 Minimal unit test to make sure we can use the same decodebin
873 instance twice (at least with audiotestsrc input).
875 2007-02-09 Tim-Philipp Müller <tim at centricular dot net>
877 * ext/alsa/gstalsa.c: (gst_alsa_find_device_name):
878 Try to get devic-name from device string first, and from handle only
879 as fallback (seems to yield better results and is more robust
880 against buggy probing code on the application side).
882 2007-02-08 Tim-Philipp Müller <tim at centricular dot net>
884 Based on patch by: Julien Puydt <julien.puydt at laposte net>
886 * ext/alsa/gstalsa.c: (gst_alsa_find_device_name_no_handle),
887 (gst_alsa_find_device_name):
888 * ext/alsa/gstalsa.h:
889 * ext/alsa/gstalsasink.c: (gst_alsasink_get_property):
890 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_property):
891 Improve device-name detection a bit, especially in the case where
892 the device is not actually open (#405020, #405024). Move common code
893 into gstalsa.c instead of duplicating it.
895 2007-02-07 Tim-Philipp Müller <tim at centricular dot net>
897 * gst/audioconvert/gstaudioconvert.c:
898 Fix up docs chunk so that gtk-doc doesn't complain, and fix typo.
900 2007-02-06 Julien MOUTTE <julien@moutte.net>
902 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
903 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_clear),
904 (gst_xvimagesink_interface_supported),
905 (gst_xvimagesink_probe_get_properties),
906 (gst_xvimagesink_probe_probe_property),
907 (gst_xvimagesink_probe_needs_probe),
908 (gst_xvimagesink_probe_get_values),
909 (gst_xvimagesink_property_probe_interface_init),
910 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
911 (gst_xvimagesink_init), (gst_xvimagesink_class_init),
912 (gst_xvimagesink_get_type):
913 * sys/xvimage/xvimagesink.h: Implement PropertyProbe Interface
914 for XVAdaptors so that one can choose the adaptor to use with
915 gstreamer-properties.
917 2007-02-06 Stefan Kost <ensonic@users.sf.net>
919 * gst/audioconvert/gstaudioconvert.c:
920 Also mention that a conversion from double to float is suboptimal still.
922 2007-02-06 Tim-Philipp Müller <tim at centricular dot net>
924 * gst-libs/gst/audio/gstaudiofilter.c:
925 (gst_audio_filter_class_init), (gst_audio_filter_change_state):
926 Clear our formats structure and free the caps contained in it when
929 2007-02-05 Andy Wingo <wingo@pobox.com>
931 * gst-libs/gst/audio/gstbaseaudiosink.c
932 (gst_base_audio_sink_callback): Update basesink->offset so that we
933 pull monotonically increasing offsets instead of, um, seeking back
934 to 0 each time. Fixes alsasrc ! alsasink!
936 2007-02-05 Tim-Philipp Müller <tim at centricular dot net>
938 * gst/videoscale/gstvideoscale.c:
939 A width and height of 1 makes us crash, so increase minimum size to
940 2x2 pixels until someone feels like fixing this (#404512).
942 2007-02-04 Tim-Philipp Müller <tim at centricular dot net>
944 * tests/check/pipelines/oggmux.c: (GST_START_TEST), (oggmux_suite):
945 Add small test to make sure request pads are cleaned up properly
946 even if oggmux never changes state out of NULL.
948 2007-02-04 Tim-Philipp Müller <tim at centricular dot net>
950 * tests/check/libs/utils.c: (GST_START_TEST):
951 Fix unit test. Turns out things work much better when you
952 NULL-terminate string arrays. Should make p5 build bot happy again.
954 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
956 * gst-libs/gst/audio/Makefile.am:
957 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
958 (gst_audio_filter_template_base_init),
959 (gst_audio_filter_template_class_init),
960 (gst_audio_filter_template_init),
961 (gst_audio_filter_template_set_property),
962 (gst_audio_filter_template_get_property),
963 (gst_audio_filter_template_setup),
964 (gst_audio_filter_template_filter),
965 (gst_audio_filter_template_filter_inplace), (plugin_init):
966 Oops, forgot to commit fixed-up example.
968 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
970 * docs/libs/gst-plugins-base-libs-sections.txt:
971 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
972 (gst_audio_filter_class_init), (gst_audio_filter_init),
973 (gst_audio_filter_set_caps),
974 (gst_audio_filter_class_add_pad_templates):
975 * gst-libs/gst/audio/gstaudiofilter.h:
976 Port GstAudioFilter to 0.10. This change technically breaks
977 API and ABI (and thus also every library developer's heart),
978 but seems justifiable on the grounds that the base class was
979 completely unusable before (ie. would crash immediately when
980 actually used). Fixes #403963 (and eventually also #403572).
981 Also document all of this a bit.
983 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
985 * gst-libs/gst/utils/install-plugins.c:
986 (gst_install_plugins_spawn_child):
987 * tests/check/libs/utils.c:
988 (test_base_utils_install_plugins_do_callout):
989 Lowering log level to see why things fail on the p5 build bot;
990 fix some typos in unit test messages.
992 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
994 * tests/check/libs/utils.c:
995 (test_base_utils_install_plugins_do_callout):
996 Don't hard-code temp directory for test helper; use GLib functions
997 to write out file and do error checking etc.
999 2007-02-02 Tim-Philipp Müller <tim at centricular dot net>
1001 * gst-libs/gst/utils/Makefile.am:
1002 * gst-libs/gst/utils/base-utils.h:
1003 * gst-libs/gst/utils/install-plugins.c:
1004 (gst_install_plugins_context_set_xid),
1005 (gst_install_plugins_context_new),
1006 (gst_install_plugins_context_free),
1007 (gst_install_plugins_get_helper),
1008 (gst_install_plugins_spawn_child),
1009 (gst_install_plugins_return_from_status),
1010 (gst_install_plugins_installer_exited),
1011 (gst_install_plugins_async), (gst_install_plugins_sync),
1012 (gst_install_plugins_return_get_name),
1013 (gst_install_plugins_installation_in_progress):
1014 * gst-libs/gst/utils/install-plugins.h:
1015 API: add API for applications to initiate installation of missing
1016 plugins, ie. gst_install_plugins_async() primarily.
1017 Based on libgimme-codec by Ryan Lortie.
1020 Add --with-install-plugins-helper configure option so distros can specify
1021 the path of the helper script or program to call when plugin installation
1022 is requested (distros: please do any argument munging in this helper
1023 script instead of patching GStreamer to pass arguments differently
1024 to another program directly).
1026 * docs/libs/gst-plugins-base-libs-docs.sgml:
1027 * docs/libs/gst-plugins-base-libs-sections.txt:
1028 Build and document new API.
1030 * tests/check/libs/utils.c: (result_cb),
1031 (test_base_utils_install_plugins_do_callout), (GST_START_TEST),
1032 (libgstbaseutils_suite):
1033 Some simple checks for the new API.
1035 2007-02-02 Tim-Philipp Müller <tim at centricular dot net>
1037 * tests/check/elements/audioconvert.c: (test_float_conversion):
1038 Add small test for 32bit float <=> 64bit float conversion (works
1039 only one way so far, 32=>64 produces structured noise).
1041 2007-02-02 Tim-Philipp Müller <tim at centricular dot net>
1043 * gst/audioconvert/gstaudioconvert.c:
1044 (set_structure_widths_32_and_64), (make_lossless_changes):
1045 We don't support floats with a width of 40, 48 or 56 bits.
1047 2007-02-02 Stefan Kost <ensonic@users.sf.net>
1049 * gst/audioconvert/audioconvert.c: (float), (double),
1050 (audio_convert_get_func_index):
1051 * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
1052 (make_lossless_changes):
1053 Support for 64-bit float audio in audioconvert (#339837)
1055 2007-02-01 Tim-Philipp Müller <tim at centricular dot net>
1057 Patch by: Holger Wansing <linux wansing-online de>
1061 Add German translation (#352069).
1063 2007-02-01 Sebastian Dröge <slomo@circular-chaos.org>
1065 reviewed by: Wim Taymans <wim@fluendo.com>
1067 * ext/ogg/gstoggmux.c: (gst_ogg_mux_ogg_pad_destroy_notify),
1068 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad):
1069 Use newly added GstCollectPads API to free the allocated resources in
1070 the GstOggPad structures (#402393).
1072 2007-01-31 Jan Schmidt <thaytan@mad.scientist.com>
1074 * gst/playback/gstplaybin.c: (gen_vis_element):
1075 Add audioresample+audioconvert in front of the visualisation
1076 element, so that elements like libvisual 0.4 that don't support all
1077 samplerates can work.
1081 2007-01-30 Tim-Philipp Müller <tim at centricular dot net>
1083 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property),
1084 (gst_play_base_bin_get_streaminfo_value_array):
1085 Take some locks and make a copy of the streaminfo value array we
1086 maintain while holding the lock, so that the application can
1087 retrieve the stream-info as a value array in a thread-safe way.
1089 2007-01-30 Wim Taymans <wim@fluendo.com>
1091 * gst/audioconvert/gstaudioconvert.c:
1092 Don't fail on 0 sized buffers. Fixes #396835.
1094 2007-01-29 David Schleef <ds@schleef.org>
1096 * gst/typefind/gsttypefindfunctions.c:
1097 Detect BBCD as video/x-dirac, so we can play raw dirac
1100 2007-01-29 Tim-Philipp Müller <tim at centricular dot net>
1102 * ext/theora/theoraenc.c: (theora_enc_chain):
1103 Check return value of theora_encode_header(), or we might try to
1104 allocate a random number of bytes. theora_encode_header() can fail
1105 if libtheora has been compiled with encoding support disabled.
1108 2007-01-29 Wim Taymans <wim@fluendo.com>
1110 * tests/check/gst/.cvsignore:
1111 Do as buildbot says.
1113 2007-01-29 Wim Taymans <wim@fluendo.com>
1115 * ext/libvisual/visual.c: (gst_visual_src_setcaps):
1116 Fix strides in libvisual. Gst uses X strides.
1117 Inspired by: <ed at catmur dot co dot uk> and
1118 <tim at centricular dot net>
1121 2007-01-27 Wim Taymans <wim@fluendo.com>
1123 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
1124 (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
1125 (gst_ogg_demux_get_prev_page), (gst_ogg_demux_do_seek),
1126 (gst_ogg_demux_perform_seek),
1127 (gst_ogg_demux_bisect_forward_serialno),
1128 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
1129 (gst_ogg_demux_find_chains), (gst_ogg_demux_handle_page),
1130 (gst_ogg_demux_chain), (gst_ogg_demux_combine_flows),
1131 (gst_ogg_demux_loop_reverse), (gst_ogg_demux_loop):
1132 * ext/ogg/gstoggdemux.h:
1133 Properly propagate streaming errors when we are scanning the file for
1134 chains so that we don't crash when shut down. Might fix some crashers
1135 when quickly switching oggs in RB such as #332503 and #378436.
1137 2007-01-26 Tim-Philipp Müller <tim at centricular dot net>
1139 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
1140 Map a gnome-vfs HOST_NOT_FOUND error into a GStreamer NOT_FOUND
1143 2007-01-25 Wim Taymans <wim@fluendo.com>
1145 * gst/playback/gstplaybasebin.c: (remove_source):
1146 Don't try to disconnect a signal from a finalized object.
1148 2007-01-25 Tim-Philipp Müller <tim at centricular dot net>
1150 * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose):
1151 Cast lock macro parameters to make sure we're actually accessing the
1152 lock member at the right class level. Free list itself in _dispose()
1153 as well and NULL it in case dispose gets called multiple times.
1155 2007-01-25 Edward Hervey <edward@fluendo.com>
1157 * gst/playback/gstdecodebin2.c:
1158 (gst_decode_bin_dispose),(gst_decode_bin_finalize):
1159 Free GstDecodeGroups no longer used.
1160 (gst_decode_group_expose):
1161 Don't unlock too many times !
1162 (deactivate_free_recursive):
1163 Free iterator once we're done with it.
1164 Fix for recursively deactivating elements (stop at ghostpads).
1166 2007-01-25 Tim-Philipp Müller <tim at centricular dot net>
1168 * gst/playback/gstplaybin.c: (handoff):
1169 Fix up caps on the frame buffer before we save it and potentially
1170 make it accessible to other threads via g_object_get; also use
1171 gst_buffer_replace() instead of gst_mini_object_replace().
1173 2007-01-25 Tim-Philipp Müller <tim at centricular dot net>
1175 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
1176 Make getting the current frame thread-safe.
1178 2007-01-25 Edward Hervey <edward@fluendo.com>
1180 * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize),
1181 (gst_decode_group_new), (gst_decode_group_free):
1182 Set queues to bigger sizes to cope with HD contents.
1183 Fix some mutex freeing and add comment about MT safe methods.
1185 2007-01-24 Tim-Philipp Müller <tim at centricular dot net>
1187 * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
1188 (gst_text_overlay_text_event):
1189 Don't unnecessarily ref (and then leak) upstream events if the text
1190 pad is not linked. Fixes #399948.
1192 * tests/check/gst-plugins-base.supp:
1193 Add suppression for pango on edgy/x86 for textoverlay test.
1195 2007-01-24 Wim Taymans <wim@fluendo.com>
1197 * gst-libs/gst/rtp/gstrtpbuffer.h:
1198 Add some more fixed payloads.
1200 2007-01-23 Tim-Philipp Müller <tim at centricular dot net>
1202 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
1203 Error out properly if we get an error from libogg while reading the
1204 BOS page(s). Fixes crash parsing 'fuzzed' ogg file (#399340).
1206 2007-01-23 Tim-Philipp Müller <tim at centricular dot net>
1208 * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize):
1211 * tests/check/elements/playbin.c:
1212 (test_sink_usage_video_only_stream),
1213 (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
1214 (test_suburi_error_wrongproto), (test_missing_urisource_handler),
1215 (test_missing_suburisource_handler),
1216 (test_missing_primary_decoder), (playbin_suite):
1217 Run all tests once with decodebin and once with decodebin2.
1218 One test does not pass yet with decodebin2.
1220 2007-01-23 Edward Hervey <edward@fluendo.com>
1222 * ext/ogg/gstoggmux.c: (all_pads_eos), (gst_ogg_mux_collected):
1223 Fix the cases where oggmux doesn't properly figure out that all
1224 sinkpads have gone EOS, and therefore doesn't push out the remaining
1225 buffers and the final EOS event.
1228 2007-01-23 Julien MOUTTE <julien@moutte.net>
1230 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1231 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1232 Don't lock on navigation event push, just on keysym to string.
1233 Fixes #397673 again.
1235 2007-01-22 Edward Hervey <edward@fluendo.com>
1237 * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
1238 (get_current_group), (group_demuxer_event_probe),
1239 (gst_decode_group_expose), (deactivate_free_recursive),
1240 (gst_decode_group_free):
1242 Don't forget to emit 'no-more-pads' once a group is exposed.
1243 Cleanup elements from a DecodeGroup once we remove it.
1244 Protect call to gst_decode_group_expose() with the decodebin lock.
1246 2007-01-22 Julien MOUTTE <julien@moutte.net>
1248 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1249 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1250 Looking at Xorg code i can't figure out if that XKeysymToString
1251 function is thread sensible or not. Lock it just in case as
1252 recommended by Radek Doulik <rodo at ximian dot com>.
1254 2007-01-22 Julien MOUTTE <julien@moutte.net>
1256 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1257 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1258 Lock that X Call as well. Fixes #397673.
1260 2007-01-22 Tim-Philipp Müller <tim at centricular dot net>
1262 * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
1263 Don't go into an endless loop if the file starts with 00 00 01 2X,
1264 like quicktime redirect files might. Fixes #396042.
1266 * tests/check/Makefile.am:
1267 * tests/check/gst/.cvsignore:
1268 * tests/check/gst/typefindfunctions.c: (GST_START_TEST),
1269 (typefindfunctions_suite):
1270 Add unit test for the above.
1272 2007-01-22 Tim-Philipp Müller <tim at centricular dot net>
1274 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1275 On second thought, use "depth" field rather than "bpp" field.
1277 2007-01-22 Tim-Philipp Müller <tim at centricular dot net>
1279 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1280 Camtasia caps apparently need a bpp field (#398875).
1282 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
1284 * gst/playback/gstplaybasebin.c: (setup_subtitle),
1285 (gen_source_element), (gst_play_base_bin_change_state):
1286 Attempt at a better error message in case we don't have the required
1287 URI handler installed; post missing-plugin message also when we're
1288 missing an URI handler for the subtitle URI; clean up properly also
1289 when an error occurs and we never made it to PAUSED state.
1291 * tests/check/elements/playbin.c: (GST_START_TEST),
1293 Check that we're also getting a missing-plugin messsage for a
1294 missing subtitle URI handler (and clean up properly).
1296 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
1298 * gst/playback/gstplaybasebin.c: (analyse_source), (setup_source):
1299 Plug a few reference leaks.
1301 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
1303 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
1304 Lower probability a bit if the marker isn't right at the start,
1305 to decrease the chance of false positives.
1307 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
1309 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
1310 Small mpeg2 system stream typefinding improvement: make typefinder
1311 probe a bit into the stream instead of just looking for a marker
1312 at the beginning. Fixes #397810.
1314 2007-01-18 Tim-Philipp Müller <tim at centricular dot net>
1316 * gst/audioconvert/gstchannelmix.c:
1317 Remove compatibility cruft for prehistoric GLib versions.
1319 2007-01-17 Tim-Philipp Müller <tim at centricular dot net>
1321 * gst/playback/Makefile.am:
1322 * gst/playback/gstdecodebin.c: (close_pad_link):
1323 * gst/playback/gstdecodebin2.c: (analyze_new_pad):
1324 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
1325 (gst_play_base_bin_handle_message_func), (unknown_type):
1326 Let decodebin be the element to post missing-plugin messages for
1327 missing decoders (rather than playbin); make playbin implement
1328 GstBin::handle_message so we can suppress missing-plugin messages
1329 for types we're not handling on purpose (don't want to bring up an
1330 installer in those cases).
1332 2007-01-16 Tim-Philipp Müller <tim at centricular dot net>
1334 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1335 * gst-libs/gst/tag/gstvorbistag.c:
1336 (gst_tag_list_to_vorbiscomment_buffer):
1337 * gst/typefind/gsttypefindfunctions.c: (vorbis_type_find):
1338 Fix potentially unaligned access (#397207).
1340 2007-01-16 Stefan Kost <ensonic@users.sf.net>
1342 * tests/examples/seek/seek.c: (set_scale), (update_scale),
1343 (do_seek), (stop_seek), (pause_cb), (stop_cb), (loop_toggle_cb),
1344 (rate_spinbutton_changed_cb), (msg_eos), (msg_segment_done),
1346 Allow to toggle looping while it plays. Fix callback prototype. Clean
1347 up code a bit more. Add copyright header.
1349 2007-01-16 Stefan Kost <ensonic@users.sf.net>
1351 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
1352 Red and blue mask was swapped (spotted by Dan Williams).
1354 2007-01-15 Stefan Kost <ensonic@users.sf.net>
1356 * gst-libs/gst/tag/gstid3tag.c:
1357 * gst-libs/gst/tag/gstvorbistag.c:
1358 Use new beats-per-minute tag from core.
1360 2007-01-15 Tim-Philipp Müller <tim at centricular dot net>
1363 Add new files with translatable strings, so they actually make it
1364 into the template file one day.
1366 2007-01-12 Andy Wingo <wingo@pobox.com>
1368 * gst-libs/gst/audio/gstbaseaudiosink.c
1369 (gst_base_audio_sink_fixate): Implement, stolen from baseaudiosrc.
1370 (gst_base_audio_sink_activate_pull): Remove the handwavey nego
1371 stuff, as the base class handles this now. Actually tell the ring
1373 (gst_base_audio_sink_callback): Cast the ring buffer correctly.
1374 How did this work before? Maybe I'm not as awesome a programmer as
1377 * gst-libs/gst/audio/gstbaseaudiosrc.c
1378 (gst_base_audio_src_fixate): Rework as a basesrc vmethod instead
1381 2007-01-12 Tim-Philipp Müller <tim at centricular dot net>
1383 * gst-libs/gst/utils/missing-plugins.c: (copy_and_clean_caps):
1384 Remove more fields so that the application can better blacklist
1385 formats that have been tried before.
1387 2007-01-12 Tim-Philipp Müller <tim at centricular dot net>
1389 * gst-libs/gst/audio/mixerutils.h:
1390 Add G_BEGIN_DECLS and G_END_DECLS guards so these helpers can be
1391 used when compiling with c++ compilers as well.
1393 2007-01-12 Tim-Philipp Müller <tim at centricular dot net>
1395 * gst/typefind/gsttypefindfunctions.c:
1398 2007-01-11 Tim-Philipp Müller <tim at centricular dot net>
1400 * gst/playback/gstplaybin.c: (post_missing_element_message),
1401 (gen_video_element), (gen_text_element), (gen_audio_element),
1403 Post missing-plugin messages also when we error out because
1404 converters, textoverlay or auto*sinks are missing (#161922).
1406 2007-01-10 Wim Taymans <wim@fluendo.com>
1408 * gst/playback/gstdecodebin.c: (dynamic_add), (close_pad_link),
1409 (is_demuxer_element), (new_caps):
1410 * gst/playback/gstplaybasebin.c: (source_new_pad):
1411 Fix the case where we try to ref a NULL element when we delay a link
1412 because of unfixed caps.
1413 Set the state of autoplugged decodebins to PAUSED.
1414 RTSP now works in playbin, we can remove it from the blacklist.
1416 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
1418 * gst/playback/Makefile.am:
1419 * gst/playback/gstplaybasebin.c: (string_arr_has_str),
1420 (unknown_type), (setup_subtitle), (gen_source_element):
1421 * gst/playback/gstplaybin.c: (plugin_init):
1422 Post missing-plugin messages on the bus for missing sources and
1423 missing decoders/demuxers/depayloaders; fix error code used when
1424 we're missing an URI handler source; for media types that we are not
1425 handling on purpose at the moment, don't print "don't know how to
1426 handle xyz" messages to the terminal or post missing-plugin
1427 messages on the bus.
1429 * tests/check/elements/playbin.c: (create_playbin),
1430 (GST_START_TEST), (gst_codec_src_uri_get_type),
1431 (gst_codec_src_uri_get_protocols), (gst_codec_src_uri_get_uri),
1432 (gst_codec_src_uri_set_uri), (gst_codec_src_uri_handler_init),
1433 (gst_codec_src_init_type), (gst_codec_src_base_init),
1434 (gst_codec_src_create), (gst_codec_src_class_init),
1435 (gst_codec_src_init), (plugin_init), (playbin_suite):
1436 Add some tests for the missing-plugin stuff.
1438 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
1441 * gst-libs/gst/Makefile.am:
1442 * gst-libs/gst/utils/Makefile.am:
1443 * gst-libs/gst/utils/base-utils.c: (gst_base_utils_init):
1444 * gst-libs/gst/utils/base-utils.h:
1445 * gst-libs/gst/utils/descriptions.c: (format_info_get_desc),
1446 (find_format_info), (caps_are_rtp_caps),
1447 (gst_base_utils_get_source_description),
1448 (gst_base_utils_get_sink_description),
1449 (gst_base_utils_get_decoder_description),
1450 (gst_base_utils_get_encoder_description),
1451 (gst_base_utils_get_element_description),
1452 (gst_base_utils_add_codec_description_to_tag_list),
1453 (gst_base_utils_get_codec_description), (gst_base_utils_list_all):
1454 * gst-libs/gst/utils/descriptions.h:
1455 * gst-libs/gst/utils/missing-plugins.c:
1456 (missing_structure_get_type), (copy_and_clean_caps),
1457 (gst_missing_uri_source_message_new),
1458 (gst_missing_uri_sink_message_new),
1459 (gst_missing_element_message_new),
1460 (gst_missing_decoder_message_new),
1461 (gst_missing_encoder_message_new),
1462 (missing_structure_get_string_detail),
1463 (missing_structure_get_caps_detail),
1464 (gst_missing_plugin_message_get_installer_detail),
1465 (gst_missing_plugin_message_get_description),
1466 (gst_is_missing_plugin_message):
1467 * gst-libs/gst/utils/missing-plugins.h:
1468 API: add new libgstbaseutils library with functions
1469 - to create and parse missing-plugins messages
1470 - that provide (translated) descriptions for caps/decoders/sources/etc.
1473 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
1474 * pkgconfig/gstreamer-plugins-base.pc.in:
1477 * docs/libs/gst-plugins-base-libs-docs.sgml:
1478 * docs/libs/gst-plugins-base-libs-sections.txt:
1479 Generate docs for new lib and API.
1481 * tests/check/Makefile.am:
1482 * tests/check/libs/.cvsignore:
1483 * tests/check/libs/utils.c: (missing_msg_check_getters),
1484 (GST_START_TEST), (libgstbaseutils_suite):
1485 Add some basic unit tests.
1487 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
1489 * ext/ogg/Makefile.am:
1490 Dist gstoggdemux.h to fix 'make distcheck'.
1492 * sys/v4l/Makefile.am:
1493 Fix 'make distcheck' even more.
1495 2007-01-09 Wim Taymans <wim@fluendo.com>
1497 * docs/plugins/Makefile.am:
1498 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1499 * docs/plugins/gst-plugins-base-plugins-sections.txt:
1500 * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
1501 (gst_ogg_pad_query_types), (gst_ogg_pad_submit_page),
1502 (gst_ogg_chain_reset), (gst_ogg_chain_new_stream),
1503 (gst_ogg_demux_perform_seek):
1504 * ext/ogg/gstoggdemux.h:
1506 Add some more comments.
1509 2007-01-09 Wim Taymans <wim@fluendo.com>
1511 * ext/theora/theoradec.c:
1512 * ext/vorbis/vorbisdec.c:
1513 * gst-libs/gst/audio/gstringbuffer.c:
1514 (gst_ring_buffer_commit_full):
1515 * gst-libs/gst/audio/gstringbuffer.h:
1516 * gst-libs/gst/rtp/gstrtpbuffer.c:
1517 * gst-libs/gst/tag/gstvorbistag.c:
1518 Small documentation updates/fixes
1520 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
1523 Require core CVS HEAD for Andy's basesrc/sink API additions.
1525 2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
1527 Patch by: Günter Thelen <daedalus dot inc at gmx net>
1529 * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
1531 Add typefinder for flac-in-ogg in conformance with the ogg-mapping
1532 on flac.sf.net (there appear to be other versions of the first
1533 ogg page in the wild) (#391365).
1535 2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
1538 Check if localtime_r() is available.
1540 * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
1541 If localtime_r() is not available, fall back to localtime(). Should
1542 fix build on MingW (#393310).
1544 2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
1546 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
1547 * gst/subparse/gstsubparse.h:
1548 Remove spurious 1000 subtrahend when calculating the timestamp from
1549 the frame number and the frame rate . Also, use the frames/second
1550 value specified in the first line of the file, if one is specified
1551 there. Should fix #357503.
1553 * tests/check/elements/subparse.c: (do_test),
1554 (test_tmplayer_do_test), (test_microdvd_do_test), (GST_START_TEST),
1556 Add some basic unit tests for the microdvd subtitle format.
1558 2007-01-07 Julien MOUTTE <julien@moutte.net>
1560 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1561 (gst_xvimage_buffer_finalize), (gst_xvimagesink_xvimage_new),
1562 (gst_xvimagesink_xvimage_put), (gst_lookup_xv_port_from_adaptor),
1563 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps),
1564 (gst_xvimagesink_set_xwindow_id),
1565 (gst_xvimagesink_set_event_handling),
1566 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
1567 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
1568 Patch by : Young-Ho Cha <ganadist at chollian dot net>
1570 Add an adaptor property to select a specific XV adaptor.
1571 * sys/xvimage/xvimagesink.h:
1573 2007-01-07 Julien MOUTTE <julien@moutte.net>
1575 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
1576 (gst_ximagesink_handle_xerror), (gst_ximagesink_ximage_new),
1577 (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
1578 (gst_ximagesink_handle_xevents), (gst_ximagesink_setcaps),
1579 (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
1580 (gst_ximagesink_expose), (gst_ximagesink_set_event_handling):
1581 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1582 (gst_xvimage_buffer_finalize), (gst_xvimagesink_handle_xerror),
1583 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
1584 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_setcaps),
1585 (gst_xvimagesink_change_state), (gst_xvimagesink_set_xwindow_id),
1586 (gst_xvimagesink_expose), (gst_xvimagesink_set_event_handling):
1587 Use flow_lock much more to protect every access to xwindow.
1588 Try to catch erros while creating images in case some drivers are
1589 just generating an XError when the requested image is too big.
1590 Should fix : #354698, #384008, #384060.
1591 * tests/icles/stress-xoverlay.c: (cycle_window), (create_window):
1592 Implement some stress testing of setting window xid.
1594 2007-01-07 Sébastien Moutte <sebastien@moutte.net>
1596 * win32/common/libgsaudio.def:
1597 Add new exported function.
1598 * win32/common/libgstogg.dsp:
1599 Add gstoggaviparse.c to the build.
1600 * win32/common/libgstvideoscale.dsp:
1601 Add vs_4tap.c to the build.
1602 * win32/common/libgstvorbis.dsp:
1603 Add vorbistag.c to the build.
1605 2007-01-06 Andy Wingo <wingo@pobox.com>
1607 * gst-libs/gst/audio/gstbaseaudiosink.c
1608 (gst_base_audio_sink_class_init)
1609 (gst_base_audio_sink_init):
1610 (gst_base_audio_sink_activate_pull): Add an activate_pull function
1611 to baseaudiosink, and tell basesink that we can work in pull mode.
1612 This way the ring buffer thread drives the pipeline directly, if
1613 pull mode is possible. There is some lingering nastiness regarding
1615 (gst_base_audio_sink_callback): Implement the callback to pull
1616 data. This interface is a bit light, though -- it should get a
1617 GstFlowReturn return value at least.
1619 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1621 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_stream_out):
1622 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
1623 * gst/playback/gstdecodebin2.c:
1624 (gst_decode_group_check_if_blocked):
1625 Printf format and missing argument fixes.
1627 2007-01-05 Jan Schmidt <thaytan@mad.scientist.com>
1629 * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header),
1630 (gst_ogm_parse_change_state):
1631 Activate pads before adding them to the element.
1633 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1635 * tests/examples/seek/scrubby.c: (main):
1636 * tests/examples/seek/seek.c: (main):
1637 Call g_thread_init() first thing in main() (see #391278).
1639 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1641 * tests/check/Makefile.am:
1642 * tests/check/libs/.cvsignore:
1643 * tests/check/libs/netbuffer.c: (GST_START_TEST),
1645 Add test for GstNetBuffer + gst_buffer_copy(). Disabled
1646 for the time being, since it's broken, see #393099.
1648 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1650 * tests/check/Makefile.am:
1651 Update to use GST_PLUGINS_BASE_CFLAGS as well.
1653 2007-01-04 Thomas Vander Stichele <thomas at apestaart dot org>
1656 split out GST_CFLAGS into GST_PLUGINS_BASE_CFLAGS and GST_CFLAGS
1657 so that GST_BASE_CFLAGS can go inbetween them, making sure
1658 we use uninstalled gst-libs headers
1659 * docs/libs/Makefile.am:
1660 * ext/alsa/Makefile.am:
1661 * ext/cdparanoia/Makefile.am:
1662 * ext/gnomevfs/Makefile.am:
1663 * ext/libvisual/Makefile.am:
1664 * ext/ogg/Makefile.am:
1665 * ext/theora/Makefile.am:
1666 * ext/vorbis/Makefile.am:
1667 * gst-libs/gst/audio/Makefile.am:
1668 * gst-libs/gst/cdda/Makefile.am:
1669 * gst-libs/gst/interfaces/Makefile.am:
1670 * gst-libs/gst/riff/Makefile.am:
1671 * gst-libs/gst/rtp/Makefile.am:
1672 * gst-libs/gst/tag/Makefile.am:
1673 * gst/adder/Makefile.am:
1674 * gst/audioconvert/Makefile.am:
1675 * gst/audiorate/Makefile.am:
1676 * gst/audioresample/Makefile.am:
1677 * gst/playback/Makefile.am:
1678 * gst/tcp/Makefile.am:
1679 * gst/videoscale/Makefile.am:
1680 * gst/volume/Makefile.am:
1681 * sys/ximage/Makefile.am:
1682 * sys/xvimage/Makefile.am:
1683 * tests/icles/Makefile.am:
1686 2007-01-04 Julien MOUTTE <julien@moutte.net>
1688 * gst-libs/gst/interfaces/xoverlay.c:
1689 (gst_x_overlay_handle_events):
1690 * gst-libs/gst/interfaces/xoverlay.h:
1691 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
1692 (gst_ximagesink_set_xwindow_id),
1693 (gst_ximagesink_set_event_handling),
1694 (gst_ximagesink_xoverlay_init), (gst_ximagesink_set_property),
1695 (gst_ximagesink_get_property), (gst_ximagesink_init),
1696 (gst_ximagesink_class_init):
1697 * sys/ximage/ximagesink.h:
1698 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new),
1699 (gst_xvimagesink_set_xwindow_id),
1700 (gst_xvimagesink_set_event_handling),
1701 (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_set_property),
1702 (gst_xvimagesink_get_property), (gst_xvimagesink_init),
1703 (gst_xvimagesink_class_init):
1704 * sys/xvimage/xvimagesink.h:
1705 * tests/icles/stress-xoverlay.c: (toggle_events), (create_window):
1706 Add a method to the XOverlay interface to allow disabling of
1707 event handling in x[v]imagesink elements. This will let X events
1708 propagate to parent windows which can be usefull in some cases.
1709 Be carefull that the application is then responsible of pushing
1710 navigation events and expose events to the video sink.
1713 2007-01-03 Tim-Philipp Müller <tim at centricular dot net>
1715 * gst-libs/gst/tag/gstvorbistag.c:
1716 * tests/check/libs/tag.c: (GST_START_TEST):
1717 Add vorbistag <=> GStreamer tag mapping for GST_TAG_LOCATION
1720 2007-01-01 Tim-Philipp Müller <tim at centricular dot net>
1724 * docs/design/Makefile.am:
1727 2006-12-27 Julien MOUTTE <julien@moutte.net>
1729 * docs/libs/gst-plugins-base-libs-sections.txt: Fix a documentation
1730 typo. Fixes: #390063.
1732 2006-12-27 Julien MOUTTE <julien@moutte.net>
1734 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
1735 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Plug a
1737 * win32/common/config.h: Updated.
1739 2006-12-22 Stefan Kost <ensonic@users.sf.net>
1741 * tests/check/elements/gdpdepay.c: (cleanup_gdpdepay),
1742 (setup_gdpdepay_streamheader):
1743 * tests/check/elements/gdppay.c: (cleanup_gdppay),
1744 (setup_gdppay_streamheader):
1745 Fix the dp tests, but activating the pads for the streamheader tests
1746 too and cleaning up conditionaly
1748 2006-12-22 Jan Schmidt <thaytan@mad.scientist.com>
1750 * gst/ffmpegcolorspace/avcodec.h:
1751 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1752 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
1753 (gst_ffmpegcsp_avpicture_fill):
1754 * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
1755 (img_get_alpha_info):
1756 Add 2 new caps arrangements, for 24-bit RGB and BGR in 32-bits, but at the
1757 other end of the word. Fixes: #387073.
1759 Add some inconsequential branch hints in a couple of places.
1761 2006-12-21 Tim-Philipp Müller <tim at centricular dot net>
1763 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1764 (gst_ffmpeg_caps_to_smpfmt):
1765 The "signed" field in raw audio caps is of boolean type, trying to
1766 extract the value with _get_int() will fail (fix to keep in sync with
1767 the copy in gst-ffmpeg)
1769 2006-12-21 Stefan Kost <ensonic@users.sf.net>
1771 * tests/check/elements/audioresample.c: (cleanup_audioresample):
1772 * tests/check/elements/audiotestsrc.c: (cleanup_audiotestsrc):
1773 * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
1775 * tests/check/elements/gdppay.c: (setup_gdppay), (cleanup_gdppay):
1776 * tests/check/elements/subparse.c: (teardown_subparse):
1777 * tests/check/elements/textoverlay.c: (cleanup_textoverlay):
1778 * tests/check/elements/videorate.c: (cleanup_videorate):
1779 * tests/check/elements/videotestsrc.c: (cleanup_videotestsrc):
1780 * tests/check/elements/volume.c: (cleanup_volume):
1781 * tests/check/elements/vorbisdec.c: (setup_vorbisdec),
1782 (cleanup_vorbisdec):
1783 * tests/check/elements/vorbistag.c: (setup_vorbistag),
1784 (cleanup_vorbistag):
1785 consistent pad (de)activation
1787 2006-12-20 Tim-Philipp Müller <tim at centricular dot net>
1789 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1790 Forgot to register the extensions.
1792 2006-12-20 Tim-Philipp Müller <tim at centricular dot net>
1794 * gst/typefind/gsttypefindfunctions.c: (vivo_type_find),
1796 Add typefinder for VIVO files (my christmas present to the 90s).
1798 2006-12-16 Tim-Philipp Müller <tim at centricular dot net>
1800 * gst/playback/gstdecodebin.c: (type_found):
1801 Special-case the text/plain media type: we only want to recognise it
1802 as a 'raw' decoded media type if it comes from a demuxer or subtitle
1803 parser, but not if the entire stream is of text/plain type. If the
1804 entire stream is text/plain, we should just error out.
1806 This fixes playback of audio files with lyrics in totem. Totem can't
1807 distinguish between text files and subtitle files and passes any
1808 .txt file with the same basename as the main file to playbin as
1809 suburi, and playbin will then throw a 'subtitle found, but no video
1810 stream' error, which isn't entirely helpful. See #380342.
1812 Also, with this change we'll show a slightly more correct error
1813 message in case totem passes a playlist file to us (although a
1814 custom error message wording instead of the default text would
1815 probably not be a bad idea either).
1817 Same problem also needs to be fixed for playbin+decodebin2.
1819 * tests/check/Makefile.am:
1820 * tests/check/elements/decodebin.c: (src_handoff_cb),
1821 (decodebin_new_decoded_pad_cb), (GST_START_TEST),
1823 Add simple unit test for decodebin for the above.
1825 2006-12-16 Tim-Philipp Müller <tim at centricular dot net>
1827 * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
1828 * gst/playback/gstdecodebin2.c: (gst_decode_bin_change_state):
1829 Refuse to change state to READY when we failed to create any of the
1830 required elements in our instance init function.
1832 2006-12-15 Tim-Philipp Müller <tim at centricular dot net>
1834 * docs/libs/gst-plugins-base-libs-sections.txt:
1835 Small docs fixes/updates.
1837 * gst-libs/gst/video/gstvideosink.h:
1838 Remove nonfunctional GST_VIDEO_SINK_CLOCK macro which is a leftover
1839 from the 0.9 days (GST_BASE_SINK_CLOCK, which it points to, was
1840 removed from the base sink API between 0.9.6 and 0.9.7).
1841 API: add GST_VIDEO_SINK_CAST and use it for the height/width
1842 accessor macros, so we don't do a runtime GObject type check every
1845 2006-12-15 Thomas Vander Stichele <thomas at apestaart dot org>
1848 * gst-plugins-base.doap:
1849 * gst-plugins-base.spec.in:
1852 2006-12-09 Tim-Philipp Müller <tim at centricular dot net>
1854 Patch by: Jens Granseuer <jensgr at gmx net>
1856 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
1857 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
1858 (gst_base_rtp_audio_payload_handle_frame_based_buffer),
1859 (gst_base_rtp_audio_payload_handle_sample_based_buffer):
1860 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
1861 Declare variables at the beginning of a block. Fixes #383195.
1863 2006-12-07 Jan Schmidt <thaytan@mad.scientist.com>
1866 Bump version nano - back to CVS.
1869 === release 0.10.11 ===
1871 2006-12-06 Jan Schmidt <thaytan@mad.scientist.com>
1874 releasing 0.10.11, "Dumb things"
1876 2006-12-05 Jan Schmidt <thaytan@mad.scientist.com>
1878 * gst/playback/gstdecodebin.c: (find_dynamic), (dynamic_add),
1879 (close_pad_link), (elem_is_dynamic), (unlinked), (close_link):
1880 Handle the case where an element has multiple pads with
1881 unfixed caps as well as still possibly producing more dynamic
1882 pads by storing each case as a distinct entry in the dynamic list.
1885 2006-12-04 Wim Taymans <wim@fluendo.com>
1887 * gst/playback/gstdecodebin.c: (close_pad_link):
1888 Fix #382223, add more dynamic caps handling.
1890 2006-12-04 Wim Taymans <wim@fluendo.com>
1892 reviewed by: <delete if not using a buddy>
1894 * gst-libs/gst/audio/gstringbuffer.h:
1895 * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_init),
1896 (gst_netaddress_set_ip4_interface),
1897 (gst_netaddress_set_ip6_interface), (gst_netaddress_set_loopback),
1898 (gst_netaddress_set_ttl), (gst_netaddress_get_ip4_interface),
1899 (gst_netaddress_get_ip6_interface), (gst_netaddress_get_loopback),
1900 (gst_netaddress_get_ttl):
1901 * gst-libs/gst/netbuffer/gstnetbuffer.h:
1902 * gst/playback/gstdecodebin.c: (close_pad_link):
1903 * tests/examples/seek/seek.c: (end_scrub), (end_seek), (do_seek),
1904 (seek_cb), (stop_seek), (rate_spinbutton_changed_cb):
1905 * win32/common/config.h:
1907 2006-12-01 Michael Smith <msmith@fluendo.com>
1909 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
1910 Delete bad debug code.
1913 2006-12-01 Jan Schmidt <thaytan@mad.scientist.com>
1915 * gst/videoscale/vs_4tap.c:
1917 * win32/common/config.h:
1918 * win32/vs8/libgstvideoscale.vcproj:
1919 Fix compilation on win32 under VS8
1920 Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
1921 Partially fixes #381175
1923 2006-11-30 Michael Smith <msmith@fluendo.com>
1925 * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
1927 It would be very bad if, after a discont buffer, we thought every
1928 single following buffer was also discont. So, add to the test to
1929 ensure that this isn't the case.
1931 * ext/theora/theoraenc.c: (theora_enc_is_discontinuous):
1932 ... it was the case. So fix it.
1934 2006-11-28 Wim Taymans <wim@fluendo.com>
1936 * gst/playback/gstplaybasebin.c: (check_queue_event):
1939 * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
1940 Fix width and height range from 16 - 4096 to 1 - MAXINT, just like the
1941 padtemplate caps. Refixes #357577.
1943 2006-11-28 Wim Taymans <wim@fluendo.com>
1945 * gst/playback/gstplaybasebin.c: (check_queue_event),
1946 (queue_threshold_reached), (queue_out_of_data),
1947 (gen_preroll_element):
1948 Add event probe to see when EOS is in a queue and we can disable the
1949 underrun signals. Fixes #357577.
1951 2006-11-28 Edward Hervey <edward@fluendo.com>
1953 * gst/playback/Makefile.am:
1954 * gst/playback/gstdecodebin2.c: (gst_decode_bin_get_type),
1955 (_gst_boolean_accumulator), (gst_decode_bin_class_init),
1956 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
1957 (gst_decode_bin_init), (gst_decode_bin_dispose),
1958 (gst_decode_bin_finalize), (gst_decode_bin_set_property),
1959 (gst_decode_bin_get_property), (gst_decode_bin_set_caps),
1960 (gst_decode_bin_get_caps), (gst_decode_bin_autoplug_continue),
1961 (gst_decode_bin_autoplug_sort), (analyze_new_pad), (connect_pad),
1962 (connect_element), (expose_pad), (type_found),
1963 (pad_added_group_cb), (pad_removed_group_cb),
1964 (no_more_pads_group_cb), (pad_added_cb), (pad_removed_cb),
1965 (no_more_pads_cb), (find_compatibles), (is_demuxer_element),
1966 (are_raw_caps), (multi_queue_overrun_cb),
1967 (multi_queue_underrun_cb), (gst_decode_group_new),
1968 (get_current_group), (group_demuxer_event_probe),
1969 (gst_decode_group_control_demuxer_pad),
1970 (gst_decode_group_control_source_pad),
1971 (gst_decode_group_check_if_blocked),
1972 (gst_decode_group_check_if_drained), (gst_decode_group_expose),
1973 (gst_decode_group_hide), (gst_decode_group_free),
1974 (gst_decode_group_set_complete), (source_pad_blocked_cb),
1975 (source_pad_event_probe), (gst_decode_pad_new), (add_fakesink),
1976 (remove_fakesink), (find_sink_pad), (gst_decode_bin_change_state),
1978 New decodebin2 element.
1980 * gst/playback/gstplay-marshal.list:
1981 Added marshallers for new signals in decodebin2
1982 * gst/playback/gstplaybasebin.c: (setup_subtitle), (make_decoder):
1983 Use decodebin2 if *and only if* the USE_DECODEBIN2 environment variable
1986 2006-11-28 Wim Taymans <wim@fluendo.com>
1988 * gst/playback/gstplaybasebin.c: (setup_source),
1989 (gst_play_base_bin_change_state):
1990 Disable rtsp:// uris for the release, it's not good enough yet.
1993 2006-11-26 Wim Taymans <wim@fluendo.com>
1995 * ext/theora/theoradec.c: (gst_theora_dec_reset),
1996 (theora_dec_push_forward), (theora_dec_push_reverse),
1997 (theora_handle_data_packet), (theora_dec_decode_buffer),
1998 (theora_dec_flush_decode), (theora_dec_chain_reverse),
1999 (theora_dec_chain_forward), (theora_dec_chain):
2000 Implement reverse playback.
2002 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
2003 (vorbis_dec_decode_buffer), (vorbis_dec_flush_decode),
2004 (vorbis_dec_chain_forward):
2005 Clear buffers used for reverse playback in _reset.
2006 No need to set the eos flag, we clip samples using the segment.
2008 2006-11-24 Wim Taymans <wim@fluendo.com>
2010 * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
2011 (gst_ogg_pad_init), (gst_ogg_pad_dispose), (gst_ogg_pad_reset),
2012 (gst_ogg_pad_stream_out), (gst_ogg_pad_submit_page),
2013 (gst_ogg_chain_reset), (gst_ogg_demux_perform_seek):
2015 Handle continued pages in reverse mode.
2017 2006-11-24 Wim Taymans <wim@fluendo.com>
2019 * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
2020 (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
2021 (vorbis_dec_flush_decode):
2023 Don't try to add invalid timestamps.
2024 Clipping will unref the buffer.
2026 2006-11-24 Stefan Kost <ensonic@users.sf.net>
2028 * gst/adder/gstadder.h:
2029 * gst/audiotestsrc/gstaudiotestsrc.h:
2030 remove obsolete _factory_init protos
2032 2006-11-24 Stefan Kost <ensonic@users.sf.net>
2034 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
2035 Fix spacing in debug message.
2037 2006-11-23 Wim Taymans <wim@fluendo.com>
2039 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
2040 (gst_ogg_demux_chain):
2041 Don't just ignore return values from _pad_push().
2042 Small debug improvements.
2044 2006-11-23 Michael Smith <msmith@fluendo.com>
2046 * ext/ogg/gstoggmux.c: (gst_ogg_mux_process_best_pad):
2047 If our incoming buffer is marked as DISCONT, then increment the page
2048 number (so that the discontinuity is marked in the final ogg
2049 bitstream) and flush the previous page.
2051 2006-11-22 Michael Smith <msmith@fluendo.com>
2053 * ext/theora/gsttheoraenc.h:
2054 * ext/theora/theoraenc.c: (gst_theora_enc_init),
2055 (theora_enc_reset), (theora_enc_clear), (theora_enc_sink_setcaps),
2056 (theora_buffer_from_packet), (theora_enc_is_discontinuous),
2057 (theora_enc_chain), (theora_enc_change_state):
2058 Mark discontinuities of > 3/4 of a frame, reinit encoder.
2060 * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
2061 (GST_START_TEST), (theoraenc_suite):
2062 Enable discontinuity test, fix it.
2064 2006-11-21 Tim-Philipp Müller <tim at centricular dot net>
2066 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
2067 (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
2068 (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
2069 (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
2070 (gst_text_overlay_change_state):
2071 * ext/pango/gsttextoverlay.h:
2072 Some textoverlay fixes: for one, in the video chain function,
2073 actually wait for a text buffer to come in if there is none at the
2074 moment and there should be one; also, deal more gracefully with
2075 incoming buffers that do not have a timestamp or duration; discard
2076 text buffer when not needed any longer. Fixes #341681.
2078 * tests/check/Makefile.am:
2079 * tests/check/elements/.cvsignore:
2080 * tests/check/elements/textoverlay.c:
2081 (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2),
2082 (setup_textoverlay), (buffer_is_all_black), (create_black_buffer),
2083 (create_text_buffer), (cleanup_textoverlay), (GST_START_TEST),
2084 (test_video_waits_for_text_send_text_newsegment_thread),
2085 (test_video_waits_for_text_shutdown_element),
2086 (test_render_continuity_push_video_buffers_thread),
2087 (textoverlay_suite):
2088 Add some unit tests for textoverlay.
2090 2006-11-21 Tim-Philipp Müller <tim at centricular dot net>
2092 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
2093 Avoid integer underflow when the found probability for mp3 is
2094 smaller than the 'penalty' we subtract if there's not a clean
2095 mp3 header sync at offset 0.
2097 2006-11-21 Stefan Kost <ensonic@users.sf.net>
2099 * docs/libs/gst-plugins-base-libs-sections.txt:
2100 Add some new symbols to the docs
2102 2006-11-20 Tim-Philipp Müller <tim at centricular dot net>
2104 * tests/check/Makefile.am:
2105 * tests/check/elements/ffmpegcolorspace.c:
2106 (ffmpegcolorspace_suite):
2107 Enable ffmpegcolorspace test now that the RGBA32 issue is fixed
2108 (for now not for valgrinding though, since it takes too long).
2110 2006-11-20 Wim Taymans <wim@fluendo.com>
2112 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
2113 (gst_ffmpeg_pixfmt_to_caps):
2114 Fix RGBA32 caps. Fixes #357038.
2116 2006-11-20 Tim-Philipp Müller <tim at centricular dot net>
2118 * gst-libs/gst/interfaces/mixertrack.h:
2119 Add FIXME so we can add some padding here in 0.11
2121 2006-11-19 Tim-Philipp Müller <tim at centricular dot net>
2123 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
2124 Fix GstBaseRTPAudioPayload structure so the whole GObject
2125 inheritance business actually works (parent class instance structure
2126 must always come first in the derived class instance structure).
2128 2006-11-16 Tim-Philipp Müller <tim at centricular dot net>
2130 * gst/videotestsrc/Makefile.am:
2131 * tests/check/Makefile.am:
2132 Make sure our checks and the videotestsrc plugin link against the
2133 local uninstalled gst libs and not any installed gst libs that
2134 might happen to exist as well.
2136 * tests/check/elements/adder.c: (message_received),
2137 (test_event_message_received), (test_play_twice_message_received):
2138 * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
2139 Fix compiler warnings when compiling against core with disabled
2142 2006-11-16 Michael Smith <msmith@fluendo.com>
2144 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
2145 (gst_audio_rate_sink_event), (gst_audio_rate_chain):
2146 Fix audiorate, so that it accurately sets offsets and timestamps.
2147 Doesn't change the fundamental algorithmic decisions; so should be
2150 * tests/check/Makefile.am:
2151 Enable audiorate test now that it passes.
2153 2006-11-09 Stefan Kost <ensonic@users.sf.net>
2155 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
2156 clear xv when going to NULL, remove // commented non-existant proto
2158 * tests/examples/seek/seek.c: (main):
2159 add missing tooltip description for scrub and play_scrub
2161 2006-11-14 David Schleef <ds@schleef.org>
2164 Bump liboil requirement to 0.3.8.
2165 * gst-libs/gst/riff/riff-media.c:
2167 * gst/videoscale/vs_image.h:
2168 * gst/videoscale/vs_scanline.h:
2169 Use liboil's stdint.h.
2170 * gst/videotestsrc/videotestsrc.c:
2171 Remove liboil related ifdef's, since they aren't needed now, and
2172 won't work with future versions.
2174 2006-11-14 David Schleef <ds@schleef.org>
2176 * gst/videoscale/Makefile.am:
2177 * gst/videoscale/gstvideoscale.c:
2178 * gst/videoscale/gstvideoscale.h:
2179 * gst/videoscale/vs_4tap.c:
2180 * gst/videoscale/vs_4tap.h:
2181 * gst/videoscale/vs_image.c:
2182 * gst/videoscale/vs_image.h:
2183 * gst/videoscale/vs_scanline.c:
2184 * gst/videoscale/vs_scanline.h:
2185 Add a 4-tap image scaler. Theoretically looks much prettier.
2186 The tap calculation could use some improvement.
2188 2006-11-14 Wim Taymans <wim@fluendo.com>
2190 Patch by: Jan David Mol <j dot j dot d dot mol at tudelft dot nl>
2192 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds),
2193 (gst_riff_parse_strf_iavs):
2194 * gst/subparse/gstsubparse.c: (convert_encoding):
2195 * gst/tcp/gstmultifdsink.c:
2196 (gst_multi_fd_sink_handle_client_write):
2197 * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
2198 (gst_tcp_read_buffer), (gst_tcp_gdp_read_caps),
2199 (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
2200 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_render):
2201 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
2202 (gst_ximagesink_ximage_new):
2203 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
2204 Various gsize and gssize printf fixes. Fixes #372507.
2206 2006-11-13 Wim Taymans <wim@fluendo.com>
2208 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
2209 (vorbis_dec_push_forward), (vorbis_dec_push_reverse),
2210 (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
2211 (vorbis_dec_flush_decode), (vorbis_dec_chain_reverse),
2212 (vorbis_dec_chain_forward), (vorbis_dec_chain):
2213 * ext/vorbis/vorbisdec.h:
2214 First stab at vorbis reverse playback.
2216 2006-11-13 Wim Taymans <wim@fluendo.com>
2218 * gst-libs/gst/audio/gstbaseaudiosink.c:
2219 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
2220 * gst-libs/gst/audio/gstbaseaudiosink.h:
2221 Make the clock sync code more accurate wrt resampling and playback
2224 * gst-libs/gst/audio/gstringbuffer.c:
2225 (gst_ring_buffer_commit_full), (gst_ring_buffer_commit):
2226 * gst-libs/gst/audio/gstringbuffer.h:
2227 Use better algorithm to interpolate sample rates.
2229 2006-11-13 Michael Smith <msmith@fluendo.com>
2231 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page):
2232 Improve a debug line slightly.
2234 * ext/ogg/gstogmparse.c: (gst_ogm_parse_plugin_init):
2235 Call gst_riff_init() in plugin_init, to avoid getting errors from
2236 the debug system (unrelated changes to another plugin made this turn
2239 2006-11-10 Tim-Philipp Müller <tim at centricular dot net>
2241 Patch by: Sergey Scobich <sergery.scobich at gmail com>
2243 * win32/common/libgsttag.def:
2244 Add missing symbol (#366492).
2246 2006-11-09 Tim-Philipp Müller <tim at centricular dot net>
2248 * gst/playback/gststreamselector.c: (gst_stream_selector_dispose):
2249 Don't unref a NULL pad.
2251 2006-11-09 Wim Taymans <wim@fluendo.com>
2253 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
2254 (gst_ogg_demux_get_prev_page), (gst_ogg_demux_perform_seek),
2255 (gst_ogg_demux_handle_page), (gst_ogg_demux_chain),
2256 (gst_ogg_demux_loop_forward), (gst_ogg_demux_loop_reverse),
2257 (gst_ogg_demux_loop):
2258 Implement first stab at reverse playback.
2260 2006-11-07 Stefan Kost <ensonic@users.sf.net>
2262 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
2263 (gst_riff_create_video_template_caps):
2264 add h263/h264 variants to the caps, Fixes #363118
2266 2006-11-06 Tim-Philipp Müller <tim at centricular dot net>
2268 * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
2269 * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
2270 Use g_strerror instead of strerror so we get UTF-8.
2272 2006-11-03 David Schleef <ds@schleef.org>
2274 * ext/ogg/gstoggdemux.c:
2275 * ext/ogg/gstoggmux.c:
2276 Add/remove KW-DIRAC header here, since it is ogg-specific.
2278 2006-11-03 Michael Smith <msmith@fluendo.com>
2280 * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
2281 Recognise more mpeg4 elementary video streams.
2283 2006-11-02 Edward Hervey <edward@fluendo.com>
2285 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
2286 Lower the probability of mp3 typefinding functions if we don't find a
2287 valid mp3 header at the start of the file.
2290 2006-11-02 Wim Taymans <wim@fluendo.com>
2292 * ext/theora/gsttheoradec.h:
2293 * ext/theora/theoradec.c: (gst_theora_dec_init),
2294 (theora_dec_sink_event), (theora_dec_chain_forward),
2295 (theora_dec_flush_decode), (theora_dec_chain_reverse),
2297 Document and partially implement an algorithm for doing reverse playback
2300 2006-11-02 Tim-Philipp Müller <tim at centricular dot net>
2302 Patch by: Sergey Scobich <sergey.scobich at gmail com>
2304 * win32/common/config.h:
2305 * win32/common/interfaces-enumtypes.c:
2306 * win32/common/libgsttag.def:
2307 * win32/vs8/gst-plugins-base.sln:
2308 * win32/vs8/libgstaudioresample.vcproj:
2309 * win32/vs8/libgstinterfaces.vcproj:
2310 * win32/vs8/libgstogg.vcproj:
2311 * win32/vs8/libgstriff.vcproj:
2312 * win32/vs8/libgsttag.vcproj:
2313 * win32/vs8/libgsttheora.vcproj:
2314 * win32/vs8/libgstvideoscale.vcproj:
2315 * win32/vs8/libgstvorbis.vcproj:
2316 Misc. VS8 build fixes: fix syntax in config.h, add missing entries
2317 to libgsttag.def; add missing dependencies for some vs8 projects;
2318 re-arrange placement of .def files in vs8 projects (#366334).
2320 2006-11-01 Tim-Philipp Müller <tim at centricular dot net>
2323 Remove unused variable.
2325 * ext/ogg/gstoggdemux.c:
2326 Fix Wim's surname in plugin description.
2328 2006-10-31 Wim Taymans <wim@fluendo.com>
2330 * gst-plugins-base.spec.in:
2331 spec new .h file. Fixes #368310.
2333 2006-10-31 Michael Smith <msmith@fluendo.com>
2335 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
2336 (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
2337 (gst_multi_fd_sink_get_stats),
2338 (gst_multi_fd_sink_remove_client_link),
2339 (gst_multi_fd_sink_queue_buffer),
2340 (gst_multi_fd_sink_handle_clients):
2341 * gst/tcp/gstmultifdsink.h:
2342 Make using the remove or clear signals threadsafe.
2343 Make calling get-stats with an invalid fd not segfault.
2346 2006-10-31 Wim Taymans <wim@fluendo.com>
2348 * gst-libs/gst/rtp/Makefile.am:
2349 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2350 (gst_base_rtp_audio_payload_init):
2351 Fix and activate base audio payloader.
2353 2006-10-28 Tim-Philipp Müller <tim at centricular dot net>
2355 * gst/typefind/gsttypefindfunctions.c: (qtif_type_find),
2357 Add typefinder for QuickTime Image Files (see #366156).
2359 2006-10-28 Tim-Philipp Müller <tim at centricular dot net>
2361 * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
2362 Another typo fix (#366212).
2364 2006-10-27 Wim Taymans <wim@fluendo.com>
2366 * gst/volume/gstvolume.c: (volume_transform_ip):
2367 Use stream time to synchronize volume property instead of rather random
2368 timestamps. This is needed when gnonlin does its time shifting.
2370 2006-10-27 Wim Taymans <wim@fluendo.com>
2372 Patch by: Mark Nauwelaerts <manauw at skynet dot be>
2374 * ext/ogg/gstoggmux.c: (gst_ogg_mux_release_pad):
2375 Remove the pad from the element in release_pad. Fixes #364812.
2377 2006-10-27 Tim-Philipp Müller <tim at centricular dot net>
2379 * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
2380 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
2381 Explicitly create our custom buffer classes at a thread-safe
2382 location as well, since g_type_class_ref() doesn't seem to be
2383 entirely thread-safe either (#365501; also see #349410).
2385 2006-10-26 Tim-Philipp Müller <tim at centricular dot net>
2387 * gst-libs/gst/riff/riff-read.c: (freeform_string_to_utf8),
2388 (gst_riff_parse_info):
2389 If strings in INFO chunk are not UTF-8, do something similar to
2390 what we do for ID3v1 tags: check a number of environment variables
2391 (GST_AVI_TAG_ENCODING, GST_RIFF_TAG_ENCODING, GST_TAG_ENCODING) for
2392 character sets to try, otherwise try the current locale and/or fall
2393 back on ISO-8859-1. Fixes #360552.
2395 2006-10-23 Tim-Philipp Müller <tim at centricular dot net>
2397 * gst/videotestsrc/gstvideotestsrc.c:
2398 (gst_video_test_src_pattern_get_type),
2399 (gst_video_test_src_set_pattern):
2400 * gst/videotestsrc/gstvideotestsrc.h:
2401 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_checkers1),
2402 (gst_video_test_src_checkers2), (gst_video_test_src_checkers4),
2403 (gst_video_test_src_checkers8):
2404 * gst/videotestsrc/videotestsrc.h:
2405 Add a bunch of exciting new checkers patterns.
2407 2006-10-23 Tim-Philipp Müller <tim at centricular dot net>
2409 * gst/subparse/Makefile.am:
2410 * gst/subparse/gstsubparse.c:
2411 (gst_sub_parse_data_format_autodetect),
2412 (gst_sub_parse_format_autodetect), (handle_buffer),
2413 (gst_sub_parse_chain), (gst_subparse_type_find), (plugin_init):
2414 * gst/subparse/gstsubparse.h:
2415 * gst/subparse/tmplayerparse.c: (tmplayer_parse_line),
2417 * gst/subparse/tmplayerparse.h:
2418 Add support for TMPlayer-type subtitles (#362845).
2420 * tests/check/elements/subparse.c: (test_tmplayer_do_test),
2421 (GST_START_TEST), (subparse_suite):
2422 Add some basic unit tests for the above.
2424 2006-10-23 Tim-Philipp Müller <tim at centricular dot net>
2426 * tests/check/elements/audiorate.c: (test_injector_base_init),
2427 (test_injector_class_init), (test_injector_chain),
2428 (test_injector_init), (probe_cb), (do_perfect_stream_test),
2429 (GST_START_TEST), (audiorate_suite):
2430 More tests for audiorate: inject buffers to check behaviour when
2433 2006-10-21 Tim-Philipp Müller <tim at centricular dot net>
2435 * tests/check/Makefile.am:
2436 * tests/check/elements/.cvsignore:
2437 * tests/check/elements/audiorate.c: (probe_cb), (got_buf),
2438 (do_perfect_stream_test), (GST_START_TEST), (audiorate_suite):
2439 Add some basic unit tests for audiorate. Disabled at the moment
2440 since it doesn't pass yet (see bug #363119).
2442 2006-10-20 Tim-Philipp Müller <tim at centricular dot net>
2444 * gst/subparse/gstsubparse.c: (subrip_fix_up_markup),
2445 (parse_subrip), (handle_buffer):
2446 Add missing closing tags for markup and fix broken markup,
2447 otherwise pango won't render anything (fixes #357531). Also,
2448 make sure the text we send out is always NUL-terminated
2449 (better safe than sorry etc.).
2451 * tests/check/elements/subparse.c: (test_srt_do_test),
2453 Some more tests for .srt incl. tests for the above stuff.
2455 2006-10-20 Julien MOUTTE <julien@moutte.net>
2457 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
2458 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
2459 Patch by: Stefan Kost <ensonic@users.sf.net>
2460 Try to redraw borders only when needed. Apparently this consumes
2461 resources on small devices... :-O (#363607)
2463 2006-10-20 Michael Smith <msmith@fluendo.com>
2465 * gst/tcp/gstmultifdsink.c:
2466 (gst_multi_fd_sink_client_queue_buffer):
2467 If caps change, then update the client's idea of the caps so that we
2468 don't end up re-sending streamheaders for every single buffer after
2471 2006-10-20 Michael Smith <msmith@fluendo.com>
2473 * ext/ogg/gstoggparse.c: (gst_ogg_parse_dispose),
2474 (gst_ogg_parse_append_header), (gst_ogg_parse_chain):
2475 Set caps on pushed buffers; fix up refcounting of caps objects.
2477 2006-10-19 Tim-Philipp Müller <tim at centricular dot net>
2479 * gst/typefind/gsttypefindfunctions.c: (mmsh_type_find),
2481 Typefind mmsh header data packet to application/x-mmsh (#362625).
2483 2006-10-19 Tim-Philipp Müller <tim at centricular dot net>
2485 * tests/check/Makefile.am:
2486 * tests/check/elements/.cvsignore:
2487 * tests/check/elements/subparse.c: (buffer_from_static_string),
2488 (setup_subparse), (teardown_subparse), (test_srt_do_test),
2489 (GST_START_TEST), (subparse_suite):
2490 Add very simple unit test for subparse.
2492 2006-10-19 Tim-Philipp Müller <tim at centricular dot net>
2494 * gst/subparse/gstsubparse.c: (strip_trailing_newlines),
2496 Strip trailing newlines from subtitle text output.
2498 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2500 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
2501 (gst_sub_parse_change_state):
2502 Fix memleak; clear subparse->textbuf n state change function.
2504 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2506 * gst/subparse/gstsubparse.c:
2507 (gst_sub_parse_data_format_autodetect):
2508 Don't require subrip (.srt) files to start with a chunk number of 1.
2510 2006-10-18 Wim Taymans <wim@fluendo.com>
2512 * gst-libs/gst/audio/gstbaseaudiosink.c:
2513 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
2514 * gst-libs/gst/audio/gstbaseaudiosink.h:
2515 Extract rate from the NEWSEGMENT event.
2516 Use commit_full to also take rate adjustment into account when writing
2517 samples to the ringbuffer.
2519 * gst-libs/gst/audio/gstringbuffer.c:
2520 (gst_ring_buffer_commit_full), (gst_ring_buffer_commit),
2521 (gst_ring_buffer_read):
2522 * gst-libs/gst/audio/gstringbuffer.h:
2523 Added _commit_full() to also take rate into account.
2524 Use simple interpolation algorithm to resample audio.
2525 API: gst_ring_buffer_commit_full()
2527 * tests/examples/seek/scrubby.c: (speed_cb), (do_seek):
2528 * tests/examples/seek/seek.c: (segment_done):
2529 Don't try to seek with 0.0 rate, just pause instead.
2530 Remove bogus debug line.
2532 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2534 * gst/playback/gstplaybasebin.c: (subbin_startup_sync_msg),
2536 Catch async errors when starting up the subtitle bin, so we can
2537 stop waiting and continue with the main film instead of hanging
2538 forever. Fixes #339366.
2540 * tests/check/elements/playbin.c: (playbin_suite):
2541 Enable unit test for the above.
2543 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2545 * tests/check/Makefile.am:
2546 * tests/check/elements/.cvsignore:
2547 * tests/check/elements/playbin.c: (GST_START_TEST),
2548 (gst_red_video_src_uri_get_type),
2549 (gst_red_video_src_uri_get_protocols),
2550 (gst_red_video_src_uri_get_uri), (gst_red_video_src_uri_set_uri),
2551 (gst_red_video_src_uri_handler_init),
2552 (gst_red_video_src_init_type), (gst_red_video_src_base_init),
2553 (gst_red_video_src_create), (gst_red_video_src_class_init),
2554 (gst_red_video_src_init), (plugin_init), (playbin_suite):
2555 Some small and basic unit tests for playbin; not very useful yet,
2556 but at least a start.
2558 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2560 * gst/playback/gstplaybin.c: (setup_sinks):
2561 The old pad activation spiel.
2563 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2565 * gst/playback/gstplaybasebin.c: (setup_source):
2566 Don't hang forever if the subbin already fails to start up in
2567 the state change to PAUSED (#339366).
2569 2006-10-17 Tim-Philipp Müller <tim at centricular dot net>
2571 * gst-libs/gst/interfaces/tuner.c: (gst_tuner_list_channels),
2572 (gst_tuner_set_channel), (gst_tuner_get_channel),
2573 (gst_tuner_list_norms), (gst_tuner_set_norm), (gst_tuner_get_norm),
2574 (gst_tuner_set_frequency), (gst_tuner_get_frequency),
2575 (gst_tuner_signal_strength), (gst_tuner_find_norm_by_name),
2576 (gst_tuner_find_channel_by_name):
2577 Fix some function guards, add some more function guards.
2579 2006-10-17 Jan Schmidt <thaytan@mad.scientist.com>
2581 * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
2582 (remove_element_chain):
2583 Don't return a pad from get_our_ghost_pad unless it is actually the
2585 Change a cast in remove_element_chain slightly.
2587 2006-10-13 Julien MOUTTE <julien@moutte.net>
2589 * tests/examples/seek/seek.c: (do_seek), (start_seek),
2590 (rate_spinbutton_changed_cb), (segment_done), (msg_state_changed):
2591 Segment seeking needs to use the rate and set stop to -1.
2593 2006-10-13 Wim Taymans <wim@fluendo.com>
2595 * gst-libs/gst/audio/gstbaseaudiosink.c:
2596 (gst_base_audio_sink_setcaps):
2597 Don't crash when ringbuffer is not yet created.
2598 Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
2601 * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
2602 * gst/playback/gststreamselector.c:
2603 (gst_stream_selector_request_new_pad):
2604 Activate pads befre adding them to running elements.
2606 2006-10-13 Julien MOUTTE <julien@moutte.net>
2608 * tests/examples/seek/seek.c: (do_seek), (start_seek),
2609 (rate_spinbutton_changed_cb), (msg_state_changed): Stop the scale
2610 updater when we start grabing the slider. Don't wait for the
2611 pipeline to be PAUSED.
2613 2006-10-13 Tim-Philipp Müller <tim at centricular dot net>
2615 * gst-libs/gst/interfaces/mixer.c: (gst_mixer_list_tracks),
2616 (gst_mixer_set_volume), (gst_mixer_get_volume),
2617 (gst_mixer_set_mute), (gst_mixer_set_option),
2618 (gst_mixer_get_option), (gst_mixer_mute_toggled),
2619 (gst_mixer_record_toggled), (gst_mixer_volume_changed),
2620 (gst_mixer_option_changed):
2621 Guard mixer interface functions against bogus arguments.
2623 2006-10-12 Julien MOUTTE <julien@moutte.net>
2625 * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
2626 (play_cb), (pause_cb), (stop_cb), (rate_spinbutton_changed_cb),
2627 (msg_state_changed), (main): Use state-changed messages to trigger
2628 start/stop of scale update timer. Indeed the scale slider was
2629 jumping here and there because the update timer was activated
2630 before seek completed. This fixes instant applying of rate changes
2631 by pressing the spinbutton like a crazy man !
2633 2006-10-12 Tim-Philipp Müller <tim at centricular dot net>
2635 Patch by: Sebastien Cote <sebas642 at yahoo.ca>
2637 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
2638 (gst_basertppayload_finalize):
2639 Fix two small memory leaks (#361456).
2641 2006-10-10 Julien MOUTTE <julien@moutte.net>
2643 * tests/examples/seek/seek.c: (do_seek),
2644 (rate_spinbutton_changed_cb): When changing spinbutton we try
2645 to change the rate on the fly.
2647 2006-10-10 Wim Taymans <wim@fluendo.com>
2649 * gst-libs/gst/riff/riff-ids.h:
2650 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
2651 (gst_riff_create_audio_template_caps):
2654 2006-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
2656 Patch by: Josep Torre Valles <josep@fluendo.com>
2658 * ext/gnomevfs/gstgnomevfssink.c:
2659 * ext/gnomevfs/gstgnomevfssrc.c:
2660 Fix URI interface implementation return type.
2661 * ext/pango/gsttextoverlay.c: (gst_text_overlay_set_property):
2662 Fix what looks like a copy/paste issue when assigning values.
2663 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
2664 (gst_audio_filter_template_get_type):
2665 Cast to prevent Forte warnings.
2666 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
2667 Fix URI interface implementation return type.
2668 gst_pad_query_position requires a signed integer pointer as
2669 3rd parameter, GstClockTime is unsigned.
2670 * gst/audioconvert/audioconvert.c:
2671 Fix integer overflow when treated as signed.
2672 * gst/audioresample/resample.c: (resample_add_input_data):
2673 Cast to prevent warnings on Forte.
2674 * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette):
2675 Fix integer overflow when treated as signed.
2676 * gst/ffmpegcolorspace/imgconvert_template.h:
2677 Fix integer overflow when treated as signed. RGBA_OUT shifts bits.
2678 * gst/playback/gstdecodebin.c: (queue_filled_cb),
2679 (cleanup_decodebin):
2680 Who initialises a guint to -1!
2681 Cast function pointers to prevent warnings on Forte.
2682 * gst/playback/gstplaybasebin.c: (queue_deadlock_check),
2683 (queue_threshold_reached):
2684 Cast function pointers correctly to prevent warnings on Forte.
2685 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
2686 Cast function pointers correctly to prevent warnings on Forte.
2687 * gst/subparse/gstssaparse.c: (gst_ssa_parse_setcaps):
2688 Obvious change to unsigned, 0xEF > max signed char.
2689 * gst/tcp/gstmultifdsink.c: (get_buffers_max), (count_burst_unit):
2690 GstClockTime is unsigned, initialise correctly.
2691 * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
2692 Cast so pointer arithemetic doesn't cause warnings on Forte.
2693 * gst/videorate/gstvideorate.c:
2694 Use correct return value.
2695 * tests/examples/seek/scrubby.c:
2696 GstClockTime is unsigned, initialise correctly.
2698 2006-10-10 Tim-Philipp Müller <tim at centricular dot net>
2700 Patch by: Ferenc Gerlits <fgerlits at gmail com>
2702 * gst/typefind/gsttypefindfunctions.c:
2703 Recognise XML files and XML-like files shorter than 256 bytes as
2704 well (fixes #359237).
2706 2006-10-09 Edgard Lima <edgard.lima@indt.org.br>
2708 Patch by: Renato Filho <renato.filho@indt.org.br>
2710 * gst/typefind/gsttypefindfunctions.c:
2711 Added typefind functions to video/x-nuv media.
2713 2006-10-08 Tim-Philipp Müller <tim at centricular dot net>
2715 * gst-libs/gst/interfaces/xoverlay.c:
2716 (gst_x_overlay_set_xwindow_id), (gst_x_overlay_expose):
2717 Some more guards against invalid input.
2719 2006-10-07 Julien MOUTTE <julien@moutte.net>
2721 * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event):
2723 * tests/examples/seek/seek.c: (do_seek),
2724 (rate_spinbutton_changed_cb), (main): Add a rate spinbutton in
2725 seek example to experiment with rates != 1.0 (reverse playback !)
2727 2006-10-06 Stefan Kost <ensonic@users.sf.net>
2729 * gst-libs/gst/interfaces/xoverlay.c:
2730 Unref message in doc-example (spotted by Robert McQueen)
2732 2006-10-06 Wim Taymans <wim@fluendo.com>
2734 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2735 (mpeg1_parse_header), (mpeg1_sys_type_find):
2738 2006-10-06 Wim Taymans <wim@fluendo.com>
2740 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
2742 * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
2743 Activate dynamic pads before adding them to the element.
2745 2006-10-06 Michael Smith <msmith@fluendo.com>
2747 * gst-libs/gst/floatcast/floatcast.h:
2748 Fix obviously-bogus macros; use the correct types.
2750 2006-10-06 Wim Taymans <wim@fluendo.com>
2752 * gst-libs/gst/rtp/gstbasertpdepayload.c:
2753 (gst_base_rtp_depayload_change_state):
2754 Also call parent state change function to activate pads.
2756 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2757 (mpeg1_parse_header), (mpeg1_sys_type_find):
2758 Add some more debug info in mpeg typefinding.
2760 2006-10-06 Michael Smith <msmith@fluendo.com>
2762 * ext/theora/theoradec.c: (theora_dec_chain):
2763 Zero byte theora packets are valid and well-defined; don't warn on
2766 2006-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
2768 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
2769 (gst_multi_fd_sink_get_stats), (find_limits),
2770 (gst_multi_fd_sink_queue_buffer):
2771 API: add dropped_buffers to the get-stats GValueArray
2773 2006-10-05 Tim-Philipp Müller <tim at centricular dot net>
2775 * ext/alsa/gstalsadeviceprobe.c:
2776 (gst_alsa_device_property_probe_get_values):
2777 * ext/alsa/gstalsasink.c: (set_hwparams):
2778 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_elem_pad),
2779 (gst_ogg_chain_new_stream), (gst_ogg_demux_read_chain):
2780 * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers),
2781 (gst_ogg_mux_process_best_pad):
2782 * ext/ogg/gstoggparse.c: (gst_ogg_parse_new_stream),
2783 (gst_ogg_parse_chain):
2784 * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
2785 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
2786 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_setup),
2787 (gst_vorbis_enc_buffer_check_discontinuous):
2788 * ext/vorbis/vorbisparse.c: (vorbis_parse_src_query):
2789 * gst-libs/gst/audio/gstbaseaudiosink.c:
2790 (gst_base_audio_sink_render):
2791 * gst-libs/gst/cdda/gstcddabasesrc.c:
2792 (gst_cdda_base_src_handle_track_seek):
2793 * gst-libs/gst/rtp/gstbasertpdepayload.c:
2794 (gst_base_rtp_depayload_push_full):
2795 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
2796 * gst/audioresample/resample.c: (resample_input_pushthrough):
2797 * gst/playback/gstplaybasebin.c: (queue_out_of_data):
2798 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
2799 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2800 (wavpack_type_find):
2801 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
2802 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
2803 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
2804 * tests/check/elements/volume.c: (GST_START_TEST):
2805 Printf format fixes.
2807 2006-10-04 Thomas Vander Stichele <thomas at apestaart dot org>
2809 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_caps):
2810 Fix a simple mistake (see the docs)
2813 2006-10-03 Tim-Philipp Müller <tim at centricular dot net>
2815 * docs/plugins/Makefile.am:
2816 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2817 * docs/plugins/gst-plugins-base-plugins-sections.txt:
2818 * docs/plugins/gst-plugins-base-plugins.args:
2819 * docs/plugins/gst-plugins-base-plugins.hierarchy:
2820 * docs/plugins/inspect/plugin-adder.xml:
2821 * docs/plugins/inspect/plugin-alsa.xml:
2822 * docs/plugins/inspect/plugin-audioconvert.xml:
2823 * docs/plugins/inspect/plugin-audiorate.xml:
2824 * docs/plugins/inspect/plugin-audioresample.xml:
2825 * docs/plugins/inspect/plugin-audiotestsrc.xml:
2826 * docs/plugins/inspect/plugin-cdparanoia.xml:
2827 * docs/plugins/inspect/plugin-decodebin.xml:
2828 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
2829 * docs/plugins/inspect/plugin-gdp.xml:
2830 * docs/plugins/inspect/plugin-gnomevfs.xml:
2831 * docs/plugins/inspect/plugin-libvisual.xml:
2832 * docs/plugins/inspect/plugin-ogg.xml:
2833 * docs/plugins/inspect/plugin-pango.xml:
2834 * docs/plugins/inspect/plugin-playbin.xml:
2835 * docs/plugins/inspect/plugin-subparse.xml:
2836 * docs/plugins/inspect/plugin-tcp.xml:
2837 * docs/plugins/inspect/plugin-theora.xml:
2838 * docs/plugins/inspect/plugin-typefindfunctions.xml:
2839 * docs/plugins/inspect/plugin-video4linux.xml:
2840 * docs/plugins/inspect/plugin-videorate.xml:
2841 * docs/plugins/inspect/plugin-videoscale.xml:
2842 * docs/plugins/inspect/plugin-videotestsrc.xml:
2843 * docs/plugins/inspect/plugin-volume.xml:
2844 * docs/plugins/inspect/plugin-vorbis.xml:
2845 * docs/plugins/inspect/plugin-ximagesink.xml:
2846 * docs/plugins/inspect/plugin-xvimagesink.xml:
2847 Add vorbistag element to docs; update version numbers to 0.10.10.1.
2849 2006-10-03 Tim-Philipp Müller <tim at centricular dot net>
2851 Patch by: James "Doc" Livingston <doclivingston at gmail com>
2853 * ext/vorbis/Makefile.am:
2854 * ext/vorbis/vorbis.c: (plugin_init):
2855 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_class_init),
2856 (vorbis_parse_parse_packet), (vorbis_parse_chain):
2857 * ext/vorbis/vorbisparse.h:
2858 * ext/vorbis/vorbistag.c: (gst_vorbis_tag_base_init),
2859 (gst_vorbis_tag_class_init), (gst_vorbis_tag_init),
2860 (gst_vorbis_tag_parse_packet):
2861 * ext/vorbis/vorbistag.h:
2862 Add new vorbistag element which derives from vorbisparse
2863 and is essentially the same as well, only that it implements
2864 the GstTagSetter interface and can modify the stream's
2865 vorbiscomment on the fly (#335635).
2867 * tests/check/Makefile.am:
2868 * tests/check/elements/.cvsignore:
2869 * tests/check/elements/vorbistag.c: (setup_vorbistag),
2870 (cleanup_vorbistag), (buffer_probe), (start_pipeline),
2871 (get_buffer), (stop_pipeline), (_create_codebook_header_buffer),
2872 (_create_audio_buffer), (GST_START_TEST), (vorbistag_suite):
2873 Add unit test for new vorbistag element.
2875 2006-10-03 Tim-Philipp Müller <tim at centricular dot net>
2877 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init),
2878 (vorbis_parse_push_headers), (vorbis_parse_chain):
2879 Set BOS flag in packet structure to fix 'jump depends
2880 on unitialized value' errors in valgrind; various minor
2883 2006-09-30 Jan Schmidt <thaytan@mad.scientist.com>
2885 * gst/playback/gstdecodebin.c: (close_pad_link):
2886 Fix typo in a debug statement.
2888 * gst/playback/gstplaybasebin.c: (probe_triggered),
2889 (new_decoded_pad_full), (new_decoded_pad), (subs_new_decoded_pad),
2890 (gen_source_element), (source_new_pad), (analyse_source),
2892 When handling no_more_pads in new_decoded_pad, make sure to treat
2893 subtitle pads correctly. Fixes playback with subtitle files.
2895 Move a recurring message to LOG level.
2897 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
2898 The maximum value for the Xv colorkey on this Radeon is 0xFFFFFFFF,
2899 which ends up as -1 when cast to an int. Make the logic handle the
2900 max value as an unsigned mask and only change the colorkey when it's
2901 a value we recognise.
2903 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
2905 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2906 Removed empty * between paragraphs
2908 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
2910 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2911 * gst-libs/gst/rtp/README:
2912 Moved some documentation into .c file
2914 2006-09-29 Wim Taymans <wim@fluendo.com>
2916 * gst/playback/gstdecodebin.c: (no_more_pads):
2919 2006-09-29 Wim Taymans <wim@fluendo.com>
2921 * gst/playback/gstdecodebin.c: (new_caps):
2924 * gst/playback/gstplaybin.c:
2927 2006-09-29 Tim-Philipp Müller <tim at centricular dot net>
2929 * tests/check/Makefile.am:
2930 Re-enable cddabasesrc test to see if it works again
2933 2006-09-29 Wim Taymans <wim@fluendo.com>
2935 * gst/playback/gstplaybasebin.c: (setup_subtitle),
2936 (gen_source_element):
2937 Handle invalid URIs a bit more gracefully.
2939 2006-09-29 Tim-Philipp Müller <tim at centricular dot net>
2941 * tests/check/pipelines/oggmux.c:
2942 Remove obsolete comment.
2944 2006-09-29 Michael Smith <msmith@fluendo.com>
2946 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
2947 (gst_ogg_mux_release_pad), (gst_ogg_mux_push_buffer),
2948 (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
2949 (gst_ogg_mux_send_headers), (gst_ogg_mux_process_best_pad),
2950 (gst_ogg_mux_collected):
2951 Commit patch from James "Doc" Livingston, adds proper EOS handling
2952 in oggmux. GStreamer can, for the first time ever, create a valid
2955 * tests/check/pipelines/oggmux.c: (check_chain_final_state),
2957 Reenable tests now that they pass.
2959 2006-09-29 Wim Taymans <wim@fluendo.com>
2961 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
2962 Stop reading commands when EOF (we read 0) as well.
2964 2006-09-28 Wim Taymans <wim@fluendo.com>
2966 * gst/playback/gstdecodebin.c: (dynamic_create), (dynamic_free),
2967 (close_pad_link), (dynamic_remove), (no_more_pads), (new_caps),
2968 (find_dynamic), (unlinked), (close_link):
2969 Implement delayed caps linking needed for element with a lot of
2970 different caps on the src pads that get fixed at runtime.
2971 Improve management of dynamic elements.
2973 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
2974 (group_destroy), (group_commit), (check_queue), (queue_overrun),
2975 (gen_preroll_element), (remove_groups), (unknown_type),
2976 (add_element_stream), (no_more_pads_full), (no_more_pads),
2977 (sub_no_more_pads), (source_no_more_pads), (preroll_unlinked),
2978 (new_decoded_pad), (setup_subtitle), (array_has_value),
2979 (gen_source_element), (source_new_pad), (has_all_raw_caps),
2980 (analyse_source), (remove_decoders), (make_decoder),
2981 (remove_source), (setup_source), (finish_source), (prepare_output),
2982 (gst_play_base_bin_change_state):
2983 * gst/playback/gstplaybasebin.h:
2984 Use more _CAST instead of full type checking casts.
2985 Small cleanups, plug some leaks.
2986 Handle dynamic sources.
2987 Add some helper functions to create lists of strings used for
2988 blacklisting and other stuff.
2989 Refactor some code dealing with analysing the source.
2990 Re-enable sources without pads (like cd:// or other selfcontained
2993 2006-09-28 Wim Taymans <wim@fluendo.com>
2995 * gst-libs/gst/audio/gstbaseaudiosink.c:
2996 (gst_base_audio_sink_render):
2997 When we have a timestamp, we can still perform clipping.
2998 When we have no clock, we must play the sample ASAP.
3000 2006-09-28 Wim Taymans <wim@fluendo.com>
3002 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
3003 Set caps on outgoing buffers.
3005 * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
3006 (gst_video_rate_event), (gst_video_rate_chain):
3007 * gst/videorate/gstvideorate.h:
3008 Fix videorate some more. Fixes #357977
3010 2006-09-28 Tim-Philipp Müller <tim at centricular dot net>
3012 * tests/check/elements/adder.c: (adder_suite):
3013 Don't set timeout to 6 seconds when we're running
3014 in valgrind ... (and how is 6 seconds longer than
3015 the default anyway?)
3017 2006-09-28 Wim Taymans <wim@fluendo.com>
3019 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
3020 (gst_audio_rate_sink_event), (gst_audio_rate_convert),
3021 (gst_audio_rate_convert_segments), (gst_audio_rate_chain):
3022 Keep sink and src segment to keep track of time and support more
3024 Fix bogus next_offset and run_time calculation, don't understand how
3025 this could have worked before. Fixes #357976.
3026 Remove some unneeded vars.
3028 2006-09-28 Tim-Philipp Müller <tim at centricular dot net>
3030 * gst/playback/gstplaybin.c: (remove_sinks):
3031 Only remove visualisation from visbin if there is a visbin (or:
3032 don't throw warnings when closing totem without playing a file).
3034 2006-09-27 Wim Taymans <wim@fluendo.com>
3036 * gst-libs/gst/audio/gstbaseaudiosink.c:
3037 (gst_base_audio_sink_render):
3038 Add some more info in a WARNING.
3040 * gst-libs/gst/audio/gstbaseaudiosrc.c:
3041 (gst_base_audio_src_create):
3042 Handle PAUSE in create function, use new -core addition to
3043 wait for playing. Fixes pausing and resuming capture from an
3046 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
3047 (gst_ring_buffer_read):
3049 Caller supports interrupted reads now.
3051 2006-09-27 Tim-Philipp Müller <tim at centricular dot net>
3053 * tests/check/Makefile.am:
3054 Another attempt to make the gen64 buildbot happy.
3056 2006-09-27 Stefan Kost <ensonic@users.sf.net>
3058 Patch by: Jonathan Matthew <jonathan@kaolin.wh9.net>
3060 * ext/libvisual/visual.c: (gst_visual_clear_actors),
3061 (gst_visual_chain), (gst_visual_change_state):
3062 Libvisual plugin was not passing audio data to libvisual 0.4.0
3063 correctly. Fixes #357800
3065 2006-09-27 Tim-Philipp Müller <tim at centricular dot net>
3067 * tests/check/pipelines/simple-launch-lines.c: (run_pipeline):
3068 Add timeout to _get_state() so we see which pipeline it is
3069 that causes trouble on the gen64 build bot.
3071 2006-09-27 Wim Taymans <wim@fluendo.com>
3073 * gst-libs/gst/rtp/gstbasertpdepayload.c:
3074 (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_push_full),
3075 (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_process),
3076 (gst_base_rtp_depayload_set_gst_timestamp):
3077 the source pad always uses fixed caps.
3079 2006-09-27 Wim Taymans <wim@fluendo.com>
3081 * docs/libs/gst-plugins-base-libs-docs.sgml:
3082 * docs/libs/gst-plugins-base-libs-sections.txt:
3083 * gst-libs/gst/audio/gstaudioclock.c:
3084 * gst-libs/gst/audio/gstaudioclock.h:
3085 * gst-libs/gst/audio/gstaudiosink.c:
3086 * gst-libs/gst/audio/gstaudiosink.h:
3087 * gst-libs/gst/audio/gstaudiosrc.c:
3088 * gst-libs/gst/audio/gstbaseaudiosink.c:
3089 (gst_base_audio_sink_render):
3090 * gst-libs/gst/audio/gstbaseaudiosink.h:
3091 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init):
3092 * gst-libs/gst/audio/gstbaseaudiosrc.h:
3093 * gst-libs/gst/audio/gstringbuffer.h:
3094 Added docs for the audio libs.
3096 2006-09-27 Tim-Philipp Müller <tim at centricular dot net>
3098 * tests/check/Makefile.am:
3099 Temporarily disable test that fails on the bots for unknown reasons.
3101 2006-09-26 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
3103 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
3104 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
3105 Moved AudioCodecType into priv
3106 Renamed all gst_basertpaudiopayload to gst_base_rtp_audio_payload prefixes
3108 2006-09-25 Wim Taymans <wim@fluendo.com>
3110 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
3111 (add_fakesink), (remove_fakesink), (pad_probe), (close_pad_link),
3112 (is_demuxer_element), (try_to_link_1), (get_our_ghost_pad),
3114 Cleanups and small leak fixes.
3115 Added Depayloaders to valid list of autopluggable elements.
3117 2006-09-25 Wim Taymans <wim@fluendo.com>
3119 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
3120 (gst_play_bin_vis_blocked), (gst_play_bin_set_property),
3121 (gen_video_element), (gen_text_element), (gen_audio_element),
3122 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
3123 (gst_play_bin_set_clock_func), (gst_play_bin_change_state):
3124 Detect NO_PREROLL state change returns and disable clock distribution to
3125 the sinks so that sync is disabled.
3126 Avoid some type checking and do simple casts instead.
3127 Small cleanups, fix some FIXMEs.
3128 Be more robust when linking user specified elements, catch an report
3129 errors. Fixes #357404.
3130 Fix some leaks in the error paths.
3132 2006-09-25 Stefan Kost <ensonic@users.sf.net>
3135 ChangeLog surgery for missing bug-number
3137 2006-09-25 Tim-Philipp Müller <tim at centricular dot net>
3139 Patch by: Peter Kjellerstedt <pkj at axis com>
3141 * gst/playback/test.c:
3142 Fix compilation with uClibc and -Werror (#357591).
3144 2006-09-25 Tim-Philipp Müller <tim at centricular dot net>
3146 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
3147 Parse dates that are followed by a time as well (#357532).
3149 * tests/check/libs/tag.c: (test_vorbis_tags):
3150 Add unit test for this.
3152 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3154 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
3155 (gst_audio_convert_transform_caps):
3156 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor):
3157 * gst/videotestsrc/videotestsrc.h:
3158 A few array const-ifications.
3160 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3162 * tests/check/Makefile.am:
3163 See if this makes the build bots happy.
3165 * tests/check/libs/cddabasesrc.c:
3168 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3170 Patch by: Young-Ho Cha <ganadist at chollian dot net>
3172 * gst/subparse/samiparse.c: (handle_start_font),
3173 (fix_invalid_entities):
3174 More case-insensitivity for certain tags; recognise entities with
3175 decimal codes as special entities as well (#357330).
3177 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3179 * gst-libs/gst/Makefile.am:
3180 Need to build tag directory before cdda.
3182 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3184 * docs/libs/gst-plugins-base-libs-sections.txt:
3185 * gst-libs/gst/cdda/Makefile.am:
3186 * gst-libs/gst/cdda/gstcddabasesrc.c:
3187 (gst_cdda_base_src_base_init):
3188 * gst-libs/gst/cdda/gstcddabasesrc.h:
3189 * gst-libs/gst/tag/tag.h:
3190 * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal),
3191 (gst_tag_register_musicbrainz_tags):
3192 Move GST_TAG_CDDA_* tags into libgsttag and make libgstcddabasesrc
3193 depend on libgsttag. This is required so we can extract/read tags like
3194 DISCID without depending on libgstcddabasesrc (which used to register
3197 * gst-libs/gst/tag/gstvorbistag.c:
3198 Add vorbiscomment mapping for CDDB_DISCID and MUSICBRAINZ_DISCID
3199 tags (also see #347848).
3201 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1):
3202 Log vorbis comments we are actually writing. Const-ify array.
3204 2006-09-23 Wim Taymans <wim@fluendo.com>
3206 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
3207 Improve buffering a bit by avoiding a deadlock because we cannot assume
3208 the underrun is always called.
3210 2006-09-23 Wim Taymans <wim@fluendo.com>
3212 Patch by: Young-Ho Cha <ganadist at chollian dot net>
3214 * gst-libs/gst/riff/riff-ids.h:
3215 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3216 (gst_riff_create_audio_template_caps):
3217 Added MPEG-4 AAC and id and caps. Fixes #357289
3218 Added WMA9 Lossless id.
3220 2006-09-22 Tim-Philipp Müller <tim at centricular dot net>
3222 * ext/gnomevfs/gstgnomevfssrc.c:
3223 Fix misleading docs addition.
3225 * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3226 Get rid of compiler warning the right way.
3228 2006-09-22 Wim Taymans <wim@fluendo.com>
3230 * gst-libs/gst/rtp/gstbasertpdepayload.c:
3231 (gst_base_rtp_depayload_finalize),
3232 (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
3233 (gst_base_rtp_depayload_push_full),
3234 (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_push),
3235 (gst_base_rtp_depayload_process),
3236 (gst_base_rtp_depayload_set_gst_timestamp),
3237 (gst_base_rtp_depayload_queue_release):
3238 * gst-libs/gst/rtp/gstbasertpdepayload.h:
3241 Refactored the process method and added methods to push from the process
3243 Use _scale functions.
3244 API: gst_base_rtp_depayload_push_ts
3245 API: gst_base_rtp_depayload_push
3247 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
3248 timestamps are uint.
3250 2006-09-22 Stefan Kost <ensonic@users.sf.net>
3252 * gst-libs/gst/interfaces/xoverlay.c:
3253 Remove unused statement from doc example.
3255 2006-09-21 Stefan Kost <ensonic@users.sf.net>
3257 * gst-libs/gst/interfaces/videoorientation.c:
3258 (gst_video_orientation_iface_init),
3259 (gst_video_orientation_get_hflip),
3260 (gst_video_orientation_get_vflip),
3261 (gst_video_orientation_get_hcenter),
3262 (gst_video_orientation_get_vcenter),
3263 (gst_video_orientation_set_hflip),
3264 (gst_video_orientation_set_vflip),
3265 (gst_video_orientation_set_hcenter),
3266 (gst_video_orientation_set_vcenter):
3267 Add since tags to new API docs, ChangeLog surgery (forgot API keyword
3270 2006-09-21 Tim-Philipp Müller <tim at centricular dot net>
3272 * tests/check/Makefile.am:
3273 * tests/check/elements/.cvsignore:
3274 * tests/check/elements/ffmpegcolorspace.c: (rgb_format_to_caps),
3275 (create_rgb_conversions), (rgb_conversion_free),
3276 (right_shift_colour), (fix_expected_colour), (check_rgb_buf),
3277 (got_buf_cb), (GST_START_TEST), (ffmpegcolorspace_suite):
3278 Add unit test for ffmpegcolorspace (RGB <=> RGB only so far),
3279 but disable for now since it doesn't pass (something wrong with
3282 2006-09-21 Wim Taymans <wim@fluendo.com>
3284 * gst/playback/gstplaybasebin.c: (group_commit),
3285 (queue_deadlock_check), (queue_overrun), (queue_threshold_reached),
3286 (queue_out_of_data), (gen_preroll_element),
3287 (preroll_remove_overrun), (probe_triggered):
3288 Refactor handling of overrun detection.
3289 Separate handling of group completion and deadlock detection when doing
3290 network buffering. This should fix some deadlocks that were not detected
3291 because the group was completed.
3292 Add more comments, improve debugging.
3294 2006-09-21 Wim Taymans <wim@fluendo.com>
3296 * tests/check/elements/gdpdepay.c: (GST_START_TEST):
3297 * tests/check/libs/audio.c:
3298 Some more compilation fixes.
3300 2006-09-21 Wim Taymans <wim@fluendo.com>
3302 * gst-libs/gst/audio/gstringbuffer.c:
3303 (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
3304 (gst_ring_buffer_read):
3305 Early morning compilation fix.
3307 2006-09-20 Wim Taymans <wim@fluendo.com>
3309 * tests/check/elements/gdpdepay.c: (GST_START_TEST):
3310 * tests/check/elements/multifdsink.c: (GST_START_TEST):
3311 * tests/check/elements/videorate.c: (GST_START_TEST):
3312 * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
3313 * tests/check/pipelines/oggmux.c: (eos_buffer_probe):
3316 2006-09-20 Stefan Kost <ensonic@users.sf.net>
3318 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
3319 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
3320 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
3321 Handcrafted merge to help CVS understanding what I changed and what
3324 2006-09-20 Stefan Kost <ensonic@users.sf.net>
3326 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
3327 (gst_xvimagesink_get_times):
3328 change colorkey behaviour back according to #354773 comment 6/7
3330 2006-09-19 Michael Smith <msmith@fluendo.com>
3332 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
3333 (gst_multi_fd_sink_class_init), (get_buffers_max), (find_limits),
3334 (gst_multi_fd_sink_recover_client),
3335 (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_set_property),
3336 (gst_multi_fd_sink_get_property):
3337 * gst/tcp/gstmultifdsink.h:
3338 Implement stubbed out properties unit-type, units-soft-max,
3339 units-max, to allow specifying maximum sizes in units other than
3343 2006-09-19 Wim Taymans <wim@fluendo.com>
3345 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3346 (gst_riff_create_audio_template_caps):
3347 Reorder the audio formats a bit for clarity.
3348 Detect and create caps for MSGSM and MSN (WAV49).
3351 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
3352 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
3353 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
3354 Small cleanups, move error handling out of normal flow for clarity.
3356 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3358 * docs/libs/gst-plugins-base-libs-docs.sgml:
3359 * docs/libs/gst-plugins-base-libs.types:
3360 * gst-libs/gst/interfaces/Makefile.am:
3361 * gst-libs/gst/interfaces/videoorientation.c:
3362 (gst_video_orientation_get_type),
3363 (gst_video_orientation_iface_init),
3364 (gst_video_orientation_get_hflip),
3365 (gst_video_orientation_get_vflip),
3366 (gst_video_orientation_get_hcenter),
3367 (gst_video_orientation_get_vcenter),
3368 (gst_video_orientation_set_hflip),
3369 (gst_video_orientation_set_vflip),
3370 (gst_video_orientation_set_hcenter),
3371 (gst_video_orientation_set_vcenter):
3372 * gst-libs/gst/interfaces/videoorientation.h:
3373 API: Add new interface to control video orientation (fixes #354908)
3375 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3377 * gst/videotestsrc/gstvideotestsrc.c:
3378 Use G_UNLIKELY in _create and log one more detail.
3380 (gst_video_test_src_get_times), (gst_video_test_src_create):
3381 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
3382 Use gst_util_uint64_scale_int in _get_times().
3384 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3386 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support)
3387 Give better warning message (add object and detail).
3389 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3391 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
3392 (gst_xvimagesink_get_times):
3393 xvimage assumed that XV_COLORKEY can be set in RGB888 format (fixes
3394 #354773), use gst_util_uint64_scale_int in _get_times()
3396 2006-09-18 Michael Smith <msmith@fluendo.com>
3398 * ext/ogg/gstoggmux.c: (gst_ogg_mux_push_buffer):
3399 Timestamps are unsigned; comparision against GST_CLOCK_TIME_NONE was
3400 always true, leading to dropping all timestamps.
3402 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3404 * ext/libvisual/visual.c: (gst_vis_src_negotiate),
3405 (gst_visual_chain), (gst_visual_change_state):
3406 update to work also with libvisual 0.4 API, fix double unref (#355914)
3408 * tools/gst-launch-ext.1.in:
3409 * tools/gst-visualise.1.in:
3410 remove references to old man-pages
3412 * tests/examples/seek/seek.c: (main):
3413 add real meadi-buttons, add tool-tips for the seek-options, arrange
3414 seek options in a table
3416 2006-09-18 Michael Smith <msmith@fluendo.com>
3418 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear),
3419 (gst_ogg_mux_push_buffer):
3420 Don't generate out-of-order timestamps from oggmux, instead clamp
3421 output timestamps to be >= the previously output ts.
3424 2006-09-18 Michael Smith <msmith@fluendo.com>
3426 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
3427 (gst_multi_fd_sink_class_init):
3428 Updates, fixes, and typo corrections for multifdsink. No functional
3431 2006-09-17 Michael Smith <msmith@fluendo.com>
3433 * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find):
3434 Don't crash on truncated files - check that we got an 8 byte buffer
3435 before trying to memcmp it.
3437 2006-09-17 Tim-Philipp Müller <tim at centricular dot net>
3439 * gst/playback/gstplaybasebin.c: (get_active_source):
3440 Make stream-switching appear instant to the application
3441 (ie. make sure that a g_object_get on 'current-foo' returns
3442 the stream previously set with g_object_set(). Totem needs
3443 this to update stream-related meta-info (like audio-codec)
3444 correctly when switching streams.
3446 2006-09-17 Tim-Philipp Müller <tim at centricular dot net>
3448 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer),
3449 (gst_alsa_mixer_ensure_track_list):
3450 Try harder to guess which mixer track is the master mixer
3451 track (instead of just taking the first one that has a pvolume).
3454 2006-09-17 Stefan Kost <ensonic@users.sf.net>
3456 reviewed by: <delete if not using a buddy>
3458 * gst-libs/gst/audio/audio.h:
3459 * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
3461 2006-09-17 Stefan Kost <ensonic@users.sf.net>
3463 * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
3464 (gst_audio_convert_transform_caps):
3465 Get structure-name just once.
3467 2006-09-17 Stefan Kost <ensonic@users.sf.net>
3469 * tests/check/elements/audioresample.c: (GST_START_TEST):
3470 * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3471 * tests/check/elements/volume.c: (GST_START_TEST):
3472 * tests/check/elements/vorbisdec.c: (GST_START_TEST):
3473 * tests/check/pipelines/oggmux.c: (validate_ogg_page), (eos_watch),
3474 (test_pipeline), (GST_START_TEST):
3475 * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
3476 * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
3477 Fix big batch of compiler warnings.
3479 2006-09-17 Stefan Kost <ensonic@users.sf.net>
3481 * ext/gnomevfs/gstgnomevfssrc.c:
3482 Add docs about icydemux usage in connection with gnomevfssrc
3484 * ext/libvisual/visual.c:
3485 * ext/ogg/gstoggaviparse.c:
3486 * ext/ogg/gstoggdemux.c:
3487 * ext/ogg/gstoggmux.c:
3488 * ext/ogg/gstoggparse.c:
3489 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
3490 * gst-libs/gst/audio/gstaudiosink.c:
3491 * gst-libs/gst/audio/gstaudiosrc.c:
3492 * gst/audiorate/gstaudiorate.c:
3493 More G_OBJECT macro fixing.
3495 * gst/audiotestsrc/gstaudiotestsrc.h:
3496 Fix wrong info in header due to copy & paste
3498 2006-09-15 Wim Taymans <wim@fluendo.com>
3500 * gst-libs/gst/audio/gstbaseaudiosink.c:
3501 (gst_base_audio_sink_get_time), (gst_base_audio_sink_callback):
3502 * gst-libs/gst/audio/gstbaseaudiosrc.c:
3503 (gst_base_audio_src_get_time), (gst_base_audio_src_fixate),
3504 (gst_base_audio_src_get_times), (gst_base_audio_src_get_offset),
3505 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
3506 Do the delay calculation in the source/sink base classes as this is
3507 specific for the capture/playback mode.
3508 Try to fixate a bit better, like round depth up to a multiple of 8
3510 Handle underruns correctly by marking DISCONT on buffers and adjusting
3511 timestamps to handle the gap.
3512 Set offset/offset_end correctly on buffers.
3514 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_pause),
3515 (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
3516 (gst_ring_buffer_read):
3517 Remove resync and underrun recovery from the ringbuffer.
3518 Fix ringbuffer read code on under/overrun.
3520 2006-09-15 Wim Taymans <wim@fluendo.com>
3522 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
3523 (gst_play_base_bin_init), (fill_buffer), (check_queue),
3524 (queue_threshold_reached), (gst_play_base_bin_set_property),
3525 (gst_play_base_bin_get_property):
3526 * gst/playback/gstplaybasebin.h:
3527 Don't use a 0 low watermark when buffering, it is catching starvation
3528 way too late. Instead, use a 3 second queue with 30 and 95
3529 percent low/high watermarks.
3530 Added queue-min-threshold property to configure low watermark.
3531 Use new _buffering message API.
3532 Make queue_threshold variable big enough to store a uint64 time value.
3533 API: playbin::queue-min-threshold property.
3535 2006-09-15 Wim Taymans <wim@fluendo.com>
3538 We require 0.10.10.1 now because of _wait_preroll().
3540 * gst-libs/gst/audio/gstbaseaudiosink.c:
3541 (gst_base_audio_sink_render):
3542 Use gst_base_sink_wait_preroll().
3544 2006-09-15 Wim Taymans <wim@fluendo.com>
3546 * ext/alsa/gstalsasink.c: (xrun_recovery), (gst_alsasink_write):
3547 * ext/alsa/gstalsasrc.c: (xrun_recovery), (gst_alsasrc_read):
3548 Use DEBUG_OBJECT more.
3550 === release 0.10.10 ===
3552 2006-09-07 Thomas Vander Stichele <thomas at apestaart dot org>
3554 patch by: Michael Smith <msmith at fluendo dot com>
3556 * gst/tcp/gstmultifdsink.c: (is_sync_frame),
3557 (gst_multi_fd_sink_client_queue_buffer),
3558 (gst_multi_fd_sink_new_client):
3559 * tests/check/elements/multifdsink.c: (GST_START_TEST),
3560 (multifdsink_suite):
3561 Fix implementation of sync-method 'next-keyframe'
3564 2006-09-07 Thomas Vander Stichele <thomas at apestaart dot org>
3566 patch by: Wim Taymans <wim at fluendo dot com>
3568 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
3569 This patch removes the RANDOM flag that was incorrectly introduced with
3570 revision 1.91. Fixes #354590
3572 2006-09-05 Tim-Philipp Müller <tim at centricular dot net>
3574 * tests/check/Makefile.am:
3575 Random variation in Makefile line to see if it makes the
3576 gen64-base-full bot any happier.
3578 2006-09-04 Tim-Philipp Müller <tim at centricular dot net>
3580 * tests/check/pipelines/oggmux.c: (oggmux_suite):
3581 Disable test that fails at the moment (killed after timeout).
3583 2006-09-04 Tim-Philipp Müller <tim at centricular dot net>
3585 Patch by: James Livingston <doclivingston at gmail.com>
3587 * tests/check/Makefile.am:
3588 * tests/check/pipelines/.cvsignore:
3589 * tests/check/pipelines/oggmux.c: (get_page_codec),
3590 (check_chain_final_state), (fail_if_audio), (validate_ogg_page),
3591 (eos_buffer_probe), (start_pipeline), (stop_pipeline), (eos_watch),
3592 (test_pipeline), (test_vorbis), (test_theora), (test_vorbis_theora),
3593 (test_theora_vorbis), (oggmux_suite):
3594 Add simple unit test for oggmux from #337026 with checking for the
3595 EOS flags disabled for the time being.
3597 2006-09-04 Wim Taymans <wim@fluendo.com>
3599 patch by: Alessandro Dessina <alessandro nnva org>
3601 * ext/ogg/gstoggmux.c:
3602 Add cmml caps to oggmux. Fixes #353912
3604 2006-09-02 Tim-Philipp Müller <tim at centricular dot net>
3606 * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3607 Returning a return value often helps. In this case, we
3608 don't need the return value anyway, so just get rid of it.
3609 Should make build bots much happier.
3611 2006-09-02 Tim-Philipp Müller <tim at centricular dot net>
3613 * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure),
3614 (paint_get_structure), (gst_video_test_src_get_size),
3615 (gst_video_test_src_smpte), (gst_video_test_src_snow),
3616 (gst_video_test_src_unicolor), (paint_setup_AYUV),
3617 (paint_hline_AYUV), (paint_setup_ARGB8888), (paint_setup_ABGR8888),
3618 (paint_setup_RGBA8888), (paint_setup_BGRA8888), (paint_hline_str4):
3619 * gst/videotestsrc/videotestsrc.h:
3620 Add support for AYUV and the various RGBA formats. Initialise
3621 fields of paintinfo structs allocated on the stack.
3623 * tests/check/elements/videotestsrc.c: (right_shift_colour),
3624 (fix_expected_colour), (check_rgb_buf), (got_buf_cb),
3625 (check_rgb_buf), (videotestsrc_suite):
3626 Add unit tests for videotestsrc's RGB output.
3628 2006-09-01 Tim-Philipp Müller <tim at centricular dot net>
3630 * gst/videotestsrc/gstvideotestsrc.c:
3631 (gst_video_test_src_pattern_get_type),
3632 (gst_video_test_src_set_pattern):
3633 * gst/videotestsrc/gstvideotestsrc.h:
3634 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor),
3635 (gst_video_test_src_black), (gst_video_test_src_white),
3636 (gst_video_test_src_red), (gst_video_test_src_green),
3637 (gst_video_test_src_blue):
3638 * gst/videotestsrc/videotestsrc.h:
3639 Add more uni-colour patterns ("white", "red", "green", and "blue").
3641 2006-09-01 Tim-Philipp Müller <tim at centricular dot net>
3643 * gst/videotestsrc/videotestsrc.c: (paint_setup_YVYU):
3644 Fix stride for YVYU, should be word-aligned (#353658).
3646 2006-08-31 Tim-Philipp Müller <tim at centricular dot net>
3648 * gst/adder/gstadder.c: (gst_adder_src_event):
3651 2006-08-31 Edward Hervey <edward@fluendo.com>
3653 * gst/adder/gstadder.c: (forward_event_func),
3654 (gst_adder_src_event), (gst_adder_collected),
3655 (gst_adder_change_state):
3656 * gst/adder/gstadder.h:
3657 Remember the start position asked in the incoming seeks, so we can
3658 output GST_EVENT_NEW_SEGMENT with a correct position value (instead
3659 of assuming it will always be 0).
3661 2006-08-31 Edward Hervey <edward@fluendo.com>
3663 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
3664 (gst_ogg_demux_finalize), (gst_ogg_demux_perform_seek),
3665 (gst_ogg_demux_loop):
3666 Send the GST_EVENT_NEW_SEGMENT from the streaming thread.
3668 2006-08-30 Tim-Philipp Müller <tim at centricular dot net>
3670 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3671 (gst_ffmpegcsp_get_unit_size):
3672 Return FALSE instead of returning a random false unit
3673 size when the format isn't known/supported (even if
3674 this shouldn't happen under normal circumstances).
3676 2006-08-29 Wim Taymans <wim@fluendo.com>
3678 Patch by: Tim-Philipp Müller <tim at centricular dot net>
3680 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create),
3681 (gst_gnome_vfs_src_start):
3682 Try harder to get the size from a uri by using _info_uri() when
3683 _info_from_handle() does not give us enough info.
3684 Also follow symlinks when getting the size.
3685 Partially Fixes #332864.
3687 2006-08-29 Tim-Philipp Müller <tim at centricular dot net>
3689 Patch by: Viktor Peters <viktor dot peters at gmail dot com>
3691 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
3692 (gst_alsa_mixer_update), (gst_alsa_mixer_get_volume),
3693 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
3694 (gst_alsa_mixer_set_record):
3695 * ext/alsa/gstalsamixertrack.c:
3696 (gst_alsa_mixer_track_update_alsa_capabilities),
3697 (alsa_track_has_cap), (gst_alsa_mixer_track_new),
3698 (gst_alsa_mixer_track_update):
3699 * ext/alsa/gstalsamixertrack.h:
3700 Improve and fix mixer track handling, in particular better handling
3701 of alsa's pvolume/pswitch/cvolume/cswitch capabilities; create
3702 separate track objects for tracks that have both capture and playback
3703 volume (and label them differently as well so they're not mistakenly
3704 assumed to be duplicates); classify mixer tracks that only affect
3705 the audible volume of something (rather than the capture volume)
3706 as playback tracks. Redefine/fix meaning of RECORD and MUTE flags
3707 for capture tracks to correspond to alsa-pswitch alsa-cswitch
3708 (following the meaning documented in the mixer interface header
3709 file); add support for alsa's exclusive cswitch groups; update/sync
3710 state/flags better if mixer settings are changed by another
3711 application. Fixes #336075.
3713 2006-08-29 Tim-Philipp Müller <tim at centricular dot net>
3715 * gst/playback/gstplaybin.c:
3716 Improve docs: add section about BUFFERING messages sent by playbin.
3718 2006-08-29 Michael Smith <msmith@fluendo.com>
3720 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_push_buffer),
3721 (gst_vorbis_enc_buffer_check_discontinuous),
3722 (gst_vorbis_enc_chain):
3723 Ignore explicit DISCONT marked on buffers (which is often spurious,
3724 particularly when using multiple segments), in favour of solely
3725 using the timestamps/durations.
3727 2006-08-29 Edward Hervey <edward@fluendo.com>
3729 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
3730 Don't rely on incoming buffers offset anymore, since it is completely
3731 broken when using multiple segments.
3732 Instead convert the incoming buffers timestamp to running time, and
3733 then convert that value to the offsets.
3734 Also inform GstSegment of the last outputted stop position, which is
3735 needed if we received several segments with an unknown stop value.
3737 2006-08-29 Thomas Vander Stichele <thomas at apestaart dot org>
3739 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
3740 fix buffer unreffing on a header push failure
3742 2006-08-28 Wim Taymans <wim@fluendo.com>
3744 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_sink_event),
3745 (gst_audio_rate_chain):
3746 Make the metadata of the buffer writable before changing its
3749 2006-08-28 Wim Taymans <wim@fluendo.com>
3751 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
3752 (gst_audio_rate_setcaps), (gst_audio_rate_init),
3753 (gst_audio_rate_sink_event), (gst_audio_rate_src_event),
3754 (gst_audio_rate_chain), (gst_audio_rate_change_state):
3755 Fix audiorate some more.
3756 Reset and resync counters on flush and READY.
3757 Handle the DISCONT flag correctly.
3758 Use GstSegment to track position.
3759 Fail when not negotiated.
3762 2006-08-25 Michael Smith <msmith@fluendo.com>
3764 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
3766 Remove accidently included debug line.
3768 2006-08-25 Wim Taymans <wim@fluendo.com>
3770 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
3772 If a buffer is received with no caps, make the buffer metadata
3773 writable and set the caps, making sure that we don't screw up the
3776 2006-08-25 Michael Smith <msmith@fluendo.com>
3778 * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset),
3779 (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_chain):
3780 Fix memory leaks and misleading debug messages, add a couple of
3783 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats),
3784 (gst_multi_fd_sink_render):
3785 Do not use gst_buffer_make_writable() in a basesink render method,
3786 as it may incorrectly unref the buffer. Instead, use convoluted
3787 dance to avoid copying the buffer except when we need to.
3789 2006-08-25 Michael Smith <msmith@fluendo.com>
3791 * ext/vorbis/vorbisenc.c:
3792 (gst_vorbis_enc_buffer_check_discontinuous):
3793 Allow very small discontinuities in the timestamps. These we can't
3794 do anything useful with anyway (because vorbis's timestamps have
3795 only sample granularity), and are commonly produced by elements with
3796 minor bugs. Allow up to 1/2 a sample out.
3799 2006-08-24 Wim Taymans <wim@fluendo.com>
3801 * tests/examples/seek/seek.c: (seek_cb), (start_seek), (stop_seek),
3802 (play_scrub_toggle_cb), (main):
3803 Add a checkbox to enable play scrubbing. Makes it possible to disable
3806 2006-08-23 Stefan Kost <ensonic@users.sf.net>
3808 * tests/check/elements/.cvsignore:
3811 2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
3813 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
3814 (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init),
3815 (gst_ogm_parse_class_init), (gst_ogm_parse_dispose),
3816 (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
3817 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
3818 (gst_ogm_parse_stream_header), (gst_ogm_parse_comment_packet),
3819 (gst_ogm_text_parse_strip_trailing_zeroes),
3820 (gst_ogm_parse_data_packet), (gst_ogm_parse_chain),
3821 (gst_ogm_parse_sink_event), (gst_ogm_parse_change_state):
3822 Refactor ogm parse, do better input checking, misc. clean-ups.
3823 Cache incoming events and push them once the source pad has
3824 been created. Don't pass unterminated strings to sscanf().
3825 Strip trailing zeroes from subtitle text output, since they
3826 are not valid UTF-8. Don't push vorbiscomment packets on
3827 the subtitle text pad. Output perfect streams if possible.
3829 2006-08-23 Wim Taymans <wim@fluendo.com>
3831 * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
3832 Waits for tasks to settle down so that we clean up correctly for
3835 2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
3837 * tests/check/libs/tag.c: (GST_START_TEST), (taglists_are_equal):
3838 Unit test fixes: \377 is more likely to fit into 8 bits than \777;
3839 actually return return value in taglists_are_equal.
3841 2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
3843 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
3844 Fix crash due to broken bitstream parsing on x86-64: can't make
3845 any assumptions about sizeof(struct) due to alignment/packing
3846 differences on different architectures. Fixes #351790.
3848 2006-08-22 Wim Taymans <wim@fluendo.com>
3850 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
3851 (gst_riff_parse_chunk), (gst_riff_parse_file_header),
3852 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
3853 (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
3854 (gst_riff_parse_info):
3855 Protect public functions against bad input.
3859 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
3861 * gst-libs/gst/riff/riff-ids.h:
3862 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
3863 Add voxware audio IDs (even if we can't play it) (#351795).
3865 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
3867 * gst-libs/gst/riff/riff-media.c:
3868 (gst_riff_create_video_template_caps),
3869 (gst_riff_create_audio_template_caps),
3870 (gst_riff_create_iavs_template_caps):
3871 Const-ify some arrays and use G_N_ELEMENTS instead
3872 of wasting oodles of RAM on terminator bits.
3874 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
3876 * gst-libs/gst/tag/gstvorbistag.c:
3877 (gst_tag_list_to_vorbiscomment_buffer):
3878 * tests/check/libs/tag.c: (GST_START_TEST):
3879 And the same for _to_vorbiscomment_buffer(): allow
3880 id_data_len == 0 for speex.
3882 2006-08-21 Thomas Vander Stichele <thomas at apestaart dot org>
3885 * docs/plugins/Makefile.am:
3886 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3887 * docs/plugins/gst-plugins-base-plugins-sections.txt:
3888 * docs/plugins/inspect/plugin-gdp.xml:
3889 * gst/gdp/Makefile.am:
3890 * tests/check/Makefile.am:
3891 Move GDP plugin to -base from -bad. Closes #347783.
3893 2006-08-21 Tim-Philipp Müller <tim at centricular dot net>
3895 * gst-libs/gst/tag/gstvorbistag.c:
3896 (gst_tag_list_from_vorbiscomment_buffer):
3897 Allow id_data_len == 0 (needed for vorbis comments in Speex files).
3898 Also add some checks to make sure we don't memcmp() beyond the end of
3899 vorbiscomment buffer if the ID to check for is larger than the buffer.
3901 * tests/check/libs/tag.c: (GST_START_TEST):
3902 Some more tests for gst_tag_list_from_vorbiscomment_buffer().
3904 2006-08-21 Tim-Philipp Müller <tim at centricular dot net>
3906 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1),
3907 (gst_vorbis_enc_set_metadata):
3908 Use vorbis comment utility functions from libgsttag
3909 instead of re-inventing the wheel (partially fixes #347091).
3911 2006-08-21 Jan Schmidt <thaytan@mad.scientist.com>
3913 * tests/check/elements/audioconvert.c: (GST_START_TEST):
3914 Fix leaks. Wait for state transitions that might happen ASYNC, as well
3917 2006-08-21 Wim Taymans <wim@fluendo.com>
3919 * docs/libs/Makefile.am:
3920 * docs/libs/gst-plugins-base-libs-sections.txt:
3921 * docs/libs/gst-plugins-base-libs.types:
3922 Don't try to GObject scan the netbuffer as it's not a GObject.
3925 * gst-libs/gst/netbuffer/gstnetbuffer.c:
3926 * gst-libs/gst/netbuffer/gstnetbuffer.h:
3927 Document GstNetBuffer.
3929 2006-08-21 Stefan Kost <ensonic@users.sf.net>
3931 * tests/check/elements/audioconvert.c: (GST_START_TEST),
3932 (audioconvert_suite):
3933 Add testcase for caps-size-explosion
3935 2006-08-20 Stefan Kost <ensonic@users.sf.net>
3937 * gst/audioconvert/gstaudioconvert.c:
3938 (gst_audio_convert_get_unit_size), (set_structure_widths):
3939 Lower debug, use g_assert in _get_unit_size
3941 * gst/audioresample/gstaudioresample.c:
3942 (audioresample_get_unit_size):
3943 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3944 (gst_ffmpegcsp_get_unit_size):
3945 * gst/videoscale/gstvideoscale.c: (gst_video_scale_get_unit_size):
3946 use g_assert in _get_unit_size
3948 2006-08-18 Wim Taymans <wim@fluendo.com>
3950 * docs/libs/gst-plugins-base-libs-sections.txt:
3951 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_set_packet_len),
3952 (gst_rtp_buffer_pad_to), (gst_rtp_buffer_get_payload_subbuffer),
3953 (gst_rtp_buffer_get_payload_buffer):
3954 * gst-libs/gst/rtp/gstrtpbuffer.h:
3955 Document GstRTPBuffer.
3956 Added function to efficiently strip payload headers.
3957 API: gst_rtp_buffer_get_payload_subbuffer()
3959 2006-08-17 Tim-Philipp Müller <tim at centricular dot net>
3961 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
3962 (gst_tag_to_vorbis_comments):
3963 Serialise unknown vorbis comments into GST_TAG_EXTENDED_COMMENT
3964 tags and deserialise them properly as well (#347091).
3965 Add some more gtk-doc blurbs and also some g_return_if_fail().
3967 * tests/check/libs/tag.c: (GST_START_TEST),
3968 (back_to_vorbis_comments), (taglists_are_equal), (tag_suite):
3971 2006-08-17 Wim Taymans <wim@fluendo.com>
3973 * ext/ogg/Makefile.am:
3974 * ext/ogg/gstogg.c: (plugin_init):
3975 * ext/ogg/gstoggaviparse.c: (gst_ogg_avi_parse_get_type),
3976 (gst_ogg_avi_parse_base_init), (gst_ogg_avi_parse_class_init),
3977 (gst_ogg_avi_parse_init), (gst_ogg_avi_parse_finalize),
3978 (gst_ogg_avi_parse_setcaps), (gst_ogg_avi_parse_event),
3979 (gst_ogg_avi_parse_push_packet), (gst_ogg_avi_parse_chain),
3980 (gst_ogg_avi_parse_change_state), (gst_ogg_avi_parse_plugin_init):
3981 Added ogg-in-avi parser element. Fixes #140139.
3983 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
3984 Fixed a bug in oggdemux debug code.
3986 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3987 (gst_riff_create_audio_template_caps):
3988 Recognise Ogg in the AVI extensible wave format.
3990 2006-08-17 Tim-Philipp Müller <tim at centricular dot net>
3992 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
3993 Make buffer durations add up (duration should be next_ts-ts for
3994 perfect streams). Fixes CD ripping to Ogg/Vorbis with vorbisenc
3997 * tests/check/libs/cddabasesrc.c: (gst_cd_foo_src_close),
3998 (test_buffer_timestamps), (cddabasesrc_suite):
3999 Add unit test for the above.
4001 * tests/check/Makefile.am:
4002 Don't know why cddabasesrc test was in VALGRIND_TO_FIX, remove
4003 to see what happens.
4005 2006-08-16 Wim Taymans <wim@fluendo.com>
4007 * ext/alsa/gstalsasink.c: (gst_alsasink_set_property),
4008 (gst_alsasink_open):
4009 * ext/alsa/gstalsasrc.c: (gst_alsasrc_set_property),
4011 Avoid setting and using a NULL device name.
4012 Print more info when we fail to open a device.
4014 2006-08-16 Tim-Philipp Müller <tim at centricular dot net>
4016 * docs/libs/gst-plugins-base-libs-sections.txt:
4017 * gst-libs/gst/tag/tag.h:
4018 * gst-libs/gst/tag/tags.c: (gst_tag_parse_extended_comment):
4019 API: add gst_tag_parse_extended_comment() (#351426).
4021 * tests/check/Makefile.am:
4022 * tests/check/libs/.cvsignore:
4023 * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite), (main):
4024 Add unit test for gst_tag_parse_extended_comment().
4026 2006-08-15 Tim-Philipp Müller <tim at centricular dot net>
4028 * sys/ximage/ximagesink.c: (gst_ximagesink_get_property):
4029 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_property):
4032 2006-08-15 Tim-Philipp Müller <tim at centricular dot net>
4034 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4035 * docs/plugins/gst-plugins-base-plugins-sections.txt:
4036 * docs/plugins/gst-plugins-base-plugins.args:
4037 * gst/playback/gstplaybin.c:
4040 * docs/plugins/inspect/plugin-adder.xml:
4041 * docs/plugins/inspect/plugin-alsa.xml:
4042 * docs/plugins/inspect/plugin-audioconvert.xml:
4043 * docs/plugins/inspect/plugin-audiorate.xml:
4044 * docs/plugins/inspect/plugin-audioresample.xml:
4045 * docs/plugins/inspect/plugin-audiotestsrc.xml:
4046 * docs/plugins/inspect/plugin-cdparanoia.xml:
4047 * docs/plugins/inspect/plugin-decodebin.xml:
4048 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
4049 * docs/plugins/inspect/plugin-gnomevfs.xml:
4050 * docs/plugins/inspect/plugin-ogg.xml:
4051 * docs/plugins/inspect/plugin-pango.xml:
4052 * docs/plugins/inspect/plugin-playbin.xml:
4053 * docs/plugins/inspect/plugin-subparse.xml:
4054 * docs/plugins/inspect/plugin-tcp.xml:
4055 * docs/plugins/inspect/plugin-theora.xml:
4056 * docs/plugins/inspect/plugin-typefindfunctions.xml:
4057 * docs/plugins/inspect/plugin-video4linux.xml:
4058 * docs/plugins/inspect/plugin-videorate.xml:
4059 * docs/plugins/inspect/plugin-videoscale.xml:
4060 * docs/plugins/inspect/plugin-videotestsrc.xml:
4061 * docs/plugins/inspect/plugin-volume.xml:
4062 * docs/plugins/inspect/plugin-vorbis.xml:
4063 * docs/plugins/inspect/plugin-ximagesink.xml:
4064 * docs/plugins/inspect/plugin-xvimagesink.xml:
4065 Update to CVS version.
4067 2006-08-14 Tim-Philipp Müller <tim at centricular dot net>
4069 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
4070 (gst_play_bin_set_property), (gst_play_bin_get_property),
4071 (value_list_append_structure_list),
4072 (gst_play_bin_handle_redirect_message),
4073 (gst_play_bin_handle_message):
4074 API: GstPlayBin::connection-speed
4075 Add "connection-speed" property; re-order redirect messages with
4076 multiple redirect locations depending on the minimum bitrate if
4077 that information is available and a connection speed is set
4080 2006-08-14 Tim-Philipp Müller <tim at centricular dot net>
4082 * gst/playback/gstplaybin.c:
4083 Update max volume to the same value that the volume element uses.
4085 2006-08-14 Wim Taymans <wim@fluendo.com>
4087 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
4090 2006-08-14 Wim Taymans <wim@fluendo.com>
4092 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
4093 (gst_ogg_demux_get_next_page), (gst_ogg_demux_perform_seek),
4094 (gst_ogg_demux_read_chain), (gst_ogg_demux_loop):
4095 Add some more debug info.
4096 Don't crash when a seek failed.
4097 Actually return the result of the seek instead of TRUE.
4098 Ignore multiple BOS pages with the same serial so that we don't create
4099 the same stream multiple times.
4100 Post an error when we fail to do the initial seek.
4102 2006-08-13 Wim Taymans <wim@fluendo.com>
4104 * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
4105 (gst_alsa_detect_channels), (gst_alsa_probe_supported_formats):
4108 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
4109 (gst_alsa_mixer_new):
4110 Remove hack that always set the device to hw:0*.
4111 Properly find the card name for whatever device was configured.
4112 Do some better debugging.
4115 * ext/alsa/gstalsamixerelement.c:
4116 (gst_alsa_mixer_element_set_property),
4117 (gst_alsa_mixer_element_change_state):
4119 Handle setting of a NULL device name better.
4121 2006-08-11 Wim Taymans <wim@fluendo.com>
4123 * gst/adder/gstadder.c:
4124 Don't clip float values. Fixes #350900.
4126 2006-08-11 Andy Wingo <wingo@pobox.com>
4128 * gst/tcp/gsttcp.c: Really fix the build?
4130 * gst/tcp/gsttcp.h: For now, always disable deprecation here --
4133 2006-08-10 Tim-Philipp Müller <tim at centricular dot net>
4135 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes):
4136 Float caps shouldn't have a "signed" field.
4138 2006-08-10 Tim-Philipp Müller <tim at centricular dot net>
4140 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query):
4141 Implement SEEKING query in its most basic form, so that we can
4142 at least check if we're seekable or not (#350655).
4144 2006-08-09 Tim-Philipp Müller <tim at centricular dot net>
4146 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
4147 The checks here are not even close to anything that would
4148 justify MAXIMUM probability, lowering to POSSIBLE until someone
4149 fixes the checks (case at hand: quicktime redirection files
4150 might start with 00 00 01 XX and pass the checks here just
4153 2006-08-08 Tim-Philipp Müller <tim at centricular dot net>
4155 Patch by: Sjoerd Simons <sjoerd at luon net>
4157 * gst/typefind/gsttypefindfunctions.c: (multipart_type_find):
4158 Better detection for multipart/x-mixed-replace: accept leading
4159 whitespaces before the boundary marker as well (as our very own
4160 multipartmux used to produce) (#349068).
4162 2006-08-07 Tim-Philipp Müller <tim at centricular dot net>
4164 Patch by: Young-Ho Cha <ganadist at chollian net>
4166 * gst-libs/gst/riff/riff-ids.h:
4167 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
4168 (gst_riff_create_audio_template_caps):
4169 Detect DTS audio streams (#350157).
4171 2006-08-05 Andy Wingo <wingo@pobox.com>
4173 * ext/theora/gsttheoraparse.h:
4174 * ext/theora/theoraparse.c (gst_theora_parse_class_init)
4175 (theora_parse_dispose, theora_parse_set_property)
4176 (theora_parse_get_property, theora_parse_munge_granulepos)
4177 (theora_parse_push_buffer, theora_parse_change_state):
4178 API: GstTheoraParse::synchronization-points
4179 Add a property 'synchronization-points' to fix badly synchronized oggs.
4181 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
4183 * tests/check/Makefile.am:
4184 * tests/check/libs/.cvsignore:
4185 * tests/check/libs/audio.c: (structure_contains_channel_positions),
4186 (fixed_caps_have_channel_positions), (GST_START_TEST),
4187 (audio_suite), (main):
4188 Add a few tests for the channel position stuff in libgstaudio.
4190 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
4192 * ext/alsa/gstalsa.c: (caps_add_channel_configuration),
4193 (gst_alsa_detect_channels):
4194 * ext/alsa/gstalsasink.c:
4195 Add support for cards that (only) do more than 8 channels,
4196 like the Delta 44 (#345188).
4198 * gst-libs/gst/audio/multichannel.c:
4199 (gst_audio_check_channel_positions):
4200 * gst-libs/gst/audio/multichannel.h:
4201 API: add GST_AUDIO_CHANNEL_POSITION_NONE, which stands for an
4202 unspecified channel position and cannot be combined with any
4203 of the other audio channel positions; adjust position layout
4204 checks accordingly (#345188).
4206 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
4208 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4209 Recognise ancient RealAudio files (see #349779).
4211 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
4213 Patch by: Jens Granseuer <jensgr at gmx net>
4215 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4216 Add typefinder for Interplay's MVE format (#348973).
4218 2006-08-02 Wim Taymans <wim@fluendo.com>
4220 Patch by: Marcel Moreaux <marcelm at luon dot net>
4222 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4223 (gst_base_rtp_depayload_add_to_queue):
4224 * gst-libs/gst/rtp/gstbasertpdepayload.h:
4225 Handle RTP sequence number rollover.
4226 Disable jitterbuffer by default.
4228 2006-07-28 Jan Schmidt <thaytan@mad.scientist.com>
4230 * gst/audioresample/gstaudioresample.c: (audioresample_stop),
4231 (audioresample_set_caps):
4232 Don't leak references to the incoming caps. Clean them up when
4235 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
4236 (gst_video_scale_finalize):
4237 Don't leak our temporary pixel buffer.
4239 * tests/check/Makefile.am:
4240 * tests/check/pipelines/simple-launch-lines.c: (run_pipeline),
4241 (GST_START_TEST), (simple_launch_lines_suite):
4243 Fix leaks and re-enable the test for valgrind checking.
4245 2006-07-28 Tim-Philipp Müller <tim at centricular dot net>
4247 Patch by: Sjoerd Simons <sjoerd at luon net>
4249 * gst/typefind/gsttypefindfunctions.c: (multipart_type_find),
4251 Add typefind function for multipart/x-mixed-replace (#348916).
4253 2006-07-28 Wim Taymans <wim@fluendo.com>
4255 * gst/adder/gstadder.c: (gst_adder_setcaps),
4256 (gst_adder_query_duration):
4257 Fix leak in duration query.
4258 Reflow some docs and notes.
4260 2006-07-28 Michael Smith <msmith@fluendo.com>
4262 * tests/check/pipelines/vorbisenc.c: (GST_START_TEST),
4264 Enable Andy's extra vorbisenc test, now that it passes. Also fix one
4267 2006-07-28 Michael Smith <msmith@fluendo.com>
4269 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps),
4270 (gst_vorbis_enc_sink_getcaps), (gst_vorbis_enc_buffer_from_packet),
4271 (gst_vorbis_enc_push_buffer),
4272 (gst_vorbis_enc_buffer_check_discontinuous),
4273 (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
4274 * ext/vorbis/vorbisenc.h:
4275 Handle discontinuities in the input vorbis stream correctly,
4276 so that the output is properly timestamped (and has good granulepos
4277 values). Needs some oggmux fixes too.
4279 2006-07-27 Wim Taymans <wim@fluendo.com>
4281 patch by: Kai Vehmanen <kv2004 eca cx>
4283 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4284 (gst_base_rtp_depayload_chain),
4285 (gst_base_rtp_depayload_handle_sink_event),
4286 (gst_base_rtp_depayload_change_state):
4287 Don't send multiple newsegments with different formats.
4290 2006-07-26 Wim Taymans <wim@fluendo.com>
4292 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
4293 (gst_ogg_demux_do_seek), (gst_ogg_demux_read_chain):
4294 Make seeking in ogg more accurate again by doing the more correct
4295 granuletime to stream time conversion.
4297 2006-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
4299 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
4300 (gst_multi_fd_sink_new_client):
4301 debug a little more understandably
4302 do not use goto as a substitute for break, especially if
4303 break is also being used
4305 2006-07-26 Tim-Philipp Müller <tim at centricular dot net>
4307 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
4308 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
4309 Remove GLib-2.6 compatibility cruft.
4311 2006-07-24 Wim Taymans <wim@fluendo.com>
4313 * gst-libs/gst/audio/gstbaseaudiosink.c:
4314 (gst_base_audio_sink_render):
4315 Don't try to align a sample to an unknown value.
4317 2006-07-24 Wim Taymans <wim@fluendo.com>
4319 * gst-libs/gst/audio/gstbaseaudiosink.c:
4320 (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
4321 When the audio clock is slaved to another clock, never try to align
4322 samples but trust the rate interpolation algorithm.
4324 2006-07-24 Wim Taymans <wim@fluendo.com>
4326 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4327 Don't try to calculate silence samples, base class does this much
4330 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4331 (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps),
4332 (gst_ring_buffer_acquire):
4333 Calculate silence samples correctly.
4335 * gst-libs/gst/audio/gstringbuffer.h:
4338 2006-07-22 Tim-Philipp Müller <tim at centricular dot net>
4340 * gst/typefind/gsttypefindfunctions.c: (xml_check_first_element):
4341 Limit search for the first markup tag to the first few kB of
4342 the file. If we don't find one there, it's highly unlikely that
4343 this is an XML(-ish) file.
4345 2006-07-21 Andy Wingo <wingo@pobox.com>
4347 * tests/check/pipelines/theoraenc.c (test_discontinuity): Similar
4348 test to the one in vorbisenc. Also commented out.
4350 * tests/check/pipelines/vorbisenc.c:
4351 (test_discontinuity): New test, commented out until Mike lands
4352 some elite vorbisenc patches.
4354 * tests/check/pipelines/theoraenc.c: Port to bufferstraw.
4355 Bufferstraw was actually factored out of these tests. Now we share
4358 * configure.ac (GST_MAJORMINOR): Rev core requirements to 0.10.9.1
4359 for bufferstraw addition to gstcheck.
4361 2006-07-21 Wim Taymans <wim@fluendo.com>
4363 * ext/theora/theoradec.c: (clip_buffer):
4366 2006-07-21 Wim Taymans <wim@fluendo.com>
4368 * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
4369 (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
4370 (gst_audioringbuffer_release), (gst_audioringbuffer_stop):
4372 Avoid type casting when we can.
4374 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_dispose):
4377 2006-07-20 Tim-Philipp Müller <tim at centricular dot net>
4379 * ext/alsa/gstalsamixerelement.c:
4380 (gst_alsa_mixer_element_change_state):
4381 Make state change fail if the specified device can't be opened
4384 2006-07-20 Wim Taymans <wim@fluendo.com>
4386 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
4387 (cb_newpad), (main):
4388 Example of a small audio/video player using decodebin.
4390 2006-07-20 Stefan Kost <ensonic@users.sf.net>
4392 * gst-libs/gst/riff/riff-ids.h:
4395 2006-07-19 Wim Taymans <wim@fluendo.com>
4397 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4398 (gst_base_rtp_depayload_chain),
4399 (gst_base_rtp_depayload_change_state):
4400 Don't assert when not negotiated but post a meaningfull
4401 error message. Fixes #347918.
4403 * gst-libs/gst/rtp/gstbasertppayload.c:
4404 Add comment about better default MTU size.
4406 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
4407 Small cleanups, start docs.
4409 2006-07-19 Tim-Philipp Müller <tim at centricular dot net>
4411 Patch by: Martin Szulecki
4413 * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_property):
4414 If "device-name" is requested and the device is not
4415 open, try to temporarily open it to obtain this
4416 information (#342494).
4418 2006-07-19 Tim-Philipp Müller <tim at centricular dot net>
4420 * gst-libs/gst/tag/gstid3tag.c:
4421 Add TSSE <=> GST_TAG_ENCODER mapping (see #347898).
4423 * gst-libs/gst/tag/gsttageditingprivate.h:
4424 * gst-libs/gst/tag/gstvorbistag.c:
4425 Some more random const-ifications.
4427 2006-07-18 Stefan Kost <ensonic@users.sf.net>
4429 * gst-libs/gst/riff/riff-ids.h:
4430 * gst-libs/gst/riff/riff-media.c:
4431 (gst_riff_create_video_template_caps):
4432 Add more FOURCCs (sort list to make stuff easier to find),
4433 add comment what those 16 bytes in struct _gst_riff_strh according to
4436 2006-07-17 Tim-Philipp Müller <tim at centricular dot net>
4438 * gst-libs/gst/audio/multichannel.c:
4439 (gst_audio_check_channel_positions),
4440 (gst_audio_fixate_channel_positions):
4441 Const-ify two arrays.
4443 2006-07-17 Tim-Philipp Müller <tim at centricular dot net>
4445 * ext/alsa/gstalsa.c: (caps_add_channel_configuration):
4446 Fix typo, so that alsasink also advertises 8 channels
4447 if that's supported (tags: can, worms, open, alsa, ph34r).
4449 2006-07-17 Wim Taymans <wim@fluendo.com>
4451 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
4452 (gst_ogg_pad_submit_packet), (gst_ogg_demux_read_chain):
4453 *sigh*, when is the compiler going to warn when the comments
4454 are out-of-sync with the code.. Refix case of busted theora
4455 headers with 0 granule pos.
4457 2006-07-14 Wim Taymans <wim@fluendo.com>
4459 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4460 (gst_base_rtp_depayload_wait),
4461 (gst_base_rtp_depayload_change_state),
4462 (gst_base_rtp_depayload_set_property),
4463 (gst_base_rtp_depayload_get_property):
4464 Fix 99% cpu load by waiting for absolute times on the
4465 clock. Fixes #347300.
4467 2006-07-14 Andy Wingo <wingo@pobox.com>
4469 * ext/theora/gsttheoraparse.h:
4470 * ext/theora/theoraparse.c (theora_parse_drain_event_queue)
4471 (theora_parse_push_headers, theora_parse_clear_queue)
4472 (theora_parse_drain_queue_prematurely, )
4473 (theora_parse_sink_event, theora_parse_change_state): Queue events
4474 until we initialized our state, like in vorbisparse.
4476 * ext/vorbis/vorbisparse.h:
4477 * ext/vorbis/vorbisparse.c (vorbis_parse_drain_event_queue)
4478 (vorbis_parse_push_headers, vorbis_parse_clear_queue)
4479 (vorbis_parse_drain_queue_prematurely, )
4480 (vorbis_parse_sink_event, vorbis_parse_change_state): Queue events
4481 until we have initialized our state. Fixes seeking after an
4484 2006-07-14 Andy Wingo <wingo@pobox.com>
4486 Patch by: Iain Holmes <iaingnome@gmail.com>
4488 * ext/ogg/gstoggdemux.c (gst_ogg_demux_finalize): Fix memleak.
4490 2006-07-14 Jan Schmidt <thaytan@mad.scientist.com>
4493 Bump nano back to CVS
4495 === release 0.10.9 ===
4497 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
4500 releasing 0.10.9, "I walk the line"
4502 2006-07-14 Michael Smith <msmith@fluendo.com>
4504 * tests/check/pipelines/vorbisenc.c: (stop_pipeline):
4505 Move a g_cond_signal to earlier to avoid sometimes deadlocking
4506 (commonly happens when running this test under valgrind) when trying
4507 to remove the buffer probe.
4509 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
4511 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
4512 Fix missing g_unlock from the previous commit
4514 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
4516 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
4517 (gst_ximagesink_change_state):
4518 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
4519 (gst_xvimagesink_change_state):
4520 Implement a locking order to ensure we always take the object lock
4521 before the x_lock and never vice-versa.
4523 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
4525 * gst/playback/gstdecodebin.c: (find_compatibles):
4526 Fix a caps leak when linking (#347304)
4528 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
4529 (gst_ximagesink_ximage_destroy), (gst_ximagesink_xcontext_clear),
4530 (gst_ximagesink_change_state):
4531 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
4532 (gst_xvimage_buffer_finalize), (gst_xvimagesink_check_xshm_calls),
4533 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
4534 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_change_state):
4535 Don't leak shared memory resources. Use the object lock to protect
4536 against the xcontext disappearing while returning a buffer from the
4539 2006-07-12 Edward Hervey <edward@fluendo.com>
4541 * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize),
4542 (vorbis_handle_comment_packet):
4543 gst_tag_list_merge() returns a new object. Take that into account when
4544 using it. This avoids memleak.
4545 Revert previous commit which is not needed.
4547 2006-07-12 Edward Hervey <edward@fluendo.com>
4549 * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize):
4550 Reset the decoder in finalize so that all fields get cleared.
4552 2006-07-12 Wim Taymans <wim@fluendo.com>
4554 * gst-libs/gst/audio/gstbaseaudiosrc.c:
4555 (gst_base_audio_src_set_clock),
4556 (gst_base_audio_src_check_get_range), (gst_base_audio_src_create):
4557 Don't try to post an error message when setting the clock fails
4558 as this can happen when adding an element to a bin which will then
4559 deadlock. Fixes #347296.
4561 2006-07-12 Edward Hervey <edward@fluendo.com>
4563 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
4564 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
4565 (vorbis_handle_type_packet):
4566 Post tag messages on the bus even if we're not initialized.
4567 If we're not initialized, we still postpone the event pushing of tags.
4569 2006-07-12 Wim Taymans <wim@fluendo.com>
4571 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4572 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4573 (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
4574 Revert last two changes that broke the freeze.
4576 2006-07-12 Wim Taymans <wim@fluendo.com>
4578 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4579 basesink calculates silence sample correctly for us.
4581 2006-07-12 Wim Taymans <wim@fluendo.com>
4583 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4584 (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
4585 Calculate correct silence samples so we don't fill our ringbuffer
4588 2006-07-12 Edward Hervey <edward@fluendo.com>
4590 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
4591 (gst_vorbis_dec_reset), (vorbis_dec_sink_event),
4592 (vorbis_handle_comment_packet), (vorbis_handle_type_packet):
4593 * ext/vorbis/vorbisdec.h:
4594 Delay sending events (newsegment, tags) until the decoder is properly
4598 2006-07-11 Jan Schmidt <thaytan@mad.scientist.com>
4600 * tests/check/elements/audioconvert.c: (get_float_mc_caps),
4601 (get_int_mc_caps), (GST_START_TEST), (audioconvert_suite):
4602 Patch from #347221 adding a test for audioconvert
4605 2006-07-11 Tim-Philipp Müller <tim at centricular dot net>
4607 * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
4608 (gst_ssa_parse_parse_line):
4609 Don't include the terminating NUL in the buffer size,
4610 it's only there for extra paranoia (would add random
4611 '*' characters at the end of each subtitle since the
4612 terminator itself is not valid UTF-8 technically).
4613 Also fix indenting after boilerplate macro.
4615 2006-07-10 Tim-Philipp Müller <tim at centricular dot net>
4617 * gst/playback/gstdecodebin.c: (close_pad_link):
4618 Also emit 'unknown-type' signal (which should really be
4619 called unhandled-type) if we found potential decoders/demuxers
4620 in the registry but none of them worked in the end (as in the
4621 case where the plugins don't exist any longer but are still
4622 listed in the registry). Fixes #329798.
4624 2006-07-08 Andy Wingo <wingo@pobox.com>
4626 * theoraparse.c (theora_parse_push_buffer)
4627 (theora_parse_drain_queue_prematurely, theora_parse_drain_queue):
4628 Add some more debugging. Fix granulepos reconstruction in the face
4631 2006-07-06 Wim Taymans <wim@fluendo.com>
4633 * gst-libs/gst/audio/gstbaseaudiosink.c:
4634 (gst_base_audio_sink_class_init),
4635 (gst_base_audio_sink_provide_clock):
4636 Use gobject_class instead of G_OBJECT_CLASS (klass)
4638 * gst-libs/gst/audio/gstbaseaudiosrc.c:
4639 (gst_base_audio_src_class_init), (gst_base_audio_src_init),
4640 (gst_base_audio_src_set_clock), (gst_base_audio_src_provide_clock),
4641 (gst_base_audio_src_get_time),
4642 (gst_base_audio_src_check_get_range), (gst_base_audio_src_create),
4643 (gst_base_audio_src_create_ringbuffer):
4644 Fix latency and buffer-time constants and properties ala basesink.
4645 Implement pull based scheduling. Fixes #346527.
4646 Set default blocksize in GstBaseSrc to 0, we default to pushing out
4648 Refuse slaving to another clock instead of silently not working.
4649 Only provide a clock when we are actually able to do so.
4650 Various small cleanups and compiler hints.
4652 2006-07-06 Tim-Philipp Müller <tim at centricular dot net>
4654 Patch by: Lutz Mueller <lutz at topfrose de>
4656 * gst/typefind/gsttypefindfunctions.c: (html_type_find),
4658 Add typefinding for text/html (#346581).
4660 2006-07-06 Tim-Philipp Müller <tim at centricular dot net>
4662 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
4663 (xml_check_first_element), (xml_type_find), (smil_type_find):
4664 Fix SMIL typefinding, make xml_check_first_element() more
4667 2006-07-06 Tim-Philipp Müller <tim at centricular dot net>
4669 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
4670 (gst_play_base_bin_finalize), (decodebin_element_added_cb),
4671 (decodebin_element_removed_cb), (gst_play_base_bin_set_property):
4672 * gst/playback/gstplaybasebin.h:
4673 Protect list of elements with a subtitle-encoding property and
4674 the subtitle encoding member itself with a lock of their own
4675 instead of using the object lock. This prevents a dead-lock in
4676 the element-remove callback in some circumstances when shutting
4679 2006-07-05 Sebastien Moutte <sebastien@moutte.net>
4681 * win32/common/libgsttag.def:
4682 Export some new functions.
4683 * win32/vs6/libgstogg.dsp:
4684 Add a link to libgsttag-0.10.lib.
4686 2006-07-04 Tim-Philipp Müller <tim at centricular dot net>
4688 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
4689 Some const-ification.
4691 2006-07-04 Wim Taymans <wim@fluendo.com>
4693 * gst/playback/gstplaybasebin.c: (is_stream), (gen_source_element):
4694 Improve checking if we are dealing with a stream. Added some
4695 more uris that need buffering.
4697 2006-07-03 Edward Hervey <edward@fluendo.com>
4699 * ext/vorbis/vorbisdec.c: (vorbis_do_clip):
4700 Remove unused variable.
4702 2006-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
4707 add GCOV_LIBS to GST_LIBS
4709 2006-07-02 Tim-Philipp Müller <tim at centricular dot net>
4711 Patch by: Michael Sheldon <webmaster at mikeasoft com>
4713 * ext/alsa/gstalsasrc.c:
4714 Add 32 bps to template caps and increase channels range
4715 from [1,2] to [1,MAX]. See #346326.
4717 2006-06-30 Tim-Philipp Müller <tim at centricular dot net>
4719 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
4720 Recognise 'WMVA' video codec fourcc (#345879).
4722 2006-06-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
4724 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4725 Fixed nasty memory leak
4727 2006-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
4729 * gst/tcp/gsttcp.c: (gst_tcp_read_buffer),
4730 (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps):
4733 2006-06-23 Jan Schmidt <thaytan@mad.scientist.com>
4735 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
4736 (gst_decode_bin_init), (gst_decode_bin_finalize), (add_fakesink),
4737 (remove_fakesink), (pad_probe), (gst_decode_bin_change_state):
4738 Protect remove_fakesink using a mutex, so that we don't try and
4739 remove the fakesink simultaneously from multiple threads.
4741 When going from READY to PAUSED, restore the fakesink, so that
4742 it is there when decodebin gets reused.
4744 2006-06-23 Tim-Philipp Müller <tim at centricular dot net>
4746 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4747 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4748 * gst-libs/gst/rtp/gstbasertppayload.c:
4749 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4750 * gst/tcp/gstmultifdsink.c:
4751 * gst/tcp/gsttcpclientsink.c:
4752 * gst/tcp/gsttcpclientsrc.c:
4753 * gst/tcp/gsttcpserversink.c:
4754 * gst/tcp/gsttcpserversrc.c:
4755 * gst/videorate/gstvideorate.c:
4756 * gst/videotestsrc/gstvideotestsrc.c:
4757 * sys/v4l/gstv4ljpegsrc.c:
4758 * sys/v4l/gstv4lmjpegsink.c:
4759 * sys/v4l/gstv4lsrc.c:
4760 * tests/examples/seek/scrubby.c:
4761 * tests/examples/seek/seek.c:
4762 Use GST_DEBUG_CATEGORY_STATIC where possible (#342503).
4764 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4766 * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
4767 Second field in GEnumValue shouldn't be a description,
4768 but a stringified version of the enum value.
4770 2006-06-22 Wim Taymans <wim@fluendo.com>
4772 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
4773 (gst_ximage_buffer_free), (gst_ximagesink_ximage_put),
4774 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
4775 Avoid type checking in buffer casts.
4776 Avoid caps copy in buffer_alloc when we can.
4777 Use pad_peer_accept.
4779 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4781 * gst-libs/gst/tag/tag.h:
4782 Oops, make that 'Since: 0.10.9'.
4784 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4786 * docs/libs/gst-plugins-base-libs-sections.txt:
4787 * gst-libs/gst/tag/tag.h:
4788 * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
4789 (gst_tag_image_type_get_type):
4790 API: add GstTagImageType enum to describe images contained
4791 in image tags (#345641).
4793 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4795 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4796 Fix warnings with gst-inspect: "buffers-min" property
4797 should be of G_TYPE_INT and not G_TYPE_INT64. Also fix
4798 typo in property description.
4800 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4802 Patch by: Cody Russell <bratsche at gnome org>
4804 * gst/audioresample/gstaudioresample.c:
4805 (gst_audioresample_class_init):
4806 * gst/playback/gststreamselector.c:
4807 (gst_stream_selector_class_init):
4808 * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
4809 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4810 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
4811 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
4812 * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
4813 * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
4814 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
4815 * gst/videotestsrc/gstvideotestsrc.c:
4816 (gst_video_test_src_class_init):
4817 * gst/volume/gstvolume.c: (gst_volume_class_init):
4818 Avoid unnecessary class cast check in class_init
4819 functions (#337747).
4821 2006-06-21 Tim-Philipp Müller <tim at centricular dot net>
4823 * ext/pango/gsttextoverlay.c: (gst_text_overlay_make_utf8),
4824 (gst_text_overlay_video_chain):
4825 g_markup_escape_text() REALLY doesn't like non-UTF8 input
4826 and doesn't validate its input either (and neither did
4827 textoverlay it seems). Let's do that then and fix #345206.
4829 2006-06-19 Wim Taymans <wim@fluendo.com>
4831 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
4832 (gst_unit_type_get_type), (gst_multi_fd_sink_class_init),
4833 (gst_multi_fd_sink_init), (gst_multi_fd_sink_add_full),
4834 (gst_multi_fd_sink_add), (gst_multi_fd_sink_handle_client_read),
4835 (find_syncframe), (find_limits), (assign_value),
4836 (count_burst_unit), (gst_multi_fd_sink_new_client),
4837 (gst_multi_fd_sink_handle_client_write),
4838 (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_render),
4839 (gst_multi_fd_sink_set_property), (gst_multi_fd_sink_get_property),
4840 (gst_multi_fd_sink_change_state):
4841 * gst/tcp/gstmultifdsink.h:
4842 Added shiny new burst-on-connect methods.
4843 Add properties to control the minimal amount of data queued.
4845 API: bytes-min property
4846 API: time-min property
4847 API: buffers-min property
4848 API: burst-unit property
4849 API: burst-value property
4850 API: add-full signal
4852 * gst/tcp/gsttcp-marshal.list:
4853 Added new marshaller code for the new signal.
4855 * tests/check/elements/multifdsink.c: (GST_START_TEST),
4856 (multifdsink_suite):
4857 Added testcases for new burst methods.
4859 2006-06-19 Edward Hervey <edward@fluendo.com>
4861 * ext/theora/theoradec.c: (clip_buffer), (theora_dec_push):
4862 Implement clipping for accurate seeking.
4865 2006-06-19 Wim Taymans <wim@fluendo.com>
4867 Patch by: Philip Jaegenstedt <philip at lysator dot liu dot se>
4869 * gst/videoscale/gstvideoscale.c: (gst_video_scale_prepare_size),
4870 (gst_video_scale_transform):
4871 Make videoscale support RGBA, ARGB, BGRA and ABGR. Fixes #345131
4873 2006-06-17 Tim-Philipp Müller <tim at centricular dot net>
4876 Fix --disable-external (can't set conditionals conditionally,
4879 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
4881 * tests/check/elements/audioresample.c: (test_reuse),
4882 (audioresample_suite):
4883 Add test case for bug #342789 fixed below.
4885 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
4887 * gst/audioresample/gstaudioresample.c:
4888 (gst_audioresample_class_init), (gst_audioresample_init),
4889 (audioresample_start), (audioresample_stop),
4890 (gst_audioresample_set_property), (gst_audioresample_get_property):
4891 Implement GstBaseTransform::start and ::stop so that audioresample
4892 can clear its internal state properly and be reused instead of
4893 causing non-negotiated errors with playbin under some circumstances
4896 * tests/check/elements/audioresample.c: (setup_audioresample),
4897 (cleanup_audioresample):
4898 Need to set element state here so that ::start and ::stop are
4901 2006-06-16 Wim Taymans <wim@fluendo.com>
4903 Patch by: Young-Ho Cha <ganadist at chollian dot net>
4905 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_vids):
4906 Parse extra data better, apparently it's right behind
4907 the normal strf header size. Fixes #343500.
4909 2006-06-16 Wim Taymans <wim@fluendo.com>
4911 * ext/alsa/gstalsasink.c: (set_hwparams):
4912 If we fail to set the buffer_time and period_time alsa
4913 parameters, post a warning and leave alsa select a
4914 default instead of failing. Fixes #342085
4916 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
4918 * docs/libs/gst-plugins-base-libs-sections.txt:
4919 * gst-libs/gst/cdda/gstcddabasesrc.h:
4920 Remove GST_CDDA_TAG_TRACK_TAGS again, it is #ifdef 0'ed
4921 out in the header file and shouldn't be listed in the docs.
4923 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
4924 Must dereference pointer to fourcc in the debug statement.
4926 2006-06-16 Stefan Kost <ensonic@users.sf.net>
4928 * docs/libs/Makefile.am:
4929 * docs/libs/gst-plugins-base-libs-docs.sgml:
4930 * docs/libs/gst-plugins-base-libs-sections.txt:
4931 * docs/libs/gst-plugins-base-libs.types:
4932 add remaining symbols into correct setions
4934 * gst-libs/gst/audio/gstringbuffer.c:
4937 * gst-libs/gst/audio/gstringbuffer.h:
4938 comment out not yet implemented function
4941 * gst-libs/gst/floatcast/floatcast.h:
4942 * gst-libs/gst/netbuffer/gstnetbuffer.c:
4943 add short descriptions
4946 * gst-libs/gst/interfaces/propertyprobe.c:
4947 fix return value docs
4949 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
4950 simplify debug logging
4952 * gst-libs/gst/riff/riff-read.h:
4953 sync function prototype and docs
4955 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
4956 remove left over symbol
4958 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
4963 Use GST_PLUGIN_DOCS macro in configure.ac, add
4964 --enable-plugin-docs default to autogen.sh and use
4965 ENABLE_PLUGIN_DOCS conditional in Makefile.am (#344039).
4967 2006-06-15 Wim Taymans <wim@fluendo.com>
4969 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
4970 (gst_ogg_demux_activate_chain), (gst_ogg_demux_combine_flows),
4971 (gst_ogg_demux_loop):
4972 Combine GstFlowReturn from the source pads to give a
4973 meaningfull result to the upstream peer or to stop the
4974 processing task in case of errors.
4976 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
4978 * gst/playback/gststreaminfo.c: (cb_probe):
4979 Try GST_TAG_CODEC as fallback when extracting the
4980 codec name; more debug info.
4982 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
4984 * ext/ogg/Makefile.am:
4985 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
4986 Extract language tags from ogm subtitle streams, so that
4987 the subtitle menu choices are labelled correctly in
4988 Totem (fixes #344708).
4990 2006-06-14 Wim Taymans <wim@fluendo.com>
4992 Patch by: Alessandro Decina <alessandro at nnva dot org>
4994 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_clear),
4995 (gst_ogg_mux_release_pad), (gst_ogg_mux_get_headers),
4996 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_init_collectpads),
4997 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
4998 Fix various leaks. Fixes #343699.
4999 Add x-smoke mime type.
5001 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
5003 * gst-libs/gst/riff/riff-ids.h:
5004 Add IDs for 'bext' chunks (see #343837).
5006 2006-06-12 Tim-Philipp Müller <tim at centricular dot net>
5008 Patch by: Young-Ho Cha <ganadist at chollian net>
5010 * gst/subparse/samiparse.c: (sami_context_pop_state),
5011 (handle_start_font), (end_sami_element):
5012 Honour font face tags in SAMI subtitles (#344503).
5014 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5017 add missing files containing translatable strings
5019 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5021 * docs/libs/tmpl/.cvsignore:
5022 we don't want those *.sgml files in CVS either
5024 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5026 * docs/libs/.cvsignore:
5027 * tests/check/elements/.cvsignore:
5028 * tests/check/libs/.cvsignore:
5031 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5033 * docs/libs/Makefile.am:
5034 also commiting the changed Makefile.am (added more libs to the
5037 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5039 * docs/libs/gst-plugins-base-libs-docs.sgml:
5040 * docs/libs/gst-plugins-base-libs-sections.txt:
5041 * docs/libs/gst-plugins-base-libs.types:
5042 first batch of reordering things, add index & hierarchy
5044 2006-06-11 Thomas Vander Stichele <thomas at apestaart dot org>
5047 use GST_PKG_CHECK_MODULES, cleans up output
5049 2006-06-10 Tim-Philipp Müller <tim at centricular dot net>
5051 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
5052 Add support for burn:// URIs (#343385); const-ify things a bit,
5053 use G_N_ELEMENTS instead of hard-coded array size.
5055 2006-06-10 Tim-Philipp Müller <tim at centricular dot net>
5057 Patch by: Young-Ho Cha <ganadist at chollian net>
5059 * gst/subparse/samiparse.c: (fix_invalid_entities), (parse_sami):
5060 Fix up broken entities before passing them to libxml *sigh*.
5063 2006-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
5068 === release 0.10.8 ===
5070 2006-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
5073 releasing 0.10.8, "Moar gij ziet mij nie"
5075 2006-06-07 Thomas Vander Stichele <thomas at apestaart dot org>
5092 * win32/common/config.h:
5095 2006-06-07 Thomas Vander Stichele <thomas at apestaart dot org>
5097 * docs/libs/tmpl/gstaudio.sgml:
5098 * docs/libs/tmpl/gstcolorbalance.sgml:
5099 * docs/libs/tmpl/gstmixer.sgml:
5100 * docs/libs/tmpl/gstringbuffer.sgml:
5101 * docs/libs/tmpl/gsttuner.sgml:
5102 * docs/libs/tmpl/gstxoverlay.sgml:
5103 * gst-libs/gst/audio/audio.c:
5104 * gst-libs/gst/audio/gstringbuffer.c:
5105 * gst-libs/gst/interfaces/colorbalance.c:
5106 * gst-libs/gst/interfaces/mixer.c:
5107 * gst-libs/gst/interfaces/tuner.c:
5108 * gst-libs/gst/interfaces/xoverlay.c:
5109 move last template doc snippets to source code and delete them
5111 2006-06-06 Michael Smith <msmith@fluendo.com>
5113 * ext/theora/theoraparse.c: (theora_parse_drain_queue_prematurely),
5114 (theora_parse_drain_queue):
5115 Mark DELTA_UNIT on non-keyframes.
5117 2006-06-03 Jan Schmidt <thaytan@mad.scientist.com>
5119 * gst-libs/gst/audio/gstbaseaudiosink.c:
5120 (gst_base_audio_sink_class_init), (gst_base_audio_sink_setcaps):
5121 * gst-libs/gst/audio/gstbaseaudiosink.h:
5122 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps),
5123 (gst_ring_buffer_samples_done):
5124 * gst-libs/gst/audio/gstringbuffer.h:
5125 Document better the fact that latency_time and buffer_time are values
5126 stored in microseconds, and not the usual GStreamer nanoseconds.
5127 Change the variables (compatibly) that store them from GstClockTime
5128 to guint64 to make it more clear that they're not storing clock times.
5129 Also, remove the bogus property description that says the user can
5130 specify -1 to get the default value, since that's never been the case.
5132 When computing the default segment size for the ring buffer, make it
5133 an integer number of samples.
5135 When the sub-class indicates a delay greater than the number of
5136 samples we've written return 0 from the audio sink get_time method.
5138 2006-06-02 Michael Smith <msmith@fluendo.com>
5140 * tests/check/elements/audioconvert.c: (set_channel_positions),
5141 (get_float_mc_caps), (get_int_mc_caps):
5142 * tests/check/elements/audioresample.c:
5143 * tests/check/elements/audiotestsrc.c: (GST_START_TEST):
5144 * tests/check/elements/videorate.c:
5145 * tests/check/elements/videotestsrc.c: (GST_START_TEST):
5146 * tests/check/elements/volume.c:
5147 * tests/check/elements/vorbisdec.c:
5148 * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
5149 Don't busy-wait in tests; this was causing test timeouts very
5150 frequently when running under valgrind.
5152 2006-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
5155 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_init),
5156 (gst_multi_fd_sink_remove_client_link),
5157 (gst_multi_fd_sink_client_queue_caps),
5158 (gst_multi_fd_sink_client_queue_buffer),
5159 (gst_multi_fd_sink_handle_client_write),
5160 (gst_multi_fd_sink_render):
5161 * gst/tcp/gstmultifdsink.h:
5162 make multifdsink properly deal with streamheader:
5163 - streamheader is taken from caps
5164 - buffers marked with IN_CAPS are not sent
5165 - streamheaders are sent, on connection, from the caps of the
5166 buffer where the client gets positioned to
5167 - further streamheader changes are done every time the client
5168 will receive a buffer with different caps
5169 * tests/check/elements/multifdsink.c: (GST_START_TEST),
5170 (gst_multifdsink_create_streamheader):
5173 2006-06-02 Michael Smith <msmith@fluendo.com>
5175 * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
5176 Reinstate limit on channel count. Vorbis does not define the meaning
5177 of > 6 channels, so they're just independent channels. Gstreamer
5178 currently has no mechanism to represent N independent channels.
5180 2006-06-02 Michael Smith <msmith@fluendo.com>
5182 * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
5183 Don't arbitrarily restrict channel counts and rate in vorbis.
5184 In terms of effects likely on real-world files, this fixes 96kHz
5187 2006-06-02 Michael Smith <msmith@fluendo.com>
5189 * gst/audioconvert/audioconvert.c: (float):
5190 More correct float->int conversion.
5192 2006-06-02 Michael Smith <msmith@fluendo.com>
5194 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_perform_seek):
5195 Don't accidently send GST_CLOCK_TIME_NONE as a new segment start
5196 value. Fixes g-critical on trying to play back ogg containing
5199 2006-06-02 Wim Taymans <wim@fluendo.com>
5201 * gst/playback/gstplaybasebin.c: (group_create), (group_commit),
5203 * gst/playback/gstplaybasebin.h:
5204 Make the subtitle detection work from any thread so we don't
5205 deadlock. Fixes #343397.
5207 2006-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
5209 * gst/volume/Makefile.am:
5210 Seriously, it's not *that* hard to get compilation right. Even
5211 a drunk can do it ! Add LIBOIL CFLAGS and LIBS
5213 2006-06-01 Stefan Kost <ensonic@users.sf.net>
5215 * gst/volume/gstvolume.c: (volume_choose_func),
5216 (volume_update_real_volume), (gst_volume_class_init),
5217 (gst_volume_init), (volume_process_float), (volume_process_int16),
5218 (volume_process_int16_clamp), (volume_set_caps),
5219 (volume_transform_ip), (plugin_init):
5220 * gst/volume/gstvolume.h:
5221 rewrite the passthrough check, split _int16 and _int16_clamp, fix
5222 another property desc., remove unused param from process function
5224 * tests/check/elements/volume.c: (volume_suite):
5225 reactivate the passthrough test
5227 2006-06-01 Stefan Kost <ensonic@users.sf.net>
5229 * ext/alsa/gstalsamixerelement.h:
5230 * ext/alsa/gstalsamixeroptions.h:
5231 * ext/alsa/gstalsamixertrack.h:
5232 * ext/gnomevfs/gstgnomevfssink.h:
5233 * ext/gnomevfs/gstgnomevfssrc.h:
5234 * ext/theora/gsttheoradec.h:
5235 * ext/theora/gsttheoraenc.h:
5236 * ext/theora/gsttheoraparse.h:
5237 * ext/vorbis/vorbisparse.h:
5238 * gst-libs/gst/audio/gstaudioclock.h:
5239 * gst-libs/gst/audio/gstaudiofilter.h:
5240 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
5241 * gst/audioconvert/gstaudioconvert.h:
5242 * gst/audioresample/gstaudioresample.h:
5243 * gst/audiotestsrc/gstaudiotestsrc.h:
5244 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
5245 * gst/playback/gststreamselector.h:
5246 * gst/tcp/gstmultifdsink.h:
5247 * gst/tcp/gsttcpclientsink.h:
5248 * gst/tcp/gsttcpclientsrc.h:
5249 * gst/tcp/gsttcpserversink.h:
5250 * gst/tcp/gsttcpserversrc.h:
5251 * gst/videorate/gstvideorate.h:
5252 * gst/videoscale/gstvideoscale.h:
5253 * gst/videotestsrc/gstvideotestsrc.h:
5254 * gst/volume/gstvolume.h:
5255 * sys/v4l/gstv4ljpegsrc.h:
5256 * sys/v4l/gstv4lmjpegsink.h:
5257 * sys/v4l/gstv4lmjpegsrc.h:
5258 * sys/v4l/gstv4lsrc.h:
5259 * sys/ximage/ximagesink.h:
5260 * sys/xvimage/xvimagesink.h:
5261 * tests/old/testsuite/alsa/sinesrc.h:
5262 Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
5264 2006-05-31 Wim Taymans <wim@fluendo.com>
5266 * ext/libvisual/visual.c: (gst_visual_reset),
5267 (gst_visual_sink_setcaps), (gst_visual_sink_event),
5268 (gst_visual_src_event), (get_buffer), (gst_visual_chain):
5270 Use running time before doing QoS.
5273 2006-05-31 Thomas Vander Stichele <thomas at apestaart dot org>
5275 * docs/libs/Makefile.am:
5276 set a magic variable to indicate we know the docs are incomplete
5278 2006-05-30 Sebastien Moutte <sebastien@moutte.net>
5280 * win32/common/libgstvideo.def:
5281 export gst_video_calculate_display_ratio
5282 * win32/vs6/libgstvideoscale.dsp:
5283 add link to libgstvideo-0.10.lib
5285 2006-05-30 Tim-Philipp Müller <tim at centricular dot net>
5287 * gst/playback/gstplaybasebin.c: (gen_source_element):
5288 Throw a more comprehensible error for rtsp:// URIs (rather
5289 than erroring out with a negotiation error later on) until
5290 we fix playbin to handle rtspsrc etc.
5292 2006-05-30 Wim Taymans <wim@fluendo.com>
5294 * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
5295 (gst_text_overlay_text_event):
5298 2006-05-30 Wim Taymans <wim@fluendo.com>
5300 * gst/adder/gstadder.c: (gst_adder_class_init), (gst_adder_init),
5301 (gst_adder_request_new_pad), (gst_adder_release_pad):
5302 * gst/adder/gstadder.h:
5303 Implement release_request_pad.
5304 Make padcounter atomic.
5306 * tests/check/elements/adder.c: (GST_START_TEST), (adder_suite):
5307 Added check for release_pad in adder.
5309 2006-05-30 Wim Taymans <wim@fluendo.com>
5311 * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream):
5314 2006-05-30 Thomas Vander Stichele <thomas at apestaart dot org>
5316 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
5317 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
5318 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
5319 (gst_ogg_pad_submit_page), (gst_ogg_chain_new_stream),
5320 (gst_ogg_demux_seek), (gst_ogg_demux_get_data),
5321 (gst_ogg_demux_get_next_page), (gst_ogg_demux_do_seek),
5322 (gst_ogg_demux_bisect_forward_serialno),
5323 (gst_ogg_demux_read_chain), (gst_ogg_demux_find_chains),
5324 (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
5326 clean up printf formats for granulepos and serialno
5328 2006-05-30 Michael Smith <msmith@fluendo.com>
5330 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
5331 (gst_vorbis_enc_class_init), (gst_vorbis_enc_dispose),
5332 (gst_vorbis_enc_generate_sink_caps), (gst_vorbis_enc_sink_getcaps),
5333 (gst_vorbis_enc_init), (gst_vorbis_enc_buffer_from_header_packet),
5334 (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
5335 * ext/vorbis/vorbisenc.h:
5336 Multi-channel caps negotiation, so we can do proper multichannel
5337 vorbis encoding, negotiated through audioconvert.
5339 2006-05-30 Wim Taymans <wim@fluendo.com>
5341 * tests/check/elements/adder.c: (test_event_message_received),
5342 (test_play_twice_message_received), (GST_START_TEST),
5344 Added check to show that #339935 is fixed with ongoing
5345 adder and collectpads fixes.
5347 2006-05-29 Wim Taymans <wim@fluendo.com>
5349 * gst/adder/gstadder.c: (gst_adder_request_new_pad):
5350 Don't leak pad name.
5352 2006-05-29 Wim Taymans <wim@fluendo.com>
5354 * gst/adder/gstadder.c: (gst_adder_query_duration),
5355 (forward_event_func), (forward_event), (gst_adder_src_event):
5357 Make query/seeking code threadsafe.
5359 * tests/check/Makefile.am:
5360 * tests/check/elements/adder.c: (test_event_message_received),
5361 (GST_START_TEST), (test_play_twice_message_received):
5362 Fix adder test case.
5364 2006-05-29 Tim-Philipp Müller <tim at centricular dot net>
5366 Patch by: Young-Ho Cha <ganadist at chollian net>
5368 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
5369 (gst_play_base_bin_init), (gst_play_base_bin_dispose),
5370 (set_encoding_element), (decodebin_element_added_cb),
5371 (decodebin_element_removed_cb), (setup_subtitle), (setup_source),
5372 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
5373 * gst/playback/gstplaybasebin.h:
5374 Add 'subtitle-encoding' property to playbin, so applications can
5375 force a subtitle encoding for non-UTF8 subtitles (#342268).
5377 * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init),
5378 (gst_sub_parse_set_property):
5379 Rename recently-added 'encoding' property to 'subtitle-encoding'
5380 (so it can be proxied by playbin/decodebin in a generic way
5381 with less danger of false positives).
5383 2006-05-29 Michael Smith <msmith@fluendo.com>
5385 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
5386 (append_with_other_format), (set_structure_widths),
5387 (gst_audio_convert_transform_caps):
5388 Patch from #341562: give more specific audio caps in get_caps, so
5389 that basetransform can make better decisions on what caps to
5392 2006-05-28 Stefan Kost <ensonic@users.sf.net>
5394 * tests/check/elements/volume.c:
5395 make it compile again
5397 2006-05-28 Stefan Kost <ensonic@users.sf.net>
5399 * tests/check/elements/volume.c: (volume_suite):
5400 disable test until #343196 gets resolved
5402 2006-05-28 Stefan Kost <ensonic@users.sf.net>
5404 * gst/adder/gstadder.c: (gst_adder_get_type):
5405 Make it easier to copy&paste
5407 * gst/volume/Makefile.am:
5408 * gst/volume/gstvolume.c: (volume_update_real_volume),
5409 (gst_volume_set_volume), (gst_volume_set_mute),
5410 (gst_volume_class_init), (volume_process_int16), (volume_set_caps),
5411 (volume_transform_ip), (volume_update_mute),
5412 (volume_update_volume):
5413 * gst/volume/gstvolume.h:
5414 Add own debug category, move duplicate code to helper function, fix
5415 property texts, add more comments and prepare ffor liboil-goodness
5417 * tests/check/Makefile.am:
5418 * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
5419 add test for mute and passtrough case, be a bit more verbose to track
5422 * tests/check/generic/states.c: (GST_START_TEST):
5423 catch elements that fail to instantiate
5425 2006-05-28 Edward Hervey <edward@fluendo.com>
5427 * tests/check/pipelines/simple-launch-lines.c:
5428 * tests/check/pipelines/theoraenc.c:
5429 * tests/check/pipelines/vorbisenc.c:
5430 Comment out tests using parse_launch() if core was built without
5431 parsing capabilities.
5433 2006-05-27 Edward Hervey <edward@fluendo.com>
5435 * tests/check/Makefile.am:
5436 Extra bonus points for whoever explains to ensonic that you are meant
5437 to test unit tests thoroughly before commiting them, especially if
5438 you know it's going to break.
5439 De-activated element/adder tests.
5441 2006-05-27 Edward Hervey <edward@fluendo.com>
5443 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
5444 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps):
5445 Marking caps conversion issues as GST_WARNING is way too verbose,
5446 Moving them to GST_LOG.
5448 2006-05-27 Tim-Philipp Müller <tim at centricular dot net>
5451 Replace current README (containing the release notes from
5452 some 0.9.x version) with a proper README taken from the core.
5454 2006-05-26 Wim Taymans <wim@fluendo.com>
5456 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
5457 (vorbis_dec_src_event), (vorbis_dec_sink_event), (vorbis_do_clip),
5458 (vorbis_dec_push), (vorbis_handle_data_packet), (vorbis_dec_chain),
5459 (vorbis_dec_change_state):
5462 Clip output samples to segment boundaries.
5464 2006-05-26 Jan Schmidt <thaytan@mad.scientist.com>
5466 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
5467 (gst_ximagesink_xcontext_get), (gst_ximagesink_show_frame):
5468 Improve the errors produced on bad output, including some human
5469 readable description strings.
5470 Handle the (theoretical for ximagesink) case where the XServer
5471 has a different idea about the size required for a particular
5472 frame and gives us too small a memory allocation.
5474 2006-05-26 Jan Schmidt <thaytan@mad.scientist.com>
5476 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
5477 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
5478 (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
5479 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
5480 Improve the errors produced on bad output, including some human
5481 readable description strings.
5482 Handle RGB Xv formats properly by transforming them into our
5483 big-endian caps description.
5484 Use gst_caps_truncate to ensure that we never try and choose a
5485 non-fixed caps in buffer_alloc.
5486 Handle the case where the XServer has a different idea about the size
5487 required for a particular frame and gives us too small a memory
5489 Use -1 to indicate 'no image format', because 0 is a valid XServer
5490 image format number.
5491 Put RGB Xv formats at the end of the caps, so that we always prefer
5493 Iterate the available Xv Encodings to determine the maximum width and
5494 height, and then return that in our caps.
5495 (Closes #315312, #337544)
5497 2006-05-25 Jan Schmidt <thaytan@mad.scientist.com>
5499 * gst/playback/gstdecodebin.c: (remove_fakesink), (pad_probe):
5500 When there is only one unfinished pad and it receives an event that
5501 doesn't match our requirements, we need to set alldone=FALSE so that
5502 the fakesink is not removed yet.
5504 2006-05-25 Tim-Philipp Müller <tim at centricular dot net>
5506 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
5507 Use gst_type_find_helper_for_buffer() to find the type
5508 of stream from the first packet.
5511 Bump requirements to core CVS (needed for vorbis
5512 typefinding to work).
5514 2006-05-24 Edward Hervey <edward@fluendo.com>
5516 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
5517 Added the 'prfl' atom type which MQV (no, it's not a typo) files
5518 contain. Else they play perfectly fine with qtdemux.
5520 2006-05-23 Stefan Kost <ensonic@users.sf.net>
5522 * ext/theora/theoradec.c:
5523 * ext/theora/theoraenc.c:
5524 * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
5525 * gst/audiorate/gstaudiorate.c:
5526 make more debug catagories static
5528 * tests/check/Makefile.am:
5529 * tests/check/elements/adder.c: (message_received),
5530 (test_event_message_received), (GST_START_TEST),
5531 (test_play_twice_message_received), (adder_suite):
5532 added test case for using element twice, extra bonus points for anyone
5533 who can make these test run reliably
5535 2006-05-23 Tim-Philipp Müller <tim at centricular dot net>
5537 * ext/theora/theoradec.c: (theora_dec_chain):
5538 Make work with time-stamped input buffers that do not
5539 have a granulepos in BUFFER_OFFSET_END (like theora
5540 buffers coming from matroskademux). Fixes #342448.
5542 2006-05-22 Tim-Philipp Müller <tim at centricular dot net>
5544 Patch by: Peter Kjellerstedt <pkj at axis com>
5546 * gst/tcp/Makefile.am:
5547 fdstresstest doesn't need Gtk+, fix compilation if
5548 gtk is not available (#342566).
5550 2006-05-19 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
5552 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
5554 Removed redundant floor()
5556 2006-05-19 Tim-Philipp Müller <tim at centricular dot net>
5558 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5559 On second thought, just skip JUNK chunks automatically, so
5560 the caller doesn't have to handle this. Fixes #342345.
5561 Also, return GST_FLOW_UNEXPECTED if we get a short read,
5564 2006-05-19 Tim-Philipp Müller <tim at centricular dot net>
5566 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5567 Don't bail out on JUNK chunks with a size of 0 (would try to
5568 pull_range 0 bytes before, which sources don't like too much).
5571 2006-05-19 Jan Schmidt <thaytan@mad.scientist.com>
5573 * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5574 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5575 Use the gstutil scaling function to preserve 64 bits while calculating
5576 output width and height from the display-aspect-ratio. (A continuation
5579 2006-05-19 Jan Schmidt <thaytan@mad.scientist.com>
5581 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
5582 (gst_xvimagesink_buffer_alloc):
5583 * sys/xvimage/xvimagesink.h:
5584 When performing buffer allocations, remember the caps and image format
5585 we return so that if the same caps are asked for next time we can
5586 return them immediately without doing any caps intersections.
5588 2006-05-18 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
5590 * gst-libs/gst/rtp/README:
5591 Some new documentation
5592 * gst-libs/gst/rtp/gstrtpbuffer.h:
5593 Added GST_RTP_PAYLOAD_DYNAMIC_STRING for use by children
5594 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
5595 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
5596 New RTP audio base payloader class. Supports frame or sample based
5597 codecs. Not enabled in Makefile.am until approved.
5599 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5601 * tests/check/elements/alsa.c: (test_device_property_probe):
5602 Fix test case: don't try to free NULL GValueArray when there
5605 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5607 * tests/check/Makefile.am:
5608 * tests/check/elements/alsa.c: (test_device_property_probe),
5609 (alsa_suite), (main):
5610 Add simple test that runs a device property probe on alsasrc,
5611 alsasink and alsamixer. Disable valgrind check for now (too
5612 many leaks in libasound, and valgrind ignored my suppressions
5615 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5617 * ext/alsa/gstalsadeviceprobe.c: (gst_alsa_get_device_list),
5618 (gst_alsa_device_property_probe_probe_property),
5619 (gst_alsa_device_property_probe_needs_probe),
5620 (gst_alsa_device_property_probe_get_values),
5621 (gst_alsa_type_add_device_property_probe_interface):
5622 * ext/alsa/gstalsadeviceprobe.h:
5623 * ext/alsa/gstalsamixerelement.c:
5624 (gst_alsa_mixer_element_init_interfaces):
5625 * ext/alsa/gstalsamixerelement.h:
5626 Clean up and simplify alsa device probing. Make it actually work
5627 for multiple classes. Don't cache results any longer.
5629 * ext/alsa/gstalsasink.c: (gst_alsasink_init_interfaces),
5630 (gst_alsasink_init):
5631 * ext/alsa/gstalsasrc.c: (gst_alsasrc_dispose),
5632 (gst_alsasrc_interface_supported), (gst_implements_interface_init),
5633 (gst_alsasrc_init_interfaces), (gst_alsasrc_set_property):
5634 Make alsasink and alsasrc implement the GstPropertyProbe interface
5635 for device probing (#342181).
5636 Patch by: Martin Szulecki <gnomebugzilla at sukimashita com>
5638 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5640 * gst/subparse/samiparse.c: (handle_start_font):
5641 Don't ignore return value of strtol (++compiler_happiness).
5643 2006-05-17 Tim-Philipp Müller <tim at centricular dot net>
5645 Patch by: Young-Ho Cha <ganadist chollian net>
5647 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
5648 (gst_sub_parse_class_init), (gst_sub_parse_init),
5649 (gst_sub_parse_set_property), (gst_sub_parse_get_property),
5651 * gst/subparse/gstsubparse.h:
5652 Add 'encoding' property (#341681).
5654 * gst/subparse/samiparse.c: (characters_sami):
5655 Output is pango markup, so we need to escape text
5656 between tags (#342143).
5658 2006-05-16 Tim-Philipp Müller <tim at centricular dot net>
5660 * gst-libs/gst/audio/multichannel.c:
5661 (gst_audio_check_channel_positions):
5662 It's okay to have caps with channels=1 and a channel position
5663 different from GST_AUDIO_CHANNEL_POSITION_FRONT_MONO
5664 (deinterleavers might want to keep the position in the caps,
5665 so that they can be re-interleaved again properly later).
5666 Leave check for unexpected 2-channel layouts intact for now.
5668 2006-05-16 Zaheer Abbas Merali <zaheerabbas at merali dot org>
5670 * gst/tcp/gsttcp.c: (gst_tcp_socket_read):
5671 Return GST_FLOW_UNEXPECTED when we have an eos on the socket so
5672 basesrc can do its job correctly.
5674 2006-05-16 Tim-Philipp Müller <tim at centricular dot net>
5676 * ext/alsa/Makefile.am:
5677 * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
5678 (gst_alsa_detect_formats), (get_channel_free_structure),
5679 (caps_add_channel_configuration), (gst_alsa_detect_channels),
5680 (gst_alsa_probe_supported_formats):
5681 * ext/alsa/gstalsa.h:
5682 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
5683 Refactor and improve caps probing code: probe signedness
5684 when we probe the supported formats/widths; set endianness
5685 to the one we actually probed for (ie. cpu endianness).
5687 * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (gst_alsasrc_getcaps),
5688 (gst_alsasrc_close):
5689 * ext/alsa/gstalsasrc.h:
5690 Implement caps probing for alsasrc.
5692 2006-05-15 Wim Taymans <wim@fluendo.com>
5694 * ext/theora/theoradec.c: (gst_theora_dec_reset),
5695 (theora_dec_src_query), (theora_dec_src_event),
5696 (theora_dec_sink_event), (theora_handle_comment_packet),
5697 (theora_handle_data_packet), (theora_dec_change_state):
5698 Cleanups, add some G_LIKELY.
5699 Use segment helpers instead of our own wrong code.
5700 Clear queued buffers on seek and READY.
5702 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
5703 (vorbis_dec_convert), (vorbis_dec_src_query),
5704 (vorbis_dec_src_event), (vorbis_dec_sink_event),
5705 (vorbis_handle_comment_packet), (vorbis_dec_push),
5706 (vorbis_handle_data_packet), (vorbis_dec_chain),
5707 (vorbis_dec_change_state):
5708 * ext/vorbis/vorbisdec.h:
5709 Remove old useless packetno variable.
5710 Do position query properly.
5712 Do cleanup of queued buffers in new helper function
5715 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5717 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
5718 Query supported sample rates. Fixes #341732.
5720 2006-05-15 Julien MOUTTE <julien@moutte.net>
5722 * gst/playback/gstdecodebin.c: (cleanup_decodebin),
5723 (gst_decode_bin_change_state): Make decodebin reusable
5724 when going from PAUSE_TO_READY and then back to PAUSED.
5727 2006-05-15 Wim Taymans <wim@fluendo.com>
5729 * ext/vorbis/vorbisdec.c: (vorbis_get_query_types),
5730 (vorbis_dec_convert), (vorbis_dec_src_query),
5731 (vorbis_dec_sink_query), (vorbis_dec_src_event),
5732 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
5733 (vorbis_dec_clean_queued), (vorbis_dec_push),
5734 (vorbis_handle_data_packet), (vorbis_dec_change_state):
5735 Cleanups. Use refcounting and DEBUG_OBJECT.
5736 Reset segment on flush, use code methods instead of our
5738 Fix potential memleak.
5740 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5742 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
5743 (gst_alsasink_init):
5744 * ext/alsa/gstalsasink.h:
5745 Don't leak allocated snd_output_t structure if there's
5746 more than one alsasink instance at a time (#341873).
5747 Also fix GObject macros in header file.
5749 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5751 * gst/subparse/gstsubparse.c:
5752 (gst_sub_parse_data_format_autodetect):
5753 Don't use libxml functions in the typefinding code.
5755 2006-05-15 Wim Taymans <wim@fluendo.com>
5757 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
5758 Fix seeking performance in the case where a non-header
5759 packet has a 0 granulepos (busted theora case).
5761 (nvdr: thanks Wim for not mentioning who spotted and fixed it in
5762 the first place, you limelight stealer you)
5764 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5766 * gst/subparse/gstsubparse.c:
5767 (gst_sub_parse_data_format_autodetect):
5768 Improve SAMI typefinding: handle case where there are
5769 whitespaces or newlines in front of the first <SAMI>
5772 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5775 Build video4linux plugin even if there's no XVIDEO, just
5776 without implementing the GstXOverlay interface (#334002).
5778 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5781 * ext/libvisual/visual.c: (gst_visual_actor_plugin_is_gl),
5783 Add tentative support for libvisual-0.4 (#336881).
5785 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5787 Patch by: Young-Ho Cha <ganadist at chollian net>
5789 * gst/subparse/samiparse.c: (handle_start_font):
5790 Need to map "silver" colour explicitly (#169936).
5792 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5794 Patch by: Young-Ho Cha <ganadist at chollian net>
5796 * gst/subparse/Makefile.am:
5797 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
5798 (parser_state_dispose), (gst_sub_parse_data_format_autodetect),
5799 (gst_sub_parse_format_autodetect), (feed_textbuf),
5800 (gst_subparse_type_find), (plugin_init):
5801 * gst/subparse/gstsubparse.h:
5802 * gst/subparse/samiparse.c:
5803 * gst/subparse/samiparse.h:
5804 Add support for SAMI subtitles (#169936).
5806 2006-05-14 Michael Smith <msmith@fluendo.com>
5808 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
5809 Fix #341696: crash when mixing L+R+C to mono or stereo.
5810 * tests/check/Makefile.am:
5811 * tests/check/elements/audioconvert.c: (set_channel_positions),
5812 (get_float_mc_caps), (get_int_mc_caps), (GST_START_TEST),
5813 (audioconvert_suite):
5814 Add test for the above, including some generic framework bits for
5815 testing multichannel things.
5817 === release 0.10.7 ===
5819 2006-05-14 Jan Schmidt <thaytan@mad.scientist.com>
5822 releasing 0.10.7, "Leave the gun"
5824 2006-05-13 Jan Schmidt <thaytan@mad.scientist.com>
5826 * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5827 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5830 2006-05-12 Jan Schmidt <thaytan@mad.scientist.com>
5832 * docs/libs/gst-plugins-base-libs-docs.sgml:
5833 * docs/libs/gst-plugins-base-libs-sections.txt:
5834 * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio):
5835 * gst-libs/gst/video/video.h:
5836 * gst/videoscale/Makefile.am:
5837 * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5838 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5839 * tests/check/Makefile.am:
5840 * tests/check/libs/video.c: (GST_START_TEST), (video_suite),
5842 Fix integer overflow problem with pixel-aspect-ratio calculations
5843 in videoscale and xvimagesink (#341542)
5845 2006-05-12 Tim-Philipp Müller <tim at centricular dot net>
5847 * gst-libs/gst/tag/gstid3tag.c:
5848 Map GST_IMAGE_TAG to and from ID2v2 APIC frames (#341557).
5850 2006-05-12 Sebastien Moutte <sebastien@moutte.net>
5853 update win32 files listing
5855 2006-05-11 Thomas Vander Stichele <thomas at apestaart dot org>
5857 patch by: Sjoerd Simons (sjoerd@luon.net)
5859 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
5860 (group_create), (group_destroy), (add_stream),
5861 (gst_play_base_bin_get_property),
5862 (gst_play_base_bin_get_streaminfo_value_array):
5863 * gst/playback/gstplaybasebin.h:
5864 API: GstPlayBaseBin::stream-info-value-array property
5865 use a more bindings-friendly way of exposing streaminfo
5866 using a GValueArray. Tested in ipython.
5869 2006-05-11 Wim Taymans <wim@fluendo.com>
5871 * gst/playback/gstdecodebin.c: (try_to_link_1), (queue_enlarge),
5872 (queue_underrun_cb), (queue_filled_cb):
5873 Also catch queue underruns but don't do anything yet.
5874 Refactor and comment queue enlarging code a bit.
5876 * gst/playback/gstplaybasebin.c: (queue_overrun),
5877 (queue_threshold_reached), (queue_out_of_data),
5878 (gen_preroll_element):
5879 If a queue over/underruns check that we don't create nasty
5880 deadlocks when the min-threshold is not reached but the
5881 max-bytes is. In those cases disable max-bytes when we
5882 know that the queue is fed timed data.
5885 2006-05-11 Tim-Philipp Müller <tim at centricular dot net>
5887 * gst/playback/gstplaybin.c: (gen_audio_element):
5888 Make playbin automatically plug an 'audioresample'
5889 element before the audio sink as well. This solves
5890 problems with sinks that only accept a very specific
5891 sample rate, like esdsink (e.g. #340379).
5893 2006-05-11 Tim-Philipp Müller <tim at centricular dot net>
5895 * gst/playback/gstplaybasebin.c: (gen_source_element):
5896 Make http sources send special headers so that we receive
5897 icecast metadata if the http stream is an icecast stream
5898 (otherwise the server will just ignore them). This also
5899 means that from now on users will need the 'icydemux'
5900 element from gst-plugins-good installed if they want to
5901 listen to icecast radio streams. (#341432, #333657).
5903 2006-05-11 Thomas Vander Stichele <thomas at apestaart dot org>
5905 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_remove_client_link),
5906 (gst_multi_fd_sink_new_client), (gst_multi_fd_sink_stop):
5907 remove stupid example from docs - it should come with a simple
5910 * tests/check/elements/multifdsink.c: (wait_bytes_served),
5911 (fail_if_can_read), (GST_START_TEST),
5912 (gst_multifdsink_create_streamheader), (multifdsink_suite):
5913 add a test for changing streamheader which exposes a bug in
5916 2006-05-11 Michael Smith <msmith@fluendo.com>
5918 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
5919 (gst_gnome_vfs_src_received_headers_callback):
5920 * ext/gnomevfs/gstgnomevfssrc.h:
5921 Don't set icy-caps unless we have a sane interval value. Move
5922 interval to a local variable; we never use it outside this function.
5924 2006-05-11 Wim Taymans <wim@fluendo.com>
5926 * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
5927 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
5928 Register special buffer types along with the objects so
5929 that they are not registered at runtime from N different
5930 streaming threads since they are not threadsafe.
5932 2006-05-10 Thomas Vander Stichele <thomas at apestaart dot org>
5934 * tests/check/elements/multifdsink.c: (wait_bytes_served),
5935 (GST_START_TEST), (fail_unless_read), (multifdsink_suite):
5936 add two more tests, one doing streamheader
5938 2006-05-10 Thomas Vander Stichele <thomas at apestaart dot org>
5940 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_stop):
5941 clean up the bufqueue when shutting down
5942 * tests/check/Makefile.am:
5943 * tests/check/elements/multifdsink.c: (setup_multifdsink),
5944 (cleanup_multifdsink), (GST_START_TEST), (multifdsink_suite),
5946 add a test for the leak that was just fixed
5948 2006-05-10 Wim Taymans <wim@fluendo.com>
5950 * gst/adder/gstadder.c: (gst_adder_setcaps),
5951 (gst_adder_query_duration), (gst_adder_query), (forward_event),
5952 (gst_adder_src_event), (gst_adder_sink_event),
5953 (gst_adder_class_init), (gst_adder_finalize),
5954 (gst_adder_request_new_pad), (gst_adder_collected):
5955 * gst/adder/gstadder.h:
5956 Updated some docs. Added comments and FIXMEs all over the place.
5957 Improve debugging info.
5958 Fix leak on finalize by not calling the parent.
5959 Implement duration query.
5960 Make event forwarding threadsafe.
5961 Correctly send NEWSEGMENT at start and after flush.
5962 Handle EOS correctly.
5963 Post error when not negotiated.
5965 * tests/check/elements/adder.c: (GST_START_TEST):
5966 Added FIXME in the test.
5968 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
5970 * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
5971 (gst_text_overlay_halign_get_type),
5972 (gst_text_overlay_wrap_mode_get_type):
5973 * ext/theora/theoradec.c: (theora_handle_type_packet),
5974 (theora_handle_data_packet):
5975 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
5976 (theora_enc_sink_setcaps), (theora_enc_chain):
5977 * gst-libs/gst/cdda/gstcddabasesrc.c:
5978 (gst_cdda_base_src_mode_get_type):
5979 * gst/audiotestsrc/gstaudiotestsrc.c:
5980 (gst_audiostestsrc_wave_get_type):
5981 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
5982 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
5983 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
5984 (gst_sync_method_get_type), (gst_unit_type_get_type),
5985 (gst_client_status_get_type):
5986 * gst/videoscale/gstvideoscale.c:
5987 (gst_video_scale_method_get_type):
5988 * gst/videotestsrc/gstvideotestsrc.c:
5989 (gst_video_test_src_pattern_get_type):
5990 * gst/videotestsrc/videotestsrc.c: (paint_setup_I420),
5991 (paint_setup_YV12), (paint_setup_YUY2), (paint_setup_UYVY),
5992 (paint_setup_YVYU), (paint_setup_IYU2), (paint_setup_Y41B),
5993 (paint_setup_Y42B), (paint_setup_Y800), (paint_setup_YVU9),
5994 (paint_setup_YUV9), (paint_setup_RGB888), (paint_setup_BGR888),
5995 (paint_setup_RGB565), (paint_setup_xRGB1555):
5996 Const-ify GEnumValue and GFlagsValue arrays. Use
5997 GST_ROUND_UP_* macros instead of home-made ones.
5999 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
6002 Require core CVS for the new newsegment stuff.
6004 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
6006 Patch by: Sjoerd Simons <sjoerd at luon net>
6008 * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type):
6009 Register nick for enum value (#341160).
6011 2006-05-09 Stefan Kost <ensonic@users.sf.net>
6013 * gst/typefind/gsttypefindfunctions.c: (m4a_type_find),
6015 backout typefind patch #340375
6017 * tests/check/elements/adder.c: (message_received),
6018 (GST_START_TEST), (adder_suite):
6019 redo, signal-handling of test
6021 2006-05-09 Wim Taymans <wim@fluendo.com>
6023 * gst/adder/gstadder.c: (gst_adder_request_new_pad),
6024 (gst_adder_collected):
6025 * gst/adder/gstadder.h:
6026 Remove bogus segment merging and forwarding, we don't
6027 care about timestamps anyway and we just produce a
6029 Also create a nice NEWSEGMENT event when we start.
6030 Use _scale_int some more.
6032 2006-05-09 Edward Hervey <edward@fluendo.com>
6034 * tests/icles/stress-xoverlay.c:
6035 Fix if core was built without parsing support.
6037 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
6039 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6040 Add SEDG (Samsung MPEG-4) fourcc.
6042 2006-05-09 Edward Hervey <edward@fluendo.com>
6044 * tests/icles/stress-xoverlay.c:
6045 * tests/examples/volume/volume.c:
6046 Fix if core was built without parsing support.
6048 * tests/examples/seek/seek.c:
6049 Disable the parse_launch example if core was built without parsing
6052 2006-05-08 Edward Hervey <edward@fluendo.com>
6054 * autogen.sh: (CONFIGURE_DEF_OPT):
6055 libtoolize on Darwin/MacOSX is called glibtoolize
6057 2006-05-07 Stefan Kost <ensonic@users.sf.net>
6059 * tests/check/Makefile.am:
6060 * tests/check/elements/adder.c: (event_loop), (GST_START_TEST):
6061 Disable the adder test, until the build-slaves posses the kindness to
6062 either like it or to give valid reason for not doing so
6064 2006-05-07 Stefan Kost <ensonic@users.sf.net>
6066 * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
6068 Shuffle NULL state change around and raise timeout more
6070 2006-05-07 Stefan Kost <ensonic@users.sf.net>
6072 * gst/typefind/gsttypefindfunctions.c: (mp4_find_box),
6073 (mp4_type_find), (plugin_init):
6074 Add typefind to distinguish between "audio/x-m4a" and new type
6075 "video/mp4". Fixes #340375
6077 * tests/check/elements/adder.c: (adder_suite):
6078 Raise timeout to make buildbot happy
6080 2006-05-07 Stefan Kost <ensonic@users.sf.net>
6082 * gst/adder/gstadder.c: (gst_adder_sink_event),
6083 (gst_adder_request_new_pad), (gst_adder_change_state):
6084 * gst/adder/gstadder.h:
6085 * tests/check/Makefile.am:
6086 * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
6087 (adder_suite), (main):
6088 Add sink-event handling to adder. It tries to merge incomming
6089 newsegment-events. Added test to check if segment_done is comming
6090 through. Fixes #340060
6092 2006-05-05 Andy Wingo <wingo@pobox.com>
6094 * ext/theora/theoraparse.c (gst_theora_parse_init)
6095 (theora_parse_src_convert, theora_parse_src_query):
6096 * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
6097 (vorbis_parse_convert, vorbis_parse_src_query): Add convert and
6098 query functions on the source pads of the theora and vorbis parse
6099 elements. Fixes position querying when doing a remux.
6101 2006-05-05 Michael Smith <msmith@fluendo.com>
6103 * ext/theora/theoraparse.c: (parse_granulepos),
6104 (theora_parse_drain_queue_prematurely),
6105 (theora_parse_queue_buffer), (theora_parse_sink_event):
6107 Fix invalid granulepos outputs when starting with a non-keyframe.
6109 2006-05-05 Jan Schmidt <thaytan@mad.scientist.com>
6111 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find),
6112 (mpeg1_sys_type_find), (ogganx_type_find), (sw_data_destroy):
6113 Rearrange MPEG system stream detection, fixing some memleaks in the
6115 Constify the data for STARTS_WITH and RIFF helper handlers. Make sure
6116 they clean up their data correctly.
6117 Remove unused ogganx caps and move the 'is_annodex' check to inside
6118 the 'is_ogg' if statement.
6120 2006-05-05 Wim Taymans <wim@fluendo.com>
6122 * gst/playback/gstdecodebin.c: (cleanup_decodebin):
6123 Properly remove ghostpads. Fixes #340392
6125 2006-05-04 David Schleef <ds@schleef.org>
6127 * gst/typefind/gsttypefindfunctions.c:
6129 2006-05-03 Jan Schmidt <thaytan@mad.scientist.com>
6131 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
6132 (mpeg_ts_probe_headers), (mpeg_ts_type_find):
6134 When typefinding an MP3 in push-based mode, don't penalise the
6135 probability down to 74% when we found 5 valid frames just because we
6136 can't peek the end of the file.
6138 Make the probability for detecting MPEG Transport Streams based on the
6139 number of sequential headers we successfully detected.
6141 2006-05-03 Wim Taymans <wim@fluendo.com>
6143 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
6144 (vorbis_dec_push), (vorbis_dec_chain):
6145 Still produce an error when we receive an empty packet.
6147 2006-05-03 Wim Taymans <wim@fluendo.com>
6149 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
6150 (gst_ogg_chain_mark_discont), (gst_ogg_chain_new_stream),
6151 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek):
6152 Mark buffers with DISCONT after seek and after activating new
6155 * ext/theora/gsttheoradec.h:
6156 * ext/theora/theoradec.c: (gst_theora_dec_reset),
6157 (theora_get_query_types), (theora_dec_sink_event),
6158 (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
6159 (theora_dec_change_state):
6161 Detect and mark DISCONT buffers.
6163 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
6164 (vorbis_dec_sink_event), (vorbis_dec_push), (vorbis_dec_chain),
6165 (vorbis_dec_change_state):
6166 * ext/vorbis/vorbisdec.h:
6168 Detect and mark DISCONT buffers.
6169 Don't crash on 0 sized buffers.
6171 2006-05-03 Wim Taymans <wim@fluendo.com>
6173 * gst/volume/gstvolume.c: (volume_funcfind), (volume_set_caps),
6174 (volume_transform_ip):
6175 Increase "volume" property to 10.0. Fixes #340369.
6176 Set the process function to NULL when capsnego fails so that
6177 we properly error out.
6179 2006-05-02 Stefan Kost <ensonic@users.sf.net>
6181 * gst/playback/gstplaybin.c: (add_sink):
6182 * gst/playback/test.c: (main):
6183 * gst/playback/test5.c: (dump_element_stats):
6184 * gst/playback/test6.c: (main):
6185 free caps using gst_caps_unref, don't leak caps-strings
6187 2006-05-01 Tim-Philipp Müller <tim at centricular dot net>
6189 * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
6191 Refine musepack typefinding a bit. Return MAXIMUM
6192 probability when we detect stream version 7 to make
6193 sure the mpeg audio typefinder doesn't trump us.
6195 2006-04-29 Tim-Philipp Müller <tim at centricular dot net>
6197 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
6198 Protect against unexpected NULL strf_data buffer.
6200 2006-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
6202 * tests/check/elements/audioconvert.c: (verify_convert),
6204 interpret the out[] buffer in the order the bytes are actually
6205 put in, which is LITTLE_ENDIAN, not BYTE_ORDER.
6206 Other tests should use BYTE_ORDER since the array is filled in
6209 2006-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
6211 * tests/check/elements/audioconvert.c: (verify_convert),
6213 when a test fails, give an indication of which it is
6215 2006-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
6217 * gst-libs/gst/cdda/gstcddabasesrc.c:
6218 compile fix; strtol() needs <stdlib.h>
6220 2006-04-28 Stefan Kost <ensonic@users.sf.net>
6222 * ext/alsa/gstalsamixerelement.c:
6223 * ext/alsa/gstalsasrc.c:
6224 * ext/cdparanoia/gstcdparanoiasrc.c:
6225 * ext/gnomevfs/gstgnomevfssink.c:
6226 * ext/gnomevfs/gstgnomevfssrc.c:
6227 * ext/ogg/gstoggdemux.c:
6228 * ext/ogg/gstoggmux.c:
6229 * ext/ogg/gstoggparse.c:
6230 * ext/ogg/gstogmparse.c:
6231 * ext/pango/gstclockoverlay.c:
6232 * ext/pango/gsttextoverlay.c:
6233 * ext/pango/gsttextrender.c:
6234 * ext/pango/gsttimeoverlay.c:
6235 * ext/theora/theoradec.c:
6236 * ext/theora/theoraenc.c:
6237 * ext/vorbis/vorbisdec.c:
6238 * ext/vorbis/vorbisenc.c:
6239 * gst-libs/gst/audio/gstaudiofilter.c:
6240 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
6241 * gst/audioconvert/gstaudioconvert.c:
6242 * gst/audiorate/gstaudiorate.c:
6243 * gst/audioresample/gstaudioresample.c:
6244 * gst/audiotestsrc/gstaudiotestsrc.c:
6245 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6246 * gst/playback/gstdecodebin.c:
6247 * gst/playback/gstplaybin.c:
6248 * gst/playback/gststreamselector.c:
6249 * gst/subparse/gstsubparse.c:
6250 * gst/tcp/gstmultifdsink.c:
6251 * gst/tcp/gsttcpclientsink.c:
6252 * gst/tcp/gsttcpclientsrc.c:
6253 * gst/tcp/gsttcpserversink.c:
6254 * gst/tcp/gsttcpserversrc.c:
6255 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
6256 * gst/videorate/gstvideorate.c:
6257 * gst/videoscale/gstvideoscale.c:
6258 * gst/videotestsrc/gstvideotestsrc.c:
6259 * gst/volume/gstvolume.c:
6260 * sys/v4l/gstv4ljpegsrc.c:
6261 * sys/v4l/gstv4lmjpegsink.c:
6262 * sys/v4l/gstv4lmjpegsrc.c:
6263 * sys/v4l/gstv4lsrc.c:
6264 * sys/ximage/ximagesink.c:
6265 * sys/xvimage/xvimagesink.c:
6266 * tests/check/libs/cddabasesrc.c:
6267 make GstElementDetails const
6269 2006-04-28 Stefan Kost <ensonic@users.sf.net>
6271 * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
6273 send events from src-pad to all sink-pads fixes #338657
6275 2006-04-28 Stefan Kost <ensonic@users.sf.net>
6277 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps),
6278 (alsasink_parse_spec):
6279 query width capabilities from alsa, fixes #338919
6281 2006-04-28 Wim Taymans <wim@fluendo.com>
6283 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
6284 (gst_multi_fd_sink_remove_client_link):
6285 * gst/tcp/gstmultifdsink.h:
6286 Fix race condition in multifdsink that can lead to spurious
6287 duplicate clients. this patch adds a new signal that is fired when
6288 multifdsink has removed all references to the fd.
6290 Updated documentation.
6291 API: client-fd-removed signal added
6293 2006-04-28 Michael Smith <msmith@fluendo.com>
6295 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats):
6296 When asking g_value_array_new to prealloc elements, we may as well
6297 ask for the right number of elements.
6299 2006-04-28 Wim Taymans <wim@fluendo.com>
6301 * gst-libs/gst/audio/gstbaseaudiosink.c:
6302 (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
6303 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
6304 patch to make timestamp checking more tollerant to rounding
6305 errors given that real discontinuities are to be marked on
6306 buffers. Fixes some asf files and #338778.
6307 Also avoid some crashers when we receive an event in the
6310 2006-04-28 Michael Smith <msmith@fluendo.com>
6312 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
6313 (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
6314 (gst_gnome_vfs_src_get_property),
6315 (gst_gnome_vfs_src_send_additional_headers_callback),
6316 (gst_gnome_vfs_src_received_headers_callback),
6317 (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_start),
6318 (gst_gnome_vfs_src_stop):
6319 * ext/gnomevfs/gstgnomevfssrc.h:
6320 Remove ICY handling (mostly) from gnomevfssrc, in favour of
6321 proper shared support within icydemux.
6323 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
6325 * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
6326 (gst_video_rate_swap_prev), (gst_video_rate_chain):
6328 fix a leak when no caps negotiated
6329 fix counting of input frames
6330 * tests/check/elements/.cvsignore:
6331 * tests/check/elements/videorate.c: (assert_videorate_stats),
6332 (GST_START_TEST), (videorate_suite):
6335 2006-04-28 Wim Taymans <wim@fluendo.com>
6337 * gst-libs/gst/audio/gstringbuffer.c:
6338 (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
6339 (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
6340 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
6341 (gst_ring_buffer_pause), (gst_ring_buffer_stop),
6342 (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
6343 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
6344 (gst_ring_buffer_commit), (gst_ring_buffer_read),
6345 (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
6346 (gst_ring_buffer_clear), (gst_ring_buffer_may_start):
6347 Check arguments passed to public functions instead of
6350 2006-04-28 Wim Taymans <wim@fluendo.com>
6352 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
6353 (gst_base_audio_src_get_time), (gst_base_audio_src_create):
6354 GstBaseAudioSrc must be live or it does not work.
6356 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audio_src_init):
6357 Don't set live to TRUE as this is the default in the parentclass.
6359 2006-04-28 Wim Taymans <wim@fluendo.com>
6361 * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps),
6362 (gst_video_scale_fixate_caps), (gst_video_scale_src_event):
6363 Videoscale doesn't pass on pixel-aspect ratio. Handle all
6364 fixation cases better. Fixes #338991
6366 2006-04-28 Wim Taymans <wim@fluendo.com>
6368 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
6369 Handle 0/1 framerate correctly Fixes #331901.
6371 2006-04-28 Wim Taymans <wim@fluendo.com>
6373 * tests/check/elements/audioconvert.c: (get_float_caps),
6374 (GST_START_TEST), (audioconvert_suite):
6375 Added check for correct clipping when doing float samples
6378 2006-04-28 Wim Taymans <wim@fluendo.com>
6380 * gst/videorate/gstvideorate.c: (gst_video_rate_event),
6381 (gst_video_rate_chain):
6382 Print more debugging info.
6384 2006-04-28 Wim Taymans <wim@fluendo.com>
6386 * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
6387 (resample_set_state_from_caps):
6388 Add support for other formats audioresample can handle such as
6389 32 bits in and float and 64 bits float. Fixes #301759
6391 2006-04-28 Wim Taymans <wim@fluendo.com>
6393 * gst/audioconvert/audioconvert.c: (float):
6394 correctly clip float samples > 1.0. Fixes #338718
6396 2006-04-28 Tim-Philipp Müller <tim at centricular dot net>
6398 Patch by: Young-Ho Cha <ganadist at chollian net>
6400 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
6401 (gst_text_overlay_render_text):
6402 Don't strip newlines from the text. Also, center lines
6403 within multi-line paragraphs (#339405).
6405 2006-04-28 Tim-Philipp Müller <tim at centricular dot net>
6407 * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find):
6408 Fix wavpack typefinding to work in more cases (don't peek
6409 for chunks of multiple hundred kBs at once, but process
6410 things step-by-step in smaller units). Fixes #339786.
6412 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
6417 === release 0.10.6 ===
6419 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
6422 releasing 0.10.6, "Chao"
6424 2006-04-26 David Schleef <ds@schleef.org>
6426 * gst/videoscale/gstvideoscale.c: Add call to oil_init().
6429 2006-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
6432 * win32/common/config.h:
6435 2006-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
6437 patch by: Wim Taymans
6439 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
6440 (gst_ogg_demux_perform_seek):
6441 make sure correct newsegments are sent, so that the decoder
6442 and the demuxer agree on timestamps. Fixes playback of a lot
6443 of Ogg files that do not start from 0. Fixes #339833.
6445 2006-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
6447 Patch by: Edward Hervey <edward@fluendo.com>
6449 * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
6450 * tests/check/Makefile.am:
6451 * tests/check/elements/videorate.c: (assert_videorate_stats),
6452 (setup_videorate), (cleanup_videorate), (GST_START_TEST),
6453 (videorate_suite), (main):
6454 Fix an infinite loop if frames are passed in with wrongly ordered
6455 timestamps. Fixes #339013.
6457 2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
6459 Patch by: Tim-Philipp Müller <tim at centricular dot net>
6461 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
6462 fix typefinding on some ISO files. Fixes #339212.
6464 2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
6466 Patch by: Tim-Philipp Müller <tim at centricular dot net>
6468 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6469 add another H264 fourcc. Fixes #339047.
6471 2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
6473 Patch by: Jan Schmidt
6475 * gst/playback/gststreamselector.c:
6476 (gst_stream_selector_bufferalloc):
6477 Restore old StreamSelector behaviour.
6480 2006-04-12 Thomas Vander Stichele <thomas at apestaart dot org>
6483 * win32/common/config.h:
6486 2006-04-11 Tim-Philipp Müller <tim at centricular dot net>
6488 Patch by: Antoine Tremblay <hexa00 at gmail dot com>
6490 * gst-libs/gst/rtp/gstbasertpdepayload.c:
6491 (gst_base_rtp_depayload_finalize), (gst_base_rtp_depayload_push):
6492 Fix some memory leaks: on finalize, free buffers left in the queue
6493 before destroying the queue; in _push(), unref rtp_buf even if
6494 the process vfunc returned a NULL buffer as output buffer (#337548);
6495 demote some recuring debug messages to LOG level.
6497 2006-04-11 Wim Taymans <wim@fluendo.com>
6499 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6500 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
6501 (gst_ogg_chain_free), (gst_ogg_demux_sink_event),
6502 (gst_ogg_demux_loop):
6504 Respect segment stop when emiting EOS or SEGMENT_DONE.
6507 2006-04-11 Tim-Philipp Müller <tim at centricular dot net>
6509 * gst/playback/gststreamselector.c:
6510 (gst_stream_selector_get_property):
6511 Don't leak pad name.
6513 2006-04-10 Michael Smith <msmith@fluendo.com>
6515 * tests/check/Makefile.am:
6516 * tests/check/gst-plugins-base.supp:
6517 Suppress an old libtheora bug (fixed in more recent versions), so
6518 that FC4 buildslaves can pass.
6520 2006-04-10 Wim Taymans <wim@fluendo.com>
6522 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6523 (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
6524 (gst_ogg_demux_init), (gst_ogg_demux_finalize),
6525 (gst_ogg_demux_sink_event), (gst_ogg_demux_get_data),
6526 (gst_ogg_demux_loop):
6528 Remember what error we got when finding chains, if we
6529 were shutdown, that would not be an error.
6531 2006-04-10 Wim Taymans <wim@fluendo.com>
6533 * gst-libs/gst/audio/gstbaseaudiosink.c:
6534 (gst_base_audio_sink_event):
6535 Starting the ringbuffer when we did not acquire it can cause
6536 a deadlock, is pointless and causes nasty things for
6538 Fixes gst-launch audiotestsrc num-buffers=0 ! alsasink.
6540 2006-04-10 Wim Taymans <wim@fluendo.com>
6542 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6543 (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
6544 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
6545 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
6546 (gst_ogg_demux_deactivate_current_chain),
6547 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
6548 (gst_ogg_demux_bisect_forward_serialno),
6549 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain):
6550 Add some more debugging.
6552 2006-04-10 Wim Taymans <wim@fluendo.com>
6554 * ext/theora/theoradec.c: (theora_dec_src_event),
6555 (theora_handle_data_packet):
6556 Some more debug info.
6558 * tests/examples/seek/seek.c: (start_seek), (main):
6559 Print element messages too.
6561 2006-04-09 Sebastien Moutte <sebastien@moutte.net>
6563 * gst/audioresample/debug.h:
6564 replace debug macros with variable number of parameters
6565 by a simple alias to gstreamer standard debug macros
6566 (#define RESAMPLE_ERROR GST_ERROR, __VA_ARGS__ is not
6567 supported by MSVC 6.0 and 7.1)
6568 * gst/audioresample/resample.h:
6569 define M_PI and rint for WIN32
6570 * win32/common/libgstaudio.def:
6571 * win32/common/libgstriff.def:
6572 * win32/common/libgsttag.def:
6573 * win32/common/libgstvideo.def:
6574 add new exported functions
6576 update project files
6578 2006-04-08 Stefan Kost <ensonic@users.sf.net>
6580 * ext/alsa/gstalsamixeroptions.c:
6581 (gst_alsa_mixer_options_class_init):
6582 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init):
6583 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init):
6584 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
6585 * ext/ogg/gstoggparse.c: (gst_ogg_parse_class_init):
6586 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_class_init):
6587 * gst-libs/gst/audio/gstaudiofilter.c:
6588 (gst_audio_filter_class_init):
6589 * gst-libs/gst/audio/gstaudiosink.c:
6590 (gst_audioringbuffer_class_init):
6591 * gst-libs/gst/audio/gstaudiosrc.c:
6592 (gst_audioringbuffer_class_init):
6593 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_class_init):
6594 * gst-libs/gst/interfaces/colorbalancechannel.c:
6595 (gst_color_balance_channel_class_init):
6596 * gst-libs/gst/interfaces/mixeroptions.c:
6597 (gst_mixer_options_class_init):
6598 * gst-libs/gst/interfaces/mixertrack.c:
6599 (gst_mixer_track_class_init):
6600 * gst-libs/gst/interfaces/tunerchannel.c:
6601 (gst_tuner_channel_class_init):
6602 * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_class_init):
6603 * gst-libs/gst/netbuffer/gstnetbuffer.c:
6604 (gst_netbuffer_class_init):
6605 * gst-libs/gst/rtp/gstbasertppayload.c:
6606 (gst_basertppayload_class_init):
6607 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
6608 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
6609 * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
6610 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
6611 * gst/playback/gststreamselector.c:
6612 (gst_stream_selector_class_init):
6613 * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
6614 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
6615 * sys/v4l/gstv4lcolorbalance.c:
6616 (gst_v4l_color_balance_channel_class_init):
6617 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_class_init):
6618 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
6619 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
6620 * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_channel_class_init),
6621 (gst_v4l_tuner_norm_class_init):
6622 * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
6623 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
6624 * tests/old/testsuite/alsa/sinesrc.c: (sinesrc_class_init):
6625 Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
6627 2006-04-08 Stefan Kost <ensonic@users.sf.net>
6629 * ext/pango/gsttextrender.h:
6630 * gst-libs/gst/audio/gstaudiosink.h:
6631 * gst-libs/gst/audio/gstaudiosrc.h:
6632 * gst-libs/gst/audio/gstbaseaudiosink.h:
6633 * gst-libs/gst/audio/gstbaseaudiosrc.h:
6634 * gst-libs/gst/audio/gstringbuffer.h:
6635 * gst-libs/gst/rtp/gstbasertpdepayload.h:
6636 * gst-libs/gst/rtp/gstbasertppayload.h:
6637 * gst-libs/gst/video/gstvideofilter.h:
6638 * gst-libs/gst/video/gstvideosink.h:
6639 * gst/playback/gstplaybasebin.h:
6640 * gst/tcp/gstmultifdsink.h:
6641 * sys/v4l/gstv4lelement.h:
6642 Fix broken GObject macros
6644 2006-04-08 Stefan Kost <ensonic@users.sf.net>
6646 * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec):
6647 More debug to trace why my USB headset is not working with gst
6649 2006-04-07 Jan Schmidt <thaytan@mad.scientist.com>
6651 * gst/playback/gstplaybasebin.c: (group_destroy):
6652 Clean up our group elements properly in the case where it never
6653 got committed - it still got added unconditionally to the bin.
6655 2006-04-07 Wim Taymans <wim@fluendo.com>
6657 * ext/theora/theoradec.c: (theora_dec_sink_event),
6658 (theora_handle_data_packet), (theora_dec_chain):
6659 Unref unhandled events.
6660 Protect against empty buffers.
6661 Perform QoS on running time.
6663 2006-04-07 Michael Smith <msmith@fluendo.com>
6665 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_set_header_on_caps),
6666 (gst_vorbis_enc_chain):
6667 Remove leaks from vorbisenc.
6668 Mostly minor changes, the only significant one is that now the
6669 buffers we set as 'streamheader' on the caps are copies of the
6670 original buffers, to avoid circular refcounting problems.
6672 2006-04-07 Jan Schmidt <thaytan@mad.scientist.com>
6674 * gst/playback/gstplaybasebin.c: (mute_stream), (setup_substreams):
6675 Don't remove our mute-probe if someone else already did so.
6676 Don't set a 2nd one if there is already one pending on the pad.
6678 * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
6680 When a seek fails, ensure that playbin is still set back to playing.
6682 * gst/typefind/gsttypefindfunctions.c: (mpeg_ts_probe_headers),
6683 (mpeg_ts_type_find), (plugin_init):
6684 Add a typefind function for mpeg-ts streams. (Closes: #336617)
6686 2006-04-06 Andy Wingo <wingo@pobox.com>
6688 * gst/videorate/gstvideorate.c (gst_video_rate_reset)
6689 (gst_video_rate_init): Caps-related parameters should not be reset
6690 by a flush -- move their inits to the instance init function.
6691 (gst_video_rate_flush_prev): Don't complain if gst_pad_push
6692 is not OK, just return the result.
6694 * gst/audiotestsrc/gstaudiotestsrc.c
6695 (gst_audio_test_src_class_init)
6696 (gst_audio_test_src_get_times): Re-enable is-live=true, as was
6697 broken by Stefan's commit on 24 March.
6699 * ext/ogg/gstoggmux.c (gst_ogg_mux_push_buffer): Set caps on
6700 buffers being pushed out. Fixes oggmux ! multifdsink.
6702 2006-04-05 Tim-Philipp Müller <tim at centricular dot net>
6704 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
6705 (gst_vorbis_dec_init), (vorbis_dec_finalize):
6706 * ext/vorbis/vorbisdec.h:
6707 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_add_interfaces),
6708 (gst_vorbis_enc_base_init), (gst_vorbis_enc_class_init),
6709 (gst_vorbis_enc_sink_setcaps), (gst_vorbis_enc_convert_src),
6710 (gst_vorbis_enc_convert_sink), (gst_vorbis_enc_get_query_types),
6711 (gst_vorbis_enc_src_query), (gst_vorbis_enc_sink_query),
6712 (gst_vorbis_enc_init), (gst_vorbis_enc_get_tag_value),
6713 (gst_vorbis_enc_metadata_set1), (gst_vorbis_enc_set_metadata),
6714 (gst_vorbis_enc_setup), (gst_vorbis_enc_clear),
6715 (gst_vorbis_enc_buffer_from_packet),
6716 (gst_vorbis_enc_buffer_from_header_packet),
6717 (gst_vorbis_enc_push_buffer), (gst_vorbis_enc_push_packet),
6718 (gst_vorbis_enc_set_header_on_caps), (gst_vorbis_enc_sink_event),
6719 (gst_vorbis_enc_chain), (gst_vorbis_enc_output_buffers),
6720 (gst_vorbis_enc_get_property), (gst_vorbis_enc_set_property),
6721 (gst_vorbis_enc_change_state):
6722 * ext/vorbis/vorbisenc.h:
6723 Remove left-over 0.8 cruft; use GST_DEBUG_FUNCPTR; make
6724 vorbisenc adhere to the official nomenclature; use boilerplate
6727 2006-04-04 Andy Wingo <wingo@pobox.com>
6729 * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
6730 Whoops, fix bug introduced. Bad hacker!
6732 * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
6733 Properly handle the case where you get EOS before any buffers are
6734 received. Use gst_buffer_make_metadata_writable where appropriate.
6736 * ext/theora/theoradec.c (theora_handle_data_packet): This value
6737 is often negative -- make it signed so as not to wrap around.
6738 Fixes segfaults introduced on 9 March.
6740 2006-04-03 Wim Taymans <wim@fluendo.com>
6742 * ext/theora/gsttheoradec.h:
6743 * ext/theora/theoradec.c: (theora_dec_src_event):
6744 Don't try to store a gdouble in a gboolean.
6747 2006-04-03 Michael Smith <msmith@fluendo.com>
6749 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads):
6751 Make it suck slightly less by writing out the final page.
6752 Still can't encode a vorbis-in-ogg file correctly, though.
6754 2006-04-03 Andy Wingo <wingo@pobox.com>
6756 * ext/theora/theoraparse.c (theora_parse_drain_queue): Um, remove
6759 * ext/theora/theora.c (plugin_init): Register theoraparse.
6761 * ext/theora/gsttheoraparse.h:
6762 * ext/theora/theoraparse.c: New files implementing a theora
6763 parser. Now we can properly remux ogg/theora+vorbis, yay.
6765 * ext/vorbis/vorbisparse.c: Add some docs and a copyright.
6767 2006-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
6769 * gst/audiotestsrc/gstaudiotestsrc.c:
6770 Fixed the sample pipeline (see #323798)
6772 2006-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
6775 * win32/common/config.h:
6776 * win32/common/config.h.in:
6777 use AS_VERSION and AS_NANO
6780 2006-03-31 Andy Wingo <wingo@pobox.com>
6782 * ext/vorbis/vorbisparse.c (vorbis_parse_sink_event): Fix
6783 uninitialized variable return that would happen.
6785 * ext/vorbis/vorbisparse.c (vorbis_parse_drain_queue): Fix
6786 uninitialized variable return that would never happen.
6788 * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
6789 (vorbis_parse_sink_event): Add an event function to flush our
6790 state on a seek, and to drain buffers on a premature EOS.
6791 (vorbis_parse_push_headers, vorbis_parse_clear_queue)
6792 (vorbis_parse_push_buffer, vorbis_parse_drain_queue_prematurely)
6793 (vorbis_parse_chain, vorbis_parse_queue_buffer)
6794 (vorbis_parse_drain_queue): Queue up buffers until we can set
6795 their timestamps and granulepos values.
6797 * ext/vorbis/vorbisparse.h: Include the vorbis decoder headers,
6798 and keep track of data needed for deriving granulepos and
6799 timestamps for buffers.
6801 2006-03-29 Wim Taymans <wim@fluendo.com>
6803 Patch by: j^ <j at bootlab dot org>
6805 * ext/alsa/gstalsamixerelement.c:
6806 (gst_alsa_mixer_element_class_init):
6807 * ext/alsa/gstalsasink.c:
6808 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
6809 * ext/ogg/gstoggdemux.c:
6810 * ext/ogg/gstoggmux.c:
6811 * ext/ogg/gstoggparse.c:
6812 * ext/pango/gstclockoverlay.c:
6813 * ext/pango/gsttextoverlay.c:
6814 * ext/pango/gsttextrender.c:
6815 * ext/pango/gsttimeoverlay.c:
6816 * ext/theora/theoradec.c:
6817 * ext/theora/theoraenc.c:
6818 * ext/vorbis/vorbisdec.c:
6819 * ext/vorbis/vorbisenc.c:
6820 * gst/audioconvert/gstaudioconvert.c:
6821 * gst/subparse/gstsubparse.c:
6822 * gst/tcp/gstmultifdsink.c:
6823 * gst/tcp/gsttcpclientsink.c:
6824 * gst/tcp/gsttcpclientsrc.c:
6825 * gst/tcp/gsttcpserversink.c:
6826 * gst/tcp/gsttcpserversrc.c:
6827 better/unified long descriptions
6830 2006-03-29 Wim Taymans <wim@fluendo.com>
6832 * tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
6834 Don't let double and triple clicks mess up our state.
6836 2006-03-28 Tim-Philipp Müller <tim at centricular dot net>
6838 * gst/playback/gstplaybin.c: (gen_video_element),
6839 (gen_text_element), (gen_audio_element), (gen_vis_element):
6840 Error out gracefully when we can't create any of the usual
6841 conversion elements for some reason. Also, don't try to
6842 create an audioscale (sic) element that's not used anyway.
6844 2006-03-28 Tim-Philipp Müller <tim at centricular dot net>
6846 * gst/playback/gstplaybasebin.c: (setup_source):
6847 Don't post RESOURCE_NOT_FOUND error when we can't find a source
6848 element for a particular protocol, that's confusing for users.
6849 Instead, post a RESOURCE_FAILED error, so that our own error
6850 message is actually shown in totem etc. (#336303).
6852 2006-03-27 Tim-Philipp Müller <tim at centricular dot net>
6854 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
6856 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_finalize),
6857 (gst_gnome_vfs_src_get_icy_metadata):
6858 Fix some minor memory leaks (#336194).
6860 2006-03-27 Tim-Philipp Müller <tim at centricular dot net>
6862 * ext/gnomevfs/gstgnomevfs.c:
6863 (gst_gnome_vfs_location_to_uri_string):
6864 * ext/gnomevfs/gstgnomevfs.h:
6865 * ext/gnomevfs/gstgnomevfssink.c:
6866 (gst_gnome_vfs_sink_set_property):
6867 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_set_property):
6868 Make gnomevfssink accept filenames as well as URIs for the
6869 "location" property, just like gnomevfssrc does (and
6870 filesrc/filesink do) (#336190).
6872 2006-03-24 Thomas Vander Stichele <thomas at apestaart dot org>
6874 * tests/check/generic/clock-selection.c: (GST_START_TEST):
6875 set to NULL before unreffing, fixes a valgrind leak.
6876 Why was this not triggering the error that an object needs to
6877 be NULL before unreffing ?
6878 * win32/common/config.h:
6881 2006-03-24 Tim-Philipp Müller <tim at centricular dot net>
6883 * gst/subparse/gstsubparse.c: (convert_encoding),
6884 (gst_sub_parse_change_state):
6885 * gst/subparse/gstsubparse.h:
6886 Text subtitle files may or may not be UTF-8. If it's not, we
6887 don't really want to see '?' characters in place of non-ASCII
6888 characters like accented characters. So let's assume the input
6889 is UTF-8 until we come across text that is clearly not. If it's
6890 not UTF-8, we don't really know what it is, so try the following:
6891 (a) see whether the GST_SUBTITLE_ENCODING environment variable
6892 is set; if not, check (b) if the current locale encoding is
6893 non-UTF-8 and use that if it is, or (c) assume ISO-8859-15 if
6894 the current locale encoding is UTF-8 and the environment variable
6895 was not set to any particular encoding. Not perfect, but better
6896 than nothing (and better than before, I think) (fixes #172848).
6898 2006-03-24 Thomas Vander Stichele <thomas at apestaart dot org>
6901 update core requirement to 0.10.4.1 because of async_playback
6902 vmethod on GstBaseSink
6904 2006-03-24 Stefan Kost <ensonic@users.sf.net>
6906 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
6907 * gst/adder/gstadder.c: (gst_adder_init):
6908 use DEBUG_FUNCPTR for collectpads
6910 2006-03-24 Stefan Kost <ensonic@users.sf.net>
6912 * docs/plugins/Makefile.am:
6913 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6914 * docs/plugins/gst-plugins-base-plugins-sections.txt:
6915 * ext/cdparanoia/gstcdparanoiasrc.c:
6916 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_base_init),
6917 (gst_gnome_vfs_sink_class_init):
6918 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_base_init):
6919 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_base_init):
6920 * ext/ogg/gstoggmux.c:
6921 * ext/ogg/gstoggparse.c: (gst_ogg_parse_base_init):
6922 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
6923 (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init):
6924 * ext/pango/gsttextoverlay.c:
6925 * ext/pango/gsttextrender.c:
6926 * ext/theora/theoradec.c:
6927 * ext/theora/theoraenc.c:
6928 * ext/vorbis/vorbisdec.c:
6929 * ext/vorbis/vorbisenc.c:
6930 * gst-libs/gst/audio/gstaudiofilter.c:
6931 (gst_audio_filter_base_init):
6932 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
6933 (gst_audio_filter_template_base_init):
6934 * gst/adder/gstadder.c: (gst_adder_get_type):
6935 * gst/adder/gstadder.h:
6936 * gst/audioconvert/gstaudioconvert.c:
6937 * gst/audiotestsrc/gstaudiotestsrc.c:
6938 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
6939 (gst_audio_test_src_create):
6940 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6941 * gst/playback/gstdecodebin.c:
6942 * gst/playback/gstplaybin.c:
6943 * gst/playback/gststreamselector.c:
6944 (gst_stream_selector_base_init):
6945 * gst/subparse/gstsubparse.c: (gst_sub_parse_base_init):
6946 * gst/volume/gstvolume.c:
6947 * sys/v4l/gstv4lmjpegsink.c:
6948 * sys/v4l/gstv4lmjpegsrc.c:
6949 * tests/check/libs/cddabasesrc.c:
6950 * tests/old/examples/gob/gst-identity2.gob:
6951 Add docs for adder, use GST_ELEMENT_DETAILS macro,
6952 define GstElementDetails at the top
6954 2006-03-23 Sebastien Moutte <sebastien@moutte.net>
6956 * win32/common/libgstinterfaces.def:
6957 Add a lot of export functions for gst-python
6958 * win32/vs6/libgstinterfaces.dsp:
6959 Add a missing include folder in the project configuration
6961 2006-03-23 Wim Taymans <wim@fluendo.com>
6963 * gst-libs/gst/audio/gstbaseaudiosrc.c:
6964 (gst_base_audio_src_get_time), (gst_base_audio_src_create),
6965 (gst_base_audio_src_change_state):
6966 Fix audio sources, forgot to make the ringbuffer
6969 2006-03-23 Wim Taymans <wim@fluendo.com>
6971 * gst-libs/gst/audio/gstbaseaudiosrc.c:
6972 (gst_base_audio_src_get_time), (gst_base_audio_src_create),
6973 (gst_base_audio_src_change_state):
6974 unparent instead of unref the ringbuffer.
6976 2006-03-23 Wim Taymans <wim@fluendo.com>
6978 * gst-libs/gst/audio/gstbaseaudiosink.c:
6979 (gst_base_audio_sink_class_init), (gst_base_audio_sink_async_play),
6980 (gst_base_audio_sink_do_play), (gst_base_audio_sink_change_state):
6981 Implement new async_play vmethod to start slaving and allow
6982 playback start in case of async PLAY state changes.
6984 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
6985 Enable QoS with new method in base class.
6987 2006-03-23 Wim Taymans <wim@fluendo.com>
6989 Patch by: Julien MOUTTE <julien at moutte dot net>
6991 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_query),
6992 (gst_video_test_src_do_seek), (gst_video_test_src_create):
6993 Partially handle 0 framerate, only EOS after the first frame
6996 2006-03-23 Wim Taymans <wim@fluendo.com>
6998 Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
7000 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
7001 (gst_riff_create_video_template_caps):
7002 * gst/ffmpegcolorspace/avcodec.h:
7003 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
7004 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
7005 (gst_ffmpegcsp_avpicture_fill):
7006 * gst/ffmpegcolorspace/imgconvert.c:
7007 Patch for support of YVU9 AVI files (#334822)
7009 2006-03-22 Edward Hervey <edward@fluendo.com>
7011 * docs/design/design-decodebin.txt:
7012 Added design document for new decodebin
7013 (Target Caps): text/x-pango-markup is also a default target caps.
7015 2006-03-22 Wim Taymans <wim@fluendo.com>
7017 * gst-libs/gst/audio/gstbaseaudiosink.c:
7018 (gst_base_audio_sink_dispose):
7019 Since we _parent the ringbuffer, we also need to
7020 _unparent instead of a plain _unref.
7022 2006-03-22 Wim Taymans <wim@fluendo.com>
7024 * tests/examples/seek/seek.c: (end_scrub), (do_seek), (seek_cb),
7025 (stop_seek), (scrub_toggle_cb), (main):
7028 2006-03-21 Tim-Philipp Müller <tim at centricular dot net>
7030 * ext/ogg/gstoggparse.c: (gst_ogg_parse_find_stream),
7031 (gst_ogg_parse_chain):
7032 Fix very inefficient usage of linked lists (#335365).
7034 2006-03-21 Edward Hervey <edward@fluendo.com>
7036 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
7037 * gst/playback/gstplaybin.c: (handoff):
7038 * gst/playback/gststreamselector.c:
7039 (gst_stream_selector_set_property):
7040 gcc 4.1 unreferenced pointer fixes.
7041 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
7042 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
7043 gst_buffer_ref() now takes a GstBuffer*.
7045 2006-03-20 Julien MOUTTE <julien@moutte.net>
7047 * sys/xvimage/xvimagesink.c:
7048 (gst_xvimagesink_get_format_from_caps): Fix a memleak reported
7051 2006-03-19 Tim-Philipp Müller <tim at centricular dot net>
7053 * gst/typefind/gsttypefindfunctions.c: (id3v2_type_find),
7054 (id3v1_type_find), (apetag_type_find), (plugin_init):
7055 Can't do tag preferences via probability, as tags would then
7056 lose against types that are recognised with MAXIMUM probability
7057 (like .wav); so let all tag typefinders return MAXIMUM themselves
7058 and order them via the rank. Split ID3v1 and ID3v2 typefinders so
7059 that we can prefer APE to ID3v1 (fixes #335028).
7061 2006-03-17 Wim Taymans <wim@fluendo.com>
7063 * gst-libs/gst/audio/gstbaseaudiosink.c:
7064 (gst_base_audio_sink_change_state):
7065 * gst-libs/gst/audio/gstringbuffer.c: (wait_segment),
7066 (gst_ring_buffer_may_start):
7067 * gst-libs/gst/audio/gstringbuffer.h:
7068 Only start playback if we are playing.
7071 2006-03-17 Jan Schmidt <thaytan@mad.scientist.com>
7073 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
7074 * win32/common/config.h:
7075 Revert accidental commits to these files.
7077 2006-03-16 Tim-Philipp Müller <tim at centricular dot net>
7079 Patch by: Michal Benes <michal dot benes at xeris dot cz>
7081 * tests/Makefile.am:
7082 Don't try to build tests in tests/icles if we
7083 don't have X (#323852)
7085 2006-03-16 Tim-Philipp Müller <tim at centricular dot net>
7087 * gst-libs/gst/tag/gstid3tag.c:
7088 Add TXXX frame identifiers for replaygain stuff as used
7089 by some taggers (see #323721).
7091 2006-03-16 Jan Schmidt <thaytan@mad.scientist.com>
7093 * gst/playback/gststreamselector.c:
7094 (gst_stream_selector_set_property),
7095 (gst_stream_selector_bufferalloc):
7096 Preserve the existing buggy streamselector behaviour by performing
7097 a fallback buffer allocation when downstream isn't linked yet.
7098 This should really be fixed in playbin by blocking pads until it's
7100 Also, use gst_pad_alloc_buffer instead of
7101 gst_pad_alloc_buffer_and_set.
7103 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
7105 * gst-libs/gst/tag/gstid3tag.c:
7106 Don't crash on unknown ID3v2 TXXX frames.
7108 2006-03-15 Jan Schmidt <thaytan@mad.scientist.com>
7110 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise):
7111 Chain up to the parent finalize method.
7112 Add 32-bit sample size to the template caps.
7114 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
7115 (gst_riff_create_video_template_caps):
7116 Add the fourcc that the VMWare codec uses.
7118 * gst/playback/gststreamselector.c:
7119 (gst_stream_selector_set_property),
7120 (gst_stream_selector_bufferalloc),
7121 (gst_stream_selector_request_new_pad):
7122 For the active pad, forward buffer-alloc requests, otherwise
7123 return GST_FLOW_NOT_LINKED. This also prevents xvimagesink
7124 having to memcpy every frame when used by playbin.
7126 * gst/tcp/gstmultifdsink.c:
7127 (gst_multi_fd_sink_handle_client_write):
7128 Get negotiated caps from the sink pad, rather than the sink
7131 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
7133 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
7135 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_pop_callbacks):
7136 Don't forget to set src->callbacks_pushed to FALSE again when
7137 popping them, otherwise re-activation in a different mode won't
7140 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
7142 Patch by: Sebastien Moutte <sebastien moutte net>
7144 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ff_vid_caps_new),
7145 (gst_ff_aud_caps_new), (gst_ffmpeg_pixfmt_to_caps),
7146 (gst_ffmpeg_smpfmt_to_caps):
7147 Replace __VA_ARGS__ caps creation macros with varargs functions.
7148 Makes things compile on MSVC (#320765), looks nicer, and we can
7149 tell the compiler to check for the NULL terminator.
7151 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
7153 Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
7155 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7156 Make sure the buffer we copy into is really always big
7157 enough, this time for real (#333488).
7159 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
7161 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7162 Add support for 24bpp DIB (#305279).
7164 2006-03-14 Wim Taymans <wim@fluendo.com>
7166 * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_init):
7167 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7168 * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcsp_init):
7169 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
7170 (gst_video_scale_init), (gst_video_scale_src_event):
7171 Re-enable QoS after the release.
7172 Rework videoscale to use the base class src_event handler.
7174 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
7179 === release 0.10.5 ===
7181 2006-03-13 Thomas Vander Stichele <thomas at apestaart dot org>
7184 releasing 0.10.5, "Net"
7186 2006-03-13 Tim-Philipp Müller <tim at centricular dot net>
7188 * docs/plugins/Makefile.am:
7189 Part of previous cdparanoiasrc docs fixes, forgot to commit.
7191 2006-03-12 Tim-Philipp Müller <tim at centricular dot net>
7193 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7194 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7195 * docs/plugins/gst-plugins-base-plugins.hierarchy:
7196 Add cdparanoiasrc to docs.
7198 * gst-libs/gst/cdda/gstcddabasesrc.c:
7199 More GstCddaBaseSrc docs.
7201 2006-03-12 Tim-Philipp Müller <tim at centricular dot net>
7203 * docs/libs/gst-plugins-base-libs-sections.txt:
7204 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_user_tag):
7205 * gst-libs/gst/tag/tag.h:
7206 API: libgsttag: new method gst_tag_from_id3_user_tag().
7208 2006-03-11 Tim-Philipp Müller <tim at centricular dot net>
7210 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7211 NULL-terminate array of mpeg4 video file extensions.
7212 Fixes crash on PPC (#334226).
7214 2006-03-11 Tim-Philipp Müller <tim at centricular dot net>
7216 * ext/gnomevfs/gstgnomevfssrc.c:
7217 (gst_gnome_vfs_src_check_get_range):
7218 gnome_vfs_uri_is_local() alone is not a good indicator
7219 whether we can operate in pull-mode with a specific URI,
7220 as it returns FALSE for file:// URIs that point to an
7221 NFS-mounted path. Be more conservative here: whitelist
7222 local files, blacklist http URIs and use the old
7223 mechanism for anything else (fixes #334216).
7225 2006-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
7230 === release 0.10.4 ===
7232 2006-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
7235 releasing 0.10.4, "Power"
7237 2006-03-10 Jan Schmidt <thaytan@mad.scientist.com>
7239 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7240 Disable max-lateness by setting it to -1 for now, so that
7241 we can bed QoS stuff in thoroughly between now and the next
7244 2006-03-10 Tim-Philipp Müller <tim at centricular dot net>
7246 Patch by: Fabrizio Gennari
7248 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7249 Make sure we don't read beyond the palette buffer in case of
7250 broken or manipulated files (#333488)
7252 2006-03-10 Edward Hervey <edward@fluendo.com>
7254 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
7255 Fix for variable not initialized.
7257 2006-03-09 Wim Taymans <wim@fluendo.com>
7259 * ext/libvisual/visual.c: (gst_visual_get_type),
7260 (gst_visual_src_setcaps), (gst_vis_src_negotiate),
7264 * ext/theora/gsttheoradec.h:
7265 * ext/theora/theoradec.c: (gst_theora_dec_init),
7266 (gst_theora_dec_reset), (_theora_granule_time),
7267 (theora_dec_src_convert), (theora_dec_sink_convert),
7268 (theora_dec_src_query), (theora_dec_src_event),
7269 (theora_dec_sink_event), (theora_handle_comment_packet),
7270 (theora_handle_header_packet), (theora_dec_push),
7271 (theora_handle_data_packet), (theora_dec_chain),
7272 (theora_dec_change_state):
7275 2006-03-09 Wim Taymans <wim@fluendo.com>
7277 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
7278 (audiocast_register_listener), (gst_gnome_vfs_src_start):
7281 2006-03-09 Wim Taymans <wim@fluendo.com>
7283 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
7284 Don't try to activate NULL chains.
7286 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
7288 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
7289 Fix invalid memory access to region before peek'd data (#332964).
7291 2006-03-09 Wim Taymans <wim@fluendo.com>
7293 Patch by: Christophe Fergeau
7295 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
7296 * ext/pango/gsttextrender.c: (gst_text_render_init):
7297 * gst/adder/gstadder.c: (gst_adder_init):
7298 Don't leak padtemplates, closes #333510.
7300 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
7302 * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
7303 Fix invalid memory access: make sure string passed to
7304 regexec() is NUL-termianted.
7306 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
7308 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
7310 Refactor mpeg/audio typefinding to make it more maintainable
7311 and easier to fine-tune. Make probing into middle of the file
7312 work properly (fixes #333900, also see #152688).
7314 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
7316 * gst/typefind/gsttypefindfunctions.c:
7317 (utf8_type_find_have_valid_utf8_at_offset):
7318 Remove part from previous commit that was bogus:
7319 g_utf8_validate() does in fact not accept embedded
7320 zeroes, so we don't need to check for those (thanks
7321 to Mike for the hint).
7323 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
7325 * gst/typefind/gsttypefindfunctions.c:
7326 (utf8_type_find_count_embedded_zeroes),
7327 (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
7328 Make plain/text typefinder more conservative: firstly, check
7329 for embedded zeroes, which are perfectly valid UTF-8 characters,
7330 but also a fairly good sign that something is not a plain text
7331 file; secondly, probe into the middle of the file if possible.
7332 If we can't probe into the middle, limit the probability value
7333 to be returned to TYPE_FIND_POSSIBLE (see #333900).
7335 2006-03-08 Michael Smith <msmith@fluendo.com>
7337 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7338 Make typefind function name for mpeg4 video unique.
7340 2006-03-08 Wim Taymans <wim@fluendo.com>
7342 * ext/libvisual/visual.c: (gst_visual_init),
7343 (gst_visual_clear_actors), (gst_visual_dispose),
7344 (gst_visual_reset), (gst_visual_src_setcaps),
7345 (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
7346 (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
7347 (gst_visual_chain), (gst_visual_change_state):
7348 Cleanups, post nice errors.
7349 Handle sink and src events.
7350 Implement simple QoS.
7352 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7353 Use new basesink methods to configure max-lateness.
7356 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7357 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
7358 Debug statement cleanups.
7360 * gst/volume/gstvolume.c: (gst_volume_class_init):
7363 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
7365 * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
7366 (gst_text_overlay_init), (gst_text_overlay_set_property),
7367 (gst_text_overlay_get_property):
7368 Revert API/ABI break from March 1. Keep 'halign' and 'valign'
7369 as string type properties, but mark them deprecated. Add
7370 'halignment' and 'valignment' properties that use enums
7373 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
7375 Patch by: Fabrizio Gennari
7377 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7378 Allow palettes with less than 256 colours in AVI files
7381 2006-03-07 Julien MOUTTE <julien@moutte.net>
7383 * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
7384 (gst_text_overlay_video_event): Fix wrong EOS handling on text
7385 pad. We were releasing the queued text buffer when we should keep
7386 it until video pad gets EOS or discard the text buffer because it's
7387 too old. That was eating the last subtitle buffer. Add some more
7390 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
7392 * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
7393 (gst_text_overlay_video_chain):
7394 Fix invalid memory access (we can't access a buffer after it's been
7395 pushed downstream without taking a reference); fix memory leak (if
7396 there's no text to render, bail out before allocating stuff).
7398 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
7400 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
7401 (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
7402 * ext/pango/gsttextoverlay.h:
7403 If input is plain text, escape it before passing it to
7404 pango_layout_set_markup().
7406 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
7408 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
7409 Don't ignore flow return from gst_pad_push().
7411 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
7413 Patch by: Fabrizio Gennari
7415 * ext/libvisual/visual.c: (gst_visual_getcaps),
7416 (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
7417 * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
7418 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
7419 (gst_vorbisenc_convert_sink):
7420 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
7421 (gst_audio_duration_from_pad_buffer):
7422 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
7423 (gst_audio_filter_chain):
7424 * gst-libs/gst/rtp/gstbasertpdepayload.c:
7425 (gst_base_rtp_depayload_setcaps):
7426 * gst-libs/gst/video/video.c: (gst_video_frame_rate),
7427 (gst_video_get_size):
7428 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
7429 Don't leak references returned by gst_pad_get_parent()
7432 2006-03-06 Stefan Kost <ensonic@users.sf.net>
7434 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
7435 change location param details
7436 * gst/volume/gstvolume.c: (plugin_init):
7437 correct plugin description
7439 2006-03-06 Tim-Philipp Müller <tim at centricular dot net>
7441 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
7442 (gst_gnome_vfs_src_check_get_range):
7443 Override GstBaseSrc::check_get_range() in order to avoid opening
7444 the resource just to check whether we can operate in pull-mode or
7445 not - we can predict that pretty well from the URI alone. Should
7446 fix problems with last.fm (#331690). (Requires latest core CVS).
7448 2006-03-06 Wim Taymans <wim@fluendo.com>
7450 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
7451 (gst_video_sink_class_init):
7452 Throw away frames that are later than 20 ms.
7454 2006-03-06 Tim-Philipp Müller <tim at centricular dot net>
7456 Patch by: Fabrizio Gennari
7458 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
7459 Set depth on WMA caps (#333545)
7461 2006-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
7463 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
7464 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
7465 put Theora BOS pages before others. This hardcodes
7466 the Ogg/Theora I profile, but hey.
7468 2006-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
7471 updated with some examples
7472 * ext/theora/theoraenc.c: (granulepos_to_timestamp),
7473 (granulepos_add), (theora_buffer_from_packet):
7474 * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
7475 (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
7476 (gst_vorbisenc_chain):
7477 implement strategy from ext/ogg/README
7478 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
7479 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
7480 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
7481 (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
7482 Fix muxer so that oggz-validate is happy with all streams;
7483 except for no eos mark, and the BOS page ordering
7484 * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
7485 (check_buffer_granulepos):
7486 * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
7487 update tests to check for OFFSET being set as requested
7488 fixed type of granulepos, it's not a ClockTime
7490 2006-03-05 Julien MOUTTE <julien@moutte.net>
7492 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
7493 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
7494 Check that the xvimage we are creating has a correct size
7495 before returning it. (#314897)
7497 2006-03-05 Tim-Philipp Müller <tim at centricular dot net>
7499 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7500 Give id3 and ape tag typefinders a rank slightly higher
7501 than PRIMARY to ensure they're always run before any of
7502 the other typefinders (in particular wav and mp3) (#324186).
7504 2006-03-05 Tim-Philipp Müller <tim at centricular dot net>
7506 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7507 Add support for '3IVD' fourcc (#333403).
7509 2006-03-04 Tim-Philipp Müller <tim at centricular dot net>
7512 Bump requirements to GStreamer CVS for the new error enum.
7514 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
7515 Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
7516 space left on the device (fixes #333352).
7518 2006-03-04 Sebastien Moutte <sebastien@moutte.net>
7521 add a project file for libgstvolume
7522 update the workspace
7524 2006-03-03 Thomas Vander Stichele <thomas at apestaart dot org>
7526 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
7527 * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
7529 Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
7530 Set IN_CAPS on header buffers
7532 2006-03-02 Wim Taymans <wim@fluendo.com>
7534 * docs/plugins/Makefile.am:
7535 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7536 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7537 Add audioresample to docs.
7539 * gst/audioconvert/gstaudioconvert.c:
7542 * gst/audioresample/gstaudioresample.c:
7543 (gst_audioresample_base_init), (gst_audioresample_class_init),
7544 (gst_audioresample_init), (gst_audioresample_dispose),
7545 (audioresample_get_unit_size), (audioresample_transform_caps),
7546 (resample_set_state_from_caps), (audioresample_transform_size),
7547 (audioresample_set_caps), (audioresample_event),
7548 (audioresample_do_output), (audioresample_transform),
7549 (audioresample_pushthrough), (gst_audioresample_set_property),
7550 (gst_audioresample_get_property), (plugin_init):
7551 * gst/audioresample/gstaudioresample.h:
7553 Small code cleanups.
7555 2006-03-02 Wim Taymans <wim@fluendo.com>
7557 * docs/plugins/Makefile.am:
7558 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7559 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7560 Added videoscale to docs.
7562 * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
7563 (gst_video_rate_swap_prev), (gst_video_rate_event),
7564 (gst_video_rate_chain):
7567 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
7568 (gst_video_scale_init), (gst_video_scale_prepare_size),
7569 (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
7570 (gst_video_scale_fixate_caps), (gst_video_scale_transform):
7571 * gst/videoscale/gstvideoscale.h:
7572 Added docs, examples.
7574 Post errors instead of g_warning.
7576 2006-03-02 Wim Taymans <wim@fluendo.com>
7578 * docs/libs/gst-plugins-base-libs-docs.sgml:
7579 * docs/libs/gst-plugins-base-libs-sections.txt:
7580 * docs/libs/gst-plugins-base-libs.types:
7581 * docs/plugins/Makefile.am:
7582 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7583 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7584 Added some more docs to libs and plugins.
7586 * gst-libs/gst/audio/gstringbuffer.c:
7587 (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
7588 * gst-libs/gst/audio/gstringbuffer.h:
7589 Document ringbuffer some more.
7591 * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
7592 (gst_video_rate_setcaps), (gst_video_rate_reset),
7593 (gst_video_rate_init), (gst_video_rate_flush_prev),
7594 (gst_video_rate_swap_prev), (gst_video_rate_event),
7595 (gst_video_rate_chain), (gst_video_rate_change_state):
7596 * gst/videorate/gstvideorate.h:
7597 Fix videorate to use segments.
7598 Make it work with 0/1 framerates (closes #331903)
7599 Handle EOS correctly.
7602 2006-03-02 Tim-Philipp Müller <tim at centricular dot net>
7604 * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
7605 (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
7606 (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
7607 In state change function, first chain up to parent class,
7608 then handle downwards state change stuff. Remove some
7609 commented out cruft from 0.8 code.
7611 2006-03-02 Tim-Philipp Müller <tim at centricular dot net>
7613 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
7614 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
7615 (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
7616 (gst_ogm_parse_chain):
7617 Don't remove/re-add source pad if the new caps are the same as
7618 the old caps anyway (#333042). When removing source pad, don't
7619 unref it afterwards - we didn't ref it when adding. Sprinkle some
7620 GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
7621 after using gst_pad_get_parent(). Return downstream flow return
7622 value in chain function.
7624 2006-03-02 Wim Taymans <wim@fluendo.com>
7626 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7627 * docs/plugins/gst-plugins-base-plugins.args:
7628 * docs/plugins/gst-plugins-base-plugins.hierarchy:
7629 * docs/plugins/gst-plugins-base-plugins.interfaces:
7630 * docs/plugins/gst-plugins-base-plugins.signals:
7631 Fix hierarchy, added some more elements to the docs.
7633 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7634 (gst_ffmpegcsp_get_type):
7635 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
7636 Fix docs for ffmpegcolorspace.
7638 2006-03-01 Tim-Philipp Müller <tim at centricular dot net>
7640 * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
7641 (apetag_type_find), (ape_type_find), (plugin_init):
7642 Some typefinding fine-tuning:
7643 - rank ID3/APE tags in order of preference via probabilities, so that
7644 ID3v2 > APEv2 > APEv1 > ID3v1.
7645 - three or four bytes don't really justify MAXIMUM probability,
7646 change those to 'very likely' (musepack and monkeysaudio).
7648 2006-03-01 Wim Taymans <wim@fluendo.com>
7650 * docs/plugins/Makefile.am:
7651 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7652 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7653 * ext/alsa/gstalsamixer.c:
7654 * ext/alsa/gstalsamixer.h:
7655 * ext/alsa/gstalsamixerelement.c:
7656 (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
7657 * ext/alsa/gstalsamixerelement.h:
7658 * ext/alsa/gstalsasink.c:
7659 * ext/alsa/gstalsasink.h:
7660 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
7662 * ext/alsa/gstalsasrc.h:
7664 Small code cleanups.
7666 2006-03-01 Wim Taymans <wim@fluendo.com>
7668 * ext/theora/Makefile.am:
7669 Dist new header too,
7671 2006-03-01 Wim Taymans <wim@fluendo.com>
7673 * docs/plugins/Makefile.am:
7674 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7675 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7676 * ext/gnomevfs/gstgnomevfssink.h:
7677 * ext/gnomevfs/gstgnomevfssrc.h:
7678 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
7679 * ext/vorbis/vorbisdec.h:
7680 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
7681 * ext/vorbis/vorbisenc.h:
7682 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
7683 (vorbis_parse_chain), (vorbis_parse_change_state):
7684 * ext/vorbis/vorbisparse.h:
7685 * gst/audioconvert/gstaudioconvert.h:
7686 * gst/tcp/gsttcpserversink.h:
7687 * gst/videotestsrc/gstvideotestsrc.c:
7688 * gst/videotestsrc/gstvideotestsrc.h:
7689 * gst/volume/gstvolume.c:
7690 * gst/volume/gstvolume.h:
7692 Added docs for vorbisdec and vorbisparse.
7695 2006-03-01 Wim Taymans <wim@fluendo.com>
7697 * docs/plugins/Makefile.am:
7698 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7699 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7700 * ext/pango/gstclockoverlay.h:
7701 * ext/pango/gsttextoverlay.h:
7702 * ext/pango/gsttextrender.h:
7703 * ext/pango/gsttimeoverlay.h:
7704 * ext/theora/gsttheoradec.h:
7705 * ext/theora/gsttheoraenc.h:
7706 * ext/theora/theoradec.c:
7707 * ext/theora/theoraenc.c:
7708 * gst/audioconvert/gstaudioconvert.h:
7709 * gst/audiotestsrc/gstaudiotestsrc.h:
7710 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
7711 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
7712 * gst/tcp/gstmultifdsink.h:
7713 Updated/added documentation.
7715 * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
7716 (gst_text_overlay_halign_get_type),
7717 (gst_text_overlay_wrap_mode_get_type),
7718 (gst_text_overlay_base_init), (gst_text_overlay_class_init),
7719 (gst_text_overlay_init), (gst_text_overlay_set_property),
7720 (gst_text_overlay_get_property):
7721 Fix up properties to be enums instead of string to make bindings,
7722 introspection and automatic GUI creation possible.
7723 Add getters for the properties.
7725 2006-02-28 Sebastien Moutte <sebastien@moutte.net>
7727 * gst/audiotestsrc/gstaudiotestsrc.c:
7728 added defines of M_PI and M_PI_2
7729 * gst/ffmpegcolorspace/avcodec.h:
7730 removed #include "stdint.h" for win32 as _stdint.h is
7731 autogenerated to win32/common
7732 * win32/common/libgstaudio.def:
7733 * win32/common/libgsttag.def:
7736 some project files bugs corrected
7738 project files are reset to the default vs7 configuration
7739 (they link to msvcr71.dll using default optimizations)
7741 2006-02-28 Wim Taymans <wim@fluendo.com>
7743 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
7746 2006-02-28 Edward Hervey <edward@fluendo.com>
7748 * ext/alsa/gstalsasrc.c:
7749 Set proper class on the ElementDetails:
7750 Source/Audio instead of Src/Audio/
7752 2006-02-28 Edward Hervey <edward@fluendo.com>
7754 * gst/videoscale/vs_scanline.c:
7755 (vs_scanline_resample_nearest_RGBA):
7756 Revert optimization in videoscale. It should go in liboil and have
7757 an appropriate liboil function.
7759 2006-02-28 Wim Taymans <wim@fluendo.com>
7761 * gst-libs/gst/audio/gstbaseaudiosink.c:
7762 (gst_base_audio_sink_provide_clock):
7763 Don't try to provide a clock in the NULL state.
7765 2006-02-28 Wim Taymans <wim@fluendo.com>
7767 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
7768 (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
7769 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
7770 (gst_ogg_demux_deactivate_current_chain),
7771 (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
7772 (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
7773 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
7774 (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
7775 Use GstSegment infrastructure to remove duplicated code
7776 and handle more seek cases correctly.
7778 2006-02-28 Wim Taymans <wim@fluendo.com>
7780 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7781 (gst_ffmpegcsp_transform):
7782 Don't ignore return code from ffmpeg convert function.
7784 * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
7785 Split out some long statements to ease debugging.
7787 2006-02-27 Jan Schmidt <thaytan@mad.scientist.com>
7789 * ext/libvisual/visual.c: (gst_visual_init),
7790 (gst_vis_src_negotiate), (get_buffer), (plugin_init):
7791 Don't use gst_pad_use_fixed_caps, because it prevents downstream from
7792 being able to renegotiate the size. Instead, use the negotiation
7793 algorithm from the goom plugin to pick an initial output caps.
7795 Also, allow theoretical libvisual plugins that might support non-GL
7796 output even if they also do GL.
7798 2006-02-26 Julien MOUTTE <julien@moutte.net>
7800 * ext/libvisual/visual.c: (gst_visual_init),
7801 (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
7802 (plugin_init): Load only non GL plugins. Fix some memleaks and
7803 possible negotiation issues.
7805 2006-02-25 Julien MOUTTE <julien@moutte.net>
7807 * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
7809 2006-02-24 Michael Smith <msmith@fluendo.com>
7811 * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
7812 (cmml_type_find), (plugin_init):
7813 Fix CMML type find function to not require a specific minor version
7816 Add an MPEG4 video elementary stream typefind function.
7818 2006-02-04 Michael Smith <msmith@fluendo.com>
7820 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
7821 (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
7822 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
7823 (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
7824 (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
7825 (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
7826 Annodex support in ogg demuxer. Doesn't do very much without the
7827 other annodex patches (to come).
7829 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7831 Patch by: Fabrizio Gennari <fabrizio dot get at tiscali dot it>
7833 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7834 Pick up palette for MS video v1 (#327028)
7836 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7838 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7839 (gst_ffmpegcsp_caps_remove_format_info),
7840 (gst_ffmpegcsp_get_unit_size):
7841 The 'palette_data' field from incoming RGB caps shouldn't be
7842 proxied on outgoing YUV caps; also, restrict unit size
7843 adjustment in case of paletted data only to the unit that
7844 actually has a palette. Fixes #330711.
7846 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7848 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7849 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
7850 (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
7851 (gst_ffmpegcsp_get_unit_size):
7852 Plug some memory leaks.
7854 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7856 * sys/ximage/Makefile.am:
7857 * sys/xvimage/Makefile.am:
7858 Add some _CFLAGS and _LIBS that seem to be missing
7859 and/or required for Cygwin (see #317048).
7861 2006-02-22 Wim Taymans <wim@fluendo.com>
7863 * ext/alsa/gstalsasrc.c:
7864 Fix description as pointed out by caugier.
7866 2006-02-22 Tommi Myöhänen <ext-tommi do myohanen at nokia dot com>
7868 Reviewed by : Edward Hervey <edward@fluendo.com>
7870 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
7872 Better 3gp typefinding (#331526).
7874 2006-02-21 Tim-Philipp Müller <tim at centricular dot net>
7876 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
7877 Don't send EOS event here, the base class will send one for us.
7879 * gst/playback/gstplaybasebin.c: (prepare_output):
7880 Subpictures without video stream aren't allowed either.
7882 * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
7883 Fix debug statement copy'n'paste-o.
7885 2006-02-21 Tim-Philipp Müller <tim at centricular dot net>
7887 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
7888 Fix issues with mixer keeping state when muting/unmuting
7889 and when changing the volume whilst muted (see #331763
7892 2006-02-20 Tim-Philipp Müller <tim at centricular dot net>
7894 * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
7895 (parse_subrip), (gst_sub_parse_format_autodetect):
7896 Set right caps given that we send escaped text. Also,
7897 honour <i></i>, <b></b> and <u></u> markers that can be found
7898 in .srt files (fixes #310202).
7900 2006-02-20 Tim-Philipp Müller <tim at centricular dot net>
7902 * gst-libs/gst/audio/mixerutils.c:
7903 (element_factory_rank_compare_func):
7904 Make order in which elements are tried more determinable.
7906 2006-02-20 Julien MOUTTE <julien@moutte.net>
7908 * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
7909 (remove_element_chain), (cleanup_decodebin),
7910 (gst_decode_bin_change_state): Make decodebin reusable by
7911 fixing remove_element_chain first and then introduce a
7912 cleaner in state change to ->NULL. (Closes #331678)
7914 2006-02-19 Wim Taymans <wim@fluendo.com>
7916 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
7917 use 0666 mask when creating files so umask gets applied
7918 correctly. Fixes #331295.
7920 2006-02-19 Tim-Philipp Müller <tim at centricular dot net>
7922 * gst/subparse/Makefile.am:
7923 * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
7924 (gst_ssa_parse_dispose), (gst_ssa_parse_init),
7925 (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
7926 (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
7927 (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
7928 (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
7929 * gst/subparse/gstssaparse.h:
7930 * gst/subparse/gstsubparse.c: (plugin_init):
7931 Add very basic parser for SSA subtitle streams (as often
7932 found in matroska files).
7934 2006-02-19 Tim-Philipp Müller <tim at centricular dot net>
7936 * gst/playback/gstdecodebin.c: (mimetype_is_raw):
7937 That should be text/x-pango-markup, not text/x-pango-layout.
7939 2006-02-19 Julien MOUTTE <julien@moutte.net>
7941 * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
7944 2006-02-19 Julien MOUTTE <julien@moutte.net>
7946 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
7947 (gst_text_overlay_finalize), (gst_text_overlay_init),
7948 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
7949 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
7950 (gst_text_overlay_text_event), (gst_text_overlay_video_event),
7951 (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
7952 (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
7953 Fix state change deadlock.
7955 2006-02-19 Julien MOUTTE <julien@moutte.net>
7957 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
7958 (gst_text_overlay_finalize), (gst_text_overlay_init),
7959 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
7960 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
7961 (gst_text_overlay_text_event), (gst_text_overlay_video_event),
7962 (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
7963 (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
7964 * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
7965 and subtitles files.
7967 2006-02-19 Julien MOUTTE <julien@moutte.net>
7969 * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
7970 should be considered as raw.
7972 2006-02-19 Julien MOUTTE <julien@moutte.net>
7974 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
7976 * gst/playback/gststreaminfo.h: Introduce language informations.
7978 2006-02-18 Jan Schmidt <thaytan@mad.scientist.com>
7980 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
7981 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
7982 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
7983 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
7984 Set shared memory segments to be deleted as soon as we have attached,
7985 that way they get cleaned up automatically if we crash.
7987 2006-02-18 Julien MOUTTE <julien@moutte.net>
7989 * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text):
7990 * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
7991 functions are called with lock held.
7993 2006-02-18 Julien MOUTTE <julien@moutte.net>
7995 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
7996 (gst_text_overlay_finalize), (gst_text_overlay_init),
7997 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
7998 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
7999 (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
8000 (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
8001 (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
8002 (gst_text_overlay_change_state): Refactoring of textoverlay
8003 without collectpads. This now supports sparse subtitles coming
8004 from a demuxer instead of a sub file. Seeking is still broken
8005 though. Need to discuss with wtay some more on how to handle
8007 * ext/pango/gsttextoverlay.h:
8008 * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
8009 subtitles coming from the demuxer.
8011 2006-02-17 Wim Taymans <wim@fluendo.com>
8013 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
8014 (gst_vorbisenc_convert_sink):
8015 Use some more scaling functions.
8017 2006-02-17 Tim-Philipp Müller <tim at centricular dot net>
8019 * ext/cdparanoia/gstcdparanoiasrc.c:
8020 (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
8021 (gst_cd_paranoia_paranoia_callback),
8022 (gst_cd_paranoia_src_signal_is_being_watched),
8023 (gst_cd_paranoia_src_read_sector):
8024 * ext/cdparanoia/gstcdparanoiasrc.h:
8025 Add back 'transport-error' and 'uncorrected-error' signals and
8026 make them actually be fired when bad stuff happens (#319340).
8028 2006-02-17 Wim Taymans <wim@fluendo.com>
8030 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
8031 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
8032 (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
8033 (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
8034 (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
8035 (gst_ring_buffer_pause), (gst_ring_buffer_stop),
8036 (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
8037 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
8038 (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
8039 (gst_ring_buffer_clear):
8041 Added some G_LIKELY.
8043 2006-02-17 Wim Taymans <wim@fluendo.com>
8045 * gst-libs/gst/audio/TODO:
8048 * gst-libs/gst/audio/gstbaseaudiosink.c:
8049 (gst_base_audio_sink_get_offset):
8050 When trying to play samples ASAP and we don't have a
8051 previous sample, try to play at position 0 instead of
8052 an invalid position.
8054 2006-02-17 Wim Taymans <wim@fluendo.com>
8056 * ext/alsa/gstalsasink.c: (gst_alsasink_open),
8057 (gst_alsasink_reset):
8058 Also release lock when we get an error in _reset();
8059 fix an error message.
8061 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8063 * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
8064 (gst_alsasink_init), (get_channel_free_structure),
8065 (caps_add_channel_configuration), (gst_alsasink_getcaps),
8066 (gst_alsasink_close):
8067 * ext/alsa/gstalsasink.h:
8068 Add support for more than 2 channels (#326720).
8070 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8072 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8073 Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
8074 with 4 or 6 channels, assume a default channel layout to make things
8075 work (not sure there's anything else we can do in those cases).
8077 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8079 * gst-libs/gst/audio/multichannel.c:
8082 * gst-libs/gst/riff/Makefile.am:
8083 * gst-libs/gst/riff/riff-ids.h:
8084 * gst-libs/gst/riff/riff-media.c:
8085 (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
8086 Add support for WAVEFORMATEX, eg. PCM audio with more than two
8087 channels and a channel layout map.
8089 2006-02-16 Mathieu Garcia <b0nk at free dot fr>
8091 Reviewed by Edward Hervey <edward@fluendo.com>
8093 * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA):
8094 C-level optimization of the RGBA nearest neighbour function.
8095 Eventually this might end up in liboil with vectorized versions.
8097 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8099 * gst-libs/gst/audio/multichannel.c:
8100 (gst_audio_get_channel_positions):
8101 When we have more than 2 channels, but no channel layout is
8102 specified in the caps, return some default channel layout
8103 to the caller and warn about about a possibly buggy element
8104 (could be buggy filtercaps as well of course) (#317038).
8106 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8108 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
8109 Add gst-libs/gst/cdda to list of lib search paths.
8111 2006-02-15 Andy Wingo <wingo@pobox.com>
8113 * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
8114 timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
8115 to the Lord Jesus that I do not have to touch the ogg muxer ever
8118 2006-02-15 Edward Hervey <edward@fluendo.com>
8120 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
8121 quicktime movie files can also contain 'uuid' atoms.
8123 2006-02-14 Tim-Philipp Müller <tim at centricular dot net>
8125 * gst/audioconvert/plugin.c: (plugin_init):
8126 Register the GstAudioChannelPosition enum type with the type
8127 system in the plugin_init function, so that it is known before
8128 any element actually makes use of multi-channel stuff. This is
8129 required for example if one wants to be able to deserialise/use
8130 a caps string with channel positions before any pipeline has
8131 been setup and started, like with gst-launch.
8133 2006-02-14 Wim Taymans <wim@fluendo.com>
8135 * gst-libs/gst/audio/gstringbuffer.c:
8136 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
8137 (gst_ring_buffer_samples_done), (wait_segment),
8138 (gst_ring_buffer_commit), (gst_ring_buffer_clear):
8139 Add some compiler G_(UN_)LIKELY help.
8140 SIGNAL the ringbuffer waiters when going to PAUSED as well to
8141 make sure they can exit their functions. Should fix #330748
8143 2006-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
8148 * win32/common/_stdint.h:
8149 Windows does not have long long; copy the generated _stdint.h
8150 * win32/common/interfaces-enumtypes.c:
8151 (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
8152 (gst_mixer_track_flags_get_type),
8153 (gst_tuner_channel_flags_get_type):
8154 * win32/common/multichannel-enumtypes.c:
8155 (gst_audio_channel_position_get_type):
8158 2006-02-13 Wim Taymans <wim@fluendo.com>
8160 * gst-libs/gst/audio/gstbaseaudiosink.c:
8161 (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
8162 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8163 Always sync on first sample we receive when starting.
8165 2006-02-13 Wim Taymans <wim@fluendo.com>
8167 * gst/playback/gstplaybin.c: (gen_vis_element):
8168 Update vis bin docs.
8169 Move queue after tee so we don't queue video buffers but
8170 audio samples instead. Fixes problems where the video queue
8171 is filled and the audio queue empty.
8173 2006-02-13 Tim-Philipp Müller <tim at centricular dot net>
8175 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
8176 No need to push an EOS event here, GstBaseSrc will do that for us
8177 when we return FLOW_UNEXPECTED.
8179 2006-02-12 Wim Taymans <wim@fluendo.com>
8181 * gst-libs/gst/audio/gstbaseaudiosink.c:
8182 (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
8183 (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
8184 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8185 Use scale functions when possible.
8187 Free clockid when after waiting for EOS.
8188 Use G_(UN_)LIKLY when it makes sense.
8189 Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
8191 2006-02-12 Edward Hervey <edward@fluendo.com>
8193 * gst/playback/gstplaybasebin.c: (prepare_output):
8194 Remove stray semi-colon (fixes #330888).
8196 2006-02-12 Jan Schmidt <thaytan@mad.scientist.com>
8198 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
8199 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
8200 Fix up the XShm call testing so that we catch errors, and don't
8201 cause new ones by attempting to detach from a segment we failed
8202 to attach to. Fixes #312439.
8204 2006-02-10 Edward Hervey <edward@fluendo.com>
8206 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
8207 Added flv file typefind (video/x-flv).
8209 2006-02-10 Edward Hervey <edward@fluendo.com>
8211 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
8212 (gst_riff_create_video_template_caps):
8213 Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
8214 Also added the caps to the default set of riff video caps.
8216 2006-02-09 Andy Wingo <wingo@pobox.com>
8218 * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
8219 time and the end time of the last packet in the page.
8220 (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
8221 on the pages in our queue, set the duration as well. Reflow a
8223 (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
8224 Fixes bad muxing order.
8226 2006-02-09 Thomas Vander Stichele <thomas at apestaart dot org>
8228 * gst-libs/gst/rtp/gstbasertppayload.c:
8229 (gst_basertppayload_setcaps), (gst_basertppayload_push):
8230 update seqnum before setting it on the packet; this makes sure
8231 that the timestamp and seqnum properties match after pushing
8234 2006-02-09 Andy Wingo <wingo@pobox.com>
8236 * gst-libs/gst/audio/gstringbuffer.c
8237 (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
8238 overflow after 13.5 hours of recording. Kapow!
8240 * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
8241 the buffer size -- we don't care about underrun/overrun reporting
8242 right now, just need to return a useful value.
8244 2006-02-09 Jan Schmidt <thaytan@mad.scientist.com>
8249 === release 0.10.3 ===
8251 2006-02-09 Jan Schmidt <thaytan@mad.scientist.com>
8254 releasing 0.10.3, "Under Pressure"
8256 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
8259 Drat. Bump libtool version number for new API.
8260 Prelease 0.10.2.3 (of 0.10.3)
8262 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
8265 * win32/common/config.h:
8266 0.10.2.2 prerelease (of 0.10.3).
8268 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
8270 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
8271 Revert Andy's newsegment change pending a more correct
8274 2006-02-08 Thomas Vander Stichele <thomas at apestaart dot org>
8276 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
8277 (qt_type_find), (plugin_init):
8278 detect more files as 3gp
8279 group and reorder the iso file formats
8281 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8283 * ext/vorbis/vorbis.c: (plugin_init):
8284 Register musicbrainz tags, so apps don't have to.
8286 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8288 * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
8289 (gst_tag_to_vorbis_tag):
8290 Make sure we called gst_tag_register_musicbrainz_tags()
8291 before possibly mapping a vorbiscomment string from/to a
8294 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8296 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
8297 In case we can't find the required number of consecutive
8298 mpeg audio frames to positively identify an MPEG audio
8299 stream, check if there's at least a valid mpeg audio
8300 frame right at offset 0 and if so suggest mpeg/audio
8301 caps with a very low probability (#153004).
8303 2006-02-07 Andy Wingo <wingo@pobox.com>
8305 * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
8306 a TIME segment if we get timestamped buffers. Requires recent
8307 fixes in core to work properly.
8309 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8311 * gst/playback/gstplaybasebin.c: (prepare_output):
8312 Don't print the URI as part of the error message, it
8313 makes error dialogs look rather ugly, especially if
8314 the URI is very long or has characters in it that
8317 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8319 * gst/playback/gstplaybasebin.c: (prepare_output):
8320 Error out if we have only text or subtitles, but nothing
8321 else. Also error out if we have subtitles but no video
8324 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8326 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
8327 Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
8328 Post an error message on the bus when we encounter an
8329 error, which will hopefully be more meaningful than the
8330 'Internal Flow Error' message users get to see if we
8331 just return GST_FLOW_ERROR.
8333 2006-02-07 Andy Wingo <wingo@pobox.com>
8335 * configure.ac (GST_MAJORMINOR): Update core version req to
8336 0.10.2.2, for the collectpads API addition (#330244).
8338 2006-02-06 Tim-Philipp Müller <tim at centricular dot net>
8340 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
8341 Return FALSE from plugin_init() when GnomeVFS can't
8342 be initialised for some reason (#328423).
8344 2006-02-06 Julien MOUTTE <julien@moutte.net>
8346 * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event):
8347 Stick to seeking theory until i find the bug.
8348 * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
8350 2006-02-06 Jan Schmidt <thaytan@mad.scientist.com>
8352 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
8353 (theora_enc_finalize), (theora_enc_sink_setcaps),
8354 (theora_set_header_on_caps), (theora_enc_chain),
8355 (theora_enc_change_state):
8356 * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
8357 Make theoraenc and the tests leak free. Like, really.
8359 2006-02-06 Jan Schmidt <thaytan@mad.scientist.com>
8361 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
8362 (theora_enc_finalize), (theora_enc_sink_setcaps):
8363 Add a finalize method to ensure we clean up state even if
8364 someone omitted the state change back to NULL.
8366 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
8367 (gst_vorbisenc_chain):
8368 Free some more leaked bits.
8370 * tests/check/pipelines/theoraenc.c: (start_pipeline),
8372 Wait for state changes to happen if they're ASYNC.
8374 This ought to teach those fancy pants buildbots a lesson.
8376 2006-02-05 Jan Schmidt <thaytan@mad.scientist.com>
8378 * gst-libs/gst/tag/gstid3tag.c:
8379 Add mapping for ID3 International Standard Recording Code
8382 2006-02-05 Jan Schmidt <thaytan@mad.scientist.com>
8384 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
8385 Don't leak tag names.
8387 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8389 * docs/libs/gst-plugins-base-libs-docs.sgml:
8390 * docs/libs/gst-plugins-base-libs-sections.txt:
8391 * gst-libs/gst/tag/gstid3tag.c:
8392 * gst-libs/gst/tag/gstvorbistag.c:
8393 * gst-libs/gst/tag/tags.c:
8394 Split libgsttag docs into multiple sections.
8396 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8398 * docs/libs/Makefile.am:
8399 * docs/libs/gst-plugins-base-libs-docs.sgml:
8400 * docs/libs/gst-plugins-base-libs-sections.txt:
8401 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
8402 * gst-libs/gst/tag/gstvorbistag.c:
8403 * gst-libs/gst/tag/tag.h:
8404 * gst-libs/gst/tag/tags.c:
8405 Add libgsttag to the docs.
8407 2006-02-05 Julien MOUTTE <julien@moutte.net>
8409 * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
8410 (gst_text_overlay_init), (gst_text_overlay_src_event),
8411 (gst_text_overlay_collected): Fix clockoverlay.
8413 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8415 * docs/libs/compiling.sgml:
8416 Fix typo: it's pkg-config, not pkg-gconfig
8418 * docs/libs/gst-plugins-base-libs-docs.sgml:
8419 * docs/libs/gst-plugins-base-libs-sections.txt:
8420 * docs/libs/tmpl/gstgconf.sgml:
8421 There is no libgstgconf in 0.10, remove it
8424 2006-02-05 Julien MOUTTE <julien@moutte.net>
8426 * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
8427 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
8428 (gst_text_overlay_src_event), (gst_text_overlay_collected):
8429 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
8430 (gst_sub_parse_class_init), (gst_sub_parse_init),
8431 (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
8432 (parse_mpsub), (parser_state_init), (handle_buffer),
8433 (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
8434 * gst/subparse/gstsubparse.h: Introduce seeking code.
8436 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8438 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
8439 Add comment about LANGUAGE tag inconsistency (we want
8440 ISO-639-1, but extract three-letter identifiers?)
8443 Add two translatable files.
8445 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8447 * gst-libs/gst/tag/Makefile.am:
8448 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
8449 * gst-libs/gst/tag/tag.h:
8450 * gst-libs/gst/tag/tags.c:
8451 (gst_tag_register_musicbrainz_tags_internal),
8452 (gst_tag_register_musicbrainz_tags):
8453 Forward-port some tags stuff from the 0.8 branch. This is
8454 mostly the addition of musicbrainz tags and their mapping
8455 to vorbistags, and a vorbistag mapping of the language tag.
8457 2006-02-05 Julien MOUTTE <julien@moutte.net>
8459 * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
8462 2006-02-04 David Schleef <ds@schleef.org>
8464 * ext/ogg/gstoggmux.c:
8465 * gst/typefind/gsttypefindfunctions.c:
8466 Add Dirac typefinding and add dirac format to oggmux.
8468 2006-02-03 Tim-Philipp Müller <tim at centricular dot net>
8470 * gst/playback/gstdecodebin.c: (try_to_link_1):
8471 Don't put essential function call into
8472 g_return_*() macro, otherwise it'll all be
8473 replaced by NOOPs when compiling with
8474 G_DISABLE_CHECKS defined.
8476 2006-02-03 Edgard Lima <edgard.lima@indt.org.br>
8478 * ext/ogg/gstoggdemux.c:
8479 * ext/ogg/gstoggparse.c:
8480 * gst/tcp/gsttcpserversink.c:
8481 * sys/v4l/v4lsrc_calls.c:
8482 * sys/v4l/v4lsrc_calls.h:
8483 Just make it compile with --disable-gst-debug.
8485 2006-02-03 Wim Taymans <wim@fluendo.com>
8487 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
8488 (gst_alsasink_class_init), (gst_alsasink_init),
8489 (gst_alsasink_write), (gst_alsasink_reset):
8490 * ext/alsa/gstalsasink.h:
8491 Add lock to protect alsa calls.
8492 Implement reset to flush samples ASAP, does not work
8495 2006-02-02 Wim Taymans <wim@fluendo.com>
8497 * gst-libs/gst/audio/gstbaseaudiosink.c:
8498 (gst_base_audio_sink_provide_clock):
8499 Ugh.. getting late I guess...
8501 2006-02-02 Wim Taymans <wim@fluendo.com>
8503 * gst-libs/gst/audio/gstbaseaudiosink.c:
8504 (gst_base_audio_sink_provide_clock),
8505 (gst_base_audio_sink_set_property),
8506 (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
8507 Don't try to provide a clock when we are not negotiated since
8508 we might not be able to make it run.
8510 2006-02-02 Tim-Philipp Müller <tim at centricular dot net>
8512 * gst/playback/gstdecodebin.c: (try_to_link_1):
8513 Unlinking two source pads is ... hard.
8515 2006-02-02 Wim Taymans <wim@fluendo.com>
8517 * gst-libs/gst/audio/TODO:
8520 * gst-libs/gst/audio/gstbaseaudiosink.c:
8521 (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
8522 On EOS, wait till the last sample is played before posting EOS.
8524 2006-02-01 Philippe Kalaf <burger at speedy dot org>
8526 * gst-libs/gst/rtp/gstbasertpdepayload.c:
8527 Patch by Kai Vehmanen : Adds ability to enable newsegment bypass by
8528 setting queue_delay to zero. Also avoid thread being started if
8529 queue_delay is zero.
8531 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
8533 * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
8534 Make test work again by connecting fakesinks to each decoded pad,
8535 which makes the pipeline wait until each fakesink has a buffer
8536 queued before going to PAUSED state. At that point we know the
8537 decodebin pads are negotiated.
8539 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
8541 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
8542 (gst_cdda_base_src_handle_event):
8543 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
8544 Pass unhandled queries to the parent class's query function.
8546 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
8548 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
8549 (gst_ogg_pad_src_query):
8550 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
8551 * ext/theora/theoradec.c: (theora_dec_src_query),
8552 (theora_dec_sink_query):
8553 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
8554 (vorbis_dec_sink_query):
8555 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
8556 (gst_vorbisenc_sink_query):
8557 * gst/adder/gstadder.c: (gst_adder_query):
8558 Pass unhandled queries upstream instead of just
8559 dropping them (#326447). Also, fix supported
8560 query types list for some elements.
8562 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
8564 * gst/typefind/gsttypefindfunctions.c: (au_type_find),
8565 (paris_type_find), (ilbc_type_find), (plugin_init):
8566 Fix typefinding for audio/x-au, audio/x-paris and
8567 audio/iLBC-sh. We cannot use the START_WITH macros
8568 here, because there can only be one typefind factory
8569 with the same name (caps), so the second one would
8570 replace the first one and the first one would never
8571 be called when doing typefinding (see #161712).
8574 2006-01-31 Wim Taymans <wim@fluendo.com>
8576 * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
8577 (vorbis_handle_header_packet), (vorbis_dec_push),
8578 (vorbis_handle_data_packet):
8579 Use scale_int when we can, add some more scaling.
8580 Check packettype before parsing it.
8582 2006-01-31 Wim Taymans <wim@fluendo.com>
8584 * ext/theora/theoradec.c: (_theora_granule_time),
8585 (theora_dec_src_convert), (theora_dec_sink_convert):
8586 Call right _scale functions.
8587 Use parameter instead of some other random value.
8589 2006-01-31 Wim Taymans <wim@fluendo.com>
8591 * ext/theora/theoradec.c: (_theora_granule_frame),
8592 (_theora_granule_time), (_inc_granulepos),
8593 (theora_dec_src_convert), (theora_dec_sink_convert),
8594 (theora_handle_type_packet), (theora_handle_data_packet),
8596 Use higher precision timestamps calculation.
8597 Convert some other conversions to _scale.
8599 2006-01-31 Stefan Kost <ensonic@users.sf.net>
8601 * gst/audiotestsrc/gstaudiotestsrc.c:
8602 (gst_audio_test_src_create_sine_table), (plugin_init):
8603 * gst/volume/gstvolume.c: (plugin_init):
8604 initialize gst_controller before using
8606 2006-01-31 Jan Schmidt <thaytan@mad.scientist.com>
8608 * tests/check/pipelines/theoraenc.c:
8609 * tests/check/pipelines/vorbisenc.c:
8610 Define constant using G_GINT64_CONSTANT to avoid errors when
8611 passing it around - otherwise it gets truncated to 32 bits.
8613 Fixes failing tests.
8615 2006-01-31 Andy Wingo <wingo@pobox.com>
8617 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
8618 caps being set doesn't have a framerate value. Basically a stopgap
8621 * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
8622 technically correct enough to put into core though.
8623 (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
8624 DURATION. Fixes theoraenc ! oggmux.
8626 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
8627 fraction, not double.
8629 2006-01-31 Sebastien Moutte <sebastien@moutte.net>
8632 add vs7 project files created by Sergey Scobich
8634 2006-01-30 Sebastien Moutte <sebastien@moutte.net>
8637 add vs8 project files created by Sergey Scobich
8639 2006-01-30 Andy Wingo <wingo@pobox.com>
8641 * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
8642 timestamp + duration, not just timestamp -- ogg pages should be
8643 ordered by stop time. Necessary fix given the change in vorbis
8646 * ext/theora/theoraenc.c (theora_enc_sink_setcaps)
8647 (gst_theora_enc_init): Pull the granule shift out of the encoder.
8648 (granulepos_add): New function, handles the messiness of adjusting
8650 (theora_buffer_from_packet):
8652 (theora_enc_sink_event): Use granulepos_add, not +.
8654 * tests/check/pipelines/theoraenc.c
8655 (check_buffer_granulepos_from_starttime): Just check the frame
8656 count, not the actual granulepos -- we can't dictate to the
8657 encoder when it should be placing keyframes.
8659 2006-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
8661 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
8662 SERVICE_NOT_AVAILABLE happens for example when you're trying to
8663 play an http:// stream from a server that's not serving
8665 2006-01-30 Andy Wingo <wingo@pobox.com>
8667 * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET):
8668 * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
8669 remove the UINT64_CONSTANT macro, doesn't appear to be needed or
8672 * ext/theora/gsttheoraenc.h:
8673 * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
8674 although theoraenc was timestamping correctly. Added handling of
8675 streams that start with nonzero timestamps.
8677 * tests/check/Makefile.am:
8678 * tests/check/pipelines/theoraenc.c: New file, basically does same
8681 * tests/check/pipelines/vorbisenc.c: I claim these bugs.
8683 2006-01-30 Wim Taymans <wim@fluendo.com>
8685 * gst-libs/gst/audio/gstaudiosink.c:
8686 (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
8687 (gst_audioringbuffer_pause):
8688 Implement pause that does not wait for completion.
8690 * gst-libs/gst/audio/gstbaseaudiosink.c:
8691 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8692 Don't drop buffers when going to PAUSED but perform preroll on
8693 remaining samples now that core base class supports this.
8695 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
8696 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
8697 (gst_ring_buffer_commit):
8698 Pause should not signal waiters.
8699 Implement return value of _commit correctly.
8701 2006-01-30 Andy Wingo <wingo@pobox.com>
8703 * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
8705 * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
8706 updated to timestamp from the first sample, not the last.
8707 (gst_vorbisenc_buffer_from_header_packet): New function, takes
8708 special care of granulepos and timestamp for header packets.
8709 (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
8710 when the first buffer has a nonzero timestamp.
8712 * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
8713 (GstVorbisEnc.subgranule_offset): New members. Take care of the
8714 case when the first audio buffer we get has a nonzero timestamp.
8715 (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
8716 properly timestamp vorbis buffers with the time of the first
8717 sample, not the last.
8719 * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
8720 vorbis_granule_time_copy -- now it takes the granule/subgranule
8721 offset into account.
8723 * tests/check/pipelines/vorbisenc.c: New test for correctness of
8724 timestamps, durations, and granulepos on buffers produced by
8727 2006-01-30 Jan Schmidt <thaytan@mad.scientist.com>
8729 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8730 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
8731 Patch from Eric Jonas to support conversions to/from UYVY
8734 2006-01-30 Julien MOUTTE <julien@moutte.net>
8736 * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
8737 (setup_subtitle), (setup_source), (set_active_source):
8738 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
8739 (gen_text_element), (gen_audio_element), (gen_vis_element),
8740 (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
8742 2006-01-29 Sebastien Moutte <sebastien@moutte.net>
8744 * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
8745 * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
8746 use gst_guint64_to_gdouble to be compliant with vs6
8747 * gst/playback/gstdecodebin.c: (try_to_link_1)
8748 * gst/videorate/videorate.c: (gst_video_rate_blank_data)
8749 use G_GINT64_CONSTANT for int64 constants
8750 * win32/common/libgstinterfaces.def:
8751 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
8753 update and add new project files
8755 2006-01-29 Thomas Vander Stichele <thomas at apestaart dot org>
8759 * win32/common/interfaces-enumtypes.c:
8760 (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
8761 (gst_mixer_track_flags_get_type),
8762 (gst_tuner_channel_flags_get_type):
8763 * win32/common/interfaces-enumtypes.h:
8764 * win32/common/multichannel-enumtypes.c:
8765 (gst_audio_channel_position_get_type):
8766 * win32/common/multichannel-enumtypes.h:
8767 add a win32-update rule like in core, and copy over enumtypes files
8769 2006-01-29 Thomas Vander Stichele <thomas at apestaart dot org>
8772 * win32/common/config.h:
8773 * win32/common/config.h.in:
8774 add config files just like in core
8776 2006-01-28 Tim-Philipp Müller <tim at centricular dot net>
8778 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
8779 Make gcc-4.1 happy (part of #327357).
8781 2006-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
8783 * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
8784 (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
8785 (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
8786 * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
8787 (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
8788 (gst_alsasrc_unprepare), (gst_alsasrc_read):
8789 Update all error messages. All of them should either use
8790 the default translated message, or actually provide a
8791 translatable string.
8792 Make the string for channel count problems meaningful.
8794 2006-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
8796 * sys/v4l/v4l_calls.c: (gst_v4l_open):
8797 check for and throw RESOURCE_BUSY
8799 2006-01-27 David Schleef <ds@schleef.org>
8801 * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
8802 checked in this change -- it requires liboil features not
8803 in 0.3.6. Revert parts.
8805 2006-01-27 David Schleef <ds@schleef.org>
8808 * configure.ac: update liboil requirement to 0.3.6
8809 * gst/videoscale/Makefile.am:
8810 * gst/videoscale/vs_scanline.c: liboilify
8812 2006-01-27 Jan Schmidt <thaytan@mad.scientist.com>
8814 * ext/libvisual/visual.c: (get_buffer):
8815 When pad_alloc returns a GstFlowReturn other
8816 than GST_FLOW_OK, make sure it is passed upstream.
8818 2006-01-27 Jan Schmidt <thaytan@mad.scientist.com>
8820 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
8821 (gst_alsasink_class_init):
8822 Free the device name string.
8824 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
8825 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
8826 (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
8827 Don't remove a pad from the collectpads structure until it
8828 is released - it's a request pad, and may receive data again
8829 if the element gets moved back to PLAYING state.
8831 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
8832 Ensure we turn on double buffering on the Xv port, and
8833 set the colour key to something dark and mysterious that
8836 2006-01-27 Thomas Vander Stichele <thomas at apestaart dot org>
8838 * ext/alsa/gstalsaplugin.c: (plugin_init):
8839 * ext/cdparanoia/gstcdparanoiasrc.c:
8840 (gst_cd_paranoia_src_base_init), (plugin_init):
8841 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
8842 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
8843 - a library should not call setlocale. see "Libraries" node in
8845 - make sure all plugins that use translation do bindtextdomain
8846 to point to the localedir
8847 * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
8848 (setup_sinks), (plugin_init):
8849 all this, and check for NULL when creating sinks
8851 2006-01-27 Julien MOUTTE <julien@moutte.net>
8853 * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
8854 (plugin_init): Make typefinding of subtitles work again.
8856 2006-01-26 Tim-Philipp Müller <tim at centricular dot net>
8858 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
8859 (mp3_type_frame_length_from_header), (mp3_type_find),
8860 (wavpack_type_find), (m4a_type_find), (ircam_type_find),
8862 Backport a bunch of typefinding fixes from the 0.8 branch.
8863 Also, improve wavpack typefinding: if we can't peek the
8864 entire wavpack block, try to parse the bits we can get and
8865 see if we find what we're looking for in those.
8867 2006-01-26 Julien MOUTTE <julien@moutte.net>
8869 * sys/ximage/ximagesink.c:
8870 (gst_ximagesink_calculate_pixel_aspect_ratio):
8871 * sys/xvimage/xvimagesink.c:
8872 (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
8873 more cases of pixel aspect ratio.
8875 2006-01-26 Edward Hervey <edward@fluendo.com>
8877 * gst/playback/gstdecodebin.c: (pad_probe):
8878 Also consider the flush-start and tag events as unblockers
8881 2006-01-26 Julien MOUTTE <julien@moutte.net>
8883 * gst/playback/gstplaybin.c: (gst_play_bin_init),
8884 (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
8885 (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
8886 On the fly visualisation switch, works disabling, enabling as
8887 well but it won't be able to enable vis in a playbin that was
8888 created with no visualisation.
8890 2006-01-25 Wim Taymans <wim@fluendo.com>
8892 * gst-libs/gst/audio/gstbaseaudiosink.c:
8893 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8894 Undo previous commit that returned WRONG_STATE sooner, it breaks
8897 2006-01-25 Wim Taymans <wim@fluendo.com>
8899 * gst-libs/gst/audio/gstbaseaudiosink.c:
8900 (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
8901 (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
8903 Post error when caps cannot be parsed.
8904 Resync on discontinuity in the stream.
8905 Clip samples to segment boundaries.
8906 return WRONG_STATE sooner when we are flushing.
8908 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
8909 (gst_base_audio_src_get_time), (gst_base_audio_src_create):
8910 Make audiosrc operate in TIME.
8911 Set TIMESTAMP and DURATION on buffers.
8913 2006-01-24 Tim-Philipp Müller <tim at centricular dot net>
8915 * tests/examples/seek/seek.c: (main):
8916 Output tag messages as well.
8918 2006-01-23 Edward Hervey <edward@fluendo.com>
8920 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
8921 (free_pad_probes), (remove_fakesink), (pad_probe),
8922 (close_pad_link), (gst_decode_bin_change_state):
8923 Replace GstPadBlockCallback with pad probes that detect
8924 first buffer AND eos before removing fakesink.
8925 Fixes hang with demuxers doing EOS while pre-rolling.
8928 2006-01-23 Andy Wingo <wingo@pobox.com>
8930 * ext/alsa/gstalsasink.c:
8931 * gst-libs/gst/rtp/gstbasertpdepayload.c:
8932 (gst_base_rtp_depayload_setcaps),
8933 (gst_base_rtp_depayload_add_to_queue),
8934 (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
8936 Patch by: Jens Granseuer <jensgr at gmx dot net>
8938 2006-01-22 Julien MOUTTE <julien@moutte.net>
8940 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
8941 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
8942 (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some
8943 frames. We might get a frame destroyed after changing state to
8944 NULL, adding a safety check on xcontext.
8946 2006-01-22 Tim-Philipp Müller <tim at centricular dot net>
8948 * gst-libs/gst/interfaces/xoverlay.c:
8949 Fix prepare-xwindow-id code example in the docs - we need to
8950 ignore all messages that aren't element messages as well.
8952 2006-01-21 Julien MOUTTE <julien@moutte.net>
8954 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
8955 I think one day i'll completely undestand how caps negotiation
8956 is supposed to work. This refactoring handles buffer_alloc
8957 called with caps we can't handle. We definitely don't want a
8958 set_caps with those caps, so we define and allocate a buffer
8959 we would like to receive.
8961 2006-01-19 Tim-Philipp Müller <tim at centricular dot net>
8963 * gst/playback/gstplaybasebin.c: (setup_source):
8964 Free iterator when done.
8966 2006-01-17 Jan Schmidt <thaytan@mad.scientist.com>
8968 * gst-libs/gst/audio/gstbaseaudiosink.c:
8969 (gst_base_audio_sink_render):
8970 Fix playback of non-synchronised streams by assuming a rate
8971 of 1.0 instead of a random one.
8973 Makes this work again:
8975 gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
8976 endianness=(int)4321, signed=(boolean)true, width=(int)16,
8977 depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
8978 audioresample ! alsasink
8980 === release 0.10.2 ===
8982 2006-01-16 Thomas Vander Stichele <thomas at apestaart dot org>
8985 releasing 0.10.2, "Then the devil is six"
8987 2006-01-16 Jan Schmidt <thaytan@mad.scientist.com>
8989 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
8990 * gst/playback/gststreamselector.c:
8991 (gst_stream_selector_set_property):
8992 Comment out broken code that connects to the state-changed signal.
8993 At this point, changing current stream selection is broken, but
8994 stuff like gst-launch playbin current-audio=1 works and filters
8995 to the chosen stream.
8997 2006-01-16 Thomas Vander Stichele <thomas at apestaart dot org>
8999 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
9000 Fix #327216 (null dereference in vorbisdec)
9002 2006-01-16 Tim-Philipp Müller <tim at centricular dot net>
9004 * ext/theora/theoradec.c: (theora_handle_comment_packet):
9005 Post taglist actually on bus instead of just freeing it
9006 (fixes #327114 and totem bug #327080).
9008 * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
9009 Use gst_element_found_tags_for_pad(), so that the tags
9010 are sent downstream as an event as well.
9012 2006-01-15 Thomas Vander Stichele <thomas at apestaart dot org>
9014 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
9015 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
9016 (gst_ximagesink_buffer_alloc):
9017 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
9018 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
9019 (gst_xvimagesink_buffer_alloc):
9020 move all regularly occurring messages to GST_LOG level
9021 add some more object logs
9023 2006-01-14 Thomas Vander Stichele <thomas at apestaart dot org>
9025 * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
9026 fix a silly segfault
9028 2006-01-14 Tim-Philipp Müller <tim at centricular dot net>
9030 * docs/libs/gst-plugins-base-libs-docs.sgml:
9031 * docs/libs/gst-plugins-base-libs-sections.txt:
9032 * gst-libs/gst/audio/mixerutils.c:
9033 * gst-libs/gst/audio/mixerutils.h:
9034 Add docs for mixerutils stuff.
9036 2006-01-13 Tim-Philipp Müller <tim at centricular dot net>
9038 * gst/playback/gstplaybasebin.c: (setup_source):
9039 Fix playback for sources that emit raw audio or
9040 raw video streams (e.g.: cd audio sources) (#325984).
9042 2006-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
9044 * gst-libs/gst/audio/mixerutils.c:
9045 (gst_audio_mixer_filter_do_filter):
9046 actually save the element we create
9048 2006-01-12 Tim-Philipp Müller <tim at centricular dot net>
9050 * gst-libs/gst/cdda/gstcddabasesrc.c:
9051 (gst_cdda_base_src_handle_track_seek):
9052 No need to post a tag message on the bus when seeking
9053 within the same track, only post it when the current
9056 2006-01-11 Jan Schmidt <thaytan@mad.scientist.com>
9058 * gst/playback/gstplaybasebin.c: (group_destroy),
9059 (probe_triggered), (new_decoded_pad), (mute_group_type),
9060 (set_active_source):
9061 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
9062 * gst/playback/gststreamselector.c:
9063 (gst_stream_selector_base_init),
9064 (gst_stream_selector_set_property),
9065 (gst_stream_selector_request_new_pad):
9066 Reenable stream selection. These mechanisms need a complete overhaul
9067 in the face of 0.8->0.10 changes though.
9069 2006-01-11 Jan Schmidt <thaytan@mad.scientist.com>
9071 * ext/ogg/gstoggdemux.c:
9072 Change the pad template to src_%d to match the pads that
9073 are created from it. decodebin needs this information in order
9074 to decide that oggdemux is capable of producing multiple pads
9075 (and hence needs queues inserted).
9077 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
9078 (gst_ogg_mux_collected):
9079 Make debug output more useful by using GST_PTR_FORMAT.
9081 2006-01-11 Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
9083 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
9085 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
9086 Set depth and width for alaw/mulaw (fixes #326601).
9088 2006-01-11 Thomas Vander Stichele <thomas at apestaart dot org>
9090 * tests/icles/Makefile.am:
9091 don't build the tests if we don't have the libs
9093 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
9095 * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
9096 (gst_cd_paranoia_paranoia_callback):
9097 Don't try to free NULL pointers.
9099 2006-01-10 Edward Hervey <edward@fluendo.com>
9101 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
9102 (gst_audio_rate_change_state), (plugin_init):
9103 Add debugging category.
9105 Add case for incoming buffers without valid offset/offset_end.
9107 2006-01-10 Michael Smith <msmith@fluendo.com>
9109 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
9110 Don't leak GCond in audio sources.
9112 2006-01-10 Jan Schmidt <thaytan@mad.scientist.com>
9114 * gst/playback/gstplaybin.c: (gen_audio_element):
9115 Don't leak an autoaudiosink/alsasink when we generate
9116 a new audio element. (old code, I guess)
9118 2006-01-10 Michael Smith <msmith@fluendo.com>
9120 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
9121 Support float audio in audiorate.
9122 Use width rather than depth for selecting sample width.
9124 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
9126 * gst/videotestsrc/videotestsrc.h:
9127 Use GLib types here (that way we don't have to include the
9128 generated _stdint.h header, which makes life easier for win32
9129 folks that don't use autotools for the build) (#325990, patch
9130 by: Sergey Scobich).
9132 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
9134 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
9135 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
9136 (gst_ring_buffer_pause), (wait_segment):
9137 * gst-libs/gst/audio/gstringbuffer.h:
9138 Name (private) union, makes Forte compiler happy (this time
9139 for real) (#324900).
9141 2006-01-09 Tim-Philipp Müller <tim at centricular dot net>
9143 * gst-libs/gst/audio/Makefile.am:
9144 Link against libgstinterfaces, needed for mixer
9145 and property probe stuff.
9147 2006-01-09 Edward Hervey <edward@fluendo.com>
9149 * gst-libs/gst/Makefile.am:
9151 2006-01-09 Tim-Philipp Müller <tim at centricular dot net>
9153 * gst-libs/gst/audio/Makefile.am:
9154 * gst-libs/gst/audio/mixerutils.c:
9155 (gst_audio_mixer_filter_do_filter),
9156 (gst_audio_mixer_filter_check_element),
9157 (gst_audio_mixer_filter_probe_feature),
9158 (element_factory_rank_compare_func),
9159 (gst_audio_default_registry_mixer_filter):
9160 * gst-libs/gst/audio/mixerutils.h:
9161 Add gst_audio_default_registry_mixer_filter() utility
9164 2006-01-03 Michael Smith <msmith@fluendo.com>
9166 * gst/audioresample/resample.h:
9167 As before, but for o_buf
9169 2006-01-03 Michael Smith <msmith@fluendo.com>
9171 * gst/audioresample/resample.h:
9172 Declare struct _ResampleState.buffer as unsigned char *, not void *,
9173 since we do arithmetic on it.
9175 2006-01-02 Tim-Philipp Müller <tim at centricular dot net>
9177 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
9178 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
9179 (gst_ring_buffer_pause), (wait_segment):
9180 * gst-libs/gst/audio/gstringbuffer.h:
9181 Sun's Forte compiler doesn't seem to like anonymous structs,
9182 so use same setup as in GstBaseSrc (fixes #324900).
9184 2005-12-30 Stefan Kost <ensonic@users.sf.net>
9187 * gst/volume/Makefile.am:
9188 * gst/volume/demo.c:
9189 move old example to tests/examples/volume/volune.c
9190 * tests/examples/Makefile.am:
9191 * tests/examples/seek/seek.c: (main):
9192 change window-close event from "delete-event" to "destroy"
9193 * tests/examples/volume/Makefile.am:
9194 * tests/examples/volume/volume.c: (value_changed_callback),
9195 (setup_gui), (message_received), (eos_message_received), (main):
9196 fix event handling and bus usage
9198 2005-12-29 Stefan Kost <ensonic@users.sf.net>
9200 * gst/audiotestsrc/gstaudiotestsrc.c:
9201 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
9202 (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
9203 (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
9204 (gst_audio_test_src_create_square),
9205 (gst_audio_test_src_create_saw),
9206 (gst_audio_test_src_create_triangle),
9207 (gst_audio_test_src_create_silence),
9208 (gst_audio_test_src_create_white_noise),
9209 (gst_audio_test_src_create_pink_noise),
9210 (gst_audio_test_src_init_sine_table),
9211 (gst_audio_test_src_create_sine_table),
9212 (gst_audio_test_src_change_wave),
9213 (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
9214 (gst_audio_test_src_create), (gst_audio_test_src_set_property):
9215 * gst/audiotestsrc/gstaudiotestsrc.h:
9216 update to basesrc changes, implement segmented seeking and eos
9217 handling, add a 'sine-tab' waveform for performance critical playback
9219 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9222 ... and this time the other modified file that I missed last time.
9224 2005-12-29 Michael Smith <msmith@fluendo.com>
9226 * gst/playback/gstdecodebin.c: (new_pad):
9227 Fix non-C89 variable declaration not at the start of a block. Should
9228 help some compilers.
9230 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9232 * tests/check/Makefile.am:
9233 And now fix 'make distcheck' (builddir != srcdir)
9235 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9238 * ext/cdparanoia/Makefile.am:
9239 * ext/cdparanoia/gstcdparanoia.c:
9240 * ext/cdparanoia/gstcdparanoia.h:
9241 * ext/cdparanoia/gstcdparanoiasrc.c:
9242 (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
9243 (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
9244 (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
9245 (gst_cd_paranoia_paranoia_callback),
9246 (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
9247 (gst_cd_paranoia_src_set_property),
9248 (gst_cd_paranoia_src_get_property), (plugin_init):
9249 * ext/cdparanoia/gstcdparanoiasrc.h:
9250 New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
9251 plugin again (there are still fixes required to playbin to make
9252 cdda:// uris work there).
9254 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9256 * tests/check/Makefile.am:
9257 Fix test case compilation.
9259 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9261 * gst-libs/gst/cdda/gstcddabasesrc.c:
9262 (gst_cdda_base_src_update_duration),
9263 (gst_cdda_base_src_calculate_cddb_id):
9264 An integer is not a string. Fix access to uninitialised variable.
9266 * tests/check/Makefile.am:
9267 Add cddabasesrc unit test; also actually enable the vorbis test.
9269 * tests/check/generic/states.c:
9270 Blacklist new cd audio elements as well.
9272 * tests/check/libs/cddabasesrc.c:
9273 Unit test for GstCddaBaseSrc (discid calculation mostly).
9275 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
9277 * docs/libs/Makefile.am:
9278 * docs/libs/gst-plugins-base-libs-docs.sgml:
9279 * docs/libs/gst-plugins-base-libs-sections.txt:
9280 * docs/libs/gst-plugins-base-libs.types:
9281 Add docs for libgstcdda/GstCddaBaseSrc.
9283 * gst-libs/gst/interfaces/mixertrack.h:
9284 Do one struct member per line with a semicolon at the end, that way
9285 even gtk-doc might parse it without complaining.
9287 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
9290 * gst-libs/gst/Makefile.am:
9291 * gst-libs/gst/cdda/Makefile.am:
9292 * gst-libs/gst/cdda/base64.c:
9293 * gst-libs/gst/cdda/base64.h:
9294 * gst-libs/gst/cdda/gstcddabasesrc.c:
9295 (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
9296 (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
9297 (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
9298 (gst_cdda_base_src_get_property),
9299 (gst_cdda_base_src_get_track_from_sector),
9300 (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
9301 (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
9302 (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
9303 (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
9304 (gst_cdda_base_src_uri_get_protocols),
9305 (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
9306 (gst_cdda_base_src_uri_handler_init),
9307 (gst_cdda_base_src_setup_interfaces),
9308 (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
9309 (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
9310 (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
9311 (gst_cdda_base_src_add_tags),
9312 (gst_cdda_base_src_add_index_associations),
9313 (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
9314 (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
9315 (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
9316 (gst_cdda_base_src_create):
9317 * gst-libs/gst/cdda/gstcddabasesrc.h:
9318 * gst-libs/gst/cdda/sha1.c:
9319 * gst-libs/gst/cdda/sha1.h:
9320 Add new libgstcdda with GstCddaBaseSrc class.
9322 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
9324 * ext/gnomevfs/gstgnomevfssink.h:
9325 Use GstBaseSinkClass as parent_class member for class struct, not
9328 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
9330 Patch by: Michael Benes
9332 * gst/videotestsrc/gstvideotestsrc.c:
9333 (gst_video_test_src_class_init), (gst_video_test_src_start):
9334 Add start method to reset running time and number of frames sent
9335 when starting up (fixes #324696)
9337 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
9339 * docs/plugins/Makefile.am:
9340 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9341 * docs/plugins/gst-plugins-base-plugins-sections.txt:
9342 * docs/plugins/gst-plugins-base-plugins.args:
9343 * docs/plugins/gst-plugins-base-plugins.hierarchy:
9344 * docs/plugins/gst-plugins-base-plugins.signals:
9345 Add docs stuff for gnomevfssrc and gnomevfssink.
9347 * ext/gnomevfs/gstgnomevfssrc.c:
9348 Fix example pipeline in gtk-doc blurb.
9350 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
9352 * ext/gnomevfs/Makefile.am:
9353 * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
9354 (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
9355 (gst_gnome_vfs_handle_get_type), (plugin_init):
9356 * ext/gnomevfs/gstgnomevfs.h:
9357 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
9358 (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
9359 (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
9360 (gst_gnome_vfs_sink_set_property),
9361 (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
9362 (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
9363 (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
9364 (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
9365 (gst_gnome_vfs_sink_uri_get_type),
9366 (gst_gnome_vfs_sink_uri_get_protocols),
9367 (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
9368 (gst_gnome_vfs_sink_uri_handler_init):
9369 * ext/gnomevfs/gstgnomevfssink.h:
9370 Port gnomevfssink; add gtk-doc blurb.
9372 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
9373 (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
9374 (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
9375 (gst_gnome_vfs_src_uri_get_type),
9376 (gst_gnome_vfs_src_uri_get_protocols),
9377 (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
9378 (gst_gnome_vfs_src_uri_handler_init),
9379 (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
9380 (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
9381 (gst_gnome_vfs_src_send_additional_headers_callback),
9382 (gst_gnome_vfs_src_received_headers_callback),
9383 (gst_gnome_vfs_src_push_callbacks),
9384 (gst_gnome_vfs_src_pop_callbacks),
9385 (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
9386 (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
9387 (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
9388 * ext/gnomevfs/gstgnomevfssrc.h:
9389 s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
9390 file; add gtk-doc blurb with example pipelines.
9392 === release 0.10.1 ===
9394 2005-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
9397 releasing 0.10.1, "Dobro Dedek"
9399 2005-12-21 Edgard Lima <edgard.lima@indt.org.br>
9401 * gst/typefind/gsttypefindfunctions.c:
9402 iLBC30 and iLBC20 added to typefind.
9404 2005-12-20 Thomas Vander Stichele <thomas at apestaart dot org>
9406 * gst-libs/gst/audio/gstbaseaudiosink.c:
9407 (gst_base_audio_sink_class_init):
9408 * gst-libs/gst/audio/gstbaseaudiosrc.c:
9409 (gst_base_audio_src_class_init):
9410 update strings, values are in microseconds
9411 change the default sink buffer time to something that is smaller
9412 (to help software volume mixing have a slightly lower delay) but
9413 still be acceptable on Wim's laptop
9415 2005-12-20 Edward Hervey <edward@fluendo.com>
9417 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
9418 Made a quack, forgot to add DUCK to the riff video template.
9420 2005-12-19 Edward Hervey <edward@fluendo.com>
9422 * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
9423 (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
9424 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
9425 (gst_ogm_parse_chain):
9426 Make sure pads are initialized correctly.
9427 * gst-libs/gst/riff/riff-ids.h:
9428 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
9429 (gst_riff_create_video_template_caps):
9430 Add a whole bunch of FOURCC <=> MimeType.
9431 Extend the riff video pad template to support the newly added fourcc.
9433 2005-12-18 Jan Schmidt <thaytan@mad.scientist.com>
9435 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
9436 (gst_ogg_demux_activate_chain):
9437 Extra debug output when activating/deactivating chains.
9439 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
9440 (is_demuxer_element), (try_to_link_1), (remove_element_chain),
9442 Remove a queue from our list when it becomes unlinked.
9443 Don't add queues to elements in class 'Demux' if they
9444 can only produce one pad
9446 2005-12-18 Julien MOUTTE <julien@moutte.net>
9448 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
9449 (gst_video_sink_get_type): Add a debug category.
9451 2005-12-17 Philippe Khalaf <burger@speedy.org>
9453 * gst-libs/gst/rtp/gstbasertpdepayload.c:
9454 (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
9455 Handle downstream newsegment by sending our own newsegment before the
9456 next buffer to be released. (#323900)
9458 2005-12-17 Philippe Khalaf <burger@speedy.org>
9460 * gst-libs/gst/rtp/gstbasertpdepayload.c:
9461 (gst_base_rtp_depayload_set_gst_timestamp):
9462 add queue delay to new segment as well (as opposed to just the first
9463 buffer). (bug #322347)
9465 2005-12-16 Stefan Kost <ensonic@users.sf.net>
9467 * ext/libvisual/visual.c: (make_valid_name):
9468 change some char* into char[]
9469 * gst/audiotestsrc/gstaudiotestsrc.c:
9470 (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
9471 (gst_audio_test_src_create):
9472 * gst/audiotestsrc/gstaudiotestsrc.h:
9473 prepare to handle EOS and SEGMENT_DONE
9475 2005-12-16 Tim-Philipp Müller <tim at centricular dot net>
9477 * tests/check/generic/states.c: (GST_START_TEST):
9478 Blacklist cdparanoia element in state test.
9480 2005-12-16 Tim-Philipp Müller <tim at centricular dot net>
9482 Patch by: Benjamin Pineau
9485 * gst/tcp/gsttcpclientsink.c:
9486 * gst/tcp/gsttcpserversink.c:
9487 * gst/tcp/gsttcpserversrc.c:
9488 Add <string.h> includes for memset and FD_ZERO (fixes #323878)
9490 2005-12-15 Michael Smith <msmith@fluendo.com>
9492 * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
9493 (gst_video_rate_chain):
9494 Fix timestamping for videorate when the first buffer it sees has a
9495 non-zero timestamp. Fix some misleading debug output.
9497 2005-12-15 Michael Smith <msmith@fluendo.com>
9499 * gst/audioresample/gstaudioresample.c:
9500 Don't leak all input buffers to audioresample.
9502 2005-12-15 Tim-Philipp Müller <tim at centricular dot net>
9504 * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
9505 Don't operate on empty text buffers. Strip newlines and
9506 tabs only from the end of the text, but leave them intact
9507 in the middle. Fix typo in gtk-doc description.
9509 2005-12-15 Tim-Philipp Müller <tim at centricular dot net>
9511 * gst/playback/gstplaybasebin.c:
9512 * gst/playback/gstplaybin.c: (handoff):
9513 Make sure the video frame buffer we return to apps via the
9514 "frame" property always has caps set on it. Modify
9515 _gst_gvalue_set_object() macro to handle NULL objects
9518 2005-12-14 Stefan Kost <ensonic@users.sf.net>
9520 * gst/audiotestsrc/gstaudiotestsrc.c:
9521 (gst_audio_test_src_class_init), (gst_audio_test_src_init),
9522 (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
9523 (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
9524 (gst_audio_test_src_create):
9525 * gst/audiotestsrc/gstaudiotestsrc.h:
9526 Adjust to some recent api changes and add wtays new cool seeking
9529 2005-12-14 Tim-Philipp Müller <tim at centricular dot net>
9531 * ext/alsa/Makefile.am:
9532 * ext/alsa/gstalsadeviceprobe.c:
9533 * ext/alsa/gstalsadeviceprobe.h:
9534 Helper functions to add device probing via the GstPropertyProbe
9535 interface to a class.
9537 * ext/alsa/gstalsamixer.h:
9538 Comment out GST_ALSA_MIXER, it returns a struct that's not
9541 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
9542 Add some debug info.
9544 * ext/alsa/gstalsamixerelement.c:
9545 (gst_alsa_mixer_element_interface_supported),
9546 (gst_implements_interface_init),
9547 (gst_alsa_mixer_element_init_interfaces),
9548 (gst_alsa_mixer_element_class_init),
9549 (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
9550 (gst_alsa_mixer_element_set_property),
9551 (gst_alsa_mixer_element_get_property),
9552 (gst_alsa_mixer_element_change_state):
9553 * ext/alsa/gstalsamixerelement.h:
9554 Add 'device' and 'device-name' properties. Add GstPropertyProbe
9555 for device handling (gnome-volume-control will need that).
9557 2005-12-12 Christian Schaller <uraeus@gnome.org>
9559 * ext/Makefile.am: fix cdparanoia entry
9560 * gst-plugins-base.spec.in: add cdparanoia
9562 2005-12-12 Michael Smith <msmith@fluendo.com>
9564 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
9565 Use the correct function to free list of typefind factories.
9567 2005-12-12 Wim Taymans <wim@fluendo.com>
9569 * gst/videotestsrc/gstvideotestsrc.c:
9570 (gst_video_test_src_class_init), (gst_video_test_src_init),
9571 (gst_video_test_src_parse_caps), (gst_video_test_src_query),
9572 (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
9573 (gst_video_test_src_create):
9574 * gst/videotestsrc/gstvideotestsrc.h:
9575 Implement seeking in videotestsrc.
9578 2005-12-12 Wim Taymans <wim@fluendo.com>
9580 * ext/cdparanoia/Makefile.am:
9581 * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
9582 (gst_paranoia_endian_get_type), (_do_init),
9583 (cdparanoia_class_init), (cdparanoia_init),
9584 (cdparanoia_set_property), (cdparanoia_get_property),
9585 (cdparanoia_do_seek), (cdparanoia_is_seekable),
9586 (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
9587 (cdparanoia_convert), (cdparanoia_get_query_types),
9588 (cdparanoia_query), (cdparanoia_set_index),
9589 (cdparanoia_uri_set_uri):
9590 * ext/cdparanoia/gstcdparanoia.h:
9591 Partially ported cdparanoia now that basesrc can support a
9594 2005-12-12 Wim Taymans <wim@fluendo.com>
9596 * tests/examples/seek/scrubby.c: (main):
9597 Set higher priority for bus events so they don't get reordered with
9600 * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
9601 (flush_toggle_cb), (main):
9602 Added checkbox to disable flushing seeks.
9603 Disable scrubbing when doing non flushing seeks.
9605 2005-12-12 Tim-Philipp Müller <tim at centricular dot net>
9607 * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
9608 (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
9609 (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
9610 (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
9611 Implement some sort of event handling that doesn't rely on
9612 g_return_if_fail; make sure we always push the last chunk of an
9613 .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
9614 state change function; remove some old cruft. Seeking is still
9615 rather unlikely to work though.
9620 2005-12-11 Julien MOUTTE <julien@moutte.net>
9622 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
9623 Fixed a leak of the current image reference when cleaning up.
9624 Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
9626 2005-12-09 Michael Smith <msmith@fluendo.com>
9628 * tools/Makefile.am:
9629 * tools/gst-launch-ext-m.m:
9630 Remove gst-launch-ext. It doesn't work, and is no longer
9631 particularly useful.
9633 2005-12-08 Luca Ognibene <luogni@tin.it>
9635 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
9636 don't pass random values to ogmparse convert function.
9637 Make seeking possible in the exile1.ogm file.
9639 2005-12-07 Tim-Philipp Müller <tim at centricular dot net>
9641 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
9642 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
9643 Work around refcount problem with g_value_set_object() that occur
9644 if the core has been compiled against GLib-2.6 (g_value_set_object()
9645 will only g_object_ref() the element, but the caller will
9646 gst_object_unref() it and bad things will happen due to the way
9647 GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
9648 totem for people on FC4 using Thomas's 0.10 RPMs.
9650 2005-12-07 Edward Hervey <edward@fluendo.com>
9652 Time to welcome ogm to 0.10 :)
9654 * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
9655 (gst_ogg_pad_typefind):
9656 Oggdemux can now properly typefind elements with dynamic pads.
9657 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
9658 Properly set caps on src pad, and set caps on outgoing buffers.
9660 2005-12-06 Thomas Vander Stichele <thomas at apestaart dot org>
9662 * ext/alsa/gstalsamixer.h:
9663 * ext/alsa/gstalsamixerelement.h:
9664 * ext/alsa/gstalsamixeroptions.h:
9665 * ext/alsa/gstalsamixertrack.h:
9666 * ext/alsa/gstalsasink.c:
9667 * ext/alsa/gstalsasink.h:
9668 * ext/alsa/gstalsasrc.c:
9669 * ext/alsa/gstalsasrc.h:
9670 * ext/cdparanoia/gstcdparanoia.h:
9671 * ext/gnomevfs/gstgnomevfsuri.h:
9672 * ext/ogg/gstoggdemux.c:
9673 * ext/ogg/gstoggmux.c:
9674 * ext/pango/gsttextoverlay.h:
9675 * ext/theora/theoradec.c:
9676 * ext/theora/theoraenc.c:
9677 * ext/vorbis/vorbisdec.h:
9678 * ext/vorbis/vorbisenc.c:
9679 * ext/vorbis/vorbisenc.h:
9680 * ext/vorbis/vorbisparse.h:
9681 * gst-libs/gst/audio/gstaudioclock.h:
9682 * gst-libs/gst/audio/gstaudiosink.c:
9683 * gst-libs/gst/audio/gstaudiosink.h:
9684 * gst-libs/gst/audio/gstaudiosrc.c:
9685 * gst-libs/gst/audio/gstaudiosrc.h:
9686 * gst-libs/gst/audio/gstbaseaudiosink.c:
9687 * gst-libs/gst/audio/gstbaseaudiosink.h:
9688 * gst-libs/gst/audio/gstbaseaudiosrc.c:
9689 * gst-libs/gst/audio/gstbaseaudiosrc.h:
9690 * gst-libs/gst/audio/gstringbuffer.h:
9691 * gst-libs/gst/audio/multichannel.h:
9692 * gst-libs/gst/floatcast/floatcast.h:
9693 * gst-libs/gst/interfaces/colorbalance.c:
9694 * gst-libs/gst/interfaces/colorbalance.h:
9695 * gst-libs/gst/interfaces/colorbalancechannel.h:
9696 * gst-libs/gst/interfaces/mixer.h:
9697 * gst-libs/gst/interfaces/mixeroptions.h:
9698 * gst-libs/gst/interfaces/mixertrack.h:
9699 * gst-libs/gst/interfaces/navigation.h:
9700 * gst-libs/gst/interfaces/propertyprobe.h:
9701 * gst-libs/gst/interfaces/tuner.h:
9702 * gst-libs/gst/interfaces/tunerchannel.h:
9703 * gst-libs/gst/interfaces/tunernorm.h:
9704 * gst-libs/gst/interfaces/xoverlay.h:
9705 * gst-libs/gst/netbuffer/gstnetbuffer.h:
9706 * gst-libs/gst/riff/riff-ids.h:
9707 * gst-libs/gst/riff/riff-media.h:
9708 * gst-libs/gst/riff/riff-read.h:
9709 * gst-libs/gst/rtp/gstbasertpdepayload.h:
9710 * gst-libs/gst/rtp/gstbasertppayload.c:
9711 * gst-libs/gst/rtp/gstbasertppayload.h:
9712 * gst-libs/gst/rtp/gstrtpbuffer.c:
9713 * gst-libs/gst/rtp/gstrtpbuffer.h:
9714 * gst-libs/gst/tag/gsttageditingprivate.h:
9715 * gst-libs/gst/tag/gstvorbistag.c:
9716 (gst_tag_list_from_vorbiscomment_buffer):
9717 * gst-libs/gst/tag/tag.h:
9718 * gst-libs/gst/video/video.h:
9719 * gst/adder/gstadder.c:
9720 * gst/adder/gstadder.h:
9721 * gst/audioconvert/audioconvert.c:
9722 * gst/audioconvert/audioconvert.h:
9723 * gst/audioconvert/gstaudioconvert.c:
9724 * gst/audioconvert/gstchannelmix.c:
9725 * gst/audioconvert/gstchannelmix.h:
9726 * gst/audiorate/gstaudiorate.c:
9727 * gst/audioresample/buffer.h:
9728 * gst/audioresample/functable.h:
9729 * gst/audioresample/gstaudioresample.c:
9730 * gst/audioresample/resample.h:
9731 * gst/ffmpegcolorspace/avcodec.h:
9732 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
9733 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
9734 * gst/ffmpegcolorspace/imgconvert.c:
9735 * gst/ffmpegcolorspace/imgconvert_template.h:
9736 * gst/playback/gstdecodebin.c:
9737 * gst/playback/gstplaybasebin.h:
9738 * gst/playback/gstplaybin.c:
9739 * gst/playback/gststreaminfo.h:
9740 * gst/tcp/gstfdset.c:
9741 * gst/tcp/gstfdset.h:
9742 * gst/tcp/gstmultifdsink.c:
9743 * gst/tcp/gstmultifdsink.h:
9745 * gst/tcp/gsttcpclientsrc.c:
9746 * gst/tcp/gsttcpclientsrc.h:
9747 * gst/tcp/gsttcpplugin.h:
9748 * gst/tcp/gsttcpserversink.c:
9749 * gst/tcp/gsttcpserversrc.c:
9750 * gst/typefind/gsttypefindfunctions.c:
9751 * gst/videorate/gstvideorate.c:
9752 * gst/videotestsrc/gstvideotestsrc.h:
9753 * gst/videotestsrc/videotestsrc.h:
9754 * sys/v4l/gstv4lcolorbalance.h:
9755 * sys/v4l/gstv4ltuner.h:
9756 * sys/v4l/gstv4lxoverlay.h:
9757 * sys/v4l/v4l_calls.h:
9758 * sys/v4l/videodev_mjpeg.h:
9759 * tests/check/elements/audioconvert.c:
9760 * tests/check/elements/audioresample.c:
9761 * tests/check/elements/audiotestsrc.c:
9762 * tests/check/elements/videotestsrc.c:
9763 * tests/check/elements/volume.c:
9764 * tests/examples/seek/scrubby.c:
9765 * tests/examples/seek/seek.c:
9768 === release 0.10.0 ===
9770 2005-12-05 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9773 releasing 0.10.0, "Mont-d'or"
9775 2005-12-05 Jan Schmidt <thaytan@mad.scientist.com>
9777 * tests/examples/seek/Makefile.am:
9778 Build fix for when gtk is not available.
9780 2005-12-05 Andy Wingo <wingo@pobox.com>
9782 * ext/libvisual/visual.c: (get_buffer):
9783 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
9784 * ext/pango/gsttextrender.c: (gst_text_render_chain):
9785 * ext/theora/theoradec.c: (theora_handle_data_packet):
9786 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
9788 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9789 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
9790 Update for alloc_buffer changes.
9792 2005-12-05 Andy Wingo <wingo@pobox.com>
9794 patch by: Kai Vehmanen <kv2004 eca cx>
9796 * gst-libs/gst/rtp/gstbasertpdepayload.c
9797 (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
9799 2005-12-04 Andy Wingo <wingo@pobox.com>
9801 patch by: Sebastien Cote <sebas642 yahoo ca>
9803 * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
9806 2005-12-02 Tim-Philipp Müller <tim at centricular dot net>
9808 * docs/plugins/Makefile.am:
9809 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9810 * docs/plugins/gst-plugins-base-plugins-sections.txt:
9811 * docs/plugins/gst-plugins-base-plugins.hierarchy:
9812 * ext/pango/gstclockoverlay.c:
9813 * ext/pango/gsttextoverlay.c:
9814 * ext/pango/gsttextrender.c:
9815 * ext/pango/gsttimeoverlay.c:
9816 Add gtk-doc blurbs to pango elements.
9818 2005-12-02 Wim Taymans <wim@fluendo.com>
9820 * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
9821 * gst/audioresample/buffer.h:
9822 * gst/audioresample/gstaudioresample.c:
9823 * gst/audioresample/gstaudioresample.h:
9824 * gst/audioresample/resample.c: (resample_input_flush),
9825 (resample_input_pushthrough), (resample_input_eos),
9826 (resample_get_output_size_for_input),
9827 (resample_get_input_size_for_output), (resample_get_output_size),
9828 (resample_get_output_data):
9829 * gst/audioresample/resample.h:
9830 * gst/audioresample/resample_ref.c: (resample_scale_ref):
9831 Fix audioresample, seek torture, new segments, reverse negotiation
9834 2005-12-02 Wim Taymans <wim@fluendo.com>
9836 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9839 2005-12-02 Wim Taymans <wim@fluendo.com>
9841 * gst/audioconvert/gstaudioconvert.c:
9842 (gst_audio_convert_transform):
9845 === release 0.9.7 ===
9847 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9850 releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
9852 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9858 add win32 MANIFEST file
9859 do something to the hungarian translation
9861 2005-12-01 Tim-Philipp Müller <tim at centricular dot net>
9864 Add $(PANGO_DIR) to SUBDIRS
9866 * ext/pango/gstclockoverlay.c:
9867 * ext/pango/gsttimeoverlay.c:
9868 Fix and improve element descriptions.
9870 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9872 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9873 * docs/plugins/inspect/plugin-libvisual.xml:
9874 * docs/plugins/inspect/plugin-pango.xml:
9875 add pango plugin to docs
9877 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9883 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9886 * tests/Makefile.am:
9887 * tests/icles/.cvsignore:
9888 * tests/icles/Makefile.am:
9889 * tests/icles/stress-xoverlay.c: (myclock), (open_display),
9890 (close_display), (resize_window), (move_window), (create_window),
9891 (terminate_playback), (pause_playback), (start_playback), (main):
9892 add stress test for xoverlay from Julien
9894 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9896 * docs/libs/tmpl/gstcolorbalance.sgml:
9897 * gst-libs/gst/rtp/gstbasertpdepayload.c:
9898 * gst-libs/gst/rtp/gstbasertppayload.c:
9899 * gst-libs/gst/rtp/gstrtpbuffer.c:
9900 * gst-libs/gst/rtp/gstrtpbuffer.h:
9901 Do burger's rename for rtp payloaders and depayloaders
9903 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9906 add Visual Studio 6 build files
9908 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9910 * docs/libs/gst-plugins-base-libs-docs.sgml:
9911 * docs/libs/gst-plugins-base-libs-sections.txt:
9912 * docs/libs/tmpl/gstaudio.sgml:
9913 * docs/libs/tmpl/gstringbuffer.sgml:
9914 * gst-libs/gst/interfaces/xoverlay.c:
9915 * gst-libs/gst/video/gstvideofilter.c:
9916 * gst-libs/gst/video/gstvideosink.c:
9917 update documentation
9919 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9921 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
9922 (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
9923 (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
9924 (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
9925 (gst_multi_fd_sink_get_stats),
9926 (gst_multi_fd_sink_remove_client_link),
9927 (gst_multi_fd_sink_handle_client_read),
9928 (gst_multi_fd_sink_client_queue_data),
9929 (gst_multi_fd_sink_client_queue_caps),
9930 (gst_multi_fd_sink_client_queue_buffer),
9931 (gst_multi_fd_sink_new_client),
9932 (gst_multi_fd_sink_handle_client_write),
9933 (gst_multi_fd_sink_recover_client),
9934 (gst_multi_fd_sink_queue_buffer),
9935 (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
9936 (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
9937 (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
9938 (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
9939 * gst/tcp/gstmultifdsink.h:
9940 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
9941 (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
9942 (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
9943 (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
9944 (gst_tcp_client_sink_set_property),
9945 (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
9946 (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
9947 * gst/tcp/gsttcpclientsink.h:
9948 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
9949 (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
9950 (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
9951 (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
9952 (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
9953 (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
9954 * gst/tcp/gsttcpclientsrc.h:
9955 * gst/tcp/gsttcpplugin.c: (plugin_init):
9956 * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
9957 (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
9958 (gst_tcp_server_sink_finalize),
9959 (gst_tcp_server_sink_handle_server_read),
9960 (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
9961 (gst_tcp_server_sink_set_property),
9962 (gst_tcp_server_sink_get_property),
9963 (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
9964 * gst/tcp/gsttcpserversink.h:
9965 * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
9966 (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
9967 (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
9968 (gst_tcp_server_src_set_property),
9969 (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
9970 (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
9971 * gst/tcp/gsttcpserversrc.h:
9974 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9976 * docs/plugins/Makefile.am:
9977 * docs/plugins/gst-plugins-base-plugins.args:
9978 * docs/plugins/inspect/plugin-libvisual.xml:
9979 * gst/audioconvert/plugin.h:
9980 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
9981 (gst_audio_rate_base_init), (gst_audio_rate_class_init),
9982 (gst_audio_rate_setcaps), (gst_audio_rate_init),
9983 (gst_audio_rate_chain), (gst_audio_rate_set_property),
9984 (gst_audio_rate_get_property), (gst_audio_rate_change_state),
9986 * gst/audiotestsrc/gstaudiotestsrc.c:
9987 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
9988 (gst_audio_test_src_class_init), (gst_audio_test_src_init),
9989 (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
9990 (gst_audio_test_src_get_query_types),
9991 (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
9992 (gst_audio_test_src_create_square),
9993 (gst_audio_test_src_create_saw),
9994 (gst_audio_test_src_create_triangle),
9995 (gst_audio_test_src_create_silence),
9996 (gst_audio_test_src_create_white_noise),
9997 (gst_audio_test_src_init_pink_noise),
9998 (gst_audio_test_src_generate_pink_noise_value),
9999 (gst_audio_test_src_create_pink_noise),
10000 (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
10001 (gst_audio_test_src_create), (gst_audio_test_src_set_property),
10002 (gst_audio_test_src_get_property), (gst_audio_test_src_start),
10004 * gst/audiotestsrc/gstaudiotestsrc.h:
10005 * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
10006 (gst_sub_parse_base_init), (gst_sub_parse_class_init),
10007 (gst_sub_parse_init), (gst_sub_parse_formats),
10008 (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
10009 (convert_encoding), (get_next_line),
10010 (gst_sub_parse_data_format_autodetect),
10011 (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
10012 (gst_sub_parse_loop), (gst_sub_parse_chain),
10013 (gst_sub_parse_change_state), (gst_sub_parse_type_find),
10015 * gst/subparse/gstsubparse.h:
10016 * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
10017 (gst_video_rate_base_init), (gst_video_rate_class_init),
10018 (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
10019 (gst_video_rate_setcaps), (gst_video_rate_blank_data),
10020 (gst_video_rate_init), (gst_video_rate_event),
10021 (gst_video_rate_chain), (gst_video_rate_set_property),
10022 (gst_video_rate_get_property), (gst_video_rate_change_state),
10024 * gst/videoscale/gstvideoscale.c:
10025 (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
10026 (gst_video_scale_src_template_factory),
10027 (gst_video_scale_sink_template_factory),
10028 (gst_video_scale_get_type), (gst_video_scale_base_init),
10029 (gst_video_scale_class_init), (gst_video_scale_init),
10030 (gst_video_scale_set_property), (gst_video_scale_get_property),
10031 (gst_video_scale_transform_caps), (gst_video_scale_get_format),
10032 (gst_video_scale_prepare_size), (parse_caps),
10033 (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
10034 (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
10035 (gst_video_scale_transform), (gst_video_scale_handle_src_event),
10037 * gst/videoscale/gstvideoscale.h:
10038 * gst/videotestsrc/gstvideotestsrc.c:
10039 (gst_video_test_src_pattern_get_type),
10040 (gst_video_test_src_base_init), (gst_video_test_src_class_init),
10041 (gst_video_test_src_init), (gst_video_test_src_src_fixate),
10042 (gst_video_test_src_set_pattern),
10043 (gst_video_test_src_set_property),
10044 (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
10045 (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
10046 (gst_video_test_src_event), (gst_video_test_src_get_times),
10047 (gst_video_test_src_create), (plugin_init):
10048 * gst/videotestsrc/gstvideotestsrc.h:
10049 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
10050 (gst_video_test_src_smpte), (gst_video_test_src_snow),
10051 (gst_video_test_src_black):
10052 * gst/videotestsrc/videotestsrc.h:
10054 clean up docs a little
10056 2005-11-30 Wim Taymans <wim@fluendo.com>
10058 * gst-libs/gst/rtp/gstbasertpdepayload.h:
10059 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
10060 (gst_basertppayload_event), (gst_basertppayload_push),
10061 (gst_basertppayload_change_state):
10062 * gst-libs/gst/rtp/gstbasertppayload.h:
10065 2005-11-30 Julien MOUTTE <julien@moutte.net>
10067 * docs/libs/gst-plugins-base-libs-docs.sgml:
10068 * docs/libs/gst-plugins-base-libs-sections.txt:
10069 * gst-libs/gst/video/gstvideofilter.c:
10070 * gst-libs/gst/video/gstvideosink.c:
10071 * gst-libs/gst/video/gstvideosink.h: Adding docs.
10073 2005-11-30 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
10093 * scripts/autoplugins.sh:
10096 2005-11-30 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
10100 * examples/Makefile.am:
10101 * examples/capsfilter/Makefile.am:
10102 * examples/capsfilter/capsfilter1.c:
10103 * examples/gob/Makefile.am:
10104 * examples/gob/gst-identity2.gob:
10105 * examples/indexing/.cvsignore:
10106 * examples/indexing/Makefile.am:
10107 * examples/indexing/indexmpeg.c:
10108 * examples/seeking/.cvsignore:
10109 * examples/seeking/Makefile.am:
10110 * examples/seeking/cdparanoia.c:
10111 * examples/seeking/cdplayer.c:
10112 * examples/seeking/chained.c:
10113 * examples/seeking/scrubby.c:
10114 * examples/seeking/seek.c:
10115 * examples/stats/Makefile.am:
10116 * examples/stats/mp2ogg.c:
10117 * examples/switch/.cvsignore:
10118 * examples/switch/Makefile.am:
10119 * examples/switch/switcher.c:
10120 * tests/Makefile.am:
10121 * tests/check/generic/.cvsignore:
10122 * tests/check/pipelines/.cvsignore:
10123 * tests/examples/Makefile.am:
10124 * tests/examples/seek/Makefile.am:
10125 reorganize stuff under tests/
10127 2005-11-30 Edward Hervey <edward@fluendo.com>
10129 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
10130 Go away you stupid GstStaticPadTemplate memleak.
10132 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
10134 * gst-libs/gst/net/Makefile.am:
10135 * gst-libs/gst/net/README:
10136 * gst-libs/gst/net/gstnetbuffer.c:
10137 * gst-libs/gst/net/gstnetbuffer.h:
10138 this was moved to "netbuffer"
10140 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
10142 * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
10143 (gst_video_filter_class_init), (gst_video_filter_init):
10144 * gst-libs/gst/video/gstvideofilter.h:
10145 borgify name to bring in line with other classes
10147 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
10149 * gst/audioscale/.cvsignore:
10150 * gst/audioscale/Makefile.am:
10151 * gst/audioscale/README:
10152 * gst/audioscale/audioscale.vcproj:
10153 * gst/audioscale/dtof.c:
10154 * gst/audioscale/dtos.c:
10155 * gst/audioscale/functable.c:
10156 * gst/audioscale/gstaudioscale.c:
10157 * gst/audioscale/gstaudioscale.h:
10158 * gst/audioscale/private.h:
10159 * gst/audioscale/resample.c:
10160 * gst/audioscale/resample.h:
10161 * gst/audioscale/test.c:
10164 2005-11-30 Edward Hervey <edward@fluendo.com>
10166 * gst-libs/gst/netbuffer/Makefile.am:
10167 really, really tired
10169 2005-11-30 Edward Hervey <edward@fluendo.com>
10171 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
10172 Update for new GstTypeFindFactory _register()
10174 2005-11-30 Edward Hervey <edward@fluendo.com>
10176 * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir):
10177 Let's not override libgstnet from core for no reason...
10178 (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
10179 Ok, maybe not so quick next time.
10181 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
10184 * gst-libs/gst/Makefile.am:
10185 moved gst-libs/gst/net to netbuffer through CVS surgery
10186 remove old directory
10187 updating build to accomodate
10190 2005-11-29 Andy Wingo <wingo@pobox.com>
10192 * pkgconfig/gstreamer-plugins-base.pc.in:
10193 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
10194 * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
10197 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
10199 * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
10200 3rd time's the charm. Correct ref-counting for discarded buffers.
10202 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
10204 * gst/playback/gststreamselector.c:
10205 (gst_stream_selector_class_init),
10206 (gst_stream_selector_set_property),
10207 (gst_stream_selector_get_property),
10208 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
10211 2005-11-29 Tim-Philipp Müller <tim at centricular dot net>
10213 * gst/subparse/gstsubparse.c: (feed_textbuf):
10214 Don't access already unref'ed buffer.
10216 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
10218 * gst/playback/gststreamselector.c:
10219 (gst_stream_selector_class_init), (gst_stream_selector_init),
10220 (gst_stream_selector_dispose), (gst_stream_selector_set_property),
10221 (gst_stream_selector_get_property),
10222 (gst_stream_selector_get_linked_pad),
10223 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
10224 * gst/playback/gststreamselector.h:
10225 Add the active-pad property for playbin to use shortly. Ignore buffers
10226 from any other pad, returning GST_FLOW_NOT_LINKED
10228 2005-11-29 Julien MOUTTE <julien@moutte.net>
10230 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
10231 patch from bug #322704 (Alessandro Decina).
10233 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
10235 * gst-libs/gst/audio/Makefile.am:
10236 folded audiofilter into the audio library
10238 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
10240 * gst/videoscale/gstvideoscale.h:
10241 * gst/videoscale/gstvideoscale.c:
10242 remove unimplemented scale methods
10244 2005-11-28 Tim-Philipp Müller <tim at centricular dot net>
10246 * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
10249 2005-11-28 Julien MOUTTE <julien@moutte.net>
10251 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
10252 (gst_ximagesink_setcaps):
10253 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
10254 (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
10255 happens (only visible on ximagesink but bug is in xv too) set_caps was
10256 destroying the internal x[v]image used to memcpy non locally alloced
10257 buffers so that it got renewed on next _chain. The issue is that
10258 _expose will try to put that image as it reffed it in _put.
10259 Using gst_buffer_unref instead of destroy fixes it !
10261 2005-11-28 Edward Hervey <edward@fluendo.com>
10263 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
10264 (try_to_link_1), (queue_filled_cb):
10265 Better use of the queues. Start with a small size queue and only increase
10266 the size of the queues when the other queues are empty.
10268 2005-11-28 Thomas Vander Stichele <thomas at apestaart dot org>
10270 * gst-libs/gst/video/Makefile.am:
10271 compile in copied-over videofilter into the video library
10272 * gst-libs/gst/video/videosink.h:
10273 rename the header to gstvideosink.h since it's a base GstObject class
10274 * sys/ximage/ximagesink.h:
10275 * sys/xvimage/xvimagesink.h:
10278 2005-11-28 Wim Taymans <wim@fluendo.com>
10280 * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
10281 * gst/playback/gstplaybasebin.h:
10282 Prepare to handle errors betters.
10284 * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
10285 Set sinks to PAUSED first before adding and linking them so that
10286 we don't interrupt dataflow.
10288 2005-11-28 Wim Taymans <wim@fluendo.com>
10290 * gst-libs/gst/audio/TODO:
10293 * gst-libs/gst/audio/gstaudiosink.c:
10294 (gst_audioringbuffer_open_device),
10295 (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
10296 (gst_audioringbuffer_release):
10299 * gst-libs/gst/audio/gstbaseaudiosink.c:
10300 (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
10301 (gst_base_audio_sink_change_state):
10302 Slave to the master clock when going to PLAYING and unslave when
10305 * gst-libs/gst/audio/gstringbuffer.c:
10306 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
10307 (gst_ring_buffer_acquire), (gst_ring_buffer_release),
10308 (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
10309 (gst_ring_buffer_clear_all), (wait_segment),
10310 (gst_ring_buffer_commit), (gst_ring_buffer_read),
10311 (gst_ring_buffer_advance):
10312 * gst-libs/gst/audio/gstringbuffer.h:
10313 Add some docs and cleanups.
10315 2005-11-28 Julien MOUTTE <julien@moutte.net>
10317 * sys/xvimage/xvimagesink.c:
10318 (gst_xvimagesink_navigation_send_event): Fix navigation events
10319 coordinates translation with pixel aspect ratios.
10321 2005-11-28 Julien MOUTTE <julien@moutte.net>
10323 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
10324 Use calculated video geometry from _setcaps instead of buffer
10325 caps to respect pixel aspect ratio. (fixes #322388)
10327 2005-11-28 Julien MOUTTE <julien@moutte.net>
10329 * docs/libs/tmpl/gstcolorbalance.sgml:
10330 * docs/libs/tmpl/gstmixer.sgml:
10331 * docs/libs/tmpl/gstxoverlay.sgml:
10332 * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
10335 2005-11-28 Julien MOUTTE <julien@moutte.net>
10337 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
10338 Refuse to create an XvImage if we can't find the format.
10340 2005-11-28 Edward Hervey <edward@fluendo.com>
10342 * gst-libs/gst/riff/riff-media.c:
10343 (gst_riff_create_audio_template_caps):
10344 Add ATRAC3 to the list of riff-possible audio caps.
10345 I know we still don't have a plugin for atrac3, but it's saner to output
10346 that than a cryptic mimetype.
10348 2005-11-27 Edward Hervey <edward@fluendo.com>
10350 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
10351 Don't try to create a zero-sized subbuffer.
10353 2005-11-27 Julien MOUTTE <julien@moutte.net>
10355 * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
10356 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
10357 (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
10358 (gst_ximagesink_expose): Fixed a tricky race.
10359 * sys/ximage/ximagesink.h:
10360 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
10361 (gst_xvimagesink_expose): Fixed a tricky race.
10362 * sys/xvimage/xvimagesink.h:
10364 2005-11-27 Edward Hervey <edward@fluendo.com>
10366 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
10367 (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
10368 Remove unused properties, and add queues between demuxers and decoders
10369 so that a lot more files can preroll properly.
10371 2005-11-27 Thomas Vander Stichele <thomas at apestaart dot org>
10373 * gst-libs/gst/net/Makefile.am:
10374 * gst-libs/gst/rtp/Makefile.am:
10375 * gst-libs/gst/tag/Makefile.am:
10376 remove silly include
10377 * gst/tags/Makefile.am:
10378 * gst/tags/gsttagediting.c:
10379 * gst/tags/gsttageditingprivate.h:
10380 * gst/tags/tagedit.vcproj:
10381 remove directory, is as good as empty
10383 2005-11-27 Thomas Vander Stichele <thomas at apestaart dot org>
10386 added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
10387 * gst-libs/Makefile.am:
10388 * gst-libs/gst/audio/Makefile.am:
10389 * gst-libs/gst/interfaces/Makefile.am:
10390 * gst-libs/gst/net/Makefile.am:
10391 * gst-libs/gst/riff/Makefile.am:
10392 * gst-libs/gst/rtp/Makefile.am:
10393 * gst-libs/gst/tag/Makefile.am:
10394 * gst-libs/gst/video/Makefile.am:
10397 2005-11-27 Julien MOUTTE <julien@moutte.net>
10399 * docs/libs/tmpl/gstcolorbalance.sgml:
10400 * docs/libs/tmpl/gstmixer.sgml:
10401 * docs/libs/tmpl/gstxoverlay.sgml:
10402 * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
10403 * sys/ximage/ximagesink.h:
10404 * sys/xvimage/xvimagesink.h: More and more documentation.
10406 2005-11-26 Julien MOUTTE <julien@moutte.net>
10408 * docs/libs/gst-plugins-base-libs-docs.sgml:
10409 * docs/libs/gst-plugins-base-libs-sections.txt:
10410 * docs/libs/tmpl/gstcolorbalance.sgml:
10411 * docs/libs/tmpl/gstmixer.sgml:
10412 * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
10415 2005-11-26 Julien MOUTTE <julien@moutte.net>
10417 * docs/plugins/Makefile.am:
10418 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10419 * docs/plugins/gst-plugins-base-plugins-sections.txt:
10420 * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
10422 2005-11-26 Julien MOUTTE <julien@moutte.net>
10424 * docs/plugins/Makefile.am:
10425 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10426 * docs/plugins/gst-plugins-base-plugins-sections.txt:
10427 * docs/plugins/inspect/plugin-adder.xml:
10428 * docs/plugins/inspect/plugin-alsa.xml:
10429 * docs/plugins/inspect/plugin-audioconvert.xml:
10430 * docs/plugins/inspect/plugin-audiorate.xml:
10431 * docs/plugins/inspect/plugin-audioresample.xml:
10432 * docs/plugins/inspect/plugin-audiotestsrc.xml:
10433 * docs/plugins/inspect/plugin-decodebin.xml:
10434 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
10435 * docs/plugins/inspect/plugin-gnomevfs.xml:
10436 * docs/plugins/inspect/plugin-ogg.xml:
10437 * docs/plugins/inspect/plugin-playbin.xml:
10438 * docs/plugins/inspect/plugin-subparse.xml:
10439 * docs/plugins/inspect/plugin-tcp.xml:
10440 * docs/plugins/inspect/plugin-theora.xml:
10441 * docs/plugins/inspect/plugin-typefindfunctions.xml:
10442 * docs/plugins/inspect/plugin-video4linux.xml:
10443 * docs/plugins/inspect/plugin-videorate.xml:
10444 * docs/plugins/inspect/plugin-videoscale.xml:
10445 * docs/plugins/inspect/plugin-videotestsrc.xml:
10446 * docs/plugins/inspect/plugin-volume.xml:
10447 * docs/plugins/inspect/plugin-vorbis.xml:
10448 * docs/plugins/inspect/plugin-ximagesink.xml:
10449 * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
10450 * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
10452 2005-11-26 Edward Hervey <edward@fluendo.com>
10454 * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
10455 Properly return GstFlowReturn from gst_pad_push in chain functions.
10457 2005-11-25 Michael Smith <msmith@fluendo.com>
10459 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
10460 (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
10461 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
10462 (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
10463 Handle various conditions better when we don't understand a stream.
10464 Removes a heap of CRITICALs on ogg streams containing unknown data.
10466 2005-11-24 Andy Wingo <wingo@pobox.com>
10468 * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
10471 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10473 * configure.ac: back to HEAD
10475 === release 0.9.6 ===
10477 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10480 releasing 0.9.6, "White Eight"
10482 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10484 * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
10485 * docs/plugins/inspect/plugin-sine.xml:
10486 remove sinesrc some more
10488 2005-11-23 Wim Taymans <wim@fluendo.com>
10490 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
10491 If we are reading too slowly, jump forward in the ringbuffer
10492 instead of blocking.
10494 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
10496 * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
10497 (gst_visual_chain):
10498 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
10499 * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
10500 (gst_videorate_chain):
10501 * gst/videotestsrc/gstvideotestsrc.c:
10502 (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
10503 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
10504 (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
10505 (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
10506 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10507 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10508 Updates for API changes
10510 2005-11-23 Wim Taymans <wim@fluendo.com>
10512 * gst-libs/gst/audio/gstbaseaudiosink.c:
10513 (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
10514 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10515 Fix for calibration API change.
10517 2005-11-23 Michael Smith <msmith@fluendo.com>
10519 * gst-libs/gst/audio/multichannel.c:
10520 (gst_audio_get_channel_positions),
10521 (gst_audio_set_channel_positions),
10522 (gst_audio_set_structure_channel_positions_list),
10523 (gst_audio_fixate_channel_positions):
10524 Use gst_value_array_*() functions on value arrays, not
10525 gst_value_list_*().
10527 2005-11-23 Edward Hervey <edward@fluendo.com>
10530 eheh, sinesrc is gone. Replacing sample srcfile by existing one.
10533 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10535 * check/Makefile.am:
10536 * check/elements/videotestsrc.c: (setup_videotestsrc),
10537 (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
10539 add a test for videotestsrc
10541 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10543 * gst/sine/.cvsignore:
10544 * gst/sine/Makefile.am:
10545 * gst/sine/gstsinesrc.c:
10546 * gst/sine/gstsinesrc.h:
10547 * gst/sine/sinesrc.vcproj:
10548 and remove sinesrc from the repository. Closes #321446
10550 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10553 * gst-plugins-base.spec.in:
10554 remove sinesrc from the build
10556 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10558 * check/Makefile.am:
10559 * check/elements/audiotestsrc.c: (setup_audiotestsrc),
10560 (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
10562 add a test for audiotestsrc, testing all waves. Even seems
10563 leak-free at first glance, nice job Stefan
10565 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
10581 Translation string updates
10583 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
10584 (gst_v4lsrc_set_caps):
10585 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10586 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10587 * sys/v4l/v4lsrc_calls.h:
10588 Improve v4lsrc, by making it work again.
10590 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
10592 * ext/libvisual/visual.c: (gst_visual_chain):
10593 Fix the fps calculations.
10595 * gst/ffmpegcolorspace/avcodec.h:
10596 Move structure element for clarity
10598 * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
10599 * gst-libs/gst/interfaces/tunernorm.h:
10600 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
10601 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
10602 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
10603 (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
10604 (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
10605 (gst_v4lmjpegsrc_getcaps):
10606 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
10607 (gst_v4lsrc_set_caps):
10608 * sys/v4l/gstv4lsrc.h:
10609 * sys/v4l/v4l_calls.c: (gst_v4l_open):
10610 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10611 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10612 * sys/v4l/v4lsrc_calls.h:
10613 Fractional framerates...
10615 2005-11-22 Wim Taymans <wim@fluendo.com>
10617 * gst-libs/gst/audio/gstbaseaudiosink.c:
10618 (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
10619 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10620 And we provide a clock by default, of course...
10622 2005-11-22 Wim Taymans <wim@fluendo.com>
10624 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
10625 This clock can be slaved to a master clock now.
10627 * gst-libs/gst/audio/gstbaseaudiosink.c:
10628 (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
10629 (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
10630 (gst_base_audio_sink_set_clock),
10631 (gst_base_audio_sink_set_property),
10632 (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
10633 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10634 * gst-libs/gst/audio/gstbaseaudiosink.h:
10635 Handle slaving the internal clock to the clock selected in the
10637 Add property to make the basesink not provide a clock.
10639 * gst-libs/gst/rtp/gstbasertpdepayload.c:
10640 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
10641 (gst_base_rtp_depayload_wait):
10642 * gst-libs/gst/rtp/gstbasertpdepayload.h:
10643 We can use the clock in GstElement, no need to store it ourselves.
10645 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
10647 * docs/libs/tmpl/gstaudio.sgml:
10649 * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
10650 (gst_paranoia_endian_get_type):
10651 * ext/theora/theoraenc.c: (gst_border_mode_get_type):
10652 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
10653 * gst/audiotestsrc/gstaudiotestsrc.c:
10654 (gst_audiostestsrc_wave_get_type):
10655 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
10656 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
10657 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
10658 (gst_sync_method_get_type), (gst_unit_type_get_type),
10659 (gst_client_status_get_type), (gst_multifdsink_class_init),
10660 (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
10661 (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
10662 (gst_multifdsink_get_property):
10663 * gst/tcp/gstmultifdsink.h:
10664 * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
10665 * gst/videotestsrc/gstvideotestsrc.c:
10666 (gst_videotestsrc_pattern_get_type):
10667 remove deprecated properties
10668 fix up enums to correctly have short lowercase dashed nicks
10670 2005-11-22 Michael Smith <msmith@fluendo.com>
10672 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
10673 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
10676 2005-11-22 Michael Smith <msmith@fluendo.com>
10678 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
10679 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
10680 Use utility method for scaling clocktime for fractional framerates.
10682 2005-11-22 Jan Schmidt <thaytan@mad.scientist.com>
10684 * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
10685 (gst_visual_chain):
10686 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
10687 * ext/theora/theoradec.c: (theora_handle_type_packet):
10688 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
10689 (theora_enc_chain):
10690 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
10691 * gst-libs/gst/video/video.c: (gst_video_frame_rate):
10692 * gst-libs/gst/video/video.h:
10693 * gst/ffmpegcolorspace/avcodec.h:
10694 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10695 (gst_ffmpeg_caps_to_pixfmt):
10696 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10697 (gst_ffmpegcsp_set_caps):
10698 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
10699 (gst_videorate_setcaps), (gst_videorate_blank_data),
10700 (gst_videorate_chain):
10701 * gst/videotestsrc/gstvideotestsrc.c:
10702 (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
10703 (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
10704 (gst_videotestsrc_event), (gst_videotestsrc_create):
10705 * gst/videotestsrc/gstvideotestsrc.h:
10706 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
10707 (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
10708 (gst_ximagesink_get_times), (gst_ximagesink_init):
10709 * sys/ximage/ximagesink.h:
10710 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
10711 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
10712 (gst_xvimagesink_get_times), (gst_xvimagesink_init):
10713 * sys/xvimage/xvimagesink.h:
10714 Convert elements to use fractions for their framerate.
10715 V4L elements to come later tonight.
10717 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
10719 * gst-libs/gst/audio/audio.c:
10720 * gst-libs/gst/audio/audio.h:
10721 remove some deprecated functions
10723 2005-11-22 Andy Wingo <wingo@pobox.com>
10725 * Update for gst_tag_setter API changes.
10727 2005-11-22 Andy Wingo <wingo@pobox.com>
10729 * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
10730 (gst_ogg_demux_perform_seek):
10731 * ext/theora/theoradec.c (theora_dec_sink_event):
10732 * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
10735 2005-11-22 Wim Taymans <wim@fluendo.com>
10737 * examples/seeking/seek.c: (main):
10738 Give higher priority to bus signals than the gtk events
10739 to fix a race condition in the segment looping.
10741 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
10743 * ext/theora/Makefile.am:
10744 * ext/vorbis/Makefile.am:
10745 * gst-libs/gst/tag/Makefile.am:
10746 * gst-plugins-base.spec.in:
10747 Rename libgsttagedit to libgsttag (#322117).
10749 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
10751 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
10752 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
10753 Call gst_x_overlay_prepare_xwindow_id() to give applications
10754 a final chance to set their own xwindow id before the video
10755 sink creates its own window.
10757 2005-11-22 Julien MOUTTE <julien@moutte.net>
10759 * sys/xvimage/xvimagesink.c:
10760 (gst_xvimagesink_navigation_send_event): Handle navigation
10761 events correcly with borders if applicable.
10763 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
10765 Patch by: Luca Ognibene
10767 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10768 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
10769 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10770 (gst_ffmpegcsp_caps_remove_format_info):
10771 * gst/ffmpegcolorspace/imgconvert.c:
10772 * gst/ffmpegcolorspace/imgconvert_template.h:
10773 Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
10774 #318353); use gst_structure_has_name().
10776 2005-11-22 Julien MOUTTE <julien@moutte.net>
10778 * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
10779 (gst_ximagesink_class_init): Add debug macros on functions.
10780 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
10781 (gst_xvimagesink_xwindow_draw_borders),
10782 (gst_xvimagesink_xvimage_put),
10783 (gst_xvimagesink_xwindow_update_geometry),
10784 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
10785 (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
10786 (gst_xvimagesink_xcontext_clear),
10787 (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
10788 (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
10789 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
10790 (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
10791 (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
10792 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
10793 * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
10794 expose while being PAUSED, out of data flow navigation events, etc..
10796 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
10798 * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
10799 * gst-libs/gst/audio/audio.h:
10800 fix prototype - wondering why the test worked regardless
10802 2005-11-21 Thomas Vander Stichele <thomas at apestaart dot org>
10804 * check/Makefile.am:
10805 * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
10806 * gst-libs/gst/audio/audio.h:
10807 add a method that returns a proper GstClockTime
10809 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10811 * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
10812 (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
10813 * gst-libs/gst/interfaces/xoverlay.h:
10814 Remove everything having to do with the desired size; add
10815 gst_x_overlay_prepare_xwindow_id() function; remove the
10816 'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
10817 post a message on the bus instead (#321816).
10819 * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
10820 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
10821 (gst_xvimagesink_xoverlay_init):
10822 Remove desired size stuff (#321816).
10824 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10826 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
10827 (mpeg2_sys_type_find), (mpeg1_sys_type_find),
10828 (mpeg_video_type_find), (mpeg_video_stream_type_find):
10829 Terminate vararg functions with NULL instead of 0 to
10832 2005-11-21 Andy Wingo <wingo@pobox.com>
10834 patch by: Sebastien Cote <sebas642@yahoo.ca>
10836 * gst-libs/gst/rtp/gstrtpbuffer.h:
10837 * gst-libs/gst/rtp/gstrtpbuffer.c
10838 (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
10840 2005-11-21 Andy Wingo <wingo@pobox.com>
10842 * gst/playback/gstplaybin.c (gen_audio_element)
10843 (gen_video_element): Use the new MISSING_PLUGIN core error
10844 category. Closes #320060.
10846 * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event):
10847 * gst/videorate/gstvideorate.c (gst_videorate_event):
10848 * ext/theora/theoradec.c (theora_dec_sink_event):
10849 * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
10852 * gst/subparse/gstsubparse.c (gst_subparse_src_event):
10853 * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
10854 stream lock changes.
10856 2005-11-21 Wim Taymans <wim@fluendo.com>
10858 * gst-libs/gst/audio/gstbaseaudiosink.c:
10859 (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
10860 (gst_base_audio_sink_provide_clock),
10861 (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
10862 (gst_base_audio_sink_change_state):
10863 * gst/audioresample/gstaudioresample.c:
10864 Segment update fix.
10866 2005-11-21 Andy Wingo <wingo@pobox.com>
10869 * *.c: Ran scripts/update-macros. Oh yes.
10871 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10873 * sys/ximage/Makefile.am:
10874 * sys/ximage/ximage.c:
10875 Rename ximage plugin to ximagesink (#321426) (Don't forget to
10876 remove your old libgstximage.* manually if necessary).
10878 2005-11-21 Michael Smith <msmith@fluendo.com>
10880 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
10881 Minimal fix for bug #320200: set the min/max bitrate in the correct
10882 units. A better fix would be to upgrade to the RATEMANAGE2
10883 interface, rather than using the deprecated interface used here, but
10884 that would require an update in our libvorbis dependency (to 1.1),
10885 which is probably undesirable.
10887 2005-11-21 Jan Schmidt <thaytan@mad.scientist.com>
10889 * ext/libvisual/visual.c: (get_buffer):
10890 * gst-libs/gst/audio/gstbaseaudiosrc.c:
10891 (gst_base_audio_src_fixate):
10892 * gst/audioconvert/gstaudioconvert.c:
10893 (gst_audio_convert_fixate_caps):
10894 * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
10895 * gst/audiotestsrc/gstaudiotestsrc.c:
10896 (gst_audiotestsrc_src_fixate):
10897 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
10898 * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
10899 * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
10900 * gst/videotestsrc/gstvideotestsrc.c:
10901 (gst_videotestsrc_src_fixate):
10902 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
10903 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
10904 Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
10908 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10910 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
10911 (gst_riff_create_iavs_caps):
10912 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
10913 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
10914 (gst_riff_parse_info):
10915 * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
10916 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
10917 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
10918 Fixes for GST_FOURCC_FORMAT API change.
10920 2005-11-21 Andy Wingo <wingo@pobox.com>
10922 patch by: Alessandro Dessina <alessandro nnva org>
10924 * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
10925 * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
10926 (gst_ogg_parse_chain):
10927 * ext/theora/theoraenc.c (theora_set_header_on_caps):
10928 * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
10929 * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
10930 gst_value_list calls on arrays. Fixes #321962.
10932 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10934 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
10935 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
10936 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
10937 * gst/adder/gstadder.c: (gst_adder_init),
10938 (gst_adder_request_new_pad), (gst_adder_collected),
10939 (gst_adder_change_state):
10940 Update for gst_collectpads_foo() to gst_collect_pads_foo()
10943 2005-11-21 Michael Smith <msmith@fluendo.com>
10945 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
10946 (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
10947 Properly handle pad_push return values.
10949 2005-11-20 Jan Schmidt <thaytan@mad.scientist.com>
10951 * gst-libs/gst/tag/Makefile.am:
10952 * gst-libs/gst/tag/gstvorbistag.c:
10953 (gst_tag_list_to_vorbiscomment_buffer):
10954 Remove obsolete vorbistag element and debug category.
10956 * gst/playback/gstplaybasebin.c: (check_queue):
10957 Don't divide by 0 when queue-threshold is 0.
10959 * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
10960 Don't modify an existing pixel-aspect-ratio if we fail to read
10963 2005-11-20 Wim Taymans <wim@fluendo.com>
10965 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
10966 (gst_vorbisenc_push_packet):
10967 GST_PAD_IS_USABLE is gone, use the return value of
10968 the push or pad_alloc_buffer instead.
10970 2005-11-18 Julien MOUTTE <julien@moutte.net>
10972 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
10973 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
10974 (gst_ximagesink_ximage_destroy),
10975 (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
10976 (gst_ximagesink_xwindow_new),
10977 (gst_ximagesink_xwindow_update_geometry),
10978 (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
10979 (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
10980 (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
10981 (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
10982 (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
10983 (gst_ximagesink_navigation_send_event),
10984 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
10985 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
10986 (gst_ximagesink_finalize), (gst_ximagesink_init),
10987 (gst_ximagesink_class_init):
10988 * sys/ximage/ximagesink.h: Refactoring of ximagesink.
10989 This new version brings correct software scaling, non flickering
10990 window while resizing, pixel aspect ratio handling, usage of
10991 hardware buffer pools, out of data flow event thread for
10992 navigation and handling of expose events even when being PAUSED,
10993 a new property to keep video aspect ratio when resizing, etc...
10995 2005-11-18 Julien MOUTTE <julien@moutte.net>
10997 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
10998 (gst_videoscale_fixate_caps): Introduce back caps fixate with
11001 2005-11-18 Edward Hervey <bilboed@dvdsrc.fluendo.com>
11003 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
11004 Unsetting IS_SINK flag from the fakesink, so decodebin
11005 never behaves as a sink.
11007 2005-11-17 Wim Taymans <wim@fluendo.com>
11009 * gst-libs/gst/audio/gstbaseaudiosrc.c:
11010 (gst_base_audio_src_change_state):
11011 Fix the audiosrc base class again, we did not unflush.
11013 2005-11-17 Julien MOUTTE <julien@moutte.net>
11015 * examples/seeking/seek.c: (make_dv_pipeline),
11016 (make_vorbis_theora_pipeline), (make_avi_pipeline),
11017 (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
11018 to ogg/vorbis/theora pipeline.
11020 2005-11-17 Wim Taymans <wim@fluendo.com>
11022 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
11023 (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
11024 (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
11025 Fix EOS on multiple streams.
11028 2005-11-16 Wim Taymans <wim@fluendo.com>
11030 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
11031 (gst_ogg_demux_perform_seek):
11032 Segment done must include stream time.
11034 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
11035 (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
11036 (gst_ogg_mux_change_state):
11037 Fix ogg muxer again.
11039 2005-11-16 Wim Taymans <wim@fluendo.com>
11041 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
11044 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
11046 * ext/libvisual/visual.c: (gst_visual_init):
11047 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
11048 * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
11049 (gst_ogg_parse_chain):
11050 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
11051 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
11052 * ext/theora/theoradec.c: (gst_theora_dec_init):
11053 * ext/theora/theoraenc.c: (gst_theora_enc_init):
11054 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
11055 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
11056 * gst/adder/gstadder.c: (gst_adder_class_init),
11057 (gst_adder_dispose):
11058 * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
11059 * gst/subparse/gstsubparse.c: (gst_subparse_init):
11060 * gst/videorate/gstvideorate.c: (gst_videorate_init):
11061 Fix a whole set of pad template leaks
11063 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
11065 * check/generic/states.c: (GST_START_TEST):
11066 fix the test so that it only checks for elements that are part of
11069 2005-11-16 Michael Smith <msmith@fluendo.com>
11071 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
11072 (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
11073 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11074 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11075 (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
11076 (gst_ogg_mux_change_state):
11077 Fix leaking collectpads.
11079 2005-11-16 Edward Hervey <edward@fluendo.com>
11081 * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
11082 (gst_videorate_event), (gst_videorate_chain):
11083 Handle segment seeks
11085 2005-11-16 Wim Taymans <wim@fluendo.com>
11087 * gst-libs/gst/audio/gstbaseaudiosink.c:
11088 (gst_base_audio_sink_provide_clock),
11089 (gst_base_audio_sink_change_state):
11090 Set ringbuffer to non-flushing when going to PAUSED, set to
11091 flushing again when going to READY.
11093 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
11094 (gst_ring_buffer_stop):
11095 Start in flushing mode by default.
11096 Don't set flushing in the _stop method, let the app call
11099 2005-11-16 Julien MOUTTE <julien@moutte.net>
11101 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
11102 * gst-libs/gst/video/videosink.h: Add helper function needed
11105 2005-11-16 Tim-Philipp Müller <tim at centricular dot net>
11107 * gst/videoscale/gstvideoscale.c:
11108 (gst_videoscale_handle_src_event):
11109 Don't leak reference to pad parent.
11111 2005-11-16 Wim Taymans <wim@fluendo.com>
11113 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
11114 Set ringbuffer to flushing when stopping so that we don't
11115 block on wait_segment anymore and livelock.
11117 2005-11-16 Wim Taymans <wim@fluendo.com>
11119 * examples/seeking/seek.c: (send_event), (do_seek),
11120 (loop_toggle_cb), (segment_done), (main):
11121 Added looping checkbox.
11123 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
11125 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
11126 (gst_ogg_demux_init):
11127 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
11128 (gst_vorbis_dec_init):
11129 revert unrefs, they don't pass make check
11131 2005-11-15 Johan Dahlin <johan@gnome.org>
11133 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
11134 (gst_ogg_demux_init), (gst_ogg_demux_finalize):
11135 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
11136 (gst_vorbis_dec_init):
11137 Fix pad template leaks.
11139 2005-11-15 Tim-Philipp Müller <tim at centricular dot net>
11141 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
11142 Make state change function thread safe.
11144 2005-11-15 Edward Hervey <edward@fluendo.com>
11146 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
11147 (gst_ogg_demux_class_init):
11148 Implement GstElement::send_event, so we can send seek events
11151 2005-11-14 Julien MOUTTE <julien@moutte.net>
11153 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
11154 Discovered how to take away flickering while resizing the
11155 window. Please don't put that in ximagesink, refactoring in
11158 2005-11-14 Michael Smith <msmith@fluendo.com>
11160 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
11161 (gst_multifdsink_render):
11162 Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
11164 2005-11-14 Tim-Philipp Müller <tim at centricular dot net>
11166 * gst/playback/gstplaybin.c: (gen_audio_element):
11167 Use autoaudiosink, it tends to be more widely available than
11170 2005-11-14 Andy Wingo <wingo@pobox.com>
11172 * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
11173 as well if it is available. Fixes #316442.
11175 2005-11-14 Michael Smith <msmith@fluendo.com>
11177 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
11178 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
11179 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11180 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11181 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
11182 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
11183 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
11184 (gst_vorbisenc_change_state):
11185 Fix a small memory leak in vorbisenc.
11186 Fix large memory leaks in oggmux, also fix lots of state change
11189 2005-11-14 Thomas Vander Stichele <thomas at apestaart dot org>
11191 * gst/videotestsrc/gstvideotestsrc.c:
11192 (gst_videotestsrc_class_init), (gst_videotestsrc_init),
11193 (gst_videotestsrc_src_fixate):
11194 move fixation to a fixate function
11195 remove negotiate function, basesrc's is good enough
11196 fixes a bug for check when using the element alone
11198 2005-11-13 Edward Hervey <edward@fluendo.com>
11200 * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
11201 (key_toggle_cb), (main):
11202 Added checkboxes for adding/removing the accurate and key_unit seek
11205 2005-11-11 Thomas Vander Stichele <thomas at apestaart dot org>
11207 * configure.ac: back to HEAD
11209 === release 0.9.5 ===
11211 2005-11-11 Thomas Vander Stichele <thomas at apestaart dot org>
11214 releasing 0.9.5, "No No Kia"
11216 2005-11-11 Edward Hervey <edward@fluendo.com>
11218 * examples/seeking/seek.c: (make_parselaunch_pipeline):
11219 Added parse-launch syntax seeking mode for the seeking example.
11220 This should help stress-test even more cases.
11221 Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
11223 2005-11-11 Tim-Philipp Müller <tim at centricular dot net>
11225 * sys/xvimage/xvimagesink.c:
11226 (gst_xvimagesink_navigation_send_event):
11227 Check whether peer pad exists before sending navigation events
11230 2005-11-11 Michael Smith <msmith@fluendo.com>
11232 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
11233 (gst_vorbisenc_buffer_from_packet):
11234 * ext/vorbis/vorbisenc.h:
11235 Set duration on encoded buffers. This allows oggmux's
11236 max_page_delay parameter to actually work.
11238 2005-11-11 Tim-Philipp Müller <tim at centricular dot net>
11240 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11241 (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
11242 (gst_ffmpegcsp_avpicture_fill):
11243 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11244 (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
11245 Make palettes work again (see #132341). Use our own macros
11248 2005-11-10 Andy Wingo <wingo@pobox.com>
11250 * gst/playback/gstplaybasebin.c (prepare_output): Fix format
11253 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
11255 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11256 (gst_ffmpegcsp_transform_caps):
11257 Prefer passthrough in transform_caps
11259 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
11261 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
11262 check for ALSA errors properly, instead of relying on ALSA's
11263 error strings to serve to the user.
11265 2005-11-10 Wim Taymans <wim@fluendo.com>
11267 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
11268 (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
11269 (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
11270 Modernise the seek code.
11272 2005-11-10 Michael Smith <msmith@fluendo.com>
11274 * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
11275 (setup_substreams), (set_active_source):
11276 Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
11277 trying to go to NULL if we failed to read a file.
11279 2005-11-10 Wim Taymans <wim@fluendo.com>
11281 * gst/audiotestsrc/gstaudiotestsrc.c:
11282 (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
11283 (gst_audiotestsrc_create):
11284 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
11285 (gst_sinesrc_get_times), (gst_sinesrc_create):
11286 * gst/videotestsrc/gstvideotestsrc.c:
11287 (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
11288 (gst_videotestsrc_create):
11289 The base class can now sync for us.
11291 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
11293 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
11294 a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
11295 name=source autoprobe=false autoprobe-fps=false copy-mode=1
11296 device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
11297 format=(fourcc)I420" ! xvimagesink
11299 2005-11-10 Tim-Philipp Müller <tim at centricular dot net>
11301 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
11302 (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
11303 (gst_sinesrc_newsegment):
11304 Send newsegment event in TIME format, set duration if
11305 num-buffers is set, fix duration querying.
11307 2005-11-10 Michael Smith <msmith@fluendo.com>
11309 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
11310 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11311 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11312 (gst_ogg_mux_collected):
11313 Fix EOS handling, partially. Now forwarding an EOS event once we have
11314 EOS on all pads works correctly. However, we still don't properly set
11315 EOS on the actual ogg stream pages.
11317 2005-11-09 Tim-Philipp Müller <tim at centricular dot net>
11319 * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
11320 Set elements to NULL state before disposing of them.
11322 2005-11-08 Sebastien Cote <sebas642 at yahoo dot ca>
11324 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
11326 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11327 (gst_base_rtp_depayload_init),
11328 (gst_base_rtp_depayload_set_gst_timestamp):
11329 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11330 We need to send a newsegment event for each instance, not
11331 just for the first instance of this class (get rid of
11332 static variable in function). (#321011).
11334 2005-11-08 Michael Smith <msmith@fluendo.com>
11336 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
11337 (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
11338 (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
11339 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
11340 Forward port rewrite of muxing strategy to 0.9 version of oggmux.
11341 This makes us mux things correctly according to the ogg muxing
11342 rules. Still not handling EOS correctly right now, though.
11344 2005-11-08 Tim-Philipp Müller <tim at centricular dot net>
11346 * gst/audioconvert/gstaudioconvert.c:
11349 2005-11-08 Tim-Philipp Müller <tim at centricular dot net>
11351 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
11352 (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
11353 Initialise segment_stop to GST_CLOCK_TIME_NONE when
11354 creating a new chain; should fix live streaming. Also
11355 add more debug output and fix a typo.
11357 2005-11-08 Brian Cameron <brian dot cameron at sun dot com>
11359 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
11361 * gst/volume/gstvolume.c: (volume_set_caps):
11362 Fix compilation on Solaris with Forte. (#320923)
11364 2005-11-08 Wim Taymans <wim@fluendo.com>
11366 * gst-libs/gst/audio/gstbaseaudiosink.c:
11367 (gst_base_audio_sink_render):
11368 No need to do a typecheck.
11370 2005-11-07 Tim-Philipp Müller <tim at centricular dot net>
11372 * ext/alsa/gstalsa.h:
11373 We register a debug category, so let's use it.
11375 2005-11-04 Zeeshan Ali <zeenix@gmail.com>
11377 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11378 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
11379 Fixed a small problem.
11381 2005-11-04 Wim Taymans <wim@fluendo.com>
11383 * examples/seeking/Makefile.am:
11384 * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
11385 (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
11386 (make_playerbin_pipeline), (format_value), (update_scale),
11387 (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
11388 (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
11389 (print_usage), (main):
11390 Added app for playback speed testing.
11392 * examples/seeking/seek.c: (dynamic_link),
11393 (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
11394 (make_mpeg_pipeline), (do_seek), (set_update_scale),
11395 (message_received), (main):
11396 Updated seek example.
11398 2005-11-04 Zeeshan Ali <zeenix@gmail.com>
11400 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11401 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
11402 (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
11403 (gst_base_rtp_depayload_set_clock):
11404 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11405 Don't sleep on the bench (system clock) when you have a nice
11406 comfortable bed (Gstreamer clock) to sleep on.
11408 2005-11-03 Wim Taymans <wim@fluendo.com>
11410 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11411 (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
11412 (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
11413 Handle the case where a pad_block failed.
11415 2005-11-02 Sebastien Cote <sebas642@yahoo.ca>
11417 reviewed by: Zeeshan Ali <zeenix@gmail.com>
11419 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11420 (gst_base_rtp_depayload_add_to_queue),
11421 (gst_base_rtp_depayload_push),
11422 (gst_base_rtp_depayload_set_gst_timestamp),
11423 (gst_base_rtp_depayload_queue_release):
11424 Fixes some bugs in the depayloader's queuing/de-queueing code.
11426 2005-10-31 Michael Smith <msmith@fluendo.com>
11428 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
11429 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
11430 (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
11431 Patch from Alessandro Decina <alessandro@nnva.org>.
11432 Make oggdemux only find the final time in a chain, not per-pad,
11433 since the per-pad information can be very expensive to locate, and
11434 it isn't used anywhere. This makes reading a file containing
11435 OggSkeleton reasonably fast.
11436 Also, make chain finding work when there are logical bitstreams that
11437 can't be decoded. Fixes #319110.
11439 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
11441 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11442 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
11443 (gst_base_rtp_depayload_chain),
11444 (gst_base_rtp_depayload_add_to_queue),
11445 (gst_base_rtp_depayload_push),
11446 (gst_base_rtp_depayload_set_gst_timestamp),
11447 (gst_base_rtp_depayload_queue_release),
11448 (gst_base_rtp_depayload_start_thread),
11449 (gst_base_rtp_depayload_set_property),
11450 (gst_base_rtp_depayload_get_property):
11451 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11452 Some random fixes, to fullfill the desires of thomas.
11454 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
11456 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11457 (gst_base_rtp_depayload_add_to_queue),
11458 (gst_base_rtp_depayload_push):
11459 Fixed the queueing algorithm.
11461 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
11463 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11464 (gst_base_rtp_depayload_push):
11467 2005-10-31 Wim Taymans <wim@fluendo.com>
11469 * gst-libs/gst/audio/gstringbuffer.h:
11472 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11473 (gst_ffmpeg_caps_to_pixfmt):
11474 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11475 (gst_ffmpegcsp_set_caps):
11476 Some more comments.
11477 Handle missing required caps fields better.
11479 2005-10-31 Wim Taymans <wim@fluendo.com>
11481 * gst-libs/gst/audio/gstbaseaudiosink.c:
11482 (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
11483 (gst_base_audio_sink_render):
11484 * gst-libs/gst/audio/gstringbuffer.c:
11485 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
11486 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
11487 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
11488 (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
11489 (gst_ring_buffer_read):
11490 * gst-libs/gst/audio/gstringbuffer.h:
11491 Add flushing mode to the ringbuffer so that it in all cases does
11492 not try to handle more audio. This makes sure it does not try to
11493 block anymore when flushing and fixes a livelock.
11495 2005-10-29 Tim-Philipp Müller <tim at centricular dot net>
11497 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
11498 (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
11499 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
11500 Explicitly check for -1 values before doing a conversion
11501 and always map them to -1. (#315545)
11503 2005-10-28 Thomas Vander Stichele <thomas at apestaart dot org>
11505 * gst/playback/gstplaybin.c: (gen_video_element):
11506 first try autovideosink, then xvimagesink, then error out
11508 add translatable file
11523 update translations
11525 2005-10-27 Philippe Khalaf <burger at speedy dot org>
11527 * gst-libs/gst/rtp/gstbasedepayload.c:
11528 * gst-libs/gst/rtp/gstbasedepayload.h:
11531 2005-10-27 Tim-Philipp Müller <tim at centricular dot net>
11533 * gst/playback/.cvsignore:
11534 * gst/playback/decodetest.c:
11535 * gst/playback/test3.c:
11536 Port these two tests as well.
11538 2005-10-27 Wim Taymans <wim@fluendo.com>
11540 * ext/theora/theoradec.c: (theora_dec_src_query),
11541 (theora_dec_sink_event):
11542 * ext/theora/theoraenc.c: (theora_enc_sink_event),
11543 (theora_enc_change_state):
11544 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
11545 (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
11546 Take proper locks when handling events.
11548 2005-10-27 Wim Taymans <wim@fluendo.com>
11550 * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
11551 (gst_adder_change_state):
11552 Fix timestamps and fix deadlock when stopping the collectpads.
11554 2005-10-27 Zeeshan Ali <zeenix@gmail.com>
11556 * gst-libs/gst/rtp/gstrtpbuffer.h:
11557 Declaring the payload types as strings too so that they can be used
11558 in the padtemplate inialization.
11560 2005-10-26 Andre Magalhaes <andrunko@gmail.com>
11562 reviewed by: Zeeshan Ali <zeenix@gmail.com>
11564 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11565 (gst_base_rtp_depayload_class_init):
11566 Fixes a small but nasty bug. The derived elements no longer segfaults
11569 2005-10-26 Michael Smith <msmith@fluendo.com>
11571 * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
11572 When clearing an audioconvert context, set tmpbufsize to zero, so
11573 we'll allocate it again later if required.
11574 This fixes audioconvert re-negotiating formats, which previously
11575 segfaulted with a NULL destination buffer.
11577 2005-10-26 Zeeshan Ali <zeenix@gmail.com>
11579 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11580 (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
11581 (gst_base_rtp_depayload_set_gst_timestamp),
11582 (gst_base_rtp_depayload_queue_release):
11583 Fixed a smalll memleak.
11585 2005-10-26 Zeeshan Ali <zeenix@gmail.com>
11586 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11587 (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
11588 (gst_base_rtp_depayload_finalize),
11589 (gst_base_rtp_depayload_setcaps),
11590 (gst_base_rtp_depayload_add_to_queue),
11591 (gst_base_rtp_depayload_push),
11592 (gst_base_rtp_depayload_set_gst_timestamp),
11593 (gst_base_rtp_depayload_queue_release),
11594 (gst_base_rtp_depayload_thread),
11595 (gst_base_rtp_depayload_change_state):
11596 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11597 Changed the C++ comments to C comments
11599 2005-10-26 Tim-Philipp Müller <tim at centricular dot net>
11601 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
11602 * gst/tcp/gsttcpclientsrc.h:
11603 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
11604 * gst/tcp/gsttcpserversrc.h:
11605 Remove unused 'curoffset' structure member.
11607 2005-10-25 Zeeshan Ali <zeenix@gmail.com>
11609 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11610 (gst_base_rtp_depayload_base_init),
11611 (gst_base_rtp_depayload_finalize):
11612 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11613 * gst-libs/gst/rtp/gstbasertppayload.h:
11614 The pad-template on the sinkpad should be set by the derived classes.
11615 Also added some useful macros.
11617 2005-10-24 Wim Taymans <wim@fluendo.com>
11619 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
11620 Correctly flush decoder samples even if we could not
11621 copy them to an output buffer. Fixes #319618.
11623 2005-10-24 Julien MOUTTE <julien@moutte.net>
11625 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
11626 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
11627 the caps against our xcontext caps.
11629 2005-10-24 Wim Taymans <wim@fluendo.com>
11631 * gst-libs/gst/audio/gstbaseaudiosink.c:
11632 (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
11634 Use sync property from baseclass to disable sync.
11636 2005-10-24 Wim Taymans <wim@fluendo.com>
11638 * gst-libs/gst/audio/gstbaseaudiosink.c:
11639 (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
11640 Buffers with no timestamps get aligned with previous buffers or
11641 on underrun, played ASAP.
11643 2005-10-24 Julien MOUTTE <julien@moutte.net>
11645 * gst-libs/gst/video/video.h:
11646 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11647 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
11648 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
11649 here comes my change on caps for framerate and geometry range.
11650 We are now accepting 1 to MAXINT for width and height, and from
11651 0.0 to MAXDOUBLE for framerate. That allows duration less png frames
11652 to be blended correctly in videomixer.
11654 2005-10-24 Thomas Vander Stichele <thomas at apestaart dot org>
11659 === release 0.9.4 ===
11661 2005-10-23 Thomas Vander Stichele <thomas at apestaart dot org>
11666 releasing 0.9.4, "Velociraptor"
11668 2005-10-23 Thomas Vander Stichele <thomas at apestaart dot org>
11670 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
11674 2005-10-21 Wim Taymans <wim@fluendo.com>
11676 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11677 (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
11678 (pad_blocked), (close_pad_link), (new_pad):
11679 Don't try to remove elements twice.
11681 2005-10-21 Wim Taymans <wim@fluendo.com>
11683 * ext/theora/theoradec.c: (theora_dec_src_query),
11684 (theora_dec_sink_event):
11685 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11686 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
11687 (vorbis_handle_data_packet):
11688 * ext/vorbis/vorbisdec.h:
11691 * gst-libs/gst/audio/gstbaseaudiosink.c:
11692 (gst_base_audio_sink_render):
11693 Don't try to sync on buffers without a timestamp.
11695 2005-10-21 Wim Taymans <wim@fluendo.com>
11697 * ext/theora/theoradec.c: (theora_dec_src_query),
11698 (theora_dec_sink_event):
11699 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11700 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
11701 (vorbis_handle_data_packet):
11702 * ext/vorbis/vorbisdec.h:
11705 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
11707 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
11708 (gst_vorbisenc_src_query):
11709 Implement position and duration queries.
11711 * gst/playback/test3.c: (update_scale), (main):
11712 Fix for async state changes and print nicer output.
11714 2005-10-20 Wim Taymans <wim@fluendo.com>
11716 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11717 (dump_element_stats), (main):
11718 * gst/playback/test6.c: (main):
11721 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
11723 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
11724 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
11725 Don't use functions for position queries when handling
11728 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
11730 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11731 (vorbis_handle_data_packet), (vorbis_dec_chain),
11732 (vorbis_dec_change_state):
11733 * ext/vorbis/vorbisdec.h:
11734 Vorbis streams can be embedded in other container formats
11735 than ogg, container formats where the demuxer might set
11736 timestamps on encoded vorbis buffers instead of those silly
11737 granulepos thingies. In short: make vorbisdec handle
11738 timestamps on incoming buffers as well.
11740 2005-10-20 Wim Taymans <wim@fluendo.com>
11742 * gst/playback/gstplaybasebin.c: (group_destroy),
11743 (gst_play_base_bin_change_state):
11745 Handle case where playbasebin is now ASYNC because
11748 2005-10-19 Tim-Philipp Müller <tim at centricular dot net>
11750 * gst/audioconvert/Makefile.am:
11751 * gst/audioconvert/bufferframesconvert.c:
11752 * gst/audioconvert/plugin.c: (plugin_init):
11753 * gst/audioconvert/plugin.h:
11754 And bye bye buffer-frames-convert
11756 2005-10-19 Wim Taymans <wim@fluendo.com>
11758 * check/elements/audioconvert.c:
11759 * docs/libs/tmpl/gstaudio.sgml:
11760 * docs/libs/tmpl/gstcolorbalance.sgml:
11761 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11762 (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
11763 * ext/vorbis/vorbisenc.c: (raw_caps_factory):
11764 * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
11765 * gst-libs/gst/audio/audio.h:
11766 * gst/audioconvert/audioconvert.h:
11767 * gst/audioconvert/gstaudioconvert.c:
11768 (gst_audio_convert_parse_caps):
11769 * gst/volume/gstvolume.c:
11770 Bye bye buffer-frames.
11772 2005-10-19 Wim Taymans <wim@fluendo.com>
11774 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
11775 (query_positions_elems), (query_positions_pads), (update_scale),
11776 (do_seek), (set_update_scale), (message_received), (main):
11777 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
11778 (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
11779 (gst_ogg_demux_loop):
11780 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
11781 * ext/theora/theoradec.c: (theora_dec_src_query),
11782 (theora_dec_sink_event):
11783 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11784 (vorbis_dec_sink_event), (vorbis_handle_data_packet):
11785 * gst/adder/gstadder.c: (gst_adder_query):
11786 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
11787 * gst/playback/test3.c: (update_scale):
11788 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11789 (dump_element_stats), (main):
11790 * gst/playback/test6.c: (main):
11791 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
11794 2005-10-19 Tim-Philipp Müller <tim at centricular dot net>
11796 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
11797 (xml_check_first_element), (xml_type_find), (smil_type_find),
11799 Add typefinding for SMIL and for generic XML. Based on patch by
11800 Akos Maroy (#308663).
11802 2005-10-18 Wim Taymans <wim@fluendo.com>
11804 * gst/playback/Makefile.am:
11805 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11806 (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
11807 (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
11808 (try_to_link_1), (new_pad), (no_more_pads), (type_found),
11809 (gst_decode_bin_change_state):
11810 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
11811 (gst_play_bin_send_event_to_sink):
11812 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11813 (dump_element_stats), (main):
11814 * gst/playback/test6.c: (main):
11815 Make playbin async, it'll commit state to paused when all streams
11818 Added test6.c to show async behaviour.
11820 2005-10-18 Wim Taymans <wim@fluendo.com>
11822 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
11823 (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
11824 Fix for segment-start/stop API change.
11826 2005-10-18 Wim Taymans <wim@fluendo.com>
11828 * check/Makefile.am:
11829 * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
11831 Add future test for clock selection.
11833 2005-10-18 Wim Taymans <wim@fluendo.com>
11835 * ext/alsa/gstalsasink.c: (gst_alsasink_init),
11836 (gst_alsasink_close):
11837 Set handle to NULL.
11839 * gst-libs/gst/audio/gstringbuffer.c:
11840 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
11841 (gst_ring_buffer_acquire), (gst_ring_buffer_release),
11842 (gst_ring_buffer_start), (gst_ring_buffer_pause),
11843 (gst_ring_buffer_stop), (gst_ring_buffer_commit),
11844 (gst_ring_buffer_read):
11847 2005-10-17 Stefan Kost <ensonic@users.sf.net>
11849 * gst/audiotestsrc/Makefile.am:
11850 * gst/sine/Makefile.am:
11851 * gst/volume/Makefile.am:
11852 fix broken build of controllerized plugins
11854 2005-10-17 Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
11856 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
11858 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
11859 (gst_riff_create_video_template_caps):
11860 Add support for Indeo-3 (IV32).
11862 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
11867 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
11869 * gst-libs/gst/video/video.c: (gst_video_get_size):
11870 * gst/audiotestsrc/gstaudiotestsrc.c:
11873 2005-10-17 Andy Wingo <wingo@pobox.com>
11875 * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
11876 with the collectpads change.
11877 (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
11879 * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
11881 * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
11883 * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
11884 alloc_buffer flow return to callers.
11885 (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
11886 change. Fix some memleaks in theoraenc.
11888 * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
11889 in strange circumstance.
11891 2005-10-17 Julien MOUTTE <julien@moutte.net>
11893 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11894 (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
11895 from caps, let's use the caps...
11897 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
11900 put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
11902 2005-10-16 Thomas Vander Stichele <thomas at apestaart dot org>
11904 * gst-libs/gst/interfaces/Makefile.am:
11907 2005-10-16 Andy Wingo <wingo@pobox.com>
11909 * gst/playback/gstdecodebin.c
11910 (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
11912 (try_to_link_1): Increase kraziness level.
11914 2005-10-16 Thomas Vander Stichele <thomas at apestaart dot org>
11917 restructure like the core one
11918 * gst-libs/gst/audio/Makefile.am:
11919 * gst-libs/gst/interfaces/Makefile.am:
11920 * gst-libs/gst/net/Makefile.am:
11921 * gst-libs/gst/riff/Makefile.am:
11922 * gst-libs/gst/rtp/Makefile.am:
11923 * gst-libs/gst/tag/Makefile.am:
11924 * gst-libs/gst/video/Makefile.am:
11925 use correct linker flags, now the libs are properly versioned
11926 * check/elements/audioconvert.c: (verify_convert):
11927 * ext/alsa/gstalsaplugin.c:
11928 * ext/cdparanoia/gstcdparanoia.c:
11929 * ext/gnomevfs/gstgnomevfs.c:
11930 * ext/libvisual/visual.c:
11931 * ext/ogg/gstogg.c:
11932 * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
11933 * ext/theora/theora.c:
11934 * ext/vorbis/vorbis.c:
11935 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
11936 * gst-libs/gst/tag/gsttagediting.c:
11937 * gst-libs/gst/video/video.c:
11938 * gst/adder/gstadder.c:
11939 * gst/audioconvert/plugin.c:
11940 * gst/audiorate/gstaudiorate.c:
11941 * gst/audioresample/gstaudioresample.c:
11942 * gst/audioresample/resample_ref.c: (resample_scale_ref):
11943 * gst/audioscale/gstaudioscale.c:
11944 * gst/audioscale/resample.c:
11945 * gst/audiotestsrc/gstaudiotestsrc.c:
11946 * gst/ffmpegcolorspace/gstffmpeg.c:
11947 * gst/playback/gstdecodebin.c: (close_pad_link):
11948 * gst/playback/gstplaybin.c: (gen_video_element),
11949 (gen_audio_element):
11950 * gst/sine/gstsinesrc.c:
11951 * gst/subparse/gstsubparse.c:
11952 * gst/tags/gsttagediting.c:
11953 * gst/tcp/gsttcpplugin.c:
11954 * gst/typefind/gsttypefindfunctions.c:
11955 * gst/videorate/gstvideorate.c:
11956 * gst/videoscale/gstvideoscale.c:
11957 * gst/videotestsrc/gstvideotestsrc.c:
11958 * gst/volume/gstvolume.c:
11959 * sys/v4l/gstv4l.c:
11960 * sys/ximage/ximage.c:
11961 * sys/xvimage/xvimagesink.c:
11964 2005-10-13 Tim-Philipp Müller <tim at centricular dot net>
11966 * ext/vorbis/vorbisenc.c:
11967 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
11968 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
11969 (gst_tag_to_vorbis_comments):
11970 Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
11972 2005-10-13 Stefan Kost <ensonic@users.sf.net>
11974 * examples/stats/mp2ogg.c:
11975 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11978 2005-10-13 Michael Smith <msmith@fluendo.com>
11980 * ext/ogg/gstoggmux.c:
11981 Use magic glib macros to define constants as 64 bit, to ensure
11982 appropriate vararg passing.
11984 2005-10-13 Michael Smith <msmith@fluendo.com>
11986 * ext/ogg/gstoggmux.c:
11987 * gst/audioconvert/audioconvert.c: (float):
11988 Don't use LL suffix, as it's not portable, and neither of these
11989 uses required it anyway.
11991 2005-10-12 Stefan Kost <ensonic@users.sf.net>
11993 * examples/indexing/indexmpeg.c: (main):
11994 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
11995 (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
11996 (cdparanoia_convert), (cdparanoia_query):
11997 * ext/cdparanoia/gstcdparanoia.h:
11998 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
11999 (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
12000 (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
12001 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
12002 * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
12003 * gst/playback/gststreamselector.c: (gst_stream_selector_init):
12004 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
12005 (gst_multifdsink_render), (gst_multifdsink_start),
12006 (gst_multifdsink_stop):
12007 * gst/tcp/gstmultifdsink.h:
12008 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
12009 (gst_tcpclientsink_render), (gst_tcpclientsink_start),
12010 (gst_tcpclientsink_stop):
12011 * gst/tcp/gsttcpclientsink.h:
12012 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
12013 (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
12014 (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
12015 * gst/tcp/gsttcpclientsrc.h:
12016 * gst/tcp/gsttcpserversink.h:
12017 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
12018 (gst_tcpserversrc_create), (gst_tcpserversrc_start),
12019 (gst_tcpserversrc_stop):
12020 * gst/tcp/gsttcpserversrc.h:
12021 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
12022 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
12023 * sys/ximage/ximagesink.c: (gst_ximagesink_init):
12024 renamed GST_FLAGS macros to GST_OBJECT_FLAGS
12025 moved bitshift from macro to enum definition
12027 2005-10-12 Wim Taymans <wim@fluendo.com>
12029 * examples/seeking/Makefile.am:
12032 2005-10-12 Wim Taymans <wim@fluendo.com>
12034 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12035 (gst_ring_buffer_read), (gst_ring_buffer_clear):
12036 Don't assert on normal stuff.
12038 * gst/playback/gstplaybin.c: (do_playbin_seek):
12041 2005-10-12 Wim Taymans <wim@fluendo.com>
12043 * check/pipelines/simple_launch_lines.c: (run_pipeline):
12044 * examples/seeking/Makefile.am:
12045 * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
12046 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
12047 (do_seek), (set_update_scale), (message_received), (main):
12048 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12049 (gst_ring_buffer_read), (gst_ring_buffer_clear):
12050 Update for _get_state() API change.
12052 2005-10-11 Wim Taymans <wim@fluendo.com>
12054 * gst-libs/gst/audio/gstbaseaudiosink.c:
12055 (gst_base_audio_sink_render):
12056 * gst-libs/gst/audio/gstbaseaudiosrc.c:
12057 (gst_base_audio_src_create):
12058 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12059 (gst_ring_buffer_read):
12061 Commit and read from ringbuffer in samples rather than bytes.
12063 2005-10-11 Wim Taymans <wim@fluendo.com>
12065 * gst-libs/gst/audio/gstbaseaudiosink.c:
12066 (gst_base_audio_sink_render):
12067 Respect segment rate and accum when scheduling samples.
12069 2005-10-11 Julien MOUTTE <julien@moutte.net>
12071 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
12072 (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
12073 EOS correctly, that needs more work.
12075 2005-10-11 Wim Taymans <wim@fluendo.com>
12077 * check/generic/states.c: (GST_START_TEST):
12078 remove old property.
12080 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
12081 (gst_ogg_demux_perform_seek):
12082 * ext/theora/theoradec.c: (theora_dec_sink_event):
12083 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
12084 (vorbis_handle_data_packet):
12085 * gst-libs/gst/rtp/gstbasertpdepayload.c:
12086 (gst_base_rtp_depayload_set_gst_timestamp):
12087 * gst/videorate/gstvideorate.c: (gst_videorate_event):
12088 Update for newsegment API change.
12090 2005-10-11 Michael Smith <msmith@fluendo.com>
12092 * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
12093 (do_playbin_seek), (gst_play_bin_send_event):
12094 Override send_event differently, so that we can takes bits of
12095 functionality from GstPipeline (special handling for seeks,
12096 including pausing/resuming, and resetting stream time) and still get
12097 the appropriate behaviour of only forwarding event to a single sink,
12098 rather than all of them.
12099 Unfortunately requires a lot of code duplication, but the
12100 alternatives are equally ugly in the end.
12102 2005-10-11 Thomas Vander Stichele <thomas at apestaart dot org>
12104 * check/elements/audioconvert.c: (setup_audioconvert),
12105 (cleanup_audioconvert), (get_int_caps), (verify_convert),
12106 (GST_START_TEST), (audioconvert_suite):
12107 clean up tests a little, fix some leaks.
12109 2005-10-10 Wim Taymans <wim@fluendo.com>
12111 * ext/alsa/gstalsasink.c:
12112 Also allow unsigned int.
12114 * gst-libs/gst/audio/gstbaseaudiosrc.c:
12115 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
12118 2005-10-10 Wim Taymans <wim@fluendo.com>
12120 * check/pipelines/simple_launch_lines.c: (run_pipeline):
12121 Small update, use API as stated in design docs.
12123 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
12124 (update_scale), (do_seek), (seek_cb), (set_update_scale),
12125 (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
12126 (message_received), (main):
12127 Updated seek example for GOption. Some usability improvements.
12129 2005-10-10 Wim Taymans <wim@fluendo.com>
12131 * gst/audioconvert/audioconvert.h:
12132 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
12133 (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
12134 Alloc temp storage somewhere else where we can do it more
12137 2005-10-10 Wim Taymans <wim@fluendo.com>
12139 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
12140 (gst_tcpserversrc_start):
12141 Don't block in accept while doing the state change, move
12142 to poll and make cancellable.
12144 2005-10-09 Philippe Khalaf <burger@speedy.org>
12146 * gst-libs/gst/rtp/rtpbasedepayload.c:
12147 Set timestamp and add queue delay to timestamp
12148 * gst-libs/gst/rtp/rtpbuffer.h:
12149 Set correct payload type for h263
12151 2005-10-09 Stefan Kost <ensonic@users.sf.net>
12153 * gst/audiotestsrc/gstaudiotestsrc.c:
12154 (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
12155 (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
12156 (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
12157 (gst_audiotestsrc_create_triangle),
12158 (gst_audiotestsrc_create_silence),
12159 (gst_audiotestsrc_create_white_noise),
12160 (gst_audiotestsrc_init_pink_noise),
12161 (gst_audiotestsrc_generate_pink_noise_value),
12162 (gst_audiotestsrc_create_pink_noise),
12163 (gst_audiotestsrc_change_wave):
12164 * gst/audiotestsrc/gstaudiotestsrc.h:
12165 fixed typo, added pink noise
12167 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
12169 * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
12171 Add wavpack and spc typefind functions from 0.8 branch.
12173 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
12175 * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
12176 (ar_type_find), (msdos_type_find), (plugin_init):
12177 Add typefind functions for tar archives, ar archives,
12178 RAR archives, and msdos-executables (dlls, exe, etc.).
12179 Some of those would be wrongly identified as mpeg
12180 streams of some sort before (#315550).
12182 2005-10-09 Stefan Kost <ensonic@users.sf.net>
12185 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12186 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12187 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
12188 * gst/audiotestsrc/Makefile.am:
12189 * gst/audiotestsrc/gstaudiotestsrc.c:
12190 (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
12191 (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
12192 (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
12193 (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
12194 (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
12195 (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
12196 (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
12197 (gst_audiotestsrc_create_silence),
12198 (gst_audiotestsrc_create_white_noise),
12199 (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
12200 (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
12201 (gst_audiotestsrc_start), (plugin_init):
12202 * gst/audiotestsrc/gstaudiotestsrc.h:
12203 add new plugin and element
12204 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
12207 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
12209 * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
12210 (gst_adder_init), (gst_adder_request_new_pad),
12211 (gst_adder_change_state):
12212 Add query function to source pad, so adder reports the correct
12213 time/sample position when queried (#315457); fix state change
12214 function; use GST_DEBUG_FUNCPTR() for pad functions.
12216 2005-10-08 Thomas Vander Stichele <thomas at apestaart dot org>
12218 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
12219 Fix leaks in typefind registration
12220 Clean up the gratuitous commenting and whitespacing a little
12222 2005-10-08 Wim Taymans <wim@fluendo.com>
12224 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
12225 Only actually wait for the thread to be stopped if it's
12228 2005-10-08 Wim Taymans <wim@fluendo.com>
12230 * gst-libs/gst/audio/gstbaseaudiosink.c:
12231 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
12232 If we receive EOS we can start playback of what we had.
12234 2005-10-08 Wim Taymans <wim@fluendo.com>
12236 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
12237 (gst_multifdsink_finalize), (multifdsink_hash_remove),
12238 (gst_multifdsink_stop):
12239 Fix crasher when going to NULL multiple times.
12241 2005-10-06 Wim Taymans <wim@fluendo.com>
12243 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
12244 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
12245 * gst-libs/gst/audio/gstbaseaudiosrc.h:
12246 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
12247 patch from Edgard Lima <edgard.lima@indt.org.br>
12248 Fixed gstbaseaudiosrc adding ring buffer sync to it.
12250 2005-10-06 Wim Taymans <wim@fluendo.com>
12252 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
12253 Report the FLOW_RETURN as string in the error message.
12255 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
12256 Don't assert when clearing an unnegotiated buffer.
12258 2005-10-04 Michael Smith <msmith@fluendo.com>
12260 * gst/playback/gstplaybasebin.c: (group_destroy),
12261 (gen_preroll_element), (remove_groups), (setup_source):
12262 * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
12263 (setup_sinks), (gst_play_bin_send_event),
12264 (gst_play_bin_change_state):
12265 Set state to NULL before removing from bin. Fix refcounting.
12267 2005-10-04 Michael Smith <msmith@fluendo.com>
12269 * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
12270 Correct refcounting in send_event() function. Previously was wrong
12271 if the first sink was unable to handle the event.
12273 2005-10-03 Thomas Vander Stichele <thomas at apestaart dot org>
12276 back to development
12278 === release 0.9.3 ===
12280 2005-10-03 Thomas Vander Stichele <thomas at apestaart dot org>
12283 Releasing 0.9.3, "De Facto"
12285 2005-10-03 Andy Wingo <wingo@pobox.com>
12287 * gst/playback/gstdecodebin.c (try_to_link_1)
12288 (remove_element_chain): set element to NULL before removing it.
12290 2005-10-02 Johan Dahlin <johan@gnome.org>
12292 * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols):
12293 protect gst_gnomevfs_get_supported_uris by a mutex, to make it
12296 2005-10-02 Andy Wingo <wingo@pobox.com>
12298 * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear)
12299 (gst_ring_buffer_prepare_read):
12300 * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
12303 2005-09-29 Wim Taymans <wim@fluendo.com>
12305 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
12306 * ext/theora/theoradec.c: (theora_handle_data_packet):
12307 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
12308 Propagate error codes from alloc_buffer too.
12310 2005-09-29 Wim Taymans <wim@fluendo.com>
12312 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
12315 * gst/playback/Makefile.am:
12316 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
12317 (dump_element_stats), (main):
12318 Added example stream introspection code.
12320 2005-09-28 Stefan Kost <ensonic@users.sf.net>
12322 * gst/adder/gstadder.c: (gst_adder_collected):
12323 fix adder for float elements
12325 2005-09-28 Wim Taymans <wim@fluendo.com>
12327 * gst-libs/gst/audio/gstbaseaudiosink.c:
12328 (gst_base_audio_sink_class_init),
12329 (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
12330 * gst-libs/gst/audio/gstbaseaudiosrc.c:
12331 (gst_base_audio_src_class_init),
12332 (gst_base_audio_src_provide_clock):
12333 get_clock -> provide_clock
12335 2005-09-28 Andy Wingo <wingo@pobox.com>
12337 * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
12340 * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
12343 * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
12344 Actually add the pad template.
12345 (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
12347 * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
12350 * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
12351 from fdsrc. Get caps in create() instead of start() so it can be
12352 interrupted. Interruption somewhat untested.
12354 * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
12355 Proper EOS handling.
12357 2005-09-27 Andy Wingo <wingo@pobox.com>
12359 * gst/tcp/gsttcpclientsrc.c: Cleaned up.
12361 * gst/tcp/gsttcpserversrc.c: Cleaned up.
12363 * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
12365 * gst/tcp/gsttcp.h:
12366 * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
12367 out of tcpclientsrc.c. Cancellable.
12368 (gst_tcp_socket_read): Made private, cancellable, with better
12369 diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
12370 (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
12371 whole buffer, and better diagnostics.
12372 (gst_tcp_gdp_read_caps): Same.
12374 * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
12376 2005-09-26 Andy Wingo <wingo@pobox.com>
12378 * gst/sine/gstsinesrc.h:
12379 * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
12380 change the 'sync' property to 'is-live' and implement it halfway,
12381 update for controller api change.
12383 * gst/volume/gstvolume.c (volume_transform_ip): Update for
12384 controller api change.
12386 2005-09-24 Wim Taymans <wim@fluendo.com>
12388 * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
12389 * gst-libs/gst/audio/gstaudiosink.c:
12390 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
12391 (gst_audioringbuffer_stop):
12392 * gst-libs/gst/audio/gstbaseaudiosink.c:
12393 (gst_base_audio_sink_event), (gst_base_audio_sink_render),
12394 (gst_base_audio_sink_change_state):
12395 * gst-libs/gst/audio/gstbaseaudiosink.h:
12396 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
12397 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
12398 (gst_ring_buffer_commit), (gst_ring_buffer_read):
12399 * gst-libs/gst/audio/gstringbuffer.h:
12400 Fix sync again. Moved sample alignment to basesink.
12402 2005-09-23 Thomas Vander Stichele <thomas at apestaart dot org>
12404 * docs/plugins/Makefile.am:
12405 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12406 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12407 * gst/volume/gstvolume.c:
12409 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
12410 * gst-libs/gst/audio/audio.h:
12411 add conversion macros for frames <-> clocktime
12413 2005-09-23 David Schleef <ds@schleef.org>
12415 * gst/audioresample/Makefile.am:
12416 * gst/audioresample/debug.h:
12417 * gst/audioresample/gstaudioresample.c:
12418 * gst/audioresample/resample.c: Convert to using gst debugging
12420 2005-09-22 Wim Taymans <wim@fluendo.com>
12422 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
12423 (gst_play_bin_send_event):
12424 Only seek on one sink, the first one that succeeds.
12426 2005-09-22 Michael Smith <msmith@fluendo.com>
12428 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
12429 (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
12430 Don't flush encoder state unless we have an initialised encoder.
12431 Clear out encoder state on PAUSED_TO_READY.
12433 2005-09-22 Wim Taymans <wim@fluendo.com>
12435 * gst-libs/gst/rtp/gstbasertppayload.c:
12436 (gst_basertppayload_class_init), (gst_basertppayload_init),
12437 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12438 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12439 (gst_basertppayload_is_filled), (gst_basertppayload_push),
12440 (gst_basertppayload_set_property),
12441 (gst_basertppayload_get_property),
12442 (gst_basertppayload_change_state):
12443 * gst-libs/gst/rtp/gstbasertppayload.h:
12444 Added max-ptime to control amount of data in the rtp packets.
12446 2005-09-21 Andy Wingo <wingo@pobox.com>
12448 * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
12451 * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
12452 can be called multiple times, dogs.
12454 2005-09-21 Wim Taymans <wim@fluendo.com>
12456 * gst-libs/gst/rtp/gstbasertppayload.c:
12457 (gst_basertppayload_class_init), (gst_basertppayload_init),
12458 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12459 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12460 (gst_basertppayload_push), (gst_basertppayload_get_property),
12461 (gst_basertppayload_change_state):
12464 2005-09-21 Stefan Kost <ensonic@users.sf.net>
12466 * docs/libs/compiling.sgml:
12469 2005-09-20 Wim Taymans <wim@fluendo.com>
12471 * gst-libs/gst/rtp/gstbasertppayload.c:
12472 (gst_basertppayload_class_init), (gst_basertppayload_init),
12473 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12474 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12475 (gst_basertppayload_push), (gst_basertppayload_set_property),
12476 (gst_basertppayload_get_property),
12477 (gst_basertppayload_change_state):
12478 * gst-libs/gst/rtp/gstbasertppayload.h:
12479 Added property to configure sequence number offsets.
12481 2005-09-20 Wim Taymans <wim@fluendo.com>
12483 * gst-libs/gst/rtp/gstbasertppayload.c:
12484 (gst_basertppayload_class_init), (gst_basertppayload_init),
12485 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12486 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12487 (gst_basertppayload_push), (gst_basertppayload_set_property),
12488 (gst_basertppayload_get_property),
12489 (gst_basertppayload_change_state):
12490 * gst-libs/gst/rtp/gstbasertppayload.h:
12491 Make timestamp offset configurable.
12493 2005-09-20 Thomas Vander Stichele <thomas at apestaart dot org>
12495 * check/pipelines/simple_launch_lines.c: (run_pipeline):
12496 fix wrong pop/unref
12498 2005-09-19 Torsten Schoenfeld <kaffeetisch at gmx dot net>
12500 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
12502 * gst-libs/gst/interfaces/propertyprobe.c:
12503 (gst_property_probe_probe_property_name),
12504 (gst_property_probe_needs_probe_name),
12505 (gst_property_probe_get_values_name),
12506 (gst_property_probe_probe_and_get_values_name):
12507 Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
12508 G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
12510 2005-09-19 Thomas Vander Stichele <thomas at apestaart dot org>
12512 * check/Makefile.am:
12513 have some tests be disabled for valgrinding
12514 * check/elements/vorbisdec.c: (cleanup_vorbisdec),
12516 * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
12517 Fix A Leak. Chain To Parent Finalize.
12519 2005-09-19 Wim Taymans <wim@fluendo.com>
12521 * examples/seeking/seek.c: (make_wav_pipeline), (main):
12522 Fixed wav pipeline.
12524 2005-09-19 Wim Taymans <wim@fluendo.com>
12526 * gst-libs/gst/rtp/gstbasertppayload.c:
12527 (gst_basertppayload_class_init), (gst_basertppayload_init),
12528 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12529 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12530 (gst_basertppayload_push), (gst_basertppayload_get_property),
12531 (gst_basertppayload_change_state):
12532 Posting ERROR and WARNING messages is good.
12534 2005-09-19 Wim Taymans <wim@fluendo.com>
12536 * gst-libs/gst/rtp/gstbasertpdepayload.c:
12537 (gst_base_rtp_depayload_add_to_queue),
12538 (gst_base_rtp_depayload_push),
12539 (gst_base_rtp_depayload_set_gst_timestamp),
12540 (gst_base_rtp_depayload_queue_release):
12541 This one was not supposed to go in.
12543 2005-09-19 Wim Taymans <wim@fluendo.com>
12545 * check/pipelines/simple_launch_lines.c: (run_pipeline):
12548 * gst-libs/gst/rtp/gstbasertpdepayload.c:
12549 (gst_base_rtp_depayload_chain),
12550 (gst_base_rtp_depayload_add_to_queue),
12551 (gst_base_rtp_depayload_push),
12552 (gst_base_rtp_depayload_set_gst_timestamp),
12553 (gst_base_rtp_depayload_queue_release):
12556 * gst-libs/gst/rtp/gstbasertppayload.c:
12557 (gst_basertppayload_class_init), (gst_basertppayload_init),
12558 (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
12559 (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
12560 (gst_basertppayload_get_property),
12561 (gst_basertppayload_change_state):
12562 Added debugging category.
12564 2005-09-18 David Schleef <ds@schleef.org>
12566 * gst/playback/gstdecodebin.c: free plugin list correctly
12567 * gst/playback/gstplaybin.c: emit warning if autovideosink
12568 and autoaudiosink can't be found (instead of segfaulting)
12570 2005-09-17 Thomas Vander Stichele <thomas at apestaart dot org>
12572 * check/elements/audioconvert.c: (GST_START_TEST):
12573 try out 24 bit conversion
12575 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12577 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
12578 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
12579 (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
12580 * ext/vorbis/vorbisenc.h:
12581 Fix EOS handling. Still needs a fix in the ogg muxer to
12582 mark the last page as eos.
12584 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12586 * common/gtk-doc-plugins.mak:
12587 * docs/plugins/Makefile.am:
12588 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12589 * gst/ffmpegcolorspace/Makefile.am:
12590 * gst/ffmpegcolorspace/avcodec.h:
12591 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12592 * gst/tcp/gstmultifdsink.c:
12593 fix up ffmpegcolorspace docs; extract header
12595 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12597 * common/gtk-doc-plugins.mak:
12598 * docs/plugins/Makefile.am:
12599 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12600 * ext/theora/Makefile.am:
12601 * ext/theora/gsttheoraenc.h:
12602 * ext/theora/theoraenc.c:
12603 * ext/vorbis/vorbisenc.c:
12604 pick up signals and args for vorbis; add some docs for vorbis
12606 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12608 * common/gstdoc-scangobj:
12609 * common/gtk-doc-plugins.mak:
12610 * docs/libs/Makefile.am:
12611 * docs/plugins/gst-plugins-base-plugins.args:
12612 * docs/plugins/gst-plugins-base-plugins.hierarchy:
12613 * docs/plugins/gst-plugins-base-plugins.interfaces:
12614 * docs/plugins/gst-plugins-base-plugins.prerequisites:
12615 * docs/plugins/gst-plugins-base-plugins.signals:
12616 only scanobj stuff from our source module. Not sure yet
12617 if that's correct, given the hierarchy stuff :)
12619 2005-09-15 Wim Taymans <wim@fluendo.com>
12621 * gst/audioconvert/gstaudioconvert.c:
12622 And enable 24 bits mode as well..
12624 2005-09-15 Wim Taymans <wim@fluendo.com>
12626 * gst-libs/gst/rtp/Makefile.am:
12627 * gst-libs/gst/rtp/gstbasertppayload.c:
12628 (gst_basertppayload_get_type), (gst_basertppayload_base_init),
12629 (gst_basertppayload_class_init), (gst_basertppayload_init),
12630 (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
12631 (gst_basertppayload_chain), (gst_basertppayload_set_options),
12632 (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
12633 (gst_basertppayload_set_property),
12634 (gst_basertppayload_get_property),
12635 (gst_basertppayload_change_state):
12636 * gst-libs/gst/rtp/gstbasertppayload.h:
12637 Added rtp payloader base class.
12639 2005-09-15 Andy Wingo <wingo@pobox.com>
12641 * configure.ac (plugindir): Remove the EOL matcher from the
12642 regexp, as it causes me problems. Libtool? Make? Who knows?
12644 2005-09-14 David Schleef <ds@schleef.org>
12646 * check/generic/states.c:
12647 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
12648 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
12649 Fixes for changes in registry API.
12651 * configure.ac: Only export gst_plugins_desc. Add -no-undefined
12652 to GST_PLUGIN_LDFLAGS.
12653 * ext/libvisual/visual.c: Make the library shut up.
12654 * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
12655 * gst-libs/gst/audio/gstaudiofilter.c: same
12657 2005-09-14 Thomas Vander Stichele <thomas at apestaart dot org>
12659 * docs/plugins/Makefile.am:
12660 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12661 * docs/plugins/inspect/plugin-libvisual.xml:
12662 * docs/plugins/tmpl/element-tcpserversink.sgml:
12663 * ext/theora/theoraenc.c:
12664 add libvisual plugin and theoraenc element to docs
12666 2005-09-14 Thomas Vander Stichele <thomas at apestaart dot org>
12668 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12669 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12670 * ext/theora/theoraenc.c:
12673 2005-09-13 Tim-Philipp Müller <tim at centricular dot net>
12675 * gst/audioconvert/Makefile.am:
12676 Audioconvert derives from GstBaseTransform and should
12677 link to the library with our base elements to avoid
12678 unresolved symbols. Makes things work with MinGW (#316160)
12680 * gst/playback/test4.c: (main):
12681 Fix MinGW build problem and use g_usleep() instead of
12684 2005-09-12 Wim Taymans <wim@fluendo.com>
12686 * gst/audioconvert/audioconvert.c: (float),
12687 (audio_convert_prepare_context), (audio_convert_convert):
12688 * gst/audioconvert/audioconvert.h:
12689 Cleanups, speedups, simplifications, added back support
12692 2005-09-11 Thomas Vander Stichele <thomas at apestaart dot org>
12694 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12695 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12696 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12697 * docs/plugins/tmpl/element-tcpserversink.sgml:
12698 * gst/ffmpegcolorspace/gstffmpeg.c:
12699 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12700 * gst/videotestsrc/gstvideotestsrc.c:
12701 * gst/volume/gstvolume.c:
12702 add more elements to the docs
12704 2005-09-09 Jan Schmidt <thaytan@mad.scientist.com>
12706 * check/Makefile.am:
12707 * check/pipelines/simple_launch_lines.c: (setup_pipeline),
12708 (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
12709 Add extra tests for basetransform based components.
12710 Comment out the test_element_negotiation test until we decide
12711 if it's testing correct behaviour.
12712 * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
12713 (gst_visual_chain), (gst_visual_change_state):
12714 Slightly more correct but still bogus timestamping.
12715 Fix state change function.
12716 * gst/audioconvert/gstaudioconvert.c:
12717 (gst_audio_convert_class_init):
12718 * gst/audioresample/gstaudioresample.c:
12719 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12720 (gst_ffmpegcsp_class_init):
12721 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
12722 (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
12723 (gst_videoscale_prepare_image):
12724 * gst/volume/gstvolume.c: (gst_volume_class_init),
12725 (volume_transform_ip):
12726 Basetransform updates. Enable passthrough modes.
12727 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12728 (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
12729 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
12730 Negotiation fix that allows the window to return to the original
12731 size and renegotiate passthrough upstream. Extra debug output.
12733 2005-09-09 Thomas Vander Stichele <thomas at apestaart dot org>
12735 * gst/sine/gstsinesrc.c:
12736 * gst/volume/gstvolume.c:
12737 fix up header include
12739 2005-09-09 Stefan Kost <ensonic@users.sf.net>
12741 * gst-libs/gst/audio/gstbaseaudiosink.c:
12742 (gst_base_audio_sink_render):
12743 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
12744 * gst/volume/gstvolume.c: (gst_volume_class_init),
12745 (volume_transform):
12746 fixing lost sync, some more debugging
12748 2005-09-08 Jan Schmidt <thaytan@mad.scientist.com>
12750 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12751 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
12752 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
12753 (gst_xvimagesink_check_xshm_calls):
12754 Fix compilation when XShm is not available.
12756 2005-09-07 Jan Schmidt <thaytan@mad.scientist.com>
12758 * ext/libvisual/visual.c: (gst_visual_dispose),
12759 (gst_visual_getcaps), (gst_visual_src_setcaps),
12760 (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
12761 (gst_visual_change_state):
12762 Finish fixing up libvisual plugin so that it runs.
12764 2005-09-07 Stefan Kost <ensonic@users.sf.net>
12766 * ext/vorbis/vorbisenc.c:
12767 * gst-libs/gst/tag/gstvorbistag.c:
12768 gsttaginterface.h -> gsttagsetter.h
12770 2005-09-07 Stefan Kost <ensonic@users.sf.net>
12772 * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
12773 added another test that failes for me (test is not active by default)
12775 2005-09-07 Zaheer Abbas Merali <zaheerabbas at merali dot org>
12778 v4l2 is no longer in gst-plugins-base
12780 2005-09-07 Jan Schmidt <thaytan@mad.scientist.com>
12783 In the output at the end, don't show the first plugin on the same
12784 line as "Core plug-ins, always built:".
12785 Indent the output as for other plugin categories
12786 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
12787 #define that can be used to not use peer buffer_alloc functions for
12789 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12790 (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
12791 (gst_ximagesink_show_frame):
12792 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
12793 (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
12794 (gst_xvimagesink_show_frame):
12795 Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
12796 fails gracefully instead of XError aborting or deadlocking.
12798 2005-09-07 Stefan Kost <ensonic@users.sf.net>
12800 * ext/libvisual/Makefile.am:
12801 link against gst-base-libs
12803 2005-09-06 David Schleef <ds@schleef.org>
12805 * configure.ac: Enable libvisual plugin.
12806 * ext/libvisual/Makefile.am:
12807 * ext/libvisual/visual.c: Fixes to make it compile.
12809 === release 0.9.2 ===
12811 2005-09-06 Thomas Vander Stichele <thomas at apestaart dot org>
12816 * docs/random/ChangeLog-0.8:
12817 releasing 0.9.2, "Spoon"
12819 2005-09-05 Michael Smith <msmith@fluendo.com>
12821 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
12822 libvorbis accepts quality as low as -0.1, not just 0.0. So accept
12823 that in the vorbisenc element.
12825 2005-09-04 Thomas Vander Stichele <thomas at apestaart dot org>
12827 * common/gtk-doc-plugins.mak:
12828 * docs/plugins/Makefile.am:
12830 * gst/audioresample/resample.c:
12831 fix wrong docstring
12833 2005-09-04 Thomas Vander Stichele <thomas at apestaart dot org>
12835 * common/gst-xmlinspect.py:
12836 * common/gtk-doc-plugins.mak:
12837 only inspect plugins for this given package
12838 require gst-python 0.9
12840 2005-09-03 Thomas Vander Stichele <thomas at apestaart dot org>
12844 * common/gst-xmlinspect.py:
12846 * docs/Makefile.am:
12847 * docs/plugins/inspect/plugin-alsa.xml:
12848 * docs/plugins/inspect/plugin-audioresample.xml:
12849 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12850 * docs/plugins/inspect/plugin-ogg.xml:
12851 * docs/plugins/tmpl/element-gnomevfssink.sgml:
12852 * docs/plugins/tmpl/element-multifdsink.sgml:
12853 * docs/plugins/tmpl/element-tcpserversink.sgml:
12854 * docs/plugins/tmpl/element-vorbisenc.sgml:
12855 * gst-plugins-base.spec.in:
12856 various doc-related updates
12858 2005-08-31 Wim Taymans <wim@fluendo.com>
12860 * gst-libs/gst/audio/gstbaseaudiosink.c:
12861 (gst_base_audio_sink_render):
12862 Resync if the buffer timestamps drift more than a 10th
12865 2005-08-31 Tim-Philipp Müller <tim at centricular dot net>
12867 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
12868 (gst_v4lsrc_get_property):
12869 The 'timestamp-offset' property is registered as an int64, so
12870 let's use g_value_{set|get}_int64() in our setter and getter
12871 functions (makes it work and fixes warnings with gst-inspect).
12873 2005-08-30 Wim Taymans <wim@fluendo.com>
12875 * check/elements/audioconvert.c: (setup_audioconvert):
12876 * check/elements/audioresample.c: (setup_audioresample):
12877 * check/elements/volume.c: (setup_volume):
12880 2005-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
12882 * common/gtk-doc-plugins.mak:
12883 * common/plugins.xsl:
12884 * docs/plugins/Makefile.am:
12885 make module a param
12887 2005-08-30 Stefan Kost <ensonic@users.sf.net>
12889 * examples/seeking/seek.c: (make_mp3_pipeline),
12890 (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
12891 (play_cb), (pause_cb), (stop_cb):
12894 2005-08-30 Stefan Kost <ensonic@users.sf.net>
12896 * gst/volume/gstvolume.c: (gst_volume_class_init),
12897 (volume_transform):
12898 do not update controlled params, if buffer has no timestamp
12900 2005-08-29 Stefan Kost <ensonic@users.sf.net>
12903 * gst/sine/Makefile.am:
12904 * gst/volume/Makefile.am:
12905 controllerized elements also need to link against controller-libs ;)
12907 2005-08-29 Stefan Kost <ensonic@users.sf.net>
12909 * docs/libs/tmpl/gstcolorbalance.sgml:
12910 * docs/libs/tmpl/gstgconf.sgml:
12911 * docs/libs/tmpl/gstmixer.sgml:
12912 * docs/libs/tmpl/gstringbuffer.sgml:
12913 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
12914 (gst_sinesrc_create):
12915 * gst/volume/gstvolume.c: (gst_volume_class_init),
12916 (volume_transform):
12917 controllerized two audio plugins
12919 2005-08-29 Andy Wingo <wingo@pobox.com>
12921 * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push)
12922 (vorbis_handle_data_packet): Fix some int overflow errors.
12924 * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
12926 (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
12928 (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
12929 if it's valid. Fixed streaming-mode playback.
12931 * check/elements/volume.c (cleanup_volume): Fix for running
12934 * check/elements/audioconvert.c: Convert from native endian, not
12937 2005-08-29 Michael Smith <msmith@fluendo.com>
12939 * ext/ogg/Makefile.am:
12940 * ext/ogg/gstogg.c: (plugin_init):
12941 * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
12942 (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
12943 (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
12944 (gst_ogg_parse_class_init), (gst_ogg_parse_init),
12945 (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
12946 (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
12947 (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
12948 (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
12949 Add an ogg parser element.
12951 2005-08-28 Andy Wingo <wingo@pobox.com>
12953 * Updates for two-arg init from GST_BOILERPLATE_FULL.
12955 2005-08-26 Wim Taymans <wim@fluendo.com>
12957 * gst/audioconvert/audioconvert.c: (if), (float),
12958 (audio_convert_get_func_index), (check_default),
12959 (audio_convert_clean_fmt), (audio_convert_prepare_context),
12960 (audio_convert_clean_context), (audio_convert_get_sizes),
12961 (audio_convert_convert):
12964 2005-08-26 Wim Taymans <wim@fluendo.com>
12966 * gst/audioconvert/audioconvert.c: (if), (float),
12967 (audio_convert_get_func_index), (check_default),
12968 (audio_convert_clean_fmt), (audio_convert_prepare_context),
12969 (audio_convert_clean_context), (audio_convert_get_sizes),
12970 (audio_convert_convert):
12971 More elegant and working temp buffer selection algo.
12973 2005-08-26 Wim Taymans <wim@fluendo.com>
12975 * gst/audioconvert/audioconvert.c: (if), (float),
12976 (audio_convert_get_func_index), (check_default),
12977 (audio_convert_clean_fmt), (audio_convert_prepare_context),
12978 (audio_convert_clean_context), (audio_convert_get_sizes),
12979 (get_temp_buffer), (audio_convert_convert):
12980 Use realloc else we lose our original data.
12982 2005-08-26 Thomas Vander Stichele <thomas at apestaart dot org>
12984 * gst/audioresample/gstaudioresample.c:
12985 use base class' newsegment to properly timestamp
12987 2005-08-26 Wim Taymans <wim@fluendo.com>
12989 * gst/audioconvert/audioconvert.c: (if), (float),
12990 (audio_convert_get_func_index), (check_default),
12991 (audio_convert_clean_fmt), (audio_convert_prepare_context),
12992 (audio_convert_clean_context), (audio_convert_get_sizes),
12993 (get_temp_buffer), (audio_convert_convert):
12994 * gst/audioconvert/gstaudioconvert.c:
12995 (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
12996 (gst_audio_convert_transform_caps),
12997 (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
12998 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
12999 Oops, allocate enough space to perform the channel mix.
13001 2005-08-26 Wim Taymans <wim@fluendo.com>
13003 * gst/audioconvert/Makefile.am:
13004 * gst/audioconvert/audioconvert.c: (if), (float),
13005 (audio_convert_get_func_index), (check_default),
13006 (audio_convert_clean_fmt), (audio_convert_prepare_context),
13007 (audio_convert_clean_context), (audio_convert_get_sizes),
13008 (get_temp_buffer), (audio_convert_convert):
13009 * gst/audioconvert/audioconvert.h:
13010 * gst/audioconvert/gstaudioconvert.c:
13011 (gst_audio_convert_class_init), (gst_audio_convert_init),
13012 (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
13013 (gst_audio_convert_get_unit_size),
13014 (gst_audio_convert_transform_caps),
13015 (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
13016 (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
13017 * gst/audioconvert/gstaudioconvert.h:
13018 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
13019 (gst_channel_mix_fill_identical),
13020 (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
13021 (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
13022 (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
13023 (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
13024 (gst_channel_mix_mix):
13025 * gst/audioconvert/gstchannelmix.h:
13026 Cleanups, librarify a bit, optimize, better negotiation and more.
13028 2005-08-26 Jan Schmidt <thaytan@mad.scientist.com>
13030 * ext/ogg/gstoggdemux.c: (ogg_find_peek):
13031 Another from MikeS:
13032 During typefinding, don't support negative offsets
13033 (offsets from the end of the stream) in our typefind->peek() function
13034 - nothing embedded in ogg ever needs them. However, we need to recognise
13035 those requests and reject them, otherwise we return invalid pointers.
13037 2005-08-26 Jan Schmidt <thaytan@mad.scientist.com>
13039 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
13040 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
13041 (vorbisdec_finalize), (vorbis_handle_type_packet):
13042 Big shout-out to MikeS for fixing this giant memory leak.
13045 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
13047 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
13048 (audio_convert_get_unit_size):
13051 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
13053 * check/Makefile.am:
13054 * check/elements/audioconvert.c: (setup_audioconvert),
13055 (cleanup_audioconvert), (get_int_caps), (verify_convert),
13056 (GST_START_TEST), (audioconvert_suite), (main):
13057 add a test for audioconvert
13058 * gst/audioresample/gstaudioresample.c:
13059 * gst/audioresample/gstaudioresample.h:
13060 set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
13061 note that for buffers of 1/3 sec this means DURATION(c) is
13062 one nanosecond more than for a and b
13064 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
13066 * check/Makefile.am:
13067 * check/elements/audioresample.c: (setup_audioresample),
13068 (cleanup_audioresample), (fail_unless_perfect_stream),
13069 (test_perfect_stream_instance), (GST_START_TEST),
13070 add a check for audioresample
13071 (audioresample_suite), (main):
13072 * check/elements/volume.c: (GST_START_TEST):
13073 remove unused method
13074 * gst/audioresample/gstaudioresample.c:
13075 set correct buffer parameters since we're changing them
13076 * gst/audioresample/resample_ref.c: (resample_scale_ref):
13079 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
13081 * gst/audioresample/debug.c:
13082 * gst/audioresample/gstaudioresample.c:
13083 add room for extra overlap samples when asked to transform size
13084 protect against possible mem corruption and check for discrepancies
13085 between written size and outbuffer's size so we can warn for
13087 * gst/audioresample/resample.c: (resample_init),
13088 (resample_get_output_size_for_input), (resample_get_output_size),
13089 (resample_set_n_channels), (resample_set_format):
13090 set debug level based on RESAMPLE_DEBUG env var
13091 make sure that get_output_size* returns a whole number of
13093 set sample_size each time either channel or format is set
13094 * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
13095 * gst/audioresample/resample_functable.c:
13096 (resample_scale_functable):
13097 * gst/audioresample/resample_ref.c: (resample_scale_ref):
13098 remove r->sample_size, it's done in resample.c now
13099 add some debugging to the ref implementation
13100 make sure we only give back bytes that are wholes of the sample
13103 2005-08-25 Jan Schmidt <thaytan@mad.scientist.com>
13104 * gst/playback/gstplaybasebin.c: (fill_buffer):
13105 Revert unpopular change for GST_MESSAGE_SRC to GObject.
13107 2005-08-25 Stefan Kost <ensonic@users.sf.net>
13109 * gst/volume/gstvolume.c:
13110 made set_caps function static
13112 2005-08-24 Wim Taymans <wim@fluendo.com>
13114 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
13115 (gst_vorbisenc_change_state):
13116 Stop leaking taglists.
13118 2005-08-24 Wim Taymans <wim@fluendo.com>
13120 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
13121 (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
13122 (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
13123 (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
13124 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13125 (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
13126 Parse seeking events better.
13128 Generate correct newsegment events, fixes seeking in live oggs.
13130 * ext/theora/theoradec.c: (theora_dec_src_query),
13131 (theora_dec_src_event), (theora_dec_src_getcaps),
13132 (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
13133 Use newsegment values to report correct play time.
13135 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
13136 (vorbis_dec_src_event), (vorbis_dec_sink_event):
13137 * ext/vorbis/vorbisdec.h:
13138 Parse and use newsegment values to report correct play time.
13140 * gst-libs/gst/audio/gstbaseaudiosink.c:
13141 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
13142 Clear ringbuffer on flush.
13143 Use newsegment values to calculate playback time.
13145 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
13146 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
13147 Basesink does newsegment calculations for us now.
13149 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
13151 * check/Makefile.am:
13153 add core's plugins to the mix so that playbin works
13154 * check/generic/states.c: (GST_START_TEST):
13155 set a 0 timeout on pipelines, so they don't force the next
13157 * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
13158 (gst_play_base_bin_change_state):
13159 remove the crappy error handling and do GST error handling
13161 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
13163 * check/Makefile.am:
13164 * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
13165 add same test as to core, it bitches out on playbin atm.
13167 2005-08-24 Wim Taymans <wim@fluendo.com>
13172 2005-08-24 Wim Taymans <wim@fluendo.com>
13174 * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
13175 (gst_videoscale_prepare_size), (parse_caps),
13176 (gst_videoscale_set_caps), (gst_videoscale_get_size),
13177 (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
13178 (gst_videoscale_transform):
13179 * gst/videoscale/gstvideoscale.h:
13180 Refactor, make use of BaseTranform really well.
13182 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
13185 compile audioresample
13186 * gst/audioresample/Makefile.am:
13187 * gst/audioresample/buffer.c:
13188 * gst/audioresample/functable.c:
13189 * gst/audioresample/gstaudioresample.c:
13190 * gst/audioresample/gstaudioresample.h:
13191 * gst/audioresample/resample.c:
13192 (resample_get_output_size_for_input):
13193 * gst/audioresample/resample.h:
13194 * gst/audioresample/resample_chunk.c:
13195 * gst/audioresample/resample_functable.c:
13196 * gst/audioresample/resample_ref.c:
13197 port to use basetransform; doesn't work in all cases yet
13199 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
13201 * gst/audioconvert/gstaudioconvert.c:
13202 (gst_audio_convert_class_init), (gst_audio_convert_init),
13203 (audio_convert_get_unit_size), (audio_convert_transform_caps),
13204 (audio_convert_fixate_caps), (audio_convert_set_caps),
13205 (audio_convert_transform),
13206 (gst_audio_convert_buffer_to_default_format),
13207 (gst_audio_convert_buffer_from_default_format),
13208 (gst_audio_convert_channels):
13209 * gst/audioconvert/gstchannelmix.c:
13210 * gst/audioconvert/gstchannelmix.h:
13211 port to basetransform
13212 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13213 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
13214 (gst_ffmpegcsp_get_unit_size):
13215 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
13216 (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
13217 fix for basetransform changes
13219 2005-08-24 Jan Schmidt <thaytan@mad.scientist.com>
13221 * check/Makefile.am:
13222 Add CHECK_CFLAGS and LDFLAGS
13224 * gst/playback/gstplaybasebin.c: (fill_buffer):
13225 GST_MESSAGE_SRC became a GObject
13227 2005-08-24 Wim Taymans <wim@fluendo.com>
13229 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
13230 (gst_ring_buffer_clear_all):
13231 * gst-libs/gst/audio/gstringbuffer.h:
13232 Added function to clear the ringbuffer.
13234 2005-08-24 Andy Wingo <wingo@pobox.com>
13236 * sys/v4l/gstv4lelement.c (gst_v4lelement_start)
13237 (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
13238 of _open and _close.
13240 * sys/v4l/gstv4lxoverlay.h:
13241 * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
13242 an Xv connection here, instead of all the time. Make Xv only be
13243 loaded if you axe for it. Kindof a workaround for buggy behaviour
13244 of Xv when using remote xservers (XvQueryExtension would block).
13245 (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
13246 replace the _open and _close public API. Only start the xv
13247 connection if necessary.
13248 (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
13250 2005-08-23 David Schleef <ds@schleef.org>
13252 * gst/audioresample/Makefile.am: Leet audioresampling code
13253 * gst/audioresample/buffer.c:
13254 * gst/audioresample/buffer.h:
13255 * gst/audioresample/debug.c:
13256 * gst/audioresample/debug.h:
13257 * gst/audioresample/functable.c:
13258 * gst/audioresample/functable.h:
13259 * gst/audioresample/gstaudioresample.c:
13260 * gst/audioresample/gstaudioresample.h:
13261 * gst/audioresample/resample.c:
13262 * gst/audioresample/resample.h:
13263 * gst/audioresample/resample_chunk.c:
13264 * gst/audioresample/resample_functable.c:
13265 * gst/audioresample/resample_ref.c:
13267 2005-08-23 Wim Taymans <wim@fluendo.com>
13269 * examples/seeking/seek.c: (make_vorbis_pipeline),
13270 (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
13271 Small seek updates.
13273 2005-08-23 Andy Wingo <wingo@pobox.com>
13275 * gst-libs/gst/audio/gstbaseaudiosrc.c
13276 (gst_base_audio_src_fixate): Only fixate endianness if it is
13277 present in the caps.
13279 2005-08-22 Andy Wingo <wingo@pobox.com>
13281 * ext/alsa/gstalsasink.c (gst_alsasink_get_property):
13282 * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
13283 device-name property.
13285 * gst-libs/gst/audio/gstaudiosrc.h:
13286 * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
13287 close_device in the ring buffer, like gstaudiosink.
13289 * ext/alsa/gstalsamixer.h:
13290 * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
13291 macro to implement the interface without much code. Cleanups.
13293 * ext/alsa/gstalsasrc.h:
13294 * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
13297 * ext/alsa/Makefile.am: Add new files.
13298 * ext/alsa/gstalsamixerelement.c:
13299 * ext/alsa/gstalsamixerelement.c: Split element code out from
13300 mixer code so that alsasrc can be a mixer too.
13302 2005-08-21 Thomas Vander Stichele <thomas at apestaart dot org>
13304 * check/elements/volume.c: (setup_volume), (cleanup_volume),
13306 * check/elements/vorbisdec.c: (setup_vorbisdec),
13307 (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
13308 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
13309 (vorbis_handle_identification_packet),
13310 (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
13311 (vorbis_handle_header_packet), (vorbis_dec_push),
13312 (vorbis_dec_chain):
13313 use the setup/teardown methods to save code. save code is good.
13315 2005-08-20 Thomas Vander Stichele <thomas at apestaart dot org>
13317 * check/Makefile.am:
13318 add ext dir for plugins
13319 add vorbisdec test conditionally
13320 * check/elements/volume.c: (setup_volume), (cleanup_volume),
13321 (GST_START_TEST), (volume_suite):
13322 add a test with wrong caps
13323 * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
13324 (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
13325 add a vorbisdec test
13326 * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
13327 (gst_ogg_demux_chain), (gst_ogg_demux_loop):
13328 clean up debug output
13329 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
13330 yay, fix a segfault/security issue in vorbisdec
13331 gst-launch fakesrc ! vorbisdec wasn't happy
13332 * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
13333 (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
13334 (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
13335 (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
13336 (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
13337 (gst_vorbisenc_set_metadata), (get_constraints_string),
13338 (update_start_message), (gst_vorbisenc_setup),
13339 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
13340 (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
13341 (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
13342 (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
13343 * ext/vorbis/vorbisenc.h:
13345 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13346 (gst_ffmpegcsp_transform):
13347 have the kow come home
13348 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
13350 * gst/volume/gstvolume.c: (volume_set_caps):
13353 2005-08-20 Thomas Vander Stichele <thomas at apestaart dot org>
13356 * check/.cvsignore:
13357 * check/Makefile.am:
13358 * check/elements/.cvsignore:
13359 * check/elements/volume.c: (chain_func), (event_func),
13360 (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
13363 add unit test structure for gst-plugins-base
13364 add a test for volume
13365 * gst/volume/gstvolume.c: (gst_volume_list_tracks),
13366 (gst_volume_set_volume), (gst_volume_get_volume),
13367 (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
13368 (volume_funcfind), (volume_process_float), (volume_process_int16),
13369 (volume_set_caps), (volume_transform), (volume_update_mute),
13370 (volume_update_volume), (volume_set_property),
13371 (volume_get_property):
13372 document a little; use basetransform vmethod _set_caps
13374 2005-08-19 Andy Wingo <wingo@pobox.com>
13376 * ext/alsa/gstalsamixertrack.h:
13377 * ext/alsa/gstalsamixertrack.c:
13378 * ext/alsa/gstalsamixeroptions.h:
13379 * ext/alsa/gstalsamixeroptions.c:
13380 * ext/alsa/gstalsamixer.h:
13381 * ext/alsa/gstalsamixer.c: Port to 0.9.
13383 * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
13384 Remove gstalsa.c and alsaclock. No more cruft here.
13386 2005-08-18 Wim Taymans <wim@fluendo.com>
13388 * gst-libs/gst/rtp/gstbasertpdepayload.c:
13389 (gst_base_rtp_depayload_chain),
13390 (gst_base_rtp_depayload_add_to_queue),
13391 (gst_base_rtp_depayload_push),
13392 (gst_base_rtp_depayload_queue_release):
13393 * gst-libs/gst/rtp/gstbasertpdepayload.h:
13394 Fix for RTPBuffer changes.
13396 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
13397 (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
13398 (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
13399 (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
13400 (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
13401 (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
13402 (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
13403 (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
13404 (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
13405 (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
13406 (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
13407 (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
13408 (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
13409 (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
13410 (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
13411 (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
13412 (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
13413 (gst_rtpbuffer_get_payload):
13414 * gst-libs/gst/rtp/gstrtpbuffer.h:
13415 Don't subclass GstBuffer but add methods and helper functions
13416 to construct and manipulate RTP packets in regular GstBuffers.
13418 2005-08-18 Stefan Kost <ensonic@users.sf.net>
13420 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
13421 moved statement below switch
13422 * gst/volume/gstvolume.c: (gst_volume_class_init):
13425 2005-08-16 Wim Taymans <wim@fluendo.com>
13427 * gst-libs/gst/audio/gstbaseaudiosrc.c:
13428 (gst_base_audio_src_change_state):
13429 Open and close device in READY<->NULL state change.
13431 2005-08-16 Andy Wingo <wingo@pobox.com>
13433 * examples/seeking/Makefile.am: Don't compile non-compiling
13434 compiled objects with the compiler.
13436 * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
13439 2005-08-12 Philippe Khalaf <burger@speedy.org>
13440 * gst-libs/gst/rtp/gstbasertpdepayload.c:
13441 * gst-libs/gst/rtp/gstbasertpdepayload.h:
13442 Made a thread to release the queue.
13443 Removed timestamp conversion for now.
13445 2005-08-10 Philippe Khalaf <burger@speedy.org>
13446 * gst-libs/gst/rtp/gstbasertpdepayload.c:
13447 * gst-libs/gst/rtp/gstbasertpdepayload.h:
13448 Added rtp timestamp -> gst timestamp conversion.
13449 Fixed several problems with queue.
13451 2005-08-09 Tim-Philipp Müller <tim at centricular dot net>
13453 * gst-libs/gst/audio/gstaudioclock.h:
13454 * gst-libs/gst/audio/gstaudiofilter.h:
13455 * gst-libs/gst/audio/gstaudiosink.h:
13456 * gst-libs/gst/audio/gstaudiosrc.h:
13457 * gst-libs/gst/audio/gstbaseaudiosink.h:
13458 * gst-libs/gst/audio/gstbaseaudiosrc.h:
13459 * gst-libs/gst/audio/gstringbuffer.h:
13460 * gst-libs/gst/net/gstnetbuffer.h:
13461 * gst-libs/gst/rtp/gstbasertpdepayload.h:
13462 * gst-libs/gst/rtp/gstrtpbuffer.h:
13463 Add padding (you will need to rebuild gst-plugins-base,
13464 gst-plugins and all applications afterwards!)
13466 2005-08-09 Tim-Philipp Müller <tim at centricular dot net>
13468 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
13469 (gst_riff_parse_chunk):
13470 Fix bug in debug message and add some more debug messages.
13472 2005-08-08 Edward Hervey <edward@fluendo.com>
13474 * gst-libs/gst/riff/riff-media.c:
13475 backported updates since branch
13477 2005-08-08 Andy Wingo <wingo@pobox.com>
13479 * gst-libs/gst/audio/gstbaseaudiosink.c
13480 (gst_base_audio_sink_change_state): Open the device in NULL->READY
13481 like good elements should. Close on READY->NULL too.
13483 * gst-libs/gst/audio/gstaudiosink.c
13484 (gst_audioringbuffer_open_device,
13485 (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
13486 (gst_audioringbuffer_release): Updates for new ring buffer API,
13487 hook into the new audio sink api.
13489 * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
13490 (GstAudioSinkClass.close): Just open and close the device -- no
13491 resource allocation or configuration.
13492 (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
13493 vmethods, handle device setup and resource allocation.
13495 * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
13496 (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
13499 * gst-libs/gst/audio/gstringbuffer.h
13500 (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
13503 * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
13504 (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
13505 New API functions. The device should be opened before acquiring
13506 and closed after releasing.
13508 2005-08-08 Tim-Philipp Müller <tim at centricular dot net>
13510 * gst-libs/gst/interfaces/mixer.h:
13511 Reset padding to GST_PADDING.
13513 2005-08-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13515 * gst/playback/gstplaybin.c: (remove_sinks):
13516 Remove visualization from parent explicitely; works around some
13517 apparent refcount issue that I haven't tracked down yet.
13519 2005-08-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13521 * ext/alsa/gstalsasink.c: (set_hwparams):
13522 Assign debug category, add negotiation debug msgs.
13524 2005-08-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13526 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
13527 Fix error code for file-not-found to NOT_FOUND.
13529 2005-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
13531 * common/gtk-doc-plugins.mak:
13532 * docs/plugins/Makefile.am:
13533 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13534 * docs/plugins/gst-plugins-base-plugins-sections.txt:
13535 renamed to actual element names, so much nicer to look at
13536 * docs/plugins/tmpl/gstmultifdsink.sgml:
13538 * docs/plugins/tmpl/multifdsink.sgml:
13539 * docs/plugins/tmpl/tcpserversink.sgml:
13541 * ext/alsa/gstalsa.c:
13542 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
13543 * ext/ogg/gstoggmux.c:
13544 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
13545 * gst/playback/gstdecodebin.c:
13546 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
13547 * gst/tcp/gsttcpserversink.c:
13548 various fixes and documentation additions
13550 2005-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
13552 * common/Makefile.am:
13553 * common/gstdoc-scangobj:
13554 * common/gtk-doc-plugins.mak:
13555 * common/gtk-doc.mak:
13556 add a custom scangobj that uses the registry
13557 add a custom gtk-doc-plugins.mak that uses it
13558 some doc build fixes
13560 * docs/Makefile.am:
13561 * docs/plugins/Makefile.am:
13562 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13563 * docs/plugins/gst-plugins-base-plugins-sections.txt:
13564 * docs/plugins/gst-plugins-base-plugins.types:
13565 * docs/plugins/tmpl/gstmultifdsink.sgml:
13566 add docs for one element, multifdsink
13567 * gst/adder/gstadder.h:
13568 * gst/volume/gstvolume.h:
13569 don't privatize enum
13570 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
13571 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
13572 (gst_sync_method_get_type), (gst_client_status_get_type),
13573 (gst_multifdsink_class_init),
13574 (gst_multifdsink_client_queue_buffer),
13575 (gst_multifdsink_handle_client_write):
13576 * gst/tcp/gstmultifdsink.h:
13577 * gst/tcp/gsttcp.h:
13578 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
13579 (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
13580 (gst_tcpclientsink_render):
13581 * gst/tcp/gsttcpclientsink.h:
13582 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
13583 (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
13584 (gst_tcpclientsrc_start):
13585 * gst/tcp/gsttcpclientsrc.h:
13586 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
13587 (gst_tcpserversrc_init), (gst_tcpserversrc_create):
13588 * gst/tcp/gsttcpserversrc.h:
13589 * gst/typefind/gsttypefindfunctions.c:
13590 remove superfluous Type stuff
13592 2005-08-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13594 * gst/playback/gstplaybin.c: (gen_video_element):
13597 2005-08-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13599 * gst-libs/gst/gconf/gconf.c:
13600 * gst-libs/gst/gconf/gconf.h:
13601 Fix some Andy Problem [tm].
13603 2005-08-04 Andy Wingo <wingo@pobox.com>
13605 * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
13606 * gst/ffmpegcolorspace/gstffmpegcolorspace.c
13607 (gst_ffmpegcsp_get_size): Adapt to API changes.
13609 * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
13610 Implement an in-place do-nothing transform.
13612 2005-08-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13614 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
13615 (gst_ximagesink_renegotiate_size):
13616 Do not set new window sizes yet if we prepare a new buffer size
13617 for upstream renegotiation (software scaling) at some point in the
13618 future, because this new size waqs not actually accepted yet. Once
13619 accepted, renegotiation later on will set the new sizes just fine.
13620 Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
13621 embedding testcase.
13623 2005-08-03 Andy Wingo <wingo@pobox.com>
13625 * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
13626 (gst_ximagesink_buffer_alloc):
13627 Protect the height, width, and desired_caps with the pool_lock.
13628 Fixes videotestsrc ! queue ! ximagesink.
13630 2005-08-02 Edward Hervey <edward@fluendo.com>
13632 * gst/volume/gstvolume.c:
13633 include left from controller cleanup
13635 2005-08-02 Jan Schmidt <thaytan@mad.scientist.com>
13636 * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
13637 Stop collectpads before calling the parent state
13638 change function on PAUSED->READY.
13640 2005-08-01 Jan Schmidt <thaytan@mad.scientist.com>
13642 When testing for X libs, use the X CFlags
13643 * gst/adder/gstadder.c: (gst_adder_change_state):
13644 Stop the collectpads before calling parent state change function
13645 on PAUSED->READY, otherwise we deadlock deactivating pads.
13647 2005-08-01 Stefan Kost <ensonic@users.sf.net>
13650 * docs/libs/tmpl/gstcolorbalance.sgml:
13651 * docs/libs/tmpl/gstmixer.sgml:
13652 * examples/Makefile.am:
13653 * gst/sine/Makefile.am:
13654 * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
13655 (gst_sinesrc_set_property), (plugin_init):
13656 * gst/sine/gstsinesrc.h:
13657 * gst/volume/Makefile.am:
13658 * gst/volume/gstvolume.c: (gst_volume_set_volume),
13659 (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
13660 (volume_process_float), (volume_process_int16),
13661 (volume_set_property), (plugin_init):
13662 * gst/volume/gstvolume.h:
13663 deactivate and remove dparams (libgstcontrol)
13665 2005-07-29 Wim Taymans <wim@fluendo.com>
13667 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
13668 Convert me to BaseTransform!! help..
13670 2005-07-29 Andy Wingo <wingo@pobox.com>
13672 * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
13675 * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
13676 support of both endiannesses.
13678 2005-07-28 Tim-Philipp Müller <tim at centricular dot net>
13680 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
13681 Fix confusing debug message (s/event/query/)
13683 2005-07-28 Tim-Philipp Müller <tim at centricular dot net>
13685 * gst/videotestsrc/videotestsrc.h:
13686 Use "_stdint.h" instead of <stdint.h>
13688 2005-07-27 Wim Taymans <wim@fluendo.com>
13690 * ext/vorbis/Makefile.am:
13691 Revert wrong commit.
13693 2005-07-27 Wim Taymans <wim@fluendo.com>
13695 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
13696 More compilation fixen.
13698 2005-07-27 Wim Taymans <wim@fluendo.com>
13700 * gst-libs/gst/audio/gstbaseaudiosink.c:
13701 (gst_base_audio_sink_event), (gst_base_audio_sink_render),
13702 (gst_base_audio_sink_create_ringbuffer),
13703 (gst_base_audio_sink_change_state):
13706 2005-07-27 Wim Taymans <wim@fluendo.com>
13708 * examples/seeking/seek.c: (setup_dynamic_link),
13709 (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
13710 (query_positions_elems), (query_positions_pads), (do_seek):
13711 Update seek example.
13713 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
13714 (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
13715 (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
13716 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
13717 (gst_ogg_demux_handle_event),
13718 (gst_ogg_demux_deactivate_current_chain),
13719 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
13720 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13721 (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
13722 (gst_ogg_demux_loop):
13723 * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
13724 * ext/theora/theoradec.c: (theora_dec_src_event),
13725 (theora_dec_src_getcaps), (theora_dec_sink_event),
13726 (theora_dec_push), (theora_dec_chain):
13727 * ext/vorbis/Makefile.am:
13728 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
13729 (vorbis_dec_sink_event), (vorbis_dec_push),
13730 (vorbis_handle_data_packet):
13731 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
13732 (gst_vorbisenc_chain):
13733 * gst/playback/gststreaminfo.c: (cb_probe):
13734 * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
13735 * gst/videorate/gstvideorate.c: (gst_videorate_event):
13736 * gst/videoscale/gstvideoscale.c:
13737 (gst_videoscale_handle_src_event):
13738 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
13739 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
13740 (gst_ximagesink_navigation_send_event):
13741 * sys/xvimage/xvimagesink.c:
13742 (gst_xvimagesink_navigation_send_event):
13743 Various event updates and cleanups
13745 2005-07-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13747 * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
13748 Fix segfault for I420/YV12.
13750 2005-07-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13752 * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
13755 2005-07-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13757 * gst/playback/gstplaybin.c: (gen_video_element),
13758 (gen_audio_element):
13759 Switch to auto*sink elements as default sinks; add volume element
13760 so that volume control in totem works.
13762 2005-07-21 Wim Taymans <wim@fluendo.com>
13764 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
13765 * gst/playback/gstplaybin.c: (setup_sinks),
13766 (gst_play_bin_change_state):
13767 Refcount fix and more comments.
13769 2005-07-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
13771 * sys/ximage/Makefile.am:
13772 * sys/ximage/ximage.c: (plugin_init):
13773 * sys/ximage/ximagesink.c:
13774 Prepare for adding ximagesrc, rename of plugin to ximage etc.
13777 2005-07-21 Wim Taymans <wim@fluendo.com>
13779 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
13780 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
13781 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
13782 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13783 (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
13784 (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
13785 (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
13786 (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
13787 (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
13788 Generate correct disconts for live chained oggs.
13790 * gst-libs/gst/audio/gstbaseaudiosink.c:
13791 (gst_base_audio_sink_render),
13792 (gst_base_audio_sink_create_ringbuffer),
13793 (gst_base_audio_sink_change_state):
13794 Handle discont math correctly.
13796 * gst/playback/gstplaybin.c: (add_sink):
13797 Some small debug cleanup.
13799 2005-07-21 Wim Taymans <wim@fluendo.com>
13801 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
13802 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
13803 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
13804 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13805 (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
13806 (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
13807 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
13808 (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
13809 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13810 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
13811 (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
13812 (gst_ogg_demux_change_state), (gst_ogg_print):
13813 Reorganize code to send the right disconts when in streaming
13816 2005-07-20 Andy Wingo <wingo@pobox.com>
13818 * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
13819 fix (?), fixes a seggie mcfalterson (#310894).
13821 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13823 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
13824 (gst_ogg_mux_set_header_on_caps):
13825 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
13826 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
13827 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
13828 * gst-libs/gst/audio/multichannel.c:
13829 (gst_audio_set_channel_positions),
13830 (gst_audio_set_structure_channel_positions_list):
13831 * gst/playback/gstdecodebin.c: (dynamic_create):
13832 * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
13833 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
13834 Fixes for API changes in core.
13836 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13838 * gst/playback/gstplaybasebin.c: (fill_buffer):
13839 Use _new_custom() so we can set custom message types for buffering
13842 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13845 * gst-libs/gst/Makefile.am:
13846 * gst-libs/gst/gconf/.cvsignore:
13847 * gst-libs/gst/gconf/Makefile.am:
13848 * gst-libs/gst/gconf/test-gconf.c:
13849 * pkgconfig/Makefile.am:
13850 * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
13851 * pkgconfig/gstreamer-gconf.pc.in:
13852 Remove gconf stuff, use gconf elements instead from now on.
13854 2005-07-20 Wim Taymans <wim@fluendo.com>
13856 * gst-libs/gst/audio/TODO:
13857 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
13858 (gst_audio_clock_get_internal_time):
13859 * gst-libs/gst/audio/gstaudioclock.h:
13860 * gst-libs/gst/audio/gstbaseaudiosink.c:
13861 (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
13862 (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
13863 (gst_base_audio_sink_render),
13864 (gst_base_audio_sink_create_ringbuffer),
13865 (gst_base_audio_sink_change_state):
13866 Make sure the audio clock always returns an increasing value.
13868 2005-07-19 Andy Wingo <wingo@pobox.com>
13870 * gst/videotestsrc/: Cleanups.
13872 2005-07-19 Wim Taymans <wim@fluendo.com>
13874 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
13877 2005-07-19 Wim Taymans <wim@fluendo.com>
13879 * examples/seeking/seek.c: (make_dv_pipeline),
13880 (make_vorbis_theora_pipeline), (query_rates),
13881 (query_positions_elems), (query_positions_pads), (do_seek):
13882 Make correct DV pipeline.
13884 2005-07-18 Andy Wingo <wingo@pobox.com>
13886 * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
13887 default. Also because it's the only thing that really works. (This
13888 is used in the GConf elements).
13889 Use AS_LIBTOOL_TAGS.
13891 2005-07-18 Wim Taymans <wim@fluendo.com>
13893 * gst/playback/gstdecodebin.c: (remove_element_chain):
13894 * gst/playback/gstplaybin.c: (add_sink):
13895 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
13896 (gst_stream_info_set_mute):
13897 * gst/playback/gststreamselector.c:
13898 (gst_stream_selector_get_linked_pad),
13899 (gst_stream_selector_getcaps), (gst_stream_selector_chain):
13900 More leak and compile fixes.
13902 2005-07-18 Wim Taymans <wim@fluendo.com>
13904 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
13905 (query_rates), (query_positions_elems), (query_positions_pads),
13906 (do_seek), (seek_cb), (stop_seek):
13907 Updated seek example.
13909 * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
13910 * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
13911 (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
13912 * gst/playback/gstplaybin.c: (add_sink):
13913 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
13914 (gst_stream_info_set_mute):
13915 Some refcount leak fixes.
13917 2005-07-16 Wim Taymans <wim@fluendo.com>
13919 * gst-libs/gst/audio/gstbaseaudiosink.c:
13920 (gst_base_audio_sink_render):
13921 Align samples even if we have roundoff errors in the
13922 timestamp conversion.
13924 2005-07-16 Wim Taymans <wim@fluendo.com>
13926 * docs/libs/tmpl/gstringbuffer.sgml:
13927 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
13928 (query_rates), (query_positions_elems), (query_positions_pads),
13929 (update_scale), (do_seek):
13930 Updated seek example.
13932 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
13933 (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
13934 (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
13935 (gst_ogg_demux_loop):
13936 Push out correct discont values.
13938 * ext/theora/theoradec.c: (theora_dec_src_convert),
13939 (theora_dec_sink_convert), (theora_dec_src_getcaps),
13940 (theora_dec_sink_event), (theora_handle_type_packet),
13941 (theora_handle_header_packet), (theora_dec_push),
13942 (theora_handle_data_packet), (theora_dec_chain),
13943 (theora_dec_change_state):
13944 Better timestamping.
13946 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
13947 (vorbis_dec_sink_event), (vorbis_dec_push),
13948 (vorbis_handle_data_packet), (vorbis_dec_chain):
13949 * ext/vorbis/vorbisdec.h:
13950 Better timestamping.
13952 * gst-libs/gst/audio/gstbaseaudiosink.c:
13953 (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
13954 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
13955 Handle syncing on timestamps instead of sample offsets. Make
13956 use of DISCONT values as described in design docs.
13958 * gst-libs/gst/audio/gstbaseaudiosrc.c:
13959 (gst_base_audio_src_get_time):
13960 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
13961 (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
13962 (gst_ring_buffer_read):
13963 * gst-libs/gst/audio/gstringbuffer.h:
13964 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
13965 (gst_ximagesink_show_frame):
13966 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
13967 Correcly convert buffer timestamp to stream time.
13969 2005-07-16 Wim Taymans <wim@fluendo.com>
13971 * gst/audioconvert/gstaudioconvert.c:
13972 (gst_audio_convert_get_buffer):
13973 Timestamp buffers correctly.
13975 * gst/playback/gstplaybin.c: (gen_video_element):
13976 Make internal fakesink silent.
13978 2005-07-15 Wim Taymans <wim@fluendo.com>
13980 * gst/ffmpegcolorspace/Makefile.am:
13981 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13982 (gst_ffmpegcsp_caps_remove_format_info),
13983 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
13984 (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
13985 (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
13986 (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
13987 Ported ffmpegcolorspace to basetransform.
13989 * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
13990 * gst/volume/gstvolume.c: (volume_transform):
13993 2005-07-14 Wim Taymans <wim@fluendo.com>
13995 * gst/videotestsrc/Makefile.am:
13996 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
13997 (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
13998 (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
13999 (gst_videotestsrc_init), (gst_videotestsrc_event),
14000 (gst_videotestsrc_create), (gst_videotestsrc_start),
14001 (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
14002 (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
14003 (gst_videotestsrc_get_property):
14004 * gst/videotestsrc/gstvideotestsrc.h:
14005 Make videotestsrc a pushsrc.
14007 2005-07-14 Wim Taymans <wim@fluendo.com>
14009 * gst/tcp/gstfdset.c: (gst_fdset_free):
14010 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
14011 (gst_multifdsink_add), (gst_multifdsink_remove),
14012 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
14013 (gst_multifdsink_remove_client_link),
14014 (gst_multifdsink_client_queue_data),
14015 (gst_multifdsink_client_queue_caps),
14016 (gst_multifdsink_client_queue_buffer),
14017 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
14018 (gst_multifdsink_stop):
14019 * gst/tcp/gstmultifdsink.h:
14022 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
14023 Also draw image when not from a pool.
14025 2005-07-14 Wim Taymans <wim@fluendo.com>
14027 * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
14028 (mute_stream), (silence_stream):
14029 Small debug additions.
14031 2005-07-14 Wim Taymans <wim@fluendo.com>
14033 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
14034 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
14035 (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
14036 Better error recovery, ignore unconnected pads and
14039 2005-07-14 Thomas Vander Stichele <thomas at apestaart dot org>
14041 * docs/libs/tmpl/gstaudio.sgml:
14042 * docs/libs/tmpl/gstcolorbalance.sgml:
14043 * docs/libs/tmpl/gstgconf.sgml:
14044 * docs/libs/tmpl/gstmixer.sgml:
14045 * docs/libs/tmpl/gstringbuffer.sgml:
14046 * docs/libs/tmpl/gsttuner.sgml:
14047 * gst-libs/gst/audio/gstbaseaudiosrc.c:
14048 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
14049 (gst_tcpclientsrc_class_init):
14050 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
14051 (gst_tcpserversrc_class_init):
14052 * sys/v4l/gstv4lelement.c:
14053 more autistic cleanliness in functions/names/defines
14055 2005-07-13 Thomas Vander Stichele <thomas at apestaart dot org>
14058 make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
14059 added manually to each Makefile.am so we are sure it goes
14060 *last* and doesn't add -L flags before linking in libs of our
14061 own, like, say, internal .la libs, that then accidentally pick
14062 up the installed copy.
14063 * docs/libs/Makefile.am:
14064 * ext/alsa/Makefile.am:
14065 * ext/cdparanoia/Makefile.am:
14066 * ext/gnomevfs/Makefile.am:
14067 * ext/libvisual/Makefile.am:
14068 * ext/ogg/Makefile.am:
14069 * ext/theora/Makefile.am:
14070 * ext/vorbis/Makefile.am:
14071 * gst-libs/gst/video/Makefile.am:
14072 * gst/adder/Makefile.am:
14073 * gst/audioconvert/Makefile.am:
14074 * gst/audiorate/Makefile.am:
14075 * gst/audioscale/Makefile.am:
14076 * gst/ffmpegcolorspace/Makefile.am:
14077 * gst/playback/Makefile.am:
14078 * gst/sine/Makefile.am:
14079 * gst/subparse/Makefile.am:
14080 * gst/tags/Makefile.am:
14081 * gst/tcp/Makefile.am:
14082 * gst/typefind/Makefile.am:
14083 * gst/videorate/Makefile.am:
14084 * gst/videoscale/Makefile.am:
14085 * gst/videotestsrc/Makefile.am:
14086 * gst/volume/Makefile.am:
14087 * sys/v4l/Makefile.am:
14088 * sys/ximage/Makefile.am:
14089 * sys/xvimage/Makefile.am:
14090 adapt properly to this change. This should make sure that
14091 plugins and libs properly link to the as-yet-uninstalled
14092 copies of stuff like libgstinterfaces and libgstvideo
14094 2005-07-13 Andy Wingo <wingo@pobox.com>
14096 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
14097 (gst_v4lsrc_fixate): Fixate on format as well.
14099 * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy)
14100 (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
14101 buffer points to it.
14102 (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
14103 rather just doing X calls ourselves. Also fixes a memleak.
14105 2005-07-12 Andy Wingo <wingo@pobox.com>
14107 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property)
14108 (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init)
14109 (gst_v4lsrc_create): Re-add the copy-mode property, default to
14110 TRUE to avoid deadlocks if an element holds on to our buffers.
14112 2005-07-11 Thomas Vander Stichele <thomas at apestaart dot org>
14114 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
14115 (gst_sinesrc_init), (gst_sinesrc_create),
14116 (gst_sinesrc_set_property), (gst_sinesrc_get_property),
14117 (gst_sinesrc_start):
14118 * gst/sine/gstsinesrc.h:
14119 removing num-buffers property before moving it
14121 2005-07-10 Thomas Vander Stichele <thomas at apestaart dot org>
14124 use overridable ERROR_CFLAGS
14125 * docs/libs/gst-plugins-base-libs.types:
14126 * docs/libs/tmpl/gstringbuffer.sgml:
14127 * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
14128 (gst_alsasink_class_init):
14129 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
14130 (gst_alsasrc_class_init):
14131 * gst-libs/gst/audio/audio.h:
14132 * gst-libs/gst/audio/gstaudioclock.h:
14133 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
14134 (gst_audio_filter_base_init), (gst_audio_filter_class_init),
14135 (gst_audio_filter_link), (gst_audio_filter_init),
14136 (gst_audio_filter_chain), (gst_audio_filter_set_property),
14137 (gst_audio_filter_get_property),
14138 (gst_audio_filter_class_add_pad_templates):
14139 * gst-libs/gst/audio/gstaudiofilter.h:
14140 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
14141 (gst_audio_filter_template_get_type),
14142 (gst_audio_filter_template_base_init),
14143 (gst_audio_filter_template_class_init),
14144 (gst_audio_filter_template_init),
14145 (gst_audio_filter_template_set_property),
14146 (gst_audio_filter_template_get_property), (plugin_init),
14147 (gst_audio_filter_template_setup),
14148 (gst_audio_filter_template_filter),
14149 (gst_audio_filter_template_filter_inplace):
14150 * gst-libs/gst/audio/gstaudiosink.c:
14151 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14152 (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
14153 (gst_audioringbuffer_release), (gst_audioringbuffer_start),
14154 (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
14155 (gst_audio_sink_base_init), (gst_audio_sink_class_init),
14156 (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
14157 * gst-libs/gst/audio/gstaudiosink.h:
14158 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
14159 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
14160 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14161 (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
14162 (gst_audioringbuffer_delay), (gst_audio_src_base_init),
14163 (gst_audio_src_class_init), (gst_audio_src_init),
14164 (gst_audio_src_create_ringbuffer):
14165 * gst-libs/gst/audio/gstaudiosrc.h:
14166 * gst-libs/gst/audio/gstbaseaudiosink.c:
14167 (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
14168 (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
14169 (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
14170 (gst_base_audio_sink_set_property),
14171 (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
14172 (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
14173 (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
14174 (gst_base_audio_sink_create_ringbuffer),
14175 (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
14176 * gst-libs/gst/audio/gstbaseaudiosink.h:
14177 * gst-libs/gst/audio/gstbaseaudiosrc.c:
14178 (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
14179 (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
14180 (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
14181 (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
14182 (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
14183 (gst_base_audio_src_event), (gst_base_audio_src_create),
14184 (gst_base_audio_src_create_ringbuffer),
14185 (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
14186 * gst-libs/gst/audio/gstbaseaudiosrc.h:
14187 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
14188 (gst_ring_buffer_class_init), (gst_ring_buffer_init),
14189 (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
14190 (gst_ring_buffer_debug_spec_caps),
14191 (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
14192 (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
14193 (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
14194 (gst_ring_buffer_start), (gst_ring_buffer_pause),
14195 (gst_ring_buffer_stop), (gst_ring_buffer_delay),
14196 (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
14197 (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
14198 (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
14199 (gst_ring_buffer_clear):
14200 * gst-libs/gst/audio/gstringbuffer.h:
14201 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
14202 (gst_video_sink_class_init), (gst_video_sink_get_type):
14203 * gst-libs/gst/video/videosink.h:
14204 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
14205 (gst_multifdsink_class_init),
14206 (gst_multifdsink_handle_client_write),
14207 (gst_multifdsink_change_state):
14208 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
14209 (gst_tcpclientsink_setcaps):
14210 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
14211 (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
14212 (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
14213 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
14214 (gst_ximagesink_send_pending_navigation),
14215 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
14216 (gst_ximagesink_class_init), (gst_ximagesink_get_type):
14217 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
14218 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
14219 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
14220 (gst_xvimagesink_send_pending_navigation),
14221 (gst_xvimagesink_navigation_send_event),
14222 (gst_xvimagesink_set_xwindow_id),
14223 (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
14224 (gst_xvimagesink_get_type):
14225 more macro splitting
14227 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
14229 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
14230 plug a memleak, allows me to import 1479 albums in one go
14232 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14233 (vorbis_handle_type_packet), (vorbis_dec_chain),
14234 (vorbis_dec_change_state):
14235 fix some format strings
14237 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
14239 * docs/libs/tmpl/gstcolorbalance.sgml:
14240 * docs/libs/tmpl/gstmixer.sgml:
14241 * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
14242 (gst_alsasink_set_property), (gst_alsasink_get_property):
14243 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
14244 (gst_alsasrc_set_property), (gst_alsasrc_get_property):
14245 add device property
14247 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
14249 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
14250 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
14251 (audiocast_register_listener), (audiocast_thread_run),
14252 (gst_gnomevfssrc_send_additional_headers_callback),
14253 (gst_gnomevfssrc_received_headers_callback),
14254 (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
14255 (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
14256 (gst_gnomevfssrc_get_size):
14257 add/clean up debugging
14258 * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
14261 2005-07-07 Andy Wingo <wingo@pobox.com>
14263 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
14264 framerate. Need to get a handle on when exactly this function is
14267 * sys/v4l/v4lsrc_calls.h:
14268 * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
14269 (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
14270 (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
14272 * sys/v4l/v4l_calls.h: Cast to V4lElement.
14273 * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
14274 v4lelements are sources.
14276 * sys/v4l/gstv4lxoverlay.h:
14277 * sys/v4l/gstv4lxoverlay.c:
14278 * sys/v4l/gstv4ltuner.h:
14279 * sys/v4l/gstv4ltuner.c: Header loc fixen.
14281 * sys/v4l/gstv4lsrc.h:
14282 * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
14283 PushSrc/BaseSrc. Removed most sync-related properties, videorate
14284 or something should handle that. Made a live source.
14286 * sys/v4l/gstv4lelement.h:
14287 * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
14288 signals. Some cleanups.
14290 * sys/v4l/gstv4lcolorbalance.h: Interface header update.
14292 * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
14295 * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
14298 * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
14300 2005-07-07 Wim Taymans <wim@fluendo.com>
14302 * ext/theora/theoradec.c: (theora_get_query_types),
14303 (theora_dec_src_getcaps), (theora_dec_push):
14304 * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
14305 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
14306 Remove deprecated/unused query types.
14308 2005-07-06 Wim Taymans <wim@fluendo.com>
14310 * ext/alsa/Makefile.am:
14311 * ext/alsa/gstalsaplugin.c: (plugin_init):
14312 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
14313 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
14314 (gst_alsasrc_dispose), (gst_alsasrc_base_init),
14315 (gst_alsasrc_class_init), (gst_alsasrc_init),
14316 (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
14317 (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
14318 (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
14319 (gst_alsasrc_reset):
14320 * ext/alsa/gstalsasrc.h:
14321 * gst-libs/gst/audio/Makefile.am:
14322 * gst-libs/gst/audio/gstaudiosink.c:
14323 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14324 (gst_audioringbuffer_start):
14325 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
14326 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
14327 (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
14328 (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
14329 (gst_audioringbuffer_release), (gst_audioringbuffer_start),
14330 (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
14331 (gst_audiosrc_base_init), (gst_audiosrc_class_init),
14332 (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
14333 * gst-libs/gst/audio/gstaudiosrc.h:
14334 * gst-libs/gst/audio/gstbaseaudiosink.c:
14335 (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
14336 (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
14337 (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
14338 * gst-libs/gst/audio/gstbaseaudiosrc.c:
14339 (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
14340 (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
14341 (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
14342 (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
14343 (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
14344 (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
14345 (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
14346 (gst_baseaudiosrc_change_state):
14347 * gst-libs/gst/audio/gstbaseaudiosrc.h:
14348 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
14349 (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
14350 (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
14351 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
14352 (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
14353 (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
14354 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
14355 * gst-libs/gst/audio/gstringbuffer.h:
14356 Added audiosource base classes.
14357 Ported alsasrc, still very basic.
14359 2005-07-06 Wim Taymans <wim@fluendo.com>
14361 * ext/theora/theoradec.c: (theora_dec_src_getcaps),
14362 (theora_dec_push), (theora_handle_data_packet):
14363 Prepare for better timestamp fix later.
14365 * gst/audioconvert/gstaudioconvert.c:
14366 List most accurate caps first
14368 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
14369 Use proper pad task function.
14371 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
14372 (gst_xvimagesink_show_frame):
14373 Fix deadlock when alloc failed.
14375 2005-07-05 Andy Wingo <wingo@pobox.com>
14377 * ext/gnomevfs/gstgnomevfssrc.c:
14378 * gst/sine/gstsinesrc.c:
14379 * gst/tcp/gsttcpserversrc.c:
14380 * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
14382 * sys/v4l/: Port from 0.8.
14384 * Many files: Null if we got it....
14386 2005-07-05 Andy Wingo <wingo@pobox.com>
14388 * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read):
14389 * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
14392 2005-07-05 Wim Taymans <wim@fluendo.com>
14395 * gst/tcp/Makefile.am:
14397 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
14398 (gst_multifdsink_base_init), (gst_multifdsink_class_init),
14399 (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
14400 (is_sync_frame), (gst_multifdsink_handle_client_write),
14401 (gst_multifdsink_render), (gst_multifdsink_start),
14402 (gst_multifdsink_stop), (gst_multifdsink_change_state):
14403 * gst/tcp/gstmultifdsink.h:
14404 * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
14405 (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
14406 (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
14407 * gst/tcp/gsttcp.h:
14408 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
14409 (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
14410 (gst_tcpclientsink_render), (gst_tcpclientsink_start),
14411 (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
14412 * gst/tcp/gsttcpclientsink.h:
14413 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
14414 (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
14415 (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
14416 (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
14417 (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
14418 * gst/tcp/gsttcpclientsrc.h:
14419 * gst/tcp/gsttcpplugin.c: (plugin_init):
14420 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
14421 * gst/tcp/gsttcpserversink.h:
14422 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
14423 (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
14424 (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
14425 (gst_tcpserversrc_create), (gst_tcpserversrc_start),
14426 (gst_tcpserversrc_stop):
14427 * gst/tcp/gsttcpserversrc.h:
14428 * gst/tcp/gsttcpsink.c:
14429 * gst/tcp/gsttcpsink.h:
14430 * gst/tcp/gsttcpsrc.c:
14431 * gst/tcp/gsttcpsrc.h:
14432 Ported tcp plugins to 0.9.
14435 2005-07-05 Andy Wingo <wingo@pobox.com>
14437 * gst/playback/gstplaybasebin.c (fill_buffer):
14438 message_new_application fixen.
14440 * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
14443 2005-07-04 Wim Taymans <wim@fluendo.com>
14445 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
14446 Set caps on output buffer.
14448 2005-07-04 Andy Wingo <wingo@pobox.com>
14450 * ext/gnomevfs/gstgnomevfssrc.c
14451 (gst_gnomevfssrc_received_headers_callback)
14452 (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
14455 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
14456 No refcount leakage.
14458 * configure.ac: Enable -Werror.
14460 * ext/theora/theoradec.c (theora_dec_src_getcaps):
14461 * gst/audioconvert/bufferframesconvert.c
14462 (buffer_frames_convert_fixate):
14463 * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
14464 (gst_audio_convert_fixate):
14465 * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
14466 (gst_sinesrc_create): Fixate func changes.
14468 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
14469 (gst_ximagesink_buffer_alloc): Unused var.
14471 2005-07-01 Andy Wingo <wingo@pobox.com>
14473 * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
14474 getcaps to do explicit caps. Needs to be done in all decoders,
14475 possibly via a base class.
14477 * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
14479 * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
14480 caps on the sink pad, just rely on the pad template. Also, setting
14481 ANY caps on a pad is not valid because the caps are not fixed.
14483 * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
14484 caps on the buffer, and get the width from the desired_caps if
14486 (gst_ximagesink_renegotiate_size): Implement via setting the
14487 desired_caps on the ximagesink.
14488 (gst_ximagesink_setcaps): Only reset the width of the player if it
14489 wasn't already set. Not sure if this is right.
14490 (gst_ximagesink_show_frame): Memcpy only for normal buffers.
14492 * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
14493 that the user wants. NULL unless the window has been resized.
14495 * gst/volume/gstvolume.c (volume_transform): Adapt to
14496 basetransform refcount changes.
14498 2005-07-01 Andy Wingo <wingo@pobox.com>
14500 * gst/videoscale/gstvideoscale.c:
14501 * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
14502 from BaseTransform, implements a transform_caps. Removed dead code
14503 including some PAR stuff that was never reached -- should probably
14504 be added back somehow.
14506 2005-07-01 Andy Wingo <wingo@pobox.com>
14508 * gst/videoscale: Merge David's work from 0.8 branch. Changes to
14511 2005-06-30 Thomas Vander Stichele <thomas at apestaart dot org>
14514 * docs/libs/Makefile.am:
14515 * docs/libs/gst-plugins-libs.types:
14516 * ext/alsa/Makefile.am:
14517 * ext/alsa/gstalsamixer.h:
14518 * ext/alsa/gstalsamixeroptions.h:
14519 * ext/alsa/gstalsamixertrack.h:
14520 * gst-libs/gst/Makefile.am:
14521 * gst-libs/gst/colorbalance/.cvsignore:
14522 * gst-libs/gst/colorbalance/Makefile.am:
14523 * gst-libs/gst/colorbalance/colorbalance-marshal.list:
14524 * gst-libs/gst/colorbalance/colorbalance.c:
14525 * gst-libs/gst/colorbalance/colorbalance.h:
14526 * gst-libs/gst/colorbalance/colorbalance.vcproj:
14527 * gst-libs/gst/colorbalance/colorbalancechannel.c:
14528 * gst-libs/gst/colorbalance/colorbalancechannel.h:
14529 * gst-libs/gst/interfaces/Makefile.am:
14530 * gst-libs/gst/interfaces/colorbalance.c:
14531 (gst_color_balance_class_init):
14532 * gst-libs/gst/interfaces/colorbalance.h:
14533 * gst-libs/gst/interfaces/interfaces-marshal.list:
14534 * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
14535 * gst-libs/gst/interfaces/mixer.h:
14536 * gst-libs/gst/interfaces/mixeroptions.h:
14537 * gst-libs/gst/interfaces/navigation.c:
14538 * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
14539 * gst-libs/gst/interfaces/tuner.h:
14540 * gst/volume/Makefile.am:
14541 * gst/volume/gstvolume.c:
14542 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
14543 * sys/ximage/Makefile.am:
14544 * sys/ximage/ximagesink.c:
14545 * sys/xvimage/Makefile.am:
14546 * sys/xvimage/xvimagesink.c:
14547 fold in all interfaces into an interfaces dir, preserving CVS
14550 2005-06-30 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14552 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
14553 Fix build after riff changes.
14555 2005-06-30 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14557 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
14558 (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
14559 (gst_riff_create_video_template_caps),
14560 (gst_riff_create_audio_template_caps),
14561 (gst_riff_create_iavs_template_caps):
14562 * gst-libs/gst/riff/riff-media.h:
14563 * gst-libs/gst/riff/riff-read.h:
14564 * gst-libs/gst/riff/riff.c: (gst_riff_init):
14565 Add gst_riff_init() to initialize the debug category, instead
14566 of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
14568 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14570 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
14571 Oops, I shouldn't apply hacks.
14573 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14575 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
14576 Remove pad_loop function which doesn't work.
14578 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14580 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
14581 Send EOS when deactivating.
14582 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
14583 (check_queue), (queue_threshold_reached), (queue_out_of_data),
14584 (gen_preroll_element), (probe_triggered), (mute_stream),
14585 (silence_stream), (new_decoded_pad), (setup_substreams),
14586 (set_active_source):
14587 * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
14588 (remove_sinks), (add_sink):
14589 * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
14590 Change for new probe API.
14592 2005-06-29 Wim Taymans <wim@fluendo.com>
14594 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
14595 * gst-libs/gst/audio/gstbaseaudiosink.c:
14596 (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
14597 (gst_baseaudiosink_change_state):
14598 * gst-libs/gst/audio/gstbaseaudiosink.h:
14599 * gst-libs/gst/audio/gstringbuffer.c:
14600 (gst_ringbuffer_set_callback):
14601 Fix compilation error.
14602 Ringbuffer starts out as not running.
14603 Free our clock in dispose.
14604 When releasing the ringbuffer we need to renegotiate so
14605 clear the pad caps.
14607 2005-06-29 Thomas Vander Stichele <thomas at apestaart dot org>
14611 * docs/Makefile.am:
14612 * docs/libs/Makefile.am:
14613 * docs/libs/gst-plugins-libs-docs.sgml:
14614 * docs/libs/gst-plugins-libs-sections.txt:
14615 * docs/libs/gst-plugins-libs.types:
14616 * docs/libs/tmpl/gstaudio.sgml:
14617 * docs/libs/tmpl/gstcolorbalance.sgml:
14618 * docs/libs/tmpl/gstringbuffer.sgml:
14619 * gst-libs/gst/audio/gstringbuffer.c:
14620 (gst_ringbuffer_set_callback):
14621 reinstate gtk-doc docs for plugin libs
14623 2005-06-28 Wim Taymans <wim@fluendo.com>
14625 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14626 (gst_ogg_demux_init):
14627 Removed pad loop function.
14629 2005-06-28 Wim Taymans <wim@fluendo.com>
14631 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
14632 If we're building a chain we are not in an error case
14633 when we queue a buffer.
14635 2005-06-28 Andy Wingo <wingo@pobox.com>
14637 * *.c: Don't cast to GstObject before reffing/unreffing.
14639 2005-06-27 Andy Wingo <wingo@pobox.com>
14641 * gst/videotestsrc/gstvideotestsrc.c
14642 (gst_videotestsrc_activate_push): Activation API changes.
14644 * gst/playback/gstdecodebin.c (gst_decode_bin_change_state)
14645 (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
14646 they have refs on the decodebin.
14648 * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
14650 (gst_ogg_pad_typefind): Don't leak a pad ref.
14651 (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
14652 (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push)
14653 (gst_ogg_demux_sink_activate_pull): Changes for activation API.
14655 2005-06-27 Edward Hervey <edward@fluendo.com>
14657 * ext/theora/theoradec.c: (theora_dec_change_state):
14658 re-arranged call to parent's state change in order to avoid locks (or
14661 2005-06-26 Edward Hervey <edward@fluendo.com>
14663 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
14664 2nd argument of 'unknow-type' signal is a GstCaps and not a
14667 2005-06-25 Jan Schmidt <thaytan@mad.scientist.com>
14668 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
14669 Set the worker thread's running flag to TRUE before starting the
14671 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
14672 Catch a failure to add typefind to the bin.
14674 2005-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
14676 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
14677 (gst_sinesrc_init), (gst_sinesrc_create),
14678 (gst_sinesrc_set_property), (gst_sinesrc_get_property),
14679 (gst_sinesrc_start):
14680 * gst/sine/gstsinesrc.h:
14681 add num-buffers and timestamp-offset properties
14682 * gst/videotestsrc/gstvideotestsrc.c:
14683 (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
14684 (gst_videotestsrc_get_property):
14685 add timestamp-offset property
14687 2005-06-23 Christian Schaller <uraeus@gnome.org>
14689 * configure.ac: add videorate
14690 * gst-plugins-base.spec.in: add videorate
14692 2005-06-23 Wim Taymans <wim@fluendo.com>
14694 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14695 (gst_videorate_getcaps), (gst_videorate_setcaps),
14696 (gst_videorate_event), (gst_videorate_chain):
14697 Fixed videorate, fixating an already fixated caps is not
14700 2005-06-23 Wim Taymans <wim@fluendo.com>
14703 * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
14704 Buffer on caps is not boxed anymore.
14706 2005-06-22 Wim Taymans <wim@fluendo.com>
14708 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
14709 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
14710 Set buffers on caps as miniobjects and not as boxed.
14712 2005-06-19 Thomas Vander Stichele <thomas at apestaart dot org>
14717 === release 0.9.1 ===
14719 2005-06-19 Thomas Vander Stichele <thomas at apestaart dot org>
14740 updates for release
14742 2005-06-09 Andy Wingo <wingo@pobox.com>
14744 * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
14746 2005-06-09 Andy Wingo <wingo@pobox.com>
14749 * gst-libs/gst/Makefile.am:
14750 * gst-libs/gst/net/Makefile.am:
14751 Add gstnet to build.
14753 2005-06-09 Andy Wingo <wingo@pobox.com>
14755 * gst-libs/gst/gconf/gconf.c:
14756 * gst/playback/test.c:
14757 * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
14760 * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
14762 * ext/theora/theoraenc.c (theora_enc_chain):
14763 * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
14765 * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
14768 2005-06-02 Wim Taymans <wim@fluendo.com>
14770 * gst-libs/gst/net/Makefile.am:
14771 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
14772 * pkgconfig/gstreamer-libs.pc.in:
14773 Added net stuff, version net lib.
14775 2005-06-02 Wim Taymans <wim@fluendo.com>
14777 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
14778 (query_rates), (query_positions_elems), (query_positions_pads),
14780 Updated seek example.
14782 2005-06-02 Andy Wingo <wingo@pobox.com>
14784 * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
14785 * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
14788 * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
14789 remove the typefind, the bin dispose will do it for us. When it's
14790 removed and unreffed, the signal handler will be disconnected,
14792 (unlinked): It's too difficult to disconnect from unlinked
14793 handlers, as they are on pads not elements. Just punt if the pads
14794 aren't grandkids of the bin.
14796 2005-06-02 Wim Taymans <wim@fluendo.com>
14799 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14800 (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
14801 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
14802 * ext/theora/theoradec.c: (theora_dec_src_query),
14803 (theora_handle_data_packet):
14804 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
14805 (theora_enc_chain):
14806 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14807 (vorbis_handle_data_packet):
14808 * gst/audioconvert/bufferframesconvert.c:
14809 (buffer_frames_convert_chain):
14810 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14811 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14812 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
14813 (gst_ffmpegcsp_chain):
14814 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14815 (gst_videorate_getcaps), (gst_videorate_setcaps),
14816 (gst_videorate_event), (gst_videorate_chain):
14817 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
14818 (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
14819 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14820 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
14821 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
14822 (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
14823 (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
14824 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
14825 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
14826 Cleanups and buffer alloc.
14828 2005-05-31 Wim Taymans <wim@fluendo.com>
14830 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
14831 Don't try to call the delay method when the device is not
14834 2005-05-31 Wim Taymans <wim@fluendo.com>
14836 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
14837 Get actual segment size and buffer size after opening
14840 2005-05-30 Wim Taymans <wim@fluendo.com>
14842 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
14843 (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
14844 Also FLUSH upstream, makes the loop function exit faster.
14846 * ext/theora/theoradec.c: (theora_dec_src_query):
14847 Some more debug info in the query.
14849 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14850 (gst_ximagesink_setcaps):
14851 Release lock on par error, better error reporting.
14853 2005-05-26 Wim Taymans <wim@fluendo.com>
14855 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14856 (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
14857 (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
14858 Clear chains in READY
14859 Queue packets until the chain is activated.
14861 2005-05-25 Wim Taymans <wim@fluendo.com>
14863 * gst-libs/gst/audio/gstaudiosink.c:
14864 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14865 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
14866 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14867 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
14868 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
14869 (gst_audiosink_create_ringbuffer):
14870 * gst-libs/gst/audio/gstbaseaudiosink.c:
14871 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
14872 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
14873 (gst_baseaudiosink_set_property), (build_linear_format),
14874 (debug_spec_caps), (debug_spec_buffer),
14875 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
14876 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
14877 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
14878 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
14879 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
14880 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
14881 (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
14882 (gst_ringbuffer_play), (gst_ringbuffer_pause),
14883 (gst_ringbuffer_stop), (gst_ringbuffer_delay),
14884 (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
14885 (wait_segment), (gst_ringbuffer_commit),
14886 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
14887 (gst_ringbuffer_clear):
14888 Various small cleanups.
14890 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
14891 (gst_audio_convert_change_state):
14892 * gst/subparse/gstsubparse.c: (gst_subparse_chain):
14893 No need to take the locks anymore.
14895 2005-05-25 Wim Taymans <wim@fluendo.com>
14897 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
14898 (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
14899 (remove_element_chain), (no_more_pads), (unlinked), (close_link),
14901 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
14902 (group_destroy), (group_commit), (queue_overrun),
14903 (gen_preroll_element), (no_more_pads), (preroll_unlinked),
14904 (mute_stream), (new_decoded_pad), (setup_substreams),
14905 (setup_source), (mute_group_type), (set_active_source),
14906 (gst_play_base_bin_change_state):
14907 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
14908 (gen_video_element), (gen_text_element), (gen_audio_element),
14909 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
14910 * gst/playback/gststreaminfo.c: (gst_stream_info_new),
14911 (gst_stream_info_dispose), (gst_stream_info_set_mute):
14912 * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
14913 Some playbin cleanups mostly refcounting sloppyness.
14915 2005-05-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14917 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
14918 Work with streaming input.
14920 2005-05-25 Wim Taymans <wim@fluendo.com>
14922 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14923 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14924 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
14925 (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
14926 No need to take the STREAM lock anymore.
14928 2005-05-25 Wim Taymans <wim@fluendo.com>
14930 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
14931 (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
14932 (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
14933 (gst_ogg_demux_chain), (gst_ogg_demux_loop),
14934 (gst_ogg_demux_sink_activate):
14935 * ext/theora/theoradec.c: (theora_dec_src_event),
14936 (theora_handle_comment_packet), (theora_dec_chain),
14937 (theora_dec_change_state):
14938 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14939 (vorbis_handle_data_packet), (vorbis_dec_chain),
14940 (vorbis_dec_change_state):
14941 Remove STREAM locks as they are taken in core now.
14942 Never set bogus granulepos on vorbis/theora.
14943 Fix leaks in theoradec tag parsing.
14945 2005-05-25 Wim Taymans <wim@fluendo.com>
14947 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
14948 Fix memleaks, GST_BUFFER_DATA() is not freed.
14950 2005-05-25 Wim Taymans <wim@fluendo.com>
14952 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
14953 Open non-blocking, set to blocking mode afterwards to avoid
14954 lockups when audio device is busy.
14956 2005-05-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14958 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
14959 This can't be good.
14961 2005-05-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14963 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
14964 (gst_audio_convert_chain), (gst_audio_convert_link_src),
14965 (gst_audio_convert_setcaps):
14966 Implement instant setup switching.
14968 2005-05-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14970 * gst/playback/gstplaybasebin.c: (probe_triggered):
14971 Fix missing unlock.
14972 * gst/playback/gstplaybin.c: (add_sink):
14973 First add, then link (otherwise pad link fails).
14975 2005-05-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
14977 * examples/Makefile.am:
14978 fix buildbot (make distcheck)
14980 2005-05-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14982 * gst/playback/gstplaybin.c: (gen_vis_element):
14983 Remove some wrong code. Doesn't work yet.
14985 2005-05-19 Wim Taymans <wim@fluendo.com>
14987 * gst-libs/gst/net/Makefile.am:
14988 * gst-libs/gst/net/README:
14989 * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
14990 (gst_netbuffer_class_init), (gst_netbuffer_init),
14991 (gst_netbuffer_finalize), (gst_netbuffer_copy),
14992 (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
14993 (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
14994 (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
14995 * gst-libs/gst/net/gstnetbuffer.h:
14996 Added buffer subclass to store extra to/from addresses for
14997 network sources/sinks.
14999 2005-05-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15001 * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
15002 Don't lock an unassigned variable.
15004 2005-05-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15006 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
15007 Increase buffer for video, decrease buffer for other media types.
15008 * gst/playback/gstplaybin.c: (gen_video_element),
15009 (gen_audio_element):
15010 Change names for debugging purposes.
15012 2005-05-18 Wim Taymans <wim@fluendo.com>
15014 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15015 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15016 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
15017 (gst_ffmpegcsp_chain):
15018 Enable buffer alloc passthrough if the source and dest
15019 formats are the same.
15021 2005-05-17 Wim Taymans <wim@fluendo.com>
15023 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
15024 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
15025 (gst_ogg_demux_chain_unlocked):
15026 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15027 (gst_audio_convert_caps_remove_format_info),
15028 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15029 (gst_audio_convert_fixate), (gst_audio_convert_change_state):
15030 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15031 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15032 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
15033 (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
15034 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
15035 (gst_ffmpegcsp_get_property):
15036 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
15037 (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
15038 (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
15039 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
15040 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
15041 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
15042 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
15043 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
15044 Leak fixes in oggdemux.
15045 Some cleanups in audioconvert.
15046 Make passthrough work along with buffer_alloc etc.
15047 Make buffer_alloc and buffer recycling actually work in
15050 2005-05-17 Thomas Vander Stichele <thomas at apestaart dot org>
15052 * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
15053 make the compiler happy
15055 2005-05-17 Wim Taymans <wim@fluendo.com>
15057 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
15058 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
15059 (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
15060 (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
15061 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
15062 (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
15063 (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
15064 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
15065 (gst_xvimagesink_set_xwindow_id):
15066 * sys/xvimage/xvimagesink.h:
15067 Port xvimagesink to new MiniObject.
15069 2005-05-17 Wim Taymans <wim@fluendo.com>
15071 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
15072 (gst_audiofilter_chain):
15073 * gst-libs/gst/audio/gstaudiosink.c:
15074 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15075 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15076 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15077 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15078 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15079 (gst_audiosink_create_ringbuffer):
15080 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15081 (gst_audio_convert_caps_remove_format_info),
15082 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15083 (gst_audio_convert_fixate), (gst_audio_convert_channels):
15084 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15085 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15086 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15087 Fix passthrough in ffmpegcolorspace.
15088 Fix memset in audiosink on wrong memory.
15090 2005-05-16 David Schleef <ds@schleef.org>
15092 * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
15095 2005-05-16 David Schleef <ds@schleef.org>
15097 Port from GstData to GstMiniObject.
15098 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
15099 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
15100 (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
15101 (gst_ogg_mux_collected):
15102 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
15103 * ext/theora/theoradec.c: (theora_handle_comment_packet),
15104 (theora_handle_data_packet):
15105 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
15106 (theora_set_header_on_caps), (theora_enc_chain):
15107 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
15108 (vorbis_handle_comment_packet):
15109 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
15110 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
15111 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
15112 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
15113 * gst/audioconvert/gstaudioconvert.c:
15114 (gst_audio_convert_get_buffer):
15115 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
15116 * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
15117 (mute_stream), (silence_stream):
15118 * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
15119 * gst/volume/gstvolume.c: (volume_transform):
15120 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
15121 (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
15122 (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
15123 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
15124 (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
15125 (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
15126 (gst_ximagesink_buffer_alloc):
15127 * sys/ximage/ximagesink.h:
15129 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15131 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15132 (fill_buffer), (check_queue), (queue_threshold_reached),
15133 (queue_out_of_data):
15134 * gst/playback/gstplaybasebin.h:
15135 Post buffer-fullness on the bus.
15137 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15139 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
15141 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15142 (group_commit), (probe_triggered), (setup_source),
15143 (gst_play_base_bin_change_state):
15144 * gst/playback/gstplaybasebin.h:
15145 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15146 (gst_play_bin_init), (remove_sinks), (setup_sinks),
15147 (gst_play_bin_change_state):
15148 Move setup_output_pads into a virtual function, remove
15149 group-switch (no longer needed) and redirect (handled by bus
15152 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15154 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
15155 (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
15156 (get_active_group), (get_building_group), (group_destroy),
15157 (group_commit), (check_queue), (queue_overrun),
15158 (queue_threshold_reached), (queue_out_of_data),
15159 (gen_preroll_element), (remove_groups), (unknown_type),
15160 (add_element_stream), (no_more_pads), (probe_triggered),
15161 (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
15162 (setup_substreams), (setup_source), (finish_source),
15163 (prepare_output), (muted_group_change_state),
15164 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
15165 (gst_play_base_bin_change_state):
15166 * gst/playback/gstplaybasebin.h:
15167 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15168 (gst_play_bin_init), (gst_play_bin_set_property),
15169 (gen_video_element), (gen_text_element), (gen_audio_element),
15170 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
15171 (gst_play_bin_change_state):
15172 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
15173 (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
15174 (stream_info_change_state), (gst_stream_info_set_mute),
15175 (gst_stream_info_get_property):
15176 * gst/playback/gststreaminfo.h:
15177 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
15178 (gst_stream_selector_get_linked_pad),
15179 (gst_stream_selector_getcaps),
15180 (gst_stream_selector_get_linked_pads),
15181 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
15182 * gst/playback/gststreamselector.h:
15183 Rough port of playbin. Needs some more work, but is mostly done,
15184 and uses a few locks in important places, which should make stuff
15185 like chain-switches clean. Still uses GST_STATE() in a few places,
15186 which isn't all that good an idea, subtitles/elements disabled
15187 because no elements to test with and thus probably broken, query
15188 and event handling moved to GstBin, internal thread removed
15189 alltogether because the pipeline does that for us now. Can play
15190 Ogg/Vorbis files. Haven't tested anything else yet.
15192 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15194 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
15195 Do no-more-pads (needed for autoplugging).
15197 2005-05-10 Andy Wingo <wingo@pobox.com>
15199 * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
15200 message to the bus with the tags. Still not sent downstream tho.
15202 * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
15204 (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
15205 avoid refcounting hassles.
15207 2005-05-09 Andy Wingo <wingo@pobox.com>
15209 * gst/volume/Makefile.am:
15210 * gst/volume/demo.c
15211 * gst/volume/gstvolume.h
15212 * gst/volume/gstvolume.c: Port to 0.9 API, derive from
15213 basetransform. Probably need an audio filter base class.
15215 2005-05-09 Wim Taymans <wim@fluendo.com>
15217 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
15218 (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
15219 (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
15220 (gst_vorbisenc_chain):
15221 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15222 (gst_audio_convert_caps_remove_format_info),
15223 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15224 (gst_audio_convert_fixate), (gst_audio_convert_channels):
15225 Make caps writable before writing to it.
15226 Fix negotiation in audioconvert some more.
15228 2005-05-09 Wim Taymans <wim@fluendo.com>
15230 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
15231 (gst_videorate_getcaps), (gst_videorate_setcaps),
15232 (gst_videorate_event), (gst_videorate_chain):
15233 Better negotiation.
15235 2005-05-09 Wim Taymans <wim@fluendo.com>
15237 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
15238 (gst_videorate_getcaps), (gst_videorate_setcaps),
15239 (gst_videorate_blank_data), (gst_videorate_init),
15240 (gst_videorate_event), (gst_videorate_chain),
15241 (gst_videorate_change_state):
15242 Port videorate, do a better job at negotiation while we're at
15245 2005-05-09 Jan Schmidt <thaytan@mad.scientist.com>
15250 * examples/Makefile.am:
15251 * gst-libs/gst/audio/Makefile.am:
15252 * gst-libs/gst/riff/Makefile.am:
15253 * gst-libs/gst/tag/Makefile.am:
15254 * gst-libs/gst/video/Makefile.am:
15255 Fixups for missing variables.
15257 2005-05-09 Wim Taymans <wim@fluendo.com>
15259 * examples/seeking/seek.c: (make_theora_pipeline),
15260 (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
15261 (query_rates), (query_positions_elems), (query_positions_pads),
15262 (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
15263 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
15264 (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
15265 (gst_ogg_pad_typefind), (gst_ogg_demux_init),
15266 (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
15267 (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
15268 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
15269 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
15270 (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
15271 (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
15272 (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
15273 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
15274 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
15275 (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
15276 * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
15277 (theora_dec_src_convert), (theora_dec_sink_convert),
15278 (theora_dec_src_query), (theora_dec_sink_query),
15279 (theora_dec_src_event), (theora_dec_sink_event),
15280 (theora_handle_comment_packet), (theora_handle_type_packet),
15281 (theora_handle_header_packet), (theora_handle_data_packet),
15282 (theora_dec_chain):
15283 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
15284 (vorbis_dec_convert), (vorbis_dec_src_query),
15285 (vorbis_dec_sink_query), (vorbis_dec_src_event),
15286 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15287 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15288 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
15289 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
15290 (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
15291 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
15292 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15293 (gst_play_bin_query):
15294 * gst/playback/test3.c: (update_scale):
15295 * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
15296 (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
15297 * gst/subparse/gstsubparse.c: (gst_subparse_init):
15298 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
15299 (gst_videotestsrc_src_query):
15300 * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
15301 (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
15302 (paint_hline_YUV9):
15303 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
15304 Port to new query API.
15306 Cleanups in x[v]imagesink
15308 2005-05-09 Andy Wingo <wingo@pobox.com>
15310 * ext/alsa/gstalsasink.h:
15311 * ext/gnomevfs/gstgnomevfssrc.c:
15312 (gst_gnomevfssrc_get_icy_metadata):
15313 * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
15314 (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
15315 * ext/theora/theoradec.c (theora_dec_src_query)
15316 (theora_dec_src_event, theora_dec_sink_event)
15317 (theora_handle_comment_packet, theora_handle_data_packet):
15318 * ext/theora/theoraenc.c (theora_enc_chain):
15319 * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
15320 (vorbis_dec_sink_event, vorbis_handle_comment_packet):
15321 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
15322 * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
15324 * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
15325 (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
15326 (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
15327 (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
15328 (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
15329 (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
15330 (paint_setup_xBGR8888, paint_setup_RGBx8888)
15331 (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
15332 (paint_setup_RGB565, paint_setup_xRGB1555):
15333 * gst/videotestsrc/videotestsrc.h:
15334 * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
15335 * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
15336 (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
15339 * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
15340 gst_pad_query_position. Fixes oggdemux.
15342 2005-05-08 David Schleef <ds@schleef.org>
15344 * configure.ac: Require liboil.
15345 * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
15347 * gst/videotestsrc/videotestsrc.c:
15348 * gst/videotestsrc/videotestsrc.h:
15350 2005-05-06 Wim Taymans <wim@fluendo.com>
15352 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15353 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15354 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15355 Well, unreffing a buffer right before pushing it is asking
15358 2005-05-06 Christian Schaller <uraeus@gnome.org>
15360 * pkgconfig/gstreamer-libs.pc.in: add missing library calls
15362 2005-05-06 Wim Taymans <wim@fluendo.com>
15364 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15365 (gst_audio_convert_caps_remove_format_info),
15366 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15367 (gst_audio_convert_fixate), (gst_audio_convert_channels):
15368 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15369 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15370 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15371 * gst/sine/Makefile.am:
15372 * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
15373 (gst_sinesrc_class_init), (gst_sinesrc_init),
15374 (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
15375 (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
15376 (gst_sinesrc_update_freq):
15377 * gst/sine/gstsinesrc.h:
15378 * gst/tcp/gstmultifdsink.c:
15379 * sys/xvimage/xvimagesink.c:
15380 Fixed negotiation wrt _peer_get_caps()
15384 2005-05-06 Wim Taymans <wim@fluendo.com>
15386 * gst-libs/gst/audio/gstaudiosink.c:
15387 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15388 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15389 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15390 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15391 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15392 (gst_audiosink_create_ringbuffer):
15393 * gst-libs/gst/audio/gstbaseaudiosink.c:
15394 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15395 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15396 (gst_baseaudiosink_set_property), (build_linear_format),
15397 (debug_spec_caps), (debug_spec_buffer),
15398 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15399 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15400 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15401 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15402 * gst-libs/gst/audio/gstbaseaudiosink.h:
15403 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15404 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15405 (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
15406 (gst_ringbuffer_play), (gst_ringbuffer_pause),
15407 (gst_ringbuffer_stop), (gst_ringbuffer_delay),
15408 (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
15409 (wait_segment), (gst_ringbuffer_commit),
15410 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
15411 (gst_ringbuffer_clear):
15412 * gst-libs/gst/audio/gstringbuffer.h:
15413 Make the base audiosink return an error when there is no
15414 audiobuffer negotiated.
15416 2005-05-06 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15419 Disable cdparanoia until someone ports it!
15421 2005-05-06 Wim Taymans <wim@fluendo.com>
15423 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15424 (gst_ogg_demux_sink_activate):
15425 And revert after wingo's revert.. sigh..
15427 2005-05-05 Andy Wingo <wingo@pobox.com>
15429 * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
15431 * configure.ac: Return audiorate and subparse from the ghetto.
15432 Re-enable -Wall -Werror.
15433 * gst/subparse/gstsubparse.c:
15434 * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
15435 or chain-based. Cleaned up a bit. Not tested.
15437 2005-05-05 Christian Schaller <christian@fluendo.com>
15439 * Makefile.am: remove stuff that is not building
15440 * configure.ac: remove stuff that is not building
15441 * examples/Makefile.am: remove stuff that is not building
15442 * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
15443 * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
15444 * sys/Makefile.am: remove stuff that is not building
15445 * testsuite/Makefile.am: remove stuff that is not building
15447 2005-05-05 Andy Wingo <wingo@pobox.com>
15449 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
15450 * gst-libs/gst/tag/gstvorbistag.c:
15451 (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
15452 * gst/adder/gstadder.h:
15453 * gst/audioconvert/gstchannelmix.c:
15454 (gst_audio_convert_fill_one_other):
15455 * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
15456 (gst_audiorate_init), (gst_audiorate_chain):
15457 * gst/playback/gstplaybasebin.c: (setup_source):
15458 * gst/playback/test3.c: (update_scale):
15476 2005-05-05 Wim Taymans <wim@fluendo.com>
15478 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15479 (gst_audio_convert_caps_remove_format_info),
15480 (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
15481 (gst_audio_convert_change_state), (gst_audio_convert_channels):
15482 * gst/videotestsrc/gstvideotestsrc.c:
15483 (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
15484 (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
15485 (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
15486 (gst_videotestsrc_init), (gst_videotestsrc_loop):
15487 Don't ignore _push() return values.
15488 Make sure no processing is done when shutting down.
15489 Videotestsrc pad activation fix.
15491 2005-05-05 Wim Taymans <wim@fluendo.com>
15493 * gst/adder/Makefile.am:
15494 * gst/adder/gstadder.c: (gst_adder_setcaps),
15495 (gst_adder_class_init), (gst_adder_init),
15496 (gst_adder_request_new_pad), (gst_adder_collected),
15497 (gst_adder_change_state):
15498 * gst/adder/gstadder.h:
15499 Ported adder as an example of a mixer element using
15500 collect pads. Needs more negotiation work.
15502 2005-05-05 Wim Taymans <wim@fluendo.com>
15504 * ext/theora/theoradec.c: (_inc_granulepos),
15505 (theora_dec_src_event), (theora_dec_sink_event),
15506 (theora_handle_comment_packet), (theora_handle_type_packet),
15507 (theora_handle_header_packet), (theora_handle_data_packet),
15508 (theora_dec_chain):
15509 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
15510 (gst_theora_enc_init), (theora_enc_sink_setcaps),
15511 (theora_push_buffer), (theora_push_packet),
15512 (theora_enc_sink_event), (theora_enc_chain),
15513 (theora_enc_change_state), (theora_enc_set_property),
15514 (theora_enc_get_property):
15515 Added stream lock to decoder so that we can serialize
15517 More theoraenc porting, recover from errors, do clean
15520 2005-05-05 Wim Taymans <wim@fluendo.com>
15522 * ext/ogg/Makefile.am:
15524 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15525 (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
15527 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
15528 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
15529 (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
15530 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
15531 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
15532 (gst_ogg_mux_change_state):
15535 2005-05-05 Wim Taymans <wim@fluendo.com>
15537 * docs/design-audiosinks.txt:
15538 * gst-libs/gst/audio/TODO:
15539 * gst-libs/gst/audio/gstaudiosink.c:
15540 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15541 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15542 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15543 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15544 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15545 (gst_audiosink_create_ringbuffer):
15546 * gst-libs/gst/audio/gstbaseaudiosink.c:
15547 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15548 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15549 (gst_baseaudiosink_set_property), (build_linear_format),
15550 (debug_spec_caps), (debug_spec_buffer),
15551 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15552 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15553 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15554 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15555 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15556 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15557 (gst_ringbuffer_release), (gst_ringbuffer_play),
15558 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
15559 (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
15560 (gst_ringbuffer_set_sample), (wait_segment),
15561 (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
15562 (gst_ringbuffer_advance), (gst_ringbuffer_clear):
15563 More work on the audiosink, mostly debugging and a race in
15566 2005-04-28 Wim Taymans <wim@fluendo.com>
15568 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15569 (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
15570 * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
15571 (vorbis_dec_src_query), (vorbis_dec_src_event),
15572 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15573 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15574 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
15575 Don't crap out when seeking back to position 0.
15577 2005-04-28 Wim Taymans <wim@fluendo.com>
15579 * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
15580 (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
15581 (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
15582 (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
15583 (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
15584 Make audio sink configurable, use alsasink as default.
15586 2005-04-28 Wim Taymans <wim@fluendo.com>
15588 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
15589 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15590 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15591 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
15592 (vorbis_dec_change_state):
15593 * ext/vorbis/vorbisdec.h:
15594 Refactor, use STREAM_LOCK.
15596 2005-04-28 Wim Taymans <wim@fluendo.com>
15598 * ext/theora/theoradec.c: (_inc_granulepos),
15599 (theora_dec_sink_event), (theora_handle_comment_packet),
15600 (theora_handle_type_packet), (theora_handle_header_packet),
15601 (theora_handle_data_packet), (theora_dec_chain),
15602 (theora_dec_change_state):
15603 Refactor a bit, use STREAM_LOCK.
15605 2005-04-28 Wim Taymans <wim@fluendo.com>
15607 * ext/alsa/Makefile.am:
15608 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
15609 (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
15610 (gst_alsa_link), (gst_alsa_close_audio):
15611 * ext/alsa/gstalsaplugin.c: (plugin_init):
15612 * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
15613 (gst_alsasink_dispose), (gst_alsasink_base_init),
15614 (gst_alsasink_class_init), (gst_alsasink_init),
15615 (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
15616 (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
15617 (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
15618 (gst_alsasink_reset):
15619 * ext/alsa/gstalsasink.h:
15620 Implement alsasink with simple open/write/close API.
15621 Make alsa dir build by disabling compilation of code.
15623 2005-04-28 Wim Taymans <wim@fluendo.com>
15625 * gst-libs/gst/audio/Makefile.am:
15626 * gst-libs/gst/audio/audio.h:
15627 * gst-libs/gst/audio/audioclock.c:
15628 * gst-libs/gst/audio/audioclock.h:
15629 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
15630 (gst_audio_clock_class_init), (gst_audio_clock_init),
15631 (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
15632 * gst-libs/gst/audio/gstaudioclock.h:
15633 * gst-libs/gst/audio/gstaudiosink.c:
15634 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15635 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15636 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15637 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15638 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15639 (gst_audiosink_create_ringbuffer):
15640 * gst-libs/gst/audio/gstbaseaudiosink.c:
15641 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15642 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15643 (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
15644 (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
15645 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15646 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15647 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15648 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15649 * gst-libs/gst/audio/gstbaseaudiosink.h:
15650 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15651 (gst_ringbuffer_init), (gst_ringbuffer_finalize),
15652 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15653 (gst_ringbuffer_release), (gst_ringbuffer_play),
15654 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
15655 (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
15656 (gst_ringbuffer_set_sample), (wait_segment),
15657 (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
15658 (gst_ringbuffer_advance), (gst_ringbuffer_clear):
15659 * gst-libs/gst/audio/gstringbuffer.h:
15660 Make ringbuffer faster and more simple by removing the locks
15661 in the playback thread.
15662 Add sample accurate playback based on buffer sample offsets.
15663 Make the baseaudiosink provide a clock.
15664 Parse caps in the base class.
15665 Correctly handle seeking, flushing and state changes.
15667 2005-04-25 Thomas Vander Stichele <thomas at apestaart dot org>
15670 * gst/audioconvert/Makefile.am:
15671 * gst/audioscale/Makefile.am:
15672 Fix part of the build. Come on guys, autogen didn't even work :)
15674 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15677 * gst-libs/gst/Makefile.am:
15678 * gst-libs/gst/media-info/.cvsignore:
15679 * gst-libs/gst/media-info/Makefile.am:
15680 * gst-libs/gst/media-info/README:
15681 * gst-libs/gst/media-info/media-info-priv.c:
15682 * gst-libs/gst/media-info/media-info-priv.h:
15683 * gst-libs/gst/media-info/media-info-test.c:
15684 * gst-libs/gst/media-info/media-info.c:
15685 * gst-libs/gst/media-info/media-info.h:
15686 * gst-libs/gst/media-info/media-info.vcproj:
15687 * pkgconfig/Makefile.am:
15688 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
15689 * pkgconfig/gstreamer-media-info.pc.in:
15690 Remove media-info, which is also successed by playbin (see Totem
15693 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15696 * examples/Makefile.am:
15697 * examples/gstplay/.cvsignore:
15698 * examples/gstplay/Makefile.am:
15699 * examples/gstplay/player.c:
15700 * gst-libs/gst/Makefile.am:
15701 * gst-libs/gst/play/.cvsignore:
15702 * gst-libs/gst/play/Makefile.am:
15703 * gst-libs/gst/play/play.c:
15704 * gst-libs/gst/play/play.h:
15705 * gst-libs/gst/play/play.vcproj:
15706 * pkgconfig/Makefile.am:
15707 * pkgconfig/gstreamer-play-uninstalled.pc.in:
15708 * pkgconfig/gstreamer-play.pc.in:
15709 Remove libgstplay, playbin is now the official successor.
15711 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15714 * gst-libs/gst/Makefile.am:
15715 * gst-libs/gst/xwindowlistener/Makefile.am:
15716 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
15717 * gst-libs/gst/xwindowlistener/xwindowlistener.h:
15718 Remove deprecated xwindowlistener (I've moved xwindowlistening
15719 in the v4l/v4l2 plugins over to serverside).
15721 2005-04-25 David Schleef <ds@schleef.org>
15723 * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
15724 to examples/dynparams. Examples do not belong interspersed with
15726 * examples/dynparams/demo-dparams.c:
15727 * gst/sine/Makefile.am:
15728 * gst/sine/demo-dparams.c:
15730 2005-04-25 David Schleef <ds@schleef.org>
15732 Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
15733 * gst-libs/gst/audio/Makefile.am:
15734 * gst-libs/gst/riff/Makefile.am:
15735 * gst-libs/gst/tag/Makefile.am:
15736 * gst-libs/gst/video/Makefile.am:
15737 * gst-libs/gst/xwindowlistener/Makefile.am:
15739 Convert to 0.9 API, seems to work:
15740 * sys/ximage/Makefile.am:
15741 * sys/ximage/ximagesink.c:
15743 2005-04-24 David Schleef <ds@schleef.org>
15745 Link plugins against libraries:
15746 * ext/alsa/Makefile.am:
15747 * gst/tcp/Makefile.am:
15749 Remove asm code that should be in liboil
15750 * gst/videoscale/Makefile.am:
15751 * gst/videoscale/videoscale_x86_asm.s:
15753 gettext wants these checked in:
15769 2005-04-24 David Schleef <ds@schleef.org>
15771 Convert gst_main() to g_main_loop_run()
15772 * gst/playback/decodetest.c: (main):
15773 * gst/playback/test2.c: (main):
15774 * gst/playback/test3.c: (main):
15775 * gst/playback/test4.c: (main):
15777 Link plugins against libraries:
15778 * ext/libvisual/Makefile.am:
15779 * sys/xvimage/Makefile.am:
15781 2005-04-24 David Schleef <ds@schleef.org>
15783 * configure.ac: Remove idct and resample libs
15784 * gst-libs/gst/Makefile.am: same
15786 Remove usage of gst_library_load():
15787 * ext/alsa/gstalsaplugin.c: (plugin_init):
15788 * ext/libvisual/visual.c: (plugin_init):
15789 * ext/ogg/gstogg.c: (plugin_init):
15790 * ext/theora/theora.c: (plugin_init):
15791 * ext/vorbis/vorbis.c: (plugin_init):
15792 * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
15793 * gst/audioscale/gstaudioscale.c:
15794 * gst/adder/gstadder.c: (plugin_init):
15795 * gst/audioconvert/plugin.c: (plugin_init):
15796 * sys/ximage/ximagesink.c: (plugin_init):
15797 * sys/xvimage/xvimagesink.c: (plugin_init):
15798 * gst/tcp/gsttcpplugin.c: (plugin_init):
15800 Link plugins against libraries:
15801 * ext/ogg/Makefile.am:
15802 * ext/theora/Makefile.am:
15803 * ext/vorbis/Makefile.am:
15804 * gst/audioconvert/Makefile.am:
15806 Create proper libraries:
15807 * gst-libs/gst/riff/Makefile.am:
15808 * gst-libs/gst/audio/Makefile.am:
15809 * gst-libs/gst/video/Makefile.am:
15811 Move resample library to audioscale plugin directory:
15812 * gst-libs/gst/resample/Makefile.am:
15813 * gst-libs/gst/resample/README:
15814 * gst-libs/gst/resample/dtof.c:
15815 * gst-libs/gst/resample/dtos.c:
15816 * gst-libs/gst/resample/functable.c:
15817 * gst-libs/gst/resample/private.h:
15818 * gst-libs/gst/resample/resample.c:
15819 * gst-libs/gst/resample/resample.h:
15820 * gst-libs/gst/resample/resample.vcproj:
15821 * gst-libs/gst/resample/test.c:
15822 * gst/audioscale/Makefile.am:
15823 * gst/audioscale/README:
15824 * gst/audioscale/dtof.c:
15825 * gst/audioscale/dtos.c:
15826 * gst/audioscale/functable.c:
15827 * gst/audioscale/private.h:
15828 * gst/audioscale/resample.c:
15829 * gst/audioscale/resample.h:
15830 * gst/audioscale/test.c:
15832 Move tagedit library to gst-libs:
15833 * gst-libs/gst/tag/Makefile.am:
15834 * gst-libs/gst/tag/gstid3tag.c:
15835 * gst-libs/gst/tag/gsttagediting.c:
15836 * gst-libs/gst/tag/gsttageditingprivate.h:
15837 * gst-libs/gst/tag/gstvorbistag.c:
15838 * gst/tags/Makefile.am:
15839 * gst/tags/gstid3tag.c:
15840 * gst/tags/gstvorbistag.c:
15842 Fix for core changes:
15843 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
15844 (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
15845 (gst_sinesrc_getrange):
15847 2005-04-23 David Schleef <ds@schleef.org>
15849 * gst-libs/gst/Makefile.am: Remove idct. It hasn't been used
15850 in gst-plugins in a long time, and properly belongs in liboil.
15851 * gst-libs/gst/idct/Makefile.am:
15852 * gst-libs/gst/idct/README:
15853 * gst-libs/gst/idct/dct.h:
15854 * gst-libs/gst/idct/doieee:
15855 * gst-libs/gst/idct/fastintidct.c:
15856 * gst-libs/gst/idct/floatidct.c:
15857 * gst-libs/gst/idct/idct.c:
15858 * gst-libs/gst/idct/idct.h:
15859 * gst-libs/gst/idct/idtc.vcproj:
15860 * gst-libs/gst/idct/ieeetest.c:
15861 * gst-libs/gst/idct/intidct.c:
15863 2005-04-20 Wim Taymans <wim@fluendo.com>
15865 * docs/design-audiosinks.txt:
15866 * gst-libs/gst/audio/Makefile.am:
15867 * gst-libs/gst/audio/TODO:
15868 * gst-libs/gst/audio/gstaudiosink.c:
15869 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15870 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15871 (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
15872 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15873 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15874 (gst_audioringbuffer_delay), (gst_audiosink_base_init),
15875 (gst_audiosink_class_init), (gst_audiosink_init),
15876 (gst_audiosink_create_ringbuffer):
15877 * gst-libs/gst/audio/gstaudiosink.h:
15878 * gst-libs/gst/audio/gstbaseaudiosink.c:
15879 (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
15880 (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
15881 (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
15882 (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
15883 (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
15884 (gst_baseaudiosink_create_ringbuffer),
15885 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15886 * gst-libs/gst/audio/gstbaseaudiosink.h:
15887 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15888 (gst_ringbuffer_class_init), (gst_ringbuffer_init),
15889 (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
15890 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15891 (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
15892 (gst_ringbuffer_play), (gst_ringbuffer_pause),
15893 (gst_ringbuffer_resume), (gst_ringbuffer_stop),
15894 (gst_ringbuffer_callback), (gst_ringbuffer_delay),
15895 (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
15896 (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
15897 * gst-libs/gst/audio/gstringbuffer.h:
15898 An attempt at a set of audio base classes together with some
15901 2005-04-20 Wim Taymans <wim@fluendo.com>
15903 * gst/audioconvert/Makefile.am:
15904 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15905 (gst_audio_convert_caps_remove_format_info),
15906 (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
15907 (gst_audio_convert_channels):
15908 Link against audio libs.
15909 Fix audio convert plugin.
15911 2005-04-20 Wim Taymans <wim@fluendo.com>
15913 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
15914 (gst_ogg_demux_sink_activate):
15915 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
15916 (theora_set_header_on_caps), (theora_enc_sink_event),
15917 (theora_enc_chain):
15918 Fix theora encoder.
15920 2005-04-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15922 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
15923 * gst/playback/gstdecodebin.c: (find_compatibles):
15924 Work with staticpadtemplates in elementfactories.
15926 2005-04-12 Wim Taymans <wim@fluendo.com>
15928 * gst/playback/README:
15929 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
15930 (compare_ranks), (print_feature), (gst_decode_bin_init),
15931 (dynamic_create), (dynamic_free), (find_compatibles),
15932 (mimetype_is_raw), (close_pad_link), (got_redirect),
15933 (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
15934 (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
15935 (gst_decode_bin_change_state):
15936 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15937 (gst_play_base_bin_init), (group_destroy), (group_commit),
15938 (check_queue), (queue_overrun), (queue_threshold_reached),
15939 (queue_out_of_data), (gen_preroll_element), (unknown_type),
15940 (new_decoded_pad), (setup_subtitle), (gen_source_element),
15941 (got_redirect), (setup_source), (play_base_eos),
15942 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
15943 (gst_play_base_bin_remove_element):
15944 * gst/playback/gstplaybasebin.h:
15945 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15946 (gst_play_bin_init), (gst_play_bin_dispose),
15947 (gst_play_bin_set_property), (gen_video_element),
15948 (gen_text_element), (gen_audio_element), (remove_sinks),
15949 (gst_play_bin_send_event):
15950 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
15951 (stream_info_change_state), (gst_stream_info_set_mute):
15952 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
15953 (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
15954 (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
15955 (gst_stream_selector_chain):
15956 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
15958 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
15959 (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
15960 (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
15961 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
15962 Raw and crude port of decodebin.
15963 Make playbin compile.
15965 2005-04-06 Wim Taymans <wim@fluendo.com>
15967 * ext/gnomevfs/Makefile.am:
15968 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
15969 (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
15970 (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
15971 (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
15972 (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
15973 (gst_gnomevfssrc_stop):
15974 * ext/ogg/Makefile.am:
15975 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
15976 (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
15977 * ext/theora/Makefile.am:
15978 * ext/theora/theoradec.c: (_inc_granulepos),
15979 (theora_dec_sink_event), (theora_dec_chain):
15980 * ext/vorbis/Makefile.am:
15981 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
15982 (vorbis_dec_sink_event), (vorbis_dec_chain):
15983 * gst-libs/gst/audio/Makefile.am:
15984 * sys/xvimage/Makefile.am:
15985 Make gnomevfssrc extend the source base class.
15986 Fix linking against libs in various plugins.
15988 2005-04-06 Andy Wingo <wingo@pobox.com>
15990 * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
15993 * configure.ac: Add check and AC_SUBST for libgstbase.
15995 2005-03-31 Wim Taymans <wim@fluendo.com>
15997 * examples/seeking/Makefile.am:
15998 * examples/seeking/cdparanoia.c: (main):
15999 * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
16000 (play_cb), (pause_cb), (stop_cb), (main):
16001 * examples/seeking/playbin.c:
16002 * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
16003 (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
16004 (make_sid_pipeline), (make_vorbis_pipeline),
16005 (make_theora_pipeline), (make_vorbis_theora_pipeline),
16006 (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
16007 (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
16008 (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
16009 (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
16011 * examples/seeking/spider_seek.c:
16012 * examples/seeking/vorbisfile.c:
16013 * ext/gnomevfs/Makefile.am:
16014 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
16015 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
16016 (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
16017 (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
16018 (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
16019 (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
16020 (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
16021 (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
16023 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
16024 (gst_ogg_pad_class_init), (gst_ogg_pad_init),
16025 (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
16026 (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
16027 (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
16028 (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
16029 (gst_ogg_pad_event), (gst_ogg_pad_reset),
16030 (gst_ogg_demux_factory_filter), (compare_ranks),
16031 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
16032 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
16033 (gst_ogg_chain_new), (gst_ogg_chain_free),
16034 (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
16035 (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
16036 (gst_ogg_demux_class_init), (gst_ogg_demux_init),
16037 (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
16038 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
16039 (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
16040 (gst_ogg_demux_get_prev_page),
16041 (gst_ogg_demux_deactivate_current_chain),
16042 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
16043 (gst_ogg_demux_bisect_forward_serialno),
16044 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
16045 (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
16046 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
16047 (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
16048 (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
16049 (gst_ogg_demux_change_state), (gst_ogg_print):
16050 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
16051 (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
16052 (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
16053 (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
16054 (gst_ogg_mux_loop):
16055 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
16056 * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
16057 (theora_dec_src_convert), (theora_dec_sink_convert),
16058 (theora_dec_src_query), (theora_dec_src_event),
16059 (theora_dec_sink_event), (theora_dec_chain),
16060 (theora_dec_change_state):
16061 * ext/theora/theoraenc.c: (gst_theora_enc_init),
16062 (theora_enc_sink_setcaps), (theora_buffer_from_packet),
16063 (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
16064 (theora_enc_change_state):
16065 * ext/vorbis/Makefile.am:
16066 * ext/vorbis/oggvorbisenc.c:
16067 * ext/vorbis/oggvorbisenc.h:
16068 * ext/vorbis/vorbis.c: (plugin_init):
16069 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
16070 (vorbis_dec_src_query), (vorbis_dec_src_event),
16071 (vorbis_dec_sink_event), (vorbis_dec_chain),
16072 (vorbis_dec_change_state):
16073 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
16074 (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
16075 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
16076 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
16077 (gst_vorbisenc_change_state):
16078 * ext/vorbis/vorbisenc.h:
16079 * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
16080 * gst-libs/gst/audio/audioclock.c:
16081 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
16082 (gst_audiofilter_init), (gst_audiofilter_chain):
16083 * gst-libs/gst/audio/testchannels.c: (main):
16084 * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
16085 * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
16086 (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
16087 (gmip_find_track_streaminfo), (gmip_find_track_format):
16088 * gst-libs/gst/media-info/media-info.c:
16089 (gst_media_info_read_idler):
16090 * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
16091 (gst_play_get_all_by_interface):
16092 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
16093 (gst_riff_parse_chunk), (gst_riff_parse_file_header),
16094 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
16095 (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
16096 (gst_riff_parse_info):
16097 * gst-libs/gst/riff/riff-read.h:
16098 * gst-libs/gst/riff/riff.c: (plugin_init):
16099 * gst-libs/gst/video/Makefile.am:
16100 * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
16101 (gst_videosink_class_init), (gst_videosink_get_type):
16102 * gst-libs/gst/video/videosink.h:
16103 * gst/audioconvert/bufferframesconvert.c:
16104 (buffer_frames_convert_init), (buffer_frames_convert_fixate),
16105 (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
16106 * gst/audioconvert/channelmixtest.c: (main):
16107 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
16108 (gst_audio_convert_chain),
16109 (gst_audio_convert_caps_remove_format_info),
16110 (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
16111 (gst_audio_convert_setcaps), (_fixate_caps_to_int),
16112 (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
16113 (gst_audio_convert_buffer_to_default_format),
16114 (gst_audio_convert_buffer_from_default_format),
16115 (gst_audio_convert_channels):
16116 * gst/audioconvert/gstchannelmix.h:
16117 * gst/ffmpegcolorspace/avcodec.h:
16118 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16119 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
16120 (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
16121 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
16122 * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
16123 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
16124 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
16125 (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
16126 (mpeg_video_type_find), (mpeg_video_stream_type_find),
16128 * gst/videotestsrc/gstvideotestsrc.c:
16129 (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
16130 (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
16131 (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
16132 (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
16133 (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
16134 (gst_videotestsrc_init), (gst_videotestsrc_src_query),
16135 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
16136 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
16137 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
16138 (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
16139 (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
16140 (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
16141 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
16142 (gst_xvimagesink_navigation_send_event),
16143 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
16144 (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
16145 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
16146 * sys/xvimage/xvimagesink.h:
16147 Plugin port to 0.9, ogg/theora playback should work in the seek
16149 Removed old examples.
16150 Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
16151 explained in 0.9 TODO doc.
16154 2005-02-23 Thomas Vander Stichele <thomas at apestaart dot org>
16176 * testsuite/Makefile.am:
16177 remove a whole bunch of plugins. This module now contains a set
16178 of free reference plugins/elements as agreed.
16180 2005-02-22 Thomas Vander Stichele <thomas at apestaart dot org>
16183 hunting season on 0.9 is now OPEN
16185 2005-02-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16187 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
16188 Kick the hell out of gcc for not warning me about a symbol conflict.
16190 2005-02-22 Luca Ognibene <luogni@tin.it>
16192 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
16194 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
16195 Don't leak caps string (fixes #168134)
16197 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
16198 (gst_jpegenc_init), (gst_jpegenc_finalize),
16199 (gst_jpegenc_change_state):
16200 Don't leak line buffers and context struct (fixes #168133).
16202 2005-02-21 Tim-Philipp Müller <tim at centricular dot net>
16205 * ext/dirac/gstdiracdec.cc:
16206 (gst_diracdec_chain):
16207 Since dirac 0.5.0 the framerate in dirac is expressed as a
16208 rational number. Fix build and up requirement to 0.5.0, and
16209 also pass parameters to gst_diracdec_link in the right order
16212 2005-02-21 Maciej Katafiasz <mathrick@freedesktop.org>
16214 * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
16215 * ext/faad/gstfaad.h:
16216 TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with
16217 certain invalid muxed streams, where some packets will contain
16218 junk after decoder data. Partially fixes #149158.
16220 2005-02-21 Jan Schmidt <thaytan@mad.scientist.com>
16221 * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
16222 Make sure we only write to writable buffers
16224 2005-02-20 Tim-Philipp Müller <tim at centricular dot net>
16226 * gst-libs/gst/riff/riff-media.c:
16227 (gst_riff_create_audio_caps_with_data):
16228 Do actually fix invalid RIFF fmt header values for alaw
16229 and mulaw audio instead of just saying so.
16231 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
16232 Give gst_riff_create_audio_caps_with_data() a chance to
16233 fix up broken format header fields before extracting any
16234 parameters from the header. (fixes #167633)
16236 2005-02-19 Martin Holters <martin.holters@gmx.de>
16238 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
16240 * gst/audioconvert/bufferframesconvert.c:
16241 (buffer_frames_convert_link):
16242 Don't leak othercaps. (fixes #167878)
16244 2005-02-19 Arwed v. Merkatz <v.merkatz@gmx.net>
16247 * ext/libvisual/visual.c: (gst_visual_srclink),
16248 (gst_visual_change_state):
16249 Support libvisual 0.2.0.
16251 2005-02-18 Tim-Philipp Müller <tim at centricular dot net>
16253 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
16254 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
16255 Use same rowstrides for I420 as used everywhere else.
16257 2005-02-17 Tim-Philipp Müller <tim at centricular dot net>
16259 * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
16260 Declare variables at beginning of block and make gcc-2.95 happy
16261 (fixes # 167482, patch by Gergely Nagy).
16263 * gst/tcp/gsttcpclientsrc.c:
16264 * gst/tcp/gsttcpclientsrc.h:
16265 Move some includes into the header, so that struct sockaddr_in is
16266 defined when it should be defined on FreeBSD as well (fixes
16269 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
16270 Don't pass uninitialised values to setsockopt() here either.
16272 2005-02-17 Luca Ognibene <luogni at tin dot it>
16274 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
16276 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
16277 Don't pass uninitialised values to setsockopt(). (fixes #167704)
16279 2005-02-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16281 * gst/playback/gstplaybin.c: (add_sink):
16282 Invert bin_add/link order to workaround deadlock in opt.
16284 2005-02-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16286 * gst/modplug/gstmodplug.cc:
16287 Add missing break causing position queries to fail.
16289 2005-02-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16291 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
16292 Granpos can apparently be -1, which screws up calculations...
16294 2005-02-16 Jan Schmidt <thaytan@mad.scientist.com>
16296 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
16297 (gst_ximagesink_send_pending_navigation),
16298 (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
16299 (gst_ximagesink_init):
16300 * sys/ximage/ximagesink.h:
16301 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
16302 (gst_xvimagesink_send_pending_navigation),
16303 (gst_xvimagesink_navigation_send_event),
16304 (gst_xvimagesink_finalize), (gst_xvimagesink_init):
16305 * sys/xvimage/xvimagesink.h:
16306 Use a mutex protected list to marshal navigation
16307 events into the stream thread from whichever thread
16310 2005-02-15 Tim-Philipp Müller <tim at centricular dot net>
16312 * gst/speed/demo-mp3.c: (time_tick_cb), (main):
16313 Display current position and track length; misc. clean-ups.
16315 * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
16316 (speed_init), (speed_chain):
16317 Add query function, so that the stream length and current position
16318 get adjusted when queried (note that current position queries may
16319 still be wrong if the audio sink returns values based on buffer
16320 timestamps instead of passing on the query).
16322 2005-02-13 Benjamin Otte <otte@gnome.org>
16324 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
16325 (gst_audio_convert_channels):
16326 create channel conversion matrix when linking
16327 * gst/audioconvert/.cvsignore:
16328 * gst/audioconvert/Makefile.am:
16329 * gst/audioconvert/channelmixtest.c: (main):
16330 add (ugly) test that ensures stereo <=> mono conversion works
16333 2005-02-13 Benjamin Otte <otte@gnome.org>
16335 * gst/audioconvert/gstchannelmix.h:
16336 include missing header file
16337 * gst/audioconvert/gstchannelmix.c:
16338 (gst_audio_convert_fill_compatible):
16339 use same sign for both channels when converting to/from compatible
16340 channel. Previously used different signs made the signals cancel
16341 each other out and appear like silence. (fixes #167269)
16343 2005-02-12 Tim-Philipp Müller <tim at centricular dot net>
16345 * gst/ffmpegcolorspace/avcodec.h:
16346 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16347 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
16348 (gst_ffmpegcsp_avpicture_fill):
16349 * gst/ffmpegcolorspace/imgconvert.c:
16350 Convert to and from YV12 (fixes #156379).
16352 2005-02-12 Julien MOUTTE <julien@moutte.net>
16354 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
16355 (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
16356 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
16357 (gst_ximagesink_expose), (gst_ximagesink_set_property),
16358 (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
16359 methods from chain and negotiation and vice versa (Fixes #166142).
16360 * sys/ximage/ximagesink.h: Add stream_lock.
16361 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
16362 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
16363 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
16364 (gst_xvimagesink_expose): Check for xcontext before trying to link.
16366 2005-02-12 Tim-Philipp Müller <tim at centricular dot net>
16368 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
16369 Don't send "Hey! You gave me a NULL pointer you naughty person" as
16370 error message when we can't open the DVD device (when dvdnav_open()
16371 fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
16372 the above). Send something more useful instead (fixes #167117).
16374 2005-02-11 Julien MOUTTE <julien@moutte.net>
16376 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
16377 (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
16378 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
16379 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
16380 (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
16381 (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
16382 methods from chain and negotiation and vice versa (Fixes #166142).
16383 Fix a possible bug of images in the buffer pool being discarded because
16384 we are looking at the wrong geometry.
16385 * sys/xvimage/xvimagesink.h: Add stream_lock.
16387 2005-02-11 David Schleef <ds@schleef.org>
16389 * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
16390 unsigned int. (fixes #167128)
16392 2005-02-11 David Schleef <ds@schleef.org>
16394 * gst/librfb/Makefile.am: Testing stuff before committing is
16395 for wimps... and people with fast machines. Fix stupid
16398 2005-02-11 David Schleef <ds@schleef.org>
16400 * configure.ac: Pull in librfb from my CVS tree, because it is
16401 too small and annoying to be separate. Move rfbsrc plugin
16404 * ext/librfb/Makefile.am:
16405 * ext/librfb/gstrfbsrc.c:
16406 * gst/librfb/Makefile.am:
16407 * gst/librfb/gstrfbsrc.c:
16408 * gst/librfb/rfb.c:
16409 * gst/librfb/rfb.h:
16410 * gst/librfb/rfbbuffer.c:
16411 * gst/librfb/rfbbuffer.h:
16412 * gst/librfb/rfbbytestream.c:
16413 * gst/librfb/rfbbytestream.h:
16414 * gst/librfb/rfbcontext.h:
16415 * gst/librfb/rfbdecoder.c:
16416 * gst/librfb/rfbdecoder.h:
16417 * gst/librfb/rfbutil.h:
16419 2005-02-10 Tim-Philipp Müller <tim at centricular dot net>
16421 * gst/speed/Makefile.am:
16422 * gst/speed/demo-mp3.c: (main):
16423 * gst/speed/filter.func:
16424 * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
16425 (speed_class_init), (speed_init), (speed_chain_int16),
16426 (speed_chain_float32), (speed_chain), (speed_set_property),
16427 (speed_get_property), (speed_change_state):
16428 * gst/speed/gstspeed.h:
16429 Fix speed element and make it chain-based (fixes #156467),
16430 and make it handle more than one channel.
16432 2005-02-10 Jan Schmidt <thaytan@mad.scientist.com>
16434 * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
16435 (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
16436 (gst_dtsdec_chain), (gst_dtsdec_change_state):
16437 * ext/dts/gstdtsdec.h:
16438 Don't clobber the stack constructing the channels array.
16439 Make the element chain-based. DTS tracks can now be played.
16441 2005-02-09 Tim-Philipp Müller <tim at centricular dot net>
16443 * gst-libs/gst/audio/multichannel.h:
16444 * gst-libs/gst/gconf/gconf.h:
16445 * gst-libs/gst/idct/idct.h:
16446 * gst-libs/gst/media-info/media-info-priv.h:
16447 * gst-libs/gst/play/play.h:
16448 * gst-libs/gst/resample/private.h:
16449 * gst-libs/gst/resample/resample.h:
16450 * gst-libs/gst/riff/riff-ids.h:
16451 * gst-libs/gst/video/video.h:
16452 * gst-libs/gst/video/videosink.h:
16453 Add G_BEGIN_DECLS and G_END_DECLS around headers where
16454 missing, so that they work when included from C++ code.
16456 2005-02-09 David Schleef <ds@schleef.org>
16458 * testsuite/gst-lint: Check for non-statically scoped
16459 parent_class variables. This won't be a problem once
16460 plugins are loaded with RTLD_LOCAL.
16462 2005-02-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16464 * ext/mplex/gstmplexibitstream.cc:
16467 2005-02-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16469 * ext/ogg/gstogmparse.c:
16470 * gst/debug/gstnavigationtest.c:
16471 Die, thou faulty symbol pollutors (non-static parent_class).
16473 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16475 * ext/mplex/gstmplexibitstream.cc:
16476 Fix event handling (#165525).
16478 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16480 * ext/mikmod/gstmikmod.c:
16481 * gst/modplug/gstmodplug.cc:
16482 Add missing endianness to template (fixes #165509).
16484 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16486 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
16487 Fix wrong order of reading of optional bytes (#165290).
16489 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16491 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
16492 Implement FILLER event awareness.
16494 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16496 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
16497 Fix track calculations (#166208).
16499 2005-02-08 Gergely Nagy <algernon@bonehunter.rulez.org>
16501 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16503 * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
16504 * ext/libpng/gstpngenc.c:
16505 Fix byte-order, use proper fixed caps. Fixes #164197.
16507 2005-02-08 Jan Schmidt <thaytan@mad.scientist.com>
16512 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
16513 (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
16514 Don't push buffers if the src pad isn't negotiated yet.
16516 * gst/audioconvert/gstaudioconvert.c:
16517 (gst_audio_convert_buffer_to_default_format),
16518 (gst_audio_convert_buffer_from_default_format):
16519 Add support for 24-bit width.
16521 * gst/dvdlpcmdec/.cvsignore:
16522 * gst/dvdlpcmdec/Makefile.am:
16523 * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
16524 (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
16525 (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
16526 (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
16528 * gst/dvdlpcmdec/gstdvdlpcmdec.h:
16529 New decoder for rearranging DVD LPCM into our audio/x-raw-int
16530 format. Needs support for the channels maps if someone can find
16531 a DVD LPCM track with > 2 channels.
16533 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
16534 (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
16535 (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
16536 * gst/mpegstream/gstdvddemux.h:
16537 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
16538 (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
16539 (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
16540 * gst/mpegstream/gstmpegdemux.h:
16541 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
16542 (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
16543 (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
16544 (gst_mpeg_parse_handle_src_query),
16545 (gst_mpeg_parse_handle_src_event):
16546 Use audio/x-dvd-lpcm for LPCM output.
16549 2005-02-08 Gergely Nagy <algernon@bonehunter.rulez.org>
16551 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16553 * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
16554 (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
16555 Add BGRA handling (#165736).
16557 2005-02-08 Francis Labonte <francis_labonte@hotmail.com>
16559 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16561 * gst/law/alaw-decode.c: (alawdec_link):
16562 * gst/law/alaw-encode.c: (alawenc_link):
16563 * gst/law/mulaw-decode.c: (mulawdec_link):
16564 * gst/law/mulaw-encode.c: (mulawenc_link):
16565 Fix caps memleaks (#166600).
16567 2005-02-08 Tim-Philipp Müller <tim at centricular dot net>
16569 * ext/tarkin/mem.h:
16570 * ext/tarkin/wavelet.h:
16571 * ext/tarkin/yuv.h:
16572 * gst/ffmpegcolorspace/avcodec.h:
16573 Include "_stdint.h" instead of <stdint.h>. Fixes build on
16574 systems that don't have stdint.h, like Solaris9 (fixes #166631).
16576 2005-02-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16578 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
16579 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
16580 (gst_xvimagesink_change_state):
16581 Clear window on PAUSED->READY instead of READY->PAUSED. Stop
16582 Xv video (and thereby regenerate Xv colourkey) in clear() so
16583 that PLAY -> READY -> PLAY works (fixes #162504).
16585 2005-02-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16587 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
16588 Switch to list instead of range, since MJPEG-devices really just
16589 support decimations, not any size.
16591 2005-02-05 Jan Schmidt <thaytan@mad.scientist.com>
16592 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
16593 (gst_mpeg2dec_reset), (free_all_buffers),
16594 (gst_mpeg2dec_alloc_buffer), (handle_sequence):
16595 * ext/mpeg2dec/gstmpeg2dec.h:
16596 The libmpeg2 user-allocated buffer management is awkward,
16597 to say the least. Hopefully this fixes things.
16599 2005-02-04 Andy Wingo <wingo@pobox.com>
16601 * gst/audioconvert/bufferframesconvert.c
16602 (buffer_frames_convert_fixate): New function, fixates to 256
16603 frames per buffer by default. (Much better than 1.)
16604 (buffer_frames_convert_init): Set the fixate function for both src
16606 (buffer_frames_convert_link): After success setting nonfixed caps,
16607 get the negotiated caps so we can know how many buffer-frames it
16608 will be. No idea how this worked at all before.
16610 2005-02-05 Jan Schmidt <thaytan@mad.scientist.com>
16612 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
16613 (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
16614 (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
16615 (handle_sequence), (handle_picture):
16616 * ext/mpeg2dec/gstmpeg2dec.h:
16617 Rearrange buffer tracking and refcounting and refactor
16618 a little for readability.
16620 2005-02-04 Jan Schmidt <thaytan@mad.scientist.com>
16621 * sys/v4l/gstv4l.c: (plugin_init):
16622 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
16623 (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
16624 (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
16625 (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
16626 * sys/v4l/gstv4ljpegsrc.h:
16627 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
16628 * sys/v4l/v4l_calls.h:
16629 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
16630 (gst_v4lsrc_get_fps):
16631 * sys/v4l/v4lsrc_calls.h:
16632 Add new v4ljpegsrc for handling the ov51x hacky "I'll give
16633 you jpeg inside rgb frames" driver.
16634 Don't error in the v4lsrc link function, just return
16637 2005-02-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16639 * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
16640 (gst_qcamsrc_open):
16641 Use GST_ELEMENT_ERROR, not g_warning, if open failed.
16643 2005-02-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16645 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
16646 Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
16648 2005-02-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16650 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
16651 Reset negotiated state on PAUSED->READY.
16653 2005-02-02 David Schleef <ds@schleef.org>
16655 * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
16656 whereever possible. (Fixes #165997)
16657 * examples/capsfilter/capsfilter1.c: (main):
16658 * examples/dynparams/filter.c: (create_ui):
16659 * examples/seeking/cdparanoia.c: (get_track_info), (main):
16660 * examples/seeking/chained.c: (main):
16661 * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
16662 (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
16663 (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
16664 (make_mpeg_pipeline), (make_mpegnt_pipeline):
16665 * examples/seeking/spider_seek.c: (make_spider_pipeline):
16666 * examples/switch/switcher.c: (main):
16667 * ext/dv/demo-play.c: (main):
16668 * ext/faad/gstfaad.c: (gst_faad_change_state):
16669 * ext/mad/gstmad.c: (gst_mad_chain):
16670 * ext/smoothwave/demo-osssrc.c: (main):
16671 * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
16672 (gst_gconf_render_bin_from_description),
16673 (gst_gconf_get_default_audio_sink),
16674 (gst_gconf_get_default_video_sink),
16675 (gst_gconf_get_default_audio_src),
16676 (gst_gconf_get_default_video_src),
16677 (gst_gconf_get_default_visualization_element):
16678 * gst/level/demo.c: (main):
16679 * gst/level/plot.c: (main):
16680 * gst/playback/gstplaybin.c: (gen_video_element),
16681 (gen_audio_element):
16682 * gst/playback/test.c: (gen_video_element), (gen_audio_element):
16683 * gst/playondemand/demo-mp3.c: (setup_pipeline):
16684 * gst/sine/demo-dparams.c: (main):
16685 * gst/spectrum/demo-osssrc.c: (main):
16686 * gst/speed/demo-mp3.c: (main):
16687 * gst/volume/demo.c: (main):
16688 * testsuite/embed/embed.c: (main):
16690 2005-02-02 Jan Schmidt <thaytan@mad.scientist.com>
16692 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
16693 (gst_tcpclientsink_finalize):
16694 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
16695 (gst_tcpclientsrc_finalize):
16696 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
16697 (gst_tcpserversink_init), (gst_tcpserversink_finalize):
16698 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
16699 (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
16700 Don't leak the hostname when shutting down.
16701 In tcpserversrc, take a copy of the default hostname.
16703 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16705 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
16706 Set caps to systemstream=TRUE.
16708 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16710 * testsuite/Makefile.am:
16711 Fix more OSX buildbots.
16713 2005-02-02 Jan Schmidt <thaytan@mad.scientist.com>
16715 * ext/mpeg2dec/gstmpeg2dec.c:
16716 Don't send things to NULL PAD_PEERs
16718 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
16719 Copy-on-write the incoming buffer.
16721 * gst/mpegstream/gstdvddemux.h:
16722 * gst/mpegstream/gstmpegclock.h:
16723 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
16724 (normal_seek), (gst_mpeg_demux_handle_src_event):
16725 * gst/mpegstream/gstmpegdemux.h:
16726 * gst/mpegstream/gstmpegpacketize.h:
16727 * gst/mpegstream/gstmpegparse.c:
16728 (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
16729 (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
16730 (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
16731 (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
16732 (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
16733 * gst/mpegstream/gstmpegparse.h:
16734 * gst/mpegstream/gstrfc2250enc.h:
16735 Various changes to the way time is computed that make seeking and
16736 total time estimation much better here.
16737 Use G_BEGIN/END_DECLS instead of __cplusplus
16739 * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
16740 Use gst_buffer_stamp instead of only copying the TIMESTAMP
16742 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16744 * gst/subparse/gstsubparse.c:
16747 2005-01-31 Tim-Philipp Müller <tim at centricular dot net>
16749 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
16750 (theora_enc_chain), (theora_enc_change_state):
16751 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
16752 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
16753 (gst_vorbisenc_change_state):
16754 * ext/vorbis/vorbisenc.h:
16755 Set granulepos and timestamp correctly for streams not
16756 starting at 0, taking into account the initial delay.
16758 2005-01-31 Tim-Philipp Müller <tim at centricular dot net>
16760 * gst/mpegstream/gstdvddemux.c:
16761 Add audio/x-dts to audio pad template caps
16763 2005-01-30 David Schleef <ds@schleef.org>
16765 * ext/polyp/polypsink.c: (gst_polypsink_base_init),
16766 (create_context), (gst_polypsink_link): Fix silly endianness
16767 bug. Add some debugging. Remove float from caps; it doesn't
16768 work. Attempt to get remote audio working.
16770 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16772 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
16775 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16777 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
16778 (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
16779 (gst_avi_demux_stream_data):
16780 * gst/avi/gstavidemux.h:
16781 Invert DIB images. Fixes #132341.
16783 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16785 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16786 (gst_ffmpegcsp_chain):
16787 D'oh, reference the palette data, not the palette structure.
16788 Fixes color distortion in #132341.
16790 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16792 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
16793 PAR can be non-fixed when not provided as argument (#162626).
16795 2005-01-29 David Moore <dcm@acm.org>
16797 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16799 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
16800 (gst_qtdemux_loop_header):
16801 Re-apply patch from #142272 that allows non-seekable sources,
16802 re-proposed by Daniel Drake <dsd@gentoo.org>.
16804 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16806 * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
16807 Use the src template for creating the src pad (#162330).
16809 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16812 * ext/musepack/Makefile.am:
16813 * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
16814 (gst_musepackdec_init), (gst_musepackdec_dispose),
16815 (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
16816 (gst_musepack_stream_init), (gst_musepackdec_loop),
16817 (gst_musepackdec_change_state):
16818 * ext/musepack/gstmusepackdec.cpp:
16819 * ext/musepack/gstmusepackdec.h:
16820 * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
16821 (gst_musepack_reader_read), (gst_musepack_reader_seek),
16822 (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
16823 (gst_musepack_reader_canseek), (gst_musepack_init_reader):
16824 * ext/musepack/gstmusepackreader.cpp:
16825 * ext/musepack/gstmusepackreader.h:
16826 Update to 1.1 API (#165446).
16828 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16833 2005-01-28 Andy Wingo <wingo@pobox.com>
16835 * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
16836 to reflect a different dubious internet source. Add a reference
16837 and some commentary.
16839 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16841 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
16842 (gst_stream_selector_get_caps), (gst_stream_selector_chain):
16843 * gst/playback/gststreamselector.h:
16844 Be more selective when we're redoing caps negotiation from
16845 within the chain function on a stream change.
16847 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16851 * ext/amrnb/Makefile.am:
16852 * ext/amrnb/amrnb.c: (plugin_init):
16853 * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
16854 (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
16855 (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
16856 (gst_amrnbdec_state_change):
16857 * ext/amrnb/amrnbdec.h:
16858 * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
16859 (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
16860 (gst_amrnbparse_init), (gst_amrnbparse_formats),
16861 (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
16862 (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
16863 (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
16864 * ext/amrnb/amrnbparse.h:
16865 Add support for AMR-NB (mobile phone audio format; #155163, #163286).
16866 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16867 Add AMR-NB/-WB raw formats.
16868 * ext/alsa/gstalsa.c: (gst_alsa_link):
16869 Keep valid time when changing format.
16870 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
16871 (qtdemux_parse_trak):
16872 Add some more format-specific options (#140141, #143555, #155163).
16874 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16876 * gst/matroska/matroska-demux.c:
16877 (gst_matroska_demux_parse_blockgroup):
16878 Fix logic error in timing of subtitle stream synchronization.
16879 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
16880 Add skip-chunk, which is found in kodak-camera streams.
16882 2005-01-27 Thomas Vander Stichele <thomas at apestaart dot org>
16886 Adding Vietnamese translation (submitted by Clytie Siddall)
16888 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16890 * gst/playback/gstdecodebin.c: (try_to_link_1):
16891 Use realpad for signal.
16893 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16895 * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
16896 Fix category so decodebin picks it up.
16898 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16900 * ext/mad/Makefile.am:
16901 * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
16902 (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
16903 (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
16904 (found_type), (gst_id3demux_bin_change_state):
16905 * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
16906 (gst_id3_tag_init), (gst_id3_tag_handle_event),
16907 (gst_id3_tag_src_link), (gst_id3_tag_chain),
16908 (gst_id3_tag_change_state), (plugin_init):
16909 * ext/mad/gstmad.h:
16910 Add id3demuxbin (which is a simple bin consisting of id3demux
16911 and typefind), take over rank from id3demux, remove typefind
16912 code from id3demux. Makes all broken mp3s that I know of work,
16913 and thereby fixes #152688.
16915 2005-01-27 Edward Hervey <bilboed@bilboed.com>
16917 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16919 * ext/mad/gstmad.c: (gst_mad_src_event):
16920 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
16921 Allow seeks on audio pad, make mad forward those (#164826).
16922 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
16923 Set duration (#165335).
16925 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16927 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
16928 (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
16929 (gst_asf_demux_process_ext_content_desc),
16930 (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
16931 (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
16932 * gst/asfdemux/gstasfdemux.h:
16933 Improve metadata display, e.g. if the metadata comes before the
16934 streams are loaded (which is perfectly valid).
16936 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16938 * tools/gst-launch-ext-m.m:
16939 Fix AVI/ASF pipelines (#165340).
16941 2005-01-26 Amaury Jacquot <sxpert@esitcom.org>
16942 * ext/cairo/gsttextoverlay.c: include string.h and strings.h to fix
16943 build failure on amd64
16945 2005-01-26 Tim-Philipp Müller <tim at centricular dot net>
16947 * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
16948 (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
16949 Check environment variables GST_ID3V2_TAG_ENCODING,
16950 GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
16951 list of character encodings to force interpretation of non-unicode
16952 strings stored in an ID3v2 tag to a particular encoding. If none
16953 is specified, try to use current locale's encoding, then fall back
16954 to ISO-8859-1 (which will always succeed). (Resolves #149274)
16955 * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
16956 (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
16957 Check environment variables GST_ID3V1_TAG_ENCODING,
16958 GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
16959 list of character encodings to use in case a string encountered
16960 in an ID3v1 tag is not valid UTF-8 already. If no encoding is
16961 specified, try to use the current locale's encoding, then fall
16962 back to ISO-8859-1 (which will always succeed).
16964 2005-01-25 Benjamin Otte <otte@gnome.org>
16966 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
16967 - on half framerate, compute the rate in advance so the comparisons
16968 don't compare wrong values
16969 - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
16971 - don't use mad_header_decode anymore, mad_frame_decode does that
16973 - when getting rid of consumed bytes, reset the stream's skiplen
16976 2005-01-26 Jan Schmidt <thaytan@mad.scientist.com>
16978 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
16979 Use 1/2 a second for default max_discont, as PES streams from DVB
16980 seem to have larger spacings in the SCR.
16983 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16985 * gst/playback/gstplaybasebin.c: (group_commit):
16986 Notify delayed stream-info availability.
16988 2005-01-26 Jan Schmidt <thaytan@mad.scientist.com>
16989 * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
16990 (gst_a52dec_handle_event), (gst_a52dec_chain):
16991 Add some debug output. Check that a discont has a valid
16993 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
16994 (gst_alsa_sink_loop):
16995 Ignore TAG events. A little extra debug for broken timestamps.
16996 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
16997 (dvdnavsrc_change_state):
16998 Ensure we send a discont to engage the link before we send any
17000 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
17001 (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
17002 (_seek_chapter), (seek_sector), (dvdreadsrc_get),
17003 (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
17004 Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
17005 dvd://title works in totem because typefinding sends a seek that ends
17006 up going back to chapter 1 regardless.
17007 * ext/mpeg2dec/gstmpeg2dec.c:
17008 * ext/mpeg2dec/gstmpeg2dec.h:
17009 Output correct timestamps and handle disconts.
17010 * ext/ogg/gstoggdemux.c: (get_relative):
17011 Small guard against a null dereference.
17012 * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
17013 (gst_textoverlay_set_property):
17014 Free memory when done. Don't call gst_event_filler_get_duration on
17015 EOS events. Use GST_LOG and GST_WARNING instead of g_message and
17017 * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
17018 (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
17019 (gst_sw_srclink), (gst_smoothwave_chain):
17020 Draw solid lines, prettier colours.
17021 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
17022 Add a default palette that'll work for some movies.
17023 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
17024 (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
17025 (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
17026 * gst/mpegstream/gstdvddemux.h:
17027 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
17028 (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
17029 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
17030 (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
17031 * gst/mpegstream/gstmpegparse.h:
17032 Use PTM/NAV events when for timestamp adjustment when connected to
17033 dvdnavsrc. Don't use many discont events where one suffices.
17034 * gst/playback/gstplaybasebin.c: (group_destroy),
17035 (gen_preroll_element), (gst_play_base_bin_add_element):
17036 * gst/playback/gstplaybasebin.h:
17037 Make sure we remove subtitles from the same bin we put them in.
17038 * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
17039 (gst_subparse_buffer_format_autodetect),
17040 (gst_subparse_change_state):
17041 Fix some memleaks and invalid accesses.
17042 * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
17043 (oggskel_type_find), (cmml_type_find), (plugin_init):
17044 Some typefind functions for Annodex v3.0 files
17045 * gst/wavparse/gstwavparse.h:
17046 GstRiffReadClass is the correct parent class.
17048 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17050 * gst-libs/gst/riff/riff-media.c:
17051 (gst_riff_create_video_caps_with_data):
17052 Add extradata to huffyuv (fixes #165013).
17053 * gst-libs/gst/riff/riff-read.c:
17054 (gst_riff_read_strf_vids_with_data):
17055 Fix extradata extraction if it is in the chunk size.
17057 2005-01-25 Edward Hervey <bilboed@bilboed.com>
17059 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17061 * gst/effectv/gstquark.c: (gst_quarktv_class_init),
17062 (gst_quarktv_change_state), (gst_quarktv_dispose):
17063 Memory free'ing location fix (#164708).
17065 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17067 * gst/playback/gstplaybasebin.c: (group_commit),
17068 (gen_preroll_element), (probe_triggered), (gen_source_element),
17069 (setup_source), (gst_play_base_bin_change_state),
17070 (gst_play_base_bin_add_element):
17071 Don't block for streams.
17072 * gst/playback/gststreaminfo.c: (stream_info_change_state),
17073 (gst_stream_info_set_mute):
17074 Use gst_pad_set_active_recursive.
17076 2005-01-25 Andy Wingo <wingo@pobox.com>
17078 * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
17079 for #ifndef HAVE_XVIDEO.
17081 2005-01-24 Jeffrey C. Ollie
17083 reviewed by: Maciej Katafiasz <mathrick@freedesktop.org>
17085 * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
17086 * ext/gsm/gstgsmdec.h:
17087 * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
17088 * ext/gsm/gstgsmenc.h:
17089 Fix rate to 8kHz as per spec, removes obscure errors when no rate
17090 was given by property. Add proper buffer timestamps and offsets.
17092 2005-01-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17094 * gst-libs/gst/riff/riff-media.c:
17095 (gst_riff_create_audio_caps_with_data):
17096 Audio can be <8000Hz.
17098 2005-01-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17100 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
17101 Explicit state change to workaround refcount bugs.
17103 2005-01-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17105 * gst/avi/gstavimux.c: (gst_avimux_write_tag),
17106 (gst_avimux_riff_get_avi_header):
17109 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17111 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
17112 (gst_riff_read_element_data):
17113 * gst-libs/gst/riff/riff-read.h:
17114 Add _peek version (req'ed in CDXA).
17115 * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
17116 (gst_cdxaparse_loop):
17117 Fix parsing in playbin.
17118 * gst/playback/gstdecodebin.c: (close_pad_link):
17119 Ignore current_ pads, they cause major annoyance.
17121 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17123 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
17126 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17128 * gst/avi/gstavimux.c: (gst_avimux_write_tag):
17131 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17133 * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
17134 Allow for 0-sized buffers. Fixes length query problems in
17135 starwars.mkv from the testsuite.
17137 2005-01-19 Tim-Philipp Müller <tim at centricular dot net>
17139 * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
17140 (gst_video_box_i420), (gst_video_box_chain):
17141 Fix row strides for I420 (fixes #163159)
17143 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17145 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
17146 MPEG2 has a useful rate property, so we can actually use that.
17147 For MPEG-1, continue using the bytes/time properties.
17149 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17151 * gst-libs/gst/riff/riff-media.c:
17152 (gst_riff_create_video_caps_with_data),
17153 (gst_riff_create_video_template_caps):
17156 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17158 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
17159 Fail if caps negotiation fails. Should fix #162184, and should
17160 definately be in there regardless of it fixing the actual bug.
17161 * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
17162 (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
17163 (gst_avimux_riff_get_avix_header),
17164 (gst_avimux_riff_get_video_header),
17165 (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
17166 (gst_avimux_start_file), (gst_avimux_handle_event),
17167 (gst_avimux_change_state):
17168 * gst/avi/gstavimux.h:
17169 Refactor structure writing to use GST_WRITE_UINT macros, add
17170 metadata writing support.
17172 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17174 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
17175 Elements may already be destroyed when this function is called.
17177 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17179 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
17180 (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
17181 More memory leak fixes (#149162).
17183 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17185 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
17186 (gst_qtdemux_add_stream):
17189 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17191 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
17194 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17196 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
17197 Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
17198 when fixating to six channels in Totem.
17200 2005-01-17 Tim-Philipp Müller <tim at centricular dot net>
17202 * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
17203 Fix compile warnings on Solaris 10 buildbot
17205 2005-01-17 Tim-Philipp Müller <tim at centricular dot net>
17207 * ext/dvdread/dvdreadsrc.c: (_read):
17208 Don't read beyond the last cell in a chapter (fixes
17209 invalid memory access)
17211 2005-01-17 Tim-Philipp Müller <tim at centricular dot net>
17213 * ext/dvdread/stream_labels.c:
17214 (dvdreadsrc_get_audio_stream_labels):
17215 Use NULL for an empty GList instead of g_list_alloc(); fix
17216 memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead
17217 of GString (easier to bulk free later)
17219 2005-01-17 Gergely Nagy <algernon@bonehunter.rulez.org>
17221 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17223 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17224 (gst_ffmpeg_pixfmt_to_caps):
17225 Fix BGRA32 caps (#164209).
17227 2005-01-17 Gergely Nagy <algernon@bonehunter.rulez.org>
17229 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17231 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17232 (gst_ffmpeg_caps_to_pixfmt):
17233 alpha_mask can be RGBA/ABGR. Fixes #164265.
17235 2005-01-17 Francis Labonte <francis_labonte@hotmail.com>
17237 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17239 * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
17240 (gst_mpeg2dec_alloc_buffer):
17241 * ext/mpeg2dec/gstmpeg2dec.h:
17242 Crop if decoding size is not the actual image size (#163676).
17244 2005-01-17 Steve Baker <steve@stevebaker.org>
17246 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17248 * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
17249 (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
17250 Add libsndfile typefind functions (#163309).
17252 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17254 * tools/gst-launch-ext-m.m:
17255 Add .aac, fix .m1v/.m2v (#163891).
17257 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17259 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
17260 Sanity check, don't wait endlessly since the clock might not
17261 actually run at this point (which is a deadlock). Fixes #164069.
17263 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17265 * gst/playback/gstplaybasebin.c: (probe_triggered):
17266 Of course, only pause if group is done...
17268 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17270 * gst/playback/gstplaybasebin.c: (probe_triggered):
17273 2005-01-16 Jan Schmidt <thaytan@mad.scientist.com>
17275 * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
17276 Don't return state change success when the parent
17279 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17281 * gst/avi/gstavimux.c: (gst_avimux_handle_event):
17282 Free events (fix memleak in #162905).
17284 2005-01-15 Gergely Nagy <algernon@bonehunter.rulez.org>
17286 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17288 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17289 (gst_ffmpeg_caps_to_pixfmt):
17290 Fix for depth = 15. Fixes #161675.
17292 2005-01-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17294 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
17295 Set FPS correctly, even for webcams and the like.
17296 * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
17297 Don error on setting while capturing.
17299 2005-01-14 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17301 * ext/dv/gstdvdec.c:
17302 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
17303 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
17304 I'm a bad boy. using /1001. to force C to do float division
17305 and not integer division (as it did in my last commit)
17306 Thanks to David I. Lehn for pointing this mistake.
17308 2005-01-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17310 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
17311 Revert Johan's 1.35->1.36 since it breaks compat.
17313 2005-01-14 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17315 * ext/dv/gstdvdec.c:
17316 * ext/libfame/gstlibfame.c:
17317 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
17318 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
17319 replace framerate aproximations by their real value
17320 (24000/1001, 30000/1001, 60000/1001)
17321 Finish fixing bug #164049
17323 2005-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
17325 * ext/ogg/gstoggmux.c:
17327 * gst/tcp/gstmultifdsink.c:
17328 * gst/tcp/gstmultifdsink.h:
17329 * gst/tcp/gsttcp.c:
17330 * gst/tcp/gsttcp.h:
17331 * gst/tcp/gsttcpclientsink.c:
17332 * gst/tcp/gsttcpclientsrc.c:
17333 * gst/tcp/gsttcpserversink.c:
17334 * gst/tcp/gsttcpserversrc.c:
17335 improve reusability of elements after state changes and errors
17336 make multifdsink throw away streamheaders when receiving new ones
17338 2005-01-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17340 * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
17341 Fix for if items are already in list...
17343 2005-01-12 Benjamin Otte <otte@gnome.org>
17345 * gst/adder/gstadder.c: (gst_adder_loop):
17346 fix adder a bit so it doesn't screw up with events as much anymore
17348 2005-01-12 Jan Schmidt <thaytan@mad.scientist.com>
17350 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
17351 (pixbufscale_scale), (gst_pixbufscale_chain):
17352 * ext/gdk_pixbuf/pixbufscale.h:
17353 Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
17354 to ensure rowstrides are calculated the same way as
17356 Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
17357 that we pick up duration and offset also.
17359 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17361 * gst/avi/gstavimux.c: (gst_avimux_class_init),
17362 (gst_avimux_pad_unlink), (gst_avimux_release_pad):
17365 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17367 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
17368 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
17369 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
17370 (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
17371 Update flags when requested.
17373 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17375 * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
17378 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17380 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
17381 (gst_play_base_bin_init), (gst_play_base_bin_dispose),
17382 (probe_triggered), (new_decoded_pad), (gen_source_element),
17383 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
17384 * gst/playback/gstplaybasebin.h:
17385 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
17386 (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
17387 (gst_play_bin_change_state):
17388 Implement group-switch signal for use in apps to clear metadata
17389 cache, clean up subtitle, add suburi property instead of # hack,
17390 some error-out fixes.
17392 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17394 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
17396 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
17397 If we got a state change in the _get handler, don't return success.
17399 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17401 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
17402 (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
17403 Make jpegdec quiet on MJPEG decoding
17404 * gst/asfdemux/README:
17405 Fix mimetypes for MJPEG and H263
17407 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17409 * ext/theora/theoradec.c: (theora_dec_chain):
17410 Fix broken code generation by gcc by swapping arguments.
17411 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
17414 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17417 delete this file, it is by far outdated
17418 * ext/alsa/gstalsa.1: remove
17419 * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
17420 (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
17421 (gst_alsa_get_caps):
17422 Add HW probing for supported sample rates. Fixes #161704
17424 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17426 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17427 Don't crash, biatch! :).
17429 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17431 * ext/musepack/gstmusepackreader.cpp:
17432 * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
17433 Some work on tags - still doesn't work in playbin...
17434 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17437 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17439 * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
17440 Also shove tags on kid pads.
17442 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17444 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
17445 Don't bail on unknown events.
17446 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17447 Don't crash on events before negotiation.
17448 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
17449 Send tags on pads, too.
17450 * gst/playback/gststreamselector.c:
17451 (gst_stream_selector_request_new_pad):
17452 Forward events on first pad if no input was selected yet.
17454 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17456 * gst/playback/gstplaybasebin.c: (setup_substreams):
17457 Don't disable streamtype if the stream doesn't exist, since
17458 then playing a video after audio will disable both and nothing
17459 will happen. Fixes the testsuite.
17461 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17463 * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
17464 (gst_v4l_xoverlay_set_xwindow_id):
17465 * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
17466 (gst_v4l2_xoverlay_set_xwindow_id):
17467 Add debug categories, fix overlay disabling.
17469 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17471 * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
17472 * ext/alsa/gstalsa.h:
17473 Add HW probing for period_count/size and buffer_size MIX/MAX
17474 Adjust default/user defined value if out of bounds
17475 Should fix bug #162024
17477 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17479 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
17480 Fix warning (#161191).
17482 2005-01-09 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17484 * ext/dvdread/stream_labels.c:
17485 (dvdreadsrc_get_audio_stream_labels):
17486 Fix warning (init the good variable in switch default)
17488 2005-01-09 Koop Mast <kwm@rainbow-runner.nl>
17490 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17492 * gst/tta/gstttaparse.c: (gst_tta_src_event):
17493 Fix gcc-2.95 compile (#163485).
17495 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17498 * ext/flac/gstflacenc.c: (gst_flacenc_init),
17499 (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
17500 (gst_flacenc_tell_callback), (gst_flacenc_chain),
17501 (gst_flacenc_change_state):
17502 * ext/flac/gstflacenc.h:
17503 Update for API change in flac-1.1.1. Update requirement in
17504 configure.ac. Fixes #162974.
17506 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17508 * gst/playback/gstplaybasebin.c: (group_destroy):
17509 Remove hack to get rid of assert and get rid of unlinked
17512 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17514 * gst/playback/gstplaybasebin.c: (setup_source):
17515 Set source to NULL so that resources are free'ed. Fixes issues
17516 with playback of CDDA and similar device-accessing things.
17518 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17520 * testsuite/embed/Makefile.am:
17521 test->noinst, fix make test in buildbot.
17523 2005-01-09 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17525 * ext/dvdread/stream_labels.c: new file
17526 * ext/dvdread/stream_labels.h: new file
17527 * ext/dvdread/Makefile.am:
17528 * ext/dvdread/dvdreadsrc.c: (_seek_title):
17529 Extract audio stream label from DVD IFO files.
17530 It only dump them on the console for now, still have to
17531 make playbin aware of them.
17533 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17535 * gst/playback/gstplaybasebin.c: (setup_source):
17538 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17540 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
17541 (gen_preroll_element), (remove_groups), (setup_subtitle),
17542 (gen_source_element), (setup_source):
17543 * gst/playback/gstplaybasebin.h:
17544 Multiple .sub files is just a stupid idea... Fix some threading
17545 mistakes. Interestingly, external .sub files cause playbin to
17546 hang, I don't know why... Parsing fixes contributed by Fran??ois
17547 Kooman <fkooman@tuxed.net>.
17549 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17551 * testsuite/embed/Makefile.am:
17554 2005-01-09 Gergely Nagy <algernon@bonehunter.rulez.org>
17556 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17558 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
17559 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
17560 (gst_pngenc_set_property):
17561 * ext/libpng/gstpngenc.h:
17562 Add compression level property (#163323).
17564 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17567 * examples/capsfilter/capsfilter1.c: (main):
17568 * examples/seeking/spider_seek.c: (make_spider_pipeline):
17569 * ext/dvdread/Makefile.am:
17570 * ext/dvdread/demo-play:
17571 * ext/dvdread/demo-play.c:
17572 * gconf/gstreamer.schemas.in:
17573 * gst-libs/gst/gconf/gconf.c:
17575 * testsuite/Makefile.am:
17576 * testsuite/embed/Makefile.am:
17577 * testsuite/embed/embed.c: (cb_expose), (main):
17578 Remove all references to xvideosink, fix examples (#140845).
17579 * gst/playback/gstplaybasebin.c: (group_destroy):
17580 Apparently, disposal does not unlink - so do explicitely.
17581 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
17584 2005-01-09 Maciej Katafiasz <mathrick@freedesktop.org>
17586 * README: fix PKG_CONFIG_PATH instructions, what was there
17587 previously was breaking default search path, not nice.
17590 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17592 * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
17593 (gst_audioscale_chain):
17594 %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
17595 when resampling - how the ^@$^!@^! is this possible?!?
17597 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17599 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
17600 Reset variables on READY.
17601 * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
17602 (gst_matroska_mux_loop):
17603 Require data before writing header.
17605 2005-01-09 Francis Labonte <francis_labonte@hotmail.com>
17607 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17609 * ext/mad/gstmad.c: (gst_mad_chain):
17610 Don't call mad_stream_sync() directly after recovering sync.
17613 2005-01-09 Martin Eikermann <meiker@upb.de>
17615 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17617 * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
17618 (snapshot_handler), (gst_snapshot_sinkconnect),
17619 (gst_snapshot_chain):
17620 Allocate resources when required, fix recursive signal emission
17621 and fix caps. Fixes #161667.
17623 2005-01-09 Gergely Nagy <algernon@bonehunter.rulez.org>
17625 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17627 * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
17628 (gst_pngdec_chain):
17629 Handle only 8-bppc (bits-per-pixel-component) images, better
17630 error handling and correct strides. Fixes #163177.
17631 * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
17632 (gst_pngenc_chain):
17633 Better error handling. Fixes #163348.
17635 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17637 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
17638 (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
17639 (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
17640 (dvdnavsrc_uri_handler_init):
17641 Add DVD-nav URI (dvdnav://) for Totem testing purposes.
17642 * gst/playback/gstplaybasebin.c: (gen_source_element):
17643 Add MMS to streaming URIs.
17645 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17647 * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
17648 * sys/xvimage/xvimagesink.c:
17649 (gst_xvimagesink_navigation_send_event):
17650 Check for pad availability before sending event.
17652 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17654 * gst-plugins.spec.in:
17657 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17660 Since we use functions from CVS, up requirement.
17662 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17664 * gst/playback/Makefile.am:
17665 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
17666 (group_destroy), (group_commit), (group_is_muted),
17667 (gen_preroll_element), (add_stream), (unknown_type),
17668 (probe_triggered), (preroll_unlinked), (mute_stream),
17669 (silence_stream), (new_decoded_pad), (setup_substreams),
17670 (setup_source), (get_active_source), (mute_group_type),
17671 (muted_group_change_state), (set_active_source),
17672 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
17673 (play_base_eos), (gst_play_base_bin_change_state):
17674 * gst/playback/gstplaybasebin.h:
17675 * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
17676 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
17677 (gst_stream_info_dispose), (stream_info_mute_pad),
17678 (stream_info_change_state), (gst_stream_info_set_mute):
17679 * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
17680 (gst_stream_selector_base_init), (gst_stream_selector_class_init),
17681 (gst_stream_selector_init), (gst_stream_selector_dispose),
17682 (gst_stream_selector_get_linked_pad),
17683 (gst_stream_selector_get_caps), (gst_stream_selector_link),
17684 (gst_stream_selector_get_linked_pads),
17685 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
17686 * gst/playback/gststreamselector.h:
17687 Adding stream selection support plus required properties for
17688 applications to use this. Fully fixes #100931.
17690 2005-01-08 Benjamin Otte <otte@gnome.org>
17692 * gst/games/gstpuzzle.c: (nav_event_handler):
17693 - handle nav events differently: forward every event no matter if it
17694 was handled or not.
17696 You can now cheat by using navigationtest ! puzzle and moving the
17697 mouse close to the edge of a tile. ;)
17699 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17702 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
17703 * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
17704 (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
17705 (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
17706 (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
17707 (gst_ogm_parse_plugin_init):
17708 * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
17709 (gst_textoverlay_link), (gst_textoverlay_getcaps),
17710 (gst_textoverlay_event), (gst_textoverlay_video_chain),
17711 (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
17712 * ext/pango/gsttextoverlay.h:
17713 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
17714 (gst_matroska_demux_handle_seek_event),
17715 (gst_matroska_demux_sync_streams),
17716 (gst_matroska_demux_parse_blockgroup),
17717 (gst_matroska_demux_subtitle_caps),
17718 (gst_matroska_demux_plugin_init):
17719 * gst/matroska/matroska-ids.h:
17720 * gst/playback/gstdecodebin.c: (close_pad_link):
17721 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
17722 (gen_preroll_element), (remove_groups), (add_stream),
17723 (new_decoded_pad), (setup_subtitles), (gen_source_element),
17725 * gst/playback/gstplaybasebin.h:
17726 * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
17727 * gst/subparse/Makefile.am:
17728 * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
17729 (gst_subparse_base_init), (gst_subparse_class_init),
17730 (gst_subparse_init), (gst_subparse_formats),
17731 (gst_subparse_eventmask), (gst_subparse_event),
17732 (gst_subparse_handle_event), (convert_encoding), (get_next_line),
17733 (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
17734 (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
17735 (parse_mpsub_deinit), (parse_mpsub_init),
17736 (gst_subparse_buffer_format_autodetect),
17737 (gst_subparse_format_autodetect), (gst_subparse_loop),
17738 (gst_subparse_change_state), (gst_subparse_type_find),
17740 * gst/subparse/gstsubparse.h:
17741 * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
17743 Add subtitle support, .sub parser (supports SRT and MPsub),
17744 OGM text support, Matroska UTF-8 text support, deadlock fixes
17745 all over the place, subtitle awareness in decodebin/playbin
17746 and some fixes to textoverlay to handle subtitles in a stream
17747 correctly. Fixes #100931.
17749 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17751 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
17752 Check for pad availability before doing a query on it.
17754 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17756 * ext/dv/gstdvdec.c:
17757 really fix bpp24/32 dvdec caps (classic rgba indeed)
17758 * gst/asfdemux/gstasfdemux.c:
17759 (gst_asf_demux_process_ext_content_desc):
17760 don't send text tags if they are empty (bis repetita)
17762 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17764 * ext/dv/gstdvdec.c:
17765 remove unneeded comment from dvdec
17766 (related to DV 4CC codes in AVI files)
17767 moved them in gstreamer/docs/random/mimetypes
17768 * gst/asfdemux/gstasfdemux.c:
17769 (gst_asf_demux_process_ext_content_desc):
17770 don't send text tags if they are empty
17771 fix mem leak on error path
17772 * gst/ffmpegcolorspace/avcodec.h:
17773 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17774 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
17775 (gst_ffmpegcsp_avpicture_fill):
17776 * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
17777 * gst/ffmpegcolorspace/imgconvert_template.h:
17778 adds BGR32 and BGRA32 to ffmpegcolorspace
17779 (still bad colors, fixing it on next commit)
17780 helps with dvdec outputing BGR32
17782 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17784 * ext/dv/gstdvdec.c:
17785 Fix audio caps i just broke (missing ',')
17786 * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
17787 (gst_matroska_mux_reset):
17788 Fix typo + add FIXME about old "x-gst-metadata" crap
17790 2005-01-07 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17792 * ext/dv/demo-play.c: (main):
17793 xvideosink -> xvimagesink
17794 * ext/dv/gstdvdec.c:
17795 change rgb 32/32 caps to 24/32 (no alpha)
17796 change nb of channels to be a list (2 or 4, not 2)
17797 change sample rate to be a list (32, 44.1, 48 kHz) not a range
17798 * gst/asfdemux/gstasfdemux.c:
17799 (gst_asf_demux_process_ext_content_desc):
17800 Add 'date/year' to extracted metadata list
17802 2005-01-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17804 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
17805 The return value of fixate_to does not imply that the requested
17806 value was set, so don't assume.
17808 2005-01-07 Gergely Nagy <algernon@bonehunter.rulez.org>
17810 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17812 * ext/libpng/gstpngdec.c:
17813 * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
17814 (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
17815 * ext/libpng/gstpngenc.h:
17816 Alpha support (encoder; #163161), mime fixage.
17818 2005-01-07 Sebastien Cote <sc5@hermes.usherb.ca>
17820 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17822 * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
17823 (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
17824 (gst_faac_set_property), (gst_faac_get_property):
17825 * ext/faac/gstfaac.h:
17826 Allow for ADTS output (#153434).
17828 2005-01-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17830 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
17831 Fix against template (#150576).
17833 2005-01-06 Benjamin Otte <otte@gnome.org>
17835 * gst/games/gstpuzzle.c: (draw_puzzle):
17836 don't draw a puzzle if either width or height of tiles would be 0.
17838 2005-01-06 Benjamin Otte <otte@gnome.org>
17840 * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
17841 (gst_puzzle_class_init), (gst_puzzle_finalize):
17842 no memleaks, please
17843 (gst_puzzle_create), (gst_puzzle_init),
17844 (gst_puzzle_set_property), (gst_puzzle_setup):
17845 change initialization code around so we don't reshuffle on resize
17847 fix another stupid typo
17849 2005-01-06 Benjamin Otte <otte@gnome.org>
17851 * gst/games/gstvideoimage.c: (copy_hline_YUY2):
17852 fix stupid typo that borked copying on YUY2
17854 2005-01-06 Benjamin Otte <otte@gnome.org>
17856 * gst/games/gstpuzzle.c: (draw_puzzle):
17857 fix edges when image sizes aren't multiples of tile sizes
17859 2005-01-06 Benjamin Otte <otte@gnome.org>
17861 * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
17862 make RGB endianness work correctly
17863 (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
17864 refactor and fix race with initial shuffling
17865 (nav_event_handler):
17866 allow using the mouse to puzzle
17868 insist on tiles having width and height as multiples of 4 to get
17869 clean YUV image handling
17870 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
17871 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
17872 s/DEBUG/LOG/ for common messages
17873 (gst_xvimagesink_navigation_send_event):
17874 fix mouse event translation to not include screen PAR
17875 * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
17876 fix mouse event translation to actually work
17878 2005-01-06 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17880 * gst/asfdemux/gstasfdemux.c:
17881 (gst_asf_demux_process_ext_content_desc):
17882 Extract TrackNumber metadata + clean up code
17883 * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
17884 Hope this is the good fix (var used unitialised)
17886 2005-01-06 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17888 * ext/faad/gstfaad.c: (gst_faad_chain):
17889 Only increment timestamp if it's valid. Fixes raw AAC streams.
17891 2005-01-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
17894 * gst/games/Makefile.am:
17895 * gst/games/gstpuzzle.c:
17896 add a puzzle game with...
17897 * gst/games/gstvideoimage.c:
17898 * gst/games/gstvideoimage.h:
17899 ... full colorspace support (that includes YUV9 and RGB16)) stolen
17900 from videotestsrc and made into something that would be a nice
17901 library for a lot of other plugins.
17903 2005-01-06 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17906 don't compile faad plugin if a RC of 2.0 is found
17907 Fixes #155346 (and FC1 buildbot)
17908 * gst/asfdemux/gstasfdemux.c:
17909 (gst_asf_demux_process_ext_content_desc):
17910 try to make Solaris compiler happier
17912 2005-01-06 Paul Jack <pjack@sfaf.org>
17914 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17916 * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
17917 Fix segfault (#161667).
17919 2005-01-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17921 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
17922 Fix framerate reporting.
17924 2005-01-05 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17926 * gst-libs/gst/riff/riff-ids.h:
17927 * gst/wavenc/riff.h:
17928 Add AMR (VBR and CBR) ids to riff.h audio codec list
17929 * gst/asfdemux/gstasfdemux.c:
17930 (gst_asf_demux_process_ext_content_desc),
17931 (gst_asf_demux_process_object):
17932 Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
17934 2005-01-05 Martin Eikermann <meiker@upb.de>
17936 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17938 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
17939 (gst_dvd_demux_handle_discont):
17940 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
17941 (gst_mpeg_demux_handle_discont):
17942 Recreate pads on new-media (#160730).
17943 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
17944 Send discont even if manager changes timestamps (#161929).
17946 2005-01-05 Sebastien Cote <sc5@hermes.usherb.ca>
17948 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17950 * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
17951 Fix invalid memory access (#159211).
17953 2005-01-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17955 * examples/gstplay/player.c: (main):
17957 * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
17958 Add visualizations.
17959 * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
17960 (gst_a52dec_handle_frame):
17962 * ext/dvdnav/gst-dvd:
17963 Add audioconvert. Fixes #161325.
17964 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
17965 Explicitely case to gint64. Possible valgrind error.
17966 * gst-libs/gst/play/play.c: (caps_set), (setup_size),
17967 (gst_play_tick_callback), (gst_play_change_state),
17968 (gst_play_dispose), (gst_play_init), (gst_play_class_init),
17969 (gst_play_set_location), (gst_play_get_location),
17970 (gst_play_seek_to_time), (gst_play_set_data_src),
17971 (gst_play_set_video_sink), (gst_play_set_audio_sink),
17972 (gst_play_set_visualization), (gst_play_connect_visualization),
17973 (gst_play_get_framerate), (gst_play_get_all_by_interface),
17975 Use playbin. Fixes #139749 and #147744.
17976 * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
17978 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
17979 (audioscale_get_type), (gst_audioscale_base_init),
17980 (gst_audioscale_class_init), (gst_audioscale_expand_caps),
17981 (gst_audioscale_getcaps), (gst_audioscale_fixate),
17982 (gst_audioscale_link), (gst_audioscale_get_buffer),
17983 (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
17984 (gst_audioscale_init), (gst_audioscale_dispose),
17985 (gst_audioscale_chain), (gst_audioscale_set_property),
17986 (gst_audioscale_get_property), (plugin_init):
17988 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
17990 * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
17991 (qtdemux_tag_add_str), (qtdemux_tag_add_num),
17992 (qtdemux_tag_add_gnre), (qtdemux_video_caps):
17993 Add more metadata (fixes #162656).
17995 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
18000 === release 0.8.7 ===
18002 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
18007 releasing 0.8.7, "Hyperspace"
18009 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
18011 patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
18013 * gst/playback/gstplaybasebin.c:
18014 Fix for #162924 - free caps after use, not before
18016 2005-01-04 Thomas Vander Stichele <thomas at apestaart dot org>
18018 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18020 * gst/playback/gstplaybasebin.c:
18021 * gst/wavparse/gstwavparse.c:
18022 Fix for #154773 - fixes playback of small .wav files
18024 2005-01-03 Thomas Vander Stichele <thomas at apestaart dot org>
18026 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18028 * gst/audioscale/gstaudioscale.c:
18029 Fix for #162819 - make audioscale reusable
18030 Fixes playback of more than one file with playbin/totem
18032 2004-12-29 Thomas Vander Stichele <thomas at apestaart dot org>
18034 * gst/ffmpegcolorspace/avcodec.h:
18035 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18036 * gst/ffmpegcolorspace/imgconvert.c:
18037 clean up the mess that made me cry and avoid needless duplication
18039 2004-12-29 Thomas Vander Stichele <thomas at apestaart dot org>
18041 * gst/ffmpegcolorspace/imgconvert.c:
18042 give some indication of why we're segfaulting
18044 2004-12-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18047 Fix indentation, fix v4l2 plugin detection.
18049 Fix libmms location (Maciej, use diff -u!).
18050 * ext/alsa/gstalsa.c: (gst_alsa_init):
18051 Initialize caps cache to NULL.
18052 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
18053 Only change state on audiosink if it exists.
18055 2004-12-28 Maciej Katafiasz <mathrick@mathrick.org>
18057 * gst/matroska/matroska-demux.c:
18058 * gst/matroska/matroska-ids.h:
18059 * gst/matroska/matroska-demux.h:
18060 Fix Vorbis streams failing to decode in some files, where cluster_time
18061 isn't 0, because then it doesn't send codec_priv before actual data.
18062 Remove time-based test and replace it with marker set on beginning of
18065 2004-12-28 David Schleef <ds@schleef.org>
18067 Merge patch from Ronald fixing problems with streaming
18069 * ext/cairo/gstcairo.c: (plugin_init):
18070 * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
18071 (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
18072 (gst_textoverlay_video_chain), (gst_textoverlay_loop),
18073 (gst_textoverlay_font_init), (gst_textoverlay_init),
18074 (gst_textoverlay_set_property):
18075 * ext/cairo/gsttextoverlay.h:
18077 2004-12-27 David Schleef <ds@schleef.org>
18079 * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
18080 (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
18081 (gst_textoverlay_video_chain), (gst_textoverlay_loop),
18082 (gst_textoverlay_font_init), (gst_textoverlay_init),
18083 (gst_textoverlay_set_property): Improvements to actually
18084 render text as white on black outline on video, including
18085 font selection and horizontal/vertical alignment. (Ronald's
18087 * ext/cairo/gsttextoverlay.h:
18089 2004-12-26 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18091 * ext/ogg/gstogg.c:
18092 * ext/ogg/gstogmparse.c:
18093 fix ogm[audio/video]parse plugin registration
18094 (riff won't load if bytestream is already loaded)
18096 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
18098 * gst/audioconvert/gstchannelmix.c:
18101 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
18105 disable docs again until it actually passes make distcheck.
18107 2004-12-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18109 * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
18110 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
18112 Add 3GP (variables name Q3GP because they can't start with a
18113 number). Add samr audio fourcc (used in .3gp files), decoder
18114 is work in progress. Also do a GST_WARNING instead of ERROR
18115 in case of unknown nodes, to decrease output.
18117 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
18122 2004-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
18125 * ext/speex/gstspeexdec.h:
18126 * ext/speex/gstspeexenc.h:
18127 Fixes #158382. Make speex plugin compatible with both 1.0 and 1.1.
18128 Fix detection code in configure.ac
18130 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18132 * gst/matroska/matroska-demux.c:
18133 (gst_matroska_demux_parse_blockgroup):
18134 Save position, so that queries give proper return values. Don't
18135 know how this could ever have worked before...
18137 2004-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
18140 Put additional LAME check inside the conditional. Fixes #152339
18142 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18144 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18145 (gst_avi_demux_stream_scan):
18146 Add some more debug. Fix logic error when setting movi offset
18147 while reading index.
18149 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18151 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18152 (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
18153 (gst_avi_demux_process_next_entry):
18154 Add some debugging. Better detection of broken indexes and the
18155 accompanying index recovery. No infinite loops on state changes
18156 when we're still in our loopfunction.
18158 2004-12-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18163 2004-12-22 Archana Shah <archana.shah@wipro.com>
18165 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18167 * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
18168 Normalizing the value before setting
18169 (gst_sunaudiomixer_get_volume):
18170 Normalizing the value after getting. Fixes bug# 161980
18172 2004-12-22 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18174 * Makefile.am: Make sure docs gets disted
18175 * docs/Makefile.am: Make sure all needed files get disted
18176 * gst-plugins.spec.in: latest updates
18178 2004-12-22 Wim Taymans <wim@fluendo.com>
18180 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
18181 Revert patch 1.38 as clock distribution over schedulers does
18182 not work correcly in the core yet.
18184 2004-12-21 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18186 * sys/oss/README: remove this file, which predates my birth
18187 (and which content is by far outdated)
18189 2004-12-20 Stefan Kost <ensonic@users.sf.net>
18193 * docs/Makefile.am:
18194 * docs/libs/Makefile.am:
18195 * docs/libs/gst-plugins-libs-docs.sgml:
18196 * docs/libs/gst-plugins-libs-sections.txt:
18197 * docs/libs/tmpl/gstgconf.sgml:
18199 * docs/version.entities.in:
18200 Added boilerplate gtk-doc files for plugin-libs documentation.
18202 2004-12-19 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18204 * gst/auparse/gstauparse.c: fix int and float audio caps
18206 2004-12-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18208 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
18209 * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
18210 g_assert() can be a macro, don't use #ifdef inside it.
18212 2004-12-19 Edward Hervey <bilboed@bilboed.com>
18214 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18216 * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
18217 (gst_videorate_init), (gst_videorate_chain),
18218 (gst_videorate_change_state):
18219 Event handling (fixes #159986).
18221 2004-12-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18223 * gst-libs/gst/riff/riff-media.c:
18224 (gst_riff_create_video_caps_with_data):
18225 Add BLZ0 (Blizzard's version of DivX) fourcc.
18227 2004-12-18 David Schleef <ds@schleef.org>
18229 * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
18232 2004-12-18 David Schleef <ds@schleef.org>
18234 * gst/tta/ttadec.h: Disable some header code that isn't used
18235 and clearly isn't portable.
18237 2004-12-18 David Schleef <ds@schleef.org>
18239 * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
18240 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
18241 (avcodec_get_pix_fmt), (avpicture_layout),
18242 (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
18243 (get_convert_table_entry), (img_convert), (img_get_alpha_info):
18244 Fix code to not use GCC extensions (and c99 extensions that
18245 Forte does not like.)
18247 2004-12-19 Tim-Philipp Müller <t.i.m@zen.co.uk>
18249 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18251 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
18252 (gst_deinterlace_chain):
18253 Rowstride fixes. Fixes #161039.
18254 * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
18255 (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
18256 (gst_video_crop_getcaps), (gst_video_crop_link),
18257 (gst_video_crop_i420), (gst_video_crop_chain),
18258 (gst_video_crop_change_state):
18259 Rework of negotiation. Actually works now. Fixes #158650.
18261 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18263 * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
18264 That was very stupid.
18266 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18268 * gst/matroska/matroska-demux.c:
18269 (gst_matroska_demux_parse_blockgroup):
18270 Fix possible crasher.
18272 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18274 * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
18275 (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
18276 Lace sizes can be zero.
18278 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18280 * ext/musepack/gstmusepackdec.cpp:
18281 Fetch error return values. Fixes #161624.
18282 * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
18285 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18287 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
18288 Work for truncated (unfinished download etc.) files. Fixes #160514.
18290 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18292 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18293 Fix for integer overflow. Makes #156001 not crash. Probably masks
18296 2004-12-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18298 * gst/ac3parse/gstac3parse.c: (plugin_init):
18299 Parsers never have ranks. Fixes #159651.
18301 2004-12-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
18303 * gst/playback/gstdecodebin.c: (compare_ranks):
18304 make sure the facotries are ordered the same every time even if they
18305 have the same rank by using the name
18306 * gst/playback/gstdecodebin.c: (find_compatibles):
18307 make sure we don't add factories to the list twice
18309 2004-12-16 David Schleef <ds@schleef.org>
18311 * configure.ac: look for musepack headers as musepack/*.h
18313 * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
18314 * ext/musepack/gstmusepackreader.h: same
18316 2004-12-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18318 * gst-libs/gst/riff/riff-read.c:
18319 (gst_riff_read_strf_auds_with_data):
18320 Read extradata correctly (fixes #155879).
18322 2004-12-16 David Schleef <ds@schleef.org>
18324 * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
18325 audio. does _not_ attempt or allow conversion unless channels
18328 2004-12-16 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18330 * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
18332 2004-12-16 David Schleef <ds@schleef.org>
18334 * gst/audioscale/gstaudioscale.c: the resample library only
18335 handles 1 or 2 channels. Change caps to compensate.
18337 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18339 * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
18340 (gst_matroska_demux_audio_caps):
18341 Some MPEG-AAC hacks, because else it doesn't work...
18343 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18345 * gst-libs/gst/riff/riff-media.c:
18346 (gst_riff_create_video_caps_with_data),
18347 (gst_riff_create_video_template_caps):
18350 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18352 * gst-libs/gst/audio/Makefile.am:
18353 Try to fix buildbot.
18355 2004-12-16 Thomas Vander Stichele <thomas at apestaart dot org>
18357 * gst/tcp/gstmultifdsink.c:
18358 Clean up and uniformize debugging.
18360 2004-12-16 Edward Hervey <bilboed@bilboed.com>
18362 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18364 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
18365 (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
18366 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
18367 (gst_mpeg_demux_change_state):
18368 Reset on ready. Fixes 160276.
18370 2004-12-16 Sebastien Cote <sc5@hermes.usherb.ca>
18372 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18374 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18375 (gst_ffmpegcsp_pad_link):
18376 Fix memleak (#154815).
18378 2004-12-16 James Bowes <bowes@cs.dal.ca>
18380 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18382 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
18383 (gst_musicbrainz_init), (gst_musicbrainz_chain),
18384 (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
18385 * ext/musicbrainz/gsttrm.h:
18386 Add support for using a proxy server when getting a trm id from
18387 the MusicBrainz database (#149613).
18389 2004-12-16 Christophe Fergeau <teuf@gnome.org>
18391 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18393 * gst/playback/gstdecodebin.c: (new_pad), (close_link):
18394 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
18395 Fix memleaks (#157233).
18397 2004-12-16 Sebastien Cote <sc5@hermes.usherb.ca>
18399 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18401 * gst-libs/gst/resample/resample.c: (gst_resample_close):
18402 * gst-libs/gst/resample/resample.h:
18403 * gst/audioscale/gstaudioscale.c:
18404 Fix memleak (#159215).
18406 2004-12-16 Toni Willberg <toniw@iki.fi>
18408 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18410 * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
18411 * sys/oss/oss_probe.c: (main):
18412 Check for mono/stereo support (similar to samplerate probing),
18413 fixes #159433. Also add missing copyright header to oss_probe.c.
18415 2004-12-15 David Schleef <ds@schleef.org>
18417 * configure.ac: add audioresample and cairo plugins. Remove
18418 HAVE_MMX stuff, because it's not used.
18419 * ext/Makefile.am: same
18420 * ext/audioresample/Makefile.am: You are not ready for an
18421 audio resampling element based on audioresample.
18422 * ext/audioresample/gstaudioresample.c:
18423 * ext/audioresample/gstaudioresample.h:
18424 * ext/cairo/Makefile.am: You are not ready for overlay elements
18425 based on cairo. Don't look too closely, these elements kinda
18427 * ext/cairo/gstcairo.c: new
18428 * ext/cairo/gsttextoverlay.c: new
18429 * ext/cairo/gsttextoverlay.h: new
18430 * ext/cairo/gsttimeoverlay.c: new
18431 * ext/cairo/gsttimeoverlay.h: new
18432 * gst-libs/gst/media-info/media-info-priv.h: fix compile
18433 problem with compilers that don't support variadic macros.
18435 2004-12-15 Balamurali Viswanathan <balamurali.viswanathan@wipro.com>
18437 Reviewed by: David Schleef <ds@schleef.org>
18439 * sys/sunaudio/gstsunaudio.c: (plugin_init): Apply patch from
18440 Bala, registering sunaudiosrc (oops!), and cleaning up code a
18441 bit. Also ran indent-gst.
18442 * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
18443 (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
18444 (gst_sunaudiosrc_setparams):
18446 2004-12-14 David Schleef <ds@schleef.org>
18448 * gst/festival/gstfestival.c: (gst_festival_chain): Set the
18449 output rate to 16000. Should fix #160235.
18451 2004-12-14 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18453 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
18454 Add typefinding for mpeg2 pes streams
18456 2004-12-13 David Schleef <ds@schleef.org>
18458 * configure.ac: Applied patch from bug #143659, making default
18459 sources and sinks OS-dependent (for Solaris), and added code
18461 * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
18463 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18465 * gst-libs/gst/riff/riff-media.c:
18466 forgot to add h2.64 to avidemux template caps
18468 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18470 * gst/wavenc/riff.h:
18471 * gst-libs/gst/riff/riff-media.c:
18472 * gst-libs/gst/riff/riff-ids.h:
18473 * gst/avi/gstavimux.c
18474 add 4CC code for VideoSoft h264 in AVI (VSSH)
18476 remove s323 from riff, it's quicktime specific :(
18478 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18480 * gst/asfdemux/README
18481 * gst/wavenc/riff.h
18482 * gst-libs/gst/riff/riff-ids.h
18483 * gst-libs/gst/riff/riff-media.c
18484 * gst/qtdemux/qtdemux.c:
18485 add new 4CC codes for h263 related codecs
18486 fixes partially bug #155163
18488 2004-12-12 Christian Fredrik Kalager Schaller <christian at fluendo dot com>
18490 * configure.ac: Update polyaudio requirement to 0.7
18491 * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
18493 2004-12-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18495 * gst/interleave/deinterleave.c:
18496 fix my name's spelling! :)
18498 2004-12-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18500 * AUTHORS ChangeLog
18501 * gst/auparse/gstauparse.c
18502 * gst/interleave/deinterleave.c
18504 alaw-decode.c alaw-encode.c
18505 mulaw-decode.c mulaw-encode.c
18506 * gst/oneton/gstoneton.c
18508 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
18510 cocoawindow.h cocoawindow.m
18511 osxvideosink.h osxvideosink.m
18513 put the same mail address for Zaheer Abbas Merali everywhere
18515 2004-12-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18517 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
18518 Align by packetsize, and assert that we a packet available before
18519 playing. The first makes webstreams work (they often include
18520 trailing padding data in a packet), the second allows pausing a
18521 ASF stream in totem without getting demux errors afterwards.
18523 2004-12-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18525 * ext/ogg/gstoggdemux.c: (get_relative):
18526 Check for non-NULL before accessing member (end-of-chain).
18528 2004-12-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18530 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
18531 (cdparanoia_set_property), (cdparanoia_get_property):
18532 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
18533 (dvdnavsrc_set_property), (dvdnavsrc_get_property):
18534 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
18535 (dvdreadsrc_init), (dvdreadsrc_set_property),
18536 (dvdreadsrc_get_property):
18537 * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
18538 (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
18539 Synchronize property names where not yet the case. Devices are
18540 now device=X, other versions are deprecated (but still exist).
18541 Also use g_free() unconditionally.
18542 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
18543 (setup_source), (gst_play_base_bin_get_property):
18546 2004-12-09 Thomas Vander Stichele <thomas at apestaart dot org>
18548 * configure.ac: move GCONF macro outside conditional for the am
18549 conditional. Fixes #160439
18551 2004-12-08 David Schleef <ds@schleef.org>
18553 * tools/gst-visualise-m.m: Switch to elements that currently
18556 2004-12-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18558 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
18559 We love wrong commas.
18561 2004-12-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18563 * gst/matroska/matroska-demux.c:
18564 (gst_matroska_demux_handle_src_query):
18565 Don't set DEFAULT, unsupported - makes length display incorrectly
18568 2004-12-07 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18570 * gst/monoscope/README: remove blurb about files being GPL
18571 * gst/monoscope/gstmonoscope.c: Change license field to LGPL
18572 * gst/monoscope/monoscope.c: Change license to BSD with explanation
18573 monoscope is now effectively LGPL licensed
18575 2004-12-07 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18577 * gst/monoscope/README: Update information to be more correct
18578 * gst/monoscope/convolve.c: Relicense to LGPL
18579 * gst/monoscope/convolve.h: Relicense to LGPL
18581 2004-12-06 Arwed v. Merkatz <v.merkatz@gmx.net>
18583 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
18584 set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
18585 * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
18586 set default_duration for mpeg1 audio
18588 2004-12-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
18590 * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
18591 * ext/alsa/gstalsa.h:
18592 refactor big chunks of the core caps negotiation code to make it
18593 a lot faster, because people claim it's really slow
18594 (actually, just cache the getcaps when the device is opened)
18596 2004-12-06 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18598 * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
18599 (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
18600 (gst_a52dec_handle_frame), (gst_a52dec_chain),
18601 (gst_a52dec_change_state), (plugin_init):
18602 * ext/a52dec/gsta52dec.h:
18603 Do something useful with timestamps. Make chain-based (since
18604 there's really no reason to be loopbased).
18605 * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
18606 Update current_byte/frame correctly.
18608 2004-12-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18610 * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
18611 (gst_ape_demux_stream_init):
18614 2004-12-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18616 * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
18617 Let's make sure we're done typefinding when detecting tags.
18619 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18621 * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
18622 (gst_ebml_read_init), (gst_ebml_read_use_event),
18623 (gst_ebml_read_element_id), (gst_ebml_peek_id),
18624 (gst_ebml_read_seek), (gst_ebml_read_skip),
18625 (gst_ebml_read_reserve), (gst_ebml_read_buffer),
18626 (gst_ebml_read_master):
18627 * gst/matroska/ebml-read.h:
18628 * gst/matroska/matroska-demux.c:
18629 (gst_matroska_demux_parse_contents),
18630 (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
18631 Disgustingly evil hack for working around INTERRUPT events and
18632 their extremely annoying habit of being a pain in the ass. We
18633 simply peek a cluster before reading any of it.
18635 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18637 * ext/musepack/gstmusepackdec.cpp:
18638 There's also floating point libmusepacks.
18640 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18642 * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
18643 (gst_faad_chanpos_to_gst), (gst_faad_chain):
18644 Set DURATION even if source buffer didn't. Also use increasing
18646 * gst-libs/gst/riff/riff-media.c:
18647 (gst_riff_create_audio_caps_with_data):
18648 Block_align can have larger values than 8192.
18650 2004-12-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18652 * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
18653 * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
18654 * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
18655 * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
18658 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18660 * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
18663 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18665 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
18668 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18670 * ext/esd/esdsink.c: (gst_esdsink_chain):
18671 Make error actually say something useful (fixes #156798).
18672 * gst-libs/gst/riff/riff-media.c:
18673 (gst_riff_create_video_caps_with_data),
18674 (gst_riff_create_video_template_caps):
18675 Add Intel Video 5.0 fourcc (IV50).
18677 2004-12-01 Christophe Fergeau <teuf@gnome.org>
18679 * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
18680 detection on mono and stereo mp3 files.
18682 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18684 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
18685 Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
18686 the contained stream).
18688 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18690 * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
18691 Oops, remove debug.
18693 2004-12-01 Sebastien Cote <sc5@hermes.usherb.ca>
18695 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18697 * gst/law/alaw-decode.c: (alawdec_getcaps):
18698 * gst/law/mulaw-decode.c: (mulawdec_getcaps):
18699 Prevent warnings when negotiating caps (fixes #159338).
18701 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18703 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18704 (gst_ffmpegcsp_chain):
18705 Remove old leftover that shouldn't be there...
18707 2004-12-01 Sebastien Cote <sc5@hermes.usherb.ca>
18709 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18711 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
18712 Don't forward DISCONT events (fixes #159684).
18714 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18716 * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
18717 Unlink manually since sometimes bin disposal (and therefore
18718 pad unlinking) is delayed, which will cause a new media file
18719 to not be able to start playing instantly.
18721 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18723 * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
18724 On mute of an unlinked stream, check for pad availability so
18725 we don't crash on unlinked pad.
18727 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18729 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18730 (gst_avi_demux_massage_index):
18731 Fix quite humiliating bug in omitting 0-sized index chunks but
18732 forgetting to count them for timestamps.
18734 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18736 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
18737 Actually leave the loop if we failed to sync. Don't crash.
18739 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18741 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
18742 (gst_dvd_demux_process_private):
18743 * gst/mpegstream/gstdvddemux.h:
18744 Fix crash (#159759). Doesn't work, though. :-(.
18746 2004-11-28 Benjamin Otte <otte@gnome.org>
18748 * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
18749 more overwriting protection due to modifying channels one by one
18750 instead of all at once
18752 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18754 * gst/audioconvert/gstchannelmix.c:
18755 (gst_audio_convert_fill_normalize):
18756 Normalize using absolute values.
18758 2004-11-28 Julien MOUTTE <julien@moutte.net>
18762 * ext/directfb/Makefile.am:
18763 * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
18764 (gst_directfbvideosink_get_pixel_format),
18765 (gst_directfbvideosink_get_format_from_fourcc),
18766 (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
18767 (gst_directfbvideosink_sink_link),
18768 (gst_directfbvideosink_change_state),
18769 (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
18770 (gst_directfbvideosink_buffer_alloc),
18771 (gst_directfbvideosink_interface_supported),
18772 (gst_directfbvideosink_interface_init),
18773 (gst_directfbvideosink_navigation_send_event),
18774 (gst_directfbvideosink_navigation_init),
18775 (gst_directfbvideosink_set_property),
18776 (gst_directfbvideosink_get_property),
18777 (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
18778 (gst_directfbvideosink_base_init),
18779 (gst_directfbvideosink_class_init),
18780 (gst_directfbvideosink_get_type), (plugin_init):
18781 * ext/directfb/directfbvideosink.h: Adding a first version of
18783 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
18786 2004-11-28 Benjamin Otte <otte@gnome.org>
18788 * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
18789 walk the samples backwards if out_channels > in_channels so we don't
18792 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18794 * gst/audioconvert/Makefile.am:
18795 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
18796 (gst_audio_convert_link), (gst_audio_convert_change_state),
18797 (gst_audio_convert_channels):
18798 * gst/audioconvert/gstchannelmix.c:
18799 (gst_audio_convert_unset_matrix),
18800 (gst_audio_convert_fill_identical),
18801 (gst_audio_convert_fill_compatible),
18802 (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
18803 (gst_audio_convert_fill_others),
18804 (gst_audio_convert_fill_normalize),
18805 (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
18806 (gst_audio_convert_passthrough), (gst_audio_convert_mix):
18807 * gst/audioconvert/gstchannelmix.h:
18808 Implement a channel mixer.
18810 2004-11-28 Martin Soto <martinsoto@users.sourceforge.net>
18812 * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
18813 * ext/alsa/gstalsa.h:
18814 * ext/alsa/gstalsa.c (gst_alsa_set_clock):
18815 Make alsasink actually honor gst_element_set_clock and use that
18816 clock instead of its internal one.
18818 2004-11-27 Christophe Fergeau <teuf@gnome.org>
18820 * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
18821 (gst_play_base_bin_change_state): nullify source and decoder when
18822 going from READY to NULL so that we don't try to do weird stuff with
18823 them when going from NULL to READY
18824 * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
18825 instead of g_object_unref
18826 (gen_video_element), (gen_audio_element): more refcounting fixes, now
18827 it should be correct
18828 (gst_play_bin_change_state): don't call remove_sinks if we are
18829 currently disposing the object
18831 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18833 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
18834 Don't forget bass if it's there. Else left channel is silent...
18836 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18838 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
18839 (gst_a52dec_change_state):
18840 Don't do sample adjusting anymore, we use float audio now.
18841 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
18842 Don't fixate to non-existing properties.
18844 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18846 * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
18847 (gst_a52dec_change_state):
18848 Advertise that we can do surround sound.
18850 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18852 * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
18853 Add buffer-frames=0.
18854 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
18855 (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
18856 (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
18857 (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
18858 (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
18859 (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
18860 (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
18861 (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
18862 (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
18863 * ext/dvdread/dvdreadsrc.h:
18864 Add seeking, querying for bytes, sectors, title, angle and
18865 chapter. Handle multiple chapters. Relicense to LGPL because
18866 Billy agreed on that (thanks Billy!).
18868 2004-11-27 Christophe Fergeau <teuf@gnome.org>
18870 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
18871 call parent dispose method
18873 2004-11-27 Martin Soto <martinsoto@users.sourceforge.net>
18875 * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
18876 (gst_audio_clock_get_internal_time):
18877 Fix active <-> inactive transitions: ensure time value always
18878 grows and avoid abrupt value changes.
18880 2004-11-27 Arwed v. Merkatz <v.merkatz@gmx.net>
18883 * gst/tta/Makefile.am:
18885 * gst/tta/filters.h:
18886 * gst/tta/gsttta.c:
18887 * gst/tta/gstttadec.c:
18888 * gst/tta/gstttadec.h:
18889 * gst/tta/gstttaparse.c:
18890 * gst/tta/gstttaparse.h:
18891 * gst/tta/ttadec.h:
18892 added TTA parser and decoder
18894 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18896 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
18897 (probe_triggered), (check_queue), (buffer_underrun),
18898 (buffer_running), (buffer_overrun), (gen_source_element),
18900 * gst/playback/gstplaybasebin.h:
18901 Implement buffering. Needs some more work.
18903 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18905 * ext/theora/theoradec.c: (theora_dec_chain):
18906 Fix ilog mask range overflow.
18908 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18910 * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
18911 Don't omit the last (which in case of dmix is the only :) )
18912 channel count. Don't set channels if <= 2.
18914 2004-11-26 Christophe Fergeau <teuf@gnome.org>
18916 * gst/playback/gstplaybin.c: (gen_video_element),
18917 (gen_audio_element): Removed 2 obsolete comments
18919 2004-11-26 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18921 * ext/vorbis/oggvorbisenc.c
18922 * ext/vorbis/vorbisenc.c :
18923 change description fields of those plugins to differentiate them
18924 (pitivi show Encoders by description, they had the same one)
18926 2004-11-25 Christophe Fergeau <teuf@gnome.org>
18928 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18930 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
18931 (gst_play_bin_set_property), (gen_video_element),
18932 (gen_audio_element):
18933 Refcounting fixes for provided audio-/videosinks.
18935 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18937 * gst/playback/gstplaybin.c: (gen_video_element),
18938 (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
18939 Don't reference all sinks, but only the video- and audiosinks.
18940 The vis. element should be disposed when we're done with it.
18941 We don't have any reason to keep it around. This fixes warnings
18942 when reusing playbin for playing multiple audio files with
18943 vis. enabled. Also release audio device on pause - idea stolen
18946 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18948 * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
18949 (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
18950 * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
18951 * ext/alsa/gstalsaplugin.c: (plugin_init):
18952 * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
18953 (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
18954 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
18955 (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
18956 (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
18957 (gst_faad_change_state), (plugin_init):
18958 * ext/faad/gstfaad.h:
18959 * ext/vorbis/vorbis.c: (plugin_init):
18960 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
18961 * gst-libs/gst/audio/Makefile.am:
18962 * gst-libs/gst/audio/audio.c: (plugin_init):
18963 * gst-libs/gst/audio/multichannel.c:
18964 (gst_audio_check_channel_positions),
18965 (gst_audio_get_channel_positions),
18966 (gst_audio_set_channel_positions),
18967 (gst_audio_set_structure_channel_positions_list),
18968 (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
18969 (gst_audio_fixate_channel_positions):
18970 * gst-libs/gst/audio/multichannel.h:
18971 * gst-libs/gst/audio/testchannels.c: (main):
18972 * gst/audioconvert/gstaudioconvert.c:
18973 (gst_audio_convert_class_init), (gst_audio_convert_init),
18974 (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
18975 (gst_audio_convert_parse_caps), (gst_audio_convert_link),
18976 (gst_audio_convert_fixate), (gst_audio_convert_channels):
18977 * gst/audioconvert/plugin.c: (plugin_init):
18978 Surround sound support.
18980 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18982 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
18983 Fix position for discont if we're close as well. Nitpicking, but
18984 saves a few milliseconds of extra waiting or skipping.
18986 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18988 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
18989 We sometimes need parsers for playback, so add those too.
18991 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18994 * gst/apetag/Makefile.am:
18995 * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
18996 (gst_ape_demux_base_init), (gst_ape_demux_class_init),
18997 (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
18998 (gst_ape_demux_get_src_query_types),
18999 (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
19000 (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
19001 (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
19002 (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
19003 (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
19004 (gst_ape_demux_stream_data), (gst_ape_demux_loop),
19005 (gst_ape_demux_change_state):
19006 * gst/apetag/apedemux.h:
19007 * gst/apetag/apetag.c: (plugin_init):
19008 * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
19010 APE v1/2 tag reader plus typefind function.
19012 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19015 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19016 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
19017 Remove hacks for older core. Require newer core version
19020 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19022 * gst/cdxaparse/Makefile.am:
19023 * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
19024 (gst_cdxaparse_class_init), (gst_cdxaparse_init),
19025 (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
19026 * gst/cdxaparse/gstcdxaparse.h:
19027 * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
19028 (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
19029 (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
19030 (gst_cdxastrip_get_src_query_types),
19031 (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
19032 (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
19033 (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
19034 (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
19035 * gst/cdxaparse/gstcdxastrip.h:
19036 SVCD/VCD header stripping separated from CDXA image parsing.
19037 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
19039 Add VCD/SVCD header typefinding for VCD/SVCD.
19040 * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
19041 (gst_vcdsrc_class_init), (gst_vcdsrc_init),
19042 (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
19043 (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
19044 (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
19045 (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
19046 (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
19047 (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
19048 (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
19049 (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
19050 (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
19051 * sys/vcd/vcdsrc.h:
19052 Fix up, add seeking, querying, URI interface. Works in totem now.
19054 2004-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
19059 === release 0.8.6 ===
19061 2004-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
19079 releasing 0.8.6, "IOU Love"
19081 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19083 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
19085 * gst/playback/gstplaybasebin.c:
19086 Fix unplayable files error handling. Fixes #158365
19088 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19090 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
19092 * gst/typefind/gsttypefindfunctions.c:
19093 Fix broken mp3 typefinding. Fixes #158375
19095 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19097 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
19099 * ext/ogg/gstoggdemux.c:
19100 Fix sync on broken files. Fixes #158976
19102 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19104 patch by: Edward Hervey <bilboed@bilboed.com>
19106 * ext/libpng/gstpngenc.c:
19107 Copy over buffer properties. Fixes #158832
19109 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19111 patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
19113 * ext/dvdread/dvdreadsrc.c:
19114 Fixes invalid reads (#158462)
19116 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19118 * sys/v4l/gstv4lsrc.c:
19119 * sys/v4l/gstv4lsrc.h:
19120 * sys/v4l/v4lsrc_calls.c:
19121 Probe less and cache it. Fixes #159187.
19123 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19125 * gst/videorate/gstvideorate.c:
19126 Handle all video formats. Fixes #159186.
19128 2004-11-16 Jan Schmidt <thaytan@mad.scientist.com>
19129 * gst/synaesthesia/gstsynaesthesia.c:
19130 (gst_synaesthesia_class_init), (gst_synaesthesia_init),
19131 (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
19132 (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
19133 (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
19134 (gst_synaesthesia_change_state), (plugin_init):
19135 Fix up synaesthesia to work under different samplerates/ buffer sizes.
19136 Force 320x200 output, as that's the only thing the underlying
19137 synaesthesia implementation supports. Still needs to be made
19140 2004-11-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19143 Fix mpeg2enc configure check (similar to mplex check below).
19145 2004-11-14 Koop Mast <kwm@rainbow-runner.nl>
19147 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19149 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19150 Fix for gcc-2.95 (fixes #158221).
19152 2004-11-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19154 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19155 Re-add clock distribution hack (until new core is released).
19158 2004-11-13 Arwed v. Merkatz <v.merkatz@gmx.net>
19160 fix mplex configure check segfaulting on some systems (bug #140994)
19162 2004-11-13 Benjamin Otte <otte@gnome.org>
19164 * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
19166 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
19167 do a wait when we enter the loop func with no data available to
19168 write instead of getting into an 100% CPU loop by just returning and
19169 being called again by the scheduler
19171 2004-11-13 Jan Schmidt <thaytan@mad.scientist.com>
19174 * ext/libvisual/visual.c: (gst_visual_get_type),
19175 (libvisual_log_handler), (gst_visual_getcaps),
19176 (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
19178 Update libvisual to 0.1.7. Link in the debug handling to gstreamer
19179 * ext/smoothwave/Makefile.am:
19180 * ext/smoothwave/demo-osssrc.c: (main):
19181 * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
19182 (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
19183 (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
19185 * ext/smoothwave/gstsmoothwave.h:
19186 Make gstsmoothwave a working element in the 20th century.
19188 * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
19189 Fix incorrect link function
19191 2004-11-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19193 * gst/volume/gstvolume.c:
19194 Allow buffer-frames=0.
19196 2004-11-12 Iain <iaingnome@gmail.com>
19198 * configure.ac: Check for polypaudio
19200 * ext/Makefile.am: Build the polyp dir
19202 * ext/polyp: The polypsink sources.
19204 2004-10-30 Iain <iaingnome@gmail.com>
19206 * gst/interleave/interleave.c (interleave_unlink): Change the src pads
19207 caps to reflect the new number of channels.
19209 2004-11-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19211 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
19212 Fix for negotiation order problem. This would show when the
19213 ALSA loopfuction was called before any other function. ALSA
19214 wouldn't do anything because we're not negotiated yet, leading
19215 to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
19217 2004-11-11 Tim-Philipp Müller <t.i.m@zen.co.uk>
19219 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19221 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
19222 No warnings (#157986).
19224 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19226 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
19227 Prefer apev1/2 and id3v1 (at end of file) over musepack.
19229 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19231 * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
19232 Signal no-more-pads (so it works in playbin).
19234 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19236 * ext/musepack/gstmusepackreader.cpp:
19237 Workaround for older core.
19239 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19241 * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
19242 Actually test for odd width/height rather than testing whether
19243 a temporary variable that was 0 before we subtracted 1 is now
19244 not equal to zero (which it always is).
19246 2004-11-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19248 * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
19249 Fix compilation if HAVE_XVIDEO is not defined
19251 2004-11-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19253 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
19254 Fix compilation if HAVE_XVIDEO is not defined
19256 2004-11-11 Jan Schmidt <thaytan@mad.scientist.com>
19258 * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
19259 (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
19260 (gst_goom_change_state), (plugin_init):
19261 Use the bytestream adapter so goom doesn't depend on the input
19263 Add a debug category
19265 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19267 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
19268 Only set hardware parameters *after* negotiation. Before
19269 negotiation, it will set ANY and that seems to cause crashes
19270 (see e.g. #151288, #153227).
19272 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19274 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
19275 This seems to be antique leftover. It needs to pass error
19277 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
19278 (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
19279 (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
19280 (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
19281 Fix GstXOverlay implementation (#151059).
19283 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19285 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
19286 Don't assert (#157853).
19288 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19290 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
19291 Fix bytes/samples confustion.
19292 (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
19293 Fix for underrun (#144389).
19295 2004-11-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19297 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
19298 Disable halfway-seek for pending release (since it needs a new
19301 2004-11-09 Thomas Vander Stichele <thomas at apestaart dot org>
19303 * sys/v4l/gstv4lsrc.c:
19304 * sys/v4l/gstv4lsrc.h:
19305 * sys/v4l/v4lsrc_calls.c:
19306 add autoprobe-fps property so we can separate autoprobing parts
19308 2004-11-09 Thomas Vander Stichele <thomas at apestaart dot org>
19310 * sys/v4l/gstv4lsrc.c:
19311 * sys/v4l/v4lsrc_calls.c:
19312 initialise fourcc to catch unset fourcc's, and debug
19314 2004-11-09 Wim Taymans <wim@fluendo.com>
19316 * gst/playback/README:
19317 * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
19318 * gst/playback/gstplaybin.c: (gst_play_bin_init),
19319 (gst_play_bin_dispose), (gst_play_bin_set_property),
19320 (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
19321 (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
19322 (gst_play_bin_get_formats), (gst_play_bin_convert),
19323 (gst_play_bin_get_query_types), (gst_play_bin_query):
19324 Cleanups and some more documentation.
19326 2004-11-09 Jan Schmidt <thaytan@mad.scientist.com>
19328 * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
19329 (gst_cacasink_init), (gst_cacasink_chain):
19330 * ext/libcaca/gstcacasink.h:
19331 Cacasink inherits from VideoSink, so let that store the clock.
19333 2004-11-09 Wim Taymans <wim@fluendo.com>
19335 * gst/playback/README:
19336 * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
19337 (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
19338 (probe_triggered), (preroll_unlinked), (new_decoded_pad),
19339 (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
19340 * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
19342 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
19343 (gst_stream_info_is_mute), (gst_stream_info_set_property):
19344 * gst/playback/gststreaminfo.h:
19346 Only switch groups if all streams have muted (EOSed).
19347 Send Tags in sync with the stream playback instead of in
19348 the playback/preroll phase.
19349 Some cleanups, free the fakesrc elements.
19351 2004-11-09 Benjamin Otte <in7y118@public.uni-hamburg.de>
19353 * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
19354 buffer-frames property was missing
19355 * ext/arts/gst_arts.c:
19356 rate missing from sinkcaps
19357 * ext/audiofile/gstafparse.c:
19358 * ext/audiofile/gstafsink.c:
19359 * ext/audiofile/gstafsrc.c:
19360 * ext/swfdec/gstswfdec.c:
19361 int audio doesn't know buffer-frames
19362 * ext/cdparanoia/gstcdparanoia.c:
19363 int audio doesn't know chunksize either
19364 * ext/nas/nassink.c:
19365 it's endianness, not endianess
19366 * gst-libs/gst/audio/audio.h:
19367 make float standard pad template caps really describe float
19368 * gst/law/mulaw.c: (linear_factory):
19369 signed only, please
19370 * gst/mpegstream/gstdvddemux.c:
19371 widths of 20 are not valid
19373 2004-11-08 Thomas Vander Stichele <thomas at apestaart dot org>
19375 Submitted by: Luca Ferretti <elle.uca@infinito.it>
19381 2004-11-08 Wim Taymans <wim@fluendo.com>
19383 * gst/playback/README:
19384 * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
19385 * gst/playback/gstplaybasebin.c: (probe_triggered),
19386 (gst_play_base_bin_change_state):
19387 Updated README, added more comments for fixmes etc..
19389 2004-11-08 Wim Taymans <wim@fluendo.com>
19391 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19392 We can remove this hack now.
19394 2004-11-08 Wim Taymans <wim@fluendo.com>
19396 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
19397 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
19398 (gst_videomixer_blend_buffers), (gst_videomixer_loop):
19399 Only mix AYUV for maximum quality.
19401 2004-11-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19403 * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
19404 (gst_ogg_demux_push), (gst_ogg_pad_push):
19405 Let's act as if we're synchronized now! :).
19406 * ext/theora/theoradec.c: (theora_dec_chain):
19409 2004-11-08 Wim Taymans <wim@fluendo.com>
19411 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19412 (gst_alpha_set_property), (gst_alpha_sink_link),
19413 (gst_alpha_set_ayuv), (gst_alpha_set_i420),
19414 (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
19415 (gst_alpha_init_params), (gst_alpha_chain):
19416 Implement alpha functions for AYUV too, this increases
19417 accuracy quite a bit.
19419 2004-11-08 Wim Taymans <wim@fluendo.com>
19421 * gst/ffmpegcolorspace/avcodec.h:
19422 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19423 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
19424 (gst_ffmpegcsp_avpicture_fill):
19425 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19426 (gst_ffmpegcsp_caps_remove_format_info):
19427 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19428 (shrink12), (img_get_alpha_info), (deinterlace_line),
19429 (deinterlace_line_inplace):
19430 * gst/ffmpegcolorspace/imgconvert_template.h:
19431 Added AYUV colorspace and handle RGBA a bit more respectful.
19433 2004-11-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19435 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19436 Actually always send a discont (cornercase when resending the
19437 same serial-tagged chain twice).
19439 2004-11-08 Julien MOUTTE <julien@moutte.net>
19441 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
19442 (gst_ximagesink_finalize):
19443 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
19444 (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
19446 2004-11-08 Wim Taymans <wim@fluendo.com>
19448 * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
19449 Don't segfault on NULL data.
19451 2004-11-08 Wim Taymans <wim@fluendo.com>
19453 * gst/playback/gstdecodebin.c: (unlinked):
19454 * gst/playback/gstplay-marshal.list:
19455 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
19456 (gst_play_base_bin_init), (group_create), (get_active_group),
19457 (get_building_group), (group_destroy), (group_commit),
19458 (queue_overrun), (remove_groups), (add_stream), (unknown_type),
19459 (add_element_stream), (no_more_pads), (probe_triggered),
19460 (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
19461 (state_change), (setup_source), (gst_play_base_bin_get_property),
19462 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
19463 (gst_play_base_bin_link_stream),
19464 (gst_play_base_bin_get_streaminfo):
19465 * gst/playback/gstplaybasebin.h:
19466 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
19467 (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
19468 Add support for chained ogg files. Prepare for playlist
19469 support. This patch introduces the concept of pad groups, which
19470 together compose one playable media file.
19472 2004-11-07 David Schleef <ds@schleef.org>
19474 * testsuite/gst-lint: Check for pad templates that aren't statically
19477 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19481 * ext/musepack/Makefile.am:
19482 * ext/musepack/gstmusepackdec.cpp:
19483 * ext/musepack/gstmusepackdec.h:
19484 * ext/musepack/gstmusepackreader.cpp:
19485 * ext/musepack/gstmusepackreader.h:
19486 Add musepack decoder.
19487 * ext/faad/gstfaad.c: (gst_faad_base_init):
19488 Make pad templates static.
19489 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
19491 Add musepack typefinder, make mp3 typefinding work halfway stream,
19492 which doesn't actually work yet because id3demux doesn't implement
19495 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19497 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
19498 (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
19499 Fix interrupt event handling (#144436).
19501 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19503 * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
19506 2004-11-06 Tim-Philipp Müller <t.i.m@zen.co.uk>
19508 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19510 * ext/vorbis/vorbisenc.c: (raw_caps_factory):
19511 Fix weird caps (#157548).
19513 2004-11-06 Tim-Philipp Müller <t.i.m@zen.co.uk>
19515 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19517 * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
19518 Add missing NULL terminator (#157543).
19520 2004-11-05 Thomas Vander Stichele <thomas at apestaart dot org>
19522 * gst/tcp/gsttcp.h:
19523 * gst/tcp/gsttcpclientsink.c:
19524 * gst/tcp/gsttcpclientsrc.c:
19525 * gst/tcp/gsttcpserversink.c:
19526 * gst/tcp/gsttcpserversrc.c:
19527 ports can go up to 65535. Move common defines to gsttcp.h
19529 2004-11-05 Wim Taymans <wim@fluendo.com>
19531 * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
19532 (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
19533 Added two more colorspaces.
19535 2004-11-05 Wim Taymans <wim@fluendo.com>
19537 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19538 (gst_ffmpegcsp_avpicture_fill):
19539 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19540 (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
19541 (img_convert), (deinterlace_line), (deinterlace_line_inplace):
19544 2004-11-05 Wim Taymans <wim@fluendo.com>
19546 * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
19547 (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
19548 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
19549 (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
19550 (gst_videomixer_loop):
19553 2004-11-05 Benjamin Otte <otte@gnome.org>
19555 * ext/mad/gstmad.c: (gst_mad_chain):
19556 don't overflow data buffer. Flush not needed sync data when syncing
19559 2004-11-04 Wim Taymans <wim@fluendo.com>
19561 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19562 (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
19563 (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
19564 (gst_alpha_init_params), (gst_alpha_chain),
19565 (gst_alpha_change_state):
19566 Updated the chroma keying algorithm with something more
19569 2004-11-03 Wim Taymans <wim@fluendo.com>
19571 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
19572 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
19573 (gst_videomixer_blend_buffers), (gst_videomixer_loop):
19574 Fix stride issues. Does not completely work for odd
19577 2004-11-03 Wim Taymans <wim@fluendo.com>
19579 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19580 (gst_alpha_chroma_key), (gst_alpha_chain):
19581 Fix stride issues. Does not completely work for odd
19584 2004-11-03 Christophe Fergeau <teuf@gnome.org>
19586 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
19587 * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
19590 2004-11-03 Wim Taymans <wim@fluendo.com>
19592 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19593 (gst_ffmpegcsp_avpicture_fill):
19594 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19596 * gst/ffmpegcolorspace/imgconvert_template.h:
19597 Use correct _fill function to get correct strides.
19599 2004-11-02 David Schleef <ds@schleef.org>
19601 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19602 (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
19603 (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
19604 Change all g_print()s to debugging. Add a bunch of consistency
19607 2004-11-02 Wim Taymans <wim@fluendo.com>
19609 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19610 (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
19611 (unlinked), (no_more_pads), (close_link):
19612 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
19613 (unknown_type), (add_element_stream), (new_decoded_pad),
19614 (removed_decoded_pad), (setup_source):
19615 * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
19616 (gst_stream_info_class_init), (gst_stream_info_init),
19617 (gst_stream_info_new), (gst_stream_info_dispose),
19618 (stream_info_mute_pad), (gst_stream_info_set_property),
19619 (gst_stream_info_get_property):
19620 * gst/playback/gststreaminfo.h:
19621 Fix playback of multiple files.
19622 a slightly different approach to handling dynamic pad removals.
19623 This one only looks at pads that we have linked.
19625 2004-11-01 Christophe Fergeau <teuf@gnome.org>
19627 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
19628 free" warning from libc.
19630 2004-11-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19632 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19633 (get_unconnected_element), (remove_starting_from), (pad_removed),
19635 Implement support for dynamic pad changing. We listen to "live"
19636 pad removals (i.e. while playing) and re-setup autoplugging
19637 after that. Playbasebin/playbin need some more work for this
19638 to finally work, but decodebin supports (and replugs) chained
19641 2004-11-02 Jan Schmidt <thaytan@mad.scientist.com>
19643 * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
19644 (gst_alsa_finalize):
19645 * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
19646 (gst_cdaudio_finalize):
19647 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
19648 (cdparanoia_finalize):
19649 * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
19650 * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
19651 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
19652 (dvdreadsrc_finalize):
19653 * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
19654 (gst_flacdec_finalize):
19655 * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
19656 (gst_flacenc_finalize):
19657 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
19658 (gst_gnomevfssink_finalize):
19659 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
19660 (gst_gnomevfssrc_finalize):
19661 * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
19662 (gst_fameenc_finalize):
19663 * ext/nas/nassink.c: (gst_nassink_class_init),
19664 (gst_nassink_finalize):
19665 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
19666 (gst_sdlvideosink_class_init):
19667 * ext/sndfile/gstsf.c: (gst_sf_dispose):
19668 * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
19669 * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
19670 * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
19671 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
19672 (gst_x_window_listener_dispose):
19673 * gst/audioscale/gstaudioscale.c:
19674 * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
19675 (play_on_demand_finalize):
19676 * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
19677 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
19678 * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
19679 (cdplayer_finalize):
19680 * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
19681 (gst_glimagesink_class_init):
19682 * sys/oss/gstosselement.c: (gst_osselement_class_init),
19683 (gst_osselement_finalize):
19684 * sys/oss/gstosssink.c: (gst_osssink_dispose):
19685 * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
19686 * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
19687 Fixes a bunch of problems with finalize and dispose functions,
19688 either assumptions that dispose is only called once, or not calling
19689 the parent class dispose/finalize function
19691 2004-11-01 Stefan Kost <ensonic@users.sf.net>
19693 * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
19694 added two api precondition guards
19695 use g_strdup with getenv to fix crash when using ENVVAR
19697 2004-11-01 Jan Schmidt <thaytan@mad.scientist.com>
19698 * ext/esd/esdsink.c: (gst_esdsink_class_init),
19699 (gst_esdsink_finalize):
19700 Use a finalize function, not dispose, and more importantly,
19701 call the parent class finalize function too
19703 2004-11-01 Johan Dahlin <johan@gnome.org>
19705 * ext/ogg/gstoggdemux.c:
19706 * gst/tags/gstvorbistag.c:
19709 2004-10-31 Benjamin Otte <otte@gnome.org>
19711 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
19712 lotsa memleaks today. But they're all small...
19714 2004-10-31 Benjamin Otte <otte@gnome.org>
19716 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19717 another memleak crushed
19719 2004-10-31 Benjamin Otte <otte@gnome.org>
19721 * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
19724 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19726 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19727 Hack to prevent crash when going to READY inside signal handler
19728 while this function is active.
19730 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19732 * gst/ffmpegcolorspace/Makefile.am:
19733 * gst/ffmpegcolorspace/avcodec.h:
19734 * gst/ffmpegcolorspace/common.h:
19735 * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
19736 * gst/ffmpegcolorspace/dsputil.h:
19737 * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
19738 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19739 (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
19740 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
19741 (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
19742 (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
19743 (gst_ffmpegcsp_avpicture_fill):
19744 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
19745 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19746 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
19747 (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
19748 (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
19749 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
19750 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
19751 (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
19752 * gst/ffmpegcolorspace/imgconvert.c:
19753 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
19754 (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
19755 (avpicture_get_size), (avcodec_get_pix_fmt_loss),
19756 (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
19757 (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
19758 (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
19759 (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
19760 (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
19761 (img_convert_init), (img_apply_table), (shrink41), (shrink21),
19762 (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
19763 (grow21), (grow22), (grow41), (grow44), (conv411),
19764 (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
19765 (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
19766 (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
19767 (avpicture_free), (is_yuv_planar), (img_convert),
19768 (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
19769 (deinterlace_line_inplace), (deinterlace_bottom_field),
19770 (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
19771 * gst/ffmpegcolorspace/imgconvert_template.h:
19772 * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
19773 * gst/ffmpegcolorspace/mmx.h:
19774 * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
19775 (av_fast_realloc), (av_mallocz_static), (av_free_static),
19776 (av_freep), (avcodec_get_context_defaults),
19777 (avcodec_alloc_context), (avcodec_init):
19778 Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
19779 handling plus update from ffmpeg CVS. Large clean-up.
19781 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19783 * gst/playback/Makefile.am:
19784 We need the marshallers for decodebin, too.
19786 2004-10-30 David Schleef <ds@schleef.org>
19788 * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
19789 quicktime typefinding work with 64-bit offsets.
19791 2004-10-30 Jan Schmidt <thaytan@mad.scientist.com>
19793 * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
19794 Set EOS on the element when processing an EOS event.
19795 * ext/speex/gstspeexdec.h:
19796 * ext/speex/gstspeexenc.h:
19797 Only keep a const ptr to the mode
19798 * gst-libs/gst/riff/riff-media.c:
19799 (gst_riff_create_audio_caps_with_data),
19800 (gst_riff_create_audio_template_caps):
19801 Allow WMAV3, with up to 6 channels.
19802 * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
19803 Don't call gst_pad_set_event_function on a sink pad.
19804 * gst/mpegstream/gstdvddemux.c:
19805 (gst_dvd_demux_get_subpicture_stream),
19806 (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
19807 Copy the explicit caps that were set across to the cur_* pads,
19808 instead of trying to use a possibly non-existent negotiated caps.
19809 Reset the type of subpicture pads to UNKNOWN after calling
19810 init_stream, so that the caps get set.
19812 2004-10-29 Martin Pitt <martin.pitt@canonical.com>
19814 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19816 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
19817 Don't touch buffer if it is of size 0 (fixes #151064).
19819 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19821 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
19822 Synchronized discont handling.
19824 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19826 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
19827 (gst_ogg_demux_push):
19828 Make seeking sort-of exact again (fixes #156387).
19830 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19832 * gst/playback/gstplaybasebin.c: (unknown_type),
19833 (add_element_stream), (new_decoded_pad),
19834 (gst_play_base_bin_change_state):
19835 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
19836 (gst_stream_info_init), (gst_stream_info_new),
19837 (gst_stream_info_dispose), (gst_stream_info_get_property):
19838 * gst/playback/gststreaminfo.h:
19839 Make caps explicitely available. Makes testing for unsupported
19840 types possible. Improves error reporting.
19842 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19844 * gst/audioconvert/gstaudioconvert.c:
19845 (gst_audio_convert_buffer_to_default_format):
19846 Really don't touch read-only buffers (#156563).
19848 2004-10-29 Sebastien Cote <sc5@hermes.usherb.ca>
19850 Reviewd by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19852 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
19853 Fix memleak (#155223).
19855 2004-10-29 Wim Taymans <wim@fluendo.com>
19857 * gst/tcp/.cvsignore:
19858 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
19859 (gst_multifdsink_class_init), (gst_multifdsink_init),
19860 (gst_multifdsink_add), (gst_multifdsink_remove),
19861 (gst_multifdsink_remove_client_link), (is_sync_frame),
19862 (gst_multifdsink_new_client),
19863 (gst_multifdsink_handle_client_write),
19864 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
19865 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
19866 (gst_multifdsink_get_property):
19867 * gst/tcp/gstmultifdsink.h:
19868 Added burst on connect sync_method, deprecated sync_clients,
19869 streamlined the sync code some more.
19871 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19873 * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
19874 (gst_play_base_bin_change_state):
19875 Improve error reporting.
19877 2004-10-28 Wim Taymans <wim@fluendo.com>
19879 * gst/tcp/Makefile.am:
19880 * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
19881 * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
19882 (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
19883 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
19884 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
19885 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
19887 Added more locks around fdset structures. Fixed/reworked
19888 the poll array resizing code.
19889 Added stress test for fdset.
19891 2004-10-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19893 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
19896 2004-10-28 Benjamin Otte <otte@gnome.org>
19898 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
19899 fix link function to always query channels and query width for
19903 * gst/equalizer/Makefile.am:
19904 * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
19905 (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
19906 (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
19907 (arg_to_scale), (setup_filter),
19908 (gst_iir_equalizer_compute_frequencies),
19909 (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
19910 (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
19914 2004-10-27 Thomas Vander Stichele <thomas at apestaart dot org>
19916 Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
19920 Added Norwegian Bokmaal translation
19922 2004-10-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19924 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
19925 Don't break on options (fixes #156488).
19927 2004-10-27 Thomas Vander Stichele <thomas at apestaart dot org>
19930 * ext/cdaudio/Makefile.am:
19932 fix build on older automake
19934 2004-10-26 Wim Taymans <wim@fluendo.com>
19936 * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
19937 (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
19938 Allow a little margin when negotiating the framerate.
19940 2004-10-26 Stefan Kost <ensonic@users.sf.net>
19942 * gst/level/gstlevel.c:
19943 synchonised naming of pads and pad-templates
19945 2004-10-26 Wim Taymans <wim@fluendo.com>
19947 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
19948 (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
19949 (_find_streams_check), (gst_ogg_demux_push):
19950 Fix EOS again. Needs to be done in a better way. We should not
19951 remove the pad if there is no new chained stream.
19953 2004-10-26 Iain <iaingnome@gmail.com>
19955 * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
19956 * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
19958 * gst/interleave/interleave.c (interleave_class_init): Hook up release
19960 (interleave_release_pad): Remove the pad.
19961 * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
19962 * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
19964 * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
19966 (gst_xvimagesink_xcontext_clear): Free the xcontext.
19967 (gst_xvimagesink_finalize): Free the par.
19969 2004-10-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19971 * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
19972 (gst_avimux_stop_file):
19973 First calculate the rate, and only then use it. Hdr.rate is a
19974 multiple and not a derivative of hdr.scale. Scale is not the
19975 same as blockalign but is solely related to rate.
19977 2004-10-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19979 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
19980 (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
19983 2004-10-25 James Henstridge <james@jamesh.id.au>
19985 Reviewed by: David Schleef <ds@schleef.org>
19987 * examples/gstplay/player.c: (got_stream_length), (main):
19988 * examples/seeking/cdplayer.c: (update_scale):
19989 * examples/seeking/seek.c: (format_value), (update_scale):
19990 * examples/seeking/spider_seek.c: (format_value), (update_scale),
19992 Build fixes on AMD64.
19994 2004-10-25 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19996 reviewed by: Ronald Bultje <rbultje at gnome dot org>
19998 * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
19999 Fix for some v4l cards which hang in v4lsrc
20001 2004-10-25 Wim Taymans <wim@fluendo.com>
20003 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
20004 (gst_ogg_demux_push), (gst_ogg_chains_clear):
20005 Make sure to remove the pad when a new chain is
20006 encountered. Set some vars to NULL so we don't try
20007 to reference freed memory.
20009 2004-10-25 Wim Taymans <wim@fluendo.com>
20011 * examples/seeking/Makefile.am:
20012 * examples/seeking/cdplayer.c: (update_scale):
20013 * examples/seeking/chained.c: (unlinked), (new_pad), (main):
20014 * examples/seeking/playbin.c: (make_playerbin_pipeline),
20015 (format_value), (update_scale), (iterate), (start_seek),
20016 (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
20017 (print_usage), (main):
20018 Added some more examples, update others.
20020 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20022 * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
20023 * ext/speex/gstspeexdec.c: (speex_dec_chain):
20024 * ext/theora/theoradec.c: (theora_dec_chain):
20025 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
20026 Add codec-name metadata.
20028 2004-10-25 Takao Fujiwara <Takao.Fujiwara@Sun.COM>
20030 Reviewd by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20032 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
20033 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
20034 * ext/alsa/gstalsamixertrack.h:
20036 ALSA mixer track label internationalization (#154054).
20038 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20040 * ext/theora/theoradec.c: (theora_dec_chain):
20041 Export bitrate as metadata.
20043 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20045 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
20046 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
20047 * ext/alsa/gstalsamixertrack.h:
20048 Fix names, fix loop.
20050 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20052 * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
20053 (speex_dec_convert):
20054 sinkconvert function so oggdemux can get the file length (totem).
20056 2004-10-25 James Morrison <ja2morri@csclub.uwaterloo.ca>
20058 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20060 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
20061 Don't push incomplete packets.
20062 * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
20063 Fix MPEG-4 audio typefinding.
20065 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20067 * sys/v4l/Makefile.am:
20068 * sys/v4l/gstv4l.c: (plugin_init):
20069 * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
20070 (gst_v4lelement_init), (gst_v4lelement_dispose),
20071 (gst_v4lelement_change_state):
20072 * sys/v4l/gstv4lelement.h:
20073 * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
20074 (gst_v4l_xoverlay_close), (idle_refresh),
20075 (gst_v4l_xoverlay_set_xwindow_id):
20076 * sys/v4l/gstv4lxoverlay.h:
20077 * sys/v4l/v4l-overlay_calls.c:
20078 * sys/v4l/v4l_calls.h:
20079 * sys/v4l2/Makefile.am:
20080 * sys/v4l2/gstv4l2.c: (plugin_init):
20081 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
20082 (gst_v4l2element_init), (gst_v4l2element_dispose),
20083 (gst_v4l2element_change_state):
20084 * sys/v4l2/gstv4l2element.h:
20085 * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
20086 (gst_v4l2_xoverlay_close), (idle_refresh),
20087 (gst_v4l2_xoverlay_set_xwindow_id):
20088 * sys/v4l2/gstv4l2xoverlay.h:
20089 * sys/v4l2/v4l2-overlay_calls.c:
20090 * sys/v4l2/v4l2_calls.h:
20091 Remove client-side overlay handling, use the X-server v4l plugin
20092 for that. Nicer overlay, less code. Also make the plugin
20093 compileable without X (but then without overlay, obviously).
20094 Makes xwindowlistener obsolete, should we remove that?
20096 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20098 * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
20099 (gst_osssrc_src_query):
20100 * sys/oss/gstosssrc.h:
20101 OK, so people want offset in DEFAULT. This time, actually fix all
20103 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
20106 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20108 * gst/asfdemux/gstasfmux.c:
20109 * gst/avi/gstavimux.c:
20112 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20114 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
20115 Fix properties (channel, norm, frequency).
20117 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20119 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
20121 * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
20124 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20126 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
20129 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20131 * sys/v4l2/gstv4l2element.h:
20132 Yet Another Hack (tm) for kernel header borkedness.
20133 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
20134 (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
20135 (gst_v4l2src_link), (gst_v4l2src_getcaps),
20136 (gst_v4l2src_change_state):
20137 * sys/v4l2/gstv4l2src.h:
20138 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
20139 (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
20140 Fix caps, keep track of state, work.
20142 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20144 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
20147 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20149 * sys/oss/gstosssrc.c: (gst_osssrc_get):
20150 Don't mix bytes and samples.
20152 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20154 * ext/ogg/gstoggmux.c:
20155 Basic pad template which accepts OGM tracks, speex, flac, vorbis
20156 and theora. Any is incorrect.
20157 * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
20159 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
20160 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
20161 (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
20162 (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
20163 * sys/v4l/gstv4lmjpegsrc.h:
20164 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
20165 (gst_v4lsrc_change_state):
20166 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
20167 (gst_v4lmjpegsrc_capture_stop):
20168 Fix caps. Keep track of internal state. Work.
20170 2004-10-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20173 Fix the build fixes.
20175 2004-10-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20177 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20178 (gst_ogg_demux_src_event), (_find_chain_seek),
20179 (gst_ogg_pad_push):
20180 Check for pad availability before using it.
20181 * ext/ogg/gstoggdemux.c: (_find_chain_process):
20182 Fix parsing of chained ogg. Needs more work on the decoder side.
20184 2004-10-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
20186 * gst/spectrum/Makefile.am:
20187 * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
20189 Fix demo and reenable it. Yes, I'm currently playing with audio
20192 2004-10-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20194 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
20195 We love it if files that start at zero work too...
20197 2004-10-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20199 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20200 Handle files with missing EOS headers.
20202 2004-10-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20204 * gst/tcp/gsttcpserversink.c:
20205 (gst_tcpserversink_handle_server_read),
20206 (gst_tcpserversink_init_send):
20207 Zero some variables first (need for accept not to return EINVAL)
20209 2004-10-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20211 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20212 (gst_ogg_demux_src_event), (gst_ogg_pad_push):
20213 * ext/theora/theoradec.c: (theora_dec_sink_convert),
20214 (theora_dec_chain):
20215 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
20216 (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
20217 Seeking and querying finetune.
20219 2004-10-20 Thomas Vander Stichele <thomas at apestaart dot org>
20223 * ext/raw1394/Makefile.am:
20226 2004-10-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20228 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20230 * gst/playback/Makefile.am:
20231 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
20232 * gst/playback/gstplay-marshal.list:
20233 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
20236 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20238 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
20241 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20243 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20244 (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
20245 (gst_ogg_pad_push):
20246 Yay for non-lineair granulepos in theora.
20248 2004-10-18 Wim Taymans <wim@fluendo.com>
20250 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
20251 (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
20252 * ext/dv/gstdvdec.h:
20253 Make sure we renegotiate aspect ratio when the camera switches.
20255 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20257 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20258 (gst_ogg_demux_src_event), (gst_ogg_pad_push):
20260 * ext/theora/theoradec.c: (theora_dec_chain):
20261 Skip headers. Bad idea for chained ogg, but fixes seeking.
20263 2004-10-18 Wim Taymans <wim@fluendo.com>
20266 I swear, this is the last time I touch this.
20268 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20270 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20271 (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
20272 (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
20274 * ext/theora/theoradec.c: (theora_dec_sink_convert):
20275 Time-to-default conversion.
20276 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
20277 Don't error on unknown packets, just skip. We should probably
20278 read them if we want to support chained ogg.
20280 2004-10-18 Wim Taymans <wim@fluendo.com>
20283 Added cdaudio to wrong list.
20285 2004-10-18 Wim Taymans <wim@fluendo.com>
20290 2004-10-18 Wim Taymans <wim@fluendo.com>
20292 * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
20293 (gst_dvdec_video_link), (gst_dvdec_push):
20294 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
20295 (gst_smokeenc_resync), (gst_smokeenc_chain):
20296 Fix mimetype on smoke encoder.
20297 Add aspect ratio to dvdec. Not sure if these
20298 values are correct though....
20300 2004-10-18 Wim Taymans <wim@fluendo.com>
20302 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
20303 Fix vorbis property descriptions and ranges.
20305 2004-10-18 Wim Taymans <wim@fluendo.com>
20307 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20308 Really do nothing when no data is available.
20309 Go to the playing state when the stream is not seekable
20310 instead of failing.
20312 2004-10-18 Wim Taymans <wim@fluendo.com>
20314 * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
20315 (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
20316 (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
20317 (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
20318 (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
20319 Added uri handler for cd://
20322 2004-10-18 Wim Taymans <wim@fluendo.com>
20324 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
20325 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20326 (try_to_link_1), (no_more_pads), (close_link), (type_found):
20327 * gst/playback/gstplaybasebin.c: (gen_preroll_element),
20328 (remove_prerolls), (unknown_type), (add_element_stream),
20329 (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
20330 (gst_play_base_bin_remove_element),
20331 (gst_play_base_bin_link_stream):
20332 * gst/playback/gstplaybin.c: (gen_video_element),
20333 (gen_vis_element), (remove_sinks), (setup_sinks):
20334 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
20335 (gst_stream_info_get_type), (gst_stream_info_class_init),
20336 (gst_stream_info_init), (gst_stream_info_new),
20337 (gst_stream_info_dispose), (stream_info_mute_pad),
20338 (gst_stream_info_set_property), (gst_stream_info_get_property):
20339 * gst/playback/gststreaminfo.h:
20340 Add sink padtemplate to decodebin.
20341 Added some more comments.
20342 Make queue size configurable in playbasebin.
20343 Added possibility to use elements as sinks (ex cdaudio).
20345 2004-10-15 Wim Taymans <wim@fluendo.com>
20347 * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
20348 (gst_speexenc_chain):
20349 Fix speex timestamps so that it gets muxed properly.
20351 2004-10-15 Wim Taymans <wim@fluendo.com>
20353 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
20354 (gst_dv1394src_base_init), (gst_dv1394src_class_init),
20355 (gst_dv1394src_init), (gst_dv1394src_dispose),
20356 (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
20357 (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
20358 (gst_dv1394src_event), (gst_dv1394src_get_formats),
20359 (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
20360 (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
20361 (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
20362 (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
20363 * ext/raw1394/gstdv1394src.h:
20364 Added conversion/query functions.
20365 Update buffer timestamps,
20367 Added uri dv:// so it might play from the firewire in playbin.
20368 Fix a possible leak.
20371 2004-10-15 Wim Taymans <wim@fluendo.com>
20373 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
20374 (gst_dv1394src_init), (gst_dv1394src_set_property),
20375 (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
20376 (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
20377 * ext/raw1394/gstdv1394src.h:
20378 Added AV/C VTR control support needed for some cameras.
20379 Added automatic port detection.
20380 Added properties for selecting the channel.
20381 The configure.ac script is not yet updated to reflect the
20382 new libavc1394 and librom1394 dependencies.
20384 2004-10-15 Wim Taymans <wim@fluendo.com>
20386 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
20387 (qtdemux_parse), (gst_qtdemux_handle_esds):
20388 An esds box is not a container.
20389 Fix parsing of mp4v boxes.
20390 Do not try to renegotiate fps for each frame. Need to
20391 find a better method. This should fix mp4 playback.
20393 2004-10-14 David Schleef <ds@schleef.org>
20395 * configure.ac: update for swfdec-0.3 and liboil-0.2
20396 * ext/swfdec/gstswfdec.c: update for swfdec-0.3
20397 * ext/swfdec/gstswfdec.h: same
20398 * gst/videofilter/gstvideobalance.c: update for liboil-0.2
20399 * gst/videotestsrc/videotestsrc.c: same
20401 2004-10-14 Wim Taymans <wim@fluendo.com>
20403 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
20404 (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
20405 (is_sync_frame), (gst_multifdsink_new_client),
20406 (gst_multifdsink_handle_client_write),
20407 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
20408 (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
20409 Turn warnings into info.
20410 Don't allow a state change in the streaming thread.
20412 2004-10-14 Thomas Vander Stichele <thomas at apestaart dot org>
20414 * ext/vorbis/oggvorbisenc.c:
20415 * ext/vorbis/vorbisdec.c:
20416 fix template sample rate
20418 2004-10-13 Wim Taymans <wim@fluendo.com>
20420 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
20421 Decoding the header first fixes some problems in resyncing
20424 2004-10-12 Wim Taymans <wim@fluendo.com>
20426 * gst/playback/gstplaybin.c: (gen_video_element),
20427 (gen_vis_element), (remove_sinks), (setup_sinks):
20428 Added vis plugin support, need to configure the vis
20429 element to activate it.
20431 2004-10-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20433 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
20434 (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
20436 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
20437 (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
20438 (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
20439 (gst_avi_demux_stream_index), (gst_avi_demux_skip),
20440 (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
20441 (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
20442 * gst/avi/gstavidemux.h:
20443 Support for openDML-2.0 indx/ix## chunks. Support for broken index
20444 recovery (where, if part of the index is broken, we will still read
20445 the rest of the index and recover the broken part by stream
20446 scanning). More broken media support. EOS workarounds. General AVI
20447 braindamage headache recovery. Aspirin included.
20449 2004-10-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20451 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
20452 (cdparanoia_event), (cdparanoia_query):
20453 Get rid of hideous lead-in.
20455 2004-10-11 Wim Taymans <wim@fluendo.com>
20457 * gst/playback/gstplaybasebin.c: (setup_source):
20458 Wrong var used to get g_list_next.
20460 2004-10-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20462 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
20463 (cdparanoia_get), (cdparanoia_open):
20464 Report discid as metadata, add duration.
20466 2004-10-11 Wim Taymans <wim@fluendo.com>
20468 * gst/playback/gstplaybasebin.c: (setup_source):
20469 Cleanup the previous pipeline a little earlier for the
20470 case that a source element provides raw data.
20472 2004-10-11 Benjamin Otte <otte@gnome.org>
20474 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
20475 reset v1 tag offset when there is no v1 tag. Fixes id3demux always
20476 consuming the last 128 bytes, even though it was valid mp3 data.
20478 2004-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20480 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
20481 (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
20482 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
20483 Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
20485 2004-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20487 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
20488 Fix for webcams that support only specific width or height
20490 2004-10-09 Tim-Philipp Müller <t.i.m@zen.co.uk>
20492 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20494 * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
20495 Fix wrong discont event setup (fixes #154967).
20497 2004-10-09 Sebastien Cote <sc5@hermes.usherb.ca>
20499 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20501 * gst/auparse/gstauparse.c: (gst_auparse_chain):
20502 Error out on invalid data (fixes #154807).
20504 2004-10-09 Tim-Philipp Müller <t.i.m@zen.co.uk>
20506 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20508 * ext/dvdread/dvdreadsrc.c: (_read):
20509 Make titles > 0 work again (fixes #154834).
20511 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20513 * gst-libs/gst/riff/riff-media.c:
20514 (gst_riff_create_video_template_caps):
20515 WMV3 missing in template caps.
20517 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20519 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20520 OK, so the original code was too strict. It makes random AVI files
20521 hang for seconds upon opening, which is unacceptable and is far
20522 beyond the original goal of getting multiple chunks for one-chunk
20523 sounc stream files. So now do just that.
20525 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20527 * gst/playback/gstplaybasebin.c: (setup_source),
20528 (gst_play_base_bin_change_state):
20529 Actually clean up streaminfo if output fails. This would trigger
20530 if, for example, there was no CD in the drive. No preroll, so
20531 a streaminfo structure is created, but the subsequent state change
20532 of the thread fails.
20533 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
20534 Don't change state if parent failed.
20536 2004-10-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20538 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
20539 (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
20540 (gen_video_element), (remove_sinks):
20541 Add small bits of code for screenshot handling.
20543 2004-10-08 Wim Taymans <wim@fluendo.com>
20545 * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
20546 (gen_video_element), (gen_audio_element), (setup_sinks):
20547 Don't assume the user provided sinks are named "sink"...
20549 2004-10-08 Wim Taymans <wim@fluendo.com>
20551 * gst/playback/gstplaybasebin.c: (gen_preroll_element),
20552 (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
20553 (gst_play_base_bin_link_stream):
20554 Do not try to autoplug sources that generate raw streams like
20556 disconnect the preroll overrun signal when we don't need it anymore.
20558 2004-10-08 Milosz Derezynski <internalerror.rez@fhtw-berlin.de>
20560 * ext/cdparanoia/gstcdparanoia.c: (_do_init),
20561 Added reworked patch from #154903 from milosz derezynski (deadchip).
20563 2004-10-08 Wim Taymans <wim@fluendo.com>
20565 * ext/cdparanoia/gstcdparanoia.c: (_do_init),
20566 (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
20567 (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
20568 (cdparanoia_convert), (cdparanoia_uri_get_type),
20569 (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
20570 (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
20571 * ext/cdparanoia/gstcdparanoia.h:
20572 This adds the cdda://<tracknum> uri.
20574 2004-10-08 Wim Taymans <wim@fluendo.com>
20576 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
20577 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20578 (try_to_link_1), (no_more_pads), (close_link), (type_found):
20579 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
20580 (unknown_type), (gst_play_base_bin_remove_element),
20581 (gst_play_base_bin_link_stream):
20582 * gst/playback/gstplaybasebin.h:
20583 * gst/playback/gstplaybin.c: (gst_play_bin_init),
20584 (gst_play_bin_set_property), (gen_video_element),
20585 (gen_audio_element), (setup_sinks):
20586 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
20587 (gst_stream_info_get_type), (gst_stream_info_class_init),
20588 (gst_stream_info_init), (gst_stream_info_new),
20589 (gst_stream_info_dispose), (stream_info_mute_pad),
20590 (gst_stream_info_set_property), (gst_stream_info_get_property):
20591 * gst/playback/gststreaminfo.h:
20592 Reuse the audio and video bins.
20593 Some internal cleanups in the stream selection code.
20595 2004-10-08 Julien MOUTTE <julien@moutte.net>
20597 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20598 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
20599 * sys/ximage/ximagesink.h:
20600 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
20601 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
20602 * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
20603 not coming from those elements. Moreover these elements should not keep
20604 the xid they have been given when in NULL state.
20606 2004-10-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20608 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20609 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
20610 * sys/ximage/ximagesink.h:
20611 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
20612 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
20613 * sys/xvimage/xvimagesink.h:
20614 Actually only create a new toplevel window if we're not gonna
20615 embed it right after.
20617 2004-10-07 Wim Taymans <wim@fluendo.com>
20619 * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
20620 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
20621 * gst/playback/gstplaybin.c: (setup_sinks):
20622 Implement muting/unmuting of streams, mute streams that are not
20625 2004-10-07 Wim Taymans <wim@fluendo.com>
20627 * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
20629 Added lame audio/x-ac3 typefind function.
20631 2004-10-06 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
20636 === release 0.8.5 ===
20638 2004-10-06 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
20643 releasing 0.8.5, "Take You On"
20645 2004-10-06 Wim Taymans <wim@fluendo.com>
20647 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20648 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
20649 (no_more_pads), (close_link), (type_found):
20650 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20651 * gst/playback/gstplaybin.c: (gen_video_element):
20652 Do not signal the no_more_pads after the first pad when
20653 we are plugging a non dynamic element with multiple
20654 output pads (like swfdec, dvdec, ...).
20656 2004-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
20659 bump for prerelease
20661 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20663 * gst/wavparse/gstwavparse.c:
20664 add ATRAC3 to STATIC CAPS to fix a warning
20666 * gst/matroska/ebml-read.c:
20667 * gst-libs/gst/riff/riff-read.c:
20670 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20672 * gst-libs/gst/riff/riff-media.c:
20673 generate caps for ATRAC3 audio streams
20675 * gst/realmedia/rmdemux.c:
20676 generate caps for ATRAC3 audio streams
20678 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20680 * gst/wavparse/Makefile.am
20681 * gst/wavparse/riff.h
20682 * gst/wavparse/wavparse.vcproj
20683 riff.h removal (unused and duplication with riff-ids.h)
20685 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20687 * gst/wavparse/gstwavparse.h
20688 remove duplicated defines for audio codec codes
20690 * gst-libs/gst/riff/riff-ids.h
20691 * gst/wavenc/riff.h:
20692 add "4CC" code for ATRAC3 audio streams
20693 add "4CC" code for ITU_G721_ADPCM (unused for now)
20695 2004-10-06 Wim Taymans <wim@fluendo.com>
20697 * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
20698 Actually _do_ negotiation. Pass gdouble as arg instead
20699 of guint64 for the framerate.
20701 2004-10-06 Wim Taymans <wim@fluendo.com>
20703 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20704 (find_compatibles), (close_pad_link), (try_to_link_1),
20705 (no_more_pads), (close_link), (type_found):
20706 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20707 * gst/playback/gstplaybin.c: (gen_video_element),
20708 (gen_audio_element):
20709 Set state on newly added element to READY so that negotiation
20711 Addes some more debug info.
20712 Do not try to plug pads with multiple caps structures or ANY
20713 because it is too dangerous since we do not do dynamic
20716 2004-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
20718 written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
20722 add Oriya translation
20724 2004-10-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20726 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20727 Prevent overwrite of size member. Makes audio sound crappy.
20729 2004-10-05 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20731 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
20732 Add rmvb to the list of known RealMedia extensions
20734 2004-10-05 Wim Taymans <wim@fluendo.com>
20736 * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
20737 (mngdec_openstream), (mngdec_closestream),
20738 (mngdec_handle_sink_event), (mngdec_readdata),
20739 (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
20740 (mngdec_getcanvasline), (mngdec_refresh),
20741 (gst_mngdec_change_state):
20742 Set the framerate correctly.
20744 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20746 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20747 There was something wrong with the index massaging.
20749 2004-10-04 Wim Taymans <wim@fluendo.com>
20751 * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
20752 * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
20753 (gst_smokedec_chain):
20754 * ext/jpeg/gstsmokedec.h:
20755 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
20756 (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
20757 * ext/jpeg/gstsmokeenc.h:
20758 * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
20759 (smokecodec_decode_new), (smokecodec_info_free),
20760 (smokecodec_set_quality), (smokecodec_get_quality),
20761 (smokecodec_set_threshold), (smokecodec_get_threshold),
20762 (smokecodec_set_bitrate), (smokecodec_get_bitrate),
20763 (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
20764 (smokecodec_encode), (smokecodec_parse_id),
20765 (smokecodec_parse_header), (smokecodec_decode):
20766 * ext/jpeg/smokecodec.h:
20767 * ext/jpeg/smokeformat.h:
20768 Updated smoke, new bitstream, allows embedding in ogg.
20770 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20772 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
20773 Fix seeking in some files. All this code is no longer needed (and
20774 actually breaks stuff) because we now synchronize the full index
20775 right when reading the header.
20777 2004-10-04 Wim Taymans <wim@fluendo.com>
20780 configure update for libmng.
20782 2004-10-04 Wim Taymans <wim@fluendo.com>
20784 * ext/libmng/Makefile.am:
20785 * ext/libmng/gstmng.c: (plugin_init):
20786 * ext/libmng/gstmng.h:
20787 * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
20788 (gst_mngdec_base_init), (gst_mngdec_class_init),
20789 (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
20790 (gst_mngdec_loop), (gst_mngdec_get_property),
20791 (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
20792 (mngdec_closestream), (mngdec_handle_sink_event),
20793 (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
20794 (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
20795 (gst_mngdec_change_state):
20796 * ext/libmng/gstmngdec.h:
20797 * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
20798 (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
20799 (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
20800 (gst_mngenc_chain), (gst_mngenc_get_property),
20801 (gst_mngenc_set_property):
20802 * ext/libmng/gstmngenc.h:
20803 Added basic MNG decoder. Needs more work. The encoder does
20806 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20808 * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
20809 (gst_rmdemux_loop), (gst_rmdemux_add_stream),
20810 (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
20811 Don't hang on length=0 chunks. Some negotiation fixes. Signal
20814 2004-10-04 Thomas Vander Stichele <thomas at apestaart dot org>
20817 you need at least 1.0.4 of speex
20819 2004-10-04 Iain <iaingnome@gmail.com>
20821 * ext/speex/gstspeexdec.h: Revert the includes changes.
20823 * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
20825 2004-09-30 Iain <iaingnome@gmail.com>
20827 * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
20828 found during init or set as a property instead of hardcoding /dev/audio
20830 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20832 * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
20833 (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
20834 (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
20835 (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
20836 (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
20837 (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
20838 (gst_rmdemux_dump_data):
20839 Use debug category, fix EOS handling. filesrc ! rmdemux now
20842 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20844 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
20845 (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
20846 (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
20847 Improve allocation, cutting and sorting of the index. How takes a
20848 few seconds instead of minutes.
20850 2004-10-03 Christophe Fergeau <teuf@gnome.org>
20852 * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
20855 2004-10-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20857 * gst-libs/gst/riff/riff-media.c:
20858 (gst_riff_create_video_caps_with_data),
20859 (gst_riff_create_video_template_caps):
20860 Add wing commander format mimetype/fourccs.
20861 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20862 Don't crash if some value is 0.
20864 2004-10-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20866 * gst-libs/gst/riff/riff-media.c:
20867 (gst_riff_create_video_caps_with_data),
20868 (gst_riff_create_video_template_caps):
20869 Add DIB fourcc (raw, palettized 8-bit RGB).
20870 * gst-libs/gst/riff/riff-read.c:
20871 (gst_riff_read_strf_vids_with_data):
20872 Oops, fix strf_data reading bug.
20873 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
20874 Use a non-NULL tag.
20875 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
20876 Time for hacks. Sorry Dave. At least one quicktime movie (a
20877 trailer) that I've encountered contains multiple video tracks.
20878 One of those is the actual video track, the other are one-frame
20879 tracks (images). Unfortunately, the number of frames according
20880 to the trak header is 1 for each, so that doesn't help. So
20881 instead, I look at the duration and discard tracks with a
20882 duration shorter than 20% of the length of the stream. Better
20885 2004-10-01 Christian Schaller <christian@fluendo.com>
20887 * ext/ivorbis/vorbis.c:
20888 Patch from Phil Blundell (Bug 152341)
20890 2004-10-01 Wim Taymans <wim@fluendo.com>
20892 * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
20893 (speex_dec_get_formats), (speex_dec_convert),
20894 (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
20895 (speex_dec_chain), (gst_speexdec_get_property),
20896 (gst_speexdec_set_property):
20899 2004-10-01 Wim Taymans <wim@fluendo.com>
20901 * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
20902 (gst_wavparse_stream_init), (gst_wavparse_fmt),
20903 (gst_wavparse_other), (gst_wavparse_loop),
20904 (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
20905 (gst_wavparse_srcpad_event):
20906 * gst/wavparse/gstwavparse.h:
20907 Added some more debugging info.
20908 Fix the case where the length of the file is 0.
20909 Make sure we seek to sample borders.
20911 2004-10-01 Wim Taymans <wim@fluendo.com>
20913 * gst/playback/README:
20914 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
20915 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20916 (try_to_link_1), (no_more_pads), (close_link), (type_found):
20917 Add some debug info to decodebin, update README
20919 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20921 * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
20922 Don't use g_print(); use GST_DEBUG().
20924 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20926 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
20927 (gst_ogg_mux_queue_pads):
20928 Handle EOS properly.
20930 2004-10-01 Sebastien Cote <sc5@hermes.usherb.ca>
20932 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20934 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
20935 (gst_faad_chain), (gst_faad_change_state):
20936 * ext/faad/gstfaad.h:
20937 Allow playback of raw (unframed) MPEG AAC files (#148993).
20939 2004-10-01 Sebastien Cote <sc5@hermes.usherb.ca>
20941 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20943 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
20944 Throw error if we didn't recognize the stream. Fixes #152289.
20946 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20948 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
20951 2004-10-01 Francis Labonte <francis_labonte@hotmail.com>
20953 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20955 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
20958 2004-10-01 Balamurali Viswanathan <balamurali.viswanathan@wipro.com>
20960 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20962 * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
20964 * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
20967 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20969 * gst-libs/gst/riff/riff-media.c:
20970 (gst_riff_create_video_caps_with_data),
20971 (gst_riff_create_audio_caps_with_data):
20972 Add codec_data handling (like asfdemux used to do).
20973 * gst/asfdemux/gstasf.c: (plugin_init):
20974 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
20975 (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
20976 Use riff-media for caps creation instead of our own (mostly
20977 broken) copy of its functions.
20979 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20981 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
20982 Don't actually error out if we get another return value than
20983 -EINVAL. Opposite to what I first thought, drivers have random
20984 return values for this, although -EINVAL is the expected return
20985 value. Since this is not fatal, we shouldn't use
20986 GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
20988 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20990 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
20991 (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
20992 (dvdreadsrc_get_property), (_open), (_seek), (_read),
20993 (dvdreadsrc_get), (dvdreadsrc_open_file),
20994 (dvdreadsrc_change_state):
20995 Fix. Don't do one big huge loop around the whole DVD, that will
20996 cache all data and thus eat sizeof(dvd) (several GB) before we
20998 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
20999 Actually NULL'ify event after using it.
21000 * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
21001 (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
21002 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
21003 (gst_ebml_read_seek), (gst_ebml_read_skip):
21005 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
21006 (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
21007 (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
21008 Fix timing (this will probably break if I seek using menus, but
21009 I didn't get there yet). VOBs and normal DVDs should now work.
21010 Add a mpeg2-only pad with high rank so this get autoplugged for
21012 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
21013 (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
21014 (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
21015 (gst_mpeg_demux_get_audio_stream),
21016 (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
21017 (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
21018 Use this as second rank for MPEG-1 and MPEG-2. Still use this for
21019 MPEG-1 but use dvddemux for MPEG-2.
21020 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
21021 (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
21022 (gst_mpeg_parse_parse_packhead):
21023 Timing. Only add pad template if it exists. Add sink template from
21024 class and not from ourselves. This means we will always use the
21025 correct sink template even if it is not the one defined in this
21028 2004-09-29 Wim Taymans <wim@fluendo.com>
21030 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
21031 (gst_mpeg_demux_parse_pes):
21032 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
21033 Fix playback of mpeg again, timestamps where screwed up by
21036 2004-09-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21038 * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
21039 Only return true if we actually filled something in. Prevents
21040 player applications from showing a random length for flac files.
21041 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
21042 (gst_riff_read_use_event), (gst_riff_read_handle_event),
21043 (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
21044 (gst_riff_read_strf_vids_with_data),
21045 (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
21046 OK, ok, so I implemented event handling. Apparently it's normal
21047 that we receive random events at random points without asking
21049 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
21050 (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
21051 (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
21052 (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
21053 (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
21054 (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
21055 (gst_avi_demux_stream_data), (gst_avi_demux_loop):
21056 * gst/avi/gstavidemux.h:
21057 Implement non-lineair chunk handling and subchunk processing.
21058 The first solves playback of AVI files where the audio and video
21059 data of individual buffers that we read are not synchronized.
21060 This should not happen according to the wonderful AVI specs, but
21061 of course it does happen in reality. It is also a prerequisite for
21062 the second. Subchunk processing allows us to cut chunks in small
21063 pieces and process each of these pieces separately. This is
21064 required because I've seen several AVI files with incredibly large
21065 audio chunks, even some files with only one audio chunk for the
21066 whole file. This allows for proper playback including seeking.
21067 This patch is supposed to fix all AVI A/V sync issues.
21068 * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
21069 (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
21071 * gst/modplug/gstmodplug.cc:
21072 Proper return value setting for the query() function.
21073 * gst/playback/gstplaybasebin.c: (setup_source):
21074 Being in non-playing state (after, e.g., EOS) is not necessarily
21075 a bad thing. Allow for that. This fixes playback of short files.
21076 They don't actually playback fully now, because the clock already
21077 runs. This means that small files (<500kB) with a small length
21078 (<2sec) will still not or barely play. Other files, such as mod
21079 or flx, will work correctly, however.
21081 2004-09-28 Wim Taymans <wim@fluendo.com>
21083 * ext/speex/gstspeex.c: (plugin_init):
21084 * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
21085 (gst_speex_dec_class_init), (speex_dec_get_formats),
21086 (speex_get_event_masks), (speex_get_query_types),
21087 (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
21088 (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
21089 (gst_speexdec_get_property), (gst_speexdec_set_property),
21090 (speex_dec_change_state):
21091 * ext/speex/gstspeexdec.h:
21092 * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
21093 (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
21094 (gst_speexenc_base_init), (gst_speexenc_class_init),
21095 (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
21096 (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
21097 (gst_speexenc_src_query), (gst_speexenc_init),
21098 (gst_speexenc_get_tag_value), (comment_init), (comment_add),
21099 (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
21100 (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
21101 (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
21102 (gst_speexenc_chain), (gst_speexenc_get_property),
21103 (gst_speexenc_set_property), (gst_speexenc_change_state):
21104 * ext/speex/gstspeexenc.h:
21105 Rewrote speex encoder, make sure it can be embedded in ogg.
21106 Implemented speex decoder.
21108 2004-09-28 Christian Schaller <christian@fluendo.com>
21111 Remove kioslave plugin. Markey is brewing a new working one
21112 * ext/Makefile.am: Remove kioslave plugin
21114 * gst-plugins.spec.in: remove kio plugin from spec
21116 2004-09-27 Wim Taymans <wim@fluendo.com>
21118 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21119 (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
21120 (is_sync_frame), (gst_multifdsink_client_queue_buffer),
21121 (gst_multifdsink_new_client),
21122 (gst_multifdsink_handle_client_write),
21123 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
21124 (gst_multifdsink_handle_clients):
21125 * gst/tcp/gstmultifdsink.h:
21126 Make syncing to keyframes actually work for new clients and lagging
21129 2004-09-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
21131 * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
21132 (gst_navigationtest_handle_src_event), (draw_box_planar411),
21133 (gst_navigationtest_planar411), (gst_navigationtest_change_state):
21134 * gst/debug/gstnavigationtest.h:
21135 make navigationtest display button-press and button-release events
21137 2004-09-26 Iain <iaingnome@gmail.com>
21139 * gst/interleave/interleave.c (all_channels_new_media): Checks if all
21140 the channels have received a new media event.
21141 (interleave_buffered_loop): Compresses a new media event on all
21144 2004-09-26 Iain <iaingnome@gmail.com>
21146 * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
21147 call the sinkpad's default event handler and not the srcpads. He also
21148 says this is confusing :)
21149 (gst_wavenc_stop_file): Company says that seek events only go upstream
21150 we should send a discontinuous downstream instead.
21152 2004-09-25 Christian Schaller <christian@fluendo.com>
21154 * Update SPEC file to be usable in conjunction with Fedora Core,
21155 Fedora.us and freshrpms packages
21156 * Fix typo in multifilesrc test Makefile
21158 2004-09-24 Wim Taymans <wim@fluendo.com>
21160 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
21161 Only signal the no_more_pads signal when we have
21162 added the stream to our list.
21164 2004-09-24 Wim Taymans <wim@fluendo.com>
21166 * gst/playback/gstplaybasebin.c: (remove_prerolls),
21168 * gst/playback/gstplaybasebin.h:
21169 * gst/playback/gstplaybin.c: (setup_sinks):
21170 Don't try to preroll or decode more than one audio/video
21173 2004-09-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21175 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
21176 Throw error if we failed to find a suitable output. This should
21177 throw an error if we successfully set up a pipeline (e.g. because
21178 we recognized a media file) but found no decodable streams in it
21179 (e.g. because it contains only media stream types for which we
21180 have no decoders, or because it's not a media type).
21182 2004-09-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21184 * ext/dirac/Makefile.am:
21185 * ext/dirac/gstdirac.cc:
21186 * ext/dirac/gstdiracdec.cc:
21187 * ext/dirac/gstdiracdec.h:
21188 Do something. Don't actually know if this works because I don't
21189 have a demuxer yet.
21190 * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
21191 Add channels=1 to caps returned from _getcaps().
21192 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
21193 (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
21194 (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
21195 (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
21196 (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
21197 (gst_ogm_parse_change_state):
21198 Separate between audio/video so ogmaudioparse actually uses the
21199 audio pad templates. Both audio and video work now, including
21200 autoplugging. Also use sometimes-srcpad hack.
21201 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
21202 Handle events better. Don't hang on infinite loops.
21203 * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
21204 (gst_avi_demux_init), (gst_avi_demux_reset),
21205 (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
21206 (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
21207 (gst_avi_demux_change_state):
21208 * gst/avi/gstavidemux.h:
21209 Improve A/V sync. Still not perfect.
21210 * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
21211 (gst_ebml_read_skip):
21212 Handle events better.
21213 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
21214 (gst_qtdemux_loop_header), (qtdemux_parse_trak),
21215 (qtdemux_audio_caps):
21216 Add IMA4. Improve event handling. Save offset after a seek when
21217 the headers are at the end of the file so that we don't end up in
21219 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
21220 Add low-priority typefind support for files with no length.
21222 2004-09-23 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21224 * testsuite/multifilesink/Makefile.am:
21227 2004-09-22 Julien MOUTTE <julien@moutte.net>
21229 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
21230 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
21231 mistakes from thaytan's patches.
21233 2004-09-23 Jan Schmidt <thaytan@mad.scientist.com>
21235 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
21236 For completeness, XSync in the destroy function as xvimage does.
21238 2004-09-23 Jan Schmidt <thaytan@mad.scientist.com>
21240 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
21241 Correct caps negotiation
21242 * gst/volume/gstvolume.c: (volume_chain_float),
21243 (volume_chain_int16):
21244 Modify debug output to be little more informative
21245 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
21246 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
21247 (gst_xvimagesink_xvimage_destroy):
21248 Add XSync calls after detaching from the shared memory segment to
21251 2004-09-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21253 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
21254 (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
21255 * ext/vorbis/vorbis.c: (plugin_init):
21256 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
21257 (gst_vorbisenc_chain):
21258 * ext/vorbis/vorbisenc.h:
21259 remove explicit newmedia support from oggmux and vorbisenc
21260 add debug category to vorbisenc
21261 * gst/multifilesink/gstmultifilesink.c:
21262 (gst_multifilesink_class_init), (gst_multifilesink_init),
21263 (gst_multifilesink_dispose), (gst_multifilesink_set_location),
21264 (gst_multifilesink_set_property), (gst_multifilesink_next_file),
21265 (gst_multifilesink_handle_event), (gst_multifilesink_chain),
21267 * gst/multifilesink/gstmultifilesink.h:
21268 add support for streamheader in multifilesink
21270 2004-09-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21272 * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
21273 (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
21274 (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
21275 Prevent infinite loops. More correct error reporting.
21276 * gst/auparse/gstauparse.c: (gst_auparse_chain):
21277 Error out if negotiation fails.
21278 * gst/playback/gstplaybasebin.c: (setup_source),
21279 (gst_play_base_bin_change_state), (gst_play_base_bin_error),
21280 (gst_play_base_bin_found_tag):
21281 Error/tag forwarding. Pre-roll fixes for source errors on state
21282 changes (e.g. "file does not exist") to prevent hangs.
21284 2004-09-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21286 * testsuite/multifilesink/Makefile.am:
21287 * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
21288 (gst_newmedia_class_init), (gst_newmedia_init),
21289 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
21290 (newfile_signal), (test_signal), (main):
21291 * testsuite/multifilesink/multifilesrc_test.c: (main):
21292 * testsuite/multifilesink/oggtheora_test.c:
21293 (gst_newmedia_base_init), (gst_newmedia_class_init),
21294 (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
21295 (test_format), (newfile_signal), (test_signal), (main):
21296 * testsuite/multifilesink/oggvorbis_test.c:
21297 (gst_newmedia_base_init), (gst_newmedia_class_init),
21298 (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
21299 (test_format), (newfile_signal), (test_signal), (main):
21300 * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
21301 (gst_newmedia_class_init), (gst_newmedia_init),
21302 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
21303 (newfile_signal), (test_signal), (main):
21306 2004-09-20 Christian Schaller <christian@fluendo.com>
21308 * Fix mikmod license to LGPL as they have relicensed
21309 * Move Dirac and Effectv into LGPL section of README_license
21311 2004-09-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21313 * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
21314 (gst_mad_change_state):
21315 Allow for mp3 rate/channels changes. However, only very
21316 conservatively. Reason that we *have* to enable this is smiply
21317 because the mad find_sync() function is not good enough, it will
21318 regularly sync on random data as valid frames and therefore make
21319 us provide random caps as *final* caps of the stream. The best fix
21320 I could think of is to simply require several of the same stream
21321 changes in a row before we change caps.
21322 The actual testcase that works now is #
21323 * ext/ogg/Makefile.am:
21324 * ext/ogg/gstogg.c: (plugin_init):
21325 * ext/ogg/gstogmparse.c:
21326 OGM support (video only for now; I need an audio sample file).
21327 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
21328 (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
21329 (gst_asf_demux_add_video_stream):
21331 * gst/playback/gstplaybasebin.c: (unknown_type):
21332 Don't error out on single unknown-types after all. It's wrong.
21333 If we found type of video and audio but not of a subtitle stream,
21334 it will still error out (which is unwanted). Will find a better fix
21336 * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
21337 (ogmaudio_type_find), (plugin_init):
21340 2004-09-20 Johan Dahlin <johan@gnome.org>
21342 * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
21343 after setting caps.
21345 2004-09-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21347 * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
21348 * gst/wavenc/gstwavenc.h:
21349 Added newmedia support to wavenc
21351 2004-09-17 Wim Taymans <wim@fluendo.com>
21353 * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
21354 (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
21355 (gst_fdset_fd_can_write), (gst_fdset_wait):
21356 * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
21357 (gst_multifdsink_init), (gst_multifdsink_add),
21358 (gst_multifdsink_remove), (gst_multifdsink_get_stats),
21359 (gst_multifdsink_remove_client_link),
21360 (gst_multifdsink_client_queue_buffer),
21361 (gst_multifdsink_handle_client_write),
21362 (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
21363 (gst_multifdsink_close), (gst_multifdsink_change_state):
21364 * gst/tcp/gstmultifdsink.h:
21365 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
21366 (gst_tcpserversink_removed):
21367 Small cleanups in fdset.c
21368 Use a hastable to map fd to the client structure for faster
21369 lookup in _remove and get_stats.
21370 Added virtual function to close the fds.
21371 Handle clients even when the select/poll call was unblocked because
21373 Implement syncing to keyframe in the recovery procedure.
21375 2004-09-16 Iain <iaingnome@gmail.com>
21377 * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
21380 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21382 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
21383 Caps are only set if the type of the stream is unknown, but this
21384 is initialized in ->init_stream(), so set to UNKNOWN after calling
21385 ->init_stream() so that capsnego starts.
21387 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21389 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21390 (gst_avi_demux_stream_data):
21391 Just hardcode for raw audio then. AVI audio sucks.
21393 2004-09-15 Arwed v. Merkatz <v.merkatz@gmx.net>
21395 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
21396 * gst/matroska/matroska-mux.c: (audiosink_templ),
21397 (gst_matroska_mux_audio_pad_link):
21398 * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
21399 Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
21401 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21403 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21404 (gst_avi_demux_stream_data):
21405 Try to fix a/v sync issues.
21407 2004-09-15 David Schleef <ds@schleef.org>
21409 * configure.ac: remove NASM check, since we don't use it. Update
21411 * ext/dirac/gstdiracdec.cc: update to current 0.4 API
21412 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
21413 Initialized variables.
21414 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
21415 (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
21416 (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
21419 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21421 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21422 (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
21423 * gst/avi/gstavidemux.h:
21424 Fix for compressed audio (mp3) timestamp generation. How did this
21427 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21429 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
21430 Volume is a double not a float.
21432 2004-09-15 Wim Taymans <wim@fluendo.com>
21434 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
21435 (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
21436 Don't close the fd in multifdsink as we didn't open it in the
21437 first place. Some cleanups.
21439 2004-09-15 Wim Taymans <wim@fluendo.com>
21441 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
21442 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21443 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21444 Fix the case where the muxer would mark pages as delta
21445 frames when they are not (vorbis only ogg).
21447 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21449 * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
21450 (gst_play_base_bin_change_state):
21451 Handle the case where we failed to setup a clear pipeline. This
21452 will throw an error (or EOS, another nice case) and if you don't
21453 catch that, the app will wait for the signal forever (and thus
21456 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21458 * ext/gnomevfs/gstgnomevfssink.c:
21459 (gst_gnomevfssink_uri_get_protocols):
21460 * ext/gnomevfs/gstgnomevfssrc.c:
21461 (gst_gnomevfssrc_uri_get_protocols):
21462 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
21463 * ext/gnomevfs/gstgnomevfsuri.h:
21464 Use _uri_new() instead of _open(), so it doesn't take as long and
21465 Christophe's computer won't hang.
21466 * gst/playback/gstplaybasebin.c: (unknown_type):
21467 Throw error on unknown media type, so apps actually display it.
21469 2004-09-14 Brian Cameron <brian.cameron@sun.com
21471 * tools/gst-launch-ext-m.m: Changed ~ to $ENV{HOME} to allow
21472 this script to work on Solaris since bash shell handles echo
21473 differenly than bash.
21475 2004-09-17 Wim Taymans <wim@fluendo.com>
21477 * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
21478 (setup_source), (gst_play_base_bin_set_property),
21479 (gst_play_base_bin_add_element):
21480 * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
21481 Some more work on making sure seeking pauses the pipeline and
21482 that changing the uri actually does something.
21484 2004-09-17 Wim Taymans <wim@fluendo.com>
21486 * gst/tcp/gstfdset.c: (gst_fdset_wait):
21487 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
21488 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
21489 (gst_tcpserversink_close):
21490 Be a bit more paranoid when freeing memory.
21492 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21494 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
21495 (qtdemux_parse_trak):
21496 Don't crash by dividing by zero (see sample movie in #126922).
21498 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21500 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
21501 Don't touch non-existing data (fixes crash on file in #140147).
21503 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21505 * gst/playback/gstplaybasebin.c:
21506 (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
21507 Handle double disposals, and proper change of URIs.
21509 2004-09-13 Martin Eikermann <meiker@upb.de>
21511 * gst/mpegstream/gstmpegparse.c:
21512 fix synchronistation for streams recorded from digital PCR
21515 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21517 * ext/gnomevfs/Makefile.am:
21518 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
21519 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
21520 (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
21521 (gst_gnomevfssink_uri_get_type),
21522 (gst_gnomevfssink_uri_get_protocols),
21523 (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
21524 (gst_gnomevfssink_uri_handler_init),
21525 (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
21526 (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
21527 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
21528 (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
21529 (gst_gnomevfssrc_uri_get_type),
21530 (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
21531 (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
21532 (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
21533 (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
21534 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
21535 * ext/gnomevfs/gstgnomevfsuri.h:
21536 Add URI support to Gnome-VFS plugins. Tries to load a fixed list
21537 of fake URIs to see which this version of Gnome-VFS likes, and
21538 uses that for the Gst-URI interface. Makes playbin support http://
21539 streams. Also fix up some stupid behaviour in gnomevfssrc.
21541 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21543 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
21544 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
21545 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
21546 (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
21547 Update mixer (to sync with other sessions) if we try to obtain
21548 a new value. This makes alsamixer work accross applications.
21549 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
21550 Only call sync functions if we're running, else alsalib asserts.
21551 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
21552 Sometimes fails to compile. Possibly a gcc bug.
21553 * gst/playback/gstplaybin.c: (gen_video_element),
21554 (gen_audio_element):
21555 Add a reference to an application-provided object, because we lose
21556 this same reference if we add it to the bin. If we don't do this,
21557 we can only use this object once and thus crash if we go from
21558 ready to playing, back to ready and back to playing again.
21559 Also add an audioscale element because several cheap soundcards -
21560 like mine - don't support all samplerates.
21561 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
21562 (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
21563 Fix wrong order or PAR calls. Makes automatically obtained PAR
21564 from the X server atually being used.
21566 2004-09-12 David Schleef <ds@schleef.org>
21568 Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
21569 #151887, #152102, #152247.
21570 * examples/indexing/indexmpeg.c: 64-bit warning fixes.
21571 * examples/seeking/cdparanoia.c: same
21572 * examples/seeking/cdplayer.c: same
21573 * examples/seeking/seek.c: same
21574 * examples/seeking/spider_seek.c: same
21575 * examples/seeking/vorbisfile.c: same
21576 * examples/stats/mp2ogg.c: same
21577 * ext/esd/esdsink.c: (gst_esdsink_class_init),
21578 (gst_esdsink_dispose): Dispose of element properly.
21579 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
21581 * ext/nas/nassink.c: (gst_nassink_class_init),
21582 (gst_nassink_dispose): Dispose of element correctly.
21583 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
21584 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
21585 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
21586 Fix 64-bit warning.
21587 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
21588 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
21589 Fix 64-bit warning.
21591 2004-09-12 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21593 * configure.ac : change speex detection as 1.1.6 now uses
21594 .pc/pkg-config and they changed their headers location.
21596 2004-09-09 Arwed v. Merkatz <v.merkatz@gmx.net>
21598 * gst/matroska/matroska-mux.h:
21599 * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
21600 (gst_matroska_mux_start), (gst_matroska_mux_finish),
21601 (gst_matroska_mux_write_data):
21602 Write multiple blocks/frames per cluster.
21603 Write meta-seek information (seek heads).
21605 2004-09-09 Scott Wheeler <wheeler@kde.org>
21607 * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
21608 (gst_play_bin_set_property), (gst_play_bin_get_property),
21609 (gen_audio_element), (gen_audio_element):
21610 Add a volume element / property to the pipeline.
21612 2004-09-07 Wim Taymans <wim@fluendo.com>
21614 * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
21615 Copy timestamps from the master pad to the output buffers.
21617 2004-09-03 Thomas Vander Stichele <thomas at apestaart dot org>
21619 * ext/raw1394/gstdv1394src.c:
21620 throw errors when applicable
21622 2004-09-01 Arwed v. Merkatz <v.merkatz@gmx.net>
21624 * gst/matroska/ebml-ids.h:
21625 * gst/matroska/ebml-read.c: (gst_ebml_read_date):
21626 * gst/matroska/ebml-write.c: (gst_ebml_write_date):
21627 * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
21628 automatically convert unix time <-> ebml time when reading/writing
21629 a date, use gst_ebml_write_uint to write CUETIME,
21630 not gst_ebml_write_date.
21631 * gst/matroska/matroska-ids.h:
21632 * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
21633 (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
21634 (gst_matroska_mux_track_header), (gst_matroska_mux_start),
21635 (gst_matroska_mux_write_data):
21636 Write track and segment UIDs, write muxing date, write
21637 TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
21638 Create cues for audio only files.
21640 2004-08-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21642 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
21643 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
21644 Re-commit ALSA switches.
21645 * gst/adder/gstadder.c: (gst_adder_loop):
21646 64-bit fix (#151416).
21647 * gst/debug/progressreport.c: (gst_progressreport_report):
21648 64-bit fix (#151419).
21649 * gst/matroska/matroska-demux.c:
21650 (gst_matroska_demux_parse_contents):
21651 64-bit fix (#151420).
21652 * gst/playback/test3.c: (update_scale):
21653 64-bit fix (#151421).
21655 2004-08-31 Thomas Vander Stichele <thomas at apestaart dot org>
21660 === release 0.8.4 ===
21662 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
21664 * configure.ac: releasing 0.8.4, "Alias"
21666 2004-08-31 Thomas Vander Stichele <thomas at apestaart dot org>
21668 * ext/theora/Makefile.am:
21669 fix makefile. Fixes #151462.
21671 2004-08-30 Wim Taymans <wim@fluendo.com>
21673 * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
21674 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21675 (gst_multifdsink_remove_client_link),
21676 (gst_multifdsink_client_queue_buffer),
21677 (gst_multifdsink_handle_client_write):
21678 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
21679 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
21680 Fix some memory leaks.
21682 2004-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
21684 Patch by: David Schleef
21688 rename our detection macro for V4L2. Fixes #151236.
21690 2004-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
21692 Patch by: David Schleef
21695 check to define LAMEPRESET. Fixes #151232.
21697 2004-08-27 David Schleef <ds@schleef.org>
21699 * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
21700 (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
21701 (gst_glimagesink_fixate): Move local variable declarations to
21702 make gcc-2.95 happy.
21704 2004-08-27 Thomas Vander Stichele <thomas at apestaart dot org>
21707 bump nano for prerelease
21709 2004-08-27 David Schleef <ds@schleef.org>
21711 * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
21712 * sys/sunaudio/gstsunaudiosrc.c:
21713 * sys/sunaudio/gstsunaudiosrc.h:
21715 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
21717 * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
21718 handle EOS correctly
21719 * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
21720 * gst/matroska/matroska-mux.h:
21721 added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
21722 VFW compatibility mode
21724 2004-08-27 Thomas Vander Stichele <thomas at apestaart dot org>
21726 patch by: Zaheer Abbas Merali
21728 * ext/ogg/gstoggmux.c:
21729 * ext/vorbis/vorbisenc.c:
21730 * ext/vorbis/vorbisenc.h:
21733 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
21735 * gst/matroska/ebml-write.c: (gst_ebml_write_float),
21736 fix byte order reversion on little endian machines.
21737 * gst/matroska/matroska-mux.c: (audiosink_templ),
21738 (gst_matroska_mux_audio_pad_link):
21739 add TTA codec to the list of supported codecs.
21740 * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
21741 (gst_matroska_mux_start), (gst_matroska_mux_finish),
21742 (gst_matroska_mux_write_data):
21743 * gst/matroska/matroska-mux.h:
21744 write segment duration correctly, write muxing app string, fixes bugs
21745 #140897 and #140898.
21746 * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
21747 wait for all pads to be negotiated before starting to mux.
21749 2004-08-26 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21751 * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
21752 * ext/lame/gstlame.h:
21753 Added new media support to lame
21755 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
21757 * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
21758 send vorbis headers at the beginning of a stream, fixes bug #141554.
21759 Interpret BLOCKDURATION and set buffer duration accordingly, fixes
21761 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
21762 (gst_matroska_demux_plugin_init):
21763 * gst/matroska/matroska-ids.h:
21764 enable demuxing of TTA audio streams, fixes bug #148951.
21765 * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
21766 enable typefinding for TTA audio files, fixes bug #148711.
21767 * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
21768 set XVID_LOWDELAY flag for decoding so xvid always returns an image,
21769 fixes playback of packed bitstream and xvid with bframes, bug #135407.
21771 2004-08-24 Sebastien Cote <sc5@hermes.usherb.ca>
21773 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
21774 (gst_riff_read_element_data), (gst_riff_read_seek),
21775 (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
21776 #144616, patch reviewed by Ronald and committed by Christophe Fergeau
21779 2004-08-23 Iain <iaingnome@gmail.com>
21781 * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
21782 tags. They appear to be handled differently to normal.
21783 (tag_list_to_id3_tag_foreach): Ditto.
21785 2004-08-22 Wim Taymans <wim@fluendo.com>
21787 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21788 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21789 Make sure we never send -1 granulepos.
21791 2004-08-20 Wim Taymans <wim@fluendo.com>
21793 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21794 (gst_ogg_mux_loop):
21795 I will accept bitchslappings with non sharp objects.
21797 2004-08-20 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21800 Clean up the test for lame presets
21802 2004-08-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21805 * ext/lame/Makefile.am:
21806 * ext/lame/gstlame.c: (gst_lame_class_init),
21807 (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
21808 Only enable lame presets if version of lame has presets in API
21810 2004-08-19 Jan Schmidt <thaytan@mad.scientist.com>
21811 * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
21812 * gst/udp/gstudpsrc.h:
21813 Don't call gst_pad_push in a get function. Fixes #150449
21815 2004-08-18 Wim Taymans <wim@fluendo.com>
21817 * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
21818 (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
21819 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
21820 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21821 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21823 * gst/tcp/gstfdset.h:
21824 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21825 (gst_multifdsink_client_queue_buffer),
21826 (gst_multifdsink_handle_client_write):
21827 * gst/tcp/gstmultifdsink.h:
21828 Some extra checks in gstfdset.
21829 Only use send() when the fd is a socket. Don't try to
21830 read from write only fds.
21832 2004-08-18 Wim Taymans <wim@fluendo.com>
21834 * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
21835 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
21836 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21837 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21839 Add more locking and bounds checking.
21841 2004-08-18 Wim Taymans <wim@fluendo.com>
21843 * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
21844 Realloc test fdset in the lock and right before starting
21845 the poll call. Bump the limit to 4096.
21847 2004-08-17 David Schleef <ds@schleef.org>
21849 * sys/sunaudio/Makefile.am:
21850 * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
21851 of rates and channels. Make debugging less obnoxious.
21853 Patch from Balamurali Viswanathan implementing a mixer for
21854 Sun audio. (bug #144091):
21855 * sys/sunaudio/gstsunelement.c:
21856 * sys/sunaudio/gstsunelement.h:
21857 * sys/sunaudio/gstsunmixer.c:
21858 * sys/sunaudio/gstsunmixer.h:
21860 2004-08-17 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21862 * gst/audioscale/gstaudioscale.c:
21863 * gst/audioscale/gstaudioscale.h:
21864 made audioscale resample from any sample rate to any sample rate
21866 2004-08-17 Thomas Vander Stichele <thomas at apestaart dot org>
21868 * ext/libpng/gstpngdec.c:
21869 error out on unsupported types
21871 2004-08-17 Iain <iaingnome@gmail.com>
21873 * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
21874 mid_side and loose_mid_side properties if its a stereo stream.
21876 2004-08-17 Wim Taymans <wim@fluendo.com>
21878 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
21879 (theora_get_formats), (theora_dec_src_convert),
21880 (theora_dec_sink_convert), (theora_dec_src_query),
21881 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
21884 2004-08-17 Wim Taymans <wim@fluendo.com>
21886 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
21887 (gst_ogg_pad_push):
21888 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
21889 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
21890 (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
21891 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21892 Mark delta units in the muxer.
21893 Try to decode the packet after an out-of-sync error from
21896 2004-08-17 Wim Taymans <wim@fluendo.com>
21898 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
21899 (gst_multifdsink_init), (gst_multifdsink_add),
21900 (gst_multifdsink_client_queue_buffer),
21901 (gst_multifdsink_set_property), (gst_multifdsink_get_property):
21902 * gst/tcp/gstmultifdsink.h:
21903 Added option to send a keyframe to clients as the first buffer.
21904 Make timeout property writable.
21906 2004-08-17 Thomas Vander Stichele <thomas at apestaart dot org>
21908 patch by: Wim Taymans
21910 * gst/tcp/gstfdset.c:
21911 * gst/tcp/gstmultifdsink.c:
21912 fix index comparison, should include 0
21914 2004-08-16 Wim Taymans <wim@fluendo.com>
21916 * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
21917 (gst_fdset_add_fd), (gst_fdset_remove_fd),
21918 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21919 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21921 copy when reallocing for poll so the select arguments don't get
21922 changed during the call
21924 2004-08-16 Wim Taymans <wim@fluendo.com>
21926 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
21927 (gst_theora_enc_class_init), (theora_enc_sink_link),
21928 (theora_buffer_from_packet), (theora_enc_chain):
21929 Fix bug where buffers were not marked as keyframes
21932 2004-08-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21934 * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
21935 (gst_lame_preset_get_type), (gst_lame_class_init):
21936 describe the enum values for vbr mode and presets more verbosely
21938 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21940 * ext/lame/gstlame.c: (gst_lame_mode_get_type),
21941 (gst_lame_quality_get_type), (gst_lame_padding_get_type),
21942 (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
21943 (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
21944 * ext/lame/gstlame.h:
21945 add preset property to lame so it can use lame presets
21947 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21949 * ext/lame/gstlame.c: (gst_lame_get_property):
21950 whoops forgot break, thanks teuf
21952 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21954 * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
21955 (gst_lame_class_init), (gst_lame_src_getcaps),
21956 (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
21957 (gst_lame_get_property), (gst_lame_setup):
21958 * ext/lame/gstlame.h:
21959 fix lame's broken vbr stuff, allow it to resample if need be, and also
21960 make xing header optional
21962 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21964 * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
21965 added getcaps function so samplerate doesnt get fixated to silly values
21967 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21969 * ext/lame/gstlame.c: (gst_lame_src_link):
21970 revert previous fix
21972 2004-08-12 Johan Dahlin <johan@gnome.org>
21974 * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
21975 checks. Doesn't matter what state we are in. Interfaces are a
21976 compile time thing, not runtime. It also broke the python bindings.
21978 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21980 * ext/lame/gstlame.c: (gst_lame_src_link):
21981 made source pad link function check if sinkpad is ok..fixes the problem
21982 where core fixates the output rate of lame stupidly
21984 2004-08-12 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
21986 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
21987 * sys/v4l/v4l_calls.c:
21988 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
21989 fix fixate function to handle nonsimple caps.
21990 remove bogus check in _link
21993 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21995 * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
21996 set default compression ratio parameter to 0.0 so bitrate parameter
21999 2004-08-11 David Schleef <ds@schleef.org>
22001 * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
22003 2004-08-11 David Schleef <ds@schleef.org>
22005 * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
22008 2004-08-11 David Schleef <ds@schleef.org>
22010 * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
22012 2004-08-11 David Schleef <ds@schleef.org>
22014 * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
22016 * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
22017 * gst-libs/gst/video/gstvideosink.c: Change copyright block to
22019 * gst/auparse/gstauparse.c: Fix plugin license field.
22020 * gst/monoscope/gstmonoscope.c: Fix plugin license field.
22021 * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
22022 * gst/rtp/gstrtp.c: Fix plugin license field.
22024 2004-08-11 Wim Taymans <wim@fluendo.com>
22026 * gst/tcp/Makefile.am:
22027 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
22028 (ensure_size), (gst_fdset_new), (gst_fdset_free),
22029 (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
22030 (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
22031 (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
22032 (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
22033 (gst_fdset_fd_can_write), (gst_fdset_wait):
22034 * gst/tcp/gstfdset.h:
22035 * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
22036 (gst_multifdsink_class_init), (gst_multifdsink_init),
22037 (gst_multifdsink_add), (gst_multifdsink_remove),
22038 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
22039 (gst_multifdsink_remove_client_link),
22040 (gst_multifdsink_handle_client_read),
22041 (gst_multifdsink_client_queue_data),
22042 (gst_multifdsink_client_queue_caps),
22043 (gst_multifdsink_client_queue_buffer),
22044 (gst_multifdsink_handle_client_write),
22045 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
22046 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
22047 (gst_multifdsink_get_property), (gst_multifdsink_init_send),
22048 (gst_multifdsink_close):
22049 * gst/tcp/gstmultifdsink.h:
22050 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
22051 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
22052 (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
22053 (gst_tcpserversink_close):
22054 * gst/tcp/gsttcpserversink.h:
22055 Abstracted away the select call, implemented poll (yes we ran into
22056 the 1024 limit in production).
22058 2004-08-11 Thomas Vander Stichele <thomas at apestaart dot org>
22060 * gst/tcp/gsttcp.c:
22061 * gst/tcp/gsttcpplugin.c:
22062 improve debuggging, remove assert
22064 2004-08-10 Wim Taymans <wim@fluendo.com>
22066 * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
22067 (gst_client_status_get_type), (gst_multifdsink_class_init),
22068 (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
22069 (gst_multifdsink_handle_client_read),
22070 (gst_multifdsink_handle_client_write),
22071 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
22072 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
22073 (gst_multifdsink_get_property):
22074 * gst/tcp/gstmultifdsink.h:
22075 * gst/tcp/gsttcp-marshal.list:
22076 Starting to prepare for specifying buffer time in other units
22077 than buffers. Expose remove reason in signal.
22079 2004-08-10 Wim Taymans <wim@fluendo.com>
22081 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
22082 (gst_multifdsink_remove), (gst_multifdsink_clear),
22083 (gst_multifdsink_remove_client_link),
22084 (gst_multifdsink_handle_client_read),
22085 (gst_multifdsink_client_queue_data),
22086 (gst_multifdsink_client_queue_buffer),
22087 (gst_multifdsink_handle_client_write),
22088 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
22089 (gst_multifdsink_chain), (gst_multifdsink_close):
22090 * gst/tcp/gstmultifdsink.h:
22091 Added more debugging info. Changed the way clients are
22092 removed from the lists. Fixed a bug where a bad file descriptor
22093 could cause many clients to be removed.
22095 2004-08-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
22097 * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
22098 allow all pixel-aspect-ratios, not just 1:1
22100 2004-08-09 David Schleef <ds@schleef.org>
22102 * sys/glsink/ARB_multitexture.h: Remove old files.
22103 * sys/glsink/EXT_paletted_texture.h:
22104 * sys/glsink/NV_register_combiners.h:
22105 * sys/glsink/gstgl_nvimage.c:
22106 * sys/glsink/gstgl_pdrimage.c:
22107 * sys/glsink/gstgl_rgbimage.c:
22108 * sys/glsink/gstglsink.c:
22109 * sys/glsink/gstglsink.h:
22110 * sys/glsink/gstglxwindow.c:
22111 * sys/glsink/regcomb_yuvrgb.c:
22113 2004-08-09 David Schleef <ds@schleef.org>
22115 Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
22116 GL sink plugin. (Bug #147302)
22118 * configure.ac: Test for OpenGL
22119 * sys/Makefile.am: Use test for OpenGL
22120 * sys/glsink/Makefile.am:
22121 * sys/glsink/glimagesink.c: rewrite
22122 * sys/glsink/glimagesink.h: rewrite
22124 2004-08-09 David Schleef <ds@schleef.org>
22126 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init): Only allow
22128 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
22129 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
22130 * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
22132 2004-08-09 Wim Taymans <wim@fluendo.com>
22134 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22135 (gst_multifdsink_add), (gst_multifdsink_get_stats),
22136 (gst_multifdsink_client_remove),
22137 (gst_multifdsink_handle_client_read),
22138 (gst_multifdsink_handle_client_write),
22139 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22140 Do a bit more logging, make the client_read code more robust.
22142 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
22144 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
22145 (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
22146 (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
22147 (gst_jpegdec_init), (gst_jpegdec_chain):
22148 * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
22149 (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
22150 cleanups, debugging fixes and memleak plugging
22152 2004-08-09 Wim Taymans <wim@fluendo.com>
22154 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
22155 (theora_get_formats), (theora_dec_src_convert),
22156 (theora_dec_sink_convert), (theora_dec_src_query),
22157 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
22158 (theora_dec_change_state):
22159 Don't crash on missing header packets.
22161 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
22165 Added Albanian translation (Laurent Dhima)
22169 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
22171 * ext/lame/gstlame.c:
22174 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
22176 * sys/ximage/ximagesink.c:
22177 * sys/xvimage/xvimagesink.c:
22178 assign all TOO_LAZY's to a real category. Thanks to Warthy Warthog.
22180 2004-08-06 Wim Taymans <wim@fluendo.com>
22182 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22183 (gst_multifdsink_add), (gst_multifdsink_get_stats),
22184 (gst_multifdsink_client_remove),
22185 (gst_multifdsink_handle_client_read),
22186 (gst_multifdsink_handle_client_write),
22187 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22188 Make sure we don't try to read more from a client that what
22189 ioctl says us or we deadlock.
22191 2004-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
22193 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
22194 (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
22195 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
22196 decouple running_time and n_frames so it can handle changing
22197 framerate while running
22199 2004-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
22203 updated translations
22205 2004-08-04 Benjamin Otte <otte@gnome.org>
22207 * gst/videotestsrc/gstvideotestsrc.c:
22208 (gst_videotestsrc_get_capslist), (generate_capslist),
22210 generate the list of supported caps at startup and reuse it instead
22211 of always generating it
22213 2004-07-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
22215 * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
22216 whoops, last checkin broke normal build
22218 2004-08-03 Benjamin Otte <otte@gnome.org>
22220 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
22221 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
22222 (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
22223 (gst_alsa_mixer_get_option):
22224 * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
22225 (dvdnavsrc_print_event):
22226 * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
22227 * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
22228 (gst_ogg_mux_pad_unlink):
22229 * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
22230 (gst_multipart_mux_pad_unlink):
22231 * gst/videofilter/gstvideobalance.c:
22232 (gst_videobalance_colorbalance_set_value):
22233 * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
22234 (gst_videomixer_pad_unlink):
22236 * sys/oss/gstossmixer.c:
22237 * sys/v4l/gstv4lcolorbalance.c:
22238 * sys/v4l/gstv4ltuner.c:
22239 * sys/v4l/v4lsrc_calls.c:
22240 * sys/v4l2/gstv4l2colorbalance.c:
22241 * sys/v4l2/gstv4l2tuner.c:
22242 compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
22244 2004-08-03 Benjamin Otte <otte@gnome.org>
22246 * examples/dynparams/filter.c: (ui_control_create):
22247 * examples/gstplay/player.c: (print_tag):
22248 * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
22249 * ext/gdk_pixbuf/gstgdkanimation.c:
22250 (gst_gdk_animation_iter_may_advance):
22251 * ext/jack/gstjack.c: (gst_jack_request_new_pad):
22252 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
22253 (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
22254 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
22255 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
22256 * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
22257 * gst-libs/gst/media-info/media-info-test.c: (print_tag):
22258 * gst/sine/demo-dparams.c: (main):
22259 * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
22260 * testsuite/alsa/formats.c: (create_pipeline):
22261 * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
22262 fixes for G_DISABLE_ASSERT and friends
22263 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
22264 (mp3_type_frame_length_from_header), (mp3_type_find),
22266 require mp3 typefinding to have at least MIN_HEADERS valid headers
22267 add typefinding for AAC adts files
22269 2004-08-04 Jan Schmidt <thaytan@mad.scientist.com>
22271 * sys/ximage/ximagesink.c:
22272 (gst_ximagesink_calculate_pixel_aspect_ratio):
22273 * sys/xvimage/xvimagesink.c:
22274 (gst_xvimagesink_calculate_pixel_aspect_ratio):
22275 Make sure we calculate pixel-aspect-ratio using floating point maths
22277 2004-08-03 Thomas Vander Stichele <thomas at apestaart dot org>
22280 updated translation
22282 2004-08-03 Thomas Vander Stichele <thomas at apestaart dot org>
22284 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
22285 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
22286 add debugging for display PAR calculation
22288 2004-08-02 David Schleef <ds@schleef.org>
22290 * configure.ac: Fix mikmod CFLAGS.
22292 2004-07-27 Benjamin Otte <otte@gnome.org>
22294 * gst/audioscale/gstaudioscale.c:
22295 - fix templates to only support S16, it's the only format that works
22296 - make caps nego code use try_set_caps_nonfixed and fixation instead
22297 of try_set_caps twice, which is not nice for autopluggers
22298 - change rank to secondary, so autopluggers can pick it up after
22301 2004-08-02 Iain <iain@prettypeople.org>
22303 * gst/interleave/interleave.c (interleave_init),
22304 (interleave_request_new_pad),
22305 (interleave_pad_removed),
22306 (interleave_buffered_loop): Use the real pad count, not the artificial
22309 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
22311 * configure.ac: bump nano back to development
22313 === release 0.8.3 ===
22315 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
22317 * configure.ac: releasing 0.8.3, "Water"
22319 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
22321 * sys/xvimage/xvimagesink.c:
22322 (gst_xvimagesink_calculate_pixel_aspect_ratio),
22323 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
22324 (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
22325 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
22326 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
22327 * sys/xvimage/xvimagesink.h:
22328 apply similar PAR fixes as to ximagesink
22330 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
22332 patch from: Benjamin Otte
22334 * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
22335 add link function to lame. Fixes #148986.
22337 2004-08-02 Johan Dahlin <johan@gnome.org>
22339 * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
22342 2004-07-30 David Schleef <ds@schleef.org>
22344 * gst/videomixer/Makefile.am: Fix things that should have been
22345 fixed in the last checkin.
22347 2004-07-30 David Schleef <ds@schleef.org>
22349 * gst/multipart/Makefile.am: Fix things that should have been
22350 fixed in the last checkin.
22352 2004-07-30 David Schleef <ds@schleef.org>
22354 * testsuite/multifilesink/Makefile.am: Fix unused variable.
22356 2004-07-30 Thomas Vander Stichele <thomas at apestaart dot org>
22359 bump nano for prerelease
22371 2004-07-30 Wim Taymans <wim@fluendo.com>
22373 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22374 (gst_multifdsink_add), (gst_multifdsink_remove),
22375 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
22376 (gst_multifdsink_client_remove),
22377 (gst_multifdsink_handle_client_write),
22378 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22379 * gst/tcp/gstmultifdsink.h:
22380 Recover from a select with a bad file descriptor by removing
22383 2004-07-30 Thomas Vander Stichele <thomas at apestaart dot org>
22386 fix requirement of core
22387 * gst-libs/gst/play/play.c: (gst_play_error_plugin),
22388 (gst_play_pipeline_setup):
22389 don't use colorspace element. do use hermescolorspace element.
22390 make macro to get a colorspace element.
22391 mark strings for translation.
22403 update translations
22405 2004-07-30 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22407 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
22408 fix default for newmedia flag
22410 2004-07-30 Wim Taymans <wim@fluendo.com>
22412 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
22413 (gst_theora_dec_init), (theora_get_formats),
22414 (theora_dec_src_convert), (theora_dec_sink_convert),
22415 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22416 (theora_dec_chain), (theora_dec_set_property),
22417 (theora_dec_get_property):
22418 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
22419 (gst_theora_enc_class_init), (gst_theora_enc_init),
22420 (theora_enc_sink_link), (theora_enc_chain),
22421 (theora_enc_set_property), (theora_enc_get_property):
22422 Added cropping option to theora decoder.
22423 Added border option to theora encoder.
22425 2004-07-30 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22427 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
22428 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
22429 (gst_pngenc_set_property):
22430 * ext/libpng/gstpngenc.h:
22431 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
22433 2004-07-30 Wim Taymans <wim@fluendo.com>
22435 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
22436 (theora_enc_sink_link), (theora_enc_chain),
22437 (theora_enc_set_property), (theora_enc_get_property):
22438 Fix encoding of non-multiple-of-16 video.
22440 2004-07-29 David Schleef <ds@schleef.org>
22442 * configure.ac: make test for audiofile more strict
22444 2004-07-25 Benjamin Otte <in7y118@public.uni-hamburg.de>
22446 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
22447 give different names to typefind functions
22449 2004-07-28 Thomas Vander Stichele <thomas at apestaart dot org>
22451 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
22452 (gst_ximagesink_calculate_pixel_aspect_ratio),
22453 (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
22454 (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
22455 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
22456 (gst_ximagesink_get_property), (gst_ximagesink_init):
22457 * sys/ximage/ximagesink.h:
22458 allocate PAR's dynamically.
22459 use autodetected PAR if no object-set PAR is given.
22460 add workaround for directfb's X not setting physical size.
22461 fix to xvimagesink will follow tomorrow.
22463 2004-07-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22465 * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
22466 * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
22467 (gst_shout2send_get_type), (gst_shout2send_set_clock),
22468 (gst_shout2send_class_init), (gst_shout2send_init),
22469 (set_shout_metadata), (gst_shout2send_set_metadata),
22470 (gst_shout2send_chain), (gst_shout2send_set_property),
22471 (gst_shout2send_get_property), (gst_shout2send_connect),
22472 (gst_shout2send_change_state):
22473 * ext/shout2/gstshout2.h:
22474 - fix for sending mp3 audio to icecast2 server, if pad link function not
22475 called before PAUSED state
22476 - added option to use GStreamer clock sync (as opposed to libshout's own sync)
22477 - added tagging support for mp3 audio broadcasted
22478 * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
22481 2004-07-28 Wim Taymans <wim@fluendo.com>
22483 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
22484 (gst_ogg_demux_push):
22485 Return query failure when we don't know the length of
22486 an ogg stream insteda of returning TRUE with a bogus value.
22488 2004-07-28 Wim Taymans <wim@fluendo.com>
22490 * ext/theora/theoradec.c: (theora_get_formats),
22491 (theora_dec_src_convert), (theora_dec_sink_convert),
22492 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22493 (theora_dec_chain):
22494 Don't screw up the 1 Chroma for 1 luma sample situation when we
22495 have an odd offset/width by adding a black border in those cases.
22497 2004-07-28 Wim Taymans <wim@fluendo.com>
22499 * ext/theora/theoradec.c: (theora_get_formats),
22500 (theora_dec_src_convert), (theora_dec_sink_convert),
22501 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22502 (theora_dec_chain):
22503 * ext/theora/theoraenc.c: (theora_enc_sink_link):
22504 Added first attempt at cropping of the image as required by the
22505 theora spec. We need more properties in the caps (offset_x,
22506 offset_y,stride) to implement this correctly.
22508 2004-07-28 Jan Schmidt <thaytan@mad.scientist.com>
22510 * ext/dvdnav/README:
22511 Update the README to use dvddemux
22512 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
22513 Ensure getcaps returns a subset of the template caps
22514 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
22515 (gst_mpeg2subt_init):
22516 Ensure getcaps returns a subset of the template caps
22517 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
22518 (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
22519 (gst_dvd_demux_get_subpicture_stream),
22520 (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
22521 * gst/mpegstream/gstdvddemux.h:
22522 Set the explicit caps on the current_video pad before pushing
22524 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
22525 (gst_mpeg_demux_get_audio_stream):
22526 Free caps used to gst_pad_set_explicit_caps, which takes a const
22529 2004-07-28 Thomas Vander Stichele <thomas at apestaart dot org>
22531 * configure.ac: update GStreamer requirement to 0.8.4 because of
22534 2004-07-28 Wim Taymans <wim@fluendo.com>
22536 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
22537 (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
22538 Add the pad to the element after setting up the caps. This
22539 makes it a lot easier to autoplug.
22541 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
22543 * gst/median/gstmedian.c:
22544 * gst/mpeg2subt/gstmpeg2subt.c:
22545 * gst/mpegaudioparse/gstmpegaudioparse.c:
22546 * gst/mpegstream/gstdvddemux.c:
22547 * gst/mpegstream/gstmpegdemux.c:
22548 * gst/mpegstream/gstmpegpacketize.c:
22549 * gst/rtjpeg/gstrtjpeg.c:
22550 * gst/rtjpeg/gstrtjpegdec.c:
22551 * gst/rtjpeg/gstrtjpegenc.c:
22552 * gst/sine/gstsinesrc.c:
22553 * gst/smooth/gstsmooth.c:
22554 * gst/smpte/gstsmpte.c:
22555 * gst/smpte/gstsmpte.h:
22556 * gst/stereo/gststereo.c:
22557 * gst/videofilter/gstgamma.c:
22558 * gst/videofilter/gstvideobalance.c:
22559 * gst/videofilter/gstvideofilter.c:
22560 * gst/videofilter/gstvideoflip.c:
22561 * gst/videoscale/gstvideoscale.c:
22562 * gst/videoscale/videoscale.c:
22563 * gst/videotestsrc/gstvideotestsrc.c:
22564 * gst/videotestsrc/videotestsrc.c:
22565 * gst/wavenc/gstwavenc.c:
22566 * gst/wavparse/gstwavparse.c:
22567 fix local includes and 64 bits constants
22569 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
22572 * gst-libs/gst/*/*.vcproj:
22574 more working plugins
22576 2004-07-27 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22578 * testsuite/alsa/Makefile.am:
22579 * testsuite/alsa/srcstate.c:
22580 add test for alsasrc changing state
22582 2004-07-27 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22584 * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
22586 * gst/silence/gstsilence.h:
22587 fix silence generation for 16bit raw audio
22589 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22591 * gst/matroska/matroska-demux.c:
22592 (gst_matroska_demux_parse_metadata),
22593 (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
22594 * gst/mpegaudio/common.c:
22595 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
22596 (gst_videoscale_getcaps), (gst_videoscale_link),
22597 (gst_videoscale_src_fixate), (gst_videoscale_init),
22598 (gst_videoscale_finalize):
22599 * gst/videoscale/gstvideoscale.h:
22600 * gst/videotestsrc/gstvideotestsrc.c:
22601 (gst_videotestsrc_get_capslist):
22602 * gst/wavenc/gstwavenc.c:
22603 * sys/oss/gstossmixer.c: (fill_labels):
22604 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
22605 (gst_ximagesink_handle_xevents),
22606 (gst_ximagesink_calculate_pixel_aspect_ratio),
22607 (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
22608 (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
22609 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
22610 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
22611 (gst_ximagesink_init), (gst_ximagesink_class_init):
22612 * sys/ximage/ximagesink.h:
22613 * sys/xvimage/xvimagesink.c:
22614 (gst_xvimagesink_calculate_pixel_aspect_ratio),
22615 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
22616 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
22617 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
22618 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
22619 * sys/xvimage/xvimagesink.h:
22620 first batch of pixel aspect ratio commits.
22622 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22624 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22625 (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
22626 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
22627 handle stride, needs work if we want to move stride handling
22628 upstream, but works correctly for our purposes.
22630 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22632 * gst/videoscale/README:
22633 add testing examples
22634 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
22635 (gst_videoscale_chain):
22636 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22637 (gst_videoscale_get_size):
22638 add get_size function that handles stride like videotestsrc.
22639 fixes conversion for YUV formats for as much as I can test them.
22641 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22643 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22644 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
22645 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22646 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
22647 (gst_xvimagesink_xvimage_put):
22648 further cleanups, logging, error handling and synchronizing
22650 2004-07-27 Wim Taymans <wim@fluendo.com>
22652 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
22653 (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
22654 (gst_videomixer_pad_set_property),
22655 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
22656 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
22657 (gst_videomixer_class_init), (gst_videomixer_init),
22658 (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
22659 (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
22660 (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
22661 (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
22662 (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
22663 (gst_videomixer_loop), (plugin_init):
22664 Be a nicer negotiation citizen and provide a getcaps function on
22665 the srcpad. This also fixes a crash when resizing.
22667 2004-07-27 Julien MOUTTE <julien@moutte.net>
22669 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22670 (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
22672 2004-07-27 Wim Taymans <wim@fluendo.com>
22674 * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
22675 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
22676 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
22677 (gst_pngenc_set_property):
22678 * ext/libpng/gstpngenc.h:
22679 Added snapshot property to pngenc.
22680 removed g_print from pngdec
22682 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
22684 * gst/ac3parse/ac3parse.vcproj
22685 * gst/adder/adder.vcproj
22686 * gst/alpha/alpha.vcproj
22687 * gst/alpha/alphacolor.vcproj
22688 * gst/asfdemux/asf.vcproj
22689 * gst/audioconvert/audioconvert.vcproj
22690 * gst/audiorate/audiorate.vcproj
22691 * gst/audioscale/audioscale.vcproj
22692 * gst/auparse/auparse.vcproj
22693 * gst/avi/avi.vcproj
22694 * gst/cdxaparse/cdxaparse.vcproj
22695 * gst/chart/chart.vcproj
22696 * gst/colorspace/colorspace.vcproj
22697 * gst/cutter/cutter.vcproj
22698 * gst/debug/debug.vcproj
22699 * gst/debug/efence.vcproj
22700 * gst/debug/navigationtest.vcproj
22701 * gst/deinterlace/deinterlace.vcproj
22702 * gst/effectv/effectv.vcproj
22703 * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
22704 * gst/filter/filter.vcproj
22705 * gst/flx/flxdec.vcproj
22706 * gst/goom/goom.vcproj
22707 * gst/interleave/interleave.vcproj
22708 * gst/law/alaw.vcproj
22709 * gst/law/mulaw.vcproj
22710 * gst/matroska/matroska.vcproj
22711 * gst/median/median.vcproj
22712 * gst/mixmatrix/mixmatrix.vcproj
22713 * gst/mpeg1sys/mpeg1systemencode.vcproj
22714 * gst/mpeg1videoparse/mp1videoparse.vcproj
22715 * gst/mpeg2sub/mpeg2subt.vcproj
22716 * gst/mpegaudio/mpegaudio.vcproj
22717 * gst/mpegaudioparse/mpegaudioparse.vcproj
22718 * gst/mpegstream/mpegstream.vcproj
22719 * gst/multifilesink/multifilesink.vcproj
22720 * gst/multipart/multipart.vcproj
22721 * gst/oneton/oneton.vcproj
22722 * gst/overlay/overlay.vcproj
22723 * gst/passthrough/passthrough.vcproj
22724 * gst/qtdemux/qtdemux.vcproj
22725 * gst/realmedia/rmdemux.vcproj
22726 * gst/rtjpeg/rtjpeg.vcproj
22727 * gst/rtp/rtp.vcproj
22728 * gst/silence/silence.vcproj
22729 * gst/sine/sinesrc.vcproj
22730 * gst/smooth/smooth.vcproj
22731 * gst/smpte/smpte.vcproj
22732 * gst/spectrum/spectrum.vcproj
22733 * gst/speed/speed.vcproj
22734 * gst/stereo/stereo.vcproj
22735 * gst/switch/switch.vcproj
22736 * gst/tags/tagedit.vcproj
22737 * gst/tcp/tcp.vcproj
22738 * gst/typefind/typefindfunctions.vcproj
22739 * gst/udp/udp.vcproj
22740 * gst/videobox/videobox.vcproj
22741 * gst/videocrop/videocrop.vcproj
22742 * gst/videodrop/videodrop.vcproj
22743 * gst/videofilter/gamma.vcproj
22744 * gst/videofilter/videobalance.vcproj
22745 * gst/videofilter/videofilter.vcproj
22746 * gst/videofilter/videoflip.vcproj
22747 * gst/videoflip/videoflip.vcproj
22748 * gst/videomixer/videomixer.vcproj
22749 * gst/videorate/videorate.vcproj
22750 * gst/videoscale/videoscale.vcproj
22751 * gst/videotestsrc/videotestsrc.vcproj
22752 * gst/virtualdub/virtualdub.vcproj
22753 * gst/volenv/volenv.vcproj
22754 * gst/volume/volume.vcproj
22755 * gst/wavenc/wavenc.vcproj
22756 * gst/wavparse/wavparse.vcproj
22757 * gst/y4m/y4menc.vcproj
22758 * gst-libs/gst/audio/audio.vcproj
22759 * gst-libs/gst/audio/audiofilter.vcproj
22760 * gst-libs/gst/colorbalance/colorbalance.vcproj
22761 * gst-libs/gst/idct/idtc.vcproj
22762 * gst-libs/gst/media-info/media-info.vcproj
22763 * gst-libs/gst/mixer/mixer.vcproj
22764 * gst-libs/gst/navigation/navigation.vcproj
22765 * gst-libs/gst/play/play.vcproj
22766 * gst-libs/gst/propertyprobe/propertyprobe.vcproj
22767 * gst-libs/gst/resample/resample.vcproj
22768 * gst-libs/gst/riff/riff.vcproj
22769 * gst-libs/gst/tuner/tuner.vcproj
22770 * gst-libs/gst/video/video.vcproj
22771 * gst-libs/gst/xoverlay/xoverlay.vcproj
22772 avoid problems with math.h, fix release dependancy
22773 rename GStreamer-0.8.lib to libgstreamer.lib
22775 2004-07-27 Julien MOUTTE <julien@moutte.net>
22777 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
22778 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
22779 the atom is not available we have to unlock the mutex. Fixes #148023
22781 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22783 * gst-libs/gst/media-info/media-info.h:
22784 issue for a vararg macro with MSVC
22786 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22788 * gst/effectv/effectv.vcproj
22789 * gst-libs/gst/idct/idct.vcproj:
22790 * gst-libs/gst/media-info/media-info.vcproj:
22791 * gst-libs/gst/navigation/navigation.vcproj:
22792 * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
22793 * gst-libs/gst/video/video.vcproj:
22794 * gst-libs/gst/xoverlay/xoverlay.vcproj:
22795 fixes for build problems
22797 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22799 * gst-libs/gst/audio/audio.def:
22800 * gst-libs/gst/audio/riff.def:
22801 add some definitions needed by plugins
22803 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22805 * gst/asfdemux/gstasfmux.c
22806 Fix some 64 bits constants to be glib friendly
22808 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22810 * gst/ac3parse/gstac3parse.c
22811 * gst/audioscale/gstaudioscale.c
22812 * gst/auparse/gstauparse.c
22813 * gst/colorspace/gstcolorspace.c
22814 * gst/colorspace/yuv2rgb.h
22815 local include fixes
22817 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22820 add more plugins to the build
22822 2004-07-26 Julien MOUTTE <julien@moutte.net>
22824 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22825 (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
22827 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
22829 * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
22830 (gst_level_set_property), (gst_level_get_property),
22831 (gst_level_base_init), (gst_level_class_init):
22832 add debugging categories. cleanups.
22834 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
22836 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22837 (gst_videoscale_planar411), (gst_videoscale_planar400),
22838 (gst_videoscale_packed422), (gst_videoscale_packed422rev),
22839 (gst_videoscale_scale_nearest_str1),
22840 (gst_videoscale_scale_nearest_str2),
22841 (gst_videoscale_scale_nearest_str4),
22842 (gst_videoscale_scale_nearest_16bit),
22843 (gst_videoscale_scale_nearest_24bit):
22844 fixed stride issues
22845 tested with 320x240 -> 321, 322, 324 x240
22846 tested with YV12, I420, YUY2, UYVY
22847 fixed packed422rev (don't think it could have worked before)
22848 by testing with UYVY
22850 2004-07-26 Benjamin Otte <otte@gnome.org>
22852 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
22853 (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
22855 add debugging category, add error checks like checking return values
22856 of setup calls, make sure it still works after
22857 PLAYING=>NULL=>PLAYING, fix encoding of mono streams
22859 2004-07-26 Wim Taymans <wim@fluendo.com>
22861 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
22862 (gst_mpeg_demux_get_audio_stream),
22863 (gst_mpeg_demux_process_private):
22864 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
22865 Check for error codes from the negotiation functions. Make sure
22866 we really set the pad caps when a new pad is created.
22868 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
22870 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
22871 (gst_ffmpeg_caps_to_pix_fmt):
22872 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
22873 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22874 (gst_ffmpegcolorspace_pad_link):
22875 don't make function do two things at the same time without reason.
22877 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22879 * gst/ac3parse/ac3parse.vcproj
22880 * gst/adder/adder.vcproj
22881 * gst/alpha/alpha.vcproj
22882 * gst/alpha/alphacolor.vcproj
22883 * gst/asfdemux/asf.vcproj
22884 * gst/audioconvert/audioconvert.vcproj
22885 * gst/audiorate/audiorate.vcproj
22886 * gst/audioscale/audioscale.vcproj
22887 * gst/auparse/auparse.vcproj
22888 * gst/avi/avi.vcproj
22889 * gst/cdxaparse/cdxaparse.vcproj
22890 * gst/chart/chart.vcproj
22891 * gst/colorspace/colorspace.vcproj
22892 * gst/cutter/cutter.vcproj
22893 * gst/debug/debug.vcproj
22894 * gst/debug/efence.vcproj
22895 * gst/debug/navigationtest.vcproj
22896 * gst/deinterlace/deinterlace.vcproj
22897 * gst/effectv/effectv.vcproj
22898 * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
22899 * gst/filter/filter.vcproj
22900 * gst/flx/flxdec.vcproj
22901 * gst/goom/goom.vcproj
22902 * gst/interleave/interleave.vcproj
22903 * gst/law/alaw.vcproj
22904 * gst/law/mulaw.vcproj
22905 * gst/matroska/matroska.vcproj
22906 * gst/median/median.vcproj
22907 * gst/mixmatrix/mixmatrix.vcproj
22908 * gst/mpeg1sys/mpeg1systemencode.vcproj
22909 * gst/mpeg1videoparse/mp1videoparse.vcproj
22910 * gst/mpeg2sub/mpeg2subt.vcproj
22911 * gst/mpegaudio/mpegaudio.vcproj
22912 * gst/mpegaudioparse/mpegaudioparse.vcproj
22913 * gst/mpegstream/mpegstream.vcproj
22914 * gst/multifilesink/multifilesink.vcproj
22915 * gst/multipart/multipart.vcproj
22916 * gst/oneton/oneton.vcproj
22917 * gst/overlay/overlay.vcproj
22918 * gst/passthrough/passthrough.vcproj
22919 * gst/qtdemux/qtdemux.vcproj
22920 * gst/realmedia/rmdemux.vcproj
22921 * gst/rtjpeg/rtjpeg.vcproj
22922 * gst/rtp/rtp.vcproj
22923 * gst/silence/silence.vcproj
22924 * gst/sine/sinesrc.vcproj
22925 * gst/smooth/smooth.vcproj
22926 * gst/smpte/smpte.vcproj
22927 * gst/spectrum/spectrum.vcproj
22928 * gst/speed/speed.vcproj
22929 * gst/stereo/stereo.vcproj
22930 * gst/switch/switch.vcproj
22931 * gst/tags/tagedit.vcproj
22932 * gst/tcp/tcp.vcproj
22933 * gst/typefind/typefindfunctions.vcproj
22934 * gst/udp/udp.vcproj
22935 * gst/videobox/videobox.vcproj
22936 * gst/videocrop/videocrop.vcproj
22937 * gst/videodrop/videodrop.vcproj
22938 * gst/videofilter/gamma.vcproj
22939 * gst/videofilter/videobalance.vcproj
22940 * gst/videofilter/videofilter.vcproj
22941 * gst/videofilter/videoflip.vcproj
22942 * gst/videoflip/videoflip.vcproj
22943 * gst/videomixer/videomixer.vcproj
22944 * gst/videorate/videorate.vcproj
22945 * gst/videoscale/videoscale.vcproj
22946 * gst/videotestsrc/videotestsrc.vcproj
22947 * gst/virtualdub/virtualdub.vcproj
22948 * gst/volenv/volenv.vcproj
22949 * gst/volume/volume.vcproj
22950 * gst/wavenc/wavenc.vcproj
22951 * gst/wavparse/wavparse.vcproj
22952 * gst/y4m/y4menc.vcproj
22953 more plugins supported under windows
22955 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
22957 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
22958 (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
22959 (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
22960 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
22961 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
22962 Add debugging statements. Use the sizes as returned by the
22963 *CreateImage calls.
22965 2004-07-26 Johan Dahlin <johan@gnome.org>
22967 * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
22968 the pad is negotiated.
22970 * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
22972 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22974 * gst-libs/gst/colorbalance/colorbalance.vcproj:
22975 * gst-libs/gst/idct/idct.vcproj:
22976 * gst-libs/gst/media-info/media-info.vcproj:
22977 * gst-libs/gst/mixer/mixer.vcproj:
22978 * gst-libs/gst/navigation/navigation.vcproj:
22979 * gst-libs/gst/play/play.vcproj:
22980 * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
22981 * gst-libs/gst/resample/resample.vcproj:
22982 * gst-libs/gst/tuner/tuner.vcproj:
22983 * gst-libs/gst/video/video.vcproj:
22984 * gst-libs/gst/xoverlay/xoverlay.vcproj:
22985 more plugins supported under windows
22987 2004-07-25 Iain <iain@prettypeople.org>
22989 * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
22990 pad now rather than when the pad is created because state changes wipe
22991 explicit caps (fixes #148043).
22993 2004-07-25 Sebastien Cote <sc5@hermes.usherb.ca>
22995 reviewed by Benjamin Otte <otte@gnome.org>
22997 * ext/mad/gstmad.c:
22998 fix mad plugin crashing on Sun (fixes #148289)
23000 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
23003 * gst/avi/avi.vcproj:
23004 * gst/matroska/matroska.def:
23005 * gst/matroska/matroska.vcproj:
23006 remove unused .def files
23008 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
23010 * gst-libs/gst/audio/gstaudiofilter.c:
23011 Clean the local include
23013 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
23016 * gst-libs/gst/audio/audio.def:
23017 * gst-libs/gst/audio/audio.vcproj:
23018 * gst-libs/gst/audio/audiofilter.vcproj:
23019 * gst-libs/gst/audio/riff.def:
23020 * gst-libs/gst/audio/riff.vcproj:
23021 * gst-libs/gst/gst-libs.def:
23022 * gst-libs/gst/gst-libs.vcproj:
23023 * gst/avi/avi.vcproj:
23024 * gst/avi/avi.vcproj:
23025 Copy the files where needed after building, cleaner projects
23027 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
23029 * gst/matroska/ebml-write.c:
23030 Fix some 64 bits constants to be glib friendly
23032 2004-07-24 Steve Lhomme <steve.lhomme@free.fr>
23035 * gst-libs/gst/gst-libs.def:
23036 * gst-libs/gst/gst-libs.vcproj:
23037 * gst/matroska/matroska.def:
23038 * gst/matroska/matroska.vcproj:
23039 Add the preliminary canvas to build plugins on Win32
23041 2004-07-23 Benjamin Otte <otte@gnome.org>
23043 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
23044 don't enfore negotiation from source side, it breaks
23045 sinesrc ! audioconvert ! osssink
23047 2004-07-22 David Schleef <ds@schleef.org>
23049 * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
23050 for ELF files, since they can easily be recognized as audio/mpeg.
23053 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
23055 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
23056 (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
23057 (gst_videoscale_scale_nearest_24bit),
23058 (gst_videoscale_scale_nearest_16bit):
23059 fix 16bit and 24bit for stride (24bit might need testing)
23060 don't pretend we do more than one algorithm
23062 2004-07-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
23066 * gst/multifilesink/Makefile.am:
23067 * gst/multifilesink/gstmultifilesink.c:
23068 (gst_multifilesink_get_formats),
23069 (gst_multifilesink_get_query_types), (_do_init),
23070 (gst_multifilesink_base_init), (gst_multifilesink_class_init),
23071 (gst_multifilesink_init), (gst_multifilesink_dispose),
23072 (gst_multifilesink_set_location), (gst_multifilesink_set_property),
23073 (gst_multifilesink_get_property), (gst_multifilesink_open_file),
23074 (gst_multifilesink_close_file), (gst_multifilesink_next_file),
23075 (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
23076 (gst_multifilesink_chain), (gst_multifilesink_change_state),
23077 (gst_multifilesink_uri_get_type),
23078 (gst_multifilesink_uri_get_protocols),
23079 (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
23080 (gst_multifilesink_uri_handler_init), (plugin_init):
23081 * gst/multifilesink/gstmultifilesink.h:
23082 * testsuite/Makefile.am:
23083 * testsuite/multifilesink/Makefile.am:
23084 * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
23085 (gst_newmedia_class_init), (gst_newmedia_init),
23086 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
23087 (newfile_signal), (test_signal), (main):
23088 multifilesink plugin for creating new files every time a new media
23089 discontinuity event occurs
23091 2004-07-22 Wim Taymans <wim@fluendo.com>
23093 * gst/alpha/Makefile.am:
23094 * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
23095 (gst_alpha_color_base_init), (gst_alpha_color_class_init),
23096 (gst_alpha_color_init), (gst_alpha_color_set_property),
23097 (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
23098 (transform), (gst_alpha_color_chain),
23099 (gst_alpha_color_change_state), (plugin_init):
23100 Stupid plugin to to RGBA to AYUV conversion because none of
23101 the colorspace plugins can handle that yet.
23103 2004-07-22 Wim Taymans <wim@fluendo.com>
23105 * examples/seeking/seek.c: (update_scale), (main):
23106 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23107 (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
23108 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
23109 (gst_decode_bin_init), (gst_decode_bin_dispose),
23110 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23111 (no_more_pads), (close_link), (type_found),
23112 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23114 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23115 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23116 (gst_play_base_bin_dispose), (queue_overrun),
23117 (gen_preroll_element), (remove_prerolls), (unknown_type),
23118 (no_more_pads), (new_stream), (setup_source),
23119 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
23120 (play_base_eos), (gst_play_base_bin_change_state),
23121 (gst_play_base_bin_add_element),
23122 (gst_play_base_bin_remove_element),
23123 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23124 (gst_play_base_bin_unlink_stream),
23125 (gst_play_base_bin_get_streaminfo):
23126 * gst/playback/gstplaybin.c: (gen_video_element),
23127 (gen_audio_element):
23128 * gst/playback/gststreaminfo.h:
23129 More playback updates, attempt to fix things after the state change
23132 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
23134 * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
23135 (gst_videoscale_scale_nearest_16bit):
23138 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
23140 * gst/videotestsrc/gstvideotestsrc.c:
23141 (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
23142 (gst_videotestsrc_init), (gst_videotestsrc_get),
23143 (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
23144 (gst_videotestsrc_get_property):
23145 * gst/videotestsrc/gstvideotestsrc.h:
23146 * gst/videotestsrc/videotestsrc.c:
23147 * gst/videotestsrc/videotestsrc.h:
23148 cleanup and commenting
23150 2004-07-21 Wim Taymans <wim@fluendo.com>
23152 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
23153 (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
23154 (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
23155 (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
23156 (_find_chain_get_unknown_part), (_find_streams_check),
23157 (gst_ogg_demux_push), (gst_ogg_pad_push):
23158 * ext/theora/theoradec.c: (theora_get_formats),
23159 (theora_dec_src_convert), (theora_dec_sink_convert),
23160 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
23161 (theora_dec_chain):
23162 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
23163 (vorbis_dec_convert), (vorbis_dec_src_query),
23164 (vorbis_dec_src_event), (vorbis_dec_event):
23165 More seeking fixes, oggdemux now supports seeking to time and
23166 uses the downstream element to convert granulepos to time.
23167 Seeking in theora-only ogg files now works.
23169 2004-07-21 Wim Taymans <wim@fluendo.com>
23171 * ext/theora/theoradec.c: (gst_theora_dec_init),
23172 (theora_get_formats), (theora_get_event_masks),
23173 (theora_get_query_types), (theora_dec_src_convert),
23174 (theora_dec_sink_convert), (theora_dec_src_query),
23175 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
23176 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
23177 (vorbis_get_event_masks), (vorbis_get_query_types),
23178 (gst_vorbis_dec_init), (vorbis_dec_convert),
23179 (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
23180 Added query/convert/formats functions to vorbis and theora decoders
23181 so that the outside world can use them too. Fixed seeking on an
23182 ogg/theora/vorbis file by disabling the seeking seeking on the
23185 2004-07-21 Julien MOUTTE <julien@moutte.net>
23187 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
23188 (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
23189 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
23190 images creation for both elements. We don't create the image on caps
23191 nego or renego, we just destroy the internal one if present if it does
23192 not match the needs. The chain function takes care of creating a new
23194 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
23195 (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
23196 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
23197 (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
23198 the image format information. The buffer pool checks for the context
23199 image format and discard images with different formats.
23200 * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
23202 2004-07-21 Thomas Vander Stichele <thomas at apestaart dot org>
23204 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23205 (gst_ffmpegcolorspace_chain):
23206 no point in doing any chaining if the pad we want to push from
23209 2004-07-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
23211 * gst-libs/gst/riff/riff-media.c:
23212 (gst_riff_create_audio_caps_with_data):
23213 Fix double end-to-native symbol conversion (#148021).
23215 2004-07-20 David Schleef <ds@schleef.org>
23217 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
23218 Don't use an Atom that doesn't exist.
23220 2004-07-20 Wim Taymans <wim@fluendo.com>
23222 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23223 (gst_multifdsink_add), (gst_multifdsink_get_stats),
23224 (gst_multifdsink_client_remove),
23225 (gst_multifdsink_handle_client_write),
23226 (gst_multifdsink_queue_buffer):
23227 * gst/tcp/gstmultifdsink.h:
23228 More multifdsink stats. Avoid deadlock by releasing locks
23229 before sending out a signal.
23231 2004-07-20 Thomas Vander Stichele <thomas at apestaart dot org>
23235 added Hungarian translation (Laszlo Dvornik)
23237 2004-07-20 Wim Taymans <wim@fluendo.com>
23239 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23240 (gst_multifdsink_add), (gst_multifdsink_client_remove),
23241 (gst_multifdsink_handle_client_write),
23242 (gst_multifdsink_queue_buffer):
23243 * gst/tcp/gsttcp-marshal.list:
23244 Fixed the stupid marshal definition.
23246 2004-07-20 Wim Taymans <wim@fluendo.com>
23248 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23249 (gst_multifdsink_init), (gst_multifdsink_add),
23250 (gst_multifdsink_client_remove),
23251 (gst_multifdsink_handle_client_write),
23252 (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
23253 (gst_multifdsink_set_property), (gst_multifdsink_get_property),
23254 (gst_multifdsink_init_send):
23255 * gst/tcp/gstmultifdsink.h:
23256 Added more stats, added timeout for a client, fixed some typos
23257 and added some comments.
23259 2004-07-20 Wim Taymans <wim@fluendo.com>
23261 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23262 (gst_multifdsink_add), (gst_multifdsink_get_stats),
23263 (gst_multifdsink_client_remove),
23264 (gst_multifdsink_handle_client_write):
23265 * gst/tcp/gstmultifdsink.h:
23266 * gst/tcp/gsttcp-marshal.list:
23267 Added get_stats method that returns a GValueArray of
23270 2004-07-19 Benjamin Otte <otte@gnome.org>
23272 * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
23273 make sure longname, description and author are valid UTF-8
23275 2004-07-19 Thomas Vander Stichele <thomas at apestaart dot org>
23277 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
23278 (gst_ximagesink_set_property):
23279 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
23280 (gst_xvimagesink_set_property):
23281 make sure SYNCHRONOUS is respected after getting the X context
23283 2004-07-18 Thomas Vander Stichele <thomas at apestaart dot org>
23285 * gst/matroska/matroska-demux.c:
23286 (gst_matroska_demux_handle_src_event),
23287 (gst_matroska_demux_parse_blockgroup):
23288 * gst/matroska/matroska-ids.h:
23289 add BlockReference tag and ignore it to clear out log.
23290 ignore NAVIGATION events to clear out log.
23292 2004-07-18 Thomas Vander Stichele <thomas at apestaart dot org>
23294 * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
23295 (gst_matroska_demux_add_stream):
23296 * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
23297 add debug categories
23299 2004-07-16 Wim Taymans <wim@fluendo.com>
23301 * ext/libpng/Makefile.am:
23302 * ext/libpng/gstpng.c: (plugin_init):
23303 * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
23304 (gst_pngdec_get_type), (gst_pngdec_base_init),
23305 (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
23306 (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
23307 * ext/libpng/gstpngdec.h:
23310 2004-07-16 Julien MOUTTE <julien@moutte.net>
23312 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
23313 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
23314 (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
23315 (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
23316 (gst_ximagesink_buffer_alloc):
23317 * sys/ximage/ximagesink.h:
23318 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
23319 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
23320 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
23321 (gst_xvimagesink_buffer_alloc):
23322 * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
23323 again. Using internal data pointer of the x(v)image to store image's
23324 data to be coherent with the buffer alloc mechanism. Investigated the
23325 image destruction code to be sure that everything gets freed correctly.
23327 2004-07-16 Wim Taymans <wim@fluendo.com>
23329 * gst-libs/gst/riff/riff-read.c:
23330 (gst_riff_read_strf_vids_with_data),
23331 (gst_riff_read_strf_auds_with_data):
23332 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
23333 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
23334 Make sure we don't create 0 sized subbuffers in riff-read.
23335 Signal the no more pads signal after reading the avi header.
23337 2004-07-16 Wim Taymans <wim@fluendo.com>
23339 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23340 (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
23341 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
23342 (gst_decode_bin_init), (gst_decode_bin_dispose),
23343 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23344 (no_more_pads), (close_link), (type_found),
23345 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23346 (gst_decode_bin_change_state), (plugin_init):
23347 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23348 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23349 (gst_play_base_bin_dispose), (queue_overrun),
23350 (gen_preroll_element), (remove_prerolls), (unknown_type),
23351 (no_more_pads), (new_stream), (setup_source),
23352 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
23353 (play_base_eos), (gst_play_base_bin_change_state),
23354 (gst_play_base_bin_add_element),
23355 (gst_play_base_bin_remove_element),
23356 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23357 (gst_play_base_bin_unlink_stream),
23358 (gst_play_base_bin_get_streaminfo):
23359 * gst/playback/gstplaybasebin.h:
23360 Better error recovery. Added configurable preroll queue size. Faster
23361 detection of no-more-pads.
23363 2004-07-16 Wim Taymans <wim@fluendo.com>
23365 * gst-libs/gst/video/video.h:
23366 Added 32 bits RGBA. Not sure if we should use another mime-type
23367 for alpha rgb. Currently the presence of the alpha_mask property
23368 signals an alpha channel.
23370 2004-07-16 Wim Taymans <wim@fluendo.com>
23372 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
23373 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
23374 FPS seems to be 0.0 to MAX everywhere else.
23376 2004-07-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
23378 * gst-libs/gst/riff/riff-media.c:
23379 (gst_riff_create_video_caps_with_data):
23380 mp42/mp43 (no caps) exist too.
23381 * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
23382 Set pixel_width/height; we've got them in-caps.
23383 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
23384 * gst/wavparse/gstwavparse.c: (plugin_init):
23385 Both are valid primary.
23386 * sys/oss/gstossmixer.c:
23387 Remove i18n hack and enable translations.
23389 2004-07-15 Benjamin Otte <otte@gnome.org>
23391 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
23392 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
23393 fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
23395 2004-07-15 Benjamin Otte <otte@gnome.org>
23397 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
23398 (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
23399 (gst_alsa_close_audio):
23400 disable some of the debugging code for now. Writing debugging to a
23401 buffer is broken in current alsalib releases.
23403 2004-07-12 Benjamin Otte <otte@gnome.org>
23405 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
23408 2004-07-14 Thomas Vander Stichele <thomas at apestaart dot org>
23410 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
23411 (theora_dec_src_query), (theora_dec_event):
23412 * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
23413 add debugging categories. Remove \n's.
23415 2004-07-13 Johan Dahlin <johan@gnome.org>
23417 * gst/playback/gstplaybin.c (gst_play_bin_set_property)
23418 (gst_play_bin_get_property): Impl.
23420 2004-07-13 Wim Taymans <wim@fluendo.com>
23422 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
23423 When trying to find the stream length, seek back N pages
23424 instead of just one, where N is the number of streams in
23427 2004-07-13 Wim Taymans <wim@fluendo.com>
23429 * gst-libs/gst/riff/riff-media.c:
23430 (gst_riff_create_audio_caps_with_data),
23431 (gst_riff_create_audio_caps),
23432 (gst_riff_create_audio_template_caps):
23433 * gst-libs/gst/riff/riff-media.h:
23434 * gst-libs/gst/riff/riff-read.c:
23435 (gst_riff_read_strf_vids_with_data),
23436 (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
23437 * gst-libs/gst/riff/riff-read.h:
23438 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
23439 (gst_avi_demux_add_stream):
23440 Set codec_data on caps for avidemuxer.
23442 2004-07-12 David Schleef <ds@schleef.org>
23444 * configure.ac: Fix test for Objective C
23446 2004-07-12 Jan Schmidt <thaytan@mad.scientist.com>
23447 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
23448 (gst_gdk_pixbuf_chain):
23449 Add svg and pcx to template caps, and ensure that getcaps returns a
23450 subset of the template caps.
23451 Copy each row manually for output, as gdkpixbuf may pad the
23452 rowstride to a 32-bit word boundary.
23454 2004-07-12 Wim Taymans <wim@fluendo.com>
23456 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
23457 (gst_riff_create_video_template_caps):
23458 Fix the template caps to include some more media types.
23460 2004-07-12 Wim Taymans <wim@fluendo.com>
23462 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23463 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23464 (compare_ranks), (print_feature), (gst_decode_bin_init),
23465 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23466 (try_to_link_1), (new_pad), (close_link), (type_found),
23467 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23468 (gst_decode_bin_change_state), (plugin_init):
23469 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23470 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23471 (gst_play_base_bin_dispose), (queue_overrun),
23472 (gen_preroll_element), (remove_prerolls), (no_more_pads),
23473 (new_stream), (setup_source), (gst_play_base_bin_set_property),
23474 (gst_play_base_bin_get_property), (play_base_eos),
23475 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
23476 (gst_play_base_bin_remove_element),
23477 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23478 (gst_play_base_bin_unlink_stream),
23479 (gst_play_base_bin_get_streaminfo):
23480 * gst/playback/gstplaybasebin.h:
23481 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23482 (gst_play_bin_class_init), (gst_play_bin_init),
23483 (gst_play_bin_dispose), (gst_play_bin_set_property),
23484 (gst_play_bin_get_property), (gen_video_element),
23485 (gen_audio_element), (remove_sinks), (setup_sinks),
23486 (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
23487 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23488 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23489 (gst_play_bin_query), (plugin_init):
23490 * gst/playback/test4.c: (main):
23491 More fixes on reusing of the element.
23493 2004-07-11 Benjamin Otte <otte@gnome.org>
23495 * ext/mad/gstmad.c: (normal_seek):
23496 allow seeking for other methods than just SET
23498 2004-07-11 Andy Wingo <wingo@pobox.com>
23500 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
23501 float, "any" caps -> buffer_frames=[0,MAX].
23503 * gst/interleave/interleave.c (interleave_getcaps): Seems the core
23504 doesn't intersect our caps with the template any more. Do it
23506 (interleave_buffered_loop): Use g_newa instead of malloc/free.
23508 2004-07-09 Wim Taymans <wim@fluendo.com>
23510 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23511 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23512 (compare_ranks), (print_feature), (gst_decode_bin_init),
23513 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23514 (try_to_link_1), (new_pad), (close_link), (type_found),
23515 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23516 (gst_decode_bin_change_state), (plugin_init):
23517 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23518 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23519 (gst_play_base_bin_dispose), (queue_overrun),
23520 (gen_preroll_element), (remove_prerolls), (no_more_pads),
23521 (new_stream), (setup_source), (gst_play_base_bin_set_property),
23522 (gst_play_base_bin_get_property), (play_base_eos),
23523 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
23524 (gst_play_base_bin_remove_element),
23525 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23526 (gst_play_base_bin_unlink_stream),
23527 (gst_play_base_bin_get_streaminfo):
23528 * gst/playback/gstplaybasebin.h:
23529 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23530 (gst_play_bin_class_init), (gst_play_bin_init),
23531 (gst_play_bin_dispose), (gst_play_bin_set_property),
23532 (gst_play_bin_get_property), (gen_video_element),
23533 (gen_audio_element), (remove_sinks), (setup_sinks),
23534 (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
23535 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23536 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23537 (gst_play_bin_query), (plugin_init):
23538 * gst/playback/test4.c: (main):
23539 Work on object reuse and seeking.
23541 2004-07-09 Wim Taymans <wim@fluendo.com>
23543 * examples/seeking/seek.c: (iterate):
23544 Don't consume all CPU in the idle loop.
23546 2004-07-09 Wim Taymans <wim@fluendo.com>
23548 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
23549 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
23550 Add pad to element *after* setting the pad functions so that
23551 the scheduler can use the correct ones.
23553 2004-07-09 Wim Taymans <wim@fluendo.com>
23555 * ext/theora/theoradec.c: (theora_dec_from_granulepos),
23556 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
23557 Sync to keyframe after seek
23559 2004-07-09 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23561 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
23562 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
23563 (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
23564 * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
23565 * ext/libvisual/visual.c: (gst_visual_change_state):
23566 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
23567 * ext/theora/theoradec.c: (theora_dec_change_state):
23568 * ext/theora/theoraenc.c: (theora_enc_change_state):
23569 * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
23570 * gst-libs/gst/navigation/navigation.c:
23571 * gst/adder/gstadder.c: (gst_adder_change_state):
23572 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
23573 (gst_audio_convert_get_buffer):
23574 * gst/multipart/multipartdemux.c:
23575 (gst_multipart_demux_change_state):
23576 * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
23577 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
23578 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
23579 * gst/videoscale/gstvideoscale.c:
23580 (gst_videoscale_handle_src_event):
23581 * gst/volume/gstvolume.c: (volume_chain_int16):
23582 don't assert in state change, this should be done by the base
23584 various debugging fixes.
23586 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23589 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
23590 (gst_play_dispose), (gst_play_set_location),
23591 (gst_play_set_data_src), (gst_play_set_video_sink),
23592 (gst_play_set_audio_sink), (gst_play_set_visualization),
23593 (gst_play_connect_visualization), (gst_play_get_sink_element),
23594 (gst_play_get_all_by_interface):
23595 * gst-libs/gst/play/play.h:
23596 add new method to get elements implementing an interface.
23597 add various error logging
23599 2004-07-08 Wim Taymans <wim@fluendo.com>
23601 * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
23602 (make_mpeg_pipeline), (make_mpegnt_pipeline),
23603 (make_playerbin_pipeline), (query_durations_elems),
23604 (query_durations_pads), (query_positions_elems),
23605 (query_positions_pads), (update_scale), (iterate), (stop_seek),
23607 Added playbin seeking example.
23609 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23611 * gst-libs/gst/play/play.c: (gst_play_set_location),
23612 (gst_play_set_data_src), (gst_play_set_video_sink),
23613 (gst_play_set_audio_sink), (gst_play_set_visualization),
23614 (gst_play_connect_visualization), (gst_play_get_framerate):
23615 use a macro to look up elements from hash table
23617 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23619 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
23620 (gst_play_get_length_callback), (gst_play_set_location),
23621 (gst_play_seek_to_time), (gst_play_set_data_src),
23622 (gst_play_set_video_sink), (gst_play_set_audio_sink),
23623 (gst_play_set_visualization), (gst_play_connect_visualization),
23624 (gst_play_get_sink_element):
23625 - add debugging info
23626 - fix looking up sink elements by iterating over complete caps
23627 - put everything except for source and autoplugger in a complete bin
23629 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23631 * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
23632 * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
23633 (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
23634 (gst_alsa_sink_write), (gst_alsa_sink_loop):
23635 * ext/alsa/gstalsasink.h:
23636 - add debugging info
23637 - clean up schizophrenia of data/buffer/event
23638 - fix double event unref error
23640 2004-07-08 Wim Taymans <wim@fluendo.com>
23642 * gst/playback/Makefile.am:
23643 Add headers to noinst
23645 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23647 * tools/gst-launch-ext-m.m:
23648 * tools/gst-launch-ext.1.in:
23649 convert to the third millenium
23651 2004-07-07 David Schleef <ds@schleef.org>
23653 * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
23655 2004-07-07 Wim Taymans <wim@fluendo.com>
23657 * gst/playback/Makefile.am:
23658 * gst/playback/README:
23659 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23660 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23661 (compare_ranks), (print_feature), (gst_decode_bin_init),
23662 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23663 (try_to_link_1), (new_pad), (close_link), (type_found),
23664 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23666 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23667 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23668 (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
23669 (gen_preroll_element), (no_more_pads), (new_stream),
23670 (setup_source), (gst_play_base_bin_set_property),
23671 (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
23672 (gst_play_base_bin_add_element),
23673 (gst_play_base_bin_remove_element),
23674 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23675 (gst_play_base_bin_unlink_stream),
23676 (gst_play_base_bin_get_streaminfo):
23677 * gst/playback/gstplaybasebin.h:
23678 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23679 (gst_play_bin_class_init), (gst_play_bin_init),
23680 (gst_play_bin_dispose), (gst_play_bin_set_property),
23681 (gst_play_bin_get_property), (gen_video_element),
23682 (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
23683 (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
23684 (gst_play_bin_get_formats), (gst_play_bin_convert),
23685 (gst_play_bin_get_query_types), (gst_play_bin_query),
23687 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
23688 (gst_stream_info_get_type), (gst_stream_info_class_init),
23689 (gst_stream_info_init), (gst_stream_info_new),
23690 (gst_stream_info_dispose), (gst_stream_info_set_property),
23691 (gst_stream_info_get_property):
23692 * gst/playback/gststreaminfo.h:
23693 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
23695 * gst/playback/test2.c: (main):
23696 * gst/playback/test3.c: (update_scale), (main):
23697 More playbin fixes. Added README. Do better element filtering.
23698 Added base class to preroll media. Added test apps.
23700 2004-07-07 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23702 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
23703 * ext/mpeg2dec/gstmpeg2dec.h:
23704 various debugging improvements. Reset stream to next picture
23705 instead of sequence header, otherwise seeks cannot work.
23707 2004-07-07 Wim Taymans <wim@fluendo.com>
23709 * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
23710 (gst_video_box_class_init), (gst_video_box_set_property),
23711 (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
23712 Use pad_alloc where possible.
23714 2004-07-07 Wim Taymans <wim@fluendo.com>
23716 * sys/oss/gstosselement.c: (gst_osselement_reset),
23717 (gst_osselement_parse_caps):
23718 * sys/oss/gstosselement.h:
23719 * sys/oss/gstosssrc.c: (gst_osssrc_get):
23720 Fix offset on osssrc.
23722 2004-07-07 Wim Taymans <wim@fluendo.com>
23724 * ext/theora/theora.c: (plugin_init):
23725 * ext/theora/theoradec.c: (theora_dec_from_granulepos),
23726 (theora_dec_src_query), (theora_dec_chain):
23727 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
23728 (theora_enc_sink_link), (theora_buffer_from_packet),
23729 (theora_push_packet), (theora_enc_chain):
23730 Fix theora granulepos calculation.
23731 Fix overflow in duration/position calculation.
23732 Bump rank to PRIMARY for theoradec.
23733 Use granulepos of last packet to calculate position.
23734 Set keyframe flag on buffers when needed.
23736 2004-07-06 David Schleef <ds@schleef.org>
23738 * gst/playback/Makefile.am: 'test' in bin_PROGRAMS? Are you
23739 serious? (Fixed, obviously.)
23741 2004-07-06 Thomas Vander Stichele <thomas at apestaart dot org>
23745 added Czech translation (Miloslav Trmac)
23747 2004-07-05 Wim Taymans <wim@fluendo.com>
23749 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23750 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23751 (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
23752 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23753 (close_link), (type_found), (gst_decode_bin_set_property),
23754 (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
23755 (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
23756 (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
23757 (gst_decode_bin_query), (plugin_init):
23758 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23759 (gst_play_bin_class_init), (gst_play_bin_init),
23760 (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
23761 (get_video_element), (new_pad), (setup_source),
23762 (gst_play_bin_set_property), (gst_play_bin_get_property),
23763 (gst_play_bin_change_state), (gst_play_bin_add_element),
23764 (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
23765 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23766 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23767 (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
23768 * gst/playback/test.c: (main):
23769 More fixes, cleaned up playbin, make it use decodebin. Added
23770 threaded property to playbin.
23772 2004-07-05 Wim Taymans <wim@fluendo.com>
23775 * gst/playback/Makefile.am:
23776 * gst/playback/decodetest.c: (main):
23777 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23778 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23779 (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
23780 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23781 (close_link), (type_found), (gst_decode_bin_set_property),
23782 (gst_decode_bin_get_property), (gst_decode_bin_change_state),
23783 (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
23784 (gst_decode_bin_get_formats), (gst_decode_bin_convert),
23785 (gst_decode_bin_get_query_types), (gst_decode_bin_query),
23787 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23788 (gst_play_bin_class_init), (gst_play_bin_init),
23789 (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
23790 (collect_sink_pads), (find_compatibles), (close_pad_link),
23791 (try_to_link_1), (new_pad), (close_link), (type_found),
23792 (setup_source), (gst_play_bin_set_property),
23793 (gst_play_bin_get_property), (gst_play_bin_factory_filter),
23794 (compare_ranks), (gst_play_bin_collect_factories),
23795 (gst_play_bin_change_state), (gst_play_bin_add_element),
23796 (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
23797 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23798 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23799 (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
23800 * gst/playback/test.c: (main):
23801 Added some playback helper elements and some test apps, very alpha
23804 2004-07-04 Benjamin Otte <otte@gnome.org>
23806 * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
23807 only restart audio when we indeed have an xrun to fix repeated
23808 xruns. Fix suggested by Giuliano Pochini.
23810 2004-07-03 David Schleef <ds@schleef.org>
23812 * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
23813 call to gst_debug_log() if debugging is disabled (bug #145118)
23815 2004-07-03 Benjamin Otte <otte@gnome.org>
23817 * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
23818 use our own functions for restarting the alsa device.
23819 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
23820 I should apply patches myself - use MIN for the third argument, not
23821 the second, this fixes seeking
23823 2004-07-02 David Schleef <ds@schleef.org>
23825 * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
23826 (gst_flacdec_write): Actually, GST_PAD_CAPS() has nothing to
23829 2004-07-02 David Schleef <ds@schleef.org>
23831 * ext/flac/gstflacdec.c: (gst_flacdec_write): Set duration on
23832 output buffers. Fix logic mistake. (bug #144866)
23834 2004-07-02 David Schleef <ds@schleef.org>
23836 * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
23837 on X. (bug #144753)
23839 2004-07-02 David Schleef <ds@schleef.org>
23841 * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
23842 (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
23844 * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
23845 (gst_osselement_rate_probe_check): Add another workaround for
23846 buggy drivers (bug #145336)
23848 2004-07-02 David Schleef <ds@schleef.org>
23850 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
23851 Most systems don't have MSG_NOSIGNAL.
23853 2004-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
23856 * gst-libs/gst/colorbalance/Makefile.am:
23857 * gst-libs/gst/mixer/Makefile.am:
23858 * gst-libs/gst/play/Makefile.am:
23859 * gst-libs/gst/tuner/Makefile.am:
23860 (hopefully) fix both install and dist and make error message useful.
23861 needs testing across automakes.
23863 2004-07-02 Benjamin Otte <otte@gnome.org>
23865 * ext/ogg/gstogg.c: (plugin_init):
23866 we require bytestream now
23867 * ext/ogg/gstoggdemux.c:
23868 huge diff to implement chain setup in a fast and generic way. This
23869 improves tag reading and startup of huge files (read: Theora videos)
23870 quite a bit. It probably contains bugs, too, so please test.
23871 Seeking is not improved to the fast method.
23873 2004-06-29 Wim Taymans <wim@fluendo.com>
23875 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
23876 * ext/ogg/gstoggmux.c:
23877 Fix memleak in oggdemux when running unconnected pads.
23878 doc update in mux, start working on keyframe mode.
23880 2004-06-29 Benjamin Otte <otte@gnome.org>
23882 * sys/oss/gstosssink.c:
23883 * sys/oss/gstosssrc.c:
23884 advertise correct template caps - we indeed do non-native endianness
23885 and 8bit audio has no endianness
23886 * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
23887 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
23888 avoid (wrong) duplications in getcaps function and return
23891 2004-06-29 Wim Taymans <wim@fluendo.com>
23893 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
23894 (gst_multifdsink_class_init), (gst_multifdsink_add),
23895 (gst_multifdsink_remove), (gst_multifdsink_clear),
23896 (gst_multifdsink_client_remove),
23897 (gst_multifdsink_handle_client_read),
23898 (gst_multifdsink_client_queue_data),
23899 (gst_multifdsink_client_queue_caps),
23900 (gst_multifdsink_client_queue_buffer),
23901 (gst_multifdsink_handle_client_write),
23902 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
23903 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
23904 (gst_multifdsink_init_send), (gst_multifdsink_close):
23905 Fix wrong GList iteration that could crash the server when
23906 more then 2 clients disconnect at the same time. Read all the
23907 pending commands in one batch to recover from command storms under
23910 2004-06-28 Wim Taymans <wim@fluendo.com>
23912 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
23913 (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
23914 (gst_videomixer_pad_set_property),
23915 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
23916 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
23917 (gst_videomixer_class_init), (gst_videomixer_init),
23918 (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
23919 (pad_zorder_compare), (gst_videomixer_sort_pads),
23920 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
23921 (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
23922 (gst_videomixer_update_queues), (gst_videomixer_loop),
23924 Avoid divide by zero, choose masterpad as the pad with the highest
23927 2004-06-27 Julien Moutte <julien@moutte.net>
23929 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
23930 (gst_ximagesink_xwindow_new):
23931 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
23932 (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
23933 function directly. We might want to call it from somewhere else one day.
23935 2004-06-27 Julien Moutte <julien@moutte.net>
23937 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
23938 (gst_ximagesink_xwindow_new):
23939 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
23940 (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
23941 window decorations.
23943 2004-06-27 Wim Taymans <wim@fluendo.com>
23945 * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
23946 (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
23947 (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
23948 (gst_dvdec_set_property), (gst_dvdec_get_property):
23949 * ext/dv/gstdvdec.h:
23950 Implement drop_factor property to lower the framerate with
23953 2004-06-27 Thomas Vander Stichele <thomas at apestaart dot org>
23955 * gst-libs/gst/colorbalance/Makefile.am:
23956 * gst-libs/gst/mixer/Makefile.am:
23957 * gst-libs/gst/play/Makefile.am:
23958 * gst-libs/gst/tuner/Makefile.am:
23959 unbreak Company's fix that didn't install the -enum.h files
23961 2004-06-27 Wim Taymans <wim@fluendo.com>
23963 * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
23964 (gst_dvdec_change_state):
23965 * ext/dv/gstdvdec.h:
23966 Fix timestamp, duration and offset of the buffers.
23968 2004-06-27 Wim Taymans <wim@fluendo.com>
23970 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
23971 (gst_multifdsink_class_init), (gst_multifdsink_add),
23972 (gst_multifdsink_remove), (gst_multifdsink_clear),
23973 (gst_multifdsink_client_remove),
23974 (gst_multifdsink_handle_client_read),
23975 (gst_multifdsink_client_queue_data),
23976 (gst_multifdsink_client_queue_caps),
23977 (gst_multifdsink_client_queue_buffer),
23978 (gst_multifdsink_handle_client_write),
23979 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
23980 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
23981 (gst_multifdsink_init_send), (gst_multifdsink_close):
23982 * gst/tcp/gstmultifdsink.h:
23983 * gst/tcp/gsttcpserversink.c:
23984 (gst_tcpserversink_handle_server_read),
23985 (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
23986 More multifdsink fixes, more recovery policy fixes.
23987 Removed stupid g_print
23989 2004-06-26 Wim Taymans <wim@fluendo.com>
23991 * gst/tcp/Makefile.am:
23992 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
23993 (gst_multifdsink_get_type), (gst_multifdsink_base_init),
23994 (gst_multifdsink_class_init), (gst_multifdsink_init),
23995 (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
23996 (gst_multifdsink_handle_client_read),
23997 (gst_multifdsink_client_queue_data),
23998 (gst_multifdsink_client_queue_caps),
23999 (gst_multifdsink_client_queue_buffer),
24000 (gst_multifdsink_handle_client_write),
24001 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
24002 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
24003 (gst_multifdsink_chain), (gst_multifdsink_set_property),
24004 (gst_multifdsink_get_property), (gst_multifdsink_init_send),
24005 (gst_multifdsink_close), (gst_multifdsink_change_state):
24006 * gst/tcp/gstmultifdsink.h:
24007 * gst/tcp/gsttcpplugin.c: (plugin_init):
24008 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
24009 (gst_tcpserversink_class_init), (gst_tcpserversink_init),
24010 (gst_tcpserversink_handle_server_read),
24011 (gst_tcpserversink_handle_select),
24012 (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
24013 (gst_tcpserversink_init_send), (gst_tcpserversink_close):
24014 * gst/tcp/gsttcpserversink.h:
24015 Added multifdsink, made tcpserversink a subclass of fdsink, removed
24016 one of the locks, added recovery policy to multifdsink.
24018 2004-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
24020 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
24021 fix decision for when getting frames with same timestamp
24022 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
24023 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24024 (gst_v4lsrc_get_property):
24025 * sys/v4l/gstv4lsrc.h:
24026 add latency offset property
24028 2004-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
24030 * gst/videorate/gstvideorate.c: (gst_videorate_chain),
24032 fix debugging. add category.
24034 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
24036 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
24039 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
24041 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
24042 (gst_alsa_src_get_time), (gst_alsa_src_loop),
24043 (gst_alsa_src_change_state):
24044 return a time that is in sync with the element's processing
24046 2004-06-25 Wim Taymans <wim@fluendo.com>
24048 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
24049 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
24050 (gst_tcpserversink_client_remove),
24051 (gst_tcpserversink_handle_client_read),
24052 (gst_tcpserversink_client_queue_data),
24053 (gst_tcpserversink_client_queue_caps),
24054 (gst_tcpserversink_client_queue_buffer),
24055 (gst_tcpserversink_handle_client_write),
24056 (gst_tcpserversink_queue_buffer),
24057 (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
24058 (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
24059 (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
24060 (gst_tcpserversink_close):
24061 * gst/tcp/gsttcpserversink.h:
24062 Serversink rewrite. Really do non blocking writes to clients and
24063 maintain an internal queue to handle slower clients while not
24064 disturbing fast clients.
24066 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
24068 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24069 better debug, don't override OFFSET and OFFSET_END
24071 2004-06-25 Iain <iain@prettypeople.org>
24073 * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
24074 name=source for the wavparse pipeline.
24076 2004-06-24 Johan Dahlin <johan@gnome.org>
24078 * ext/theora/theoraenc.c (theora_enc_chain): Call
24079 gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
24080 streamheader caps are set correctly.
24082 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
24084 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
24085 (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
24086 respect minimum bitrate; same could be done for max bitrate
24088 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
24090 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
24091 (gst_vorbisenc_setup):
24092 fix sample rate range
24094 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
24096 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
24097 (gst_oggvorbisenc_setup):
24098 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
24099 (gst_vorbisenc_setup):
24100 resolve ambiguities in code and description
24102 2004-06-24 Wim Taymans <wim@fluendo.com>
24104 * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
24105 * ext/alsa/gstalsa.h:
24106 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
24107 (gst_alsa_src_update_avail), (gst_alsa_src_loop):
24108 Use alsa trigger_tstamp to get the timestamp of the first
24109 sample in the buffer for more precise sync. Some cleanups.
24111 2004-06-24 Wim Taymans <wim@fluendo.com>
24113 * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
24114 (gst_audiorate_init), (gst_audiorate_chain),
24115 (gst_audiorate_set_property), (gst_audiorate_get_property):
24116 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24117 (gst_videorate_chain):
24118 Added some logging, fixed an overflow bug in videorate.
24120 2004-06-24 Benjamin Otte <otte@gnome.org>
24122 * ext/kio/Makefile.am:
24123 fix for builddir != srcdir and distcheck
24125 2004-06-24 Benjamin Otte <otte@gnome.org>
24127 * gst-libs/gst/colorbalance/Makefile.am:
24128 * gst-libs/gst/mixer/Makefile.am:
24129 * gst-libs/gst/play/Makefile.am:
24130 * gst-libs/gst/tuner/Makefile.am:
24131 * gst/tcp/Makefile.am:
24132 * sys/dxr3/Makefile.am:
24133 don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
24135 Also add all *.list files that were missing.
24137 add a distcheck hook to ensure the above doesn't happen again.
24139 2004-06-23 David I. Lehn <dlehn@users.sourceforge.net>
24141 * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
24143 2004-06-23 Colin Walters <walters@redhat.com>
24145 * m4/Makefile.am: Distribute gst-fionread.m4.
24147 2004-06-23 Thomas Vander Stichele <thomas at apestaart dot org>
24149 * configure.ac: back to dev
24151 2004-06-23 Wim Taymans <wim@fluendo.com>
24153 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
24154 (gst_alsa_xrun_recovery):
24155 * ext/alsa/gstalsa.h:
24156 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
24157 (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
24158 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
24159 (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
24160 (gst_alsa_src_loop):
24161 Add clock to alsasrc. Take new capture timestamp when
24162 restarting after an overrun. Split up some functions between
24163 alsasrc and alsasink.
24165 === release 0.8.2 ===
24167 2004-06-23 Thomas Vander Stichele <thomas at apestaart dot org>
24169 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
24170 (gst_alsa_change_state), (gst_alsa_update_avail),
24171 (gst_alsa_xrun_recovery):
24172 * ext/alsa/gstalsa.h:
24173 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24174 merge back changes from release
24176 2004-06-23 Wim Taymans <wim@fluendo.com>
24178 * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
24179 (gst_audiorate_init), (gst_audiorate_chain),
24180 (gst_audiorate_set_property), (gst_audiorate_get_property):
24181 Implement sample dropping and notify
24183 2004-06-22 Wim Taymans <wim@fluendo.com>
24185 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
24186 (theora_enc_sink_link), (theora_buffer_from_packet),
24187 (theora_push_packet), (theora_enc_chain):
24188 Some cleanups, make sure the timestamps are correct.
24190 2004-06-22 Wim Taymans <wim@fluendo.com>
24192 * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
24193 (gst_alsa_change_state), (gst_alsa_update_avail),
24194 (gst_alsa_xrun_recovery):
24195 * ext/alsa/gstalsa.h:
24196 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
24197 Cleanups, take queued samples into account when reporting
24200 2004-06-22 Wim Taymans <wim@fluendo.com>
24202 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24203 (gst_videorate_init):
24204 Initialize the property as well.
24206 2004-06-22 Wim Taymans <wim@fluendo.com>
24208 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24209 (gst_videorate_init), (gst_videorate_chain),
24210 (gst_videorate_set_property), (gst_videorate_get_property):
24211 Add property to make videorate silent.
24212 Add property to prefer new frames over old ones.
24214 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24216 * sys/osxvideo/Makefile.am:
24217 Workaround so that the osxvideo .so file gets linked with the
24218 Cocoa, OpenGL and QuickTime frameworks
24220 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24222 * sys/osxaudio/Makefile.am:
24223 Workaround so that the osxaudio .so file gets linked with the
24224 CoreAudio framework
24226 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24229 Whoops, my fault...fixed build issues
24231 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24234 Add objective-c support if running in Darwin/Mac OS X
24237 * sys/osxvideo/Makefile.am:
24238 * sys/osxvideo/osxvideosink.h:
24239 * sys/osxvideo/osxvideosink.m:
24240 * sys/osxvideo/cocoawindow.h:
24241 * sys/osxvideo/cocoawindow.m:
24242 Add osxvideosink, a cocoa-based osx video sink
24245 2004-06-19 Jan Schmidt <thaytan@mad.scientist.com>
24246 * ext/dvdnav/gst-dvd:
24247 Grab the gconf key from the right spot
24248 * gst/debug/gstnavseek.c: (gst_navseek_init),
24249 (gst_navseek_segseek), (gst_navseek_handle_src_event),
24250 (gst_navseek_chain):
24251 * gst/debug/gstnavseek.h:
24252 Add 's', 'e' and 'l' keypresses to navseek to define the start,end
24253 and loop parameters of a segment seek.
24254 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
24255 (gst_videotestsrc_get_event_masks),
24256 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
24257 * gst/videotestsrc/gstvideotestsrc.h:
24258 Add seeking support to videotestsrc
24259 Initialise the timestamp_offset variable.
24261 2004-06-18 Wim Taymans <wim@fluendo.com>
24263 * ext/sidplay/gstsiddec.cc:
24264 Fix negotiation and set correct end offset.
24266 2004-06-18 Thomas Vander Stichele <thomas at apestaart dot org>
24268 * configure.ac: branch and prerelease
24270 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
24272 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
24273 (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
24274 (gst_tcpclientsrc_init_receive):
24275 * gst/tcp/gsttcpclientsrc.h:
24276 read caps when connecting to server for GDP so we set them correctly
24278 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
24280 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
24281 notify drops and duplicates
24282 * gst/videoscale/videoscale.c: (videoscale_get_structure):
24283 no good reason to limit ourselves to 100x100
24285 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
24287 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
24288 (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
24289 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24290 (gst_v4lsrc_get_property):
24291 * sys/v4l/gstv4lsrc.h:
24292 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24293 (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
24294 (gst_v4l_set_audio):
24295 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
24296 (gst_v4lsrc_try_capture):
24297 * sys/v4l/v4lsrc_calls.h:
24298 change try_palette to more general try_capture
24299 add autoprobe option so we can turn off autoprobing
24302 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
24306 * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
24307 (gst_ximagesink_class_init):
24308 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
24309 (gst_xvimagesink_class_init):
24310 run them as finalize, not dispose, since dispose can be invoked
24313 2004-06-17 Wim Taymans <wim@fluendo.com>
24315 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
24316 (gst_alsa_get_time), (gst_alsa_xrun_recovery):
24317 * ext/alsa/gstalsa.h:
24318 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
24319 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
24320 (gst_alsa_src_change_state):
24321 * ext/alsa/gstalsasrc.h:
24322 Make the xrun code timestamp and offset the buffers correctly.
24323 moved the clock to the base class, use alsa methods to get time.
24324 Do correct timestamping on outgoing buffers.
24326 2004-06-17 Wim Taymans <wim@fluendo.com>
24328 * gst/audiorate/Makefile.am:
24329 * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
24330 (gst_audiorate_base_init), (gst_audiorate_class_init),
24331 (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
24332 (gst_audiorate_set_property), (gst_audiorate_get_property),
24333 (gst_audiorate_change_state), (plugin_init):
24334 Added an audiorate converter that fills in gaps.
24336 2004-06-17 Johan Dahlin <johan@gnome.org>
24338 * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
24340 2004-06-16 Wim Taymans <wim@fluendo.com>
24342 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
24343 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
24344 (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
24345 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24346 (gst_v4lsrc_get_property):
24347 * sys/v4l/gstv4lsrc.h:
24348 Added a copy mode to v4lsrc where it will output a copied version
24349 of its internal hardware buffer.
24350 Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
24353 2004-06-16 Wim Taymans <wim@fluendo.com>
24355 * sys/oss/gstosssrc.c: (gst_osssrc_get):
24358 2004-06-16 Wim Taymans <wim@fluendo.com>
24360 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
24361 (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
24362 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24363 (gst_v4lsrc_get_property):
24364 * sys/v4l/gstv4lsrc.h:
24365 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
24366 Added a sync mode enum property to control v4lsrc timestamp method
24367 Removed the use-fixed-fps property and moved functionality in
24369 Don't error on an error value from v4l-conf, it might not always
24372 2004-06-16 Wim Taymans <wim@fluendo.com>
24374 * gst/videorate/Makefile.am:
24375 * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
24376 (gst_videorate_base_init), (gst_videorate_class_init),
24377 (gst_videorate_getcaps), (gst_videorate_link),
24378 (gst_videorate_init), (gst_videorate_chain),
24379 (gst_videorate_set_property), (gst_videorate_get_property),
24380 (gst_videorate_change_state), (plugin_init):
24381 Added a video timestamp corrector.
24383 2004-06-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24385 fixed a potential leak with previous commit
24387 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
24389 2004-06-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24391 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
24392 Added missing refcount, fixes bug #144425
24393 Cheers Tim for finding the bug
24395 2004-06-15 Thomas Vander Stichele <thomas at apestaart dot org>
24397 * sys/v4l/gstv4l.c: (plugin_init):
24398 * sys/v4l/gstv4lcolorbalance.c:
24399 * sys/v4l/gstv4lcolorbalance.h:
24400 * sys/v4l/gstv4lelement.c:
24401 * sys/v4l/gstv4lelement.h:
24402 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
24403 * sys/v4l/gstv4lmjpegsink.h:
24404 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
24405 * sys/v4l/gstv4lmjpegsrc.h:
24406 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
24407 (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
24408 (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
24409 * sys/v4l/gstv4lsrc.h:
24410 * sys/v4l/gstv4ltuner.c:
24411 * sys/v4l/gstv4ltuner.h:
24412 * sys/v4l/gstv4lxoverlay.c:
24413 * sys/v4l/gstv4lxoverlay.h:
24414 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
24415 (gst_v4l_set_window), (gst_v4l_enable_overlay):
24416 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24417 (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
24418 (gst_v4l_set_audio):
24419 * sys/v4l/v4l_calls.h:
24420 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
24421 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
24422 (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
24423 (gst_v4lmjpegsink_playback_init),
24424 (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
24425 (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
24426 (gst_v4lmjpegsink_playback_stop),
24427 (gst_v4lmjpegsink_playback_deinit):
24428 * sys/v4l/v4lmjpegsink_calls.h:
24429 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
24430 (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
24431 (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
24432 (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
24433 (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
24434 (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
24435 * sys/v4l/v4lmjpegsrc_calls.h:
24436 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
24437 (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
24438 (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
24439 (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
24440 (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
24441 (gst_v4lsrc_try_palette):
24442 * sys/v4l/v4lsrc_calls.h:
24443 bunch of paranoia cleanups
24445 2004-06-14 David Schleef <ds@schleef.org>
24447 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
24448 (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
24449 Send discont events and change timestamps appropriately when
24450 we get a seek event. (bug #144240)
24451 * ext/cdparanoia/gstcdparanoia.h:
24453 2004-06-14 Benjamin Otte <otte@gnome.org>
24455 * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
24456 snd_pcm_hw_params_set_rate since the latter fails for no good
24457 reason on some setups.
24459 2004-06-14 David Schleef <ds@schleef.org>
24461 * gst/volume/demo.c: (value_changed_callback): exp10() is not
24462 standard. Thank you for playing.
24464 2004-06-14 Wim Taymans <wim@fluendo.com>
24466 * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
24467 Patch 1.3 broke the ordering of the colorspace info and
24468 made the plugin basically work by coincidence, reordered
24471 2004-06-14 Thomas Vander Stichele <thomas at apestaart dot org>
24473 * ext/lame/gstlame.c:
24474 * ext/mad/gstmad.c:
24475 sync caps. Make sure mad can only output a list of rates, not
24476 a full range. In the future, have three caps lists for each of the
24477 mpeg versions. Change mpegversion to a double as well.
24479 2004-06-14 Thomas Vander Stichele <thomas at apestaart dot org>
24481 * gst/volume/.cvsignore:
24482 * gst/volume/Makefile.am:
24483 * gst/volume/demo.c: (value_changed_callback), (idler),
24484 (setup_gui), (main):
24485 added small demo app
24487 2004-06-13 Jan Schmidt <thaytan@mad.scientist.com>
24488 * ext/esd/esdsink.c: (gst_esdsink_change_state):
24489 * ext/esd/esdsink.h:
24490 Close the esd connection on pause, because esd will just wait -
24491 blocking all other esd clients indefinitely.
24493 2004-06-12 Christophe Fergeau <teuf@gnome.org>
24495 * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
24496 previous commit with GST_DEBUG
24498 2004-06-12 Thomas Vander Stichele <thomas at apestaart dot org>
24501 add a header check for a dvdread header in dvdnav. Fixes #133002
24503 2004-06-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24505 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
24506 * gst/tcp/gsttcpclientsink.h:
24507 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
24508 * gst/tcp/gsttcpclientsrc.h:
24509 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
24510 (gst_tcpserversink_handle_server_read),
24511 (gst_tcpserversink_init_send):
24512 * gst/tcp/gsttcpserversink.h:
24513 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
24514 * gst/tcp/gsttcpserversrc.h:
24515 Modified the tcp plugins so they are portable (IPv4,IPv6, any future
24518 2004-06-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24521 Added ogg library so that OSX detects libtheora properly
24523 2004-06-11 Wim Taymans <wim@fluendo.com>
24525 * ext/theora/theoradec.c: (theora_dec_chain),
24526 (theora_dec_change_state):
24527 Don't try to decode frames before we received a keyframe.
24529 2004-06-11 Wim Taymans <wim@fluendo.com>
24531 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
24532 (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
24533 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24534 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
24535 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
24536 Added property to set the maximum delay of a page.
24538 2004-06-10 Wim Taymans <wim@fluendo.com>
24540 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
24541 (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
24542 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24543 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
24544 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
24545 Added max-delay property to control the maximum amount
24546 of data to put in one page.
24548 2004-06-10 Wim Taymans <wim@fluendo.com>
24550 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
24551 (gst_theora_enc_init), (theora_enc_sink_link),
24552 (theora_buffer_from_packet), (theora_enc_set_property),
24553 (theora_enc_get_property):
24554 Set duration on encoded buffer, added some more properties
24556 2004-06-10 Wim Taymans <wim@fluendo.com>
24558 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
24559 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24560 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
24561 * ext/theora/theoraenc.c: (theora_enc_chain):
24562 Fix refcounting bugs
24564 2004-06-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
24566 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
24567 (gst_asf_demux_loop), (gst_asf_demux_process_file),
24568 (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
24569 (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
24570 (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
24571 (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
24572 (gst_asf_demux_change_state):
24573 * gst/asfdemux/gstasfdemux.h:
24574 You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
24575 feels like. I think we should set a new requirement for demuxers
24576 from now on to implement sane loop functions, data loops, query
24577 and seek functions before first commit into CVS. And this commit
24578 fixes all of the above.
24580 2004-06-10 Christophe Fergeau <teuf@gnome.org>
24582 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
24583 vorbis comments are properly encoded in UTF-8 before adding them
24586 2004-06-09 Benjamin Otte <otte@gnome.org>
24588 * ext/alsa/gstalsa.c: (add_channels):
24589 handle min <= max correctly
24590 * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
24591 (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
24592 add fixation functions so we fixate correctly. No preferring of alaw
24593 anymore because it's the first structure.
24594 * ext/alsa/gstalsa.h:
24595 * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
24596 (gst_alsa_hw_params_dump):
24597 add functions to ease debugging in alsalib
24598 * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
24599 (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
24600 (gst_alsa_start_audio):
24601 only specify hw params if we really setup a format (fixes #134007 -
24602 or at least works around it)
24604 2004-06-09 Wim Taymans <wim@fluendo.com>
24606 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
24607 (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
24608 (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
24609 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
24610 (gst_ogg_mux_loop):
24611 Use stream caps to setup the initial pages in the ogg stream.
24612 Correctly set the streamheader caps on the srcpad.
24614 2004-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
24616 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
24617 (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
24618 (gst_v4lsrc_getcaps):
24619 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24620 (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
24621 add querying of fps lists for webcams. Negotiating to a framerate
24624 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24626 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
24627 (theora_push_buffer), (theora_push_packet),
24628 (theora_set_header_on_caps), (theora_enc_chain):
24629 mark buffers and put on streamheader, raw theora streaming
24630 now works too, whee
24632 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24634 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
24635 (gst_tcp_gdp_read_caps):
24636 do a looping read for caps and GDP headers too
24638 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24640 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24641 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
24642 return EOS instead of NULL in _get
24644 2004-06-08 Wim Taymans <wim@fluendo.com>
24646 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
24647 (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
24648 (gst_tcp_gdp_write_caps):
24649 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24650 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
24651 (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
24654 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24656 * ext/vorbis/Makefile.am:
24657 * ext/vorbis/vorbis.c: (plugin_init):
24658 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
24659 (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
24660 (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
24661 (vorbis_parse_change_state):
24662 * ext/vorbis/vorbisparse.h:
24663 adding a vorbisparse element that marks the buffers, streaming
24664 raw vorbis using GDP now works, whee
24666 2004-06-08 Wim Taymans <wim@fluendo.com>
24668 * ext/jpeg/Makefile.am:
24670 * ext/jpeg/gstjpeg.c: (plugin_init):
24671 * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
24672 (gst_smokedec_base_init), (gst_smokedec_class_init),
24673 (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
24674 * ext/jpeg/gstsmokedec.h:
24675 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
24676 (gst_smokeenc_base_init), (gst_smokeenc_class_init),
24677 (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
24678 (gst_smokeenc_resync), (gst_smokeenc_chain),
24679 (gst_smokeenc_set_property), (gst_smokeenc_get_property):
24680 * ext/jpeg/gstsmokeenc.h:
24681 * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
24682 (smokecodec_flush_destination), (smokecodec_term_destination),
24683 (smokecodec_init_source), (smokecodec_fill_input_buffer),
24684 (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
24685 (smokecodec_term_source), (smokecodec_encode_new),
24686 (smokecodec_decode_new), (smokecodec_info_free),
24687 (smokecodec_set_quality), (smokecodec_get_quality),
24688 (smokecodec_set_threshold), (smokecodec_get_threshold),
24689 (smokecodec_set_bitrate), (smokecodec_get_bitrate),
24690 (find_best_size), (abs_diff), (put), (smokecodec_encode),
24691 (smokecodec_parse_header), (smokecodec_decode):
24692 * ext/jpeg/smokecodec.h:
24693 Added a new simple jpeg based codec
24695 2004-06-08 Wim Taymans <wim@fluendo.com>
24697 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24698 (gst_multipart_mux_loop):
24701 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24703 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24704 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
24705 (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
24706 (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
24707 (gst_tcpserversink_init_send), (gst_tcpserversink_close):
24708 * gst/tcp/gsttcpserversink.h:
24709 take streamheader into account
24711 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24713 * gst/level/Makefile.am:
24714 * gst/level/gstlevel.c: (gst_level_class_init):
24715 clean up marshal generation
24717 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24719 * gst/tcp/Makefile.am:
24720 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
24721 (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
24722 (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
24723 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
24724 (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
24725 (gst_tcpclientsrc_get_property):
24726 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
24727 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
24728 (gst_tcpserversink_handle_client_read),
24729 (gst_tcpserversink_handle_client_write),
24730 (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
24731 * gst/tcp/gsttcpserversink.h:
24732 add signals client-added and client-removed
24733 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
24734 (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
24735 (gst_tcpserversrc_get_property):
24736 uniformized, change default protocol to NONE
24737 * gst/tcp/gsttcp-marshal.list: added
24738 2004-06-07 Benjamin Otte <otte@gnome.org>
24740 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24741 handle discont events if they happen before caps nego
24743 2004-06-07 Wim Taymans <wim@fluendo.com>
24745 * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
24746 (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
24747 (gst_multipart_demux_plugin_init):
24748 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24749 (gst_multipart_mux_init), (gst_multipart_mux_loop),
24750 (gst_multipart_mux_change_state):
24751 Small updates, fix a memleak
24753 2004-06-07 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24755 * configure.ac: OSS portability
24756 * ext/arts/gst_arts.c: idem
24757 * sys/oss/gstosselement.c: idem
24758 * sys/oss/gstossmixer.c: idem
24759 * sys/oss/gstosssink.c: idem
24760 * sys/oss/gstosssrc.c: idem
24761 * sys/oss/oss_probe.c: idem
24762 - check for soundcard.h in different places for some BSD
24764 2004-06-07 Jan Schmidt <thaytan@mad.scientist.com>
24767 Add me to the authors file
24769 Increase the libdv requirement to >= version 0.100
24770 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
24771 (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
24772 (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
24773 * ext/dv/gstdvdec.h:
24774 Add support for the new_media flag when sending DISCONT events
24775 Make the querying work when video pad is not linked
24777 2004-06-07 Tim-Philipp Müller <t.i.m@zen.co.uk>
24779 reviewed by Benjamin Otte <otte@gnome.org>
24781 * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
24782 create a NULL-initialized array of pads, so we don't think they
24783 exist already. (fixes #143130)
24785 2004-06-07 Benjamin Otte <otte@gnome.org>
24787 * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
24788 (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
24789 (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
24790 don't use // coments
24792 2004-06-07 Benjamin Otte <otte@gnome.org>
24794 * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
24795 cast to GstClockTime to get higher granularity
24796 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24797 use gst_element_set_time_delay to get the exact time
24798 * ext/mad/gstmad.c: (gst_mad_chain):
24799 use the negotiated rate instead of the current frame's rate which
24800 might be wrong because of bit errors. This avoids emitting totally
24801 bogus timestamps and screwing sync.
24804 2004-06-07 Tim-Philipp Müller <t.i.m@zen.co.uk>
24806 reviewed by Benjamin Otte <otte@gnome.org>
24808 * gst/adder/gstadder.c: (gst_adder_loop):
24809 properly error out when no negotiation has happened yet. (fixes
24812 2004-06-06 Benjamin Otte <otte@gnome.org>
24814 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
24815 forward correctly transformed offset in discont events. Based on
24816 patch by Arwed v. Merkatz. (fixes #142851)
24818 2004-06-06 David Schleef <ds@schleef.org>
24820 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
24821 G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS. Should fix compile
24822 problems on several systems.
24824 2004-06-06 Benjamin Otte <otte@gnome.org>
24826 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
24827 use explicit caps on the srcpad
24828 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
24829 properly error out if caps couldn't be set (fixes #142764)
24831 2004-06-06 Benjamin Otte <otte@gnome.org>
24833 * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
24834 (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
24835 (gst_alsa_start_audio):
24836 - don't call set_periods_integer anymore, it breaks the
24837 configuration randomly
24838 - call snd_pcm_hw_params_set_access directly instead of using masks
24839 - don't fail if the sw_params can't be set, just use the default
24840 params and hope it works. Alsalib has weird issues when you touch
24841 sw_params and does no proper error reporting about what failed.
24842 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
24843 (gst_alsa_close_audio):
24844 make our alsa debugging go via gst debugging and not conditionally
24846 * ext/alsa/gstalsa.h:
24847 add ALSA_DEBUG_FLUSH macro
24848 * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
24850 wrap alsa errors to be printed via the gst debugging system and not
24853 2004-06-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
24855 * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
24856 (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
24857 (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
24858 (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
24859 (qtdemux_parse_trak):
24860 * gst/qtdemux/qtdemux.h:
24861 Bitch. Also known as seeking, querying & co.
24862 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
24863 (gst_osssink_change_state):
24864 * sys/oss/gstosssink.h:
24865 Resyncing is for weenies, this hack is no longer needed and was
24866 broken anyway (since it - unintendedly - always leaves resync to
24869 2004-06-05 Andrew Turner <zxombie@hotpop.com>
24871 * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
24872 * gst/tcp/gsttcpclientsrc.h: idem
24873 - define MSG_NOSIGNAL if not done
24874 - include unistd.h for off_t
24877 2004-06-05 Benjamin Otte <otte@gnome.org>
24880 * ext/kio/Makefile.am:
24881 check for qt's moc preprocessor explicitly and use it
24883 2004-06-03 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
24885 * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
24886 don't get a signal for EPIPE on socket writes
24887 (somebody check if this works on other platforms)
24889 2004-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
24891 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
24892 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
24893 check error condition on available samples correctly
24895 2004-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
24897 * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
24899 * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
24900 (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
24901 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
24902 (gst_tcpserversrc_gdp_read_header):
24903 use ssize_t over size_t since the former is signed and thus the
24904 check for error codes can work
24906 2004-06-02 Wim Taymans <wim@fluendo.com>
24910 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24911 (gst_multipart_mux_loop):
24914 2004-06-02 Wim Taymans <wim@fluendo.com>
24916 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24917 (gst_multipart_mux_init), (gst_multipart_mux_loop),
24918 (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
24919 (gst_multipart_mux_change_state):
24920 Added configurable boundary specifier, added the value as a
24921 caps field as well.
24923 2004-06-02 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24925 * gst/tcp/gsttcp.c:
24926 * gst/tcp/gsttcpclientsrc.c:
24927 * gst/tcp/gsttcpclientsrc.h:
24928 * gst/tcp/gsttcpserversrc.c:
24929 - portability fix, to compile on OSX
24932 * sys/osxaudio/gstosxaudioelement.c:
24933 * sys/osxaudio/gstosxaudiosink.c:
24934 * sys/osxaudio/gstosxaudiosrc.c:
24935 - compilation warnings on OSX
24938 2004-06-02 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24940 * ext/vorbis/vorbisdec.c : sign warning fixes
24942 * gst-libs/gst/mixer/mixertrack.c :
24943 do no use defines which are glib 2.4 specific
24945 2004-06-01 Christophe Fergeau <teuf@gnome.org>
24947 * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
24948 buffer since libflac doesn't expect it (reports a sync error when
24949 it encounters that)
24952 2004-06-01 Owen Fraser-Green <owen@discobabe.net>
24954 * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
24955 * gst-libs/gst/mixer/mixertrack.c:
24956 (gst_mixer_track_get_property), (get_mixer_track_init),
24957 (get_mixer_track_get_property): Added property accessors
24958 * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
24959 * gst-libs/gst/mixer/mixeroptions.c:
24960 (gst_mixer_options_get_values): Added
24961 * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
24962 * gst-libs/gst/mixer/mixer.c: Fixed comment
24965 2004-06-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
24967 * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
24968 improve error messages on open
24971 2004-06-01 Thomas Vander Stichele <thomas at apestaart dot org>
24973 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
24974 check if v4l-conf is in path
24976 2004-06-01 Thomas Vander Stichele <thomas at apestaart dot org>
24978 * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
24979 change assert to a more readable error message
24981 2004-05-31 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24983 * gst-libs/gst/tuner/tunerchannel.h:
24984 - add a freq_multiplicator field to make the conversion
24985 between internal frequency unit and Hz
24986 * sys/v4l/gstv4lelement.c:
24987 * sys/v4l2/gstv4l2element.c:
24988 - change default video device to /dev/video0
24989 * sys/v4l/v4l_calls.c:
24990 * sys/v4l2/v4l2_calls.c:
24991 - we only expose frequency to the user in Hz instead of
24992 bastard v4lX unit (either 62.5kHz or 62.5Hz)
24994 2004-05-31 Jan Schmidt <thaytan@mad.scientist.com>
24995 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
24996 Initialise b_o_s and e_o_s variables
24997 * gst-libs/gst/riff/riff-media.c:
24998 (gst_riff_create_video_caps_with_data):
24999 Add some unusual fourcc's from mplayer avi's
25000 * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
25001 Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
25004 2004-05-28 Wim Taymans <wim@fluendo.com>
25007 * gst/alpha/Makefile.am:
25008 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
25009 (gst_alpha_get_type), (gst_alpha_base_init),
25010 (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
25011 (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
25012 (gst_alpha_chroma_key), (gst_alpha_chain),
25013 (gst_alpha_change_state), (plugin_init):
25014 A plugin to add an alpha channel to I420 video. Can optionally do
25016 * gst/multipart/Makefile.am:
25017 * gst/multipart/multipart.c: (plugin_init):
25018 * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
25019 (gst_multipart_demux_class_init), (gst_multipart_demux_init),
25020 (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
25021 (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
25022 (gst_multipart_demux_change_state),
25023 (gst_multipart_demux_plugin_init):
25024 * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
25025 (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
25026 (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
25027 (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
25028 (gst_multipart_mux_pad_unlink),
25029 (gst_multipart_mux_request_new_pad),
25030 (gst_multipart_mux_handle_src_event),
25031 (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
25032 (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
25033 (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
25034 (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
25035 A Multipart demuxer/muxer. Not sure if it violates specs. Used to
25036 send multipart jpeg images to a browser.
25037 * gst/videobox/Makefile.am:
25038 * gst/videobox/README:
25039 * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
25040 (gst_video_box_get_type), (gst_video_box_base_init),
25041 (gst_video_box_class_init), (gst_video_box_init),
25042 (gst_video_box_set_property), (gst_video_box_get_property),
25043 (gst_video_box_sink_link), (gst_video_box_i420),
25044 (gst_video_box_ayuv), (gst_video_box_chain),
25045 (gst_video_box_change_state), (plugin_init):
25046 Crops or adds borders around an image. can do alpha channel
25048 * gst/videomixer/Makefile.am:
25049 * gst/videomixer/README:
25050 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
25051 (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
25052 (gst_videomixer_pad_get_sink_event_masks),
25053 (gst_videomixer_pad_get_property),
25054 (gst_videomixer_pad_set_property),
25055 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
25056 (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
25057 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
25058 (gst_videomixer_base_init), (gst_videomixer_class_init),
25059 (gst_videomixer_init), (gst_videomixer_request_new_pad),
25060 (gst_videomixer_handle_src_event),
25061 (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
25062 (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
25063 (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
25064 (gst_videomixer_loop), (gst_videomixer_get_property),
25065 (gst_videomixer_set_property), (gst_videomixer_change_state),
25067 Generic video mixer plugin, can handle multiple inputs all with
25068 different framerates and video sizes. Is fully alpha channel
25071 2004-05-27 Ronald Bultje <rbultje@ronald.bitfreak.net>
25073 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
25074 Select first track as master track. Not sure how else to handle
25076 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
25077 Discard discont events. Should fix #142962.
25079 2004-05-26 Ronald Bultje <rbultje@ronald.bitfreak.net>
25081 * ext/alsa/Makefile.am:
25082 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
25083 (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
25084 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
25085 (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
25086 (gst_alsa_mixer_get_option):
25087 * ext/alsa/gstalsamixer.h:
25088 * ext/alsa/gstalsamixeroptions.c:
25089 (gst_alsa_mixer_options_get_type),
25090 (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
25091 (gst_alsa_mixer_options_new):
25092 * ext/alsa/gstalsamixeroptions.h:
25093 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
25094 * ext/alsa/gstalsamixertrack.h:
25095 Add enumerations (as GstMixerOptions). Make correct distinction
25096 between input/output tracks. Add capture/playback private flag.
25097 Use flag to decide on whether to set capture or playback volumes
25098 or switches. Use playback and record switches.
25099 * gst-libs/gst/mixer/Makefile.am:
25100 * gst-libs/gst/mixer/mixer-marshal.list:
25101 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
25102 (gst_mixer_set_option), (gst_mixer_get_option),
25103 (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
25104 (gst_mixer_volume_changed), (gst_mixer_option_changed):
25105 * gst-libs/gst/mixer/mixer.h:
25106 * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
25107 (gst_mixer_options_class_init), (gst_mixer_options_init),
25108 (gst_mixer_options_dispose):
25109 * gst-libs/gst/mixer/mixeroptions.h:
25110 Add GstMixerOptions.
25111 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
25112 Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
25113 broken device detection on computers with multiple OSS sound
25116 2004-05-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
25118 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
25119 fixate nicely even when the peer is not negotiating
25121 2004-05-25 Benjamin Otte <in7y118@public.uni-hamburg.de>
25123 * gst/audioconvert/gstaudioconvert.c:
25124 (gst_audio_convert_parse_caps):
25125 make sure we don't allow depth > width
25126 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
25127 fixate endianness to G_BYTE_ORDER as default
25128 * gst/audioscale/gstaudioscale.c:
25129 we don't handle another endianness as host-endianness
25131 2004-05-25 David Schleef <ds@schleef.org>
25133 * gst/ffmpegcolorspace/mem.c: malloc() is in stdlib.h, not malloc.h
25135 2004-05-24 Benjamin Otte <otte@gnome.org>
25137 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
25138 (gst_oggvorbisenc_setup):
25139 properly fail when we can't setup the vorbis encoder due to
25140 unsupported settings
25141 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
25142 (gst_vorbisenc_setup):
25144 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
25145 fix case where warnings occured when one pad was unlinked while the
25146 other's link function was called
25148 2004-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
25150 * gst/tcp/Makefile.am:
25153 2004-05-24 Benjamin Otte <in7y118@public.uni-hamburg.de>
25155 * gst-libs/gst/resample/private.h:
25156 don't use optimizations that are #if 0'ed
25158 2004-05-24 Wim Taymans <wim@fluendo.com>
25160 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
25161 Fix potential division by zero error and hopefully get
25162 the position query right to get correct timestamps on avi
25165 2004-05-24 Wim Taymans <wim@fluendo.com>
25167 * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
25168 (gst_videoscale_scale_nearest_str2),
25169 (gst_videoscale_scale_nearest_str4),
25170 (gst_videoscale_scale_nearest_32bit),
25171 (gst_videoscale_scale_nearest_24bit),
25172 (gst_videoscale_scale_nearest_16bit):
25173 Fix the scaling algorithm and avoid a buffer overflow.
25174 removed the while loop in the scaling function as it
25175 was used for point sampling only.
25177 2004-05-24 Benjamin Otte <in7y118@public.uni-hamburg.de>
25179 * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
25180 (gst_id3_tag_class_init), (gst_id3_tag_init),
25181 (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
25182 (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
25183 (gst_id3_tag_send_tag_event):
25184 lots of fixes to make id3mux work and id3demux work correctly
25186 2004-05-24 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25189 add rules to build shout2send (was removed by accident
25190 when this module was no more marked experimental/broken)
25192 2004-05-24 Zaheer Abbas Merali <zaheerabbas at merali dot org>
25194 * ext/shout2/gstshout2.c:
25195 * ext/shout2/gstshout2.h:
25196 adding a "connection problem" signal to shout2send
25199 2004-05-21 Thomas Vander Stichele <thomas at apestaart dot org>
25201 * ext/kio/kioreceiver.cpp:
25202 * ext/kio/kioreceiver.h:
25203 fix sign comparison issues
25205 2004-05-21 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25207 * gst/cdxaparse/gstcdxaparse.c:
25208 * gst/cdxaparse/gstcdxaparse.h:
25210 add some checks/sanity
25211 prepare for seek addition
25213 * sys/sunaudio/gstsunaudio.c:
25214 remove exported dupe init function
25216 2004-05-21 Jan Schmidt <thaytan@mad.scientist.com>
25218 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
25219 (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
25220 Fix format conversion and position querying.
25221 * gst/debug/progressreport.c: (gst_progressreport_report):
25222 Don't output a bogus total value that we didn't query.
25223 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
25224 Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
25225 only a blank window after xine has been used.
25227 2004-05-21 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
25230 sync with upstream version to fix test on FC2
25231 readd with -ko to preserve Id header
25233 2004-05-20 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25236 test for FIONREAD ioctl in sys/filio.h for Solaris compat.
25237 * gst/tcp/gsttcpclientsrc.c: idem
25238 * gst/tcp/gsttcpserversink.c: idem
25239 * gst/tcp/gsttcpserversrc.c: idem
25240 * m4/gst-fionread.m4: idem
25242 * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
25244 * configure.ac: enable speex plugin for speex 1.1.5+
25245 * ext/speex/gstspeexenc.c: fix cast warning
25247 * ext/esd/README: fix typo
25249 2004-05-20 David Schleef <ds@schleef.org>
25251 * configure.ac: Minor cosmetic change to convince the buildbot to
25253 * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
25254 (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
25255 (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
25256 (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
25257 (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
25258 (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
25259 More hacking. Plays audio now.
25261 2004-05-20 David Schleef <ds@schleef.org>
25266 2004-05-20 David Schleef <ds@schleef.org>
25268 * sys/osxaudio/Makefile.am: New OS X audio plugin by Zaheer Abbas Merali
25269 * sys/osxaudio/gstosxaudio.c:
25270 * sys/osxaudio/gstosxaudioelement.c:
25271 * sys/osxaudio/gstosxaudioelement.h:
25272 * sys/osxaudio/gstosxaudiosink.c:
25273 * sys/osxaudio/gstosxaudiosink.h:
25274 * sys/osxaudio/gstosxaudiosrc.c:
25275 * sys/osxaudio/gstosxaudiosrc.h:
25277 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
25279 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
25280 (gst_vorbisenc_chain):
25281 put the codec headers on the caps as streamheader as well as
25284 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
25286 * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
25287 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
25288 (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
25289 split up push_packet into two functions
25291 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
25293 * gst/tcp/.cvsignore:
25295 * gst/tcp/Makefile.am:
25297 * gst/tcp/gsttcp.c:
25298 * gst/tcp/gsttcp.h:
25299 * gst/tcp/gsttcpclientsink.c:
25300 * gst/tcp/gsttcpclientsink.h:
25301 * gst/tcp/gsttcpclientsrc.c:
25302 * gst/tcp/gsttcpclientsrc.h:
25303 * gst/tcp/gsttcpplugin.c:
25304 * gst/tcp/gsttcpserversink.c:
25305 * gst/tcp/gsttcpserversink.h:
25306 * gst/tcp/gsttcpserversrc.c:
25307 * gst/tcp/gsttcpserversrc.h:
25308 add new tcp elements
25310 2004-05-19 Wim Taymans <wim@fluendo.com>
25312 * gst/law/mulaw-conversion.c: (mulaw_encode):
25313 Fix overflow bug in ulaw encoding.
25315 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25317 * ext/mad/gstmad.c: (gst_mad_handle_event):
25318 don't unref the event twice
25320 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25323 remove -Wno-sign-compare
25325 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25328 remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
25329 if you want to work against glib 2.2 and 2.4
25331 2004-05-19 Thomas Vander Stichele <thomas at apestaart dot org>
25333 * gst/tcp/Makefile.am:
25334 * gst/tcp/gsttcp.c:
25335 * gst/tcp/gsttcp.h:
25336 * gst/tcp/gsttcpsink.h:
25337 * gst/tcp/gsttcpsrc.h:
25338 gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
25340 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25342 * gst/debug/tests.c: (md5_get_value):
25343 fix segfault on gst-inspect
25345 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25347 * gst/debug/testplugin.c:
25348 * gst/debug/tests.c:
25349 * gst/debug/tests.h:
25350 add new extensible and configurable testing element. Current tests
25351 include buffer count, stream length, timestamp/duration matching and
25353 * gst/debug/Makefile.am:
25354 * gst/debug/gstdebug.c: (plugin_init):
25355 add infrastructure for new element
25357 2004-05-19 Johan Dahlin <johan@gnome.org>
25359 * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
25360 ending of the array. Fixes gst-inspect segfault on ppc.
25362 2004-05-19 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25364 * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
25366 * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
25368 2004-05-18 David Schleef <ds@schleef.org>
25370 * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
25371 warnings (bugs, actually) noticed by gcc but not forte.
25373 2004-05-18 David Schleef <ds@schleef.org>
25375 * sys/sunaudio/Makefile.am:
25376 * sys/sunaudio/gstsunaudio.c: New sunaudiosink
25378 2004-05-18 David Schleef <ds@schleef.org>
25380 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
25381 (gst_qtdemux_loop_header): Patch from dcm@acm.org (David Moore)
25382 to allow qtdemux to use non-seekable streams. (bug #142272)
25384 2004-05-18 David Schleef <ds@schleef.org>
25386 * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
25387 (gst_resample_sinc_ft_float): Remove use of static temporary
25388 buffer. This code was obviously not supposed to last long, but
25389 it's stuck in our ABI, so it required a little hack to make it
25390 ABI-compatible. Fixes #142585.
25391 * gst-libs/gst/resample/resample.h: same.
25393 2004-05-18 David Schleef <ds@schleef.org>
25395 * configure.ac: Add sunaudio
25396 * examples/Makefile.am: make gstplay depend on gconf
25397 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
25398 * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
25399 (convert_table_lookup), (img_convert): remove c99-isms
25400 * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
25401 unsigned, to fix a warning on Solaris
25402 * gst/mpeg1sys/systems.c: bcopy->memcpy
25403 * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
25404 * sys/Makefile.am: Add sunaudio
25406 2004-05-18 Wim Taymans <wim@fluendo.com>
25408 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
25409 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
25410 (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
25411 (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
25412 (gst_ogg_mux_loop):
25413 Fix an ugly memleak where the muxer didn't flush enough ogg
25414 pages. This also resulted in badly muxed ogg files.
25416 2004-05-18 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25418 * gst/asfdemux/asfheaders.c :
25419 * gst/asfdemux/asfheaders.h :
25420 * gst/asfdemux/gstasfdemux.c :
25421 - fix ASF_OBJ_PADDING guid
25422 - add 3 new object guids (language list, metadata,
25423 extended stream properties)
25424 - add a function to parse extended header objects
25426 2004-05-18 Benjamin Otte <in7y118@public.uni-hamburg.de>
25428 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
25429 remove leftover debugging g_print
25431 2004-05-17 Ronald Bultje <rbultje@ronald.bitfreak.net>
25433 * ext/mad/gstmad.c: (gst_mad_handle_event):
25434 Fix for when the first format in a discont event is not a
25435 byte-based one. Should fix #137710.
25437 2004-05-18 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25439 * m4/a52.m4 : fix compilation with -Wall -Werror
25440 * m4/libfame.m4 : idem
25441 * m4/libmikmod.m4 : idem
25443 2004-05-17 Benjamin Otte <otte@gnome.org>
25445 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25446 signal the new tags before giving up the reference
25448 2004-05-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
25450 * ext/shout2/gstshout2.c:
25451 use application/ogg instead of application/x-ogg (patch by Patrick
25452 Guimond, fixes #142432)
25453 * sys/oss/gstosselement.c: (gst_osselement_reset),
25454 (gst_osselement_sync_parms):
25455 don't set fragment size unless specified (fixes #142493)
25457 2004-05-17 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25459 * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
25462 2004-05-17 Benjamin Otte <otte@gnome.org>
25464 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
25465 compute offsets correctly for internal buffers so timestamps are set
25466 correctly when we can't seek. Also handle cases where there are no
25467 offsets. (based on a patch by David Moore, fixes #142507)
25469 2004-05-17 Benjamin Otte <otte@gnome.org>
25471 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25472 use correct variable when determining amount of data to skip so we
25473 don't skip into the void and segfault
25475 2004-05-16 Benjamin Otte <otte@gnome.org>
25477 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
25480 2004-05-16 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25482 * gst/asfdemux/gstasfdemux.c:
25483 - fix a mem leak and always propagate tags
25484 - add WMV3 to known video codecs (but no decoder yet)
25485 - replace "surplus data" at end of audio header for what
25486 it is : codec specific data
25489 2004-05-16 Arwed v. Merkatz <v.merkatz@gmx.net>
25491 reviewed by: Ronald Bultje <rbultje@ronald.bitfreak.net>
25493 * gst-libs/gst/audio/audioclock.c:
25494 Fix wrong return type (#142205).
25496 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
25498 * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
25499 Ignore CRCs by default (fixes #142566).
25501 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
25503 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
25504 (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
25505 (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
25506 (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
25507 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
25508 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
25509 Fix for cases where we fail to attach to a mixer.
25511 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
25513 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
25514 Don't touch events after not owning them anymore.
25515 * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
25516 (gst_wavparse_fmt), (gst_wavparse_other),
25517 (gst_wavparse_handle_seek), (gst_wavparse_loop),
25518 (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
25519 (gst_wavparse_srcpad_event):
25520 * gst/wavparse/gstwavparse.h:
25521 Add seeking, fix querying.
25523 2004-05-16 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25525 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25526 - process comments even if they don't end with \0\0
25527 g_convert would ignore them if present and works well without them
25529 2004-05-16 Benjamin Otte <otte@gnome.org>
25531 * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
25534 2004-05-16 Benjamin Otte <otte@gnome.org>
25536 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25537 don't write to memory we might not write to - g_convert does that
25538 for us anyway (fixes #142613)
25539 (gst_asf_demux_audio_caps):
25540 comment out gst_util_dump_mem
25542 2004-05-16 Benjamin Otte <otte@gnome.org>
25544 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25545 compute correct expected timestamps after seek (broken since
25547 * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
25548 rename element and debugging category to gdkpixbufscale
25550 2004-05-16 Benjamin Otte <otte@gnome.org>
25552 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25553 add error checking to snd_pcm_delay and remove duplicate call to
25554 snd_pcm_delay that caused issues (see inline code comments)
25555 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
25556 make more readable and fix return value when snd_pcm_delay fails
25559 2004-05-15 Jan Schmidt <thaytan@mad.scientisti.com>
25560 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
25561 (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
25562 (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
25563 (gst_pixbufscale_link), (gst_pixbufscale_init),
25564 (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
25565 (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
25566 (gst_pixbufscale_get_property), (pixbufscale_init):
25567 * ext/gdk_pixbuf/pixbufscale.h:
25568 Add these files I forgot earlier
25570 2004-05-15 Jan Schmidt <thaytan@mad.scientist.com>
25571 * ext/gdk_pixbuf/Makefile.am:
25572 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
25573 * ext/gdk_pixbuf/gstgdkpixbuf.h:
25574 Add new pixbufscale element to scale RGB video
25575 using gdk_pixbuf, because gdk_pixbuf does BILINEAR
25576 and HYPER interpolation correctly.
25577 * ext/theora/theoraenc.c: (theora_enc_chain),
25578 Discard buffer and return if explicit caps could not be set
25579 (theora_enc_get_property):
25580 Make _get return kbps for the bitrate consistent with
25584 2004-05-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
25586 * ext/libvisual/visual.c: (gst_visual_chain):
25587 add missing visual_audio_analyze
25589 2004-05-14 David Schleef <ds@schleef.org>
25591 * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
25592 is killed while we're playing.
25593 * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
25594 gst_element_no_more_pads().
25596 2004-05-14 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25598 * gst-libs/gst/riff/riff-read.c :
25599 - fix INFO tag extraction in RIFF/AVI files
25600 because gst_event_unref (event) also freed taglist
25603 2004-05-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25605 * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
25606 * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
25608 * gst/auparse/gstauparse.c :
25609 - add code (commented for now) to support audio/x-adpcm on src pad
25610 (we have no decoder for those layout yet)
25612 * gst/cdxaparse/gstcdxaparse.c :
25613 * gst/cdxaparse/gstcdxaparse.h :
25614 - partial rewrite using RiffRead (ripped iain's wavparse code)
25616 * gst/rtp/gstrtpL16enc.c : typo
25617 * gst/rtp/gstrtpgsmenc.c : typo
25619 2004-05-13 Benjamin Otte <otte@gnome.org>
25622 check for exact version of libvisual, it's not supposed to be
25625 2004-05-13 Benjamin Otte <in7y118@public.uni-hamburg.de>
25627 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
25628 signal no-more-pads
25630 2004-05-13 Jan Schmidt <thaytan@mad.scientist.com>
25632 * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
25633 Report which format was used for GST_FORMAT_DEFAULT
25634 * gst/debug/Makefile.am:
25635 * gst/debug/gstdebug.c: (plugin_init):
25636 * gst/debug/progressreport.c: (gst_progressreport_base_init),
25637 (gst_progressreport_class_init), (gst_progressreport_init),
25638 (gst_progressreport_report), (gst_progressreport_set_property),
25639 (gst_progressreport_get_property), (gst_progressreport_chain),
25640 (gst_progressreport_plugin_init):
25641 Add progressreport element for testing.
25643 2004-05-13 Thomas Vander Stichele <thomas at apestaart dot org>
25645 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
25646 * sys/v4l/gstv4lsrc.h:
25647 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
25648 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
25649 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
25650 (gst_v4lsrc_grab_frame):
25652 send a discont at start
25654 2004-05-12 Colin Walters <walters@redhat.com>
25656 * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
25657 inflooping if we can't find a chunk. Or in other words, don't blow
25658 chunks if we don't have a chunk to blow.
25660 2004-05-13 Jan Schmidt <thaytan@mad.scientist.com>
25661 * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
25662 Remove old debug output
25663 * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
25664 (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
25665 (gst_dvdec_set_property), (gst_dvdec_get_property):
25666 Change the quality setting to an enum, so it works from gst-launch
25667 Don't renegotiate a non-linked pad. Allows audio only decoding.
25668 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
25669 (gst_deinterlace_link), (gst_deinterlace_init):
25670 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
25671 (gst_videodrop_link):
25672 Some caps negotiation fixes
25674 2004-05-12 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25676 * ext/tarkin/gsttarkin.c :
25677 - Change RANK from NONE to PRIMARY
25678 * ext/gdk_pixbuf/gstgdkpixbuf.c :
25679 - Change RANK from NONE to MARGINAL
25680 * ext/divx/gstdivxenc.c :
25681 - Change RANK from PRIMARY to NONE (encoder/spider issue)
25683 2004-05-12 Thomas Vander Stichele <thomas at apestaart dot org>
25685 * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
25686 (gst_vorbisenc_push_packet):
25687 copy a function that was added between 1.0 and 1.0.1 until we
25688 depend on worthwhile features of post-1.0
25690 2004-05-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
25693 enable shout2 by default
25694 * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
25695 (gst_shout2send_base_init), (gst_shout2send_init),
25696 (gst_shout2send_connect), (gst_shout2send_change_state):
25697 * ext/shout2/gstshout2.h:
25698 make this work again. Based on a patch by Zaheer Abbas Merali (fixes
25700 * ext/theora/theora.c: (plugin_init):
25701 don't set rank on encoders
25703 2004-05-11 Jeremy Simon <jesimon@libertysurf.fr>
25705 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
25706 Use codec_data property instead of flag1 and flag2 for wma
25708 2004-05-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25710 * gst/cdxaparse/gstcdxaparse.c :
25711 - Add mpegversion to CAPS to make it link
25712 - Rank is as GST_RANK_SECONDARY instead of NONE
25713 * gst/auparse/gstauparse.c :
25714 - Document all audio encoding we can encounter from Solaris 9
25715 headers and libsndfile information.
25716 - Increase max. rate from 48000 to 192000 (to match other elements)
25717 - Don't try to play junk data between header and samples
25719 2004-05-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
25721 * ext/libvisual/visual.c: (gst_visual_getcaps):
25722 use the right caps depending on endianness (I hope)
25723 * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
25724 use GST_RANK_NONE for all non-decoding elements or spider gets
25727 2004-05-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
25729 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25730 Fix some odd cases and fix BE metadata parsing of unicode16 text.
25732 2004-05-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
25734 * gst/switch/gstswitch.c: (gst_switch_release_pad),
25735 (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
25736 (gst_switch_loop), (gst_switch_get_type):
25737 whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
25738 HEADERS. Had to be said.
25740 2004-05-10 David Schleef <ds@schleef.org>
25742 * configure.ac: Add prototype Dirac support.
25744 * ext/dirac/Makefile.am:
25745 * ext/dirac/gstdirac.cc:
25746 * ext/dirac/gstdiracdec.cc:
25748 2004-05-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
25750 * gst/auparse/gstauparse.c: (gst_auparse_class_init),
25751 (gst_auparse_init), (gst_auparse_chain),
25752 (gst_auparse_change_state):
25753 Hack around spider. Remove me some day please.
25755 2004-05-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
25757 * gst/auparse/gstauparse.c: (gst_auparse_chain):
25758 Fix for some uninitialized variables in previous patch, also
25759 makes it work. Fixes #142286 while we're at it.
25761 2004-05-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25763 * gst/auparse/gstauparse.c:
25764 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
25765 only unsupported formats are ADPCM/CCITT G.72x
25767 * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
25769 2004-05-10 Wim Taymans <wim@fluendo.com>
25771 * ext/vorbis/Makefile.am:
25772 * ext/vorbis/README:
25773 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
25774 (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
25775 (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
25776 (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
25777 (gst_oggvorbisenc_convert_sink),
25778 (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
25779 (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
25780 (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
25781 (get_constraints_string), (update_start_message),
25782 (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
25783 (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
25784 (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
25785 * ext/vorbis/oggvorbisenc.h:
25786 * ext/vorbis/vorbis.c: (plugin_init):
25787 * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
25788 (raw_caps_factory), (gst_vorbisenc_class_init),
25789 (gst_vorbisenc_init), (gst_vorbisenc_setup),
25790 (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
25791 (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
25792 * ext/vorbis/vorbisenc.h:
25793 Added a raw vorbis encoder to be used with the oggmuxer.
25794 We still need the old encoder for some gnome applications,
25795 read the README to find out how that works.
25796 The raw encoder is called "rawvorbisenc" until 0.9.
25798 2004-05-10 Wim Taymans <wim@fluendo.com>
25800 * ext/ogg/gstogg.c: (plugin_init):
25801 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
25803 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
25804 (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
25805 (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
25806 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
25807 (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
25808 (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
25809 (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
25810 (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
25811 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
25812 (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
25813 Added an ogg muxer.
25814 Small typo fixes in the demuxer.
25816 2004-05-10 Wim Taymans <wim@fluendo.com>
25818 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
25819 (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
25820 (theora_enc_change_state), (theora_enc_set_property),
25821 (theora_enc_get_property):
25822 Mark the last packet with an EOS flag which is not really needed
25824 Do some better video framerate initialisation.
25825 Update the buffer timestamp.
25827 2004-05-10 Jan Schmidt <thaytan@mad.scientist.com>
25829 * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
25830 Return the result of the parent state change call
25832 2004-05-10 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25834 * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
25835 * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
25836 * gst/law/alaw-encode.c : (idem)
25837 * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
25838 * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
25839 * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
25841 2004-05-09 Benjamin Otte <otte@gnome.org>
25843 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
25844 don't use a fixed buffer size when writing variable length data to
25845 it. Fixes memory corruption and makes alsasrc work
25847 2004-05-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
25849 * ext/gnomevfs/gstgnomevfssink.c:
25850 (_gst_boolean_allow_overwrite_accumulator),
25851 (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
25852 Run glib's default signal handler (??) in RUN_CLEANUP rather than
25853 RUN_LAST, and don't use that to set the accumulator value because
25854 then it's always FALSE.
25856 2004-05-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
25858 * gst-libs/gst/riff/riff-media.c:
25859 (gst_riff_create_video_caps_with_data),
25860 (gst_riff_create_audio_caps),
25861 (gst_riff_create_audio_template_caps):
25862 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
25863 Fix for unaligned RIFF files (i.e. where all the chunks together
25864 in a LIST chunk are not of the same size as the size given in
25865 the LIST chunk header). Fixes several odd WAVE files. Also fix
25866 ADPCM (block_align property) in audio, so that wavparse based
25867 on this works now as it used to stand-alone.
25869 2004-05-09 Edward Hervey <bilboed@bilboed.com>
25871 reviewed by Benjamin Otte <otte@gnome.org>
25873 * ext/a52dec/gsta52dec.c:
25874 * ext/divx/gstdivxdec.c:
25875 * ext/divx/gstdivxenc.c:
25876 * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
25877 * ext/faac/gstfaac.c: (gst_faac_base_init):
25878 * ext/faad/gstfaad.c: (gst_faad_base_init):
25879 * ext/ivorbis/vorbisfile.c:
25880 * ext/lame/gstlame.c:
25881 * ext/libfame/gstlibfame.c:
25882 * ext/mpeg2enc/gstmpeg2enc.cc:
25883 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
25884 * ext/sidplay/gstsiddec.cc:
25885 * ext/speex/gstspeexdec.c:
25886 * ext/speex/gstspeexenc.c:
25887 * ext/xvid/gstxviddec.c:
25888 * ext/xvid/gstxvidenc.c:
25889 correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
25892 2004-05-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
25894 * ext/alsa/gstalsa.c: (device_list),
25895 (gst_alsa_class_probe_devices):
25896 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
25897 Fix alsa oddness in mixer after the combination of using mixer
25898 in source/sink elements and using hw:x,y instead of just hw:x.
25900 2004-05-09 Benjamin Otte <otte@gnome.org>
25902 * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
25903 (gst_wavparse_create_sourcepad):
25904 make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
25907 2004-05-09 Benjamin Otte <otte@gnome.org>
25909 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
25910 allow discont events before caps nego
25912 2004-05-08 Benjamin Otte <otte@gnome.org>
25914 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
25917 2004-05-08 Benjamin Otte <otte@gnome.org>
25919 * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
25920 (gst_level_change_state), (gst_level_init):
25921 * gst/level/gstlevel.h:
25922 figure out if we're initialized directly instead of keeping a
25923 variable that's wrong in 90% of cases
25924 don't initialize pads and then leak them and use a new unitialized
25925 pad. (fixes #142084)
25926 these were bugs so n00bish I didn't find them for an hour :/
25928 2004-05-08 Iain <iain@prettypeople.org>
25930 * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
25931 * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
25932 (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
25933 return the length that was read.
25934 (gst_riff_read_strf_auds): Allow fmt tags as well.
25936 2004-05-07 David Schleef <ds@schleef.org>
25938 * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
25939 signed char assumption in faad.h.
25941 2004-05-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
25943 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
25944 Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
25946 2004-05-07 Colin Walters <walters@redhat.com>
25948 * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
25949 * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
25951 * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
25952 Add dispose function.
25954 2004-05-08 Jan Schmidt <thaytan@mad.scientist.com>
25955 * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
25956 Fix caps nego and pad templates. RGB mode caps should
25958 * ext/dvdnav/gst-dvd:
25959 Move mpeg2dec inside the thread because otherwise the
25960 queue rejects cap changes mid-stream
25961 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
25962 (gst_mpeg2dec_flush_decoder):
25963 For mpeg2dec > 0.4.0, call the flush function instead of
25964 manually extracting all in-flight frames.
25965 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
25966 (gst_dv1394src_init), (gst_dv1394src_iso_receive):
25967 Change mime type video/dv go video/x-dv to match the
25968 rest of gst-plugins
25970 2004-05-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
25972 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
25973 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
25974 (gst_alsa_sink_class_init):
25975 * ext/alsa/gstalsasink.h:
25976 * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
25977 (gst_alsa_src_class_init):
25978 * ext/alsa/gstalsasrc.h:
25979 Make alsasink/src a subclass of alsamixer so that mixer stuff
25980 shows up in gst-rec. Needs some finetuning.
25982 2004-05-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
25984 * ext/lame/gstlame.c: (gst_lame_chain):
25986 * ext/mad/gstmad.c: (gst_mad_handle_event):
25988 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
25989 be able to detect mp3 files < 4096 bytes
25991 2004-05-06 Wim Taymans <wim@fluendo.com>
25993 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
25994 (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
25995 (theora_enc_set_property), (theora_enc_get_property):
25996 Also encode the first frame, cleanup some code.
25998 2004-05-06 Wim Taymans <wim@fluendo.com>
26000 * ext/mpeg2enc/gstmpeg2enc.cc:
26001 Forward events first before deciding that negotiation was
26004 2004-05-06 Wim Taymans <wim@fluendo.com>
26006 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
26007 First process the events before deciding that negotiation
26010 2004-05-06 Wim Taymans <wim@fluendo.com>
26012 * ext/theora/Makefile.am:
26013 * ext/theora/theora.c: (plugin_init):
26014 * ext/theora/theoradec.c: (theora_dec_change_state):
26015 * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
26016 (gst_theora_enc_class_init), (gst_theora_enc_init),
26017 (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
26018 (theora_enc_chain), (theora_enc_change_state),
26019 (theora_enc_set_property), (theora_enc_get_property):
26020 Added a theora encoder, grouped the encoder and decoder into the
26023 2004-05-05 Thomas Vander Stichele <thomas at apestaart dot org>
26025 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26026 (gst_jpegenc_chain):
26027 fix DURATION on outgoing buffers
26028 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
26029 debug using time formats
26030 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
26031 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
26032 (gst_xvimagesink_sink_link):
26033 windows with width/height 0 generate X errors, so don't allow them
26035 2004-05-05 Wim Taymans <wim@fluendo.com>
26037 * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
26038 (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
26039 (gst_mpeg2dec_negotiate_format):
26040 * ext/mpeg2dec/gstmpeg2dec.h:
26041 removed the static pad template so that we can add the
26042 more accurate framerate value to the caps.
26045 2004-05-04 Benjamin Otte <otte@gnome.org>
26048 check for kdemacros.h, too (should fix #141821)
26049 * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
26050 don't crash if no header was sent, but nicely error out (fixes part
26053 2004-05-04 Wim Taymans <wim@fluendo.com>
26055 * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
26056 parent dispose function to avoid segfault on destroy.
26058 2004-05-04 Thomas Vander Stichele <thomas at apestaart dot org>
26060 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
26062 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
26063 (gst_xvimagesink_sink_link):
26064 clean up debugging caps
26065 also recreate xvimage when format has changed
26067 2004-05-04 Benjamin Otte <otte@gnome.org>
26069 * ext/libvisual/Makefile.am:
26070 * ext/libvisual/visual.c: (gst_visual_class_init),
26071 (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
26072 (gst_visual_srclink), (gst_visual_chain),
26073 (gst_visual_change_state), (plugin_init):
26074 use a GstAdapter to correctly adapt buffer sizes - allows using a
26077 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
26079 * sys/v4l/gstv4lelement.h:
26080 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
26081 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
26082 (gst_v4lsrc_buffer_free):
26083 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
26084 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
26085 (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
26086 (gst_v4lsrc_requeue_frame):
26087 move some debugging categories around
26088 query for fps index and set accordingly if found
26090 2004-05-03 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
26092 * ext/lame/gstlame.c:
26093 correct defaults that lame_init puts out of range
26095 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
26097 * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
26098 (gst_divxenc_class_init):
26099 fix range since -1 is the default
26100 * gst/mpeg1sys/gstmpeg1systemencode.c:
26101 (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
26102 * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
26103 (gst_rtjpegdec_chain):
26104 * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
26105 (gst_rtjpegenc_chain):
26106 * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
26107 (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
26108 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
26109 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
26110 * sys/v4l/gstv4lsrc.c:
26111 * sys/v4l/v4l_calls.c: (gst_v4l_open):
26112 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
26113 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
26114 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
26115 * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
26116 remove gst_info calls
26118 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
26127 Updated translations
26129 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
26131 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26132 refactor/comment code
26134 2004-05-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
26136 * gst/asfdemux/Makefile.am:
26137 * gst/asfdemux/asfheaders.c:
26138 * gst/asfdemux/asfheaders.h:
26139 * gst/asfdemux/gstasf.c: (plugin_init):
26140 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
26141 (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
26142 (gst_asf_demux_setup_pad):
26143 * gst/asfdemux/gstasfdemux.h:
26144 * gst/asfdemux/gstasfmux.c:
26145 * gst/asfdemux/gstasfmux.h:
26146 Add tagging support to demuxer, split out registration in its own
26147 file instead of in demux (hacky), and prevent having some tables
26148 in our memory multiple times (in asfheaders.h).
26150 2004-05-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
26152 * gst/matroska/matroska-demux.c:
26153 (gst_matroska_demux_parse_metadata):
26154 * gst/matroska/matroska-ids.h:
26155 Basic tag reading support.
26157 2004-04-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
26159 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
26160 Really detect ac-3 audio.
26161 * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
26162 really detect matroska files (off-by-1).
26164 2004-04-30 David Schleef <ds@schleef.org>
26166 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
26167 (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
26168 (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
26169 (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
26170 (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
26171 hackage -- parse a lot more atoms, extract a few tags. One might even
26172 mistake this for tag support. Maybe it is.
26173 * gst/qtdemux/qtdemux.h:
26175 2004-04-30 Colin Walters <walters@verbum.org>
26177 * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
26179 2004-04-30 Thomas Vander Stichele <thomas at apestaart dot org>
26181 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26182 (gst_ffmpegcolorspace_getcaps):
26183 remove broken nego fix
26185 2004-04-30 Benjamin Otte <otte@gnome.org>
26189 * ext/libvisual/Makefile.am:
26190 * ext/libvisual/visual.c:
26191 add initial support for libvisual (http://libvisual.sourceforge.net)
26192 libvisual is still quite alpha, so expect crashes in there :)
26194 2004-04-29 David Schleef <ds@schleef.org>
26196 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
26197 (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
26198 up qtdemux to make it spit out codec_data. Do _not_ look at this
26199 code; you will no longer respect me.
26201 2004-04-29 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
26203 * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
26204 * ext/alsa/gstalsa.h :
26205 change alsa pcm device discovery to find more than 1 device
26206 per card. code review by Ronald.
26208 2004-04-29 David Schleef <ds@schleef.org>
26210 * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
26211 Add a check for a driver bug on FreeBSD. (bug #140565)
26213 2004-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
26215 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
26216 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26217 (gst_jpegenc_getcaps):
26218 move format setting to inner loop
26219 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26220 (gst_ffmpegcolorspace_getcaps):
26221 use GST_PAD_CAPS if available so that we use already negotiated
26223 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
26224 (qtdemux_parse_moov), (qtdemux_parse):
26226 * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
26227 * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
26228 move hardcoded path to DEFINE
26230 2004-04-28 David Schleef <ds@schleef.org>
26232 * gst/speed/gstspeed.c: (speed_parse_caps): Fix caps parsing.
26235 2004-04-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
26237 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
26238 Don't probe for playback device if we're a source element. Fixes
26241 2004-04-29 Benjamin Otte <otte@gnome.org>
26243 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
26244 (gst_id3_tag_chain):
26245 rewrite buffer offset
26247 2004-04-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
26251 * ext/dts/Makefile.am:
26252 * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
26253 (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
26254 (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
26255 (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
26256 (gst_dtsdec_loop), (gst_dtsdec_change_state),
26257 (gst_dtsdec_set_property), (gst_dtsdec_get_property),
26259 * ext/dts/gstdtsdec.h:
26261 * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
26262 (gst_faad_srcconnect):
26263 Add ESDS atom handling (.m4a).
26265 2004-04-27 Ronald Bultje <rbultje@ronald.bitfreak.net>
26267 * ext/divx/gstdivxdec.c: (plugin_init):
26268 Remove comment that makes no sense.
26269 * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
26270 Fix for obvious typo that resulted in warnings during gst-register.
26271 * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
26272 (gst_xviddec_sink_link):
26273 Fix caps negotiation a bit better.
26274 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
26275 We call this 'codec_data', not 'esds'.
26277 2004-04-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
26279 * gst/monoscope/gstmonoscope.c:
26280 make sure we only provide 256x128
26281 * gst/monoscope/monoscope.c: (monoscope_init):
26282 assert size of 256x128
26284 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
26287 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
26288 (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
26289 fixate to max width and height of device
26291 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
26294 * sys/v4l/gstv4l.c:
26295 * sys/v4l/gstv4lsrc.c:
26296 * sys/v4l/v4l_calls.c:
26297 * sys/v4l/v4lsrc_calls.c:
26298 fix for qc-usb driver which fakes having more than one buffer
26299 by handing the same buffer twice, which confused GStreamer's/v4lsrc
26300 buffer_free override
26303 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
26306 * gst/videotestsrc/gstvideotestsrc.c:
26307 (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
26308 (gst_videotestsrc_init), (gst_videotestsrc_get),
26309 (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
26310 * gst/videotestsrc/gstvideotestsrc.h:
26311 add num-buffers property
26313 2004-04-26 Benjamin Otte <otte@gnome.org>
26315 * ext/mad/gstid3tag.c: (plugin_init):
26316 set id3mux rank to NONE so it doesn't confuse spider
26317 require audio/mpeg,mpegversion=1 in id3mux
26319 2004-04-26 Benjamin Otte <otte@gnome.org>
26322 detect faad correctly as non-working if it's indeed non-working
26324 2004-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
26327 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26328 (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
26329 fix _getcaps so it only negotiates to its supported format
26331 2004-04-25 Benjamin Otte <otte@gnome.org>
26333 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26336 2004-04-23 Benjamin Otte <otte@gnome.org>
26338 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
26339 audio/x-raw-int with height rules! not. Now it's depth.
26341 2004-04-22 Ronald Bultje <rbultje@ronald.bitfreak.net>
26343 * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
26344 (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
26345 (gst_wavparse_loop):
26346 Missing variable initialization. Add handling of DVI ADPCM. Fix
26347 mis-parsing of LIST chunks. This works around a bug where we mis-
26348 parse non-aligning LIST chunks (so LIST chunks where the contents
26349 don't align with the actual LIST size). The correct fix is to use
26350 rifflib, I'm not going to fix wavparse - too much work. All this
26353 2004-04-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
26355 reviewed by Benjamin Otte <otte@gnome.org>
26357 * ext/shout/gstshout.c: (gst_icecastsend_change_state):
26358 fix shoutcast not working (fixes #140844)
26360 2004-04-22 Benjamin Otte <otte@gnome.org>
26362 * ext/hermes/gsthermescolorspace.c:
26363 (gst_hermes_colorspace_caps_remove_format_info):
26364 * gst/colorspace/gstcolorspace.c:
26365 (gst_colorspace_caps_remove_format_info):
26366 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26367 (gst_ffmpegcolorspace_caps_remove_format_info):
26368 s/gst_caps_simplify/gst_caps_do_simplify/
26370 2004-04-22 Benjamin Otte <otte@gnome.org>
26372 * gst-libs/gst/riff/riff-media.c:
26373 (gst_riff_create_video_caps_with_data):
26374 mpegversion is an int
26375 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
26376 don't try to create pad templates with NULL caps, use any caps
26379 2004-04-20 David Schleef <ds@schleef.org>
26381 * ext/sdl/Makefile.am: Link against libgstinterfaces, not
26382 libgstxoverlay. jmmv@menta.net (Julio M. Merino Vidal)
26385 2004-04-20 Daniel Gazard <daniel.gazard@epita.fr>
26387 reviewed by David Schleef
26389 * ext/mad/gstid3tag.c: Add stdlib.h
26390 * gst/rtp/gstrtpgsmenc.c: same
26391 * gst/tags/gstid3tag.c: same
26392 * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
26393 * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
26394 GST_DISABLE_LOADSAVE use.
26395 * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
26396 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
26397 * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
26399 * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
26400 * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
26402 * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
26403 * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
26405 * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
26408 2004-04-20 David Schleef <ds@schleef.org>
26410 * gst/realmedia/rmdemux.c: This was supposed to part of the
26411 last checkin. Same idea.
26413 2004-04-20 Daniel Gazard <daniel.gazard@epita.fr>
26415 reviewed by David Schleef
26417 * configure.ac: bump required gstreamer version to 0.8.1.1
26418 because of following changes [--ds]
26420 * gst-libs/gst/riff/riff-read.c: Include gst/gstutils.h.
26421 (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
26422 (gst_riff_read_header): Use GST_READ_UINT*
26423 macros to access possibly unaligned memory.
26425 * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
26426 (mp3_type_find): Use GST_READ_UINT*
26427 macros to access possibly unaligned memory.
26428 (mp3_type_find, mpeg1_parse_header, qt_type_find)
26429 (speex_type_find): Likewise
26431 * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
26433 * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
26434 (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
26435 (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
26436 (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
26437 (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
26438 (qtdemux_tree_get_sibling_by_type): Use GST_READ_UINT*
26439 macros to access possibly unaligned memory.
26441 * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
26444 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
26445 (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
26447 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
26450 * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
26451 (gst_mpeg2subt_chain_subtitle): Likewise.
26453 * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
26454 (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
26457 * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
26460 * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
26463 * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
26466 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
26469 update required version of GStreamer because of GST_TIME_FORMAT
26471 2004-04-20 Benjamin Otte <in7y118@public.uni-hamburg.de>
26473 * ext/mad/gstid3tag.c: (gst_id3_tag_init):
26474 remove leftover g_print
26475 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
26476 don't try setting only a subset of the caps. We don't want to kill
26477 autoplugging on purpose
26479 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
26481 * sys/ximage/ximagesink.c: (plugin_init):
26482 * sys/xvimage/xvimagesink.c: (plugin_init):
26483 add debugging categories
26485 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
26489 Adding en_GB translation (Gareth Owen)
26491 2004-04-20 David Schleef <ds@schleef.org>
26493 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
26494 (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
26495 (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
26496 (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
26497 A number of new features and hacks to extract the esds atom and
26498 put it into the caps. (bug #137724)
26500 2004-04-19 David Schleef <ds@schleef.org>
26502 * gconf/Makefile.am: Fix for non-GNU make
26503 * gst-libs/gst/Makefile.am: Change directory order to handle
26504 GstPlay linking with gstinterfaces
26505 * gst-libs/gst/audio/make_filter: make use of tr portable
26506 * gst-libs/gst/play/Makefile.am: Add intended \
26507 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
26508 (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
26509 function prototype instead of void *.
26510 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
26512 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26513 (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
26514 * gst/videofilter/make_filter: make use of tr portable
26515 * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
26517 2004-04-19 Thomas Vander Stichele <thomas at apestaart dot org>
26521 Added Ukrainian translation (Maxim V. Dziumanenko)
26523 2004-04-18 Ronald Bultje <rbultje@ronald.bitfreak.net>
26525 * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
26526 (gst_gsmdec_link), (gst_gsmdec_chain):
26527 Fix capsnego, simplify chain function slightly.
26528 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
26531 2004-04-18 Ronald Bultje <rbultje@ronald.bitfreak.net>
26533 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
26534 (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
26535 (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
26536 Hack to make wavparse work with spider (always -> sometimes pad).
26537 Fixes #135862 && #140411.
26539 2004-04-18 Benjamin Otte <otte@gnome.org>
26541 * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
26542 (gst_osselement_rate_probe_check),
26543 (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
26544 get rid of \n in debug output
26546 2004-04-17 Iain <iain@prettypeople.org>
26548 * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
26551 2004-04-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
26553 * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
26554 (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
26555 (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
26556 (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
26557 (gst_id3_tag_src_link), (gst_id3_tag_chain),
26558 (gst_id3_tag_change_state), (plugin_init):
26559 deprecate id3tag element and replace with id3demux/id3mux.
26560 great side effect: this ugly file is now even uglier, yay!
26561 * ext/mad/gstmad.h:
26562 remove non-available function
26563 update for new get_type
26565 2004-04-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
26568 require mpeg2dec >= 0.4.0
26570 2004-04-17 Benjamin Otte <otte@gnome.org>
26572 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
26573 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
26574 (gst_xvimagesink_set_xwindow_id):
26575 call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
26576 assorted cleanup fixes.
26578 2004-04-16 David Schleef <ds@schleef.org>
26580 * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
26581 * sys/xvimage/xvimagesink.h: same
26583 2004-04-16 Thomas Vander Stichele <thomas at apestaart dot org>
26585 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
26586 Fix GST_ELEMENT_ERROR with (NULL)
26588 2004-04-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
26590 * gst-libs/gst/riff/riff-media.c:
26591 (gst_riff_create_video_caps_with_data):
26592 Add div[3456] as fourccs for DivX 3 (fixes #140137).
26594 2004-04-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
26596 * gst-libs/gst/riff/riff-media.c:
26597 (gst_riff_create_video_caps_with_data),
26598 (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
26599 (gst_riff_create_video_template_caps),
26600 (gst_riff_create_audio_template_caps):
26601 * gst-libs/gst/riff/riff-media.h:
26602 * gst-libs/gst/riff/riff-read.c:
26603 (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
26604 * gst-libs/gst/riff/riff-read.h:
26605 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
26606 Add MS RLE support. I added some functions to read out strf chunks
26607 into strf chunks and the data behind it. This is usually color
26608 palettes (as in RLE, but also in 8-bit RGB). Also use those during
26609 caps creation. Lastly, add ADPCM (similar to wavparse - which
26610 should eventually be rifflib based).
26611 * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
26612 (gst_matroska_demux_init), (gst_matroska_demux_reset):
26613 * gst/matroska/matroska-demux.h:
26614 Remove placeholders for some prehistoric tagging system. Didn't add
26615 support for any tag system really anyway.
26616 * gst/qtdemux/qtdemux.c:
26617 Add support for audio/x-m4a (MPEG-4) through spider.
26618 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
26619 (gst_wavparse_loop):
26620 ADPCM support (#135862). Increase max. buffer size because we
26621 cannot split buffers for ADPCM (screws references) and I've seen
26622 files with 2048 byte chunks. 4096 seems safe for now.
26624 2004-04-15 Thomas Vander Stichele <thomas at apestaart dot org>
26626 * configure.ac: bump nano to 1
26628 === release 0.8.1 ===
26630 2004-04-15 Thomas Vander Stichele <thomas at apestaart dot org>
26632 * configure.ac: releasing 0.8.1, "Comforting Sounds"
26634 2004-04-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
26636 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26637 Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
26640 2004-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
26642 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
26643 lower rank of dvddemux so that it's not used for mpeg playback.
26645 2004-04-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
26648 save libs correctly when checking mad
26650 2004-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
26652 * ext/mad/gstid3tag.c: (plugin_init):
26653 lower rank of id3tag as proposed by Benjamin. Fixes #139926.
26655 2004-04-13 David Schleef <ds@schleef.org>
26657 * common/m4/gst-feature.m4: Call -config scripts with
26658 --plugin-libs if it is supported.
26659 * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
26660 JPEG images are image/jpeg.
26661 * gst/debug/Makefile.am:
26662 * gst/debug/negotiation.c: (gst_negotiation_class_init),
26663 (gst_negotiation_getcaps), (gst_negotiation_pad_link),
26664 (gst_negotiation_update_caps), (gst_negotiation_get_property),
26665 (gst_negotiation_plugin_init): Add a property that acts like
26667 * testsuite/gst-lint: Move license checking to be a standard
26670 2004-04-13 David Schleef <ds@schleef.org>
26672 * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
26673 patch from Sebastien Cote (bug #139958)
26675 2004-04-13 Thomas Vander Stichele <thomas at apestaart dot org>
26677 * examples/gstplay/Makefile.am:
26678 * examples/gstplay/player.c: (main):
26679 make the commandline player example use gconf settings
26681 2004-04-13 Thomas Vander Stichele <thomas at apestaart dot org>
26683 * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
26684 (gst_cacasink_sinkconnect), (gst_cacasink_init),
26685 (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
26686 init/end library during state transition, not object
26687 creation/disposal. get rid of custom dispose handler.
26690 2004-04-12 Christian Schaller <Uraeus@gnome.org>
26692 * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
26695 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26697 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
26698 Handle JUNK chunks inside data section. Prevents warnings.
26700 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26702 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
26703 (gst_riff_create_video_template_caps):
26705 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
26706 (gst_avi_demux_stream_data):
26707 Add support for "rec-list" chunks.
26709 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26711 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
26712 Fix another codecname mismatch.
26714 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26716 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26717 Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
26718 so that MJPEG plays back.
26720 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26722 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
26723 (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
26724 * gst/mpeg1videoparse/gstmp1videoparse.h:
26725 Fix for some slight mis-cuts in buffer parsing, and for some
26726 potential overflows or faults-causers. Adds disconts. Also fixes
26727 #139105 while we're at it.
26729 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26732 * sys/v4l2/gstv4l2element.h:
26733 Workaround for missing struct v4l2_buffer declaration in Suse 9
26734 and Mandrake 10 linux/videodev2.h header file (#135919).
26736 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26738 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
26739 Bail out if no filename was given.
26741 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26743 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
26744 (gst_v4l2_fourcc_from_structure):
26745 Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
26748 2004-04-09 Benjamin Otte <otte@gnome.org>
26750 * ext/gnomevfs/gstgnomevfssink.c:
26751 (_gst_boolean_allow_overwrite_accumulator),
26752 (gst_gnomevfssink_class_init):
26753 fix erase signal - if any handler returns false the file will not be
26754 overwritten. If no handler is connected, the file will not be
26755 overwritten either.
26756 renamed signal to "allow-overwrite"
26757 * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
26758 free string when adding it to ID3 failed
26759 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
26760 unref event when done
26761 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26763 * gst/typefind/gsttypefindfunctions.c:
26764 (mpeg_video_stream_type_find):
26767 2004-04-08 David Schleef <ds@schleef.org>
26769 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26770 (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
26772 2004-04-08 David Schleef <ds@schleef.org>
26774 * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
26775 we don't support (bug #139532)
26777 2004-04-07 Thomas Vander Stichele <thomas at apestaart dot org>
26779 * ext/mad/gstmad.c: (gst_mad_handle_event),
26780 (gst_mad_check_caps_reset), (gst_mad_chain),
26781 (gst_mad_change_state):
26782 only set explicit caps if they haven't been set before for
26783 this stream. MPEG-audio sample rate/channels aren't allowed
26784 to change in-stream.
26787 2004-04-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
26789 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
26790 (_gst_boolean_did_something_accumulator),
26791 (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
26792 (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
26793 (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
26794 (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
26795 (gst_gnomevfssink_change_state):
26796 Fix erase signal. Don't erase by default. Remove handoff signal.
26797 Remove erase property. Don't segfault. General cleanup.
26799 2004-04-07 Benjamin Otte <otte@gnome.org>
26801 * gst-libs/gst/gconf/test-gconf.c: (main):
26802 add missing gst_init
26804 2004-04-07 Benjamin Otte <otte@gnome.org>
26806 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
26807 free the mutexes, too
26809 2004-04-07 Benjamin Otte <otte@gnome.org>
26811 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
26812 actually free the URI string
26813 * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
26814 compute offset correctly when passing discont events
26815 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
26816 don't leak discont events
26817 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
26818 add some missing breaks so caps aren't copied randomly
26819 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
26820 if we realloc memory, we better use it
26822 2004-04-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
26824 * ext/mad/gstmad.c: (normal_seek):
26825 fix GST_FORMAT_TIME usage
26827 2004-04-05 David Schleef <ds@schleef.org>
26829 * ext/kio/kiosrc.cpp: Undefine KDE_DEPRECATED so we can use
26830 a deprecated function (hack!)
26832 2004-04-05 Benjamin Otte <otte@gnome.org>
26834 * ext/esd/esdmon.c: (gst_esdmon_get):
26835 fix nonterminated vararg and memleak
26837 2004-04-05 Benjamin Otte <otte@gnome.org>
26839 * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
26840 (gst_ladspa_init), (gst_ladspa_force_src_caps),
26841 (gst_ladspa_set_property), (gst_ladspa_get_property),
26842 (gst_ladspa_instantiate), (gst_ladspa_activate),
26843 (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
26846 2004-04-05 Stefan Kost <kost@imn.htwk-leipzig.de>
26848 reviewed by Benjamin Otte <otte@gnome.org>
26850 * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
26851 check for broken LADSPA parameters (fixes #138635)
26853 2004-04-05 Benjamin Otte <otte@gnome.org>
26855 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
26856 advertise buffer-frames correctly on sinkpads
26858 2004-04-05 Thomas Vander Stichele <thomas at apestaart dot org>
26860 * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
26861 (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
26862 (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
26863 (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
26864 (gst_mad_check_caps_reset), (gst_mad_chain):
26865 add more debugging, only reset caps when we're not in error state
26867 2004-04-05 Thomas Vander Stichele <thomas at apestaart dot org>
26869 * ext/mad/gstmad.c: add debugging category, comment + cleanups
26871 2004-04-05 Julio M. Merino Vidal <jmmv@menta.net>
26873 reviewed by Benjamin Otte <otte@gnome.org>
26876 fix == in test(1) operator
26878 2004-04-05 Julio M. Merino Vidal <jmmv@menta.net>
26880 reviewed by Benjamin Otte <otte@gnome.org>
26883 fix --export-symblos-regex to a working regex.
26885 2004-04-04 Benjamin Otte <otte@gnome.org>
26887 * sys/oss/.cvsignore:
26890 2004-04-03 Tim-Phillip Müller <t.i.m@zen.co.uk>
26892 reviewed by Benjamin Otte <otte@gnome.org>
26894 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
26895 add missing 'new_media' argument (fixes #138168)
26896 * gst/matroska/matroska-demux.c:
26897 (gst_matroska_demux_handle_seek_event):
26898 add vararg terminator (fixes #138169)
26900 2004-04-02 David Schleef <ds@schleef.org>
26902 * ext/gdk_pixbuf/Makefile.am: Make sure gstgdkanimation.h is
26903 disted (bug #138914)
26905 2004-04-01 Benjamin Otte <otte@gnome.org>
26907 * ext/alsa/gstalsa.c: (gst_alsa_change_state),
26908 (gst_alsa_close_audio):
26909 handle case better where a soundcard can't pause
26910 * ext/ogg/gstoggdemux.c:
26911 don't crash when we get events but don't have pads yet
26913 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
26915 * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
26916 throw an error if we couldn't probe any caps.
26918 2004-04-01 Jan Schmidt <thaytan@mad.scientist.com>
26920 * ext/dvdnav/gst-dvd:
26921 Add a really simple sample DVD player
26923 2004-04-01 Jan Schmidt <thaytan@mad.scientist.com>
26925 * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
26926 (gst_a52dec_push), (gst_a52dec_handle_event),
26927 (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
26928 (gst_a52dec_change_state):
26929 * ext/a52dec/gsta52dec.h:
26930 Use a debug category, Output timestamps correctly
26931 Emit tag info, Handle events, tell liba52dec about cpu
26932 capabilities so it can use MMX etc.
26933 * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
26934 Fix a crasher accessing invalid memory
26935 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
26936 (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
26937 (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
26938 (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
26940 Some support for byte-format seeking.
26941 Small fixes for still frames and menu button overlays
26942 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
26943 (gst_mpeg2dec_alloc_buffer):
26944 Use a debug category. Adjust the report level of several items to
26945 LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
26946 so it doesn't lose the GstBuffer pointer
26947 * gst/debug/Makefile.am:
26948 * gst/debug/gstdebug.c: (plugin_init):
26949 * gst/debug/gstnavseek.c: (gst_navseek_get_type),
26950 (gst_navseek_base_init), (gst_navseek_class_init),
26951 (gst_navseek_init), (gst_navseek_seek),
26952 (gst_navseek_handle_src_event), (gst_navseek_set_property),
26953 (gst_navseek_get_property), (gst_navseek_chain),
26954 (gst_navseek_plugin_init):
26955 * gst/debug/gstnavseek.h:
26956 Add the navseek debug element for seeking back and forth in a
26957 video stream using arrow keys.
26958 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
26959 (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
26960 (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
26961 (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
26962 (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
26963 (gst_mpeg2subt_parse_header), (gst_get_nibble),
26964 (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
26965 (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
26966 (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
26967 (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
26968 * gst/mpeg2sub/gstmpeg2subt.h:
26969 Pretty much a complete rewrite. Now a loopbased element. May still
26970 require work to properly synchronise subtitle buffers.
26971 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
26972 (gst_dvd_demux_send_subbuffer):
26973 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
26974 Don't attempt to create subbuffers of size 0
26975 Reduce a couple of error outputs to warnings.
26976 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
26977 (gst_y4mencode_chain):
26978 Output the y4m frame header correctly.
26980 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
26982 * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
26983 throw errors instead of allowing SIGFPE
26985 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
26987 * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
26988 (gst_gconf_render_bin_from_key):
26989 leak plugging and style fixing
26991 2004-03-31 David Schleef <ds@schleef.org>
26993 * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
26994 (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
26996 * gst/debug/Makefile.am:
26997 * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
26998 * gst/debug/gstdebug.c: (plugin_init): Merge elements into one
27000 * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
27001 (gst_negotiation_base_init), (gst_negotiation_class_init),
27002 (gst_negotiation_init), (gst_negotiation_getcaps),
27003 (gst_negotiation_pad_link), (gst_negotiation_chain),
27004 (gst_negotiation_set_property), (gst_negotiation_get_property),
27005 (gst_negotiation_plugin_init): New element to talk about random
27006 negotiation things happening in a pipeline.
27008 2004-03-31 Thomas Vander Stichele <thomas at apestaart dot org>
27010 * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
27011 fix integer addition with help of Stefan Kost
27013 2004-03-31 Thomas Vander Stichele <thomas at apestaart dot org>
27015 * po/nl.po: updated Dutch translation (Elros Cyriatan)
27017 2004-03-30 David Schleef <ds@schleef.org>
27019 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
27020 (gst_mpeg2dec_negotiate_format): Handle Y42B-format MPEG
27021 video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
27023 * ext/mpeg2dec/gstmpeg2dec.h:
27025 2004-03-30 David Schleef <ds@schleef.org>
27027 * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
27029 2004-03-30 David Schleef <ds@schleef.org>
27031 * tools/gst-launch-ext-m.m: Applied patch from gnome@flyn.org (W.
27032 Michael Petullo) to handle .mov
27034 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
27036 * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
27037 (gst_osselement_rate_check_rate):
27038 probe caps correctly for sound cards that only support one format
27040 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
27042 * ext/kio/kiosrc.cpp: (process_events):
27043 update handling event processing if inside KDE - untested
27045 2004-03-29 David Schleef <ds@schleef.org>
27047 * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
27048 by 2 to not interfere with other colorspaces.
27049 * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
27050 * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
27051 one to not interfere with ffmpeg_colorspace.
27053 2004-03-29 David Schleef <ds@schleef.org>
27055 * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
27056 aren't in the caps.
27057 * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
27058 * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
27060 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
27062 * gst-libs/gst/riff/riff-media.c:
27063 fail on error, don't try to set stuff on NULL caps
27065 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
27069 * ext/kio/Makefile.am:
27070 * ext/kio/kioreceiver.cpp:
27071 * ext/kio/kioreceiver.h:
27072 * ext/kio/kiosrc.cpp:
27073 * ext/kio/kiosrc.h:
27074 add experimental kiosrc plugin
27075 * ext/alsa/gstalsaplugin.c: (plugin_init):
27076 initialize debugging category only when we're sure registering the
27079 2004-03-29 Thomas Vander Stichele <thomas at apestaart dot org>
27081 * examples/gstplay/player.c: (main):
27082 * gst-libs/gst/play/play.c: (gst_play_class_init),
27083 (gst_play_set_location), (gst_play_set_data_src),
27084 (gst_play_set_video_sink), (gst_play_set_audio_sink),
27085 (gst_play_set_visualization), (gst_play_connect_visualization):
27086 check return values of element_set_state and return FALSE where
27089 2004-03-29 Benjamin Otte <otte@gnome.org>
27091 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
27092 try harder to check if an event is really a discont
27094 2004-03-29 Thomas Vander Stichele <thomas at apestaart dot org>
27096 * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
27099 2004-03-28 Benjamin Otte <otte@gnome.org>
27101 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
27102 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
27103 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
27104 get rid of non-standard "..." ranges in case statements.
27106 2004-03-27 Martin Soto <martinsoto@users.sourceforge.net>
27108 * gst/mpegstream/gstmpegdemux.c:
27109 * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
27110 specific functionality split to the new dvddemux element.
27111 * gst/mpegstream/gstdvddemux.c:
27112 * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
27113 streams, derived from mpegdemux.
27114 * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
27115 up. SCR based timestamp rewriting can be turned off (will probably
27116 completely disappear soon).
27117 * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
27118 hacking. General cleanup. All printf statements replaced by
27119 debugging messages. Almost complete libdvdnav support.
27120 (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
27121 by events. New properties for audio and subpicture languages.
27122 (dvdnavsrc_update_highlight): Now uses events.
27123 (dvdnavsrc_user_op): Cleaned up.
27124 (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
27125 based). Lots of cleanup, and propper support for most libdvdnav
27127 (dvdnavsrc_make_dvd_event): New function.
27128 (dvdnavsrc_make_dvd_nav_packet_event): New function.
27129 (dvdnavsrc_make_clut_change_event): New function.
27131 2004-03-26 Benjamin Otte <otte@gnome.org>
27133 * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
27134 fix bug where typefinding would claim it's theora whenever less then
27135 7 bytes of data were available
27137 2004-03-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
27139 * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
27140 (gst_alawdec_base_init), (gst_alawdec_class_init),
27141 (gst_alawdec_init), (gst_alawdec_chain):
27142 * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
27143 (gst_alawenc_base_init), (gst_alawenc_class_init),
27144 (gst_alawenc_init), (gst_alawenc_chain):
27145 * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
27146 (gst_mulawdec_base_init), (gst_mulawdec_class_init),
27147 (gst_mulawdec_init), (gst_mulawdec_chain):
27148 * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
27149 (gst_mulawenc_base_init), (gst_mulawenc_class_init),
27150 (gst_mulawenc_init), (gst_mulawenc_chain):
27151 Fix capsnego in all four, remove the unused property functions and
27152 simplify the chain functions slightly. I guess we could use macros
27153 or something similar for those, since the code is so similar, but
27154 I'm currently too lazy...
27156 2004-03-24 David Schleef <ds@schleef.org>
27158 * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
27159 (gst_osselement_close_audio), (gst_osselement_probe_caps),
27160 (gst_osselement_get_format_structure),
27161 (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
27162 (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
27163 (gst_osselement_rate_int_compare): Add code to handle rate probing
27165 * sys/oss/gstosselement.h: same
27166 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
27167 Use rate probing provided by osselement.
27168 * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
27170 2004-03-24 Ronald Bultje <rbultje@ronald.bitfreak.net>
27172 * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
27173 (gst_xvidenc_get_property):
27176 2004-03-24 David Schleef <ds@schleef.org>
27178 * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
27179 (gst_speexdec_init):
27180 * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
27181 (gst_speexenc_init): Create the pad template correctly (from
27182 the static pad template, not a NULL pointer.)
27184 2004-03-25 Benjamin Otte <otte@gnome.org>
27186 * gst/debug/Makefile.am:
27187 * gst/debug/breakmydata.c:
27188 add element that quasi-randomly changes bytes in the stream.
27189 Intended use is robustness checking of demuxers and decoders in
27192 2004-03-24 Benjamin Otte <otte@gnome.org>
27194 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
27195 (gst_alsa_probe_hw_params):
27196 * ext/alsa/gstalsa.h:
27197 debugging output fixes
27199 2004-03-24 Benjamin Otte <otte@gnome.org>
27201 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
27202 don't g_return_if_fail if element is PLAYING, fail silently as every
27204 * gst/effectv/gstquark.c: (gst_quarktv_chain):
27205 only fix needed for cast lvalue issues in gst-plugins
27206 * gst/volenv/gstvolenv.c: (gst_volenv_init):
27209 2004-03-24 Benjamin Otte <otte@gnome.org>
27211 * gst/level/gstlevel.c: (gst_level_init):
27212 add proxying getcaps function, so level doesn't advertise impossible
27215 2004-03-24 David Schleef <ds@schleef.org>
27217 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
27218 (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
27219 (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
27220 (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
27221 (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
27222 (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
27223 (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
27224 (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
27225 (qtdemux_parse_tree), (qtdemux_parse_trak): Fix debugging
27226 messages. Divide the chunk size by the compression ratio
27227 (needed for MACE audio)
27229 2004-03-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
27231 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
27232 Fix buffer overflow read error.
27234 2004-03-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
27236 * ext/alsa/gstalsa.h:
27237 Remove unused entry.
27238 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
27240 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
27241 (gst_videodrop_link), (gst_videodrop_chain):
27242 Fix, sort of. Was horribly broken with new capsnego. Bah...
27244 2004-03-23 Jeremy Simon <jesimon@libertysurf.fr>
27246 * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
27248 Add a monkeysaudio typefind function
27250 2004-03-23 Johan Dahlin <johan@gnome.org>
27252 * gst-libs/gst/play/play.c (gst_play_audio_fixate)
27253 (gst_play_video_fixate): Check so the structure has the field
27254 before trying to fixate them, this makes it possible to have
27255 fakesinks for video and audio output without printing errors on
27256 the output console.
27258 2004-03-22 David Schleef <ds@schleef.org>
27260 * sys/oss/Makefile.am:
27261 * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
27262 (check_rate), (add_rate): Rate probing test app.
27264 2004-03-21 Benjamin Otte <otte@gnome.org>
27266 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
27267 (_fixate_caps_to_int), (gst_audio_convert_fixate):
27268 add a fixation function that pretty much does the right thing (fixes
27271 2004-03-20 David I. Lehn <dlehn@users.sourceforge.net>
27273 * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
27275 2004-03-20 Tim-Phillip Müller <t.i.m@zen.co.uk>
27277 reviewed by: Benjamin Otte <otte@gnome.org>
27279 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
27280 terminate gst_event_new_discontinuous correctly (fixes parts of
27283 2004-03-19 David Schleef <ds@schleef.org>
27285 * gst-libs/gst/Makefile.am: Enable xoverlay unconditionally,
27286 since it doesn't depend on X, and it's part of our ABI.
27288 2004-03-19 Iain <iain@prettypeople.org>
27290 * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
27291 is_int in the structure, not the local variable.
27293 2004-03-19 David Schleef <ds@schleef.org>
27295 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
27296 (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
27297 (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
27298 Improvements in caps negotiation.
27300 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
27304 adding Afrikaans (Petri Jooste)
27306 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
27308 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27309 (gst_ffmpegcolorspace_chain):
27310 throw error instead of g_critical (#137588)
27312 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
27316 dist common and m4 correctly
27319 2004-03-17 David Schleef <ds@schleef.org>
27321 * pkgconfig/gstreamer-media-info.pc.in: Add Version.
27324 2004-03-17 Thomas Vander Stichele <thomas at apestaart dot org>
27328 adding Swedish translation (Christian Rose)
27330 2004-03-17 Thomas Vander Stichele <thomas at apestaart dot org>
27332 * Makefile.am: use release.mak
27334 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
27336 * common/ChangeLog:
27337 * common/gst-autogen.sh:
27338 add some explanation about the version detection
27342 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
27344 * configure.ac: bump nano to 1
27346 === release 0.8.0 ===
27348 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
27350 * configure.ac: release 0.8.0, "Pharmaceutical Itch"
27352 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
27355 update libtool version
27356 * gst-libs/gst/media-info/Makefile.am:
27357 actually use libtool version
27359 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27361 * configure.ac: fix speex detection to work with 1.0 but not 1.1
27363 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27366 * gst-plugins.spec.in:
27367 * pkgconfig/Makefile.am:
27368 * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
27369 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
27370 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
27371 * pkgconfig/gstreamer-libs.pc.in:
27372 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
27373 * pkgconfig/gstreamer-play-uninstalled.pc.in:
27374 * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
27375 * pkgconfig/gstreamer-plugins.pc.in:
27376 remove @VERSION@ from some of the pc files since core and plugins
27378 created gstreamer-plugins.pc as it's a better name, but keeping
27379 -libs around for now to get fixes upstream done first.
27381 2004-03-15 Julien MOUTTE <julien@moutte.net>
27383 * gst-libs/gst/play/play.c: (gst_play_get_framerate),
27384 (gst_play_get_sink_element): First draft of gst_play_get_framerate.
27385 * gst-libs/gst/play/play.h:
27387 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27389 * *.c, *.cc: don't mix tabs and spaces
27391 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27393 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
27394 use the new ffmpegcolorspace
27395 * gst-plugins.spec.in:
27396 package new colorspace and media-info
27398 * pkgconfig/Makefile.am:
27399 fix some more disting issues
27400 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
27401 * pkgconfig/gstreamer-media-info.pc.in:
27402 generate media-info pc files
27404 2004-03-15 Johan Dahlin <johan@gnome.org>
27406 * *.h: Revert indenting
27408 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27411 adding ffmpegcolorspace element
27412 * gst/ffmpegcolorspace/Makefile.am:
27413 * gst/ffmpegcolorspace/avcodec.h:
27414 * gst/ffmpegcolorspace/common.h:
27415 * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
27416 * gst/ffmpegcolorspace/dsputil.h:
27417 * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
27418 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27419 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
27420 (gst_ffmpeg_caps_to_pix_fmt):
27421 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
27422 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27423 (gst_ffmpegcolorspace_caps_remove_format_info),
27424 (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
27425 (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
27426 (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
27427 (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
27428 (gst_ffmpegcolorspace_set_property),
27429 (gst_ffmpegcolorspace_get_property),
27430 (gst_ffmpegcolorspace_register):
27431 * gst/ffmpegcolorspace/imgconvert.c:
27432 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
27433 (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
27434 (avpicture_get_size), (avcodec_get_pix_fmt_loss),
27435 (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
27436 (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
27437 (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
27438 (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
27439 (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
27440 (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
27441 (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
27442 (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
27443 (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
27444 (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
27445 (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
27446 (img_get_alpha_info), (deinterlace_line),
27447 (deinterlace_line_inplace), (deinterlace_bottom_field),
27448 (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
27449 * gst/ffmpegcolorspace/imgconvert_template.h:
27450 * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
27451 * gst/ffmpegcolorspace/mmx.h:
27452 * gst/ffmpegcolorspace/utils.c: (avcodec_init):
27453 adding ffmpegcolorspace element supplied by Ronald after cleaning
27454 up and pulling in the right bits of upstream source.
27455 I'm sure a better C/compiler wizard could do some cleaning up (for
27456 example use GLIB's malloc stuff), but as a first pass this
27459 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27461 * ext/alsa/gstalsa.h:
27462 I assume Ronald forgot to commit the change to have cardname
27463 as a struct member. Expect some public spanking at the next
27466 2004-03-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
27468 * ext/alsa/gstalsa.c: (gst_alsa_get_property),
27469 (gst_alsa_open_audio), (gst_alsa_close_audio):
27470 * ext/alsa/gstalsa.c:
27471 Don't open the device if we're a mixer (= padless).
27472 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
27473 (gst_alsa_mixer_init), (gst_alsa_mixer_open),
27474 (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
27475 Open mixer during state change rather than during object
27476 initialization. Also, get a device name. Currently in a somewhat
27477 hackish fashion, but I didn't really find something better.
27479 2004-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
27481 * *.c, *.h: run gst-indent
27483 2004-03-14 Benjamin Otte <otte@gnome.org>
27485 * gst/modplug/gstmodplug.cc:
27486 * gst/modplug/gstmodplug.h:
27487 set correct timestamps on outgoing buffers
27489 2004-03-14 Benjamin Otte <otte@gnome.org>
27491 * gst/modplug/gstmodplug.cc:
27492 handle events - don't do crap when a discont arrives that's not
27494 This allows correct loading and playback of mods in Rhythmbox
27496 2004-03-14 Benjamin Otte <otte@gnome.org>
27499 * gst-libs/gst/gconf/Makefile.am:
27500 * pkgconfig/Makefile.am:
27501 move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
27502 they get rebuilt properly
27504 when checking for vorbis, try pkgconfig first.
27505 * gst/modplug/gstmodplug.cc:
27506 add fixate function
27508 2004-03-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
27510 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
27511 Fix for obvious mistake, where we first shift the offset and then
27512 read a samplesize element assuming the old offset. Note that this
27513 part still has something weird, i.e. my movies containing those
27514 don't actually play well, but at least there's something that looks
27517 2004-03-14 Jan Schmidt <thaytan@mad.scientist.com>
27518 * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
27520 Add a typefind function for speex format
27522 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
27524 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
27525 (gst_asf_demux_setup_pad):
27526 Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
27527 instead of 0. Reason is simple: some elements have a fps range
27528 of 1-max instead of 0-max. So now ASF video actually works.
27530 2004-03-13 Thomas Vander Stichele <thomas at apestaart dot org>
27534 adding serbian as a language
27536 2004-03-13 Benjamin Otte <otte@gnome.org>
27538 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
27539 return taglist correctly from _get function, don't gst_pad_push it.
27542 2004-03-13 Jan Schmidt <thaytan@mad.scientist.com>
27543 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
27545 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
27547 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
27548 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
27549 (gst_alsa_mixer_track_new):
27550 * ext/alsa/gstalsamixertrack.h:
27551 Fix ancient leftovers... MixerTrack is a GObject.
27553 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
27555 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
27556 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
27557 Don't block during probing...
27559 2004-03-12 Ronald Bultje <rbultje@ronald.bitfreak.net>
27561 * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
27562 (gst_alsa_get_property), (gst_alsa_probe_get_properties),
27563 (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
27564 (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
27565 (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
27566 (gst_alsa_open_audio), (gst_alsa_close_audio):
27567 * ext/alsa/gstalsa.h:
27568 Add propertyprobe interface implementation, add some device-name
27569 property, all this so that it looks good in gnome-volume-control.
27571 2004-03-12 David Schleef <ds@schleef.org>
27573 * configure.ac: the Hermes library controls hermescolorspace, not
27575 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
27576 (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
27578 * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
27579 * ext/sdl/sdlvideosink.h: ditto.
27580 * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
27582 2004-03-12 Benjamin Otte <otte@gnome.org>
27584 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
27585 (gst_x_overlay_got_xwindow_id):
27586 * gst-libs/gst/xoverlay/xoverlay.h:
27587 replace XID with unsigned long to get rid of the xlibs dependency in
27588 XOverlay (fixes #137004)
27590 2004-03-13 Jan Schmidt <thaytan@mad.scientist.com>
27591 * gst/effectv/gstaging.c: (gst_agingtv_base_init),
27592 (gst_agingtv_setup):
27593 * gst/effectv/gstdice.c: (gst_dicetv_get_type),
27594 (gst_dicetv_base_init), (gst_dicetv_class_init),
27595 (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
27596 * gst/effectv/gstedge.c: (gst_edgetv_get_type),
27597 (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
27598 (gst_edgetv_setup), (gst_edgetv_rgb32):
27599 * gst/effectv/gsteffectv.c:
27600 * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
27601 (gst_quarktv_set_property):
27602 * gst/effectv/gstrev.c: (gst_revtv_get_type),
27603 (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
27604 (gst_revtv_setup), (gst_revtv_rgb32):
27605 * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
27606 (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
27607 (gst_shagadelictv_init), (gst_shagadelictv_setup),
27608 (gst_shagadelictv_rgb32):
27609 * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
27610 (gst_vertigotv_base_init), (gst_vertigotv_class_init),
27611 (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
27612 * gst/effectv/gstwarp.c:
27613 Port everything that can be ported to videofilter and fix up the caps.
27614 Can someone with a big-endian machine please check these?
27616 2004-03-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
27618 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
27619 (gst_osssink_chain), (gst_osssink_change_state):
27620 Latest fixes for A/V sync, audio playback and such. This is about
27621 all... MPEG playback issues are mostly related to the async build-
27622 up of MPEG files, I cannot fix that. Use basicgthread to solve it.
27624 2004-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
27626 patch from: Stephane Loeuillet
27629 use pkg-config for some libraries, falling back to the old .m4 way
27634 2004-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
27637 * tools/Makefile.am:
27638 * tools/Makefile.in:
27639 * tools/gst-launch-ext-m.m:
27640 * tools/gst-launch-ext.1.in:
27641 * tools/gst-visualise-m.m:
27642 * tools/gst-visualise.1:
27643 * tools/gst-visualise.1.in:
27644 reorganizing generation of script tools
27646 2004-03-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
27648 * ext/divx/gstdivxdec.c:
27649 Downgrade priority. We prefer ffdec_mpeg4.
27650 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
27651 (gst_faad_chain), (gst_faad_change_state):
27652 Fix capsnego. Doesn't work for some sounds because we don't have
27653 a 5:1 to stereo element.
27654 * ext/xvid/gstxvid.c: (plugin_init):
27656 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
27657 (gst_osssink_change_state):
27658 Add discont handling.
27660 2004-03-09 Colin Walters <walters@verbum.org>
27662 * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
27665 2004-03-09 Benjamin Otte <otte@gnome.org>
27667 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
27668 the signals take 2 arguments
27670 2004-03-09 David Schleef <ds@schleef.org>
27672 * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
27673 (gst_alsa_fixate): Add fixate function. (bug #136686)
27674 * ext/alsa/gstalsa.h:
27675 * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
27677 2004-03-09 Benjamin Otte <otte@gnome.org>
27679 * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
27680 (gst_mikmod_change_state):
27681 * ext/mikmod/gstmikmod.h:
27682 make mikmod's loop function not loop infinitely and call
27683 gst_element_yield anymore
27684 * gst/modplug/gstmodplug.cc:
27685 fix pad negotiation (fixes #136590)
27687 2004-03-09 David Schleef <ds@schleef.org>
27689 * ext/lcs/Makefile.am: Fix so that the lcs colorspace plugin
27690 doesn't conflict with the internal colorspace plugin.
27691 * gst-libs/gst/audio/make_filter: Use `` instead of $() to
27692 satisfy the crappy-ass shell shipped by a certain vendor.
27693 * gst/videofilter/make_filter: same (bug #135299)
27695 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27697 * configure.ac: bump nano to 1
27699 === release 0.7.6 ===
27701 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27703 * configure.in: releasing 0.7.6, "There"
27705 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27707 * pkgconfig/gstreamer-play-uninstalled.pc.in:
27708 * pkgconfig/gstreamer-play.pc.in:
27709 synchronize the two
27711 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27713 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
27714 (cdparanoia_open), (cdparanoia_event):
27715 fix/add error handling
27717 add cdparanoia source
27718 * tools/Makefile.am:
27719 make scripts executable
27721 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27724 * ext/vorbis/Makefile.am:
27726 remove id3types, vorbisfile and xvideosink from the build (#133783)
27728 2004-03-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
27730 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
27731 Fix metadata read crash (#136537).
27733 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
27735 * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
27736 * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
27737 adding mime types, fixing the one-stop function
27739 2004-03-08 Christian Schaller <Uraeus@gnome.org>
27741 * ext/nas/nassink.c and /ext/nas/nassink.h:
27742 More NAS love from Arwed von Merkatz
27743 So lets all sing 'Can you feel the NAS tonight'
27745 2004-03-08 Christian Schaller <Uraeus@gnome.org>
27747 * tools/gst-launch-ext.in:
27748 Replace vorbisfile with oggdemux/vorbisdec/audioconvert
27750 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
27752 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
27753 (gst_mpeg2dec_init):
27754 remove the user_data pad for now, because it is being used in
27755 fixating causing MPEG playback to fixate on 1000 Hz for playback.
27756 If someone knows how to fix this properly, please do.
27758 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
27760 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27761 (gst_osssink_get_time):
27762 add a warning, IMO this won't get triggered anymore, remove later
27764 2004-03-07 David Schleef <ds@schleef.org>
27766 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps): Added Cinepak
27767 format (bug #136470)
27769 2004-03-07 Thomas Vander Stichele <thomas at apestaart dot org>
27771 * gst-libs/Makefile.am:
27772 * gst-libs/gst/media-info/Makefile.am:
27773 * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
27774 (error_callback), (gst_media_info_error_create),
27775 (gst_media_info_error_element), (gmip_init), (gmip_reset),
27776 (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
27777 * gst-libs/gst/media-info/media-info-priv.h:
27778 * gst-libs/gst/media-info/media-info-test.c: (main):
27779 * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
27780 (gst_media_info_class_init), (gst_media_info_instance_init),
27781 (gst_media_info_set_source), (gst_media_info_read_with_idler),
27782 (gst_media_info_read_idler), (gst_media_info_read):
27783 * gst-libs/gst/media-info/media-info.h:
27784 fixed, should work now
27786 2004-03-07 Christian Schaller <Uraeus@gnome.org>
27788 * ext/nas/nassink.c:
27789 A bunch of NAS fixes from Arwed von Merkatz
27791 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
27793 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
27794 (qtdemux_parse_trak):
27795 Fix crash (j might be greater than n_samples, in which case we're
27796 writing outside the allocated space for the array) and memleak.
27798 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
27800 * sys/oss/gstosssink.c: (gst_osssink_chain):
27801 And another caller that couldn't handle delay < 0 (unsigned
27802 integer overflow). Video now continues playing on an audio
27803 buffer underrun, and the clock continues working. Audio still
27806 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
27808 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27809 (gst_osssink_get_time):
27810 get_delay() may return values lower than 0. In those cases, we
27811 should not actually cast to *unsigned* int64, that will break
27812 stuff horribly. In my case, it screwed up A/V sync in movies
27813 in totem rather badly.
27815 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27817 * ext/faac/gstfaac.c: (gst_faac_chain):
27818 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
27819 * ext/libpng/gstpngenc.c: (user_write_data):
27820 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
27821 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
27822 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
27823 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
27824 Fix several misuse of gst_buffer_merge (it doesn't take ownership
27825 of any buffer), should fix some leaks. I hope I didn't unref buffers
27826 that shouldn't be...
27828 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27830 * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
27831 (deep_notify_callback), (tag_flag_score), (found_tag_callback),
27832 (error_callback), (gmi_reset), (gmi_seek_to_track),
27833 (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
27834 (gmip_find_type_post), (gmip_find_stream_post),
27835 (gmip_find_track_streaminfo_post):
27836 * gst-libs/gst/media-info/media-info-priv.h:
27837 * gst-libs/gst/media-info/media-info-test.c: (print_tag),
27838 (info_print), (main):
27839 * gst-libs/gst/media-info/media-info.c:
27840 (gst_media_info_error_create), (gst_media_info_error_element),
27841 (gst_media_info_instance_init), (gst_media_info_get_property),
27842 (gst_media_info_new), (gst_media_info_set_source),
27843 (gst_media_info_read_idler), (gst_media_info_read):
27844 * gst-libs/gst/media-info/media-info.h:
27845 first pass at making this work again. This seems to work on
27846 tagged ogg/vorbis and mp3 files.
27848 2004-03-06 Benjamin Otte <otte@gnome.org>
27850 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
27851 fix huge leak: gst_buffer_merge doesn't unref the first argument
27854 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27856 * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
27857 report layer/mode/emphasis
27859 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27861 * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
27863 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27865 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
27868 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27870 * ext/vorbis/vorbis.c: (plugin_init):
27871 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
27872 (gst_vorbis_dec_init), (vorbis_dec_event):
27874 make vorbisdec handle _BYTE and _TIME queries
27876 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27878 * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
27879 from the xing header
27881 2004-03-06 Benjamin Otte <otte@gnome.org>
27883 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
27884 (gst_audio_convert_link), (gst_audio_convert_change_state),
27885 (gst_audio_convert_buffer_from_default_format):
27886 do conversions from/to float correctly, fix some caps nego errors,
27887 export correct supported caps in template and getcaps, use correct
27888 caps in try_set_caps functions
27890 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27892 For some reason, I only committed a ChangeLog entry yesterday and
27893 not the corresponding code...
27894 * ext/mad/gstmad.c: Fix detection of Xing headers
27895 * gst/tags/gstid3tag.c: Changes to support TLEN tags
27897 2004-03-06 Benjamin Otte <otte@gnome.org>
27899 * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
27900 (gst_ogg_demux_src_query):
27901 make sure to handle the case where there's no current chain
27904 2004-03-05 David Schleef <ds@schleef.org>
27906 * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
27907 Add fixate function. (bug #131128)
27908 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
27909 (gst_sdlvideosink_fixate): Add fixate function.
27910 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
27911 Fix attempt to print a non-pointer using GST_PTR_FORMAT.
27912 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
27913 Fix missing break that was causing ulaw to be interpreted as
27916 2004-03-05 David Schleef <ds@schleef.org>
27918 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
27919 Fix code that ignores return value of gst_buffer_merge().
27921 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
27922 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
27923 * testsuite/gst-lint: Check for above.
27925 2004-03-05 David Schleef <ds@schleef.org>
27927 * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Check for unfixed
27928 caps and throw an element error. (bug #136334)
27930 2004-03-05 David Schleef <ds@schleef.org>
27932 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
27933 (gst_faad_chain): Fix negotiation.
27934 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
27935 key and button events.
27936 * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
27938 * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
27940 * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
27941 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
27942 (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
27943 function to encourage better negotiation, particularly between
27944 audioconvert and osssink.
27945 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
27946 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak): Make some debugging
27948 * gst/typefind/gsttypefindfunctions.c: Fix mistake in flash
27950 * gst/vbidec/vbiscreen.c: Add glib header
27951 * pkgconfig/gstreamer-play.pc.in: Depends on gst-interfaces.
27953 2004-03-06 Christophe Fergeau <teuf@users.sourceforge.net>
27955 * ext/mad/gstmad.c: Fix detection of Xing headers
27956 * gst/tags/gstid3tag.c: Changes to support TLEN tags
27958 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27960 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
27961 (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
27964 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27966 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
27967 * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
27968 (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
27969 files, and report the parsed length as a GST_TAG_DURATION tag.
27970 * gst/tags/gstid3tag.c: support TLEN (duration) tag
27972 2004-03-05 Benjamin Otte <otte@gnome.org>
27974 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
27975 convert channels correctly. convert correctly to unsigned.
27977 2004-03-05 Julien MOUTTE <julien@moutte.net>
27979 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
27980 we have a window before clearing it.
27982 2004-03-05 Julien MOUTTE <julien@moutte.net>
27984 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
27985 have a window before clearing it.
27987 2004-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
27989 * gconf/gstreamer.schemas.in:
27990 * gst-libs/gst/gconf/Makefile.am:
27991 version installation path the same way as for 0.6
27992 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
27993 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
27994 * pkgconfig/gstreamer-play-uninstalled.pc.in:
27995 remove comment that was fixed
27997 2004-03-05 David Schleef <ds@schleef.org>
27999 * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
28000 (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
28001 (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
28002 (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
28003 Add prototype code for handling seeking and querying.
28005 2004-03-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
28007 * examples/gstplay/player.c: (main):
28008 Initialize variables to NULL. Prevents a segfault because the
28009 (uninitialized) variable is not NULL, resulting in a crash on
28010 trying to reach error->message.
28012 2004-03-05 Benjamin Otte <otte@gnome.org>
28014 * gst/audioconvert/gstaudioconvert.c:
28015 (gst_audio_convert_buffer_to_default_format):
28016 make float=>int conversion work correctly even in cornercases.
28018 2004-03-04 David I. Lehn <dlehn@users.sourceforge.net>
28020 * debian/README.Debian:
28021 * debian/build-deps:
28022 * debian/changelog:
28024 * debian/control.in:
28025 * debian/copyright:
28026 * debian/gstreamer-a52dec.files:
28027 * debian/gstreamer-aa.files:
28028 * debian/gstreamer-alsa.files:
28029 * debian/gstreamer-alsa.manpages:
28030 * debian/gstreamer-arts.files:
28031 * debian/gstreamer-artsd.files:
28032 * debian/gstreamer-audiofile.files:
28033 * debian/gstreamer-avifile.files:
28034 * debian/gstreamer-cdparanoia.files:
28035 * debian/gstreamer-colorspace.files:
28036 * debian/gstreamer-doc.files:
28037 * debian/gstreamer-dv.files:
28038 * debian/gstreamer-dvd.files:
28039 * debian/gstreamer-esd.files:
28040 * debian/gstreamer-festival.files:
28041 * debian/gstreamer-flac.files:
28042 * debian/gstreamer-gconf.conffiles:
28043 * debian/gstreamer-gconf.files:
28044 * debian/gstreamer-gconf.postinst:
28045 * debian/gstreamer-gnomevfs.files:
28046 * debian/gstreamer-gsm.files:
28047 * debian/gstreamer-http.files:
28048 * debian/gstreamer-jack.files:
28049 * debian/gstreamer-jpeg.files:
28050 * debian/gstreamer-mad.files:
28051 * debian/gstreamer-mikmod.files:
28052 * debian/gstreamer-misc.files:
28053 * debian/gstreamer-mpeg2dec.files:
28054 * debian/gstreamer-oss.files:
28055 * debian/gstreamer-plugin-apps.files:
28056 * debian/gstreamer-plugin-apps.manpages:
28057 * debian/gstreamer-plugin-libs-dev.files:
28058 * debian/gstreamer-plugin-libs.files:
28059 * debian/gstreamer-plugin-template.postinst:
28060 * debian/gstreamer-plugin-template.postrm:
28061 * debian/gstreamer-sdl.files:
28062 * debian/gstreamer-sid.files:
28063 * debian/gstreamer-vorbis.files:
28064 * debian/gstreamer-x.files:
28065 * debian/mk.control:
28067 Debian package info not maintained here.
28069 2004-03-04 Thomas Vander Stichele <thomas at apestaart dot org>
28071 * ext/aalib/gstaasink.c: (gst_aasink_class_init):
28072 * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
28073 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
28074 * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
28075 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
28076 * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
28077 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
28078 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
28079 * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
28080 * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
28081 * gst-libs/gst/colorbalance/colorbalance.c:
28082 (gst_color_balance_class_init):
28083 * gst-libs/gst/colorbalance/colorbalancechannel.c:
28084 (gst_color_balance_channel_class_init):
28085 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
28086 * gst-libs/gst/play/play.c: (gst_play_class_init):
28087 * gst-libs/gst/propertyprobe/propertyprobe.c:
28088 (gst_property_probe_iface_init):
28089 * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
28090 * gst-libs/gst/tuner/tunerchannel.c:
28091 (gst_tuner_channel_class_init):
28092 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
28093 * gst/cutter/gstcutter.c: (gst_cutter_class_init):
28094 * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
28095 * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
28096 * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
28097 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
28098 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
28099 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
28100 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
28101 fix signals to use - instead of _
28102 * ext/libcaca/gstcacasink.h:
28103 * ext/sdl/sdlvideosink.h:
28106 2004-03-04 David Schleef <ds@schleef.org>
28108 * testsuite/gst-lint: Add a check for bad signal names.
28110 2004-03-04 Stefan Kost <kost@imn.htwk-leipzig.de>
28112 reviewed by David Schleef
28114 * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
28115 modified the alpha channel and caused a warning. (bug #136192)
28117 2004-04-03 Christian Schaller <Uraeus@gnome.org>
28119 * gst-plugins.spec.in:
28120 Change names of plugins to actually be correct. Try to keep things
28121 alphabetical to avoid getting beat up by Thomas
28123 2004-03-03 Julien MOUTTE <julien@moutte.net>
28125 * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
28126 Using ximagesink as a default if no gconf key found. We should
28127 probably consider using alsasink instead of osssink for the audio
28130 2004-03-02 Thomas Vander Stichele <thomas at apestaart dot org>
28133 fix --with-plugins, don't think it ever worked before
28134 * gst-plugins.spec.in:
28137 2004-03-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
28139 * ext/sdl/sdlvideosink.h:
28140 * sys/ximage/ximagesink.h:
28141 * sys/xvideo/xvideosink.h:
28142 * sys/xvimage/xvimagesink.h:
28143 Fix for move of gstvideosink.h -> videosink.h.
28145 2004-03-02 Thomas Vander Stichele <thomas at apestaart dot org>
28147 * gst-libs/gst/xwindowlistener/Makefile.am:
28148 this is a plugin library, not a library
28150 2004-03-01 David Schleef <ds@schleef.org>
28152 * AUTHORS: Added some names. Add yourself if you're still
28155 2004-03-01 David Schleef <ds@schleef.org>
28159 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
28161 * gst-plugins.spec.in: clean up spec file
28163 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
28165 * gst-libs/gst/video/Makefile.am:
28166 * gst-libs/gst/video/gstvideosink.c:
28167 * gst-libs/gst/video/gstvideosink.h:
28168 rename gstvideosink.h to videosink.h to match other headers
28169 * gst/mixmatrix/Makefile.am:
28170 fix plugin filename
28171 * gst/tags/Makefile.am: fix plugin filename
28173 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
28175 * gst/tags/Makefile.am: fix plugin filename
28177 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
28179 * examples/gstplay/player.c: (got_time_tick), (main):
28181 display time_tick more readably
28182 * gst/mixmatrix/Makefile.am:
28183 fix plugin file name
28185 2004-02-29 Christophe Fergeau <teuf@gnome.org>
28187 * sys/oss/gstosselement.c: (gst_osselement_probe),
28188 (device_combination_append), (gst_osselement_class_probe_devices):
28189 * sys/oss/gstosselement.h:
28190 Reworked enumeration of oss dsps and mixers so that gst-mixer works
28191 on my system using alsa oss emulation, fixes bug #135597
28193 2004-02-29 Ronald Bultje <rbultje@ronald.bitfreak.net>
28195 * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
28196 (gst_videodrop_chain), (gst_videodrop_change_state):
28197 * gst/videodrop/gstvideodrop.h:
28198 Work based on timestamp of input data, not based on the expected
28199 framerate from the input. The consequence is that this element now
28200 not only scales framerates, but also functions as a framerate
28201 corrector or framerate stabilizer/constantizer.
28203 2004-02-27 David Schleef <ds@schleef.org>
28205 patches from jmmv@menta.net (Julio M. Merino Vidal)
28207 * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
28208 GST_ELEMENT_ERROR call (bug #135634)
28209 * gst/interleave/interleave.c: (interleave_buffered_loop),
28210 (interleave_bytestream_loop): Don't use alloca() (bug #135640)
28211 * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
28212 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
28213 (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
28214 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
28215 (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
28216 (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
28217 Fix GST_ELEMENT_ERROR call.
28218 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
28219 GST_ELEMENT_ERROR call.
28221 2004-02-27 Benjamin Otte <otte@gnome.org>
28223 * gst-libs/gst/audio/audio.h:
28224 add macro to make sure header isn't included twice
28225 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
28226 don't use gst_buffer_free
28227 * gst/playondemand/filter.func:
28228 don't use gst_data_free. Free data only once.
28230 2004-02-26 David Schleef <ds@schleef.org>
28232 * gst-libs/gst/colorbalance/Makefile.am:
28233 * gst-libs/gst/mixer/Makefile.am:
28234 * gst-libs/gst/tuner/Makefile.am:
28235 * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
28236 should not be disted, -marshal.h files should not be installed,
28237 and -enum.h files _should_ be installed. Fix to make this the
28240 === release 0.7.5 ===
28242 2004-02-26 Thomas Vander Stichele <thomas at apestaart dot org>
28244 * configure.ac: release 0.7.5, "Under The Sea"
28246 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
28248 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
28249 (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
28250 * gst/videoscale/gstvideoscale.c:
28251 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
28252 assorted debug/warning fixes
28254 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
28256 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
28257 (gst_videoscale_init), (gst_videoscale_chain),
28258 (gst_videoscale_set_property), (plugin_init):
28259 * gst/videoscale/gstvideoscale.h:
28260 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
28261 (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
28262 (gst_videoscale_planar400), (gst_videoscale_packed422),
28263 (gst_videoscale_packed422rev), (gst_videoscale_32bit),
28264 (gst_videoscale_24bit), (gst_videoscale_16bit),
28265 (gst_videoscale_bilinear), (gst_videoscale_bicubic),
28266 (gst_videoscale_scale_plane_slow),
28267 (gst_videoscale_scale_point_sample),
28268 (gst_videoscale_scale_nearest),
28269 (gst_videoscale_scale_nearest_str2),
28270 (gst_videoscale_scale_nearest_str4),
28271 (gst_videoscale_scale_nearest_32bit),
28272 (gst_videoscale_scale_nearest_24bit),
28273 (gst_videoscale_scale_nearest_16bit):
28274 add debugging category and use it properly
28275 fix use of GST_PTR_FORMAT
28277 2004-02-25 Andy Wingo <wingo@pobox.com>
28279 * gst/interleave/interleave.c (interleave_buffered_loop): Always
28280 push only when channel->buffer is NULL. Prevents segfaults doing
28281 the state change after a nonlocal exit, like a scheme exception.
28283 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
28284 Handle the case where the intersected caps is empty.
28286 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
28288 * gst/law/mulaw-decode.c: (mulawdec_link):
28289 * gst/law/mulaw.c: (plugin_init):
28290 fix mulawdec so it actually works again
28292 2004-02-24 Arwed v. Merkatz <v.merkatz@gmx.net>
28294 reviewed by: David Schleef <ds@schleef.org>
28296 * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
28297 (gst_gamma_init), (gst_gamma_set_property),
28298 (gst_gamma_get_property), (gst_gamma_calculate_tables),
28299 (gst_gamma_rgb24), (gst_gamma_rgb32): Adds gamma correction
28300 for RGB, with separate r g and b correction factors. (#131167)
28302 2004-02-24 Thomas Vander Stichele <thomas at apestaart dot org>
28304 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
28305 only signal tags for bitrate if they're > 0 (#134894)
28307 2004-02-24 David Schleef <ds@schleef.org>
28309 * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
28310 (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
28311 (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
28312 (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
28313 (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
28314 (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
28315 (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
28316 (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
28317 Cleanups. Convert g_prints to GST_LOGs. Add qtdemux debug
28318 category. Attempt to fix timestamp calculation.
28320 2004-02-24 Johan Dahlin <johan@gnome.org>
28322 * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
28324 2004-02-23 Thomas Vander Stichele <thomas at apestaart dot org>
28327 * gconf/Makefile.am:
28328 * gconf/gstreamer.schemas:
28329 * gst-libs/gst/gconf/Makefile.am:
28330 * gst-libs/gst/gconf/gconf.c:
28331 version gconf schemas and install locations
28333 2004-02-23 Benjamin Otte <otte@gnome.org>
28335 * ext/xine/xineinput.c: (gst_xine_input_dispose):
28336 (gst_xine_input_subclass_init):
28337 call parent dispose.
28338 change pad template for CD reader correctly
28339 * ext/xine/Makefile.am:
28340 * ext/xine/gstxine.h:
28341 * ext/xine/xine.c: (plugin_init):
28342 * ext/xine/xineaudiosink.c:
28343 wrap audio sinks, too
28344 * gst-libs/gst/resample/private.h:
28345 * gst-libs/gst/resample/resample.c: (gst_resample_init),
28346 (gst_resample_reinit), (gst_resample_scale),
28347 (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
28348 (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
28349 (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
28350 (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
28351 (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
28352 * gst-libs/gst/resample/resample.h:
28353 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
28354 (gst_audioscale_class_init), (gst_audioscale_link),
28355 (gst_audioscale_get_buffer), (gst_audioscale_init),
28356 (gst_audioscale_chain), (gst_audioscale_set_property),
28357 (gst_audioscale_get_property):
28358 * gst/audioscale/gstaudioscale.h:
28359 s/resample_*/gst_resample_*/i to not clobber namespaces
28361 2004-02-23 Julien MOUTTE <julien@moutte.net>
28363 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
28364 (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
28365 (gst_riff_create_video_template_caps),
28366 (gst_riff_create_audio_template_caps),
28367 (gst_riff_create_iavs_template_caps):
28368 * gst-libs/gst/riff/riff-media.h:
28369 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
28370 (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
28371 (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
28372 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
28373 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
28374 (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
28375 (gst_matroska_demux_plugin_init): First batch implementing audio and
28376 video codec tags in demuxers.
28378 2004-02-22 Benjamin Otte <otte@gnome.org>
28380 * ext/xine/Makefile.am:
28381 * ext/xine/gstxine.h:
28382 * ext/xine/xine.c: (plugin_init):
28383 * ext/xine/xineinput.c:
28384 add input plugin wrapper. Playback from files, http, mms and cdda
28386 * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
28387 remove leftover G_GNUC_UNUSED
28388 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
28389 (gst_asf_demux_identify_guid):
28390 improve debugging output
28392 2004-02-22 Benjamin Otte <otte@gnome.org>
28394 reported by: Padraig O'Briain <padraig.obriain@sun.com>
28397 replace test -e with test -x for mkinstalldirs to be more portable.
28400 2004-02-22 Benjamin Otte <otte@gnome.org>
28402 reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
28404 * gst/audioconvert/gstaudioconvert.c: (plugin_init):
28405 set rank to PRIMARY
28406 * gst/volume/gstvolume.c: (plugin_init):
28410 2004-02-22 Julio M. Merino Vidal <jmmv@menta.net>
28412 reviewed by Benjamin Otte <otte@gnome.org>
28414 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
28415 escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
28417 2004-02-22 Benjamin Otte <otte@gnome.org>
28420 export [_]*{gst,Gst,GST}.* symbols from plugins
28422 2004-02-22 Christophe Fergeau <teuf@gnome.org>
28424 reviewed by: Benjamin Otte <otte@gnome.org>
28426 * ext/lame/gstlame.c: (add_one_tag):
28427 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
28428 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
28429 (gst_vorbisenc_metadata_set1):
28430 * gst/tags/gstid3tag.c:
28431 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
28432 apply fixes from bugs #135042 (lame can't write tags) and #133817
28433 (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
28435 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
28437 * configure.ac: Export only gst_plugin_desc from plugins.
28438 Note that this change only makes any effect with Linux using libtool
28439 1.5.2 or higher. Otherwise it is silently ignored, but it would build
28440 fine. And don't try to have several versions of libtool in different
28443 2004-02-20 Andy Wingo <wingo@pobox.com>
28445 * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
28446 interleave respectively.
28448 * gst/interleave/deinterleave.c: New plugin: deinterleave
28449 (replaces on oneton).
28450 * gst/interleave/interleave.c: New plugin: interleave.
28451 * gst/interleave/plugin.h: Support file.
28452 * gst/interleave/plugin.c: Support file.
28454 * configure.ac: Remove intfloat and oneton, add interleave.
28456 * ext/sndfile/gstsf.c: Handle events better.
28458 * gst/audioconvert/gstaudioconvert.c: Change to support int2float
28459 and float2int operation. int2float has scheduling problems as
28460 noted in in2float_chain.
28462 2004-02-20 Benjamin Otte <otte@gnome.org>
28464 * ext/xine/Makefile.am:
28465 * ext/xine/gstxine.h:
28467 * ext/xine/xineaudiodec.c:
28468 * ext/xine/xinecaps.c:
28469 add first version of xine plugin wrapper. Currently only wraps the
28470 QDM2 win32 DLL, and even that only in proof-of-concept quality.
28473 add xine plugin wrapper, disabled by default. Use --enable-xine to
28474 build. Note that it'll segfault on gst-register if you don't remove
28475 the goom and tvtime post plugins from xine.
28476 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
28477 (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
28478 add extradata parsing for QDM2.
28479 change around debugging prints.
28481 2004-02-19 Benjamin Otte <otte@gnome.org>
28483 * ext/lame/gstlame.c: (gst_lame_chain):
28484 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
28485 use gst_tag_list_insert when you want to insert tags
28487 2004-02-18 David Schleef <ds@schleef.org>
28489 * configure.ac: Move massink to gst-rotten
28491 * ext/mas/Makefile.am:
28492 * ext/mas/massink.c:
28493 * ext/mas/massink.h:
28495 2004-02-18 David Schleef <ds@schleef.org>
28497 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
28498 typefinding, since it seems to be worse than nothing.
28499 * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Add ftyp
28500 atom to recognize .mp4 and .m4a files as video/quicktime.
28502 2004-02-18 David Schleef <ds@schleef.org>
28504 * gst/sine/demo-dparams.c: (quit_live),
28505 (dynparm_log_value_changed), (dynparm_value_changed), (main):
28506 Use double dparams, not float.
28507 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28508 (gst_sinesrc_init): Change sync default to FALSE, since multiple
28509 sync'd elements don't really work correctly.
28510 * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
28511 (volume_update_volume), (volume_get_property): Change dparam
28514 2004-02-18 Julien MOUTTE <julien@moutte.net>
28516 * sys/ximage/ximagesink.c:
28517 (gst_ximagesink_xwindow_update_geometry),
28518 (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
28519 (gst_ximagesink_change_state), (gst_ximagesink_expose),
28520 (gst_ximagesink_init): Rework the way software video scaling works. So
28521 now we check on each chain call if the video frames are feeling the
28522 window. If not we try to renegotiate caps. On failure we memorize that
28523 and we won't try again for that PLAYING sessions.
28524 * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
28526 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
28529 2004-02-18 Thomas Vander Stichele <thomas at apestaart dot org>
28531 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
28532 break up _link so we can give a better debug message for errors
28534 2004-02-18 Thomas Vander Stichele <thomas at apestaart dot org>
28536 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
28537 set up debug category
28539 2004-02-18 Julien MOUTTE <julien@moutte.net>
28541 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28542 (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
28543 the way renegotiation work. The event handling function is not taking
28544 care of external windows and renegotiate method check for pad flags
28545 NEGOTIATING. Should fix : #133209
28547 2004-02-17 Julien MOUTTE <julien@moutte.net>
28549 * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
28550 pad is negotiating before trying renegotiation.
28552 2004-02-17 Thomas Vander Stichele <thomas at apestaart dot org>
28554 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
28555 pass on all possible mime types as typefind hints
28557 2004-02-17 Julien MOUTTE <julien@moutte.net>
28559 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
28560 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
28561 possible SHM leak if we crash. All other apps using XShm are doing
28564 2004-02-17 Julien MOUTTE <julien@moutte.net>
28566 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28567 (gst_ximagesink_expose): Renegotiate size on expose.
28568 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
28571 2004-02-16 Benjamin Otte <in7y118@public.uni-hamburg.de>
28573 * testsuite/alsa/sinesrc.c:
28574 cosmetic fix to fix compile issue with gcc 2.95.4
28576 2004-02-16 Julien MOUTTE <julien@moutte.net>
28578 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
28579 (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
28580 failed opening the audio device.
28581 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
28582 (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
28583 (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
28584 (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
28585 (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
28586 (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
28587 (gst_ximagesink_change_state), (gst_ximagesink_chain),
28588 (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
28589 Removing some useless g_return_if_fail like wingo suggested.
28590 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
28591 (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
28592 (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
28593 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
28594 (gst_xvimagesink_update_colorbalance),
28595 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
28596 (gst_xvimagesink_xcontext_clear),
28597 (gst_xvimagesink_get_fourcc_from_caps),
28598 (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
28599 (gst_xvimagesink_set_xwindow_id),
28600 (gst_xvimagesink_colorbalance_list_channels),
28601 (gst_xvimagesink_colorbalance_set_value),
28602 (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
28603 PAUSED. Removing some useless g_return_if_fail like wingo suggested.
28605 2004-02-16 Thomas Vander Stichele <thomas at apestaart dot org>
28607 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
28608 throw error when not negotiated instead of asserting
28610 2004-02-15 Julien MOUTTE <julien@moutte.net>
28612 * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
28613 correct data refcounting.
28615 2004-02-15 Julien MOUTTE <julien@moutte.net>
28617 * gst/switch/gstswitch.c: (gst_switch_change_state),
28618 (gst_switch_class_init): Cleaning the sinkpads correctly on state
28619 change, mostly the EOS flag.
28621 2004-02-15 Julien MOUTTE <julien@moutte.net>
28623 * examples/gstplay/player.c: (got_eos), (main): Adding some
28624 output for debugging.
28625 * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
28626 timeouts if we go to any state different from PLAYING.
28627 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
28628 more EOS bugs in riff lib.
28630 2004-02-14 Julien MOUTTE <julien@moutte.net>
28632 * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
28633 visualization until i find a way to fix switch correctly.
28634 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
28636 * gst/switch/gstswitch.c: (gst_switch_release_pad),
28637 (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
28638 (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
28639 Reworked switch to get a more correct behaviour with events and refing
28640 of data stored in sinkpads.
28641 * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
28642 we don't pull from a pad in EOS.
28644 2004-02-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
28646 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
28647 remove v1 tag even if we can't read it (makes sure we don't detect
28650 2004-02-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
28652 * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
28653 (gst_alsa_xrun_recovery):
28654 * ext/alsa/gstalsa.h:
28655 try xrun recovery when wait failed. Make xrun recovery function
28656 return TRUE/FALSE to indicate success. (might fix #134354)
28658 2004-02-13 David Schleef <ds@schleef.org>
28660 * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
28661 (dynparm_value_changed), (main): Convert from float to double.
28662 * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
28664 2004-02-13 David Schleef <ds@schleef.org>
28666 * gst/silence/gstsilence.c: (gst_silence_class_init),
28667 (gst_silence_set_clock), (gst_silence_get),
28668 (gst_silence_set_property), (gst_silence_get_property):
28669 * gst/silence/gstsilence.h: Add sync property.
28670 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28671 (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
28672 (gst_sinesrc_set_property), (gst_sinesrc_get_property):
28673 * gst/sine/gstsinesrc.h: Add sync property.
28675 2004-02-13 David Schleef <ds@schleef.org>
28677 * gst/intfloat/gstint2float.c: (conv_f32_s16),
28678 (gst_int2float_chain_gint16): Change stdint usage to glib types.
28680 2004-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
28684 * gst-libs/ext/Makefile.am:
28685 move ffmpeg plugin to gst-ffmpeg module
28687 2004-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
28689 * configure.ac: use GST_ARCH to detect architecture
28691 2004-02-12 Julien MOUTTE <julien@moutte.net>
28693 * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
28695 2004-02-12 Thomas Vander Stichele <thomas at apestaart dot org>
28697 * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
28698 classify LADSPA plugins based on number of src/sink pads
28699 (#133663, Stefan Kost)
28700 * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
28701 fix dparams registration
28702 (#133528, Stefan Kost)
28703 * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
28704 fix use of isprint and use g_ascii_isprint instead
28705 (#133316, Stefan Kost)
28707 2004-02-11 David Schleef <ds@schleef.org>
28709 Convert a few inner loops to use liboil. This is currently
28710 optional, and is only enabled if liboil is present (duh!).
28711 * configure.ac: Check for liboil-0.1
28712 * gst/intfloat/Makefile.am:
28713 * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
28714 (gst_int2float_chain_gint16):
28715 * gst/videofilter/Makefile.am:
28716 * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
28717 (tablelookup_u8), (gst_videobalance_planar411):
28718 * gst/videotestsrc/Makefile.am:
28719 * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
28720 * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
28721 (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
28722 (paint_hline_RGB565), (paint_hline_xRGB1555):
28724 2004-02-11 David Schleef <ds@schleef.org>
28726 * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
28727 (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
28728 (gst_colorspace_getcaps), (gst_colorspace_link),
28729 (gst_colorspace_base_init), (gst_colorspace_init),
28730 (gst_colorspace_chain), (gst_colorspace_change_state),
28731 (plugin_init): Merge Ronald's patch (bug #117897) and update
28732 for new caps and negotiation. Seems to work, although it
28733 shows off bugs in lcs.
28735 2004-02-11 David Schleef <ds@schleef.org>
28737 * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
28738 (bug #133886) Noticed by bugs@leroutier.net (Stephane LOEUILLET)
28740 2004-02-11 David Schleef <ds@schleef.org>
28742 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
28743 (gst_rfbsrc_change_state), (gst_rfbsrc_init),
28744 (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
28745 Add server and port properties
28747 2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
28752 * m4/as-liblame.m4:
28753 * m4/as-slurp-ffmpeg.m4:
28754 * m4/check-libheader.m4:
28761 * m4/gst-ivorbis.m4:
28762 * m4/gst-matroska.m4:
28764 * m4/gst-shout2.m4:
28772 fix underquotedness of macros (#133800)
28773 * m4/as-avifile.m4:
28775 removed because no longer used
28777 2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
28780 require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
28781 by autopoint (fixes #132996)
28783 2004-02-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
28785 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
28786 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
28787 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
28788 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
28791 2004-02-11 David Schleef <ds@schleef.org>
28793 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
28794 (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
28795 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
28796 (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
28797 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
28798 (gst_jpegenc_class_init), (gst_jpegenc_init),
28799 (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
28800 (gst_jpegenc_chain), (gst_jpegenc_set_property),
28801 (gst_jpegenc_get_property): Fix negotiation. Add some properties.
28802 * ext/jpeg/gstjpegenc.h: Fix negotiation.
28804 2004-02-10 Benjamin Otte <in7y118@public.uni-hamburg.de>
28806 * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
28807 (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
28808 * ext/mikmod/gstmikmod.h:
28809 fix caps negotiation in mikmod
28810 * ext/ogg/gstoggdemux.c: (gst_ogg_print):
28811 output debug information
28813 2004-02-08 Benjamin Otte <in7y118@public.uni-hamburg.de>
28815 * gst-libs/gst/colorbalance/Makefile.am:
28816 * gst-libs/gst/navigation/Makefile.am:
28817 * gst-libs/gst/xoverlay/Makefile.am:
28818 remove unused GST_OPT_CFLAGS from Makefiles
28819 include X_CFLAGS and X_LIBS in xoverlay. (#131948)
28821 2004-02-07 David Schleef <ds@schleef.org>
28823 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
28824 push events to pads that haven't been created (#133508)
28826 2004-02-07 Jan Schmidt <thaytan@mad.scientist.com>
28828 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
28829 (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
28830 (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
28831 (gst_dvdec_loop), (gst_dvdec_change_state):
28832 Second attempt at committing a working dvdec element.
28834 2004-02-06 David Schleef <ds@schleef.org>
28836 Build fixes for OS X: (see #129600)
28837 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
28838 (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
28839 (gst_riff_read_strf_iavs):
28840 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
28841 (gst_avi_demux_stream_odml):
28842 * gst/playondemand/Makefile.am:
28843 * gst/rtp/rtp-packet.c:
28845 2004-02-05 David Schleef <ds@schleef.org>
28847 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
28848 last change, because it Just Doesn't Compile.
28850 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
28852 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
28853 skip undecodable id3v2 tag instead of keeping it
28855 2004-02-05 David Schleef <ds@schleef.org>
28857 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
28858 Unref leaked buffer. (Noticed by Ronald)
28860 2004-02-05 David I. Lehn <dlehn@users.sourceforge.net>
28862 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28863 Sync requires with other checks. >= vs =.
28865 2004-02-06 Jan Schmidt <thaytan@mad.scientist.com>
28867 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
28868 (gst_dvdec_video_link), (gst_dvdec_loop):
28869 * ext/dv/gstdvdec.h:
28870 rework the caps negotiation so that dvdec works again instead
28871 of just segfaulting.
28873 === release 0.7.4 ===
28875 2004-02-06 Thomas Vander Stichele <thomas at apestaart dot org>
28877 * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
28878 * configure.ac: changed for release
28880 2004-02-05 Thomas Vander Stichele <thomas at apestaart dot org>
28882 * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
28883 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
28884 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28885 * pkgconfig/gstreamer-play-uninstalled.pc.in:
28886 reworked patch by David Lehn to fix libdir and includedir for
28887 uninstalled libraries
28888 removed play and gconf from gstreamer-libs since they have their
28889 own pkgconfig files
28891 2004-02-04 David Schleef <ds@schleef.org>
28893 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
28896 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
28898 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
28899 use correct GST_TAG_ENCODER tag
28901 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
28903 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
28904 be sure to stop the clock when going to paused
28905 * sys/oss/gstosssink.c: (gst_osssink_change_state):
28906 reset number of transmitted when going to ready.
28909 2004-02-05 Charles Schmidt <cschmidt2@emich.edu>
28911 reviewed by Benjamin Otte
28913 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
28914 extract track count (fixes #133410)
28916 2004-02-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
28918 * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
28919 that should be !=, not == (fixes #132519)
28921 2004-02-04 David Schleef <ds@schleef.org>
28923 Make sure set_explicit_caps() is called before adding pad.
28924 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
28925 * gst/id3/gstid3types.c: (gst_id3types_loop):
28926 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
28927 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
28929 2004-02-04 Thomas Vander Stichele <thomas at apestaart dot org>
28932 bump nano to 2, first prerelease
28933 put back AM_PROG_LIBTOOL
28935 2004-02-04 Thomas Vander Stichele <thomas at apestaart dot org>
28937 * testsuite/alsa/Makefile.am:
28938 these are user test apps, not automatic testsuite tests
28940 2004-02-04 David Schleef <ds@schleef.org>
28942 Convert GST_DEBUG_CAPS() to GST_DEBUG():
28943 * gst/mpeg1videoparse/gstmp1videoparse.c:
28944 (mp1videoparse_parse_seq):
28945 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
28946 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
28947 * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
28948 * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
28949 (gst_xvideosink_getcaps):
28950 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
28951 * testsuite/gst-lint: more tests
28953 2004-02-04 David Schleef <ds@schleef.org>
28955 Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
28956 with the code that they would expand to.
28957 * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
28958 (gst_flacdec_get_src_query_types),
28959 (gst_flacdec_get_src_event_masks):
28960 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
28961 (gst_gnomevfssrc_get_query_types),
28962 (gst_gnomevfssrc_get_event_mask):
28964 2004-02-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
28966 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28967 (gst_sinesrc_dispose):
28968 fix memleak by properly disposing sinesrc
28970 2004-02-04 Julien MOUTTE <julien@moutte.net>
28972 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
28973 * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
28974 an overlay to redraw the image because it has been exposed.
28975 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
28976 (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
28977 (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
28978 * sys/ximage/ximagesink.h: Implement expose method from XOverlay
28980 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
28981 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
28982 (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
28983 * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
28986 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
28988 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
28989 more memleak fixage
28991 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
28993 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
28994 * gst/typefind/gsttypefindfunctions.c:
28995 fix memleaks shown by gst-typefind
28997 2004-02-03 Thomas Vander Stichele <thomas at apestaart dot org>
28999 * common/glib-gen.mak:
29000 add hack rule to touch .Plo files
29001 * gst-libs/gst/colorbalance/Makefile.am:
29002 * gst-libs/gst/mixer/Makefile.am:
29003 * gst-libs/gst/play/Makefile.am:
29004 * gst-libs/gst/tuner/Makefile.am:
29005 remove glib_root variable
29007 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29009 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
29010 set explicit caps before adding the element, so the autopluggers can
29012 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
29013 (mpeg2_sys_type_find), (mpeg1_sys_type_find),
29014 (mpeg_video_type_find), (mpeg_video_stream_type_find),
29016 fix memleaks in typefind functions. gst_type_find_suggest takes a const
29019 2004-02-03 Thomas Vander Stichele <thomas at apestaart dot org>
29021 * gst-libs/gst/colorbalance/Makefile.am:
29022 * gst-libs/gst/colorbalance/colorbalance-marshal.list:
29023 * gst-libs/gst/colorbalance/colorbalance.c:
29024 * gst-libs/gst/colorbalance/colorbalance.h:
29025 * gst-libs/gst/colorbalance/colorbalancemarshal.list:
29026 * gst-libs/gst/mixer/Makefile.am:
29027 * gst-libs/gst/mixer/mixer-marshal.list:
29028 * gst-libs/gst/mixer/mixer.c:
29029 * gst-libs/gst/mixer/mixer.h:
29030 * gst-libs/gst/mixer/mixermarshal.list:
29031 * gst-libs/gst/play/Makefile.am:
29032 * gst-libs/gst/play/play.h:
29033 * gst-libs/gst/tuner/Makefile.am:
29034 * gst-libs/gst/tuner/tuner-marshal.list:
29035 * gst-libs/gst/tuner/tuner.c:
29036 * gst-libs/gst/tuner/tuner.h:
29037 * gst-libs/gst/tuner/tunermarshal.list:
29038 use new glib-gen.mak snippet to clean up Makefile.am
29039 fix various bugs in Makefile.am's
29041 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29043 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
29044 handle chain parsing correctly in the multichain case
29045 * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
29046 (theora_dec_from_granulepos), (theora_dec_to_granulepos),
29047 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
29048 (theora_dec_chain):
29049 handle events and queries correctly
29051 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
29054 Ignore generated file _stdint.h.
29056 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
29058 * gst-libs/gst/colorbalance/Makefile.am:
29059 * gst-libs/gst/colorbalance/colorbalance.h:
29060 * gst-libs/gst/mixer/Makefile.am:
29061 * gst-libs/gst/mixer/mixer.h:
29062 * gst-libs/gst/play/Makefile.am:
29063 * gst-libs/gst/play/play.h:
29064 * gst-libs/gst/tuner/Makefile.am:
29065 * gst-libs/gst/tuner/tuner.h:
29066 Generate enum type code with glib-mkenums.
29067 * gst-libs/gst/colorbalance/.cvsignore:
29068 * gst-libs/gst/mixer/.cvsignore:
29069 * gst-libs/gst/play/.cvsignore:
29070 * gst-libs/gst/tuner/.cvsignore:
29071 Ignore generated files.
29073 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
29075 * gst-libs/gst/audio/.cvsignore:
29076 Ignore generated file.
29077 * gst-libs/gst/audio/Makefile.am:
29078 Do not install example filter.
29080 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
29082 * examples/switch/.cvsignore:
29083 Ignore generated file.
29085 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29087 * common/m4/ax_create_stdint_h.m4:
29089 add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
29092 remove generated _stdint.h in DISTCLEANFILES
29093 * ext/a52dec/gsta52dec.c:
29094 include _stdint.h for a52dec. (should fix #133064)
29096 2004-02-02 Jeremy Simon <jesimon@libertysurf.fr>
29098 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
29099 (gst_tag_to_vorbis_comments):
29100 Add replaygain support to vorbistag
29102 2004-02-02 Jeremy Simon <jesimon@libertysurf.fr>
29103 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
29104 (gst_ffmpeg_caps_to_extradata):
29105 Fix SVQ3 caps flag properties
29106 Use glib macro for bytes swap
29108 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29110 * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
29111 * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
29112 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
29113 * ext/sndfile/gstsf.c: (plugin_init):
29114 * gst/avi/gstavi.c: (plugin_init):
29115 * sys/dxr3/dxr3init.c: (plugin_init):
29116 * sys/oss/gstossaudio.c: (plugin_init):
29117 * sys/v4l/gstv4l.c: (plugin_init):
29118 * sys/v4l2/gstv4l2.c: (plugin_init):
29119 remove textdomain calls
29121 update Dutch translation
29123 2004-02-02 Julien MOUTTE <julien@moutte.net>
29125 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
29126 (gst_play_set_audio_sink): Moving volume in the audio thread for
29127 instantaneous volume change. Maybe i will add another volume in front
29128 of visualization later, not sure yet though.
29130 2004-02-02 Julien MOUTTE <julien@moutte.net>
29132 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
29133 (gst_ximagesink_handle_xevents): Better X events handling, only take
29134 the latest events for configure and motion.
29135 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
29137 2004-02-02 Jon Trowbridge <trow@gnu.org>
29139 reviewed by: David Schleef <ds@schleef.org>
29142 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
29143 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
29145 2004-02-02 David Schleef <ds@schleef.org>
29147 code cleanup. Change bzero() to memset(). Remove duplicate ; at ends
29149 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
29150 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
29151 * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
29152 * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
29153 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
29154 * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
29155 * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
29156 * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
29157 (gst_float2_2_int_link):
29158 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
29159 * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
29160 * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
29161 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
29162 * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
29163 * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
29164 * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
29165 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
29166 * testsuite/gst-lint: Add tests for bzero and ;;
29168 2004-02-02 David Schleef <ds@schleef.org>
29170 * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
29172 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29174 * ext/aalib/gstaasink.c: (gst_aasink_open):
29175 * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
29176 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29177 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
29178 * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
29179 (gst_afsink_close_file):
29180 * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
29181 (gst_afsrc_close_file):
29182 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
29183 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
29184 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
29185 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
29186 * ext/esd/esdmon.c: (gst_esdmon_get):
29187 * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
29188 * ext/faac/gstfaac.c: (gst_faac_chain):
29189 * ext/faad/gstfaad.c: (gst_faad_chain):
29190 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
29191 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
29192 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
29193 * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
29194 (gst_flacdec_loop):
29195 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
29196 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
29197 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
29198 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
29199 (gst_gnomevfssink_close_file):
29200 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
29201 (gst_gnomevfssrc_open_file):
29202 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
29203 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
29204 * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
29205 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
29206 (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
29207 * ext/mad/gstmad.c: (gst_mad_chain):
29208 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
29209 * ext/mpeg2dec/gstmpeg2dec.c:
29210 * ext/mpeg2enc/gstmpeg2enc.cc:
29211 * ext/mplex/gstmplex.cc:
29212 * ext/mplex/gstmplexibitstream.cc:
29213 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
29214 (gst_ogg_demux_push):
29215 * ext/raw1394/gstdv1394src.c:
29216 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
29217 (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
29218 * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
29220 * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
29221 * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
29222 * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
29223 * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
29224 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
29225 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
29226 * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
29227 * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
29228 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
29229 (gst_riff_read_element_data), (gst_riff_read_seek),
29230 (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
29231 * gst/adder/gstadder.c: (gst_adder_loop):
29232 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
29233 (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
29234 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
29235 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
29236 * gst/avi/gstavimux.c: (gst_avimux_stop_file):
29237 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
29238 * gst/goom/gstgoom.c: (gst_goom_chain):
29239 * gst/id3/gstid3types.c: (gst_id3types_loop):
29240 * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
29241 * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
29242 * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
29243 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
29244 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
29245 (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
29246 (gst_ebml_read_float), (gst_ebml_read_header):
29247 * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
29248 (gst_matroska_demux_parse_blockgroup):
29249 * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
29250 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
29251 * gst/oneton/gstoneton.c: (gst_oneton_chain):
29252 * gst/silence/gstsilence.c: (gst_silence_get):
29253 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
29254 * gst/smpte/gstsmpte.c: (gst_smpte_loop):
29255 * gst/speed/gstspeed.c: (speed_loop):
29256 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
29257 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
29258 * gst/volenv/gstvolenv.c: (gst_volenv_chain):
29259 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
29260 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
29261 (gst_wavparse_loop):
29262 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
29263 (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
29264 (dxr3audiosink_close):
29265 * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
29266 * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
29267 (dxr3videosink_close), (dxr3videosink_write_data):
29268 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
29269 * sys/oss/gstosssink.c: (gst_osssink_chain):
29270 * sys/oss/gstosssrc.c: (gst_osssrc_get):
29271 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
29272 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
29273 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
29274 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
29275 (gst_v4l_set_window), (gst_v4l_enable_overlay):
29276 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
29277 (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
29278 (gst_v4l_get_frequency), (gst_v4l_set_frequency),
29279 (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
29280 (gst_v4l_set_audio):
29281 * sys/v4l/v4l_calls.h:
29282 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
29283 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
29284 (gst_v4lmjpegsink_playback_init),
29285 (gst_v4lmjpegsink_playback_start):
29286 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
29287 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
29288 (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
29289 (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
29290 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
29291 * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
29292 (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
29293 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
29294 (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
29295 (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
29296 (gst_v4l2_get_output), (gst_v4l2_set_output),
29297 (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
29298 (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
29299 (gst_v4l2_set_attribute):
29300 * sys/v4l2/v4l2_calls.h:
29301 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
29302 (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
29303 (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
29304 (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
29305 (gst_v4l2src_capture_stop):
29306 * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
29307 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
29308 (gst_ximagesink_chain):
29309 * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
29310 (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
29311 (gst_xvideosink_xwindow_new):
29312 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29313 (gst_xvimagesink_chain):
29315 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29317 * gst/volume/gstvolume.c: (gst_volume_set_volume),
29318 (gst_volume_get_volume), (volume_class_init), (volume_init),
29319 (volume_chain_int16), (volume_update_volume):
29320 * gst/volume/gstvolume.h:
29321 make code more readable by removing magic numbers
29322 make mixer interface export 0-100 range
29323 make it internally map to 0.0-1.0 range so users don't distort
29324 output by putting the sliders at full volume
29326 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29328 * gst-libs/gst/play/play.c: (gst_play_tick_callback),
29329 (gst_play_state_change), (gst_play_seek_to_time):
29330 block the tick callback for 0.5 secs after doing a seek
29332 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29334 * gst-libs/gst/play/play.c: (gst_play_new):
29337 2004-02-01 Julien MOUTTE <julien@moutte.net>
29339 * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
29340 (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
29341 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
29342 (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
29343 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
29344 (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
29346 2004-02-01 Thomas Vander Stichele <thomas at apestaart dot org>
29349 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29350 check for a function added in vorbis 1.1
29352 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
29354 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
29355 (gst_alsa_drain_audio), (gst_alsa_stop_audio):
29356 really start/stop clock only on PLAYING <=> PAUSED
29357 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29358 remove \n from debugging lines
29359 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
29360 make it work when seeking does not
29361 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29364 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
29366 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
29367 start clock on PAUSED=>PLAYING, not later
29368 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
29369 extract correct time for different discont formats
29370 (gst_alsa_sink_get_time):
29371 don't segfault when no format is negotiated yet, just return 0
29372 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29373 (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
29374 (gst_ogg_pad_push):
29375 handle flush and discont events correctly
29376 * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
29377 handle discont events correctly
29379 2004-01-31 Thomas Vander Stichele <thomas at apestaart dot org>
29381 * gst-libs/gst/play/play.c: (gst_play_error_quark),
29382 (gst_play_error_create), (gst_play_error_plugin),
29383 (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
29384 * gst-libs/gst/play/play.h:
29385 add error handling during creation
29386 * examples/gstplay/player.c: (main):
29387 use new gst_play_new
29390 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
29392 * ext/theora/theoradec.c: (theora_dec_chain):
29394 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
29395 (vorbis_dec_src_event), (vorbis_dec_chain):
29396 add encoder tag, fix tag reading to be more error tolerant, change
29397 BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
29398 gst_pad_event_default.
29399 * gst/tags/gstvorbistag.c:
29400 (gst_tag_list_from_vorbiscomment_buffer):
29401 undefine function specific define at end of function
29403 2004-01-31 Jeremy Simon <jesimon@libertysurf.fr>
29405 * ext/flac/gstflac.c: (plugin_init):
29406 * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
29407 * ext/flac/gstflacdec.h:
29408 * ext/flac/gstflacenc.h:
29411 2004-01-30 David I. Lehn <dlehn@users.sourceforge.net>
29413 * examples/gstplay/player.c: s/gstplay.h/play.h/
29415 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
29417 * gst-libs/gst/play/Makefile.am:
29418 * gst-libs/gst/play/gstplay.c:
29419 * gst-libs/gst/play/gstplay.h:
29420 * gst-libs/gst/play/play.c:
29421 more surgery, operation complete
29423 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
29425 * gst-libs/gst/play/play.old.c:
29426 * gst-libs/gst/play/play.old.h:
29427 after CVS surgery by moving, remove
29428 * gst-libs/gst/play/playpipelines.c:
29431 * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
29432 add negotiation error
29434 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
29436 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29437 (gst_ogg_demux_push):
29438 add some seeking debug info
29439 send a flush when seeking
29441 2004-01-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
29447 * ext/theora/Makefile.am:
29448 * ext/theora/theoradec.c:
29449 add theora video decoder. Does just do simple decoding for now and
29450 has been tested against Theora cvs only. It only works when theora
29451 is compiled with --enable-static.
29452 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29453 always reset packetno on DISCONT
29455 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
29457 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
29460 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
29462 * gst/mpegaudioparse/gstmpegaudioparse.c:
29463 (mp3_type_frame_length_from_header):
29464 Fix header parsing - stolen from ffmpeg (thank you! :) ).
29466 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
29468 * ext/esd/esdsink.c: (gst_esdsink_init):
29469 Since we have static pad template caps, we don't need to negotiate;
29470 either the core errors out or we know the format.
29472 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
29474 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
29475 (gst_riff_read_seek):
29476 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
29477 (gst_ebml_read_seek):
29478 Fix event handling.
29480 2004-01-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
29482 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
29483 removee video/x-theora from vp3 decoder, it doesn't handle raw
29485 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
29486 fix bug with finalizing element that never went to PAUSED
29487 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
29488 length and position queries were swapped
29489 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
29490 (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
29491 (vorbis_dec_src_event):
29492 implement querying time and bytes
29494 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
29496 * just about every source file:
29497 gst_element_error -> GST_ELEMENT_ERROR
29499 2004-01-29 Julien MOUTTE <julien@moutte.net>
29501 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
29502 emiting FLUSH and even before DISCONT.
29503 * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
29504 get the best instant seeking as possible yay!
29506 2004-01-29 Ronald Bultje <rbultje@ronald.bitfreak.net>
29508 * gst/mpeg1videoparse/gstmp1videoparse.c:
29509 (gst_mp1videoparse_real_chain):
29510 Committed wrong version last week... Grr... Didn't notice until now.
29512 2004-01-29 Julien MOUTTE <julien@moutte.net>
29514 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
29515 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
29516 have_xwindow_id signal in xwindow_create.
29518 2004-01-29 Benjamin Otte <in7y118@public.uni-hamburg.de>
29520 * ext/ogg/gstoggdemux.c:
29521 lots of changes - mainly support for chained bitstreams, seeking,
29522 querying and bugfixes of course
29523 * ext/vorbis/Makefile.am:
29524 * ext/vorbis/vorbisdec.c:
29525 * ext/vorbis/vorbisdec.h:
29526 add vorbisdec raw vorbis decoder
29527 * ext/vorbis/vorbis.c: (plugin_init):
29528 register vorbisdec as PRIMARY, vorbisfile as SECONDARY
29529 * gst/intfloat/Makefile.am:
29530 * gst/intfloat/float22int.c:
29531 * gst/intfloat/float22int.h:
29532 * gst/intfloat/gstintfloatconvert.c: (plugin_init):
29533 add float2intnew plugin. It converts multichannel interleaved float to
29534 multichannel interleaved int. The name should probably be changed.
29535 * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
29537 add typefinding for raw theora video so oggdemux can detect it.
29539 2004-01-28 Julien MOUTTE <julien@moutte.net>
29541 * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
29542 sink element first.
29543 * gst/videoscale/gstvideoscale.c:
29544 (gst_videoscale_handle_src_event): Fixing src event handler.
29546 2004-01-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
29548 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
29549 (gst_v4lsrc_open), (gst_v4lsrc_close),
29550 (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
29551 (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
29552 * sys/v4l/gstv4lsrc.h:
29553 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
29554 (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
29555 Implement resizing... Hack. But that's why v4l is b0rked...
29557 2004-01-28 Julien MOUTTE <julien@moutte.net>
29559 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
29560 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
29561 (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
29562 (gst_ximagesink_xwindow_destroy):
29563 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
29564 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
29565 (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
29566 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
29567 (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
29568 correctly cleaning the image created to check xshm calls on succes,
29569 added a lot of XSync calls in X11 functions, and fixed a segfault when
29570 no image format was defined before negotiation happened.
29572 2004-01-28 Benjamin Otte <in7y118@public.uni-hamburg.de>
29574 * ext/alsa/gstalsa.c: (gst_alsa_query_func):
29575 use gst_element_get_time to get correct time
29577 2004-01-28 Julien MOUTTE <julien@moutte.net>
29579 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
29580 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
29581 (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
29582 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
29583 (gst_xvimagesink_check_xshm_calls),
29584 (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
29585 X plugins are now able to detect that XShm calls will fail even if the
29586 server claims that it has XShm support (remote displays most of the
29587 time). We then log the error as a GST_DEBUG and set use_shm to FALSE
29588 so that we use non XShm functions. This feature is almost useless for
29589 xvimagesink as Xv is not supported on remote displays anyway, but
29590 it might happen than even on the local display XShm calls fail.
29592 2004-01-27 David Schleef <ds@schleef.org>
29594 * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
29595 (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
29596 (gst_esdsink_change_state): Fix sync issues in esdsink. Also
29597 changed esdsink to only use 44100,16,2, since esd sucks at rate
29598 conversion and esdsink has had difficulty negotiating.
29600 2004-01-27 Julien MOUTTE <julien@moutte.net>
29602 * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
29603 (gst_play_seek_to_time): Fixing the way to get current position.
29605 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
29607 * sys/oss/gstosssink.c: (gst_osssink_sink_query):
29608 use gst_element_get_time to get correct time
29610 2004-01-27 Julien MOUTTE <julien@moutte.net>
29612 * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
29613 fix ever... Inverting 2 lines of code make spider autoplug correctly
29616 2004-01-27 David Schleef <ds@schleef.org>
29618 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
29619 Use gst_pad_try_set_caps_nonfixed().
29621 2004-01-27 David Schleef <ds@schleef.org>
29623 * gst/ac3parse/gstac3parse.c: update to checklist 5
29624 * gst/adder/gstadder.c: rewrite negotiation. update to checklist 5
29625 * gst/audioconvert/gstaudioconvert.c: update to checklist 5
29626 * gst/audioscale/gstaudioscale.c: same
29627 * gst/auparse/gstauparse.c: same
29628 * gst/avi/gstavidemux.c: same
29630 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
29632 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
29633 stop processing after EOS
29635 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
29637 * gst/asfdemux/asfheaders.h:
29638 * gst/asfdemux/gstasfdemux.c:
29639 * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
29640 (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
29641 (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
29642 lot's of fixes to make data extraction simpler and get the code
29643 architecture and compiler independant. Add debugging category
29644 * gst/goom/gstgoom.c: (gst_goom_change_state):
29645 reset channel count on PAUSED=>READY, not READY=>PAUSED
29647 2004-01-26 Colin Walters <walters@verbum.org>
29649 * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
29650 code to pull a bigger buffer in iradio mode. This as a side effect
29651 makes typefinding work.
29653 2004-01-26 Jeremy Simon <jesimon@libertysurf.fr>
29655 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
29656 Fix SVQ3 decoding on PPC
29658 2004-01-26 Julien MOUTTE <julien@moutte.net>
29660 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
29661 that one managed to stay there... Fixed.
29663 2004-01-26 Jeremy Simon <jesimon@libertysurf.fr>
29665 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
29666 (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
29667 * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
29668 (qtdemux_video_caps):
29669 * gst/qtdemux/qtdemux.h:
29670 Add SVQ3 specific flags to qtdemux and ffmpeg
29672 2004-01-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
29674 * gst-libs/gst/audio/audio.h:
29675 remove buffer-frames from audio caps
29676 * gst/audioconvert/gstaudioconvert.c:
29677 fix plugin to really work.
29679 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29681 * gst-libs/gst/mixer/mixer.c:
29682 * gst-libs/gst/propertyprobe/propertyprobe.c:
29683 * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
29684 (gst_tuner_find_channel_by_name):
29685 * gst-libs/gst/tuner/tuner.h:
29686 Add gtk-doc style comments. Also fix a function name.
29688 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29690 * ext/divx/gstdivxdec.c: (gst_divxdec_init),
29691 (gst_divxdec_negotiate):
29692 Fix for new capsnego - also fixes gst-player with divxdec.
29694 2004-01-25 Julien MOUTTE <julien@moutte.net>
29696 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
29697 (gst_play_identity_handoff), (gst_play_set_location),
29698 (gst_play_set_visualization), (gst_play_connect_visualization): Another
29699 try in visualization implementation. Still have an issue with switch
29700 blocking when pulling from video_queue and only audio comes out of
29702 * gst/switch/gstswitch.c: (gst_switch_release_pad),
29703 (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
29704 release method. And check if the pad is usable before pulling.
29706 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29708 * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
29709 (gst_videobalance_init),
29710 (gst_videobalance_colorbalance_list_channels),
29711 (gst_videobalance_colorbalance_set_value),
29712 (gst_videobalance_colorbalance_get_value),
29713 (gst_videobalance_update_properties),
29714 (gst_videobalance_update_tables_planar411),
29715 (gst_videobalance_planar411):
29716 * gst/videofilter/gstvideobalance.h:
29717 Implement lookup-tables. +/- 10x faster.
29719 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29721 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
29722 (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
29723 The index reading was broken. The rest worked fine, but the whole
29724 goal of my rewrite was to make avidemux readable, and this was
29725 not at all readable. Please use typed variables.
29727 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29729 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29730 Additional pad usability check.
29731 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
29732 (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
29733 (gst_mp1videoparse_real_chain):
29734 Fix MPEG video stream parsing. The original plugin had several
29735 issues, including not timestamping streams where the source was
29736 not timestamped (this happens with PTS values in mpeg system
29737 streams, but MPEG video is also a valid stream on its own so
29738 that needs timestamps too). We use the display time code for that
29739 for now. Also, if one incoming buffer contains multiple valid
29740 frames, we push them all on correctly now, including proper EOS
29741 handling. Lastly, several potential segfaults were fixed, and we
29742 properly sync on new sequence/gop headers to include them in next,
29743 not previous frames (since they're header for the next frame, not
29744 the previous). Also see #119206.
29745 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
29747 Move caps setting so we only do it after finding several valid
29748 MPEG-1 fraes sequentially, not right after the first one (which
29749 might be coincidental).
29750 * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
29751 (mpeg_video_type_find), (mpeg_video_stream_type_find),
29753 Add unsynced MPEG video stream typefinding, and change some
29754 probability values so we detect streams rightly. The idea is as
29755 follows: I can have an unsynced system stream which contains
29756 video. In the current code, I would randomly get a type for either
29757 system or video stream type found, because the probabilities are
29758 being calculated rather randomly. I now use fixed values, so we
29759 always prefer system stream if that was found (and that is how it
29760 should be). If no system stream was found, we can still identity the stream as video-only.
29762 2004-01-23 Benjamin Otte <in7y118@public.uni-hamburg.de>
29764 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
29765 (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
29766 don't write to buffer. Extract data without the need of
29767 __attribute__ ((packed))
29769 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29771 * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
29772 (mpeg1_sys_type_find):
29773 Fix MPEG-1 stream typefinding.
29775 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29777 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
29778 Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
29780 2004-01-23 Thomas Vander Stichele <thomas at apestaart dot org>
29782 * ext/esd/esdsink.c: (gst_esdsink_open_audio):
29783 * ext/esd/gstesd.c: (plugin_init):
29784 private debugging, better error reporting
29786 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29788 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
29789 (gst_riff_read_init), (gst_riff_read_change_state):
29790 * gst-libs/gst/riff/riff-read.h:
29791 Remove stuff fromold metadata system.
29793 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29795 * ext/ogg/gstoggdemux.c:
29796 Fix wrong file comment.
29797 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29798 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
29799 Add metadata reading properly.
29801 2004-01-23 Thomas Vander Stichele <thomas at apestaart dot org>
29804 Fix nas DIST_SUBDIRS
29806 Fix bug where make distcheck doesn't get run on adding stuff to
29809 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29811 * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
29812 * ext/divx/gstdivxdec.h:
29813 Fix divx3 ("msmpeg4") playback using divxdec.
29815 2004-01-23 Benjamin Otte <in7y118@public.uni-hamburg.de>
29817 * gst/typefind/gsttypefindfunctions.c:
29818 (mp3_type_frame_length_from_header): fix bug in length computation
29819 (mp3_type_find): improve debugging output
29821 2004-01-23 Julien MOUTTE <julien@moutte.net>
29823 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
29824 (gst_play_set_location), (gst_play_seek_to_time),
29825 (gst_play_set_audio_sink), (gst_play_set_visualization),
29826 (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
29827 the pipeline from scratch. Visualization is back and switch went out as
29828 i realized it was not possible to use the way i wanted.
29829 * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
29830 (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
29831 clearing in state change from READY to NULL. So that one can clean the
29832 X ressources keeping the element.
29833 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29834 (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
29835 (gst_xvimagesink_colorbalance_set_value),
29836 (gst_xvimagesink_colorbalance_get_value),
29837 (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
29838 (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
29839 change from READY to NULL and fixed some stupid bugs in colorbalance
29840 get/set values. Also added the following feature : when nobody tries to
29841 set some values to the colorbalance levels before the xcontext is
29842 grabbed, then when creating channels list from Xv attributes we set the
29843 internal values to the Xv defaults. This way we handle buggy Xv drivers
29844 that set default hue values far from the middle of the range (Thanks
29845 to Jon Trowbridge for pointing that issue).
29846 * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
29847 colorbalance levels have been set before xcontext is grabbed.
29849 2004-01-22 Ronald Bultje <rbultje@ronald.bitfreak.net>
29851 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
29852 Fix the ossmixer case where we shouldn't open /dev/dsp* because
29853 it might block operations (which is bad for a mixer).
29855 2004-01-22 Thomas Vander Stichele <thomas at apestaart dot org>
29857 * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
29858 (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
29859 (gmip_find_type_pre):
29860 * gst-libs/gst/media-info/media-info-priv.h:
29861 * gst-libs/gst/media-info/media-info.c:
29862 (gst_media_info_instance_init), (gst_media_info_read_idler):
29863 add fakesink to get caps on decoder src pad again
29864 fix callback prototype to match new have_type signal signature
29866 2004-01-22 Thomas Vander Stichele <thomas at apestaart dot org>
29868 * gst/adder/gstadder.c: (gst_adder_link):
29869 fix non-compile and cut-n-paste code
29871 2004-01-21 David Schleef <ds@schleef.org>
29873 * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
29874 (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
29875 (gst_swfdec_init), (gst_swfdec_change_state):
29876 * ext/swfdec/gstswfdec.h:
29878 * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
29879 (gst_adder_request_new_pad): Fix negotiation.
29880 * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
29881 Add a fixate function.
29882 * gst/intfloat/gstfloat2int.c:
29883 * gst/intfloat/gstfloat2int.h:
29884 * gst/intfloat/gstint2float.c:
29885 * gst/intfloat/gstint2float.h:
29886 Completely rewrite the negotiation. Doesn't quite work yet,
29887 due to some buffer-frames problem.
29889 2004-01-21 Thomas Vander Stichele <thomas at apestaart dot org>
29891 * ext/gnomevfs/gstgnomevfssrc.c:
29892 * sys/v4l2/v4l2_calls.h:
29893 fix includes for distcheck
29895 2004-01-21 Christian Schaller <uraeus@gnome.org>
29898 Add libnas (network audio system) plugin, patch from Arwed von Merkatz
29899 based on earlier patch from Laurent Vivier
29901 2004-01-20 Jeremy Simon <jesimon@libertysurf.fr>
29903 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
29904 Fix wma caps property
29905 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
29906 Fix typo (flags1 and flags2)
29908 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
29910 * gst-libs/gst/media-info/media-info-priv.c:
29911 (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
29912 (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
29913 (gmip_find_stream), (gmip_find_track_metadata),
29914 (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
29915 (gmip_find_track_format):
29916 * gst-libs/gst/media-info/media-info-priv.h:
29917 * gst-libs/gst/media-info/media-info-test.c: (main):
29918 * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
29919 (gst_media_info_read_idler), (gst_media_info_read):
29920 * gst-libs/gst/media-info/media-info.h:
29921 register debugging category and use it for debugging
29923 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
29925 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
29926 (gst_vorbisfile_new_link):
29927 signal streaminfo through tags
29929 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
29931 * ext/mplex/gstmplex.cc:
29932 * ext/mplex/gstmplexibitstream.cc:
29933 g++ doesn't like NULL in our i18n/error macros, should be
29934 either (NULL) or ("").
29936 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
29938 * sys/dxr3/dxr3audiosink.c:
29939 * sys/dxr3/dxr3init.c:
29940 * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
29941 * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
29942 Fix more error error error errors (missing includes here).
29944 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
29946 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
29947 fix thomas' error errors.
29949 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
29951 * ext/mpeg2enc/gstmpeg2enc.cc:
29954 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
29956 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
29957 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
29958 Fix for new error system.
29960 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
29962 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
29963 fix for new error reporting
29965 2004-01-20 David Schleef <ds@schleef.org>
29967 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
29968 (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
29969 (gst_ximagesink_set_xwindow_id): Change to using a framerate
29970 of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
29971 and neither is 100+, most likely.
29972 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
29973 (gst_xvimagesink_getcaps): same
29975 2004-01-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
29978 Up version requirement to 2.0.3 (not yet released) to avoid symbol
29979 clashes with ffmpeg.
29981 2004-01-20 Julien MOUTTE <julien@moutte.net>
29983 * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
29984 (gst_switch_init): Fixed switch element : proxying link and setting
29985 caps from src to sink on request.
29987 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
29989 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
29990 * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
29991 (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
29994 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
29996 * sys/v4l/v4l_calls.h:
29997 * sys/v4l2/v4l2_calls.h:
29998 element_error fixes
30000 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30002 * gst-libs/gst/gst-i18n-plugin.h:
30004 remove config.h inclusion
30006 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30009 adding autopoint invocation
30012 * gst-libs/gst/gettext.h:
30013 adding gettext bits
30014 * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
30015 * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
30016 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
30017 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
30018 (gst_gnomevfssink_close_file):
30019 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
30020 * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
30021 * gst-libs/gst/gst-i18n-plugin.h:
30022 * gst/avi/gstavi.c: (plugin_init):
30023 * sys/dxr3/dxr3init.c: (plugin_init):
30024 * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
30025 * sys/oss/gstossaudio.c: (plugin_init):
30026 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
30027 * sys/v4l/gstv4l.c: (plugin_init):
30028 * sys/v4l/v4l_calls.c: (gst_v4l_open):
30029 * sys/v4l2/gstv4l2.c: (plugin_init):
30030 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
30031 (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
30032 (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
30033 (gst_v4l2_set_output), (gst_v4l2_get_frequency),
30034 (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
30035 (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
30036 make sure locale and translation domain are set
30037 fix translated strings
30043 put translation files into place
30044 * sys/xvideo/imagetest.c: (main):
30045 * ext/dv/demo-play.c: (main):
30046 fix unnecessary translations
30048 2004-01-19 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
30050 * ext/sndfile/gstsf.c:
30051 * gst/avi/gstavimux.c:
30052 * ext/audiofile/gstafsink.c:
30053 * ext/audiofile/gstafsrc.c:
30054 * ext/gnomevfs/gstgnomevfssink.c:
30055 * ext/gnomevfs/gstgnomevfssrc.c:
30056 * sys/oss/gstosselement.c:
30057 * sys/v4l/v4l_calls.h:
30060 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30062 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
30063 (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
30064 (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
30065 (gst_v4l2_get_output), (gst_v4l2_set_output),
30066 (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
30067 (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
30068 (gst_v4l2_set_attribute):
30069 update to new error handling
30071 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30073 * ext/sidplay/gstsiddec.cc:
30074 * gst/modplug/gstmodplug.cc:
30075 parenthese NULL because C++ seems angry about it
30077 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30079 * gst-libs/gst/gst-i18n-plugin.h:
30080 add skeleton i18n stuff, but needs to be further implemented
30082 2004-01-18 Thomas Vander Stichele <thomas at apestaart dot org>
30084 * examples/gstplay/player.c: (main):
30085 * ext/aalib/gstaasink.c: (gst_aasink_open):
30086 * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
30087 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
30088 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
30089 * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
30090 (gst_afsink_close_file):
30091 * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
30092 (gst_afsrc_close_file):
30093 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
30094 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
30095 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
30096 * ext/esd/esdmon.c: (gst_esdmon_get):
30097 * ext/esd/esdsink.c: (gst_esdsink_chain):
30098 * ext/faac/gstfaac.c: (gst_faac_chain):
30099 * ext/faad/gstfaad.c: (gst_faad_chain):
30100 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
30101 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
30102 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
30103 * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
30104 (gst_flacdec_loop):
30105 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
30106 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
30107 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
30108 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
30109 (gst_gnomevfssink_close_file):
30110 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
30111 (gst_gnomevfssrc_open_file):
30112 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
30113 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
30114 * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
30115 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
30116 (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
30117 * ext/mad/gstmad.c: (gst_mad_chain):
30118 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
30119 * ext/mpeg2dec/gstmpeg2dec.c:
30120 * ext/mpeg2enc/gstmpeg2enc.cc:
30121 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
30122 * ext/mplex/gstmplex.cc:
30123 * ext/mplex/gstmplexibitstream.cc:
30124 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
30125 (gst_ogg_demux_push), (gst_ogg_pad_push):
30126 * ext/raw1394/gstdv1394src.c:
30127 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
30128 (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
30129 * ext/sidplay/gstsiddec.cc:
30130 * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
30132 * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
30133 * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
30134 * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
30135 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
30136 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
30137 * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
30138 * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
30139 * gst-libs/gst/Makefile.am:
30140 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
30141 (gst_riff_read_element_data), (gst_riff_read_seek),
30142 (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
30143 * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
30144 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
30145 (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
30146 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
30147 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
30148 * gst/avi/gstavimux.c: (gst_avimux_stop_file):
30149 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
30150 * gst/goom/gstgoom.c: (gst_goom_chain):
30151 * gst/id3/gstid3types.c: (gst_id3types_loop):
30152 * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
30153 * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
30154 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
30155 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
30156 (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
30157 (gst_ebml_read_float), (gst_ebml_read_header):
30158 * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
30159 (gst_matroska_demux_parse_blockgroup):
30160 * gst/modplug/gstmodplug.cc:
30161 * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
30162 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
30163 * gst/oneton/gstoneton.c: (gst_oneton_chain):
30164 * gst/silence/gstsilence.c: (gst_silence_get):
30165 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
30166 * gst/smpte/gstsmpte.c: (gst_smpte_loop):
30167 * gst/speed/gstspeed.c: (speed_loop):
30168 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
30169 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30170 * gst/volenv/gstvolenv.c: (gst_volenv_chain):
30171 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
30172 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
30173 (gst_wavparse_loop):
30174 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
30175 (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
30176 (dxr3audiosink_close):
30177 * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
30178 * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
30179 (dxr3videosink_close), (dxr3videosink_write_data):
30180 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
30181 * sys/oss/gstosselement.h:
30182 * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
30183 (gst_osssink_chain):
30184 * sys/oss/gstosssrc.c: (gst_osssrc_get):
30185 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
30186 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
30187 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
30188 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
30189 (gst_v4l_enable_overlay):
30190 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
30191 (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
30192 (gst_v4l_get_frequency), (gst_v4l_set_frequency),
30193 (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
30194 (gst_v4l_set_audio):
30195 * sys/v4l/v4l_calls.h:
30196 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
30197 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
30198 (gst_v4lmjpegsink_playback_init),
30199 (gst_v4lmjpegsink_playback_start):
30200 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
30201 (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
30202 (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
30203 (gst_v4lmjpegsrc_requeue_frame):
30204 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
30205 (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
30206 (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
30207 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
30208 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
30209 (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
30210 (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
30211 (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
30212 (gst_v4l2src_capture_stop):
30213 * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
30214 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
30215 (gst_ximagesink_chain):
30216 * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
30217 (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
30218 (gst_xvideosink_xwindow_new):
30219 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30220 (gst_xvimagesink_chain):
30221 use new error signal, function and categories
30223 2004-01-18 Jeremy Simon <jesimon@libertysurf.fr>
30227 * ext/musicbrainz/gsttrm.c:
30228 * ext/musicbrainz/gsttrm.h:
30229 * ext/musicbrainz/Makefile.am:
30232 2004-01-18 Julien MOUTTE <julien@moutte.net>
30234 * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
30235 (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
30236 synchronous property for debugging.
30237 * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
30238 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30239 (gst_xvimagesink_set_property): Moving a pointer declaration to a
30240 smaller block, fixing indent.
30242 2004-01-16 David Schleef <ds@schleef.org>
30244 * gst/videofilter/gstvideobalance.c: Fix regression; changing a
30245 property affects the video stream.
30246 * sys/xvimage/xvimagesink.c:
30247 * sys/xvimage/xvimagesink.h:
30248 Add synchronous property for debugging. Should probably be
30249 disabled in non-CVS builds. Make sure that the Xv attribute
30250 exists before we set it (crash!). Fix a silly float bug that
30251 caused colorbalance to just not work.
30253 2004-01-17 Christian Schaller <Uraeus@gnome.org>
30255 * tools/gst-launch-ext.in - update for new plugins
30257 2004-01-16 David Schleef <ds@schleef.org>
30259 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
30260 already-freed caps.
30262 2994-01-16 Christian Schaller <Uraeus@gnome.org>
30264 * Update spec for new colorspace plugin and libcaca plugin
30265 * Fix compilation of libcaca plugin (clock -> id)
30267 2004-01-16 Julien MOUTTE <julien@moutte.net>
30269 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
30270 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
30271 (gst_xvimagesink_set_xwindow_id),
30272 (gst_xvimagesink_colorbalance_set_value),
30273 (gst_xvimagesink_colorbalance_get_value),
30274 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
30275 (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
30276 correct colorbalance properties. They can now be set when the element
30277 is still in NULL state. The values will be committed to the Xv Port
30278 when xcontext is initialized.
30279 * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
30280 brightness int values in the GstXvImagesink structure.
30282 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
30284 * gst-libs/gst/Makefile.am:
30285 restructure so having local patches works easier.
30287 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
30289 * ext/mpeg2enc/Makefile.am:
30290 * ext/mpeg2enc/gstmpeg2enc.cc:
30291 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
30292 Bugfix with respect to EOS handling.
30294 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
30296 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
30297 Link with right caps (else, it segfaults).
30298 * ext/mplex/gstmplexjob.cc:
30299 Fix for slight API change in 1.6.1.93 release of mjpegtools.
30301 2004-01-15 David Schleef <ds@schleef.org>
30303 * gst-libs/gst/audio/Makefile.am:
30304 Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
30306 * gst-libs/gst/audio/gstaudiofilter.c:
30307 * gst-libs/gst/audio/gstaudiofilter.h:
30308 Add bytes_per_sample and size and n_samples calculation.
30309 * gst-libs/gst/audio/gstaudiofilterexample.c:
30310 Remove, now autogenerated.
30311 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
30312 Moved from gstaudiofilterexample, object name changed, code added
30313 so that it actually works.
30314 * gst-libs/gst/audio/make_filter:
30315 Script to build an audiofilter subclass from the template.
30316 * gst/colorspace/Makefile.am:
30317 * gst/colorspace/yuv2yuv.c:
30318 Remove file, since it's GPL, and we don't use it.
30320 2004-01-15 Julien MOUTTE <julien@moutte.net>
30322 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30323 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
30324 them use the buffer free function to test how the buffer was allocated.
30326 2004-01-15 David Schleef <ds@schleef.org>
30328 * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
30329 that handles osssink fallback.
30330 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
30331 (gst_audio_convert_getcaps):
30332 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
30333 Add audio/x-qdm2 for QDM2 audio.
30334 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
30335 * gst/sine/gstsinesrc.h: Add example of how to implement tags.
30336 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
30337 Decrease minimum size to 16x16.
30338 * gst/wavparse/gstwavparse.c:
30339 Convert disabled pad template caps to new caps.
30340 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
30341 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30342 (gst_xvimagesink_chain): Throw element error when display cannot
30343 be opened. Increase minimum framerate to 1.0. Check the data
30344 free function on a buffer to make sure it is the type we expect
30345 before manipulating it.
30347 2004-01-15 Julien MOUTTE <julien@moutte.net>
30349 * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
30350 (gst_videobalance_colorbalance_set_value): Implement passthru if
30351 settings are in the middle.
30352 * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
30354 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
30356 * gst/videofilter/Makefile.am:
30357 * gst/volume/Makefile.am:
30358 Since we use videofilter symbols, link to it.
30360 2004-01-15 Julien MOUTTE <julien@moutte.net>
30362 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
30363 mixer interface type to HARDWARE.
30364 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
30366 * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
30367 * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
30368 * gst/volume/gstvolume.c: (gst_volume_interface_supported),
30369 (gst_volume_interface_init), (gst_volume_list_tracks),
30370 (gst_volume_set_volume), (gst_volume_get_volume),
30371 (gst_volume_set_mute), (gst_volume_mixer_init),
30372 (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
30373 (volume_init): Implementing mixer interface.
30374 * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
30375 * sys/oss/gstosselement.c: (gst_osselement_get_type),
30376 (gst_osselement_change_state): Removing some trailing commas in
30378 * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
30379 interface type to HARDWARE.
30380 * sys/v4l/gstv4lcolorbalance.c:
30381 (gst_v4l_color_balance_interface_init): Setting colorbalance interface
30383 * sys/v4l2/gstv4l2colorbalance.c:
30384 (gst_v4l2_color_balance_interface_init): Setting colorbalance
30385 interface type to HARDWARE.
30386 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
30387 same code than ximagesink for event handling.
30389 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
30391 * ext/snapshot/Makefile.am:
30392 * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
30393 (gst_snapshot_chain):
30394 * ext/snapshot/gstsnapshot.h:
30395 This has to be a joke... Snapshot should be connected to a tee,
30396 colorspace element before it and EOS after that, where the other
30397 src of the tee receives normal data.
30398 The current way is *wrong*.
30400 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
30402 * ext/hermes/gsthermescolorspace.c:
30403 Fix another compile error. Same as below.
30405 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
30407 * gst/colorspace/gstcolorspace.c:
30408 * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
30409 (gst_colorspace_i420_to_yv12):
30410 Fix compiling... Didn't test if it actually works.
30412 2004-01-15 David Schleef <ds@schleef.org>
30415 * gst/colorspace/Makefile.am:
30416 * gst/colorspace/gstcolorspace.c:
30417 * gst/colorspace/gstcolorspace.h:
30418 * gst/colorspace/yuv2rgb.c:
30419 * gst/colorspace/yuv2rgb.h:
30420 Duplicate the ext/hermes colorspace plugin, and remove Hermes
30421 code and GPL code. Fix for new caps negotiation. Rewrite
30422 much of the format handling code, and some of the conversion
30423 code. Basically, rewrote almost everything. This element
30424 handles I420, YV12 to RGB conversions.
30425 * ext/hermes/Makefile.am:
30426 * ext/hermes/gsthermescolorspace.c:
30427 Rename colorspace to hermescolorspace. Fix negotiation issues.
30428 Remove non-Hermes related code. This element handles lots of
30429 RGB to RGB conversions, but no YUV.
30430 * ext/hermes/gstcolorspace.c:
30431 * ext/hermes/gstcolorspace.h:
30432 * ext/hermes/rgb2yuv.c:
30433 * ext/hermes/yuv2rgb.c:
30434 * ext/hermes/yuv2rgb.h:
30435 * ext/hermes/yuv2rgb_mmx16.s:
30436 * ext/hermes/yuv2yuv.c:
30437 * ext/hermes/yuv2yuv.h:
30440 2004-01-14 Colin Walters <walters@verbum.org>
30442 * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
30443 they've already been.
30445 2004-01-15 Benjamin Otte <in7y118@public.uni-hamburg.de>
30447 * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
30448 assume tag mode when pad is not connected
30450 2004-01-15 Benjamin Otte <in7y118@public.uni-hamburg.de>
30452 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
30453 Don't update the time of the clock
30454 (gst_alsa_sink_loop):
30455 sync to the clock given to alsasink, not the own clock
30456 * sys/oss/gstosssink.c: (gst_osssink_chain):
30458 (gst_osssink_change_state):
30460 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30461 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
30462 remove bogus code that made DISCONT events unhandled
30463 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
30464 explicitly case to double in _set_simple. (fixes 2nd warning in bug
30466 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
30467 (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
30468 (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
30469 convert g_warning because of wrong asf data to GST_WARNINGs (fixes
30470 2nd warning in bug #131502)
30472 2004-01-14 Julien MOUTTE <julien@moutte.net>
30474 * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
30475 (gst_videobalance_colorbalance_set_value),
30476 (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
30477 for colorbalance interface implementation.
30478 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
30479 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
30480 (gst_ximagesink_dispose), (gst_ximagesink_init),
30481 (gst_ximagesink_class_init): Adding DISPLAY property.
30482 * sys/ximage/ximagesink.h: Adding display_name to store display.
30483 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30484 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
30485 (gst_xvimagesink_dispose), (gst_xvimagesink_init),
30486 (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
30487 properties (they still need polishing though for gst-launch use : no
30488 xcontext yet, i ll do that tomorrow).
30489 * sys/xvimage/xvimagesink.h: Adding display_name to store display.
30491 2004-01-14 Julien MOUTTE <julien@moutte.net>
30493 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
30494 (gst_play_set_location), (gst_play_set_visualization): Preparing
30495 switch integration, adding videobalance in the pipeline.
30497 2004-01-14 Julien MOUTTE <julien@moutte.net>
30499 * gst-libs/gst/colorbalance/colorbalance.c:
30500 (gst_color_balance_class_init): Adding a default type.
30501 * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
30503 * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
30504 (gst_videobalance_dispose), (gst_videobalance_class_init),
30505 (gst_videobalance_init), (gst_videobalance_interface_supported),
30506 (gst_videobalance_interface_init),
30507 (gst_videobalance_colorbalance_list_channels),
30508 (gst_videobalance_colorbalance_set_value),
30509 (gst_videobalance_colorbalance_get_value),
30510 (gst_videobalance_colorbalance_init): Implementing colorbalance
30512 * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
30514 * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
30515 bug which was triggering a BadAccess X error when setting an overlay
30516 before pad was really negotiated.
30517 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
30518 Using the colorbalance type macro.
30520 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30522 * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
30523 (gst_flacenc_chain):
30524 handle tags correctly
30525 * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
30526 extract ID3v1 tags correctly
30528 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
30530 * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
30532 Improve matroska typefinding for odd-typed headers...
30534 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
30536 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
30537 Fix for using incremental number on padnames.
30539 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
30541 * ext/divx/gstdivxdec.c:
30542 * ext/divx/gstdivxenc.c:
30543 Set category to divx4linux instead of divx (too generic).
30544 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
30545 (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
30546 (gst_wavparse_loop), (gst_wavparse_change_state):
30547 * gst/wavparse/gstwavparse.h:
30548 fix parsing of WAV files with non-standard fmt-tag size and fix
30549 skipping of unrecognized chunks... Someone please fix this thing
30550 to use rifflib so all this is automated.
30551 * sys/v4l/Makefile.am:
30552 * sys/v4l2/Makefile.am:
30553 Add X_CFLAGS because we depend on X (for overlay).
30555 2004-01-14 Jan Schmidt <thaytan@mad.scientist.com>
30557 * ext/mpeg2dec/gstmpeg2dec.c:
30558 Don't issue a timestamp unless we tagged the frame
30561 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30563 * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
30564 Query the audio element to get the time, not the clock. We're
30565 interested in the element's time here.
30567 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30569 * ext/aalib/gstaasink.c: (gst_aasink_chain):
30570 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
30571 * ext/esd/esdsink.c: (gst_esdsink_chain):
30572 * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
30573 * ext/mas/massink.c: (gst_massink_chain):
30574 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
30575 * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
30576 (gst_matroska_demux_parse_metadata):
30577 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
30578 (gst_mpeg_parse_release_locks):
30579 * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
30580 * gst/udp/gstudpsink.c: (gst_udpsink_chain):
30581 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30582 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
30583 (gst_osssink_change_state):
30584 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
30585 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30586 * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
30587 (gst_xvideosink_release_locks):
30588 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
30590 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
30591 (gst_alsa_clock_stop):
30592 * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
30593 (gst_audio_clock_get_internal_time):
30594 simplify for use with new clocking code.
30595 * testsuite/alsa/Makefile.am:
30596 * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
30597 fix testsuite for new caps system
30599 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30601 * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
30602 * ext/flac/gstflacenc.c: (add_one_tag):
30603 length is already host endian, no need to convert. Fixes playback of
30604 tagged files on PPC. (bug #128384)
30606 2004-01-13 Julien MOUTTE <julien@moutte.net>
30608 * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
30609 colorbalance interface stating if it is hardware based or software
30611 * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
30612 Removing a trailing comma.
30613 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30614 (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
30615 Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
30616 the documentation seems to be wrong on the -1000 to 1000 interval.
30618 2004-01-12 David Schleef <ds@schleef.org>
30620 * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
30621 (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
30622 (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
30623 Fix negotiation. Add a bufferalloc function for the sink pad,
30624 and generally clean up some of the code.
30626 2004-01-12 Julien MOUTTE <julien@moutte.net>
30628 * gst-libs/gst/colorbalance/colorbalancechannel.c:
30629 (gst_color_balance_channel_dispose): Adding safety check in dispose
30631 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30632 (gst_xvimagesink_xcontext_clear),
30633 (gst_xvimagesink_interface_supported),
30634 (gst_xvimagesink_colorbalance_list_channels),
30635 (gst_xvimagesink_colorbalance_set_value),
30636 (gst_xvimagesink_colorbalance_get_value),
30637 (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
30638 Adding colorbalance interface support to set XV parameters such as
30639 HUE, BRIGHTNESS, CONTRAST, SATURATION.
30640 * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
30643 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
30645 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
30646 (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
30647 (gst_audio_convert_init), (gst_audio_convert_set_property),
30648 (gst_audio_convert_get_property), (gst_audio_convert_chain),
30649 (gst_audio_convert_link),
30650 (gst_audio_convert_buffer_to_default_format),
30651 (gst_audio_convert_buffer_from_default_format), (plugin_init):
30652 - implement _getcaps and use it
30654 - remove float caps since no float conversion is actually done
30655 - remove properties and arguments that were to be used for rate
30658 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
30660 * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
30661 (gst_audio_structure_set_int):
30662 * gst-libs/gst/audio/audio.h:
30663 add helper functions for _getcaps matching the standard audio
30666 2004-01-12 David Schleef <ds@schleef.org>
30668 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
30669 Test that pad is negotiated before getting its caps.
30671 2004-01-12 Julien MOUTTE <julien@moutte.net>
30673 * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
30674 analyzing the pads of an element the bin is mostly in READY state so
30675 no caps were negotiated. This helper function needs to work with
30676 _get_caps directly then. I was not freeing them though, added that to
30679 2004-01-12 Julien MOUTTE <julien@moutte.net>
30681 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30682 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
30683 direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
30684 than the free_func.
30686 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
30688 * sys/oss/gstossaudio.c: (plugin_init):
30689 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
30690 * sys/oss/gstosselement.h:
30691 make an oss debugging category
30692 make failure more descriptive
30694 2004-01-11 David Schleef <ds@schleef.org>
30696 * ext/ffmpeg/gstffmpeg.c:
30697 * ext/ffmpeg/gstffmpegcodecmap.c:
30698 * ext/ffmpeg/gstffmpegdec.c:
30699 * ext/ffmpeg/gstffmpegenc.c:
30700 * ext/ffmpeg/gstffmpegprotocol.c:
30701 * ext/gdk_pixbuf/gstgdkanimation.c:
30702 * ext/jpeg/gstjpeg.c:
30703 * ext/libpng/gstpng.c:
30704 * ext/mpeg2dec/perftest.c:
30705 * ext/speex/gstspeex.c:
30706 * gst-libs/gst/resample/dtos.c:
30707 * gst/intfloat/gstintfloatconvert.c:
30708 * gst/oneton/gstoneton.c:
30709 * gst/rtjpeg/RTjpeg.c:
30710 * gst/rtp/gstrtp.c:
30711 * sys/dxr3/dxr3init.c:
30712 * sys/glsink/gstgl_nvimage.c:
30713 * sys/glsink/gstgl_pdrimage.c:
30714 * sys/glsink/gstglsink.c:
30715 * testsuite/gst-lint:
30716 Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
30718 2004-01-11 David Schleef <ds@schleef.org>
30720 * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
30721 * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
30722 * ext/gdk_pixbuf/gstgdkanimation.c:
30723 (gst_gdk_animation_iter_create_pixbuf):
30724 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
30725 (gst_gdk_pixbuf_chain):
30726 * ext/gdk_pixbuf/gstgdkpixbuf.h:
30727 * ext/jack/gstjack.c: (gst_jack_change_state):
30728 * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
30729 * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
30730 * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
30731 * gst/videofilter/gstvideofilter.c:
30732 (gst_videofilter_set_output_size):
30733 Remove all usage of gst_pad_get_caps(), and replace it with
30734 gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
30736 2004-01-11 David Schleef <ds@schleef.org>
30739 * ext/Makefile.am: Fixes to make ext/libcaca compile.
30740 * ext/divx/gstdivxdec.c:
30741 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
30742 (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
30743 handle images that span multiple buffers. Now work with both
30744 filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
30745 * ext/gdk_pixbuf/gstgdkpixbuf.h:
30746 * ext/libcaca/gstcacasink.h: Fixes needed due to recent
30747 video/video.h changes
30748 * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
30749 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30750 (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
30751 of GstData free function.
30752 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
30755 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
30757 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
30758 (gst_v4l2element_dispose), (gst_v4l2element_set_property),
30759 (gst_v4l2element_get_property):
30760 * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
30761 add norm, channel and frequency properties.
30762 * sys/v4l2/gstv4l2tuner.c:
30763 fixes for tuner interface changes
30764 * sys/v4l2/gstv4l2element.h:
30765 * sys/v4l2/gstv4l2src.c:
30766 * sys/v4l2/gstv4l2src.h:
30767 * sys/v4l2/v4l2src_calls.c:
30768 * sys/v4l2/v4l2src_calls.h:
30769 rework v4l2src to work with saa1734 cards and allow mmaped buffers.
30771 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
30773 * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
30774 (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
30775 (gst_tuner_channel_changed), (gst_tuner_norm_changed),
30776 (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
30777 * gst-libs/gst/tuner/tuner.h:
30778 GObjects aren't const.
30779 Add find_by_name functions.
30780 Add checks to _changed functions.
30781 * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
30782 (gst_v4l_tuner_get_norm):
30785 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
30787 * gst-libs/gst/video/video.h:
30788 Fix caps template names to be understandable.
30789 Prefix everything with GST_VIDEO.
30790 * ext/aalib/gstaasink.c:
30791 * ext/divx/gstdivxdec.c:
30792 * ext/divx/gstdivxenc.c:
30793 * ext/gdk_pixbuf/gstgdkpixbuf.c:
30794 * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
30795 * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
30796 * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
30797 * ext/libcaca/gstcacasink.c:
30798 * ext/libpng/gstpngenc.c: (raw_caps_factory):
30799 * ext/snapshot/gstsnapshot.c:
30800 * ext/swfdec/gstswfdec.c:
30801 * ext/xvid/gstxviddec.c:
30802 * ext/xvid/gstxvidenc.c:
30803 * gst/chart/gstchart.c:
30804 * gst/deinterlace/gstdeinterlace.c:
30805 * gst/effectv/gsteffectv.c:
30806 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
30807 * gst/goom/gstgoom.c:
30808 * gst/median/gstmedian.c:
30809 * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
30810 (gst_monoscope_srcconnect), (gst_monoscope_chain):
30811 * gst/overlay/gstoverlay.c:
30812 * gst/smooth/gstsmooth.c:
30813 * gst/smpte/gstsmpte.c:
30814 * gst/synaesthesia/gstsynaesthesia.c:
30815 * gst/videocrop/gstvideocrop.c:
30816 * gst/videodrop/gstvideodrop.c:
30817 * gst/y4m/gsty4mencode.c:
30818 * sys/qcam/gstqcamsrc.c:
30819 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
30820 Make them work with new video.h file.
30821 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30822 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
30823 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30824 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
30825 Make it work with new buffer allocation system.
30827 2004-01-11 Julien MOUTTE <julien@moutte.net>
30829 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
30830 pad_alloc_buffer implementation to use ->srcpad
30831 * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
30832 pad_alloc_buffer implementation to use ->srcpad
30833 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Fixing the
30834 pad_alloc_buffer implementation to use ->srcpad
30835 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
30836 (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
30837 (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
30838 a reference to everything we need.
30839 * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
30840 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
30841 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
30842 (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
30843 a reference to everything we need.
30844 * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
30846 2004-01-11 David Schleef <ds@schleef.org>
30848 * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
30849 * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
30850 (gst_fenced_buffer_default_copy): Fix for rename of buffer private
30852 * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
30853 value during a resize/renegotiation.
30854 * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
30855 gst_pad_alloc_buffer();
30856 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30857 (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
30859 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
30860 Fix for rename of buffer private structure members.
30861 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30862 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
30863 Fix for rename of buffer private structure members.
30864 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30865 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
30866 Fix for rename of buffer private structure members.
30868 2004-01-11 Arwed v. Merkatz <v.merkatz@gmx.net>
30870 reviewed by: David Schleef <ds@schleef.org>
30872 * gst/videofilter/Makefile.am:
30873 * gst/videofilter/gstgamma.c: Gamma correction filter. Modified
30874 from the patch by ds to fit in with recent make_filter changes.
30876 2004-01-11 Julien MOUTTE <julien@moutte.net>
30878 * configure.ac: Adding examples/switch/Makefile
30879 * examples/Makefile.am: Adding examples/switch
30880 * examples/switch/Makefile.am: Adding switcher example.
30881 * examples/switch/switcher.c: (got_eos), (idle_iterate),
30882 (switch_timer), (main): Adding an example demonstrating switch usage
30883 with 2 videotestsrc showing different patterns.
30884 * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
30885 (gst_switch_init): Fixing switch with the new caps system.
30887 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
30889 * gst-libs/gst/video/video.h:
30890 Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
30891 They should probably be like
30892 GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
30894 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
30896 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
30897 (qtdemux_parse_trak):
30898 fix audio chunk size/timestamp calculation
30900 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
30902 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
30905 2004-01-11 Steve Baker <steve@stevebaker.org>
30907 * gst/effectv/gstaging.c: (gst_agingtv_get_type),
30908 (gst_agingtv_base_init), (gst_agingtv_class_init),
30909 (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
30910 (gst_agingtv_set_property), (gst_agingtv_get_property):
30911 Port agingTV to videofilter
30913 2004-01-09 Julien MOUTTE <julien@moutte.net>
30915 * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
30916 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30918 2004-01-09 Julien MOUTTE <julien@moutte.net>
30920 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
30921 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30922 * gst-libs/gst/xoverlay/xoverlay.c:
30923 (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
30924 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
30925 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30926 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30927 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30928 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30929 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
30930 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
30931 the bufferalloc_function to replace bufferpools, fixing the XOverlay
30932 interface implementation to handle xid being 0 and fix some bugs
30933 triggered by Benjamin's testcase.
30934 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30935 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
30936 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
30937 the bufferalloc_function to replace bufferpools, fixing the XOverlay
30938 interface implementation to handle xid being 0 and fix some bugs
30939 triggered by Benjamin's testcase.
30941 2004-01-09 David Schleef <ds@schleef.org>
30943 * ext/librfb/gstrfbsrc.c: Hacking. Added actual decoding and
30944 mouse pointer events. It works.
30946 2004-01-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
30948 * ext/divx/gstdivxenc.c: (gst_divxenc_init):
30949 Use explicit caps - fix capsnego.
30950 * ext/xvid/gstxviddec.c:
30951 * ext/xvid/gstxvidenc.c:
30952 Remove macro-inside-macro which caused compile errors.
30953 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
30954 Error out if it's not a RIFF file. Else we error out without
30955 gst_element_error() which is not good...
30957 2004-01-08 David Schleef <ds@schleef.org>
30959 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
30960 Fix pad_link function to handle formats that ffmpeg returns
30961 as multiple caps structures.
30962 * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
30963 Only complain if source buffer is _smaller_ than expected.
30964 * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
30965 (gst_videoscale_handle_src_event): Resize navigation events
30966 when passing them upstream.
30967 * gst/videotestsrc/gstvideotestsrc.c:
30968 * gst/videotestsrc/gstvideotestsrc.h:
30969 * gst/videotestsrc/videotestsrc.c:
30970 * gst/videotestsrc/videotestsrc.h:
30971 Rewrite many of the buffer painting functions to handle odd
30972 sizes (for many formats, size%4!=0 or size%8!=0). Most have
30973 been verified to work with my video card.
30974 * testsuite/gst-lint: Add check for elements calling
30975 gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
30977 2004-01-08 David Schleef <ds@schleef.org>
30979 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
30980 (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
30982 2004-01-08 Julien MOUTTE <julien@moutte.net>
30984 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
30985 configure event is not emiting the desired size signal. That fixes
30986 aspect ratio issues with gst-player.
30988 2004-01-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
30990 * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
30993 2004-01-08 Julien MOUTTE <julien@moutte.net>
30995 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
30996 public method to fire size signal.
30998 2004-01-07 Julien MOUTTE <julien@moutte.net>
31000 * examples/gstplay/Makefile.am: Adding the interface library.
31001 * gst-libs/gst/play/Makefile.am: Adding the interface library.
31002 * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to the XOverlay size signal instead of GstVideoSink.
31003 * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
31004 GST_IS_X_OVERLAY before signal connect.
31005 * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
31006 Removing the have_video_size signal.
31007 * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
31008 and associated public method.
31009 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
31010 (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
31012 * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
31013 (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
31015 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
31016 Using XOverlay public method to fire size signal.
31018 2004-01-07 David Schleef <ds@schleef.org>
31020 * gst/videofilter/Makefile.am:
31021 * gst/videofilter/gstvideotemplate.c:
31022 * gst/videofilter/make_filter:
31023 Create gstvideoexample.c in a srcdir!=builddir friendly way.
31024 Convert make_filter to /bin/sh script.
31026 2004-01-07 Thomas Vander Stichele <thomas at apestaart dot org>
31028 * gst/modplug/gstmodplug.cc: fix element description
31030 2004-01-07 Julien MOUTTE <julien@moutte.net>
31032 * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
31033 (got_video_size): Adding some new lines in g_print calls.
31034 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
31035 (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
31036 (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
31037 (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
31038 (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
31039 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
31040 Complete code review, reverting some stuff i disagree with, adding
31041 some fixes : time synchronization on invalid timestamps, renegotiation
31043 * sys/ximage/ximagesink.h:
31044 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
31045 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
31046 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
31047 (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
31048 (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
31049 (gst_xvimagesink_buffer_new),
31050 (gst_xvimagesink_navigation_send_event),
31051 (gst_xvimagesink_set_xwindow_id),
31052 (gst_xvimagesink_get_desired_size),
31053 (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
31054 stuff i disagree with, adding some fixes : Renegotiation of private
31055 window, implementing get_desired_size.
31057 2004-01-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
31059 * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
31060 (gst_afsink_handle_event):
31061 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
31062 * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
31063 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
31064 * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
31065 * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
31066 Fix for instantiate-test (see core). Also remove dead code from
31067 jpegenc (which still needs fixing, but that's lower on my TODO
31069 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
31070 Never return NULL as caps.
31072 2004-01-07 David Schleef <ds@schleef.org>
31076 * ext/librfb/Makefile.am:
31077 * ext/librfb/gstrfbsrc.c:
31078 New source plugin based on librfb-0.1. RFB (remote framebuffer)
31079 is the protocol used by VNC.
31081 2004-01-07 David Schleef <ds@schleef.org>
31083 * gst/videofilter/gstvideotemplate.c:
31084 * gst/videofilter/gstvideotemplate.h:
31085 * gst/videofilter/make_filter:
31086 Merge videotemplate header into source file.
31087 * gst/effectv/Makefile.am:
31088 * gst/effectv/gsteffectv.c: (plugin_init):
31089 * gst/effectv/gstwarp.c:
31090 Make warpTV a subclass of videofilter.
31092 2004-01-07 Benjamin Otte <in7y118@public.uni-hamburg.de>
31094 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
31095 Add guard against invalid utf-8 conversions in mad. Just in case.
31097 2004-01-07 Benjamin Otte <in7y118@public.uni-hamburg.de>
31099 * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
31100 Fix for bug shown by poisoning
31102 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
31104 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
31105 (gst_v4lmjpegsrc_buffer_free):
31106 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
31107 (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
31108 (gst_v4lsrc_buffer_free):
31109 Fix for removed bufferpools.
31111 2004-01-07 Jan Schmidt <thaytan@mad.scientist.com>
31113 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
31114 Fix caps negotiation.
31116 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
31117 (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
31118 (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
31120 * ext/mpeg2dec/gstmpeg2dec.c:
31121 * gst-libs/gst/navigation/navigation.c:
31122 (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
31123 * gst-libs/gst/navigation/navigation.h:
31124 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
31125 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
31126 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
31127 Super-simple first version of mouse and keyboard events. Clicking
31128 on a DVD menu now works, although it may not take you where you
31131 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
31132 * gst/videotestsrc/gstvideotestsrc.c:
31133 (gst_videotestsrc_src_fixate):
31134 These fixate functions were broken - they never actually
31137 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
31139 * ext/shout/gstshout.c: (gst_icecastsend_base_init),
31140 (gst_icecastsend_init):
31141 fix for new caps system.
31142 * gst-libs/gst/mixer/mixertrack.h:
31143 * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
31144 Add 'master track' flag (for tools like ACME that only want to
31145 change the main volume).
31147 2004-01-07 Jan Schmidt <thaytan@mad.scientist.com>
31149 * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
31150 (gst_xvid_csp_to_caps):
31151 * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
31152 * ext/xvid/gstxvidenc.c:
31153 ifdef out ARGB type when it isn't available
31154 in xvidcore 1.0.0beta2
31156 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
31158 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
31159 When we have received a new SCR right in the first buffer after
31160 a seek (so in the same cycle that handles the discont), we should
31161 handle the buffer instead of unreffing it, else we lose data.
31163 2004-01-06 Iain <iain@prettypeople.org>
31165 * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
31166 buffer-frames caps too.
31168 * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
31169 caps that we need, don't destroy them all and rebuild them. And when
31170 creating src pads, use the src pad template rather than the sink...
31172 2004-01-05 Ronald Bultje <rbultje@ronald.bitfreak.net>
31174 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
31175 Add pad to element *after* setting functions such as event handler.
31176 Without this, the scheduler (opt) will link pads, set the event
31177 handler from the default event function (dispatcher in gstpad.c)
31178 and *after* that, we will set our own event function, which will
31179 thus never be used (and thus mpegdemux doesn't handle events).
31181 2004-01-04 David Schleef <ds@schleef.org>
31183 Fix the fixate functions to handle new prototype:
31184 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
31185 * gst/videotestsrc/gstvideotestsrc.c:
31186 (gst_videotestsrc_src_fixate):
31187 * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
31188 * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
31189 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
31191 2004-01-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
31193 * sys/ximage/ximagesink.h:
31194 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
31195 (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
31196 (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
31197 (gst_ximagesink_xoverlay_init):
31198 assorted fixes to make (re)embedding work
31199 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
31200 (gst_ximagesink_get_desired_size):
31201 implement desired size additions to XOverlay
31203 2004-01-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
31205 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
31206 (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
31207 (gst_x_overlay_got_desired_size):
31208 * gst-libs/gst/xoverlay/xoverlay.h:
31209 Add optional "desired size" signal and querying.
31211 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31213 * gst/matroska/matroska-demux.c:
31214 (gst_matroska_demux_parse_blockgroup):
31215 Fix EBML-laced block parsing. Diffs are relative to previous
31216 lace, not the first lace. Thanks to Mosu from the Matroska
31217 team for detecting this.
31218 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
31219 (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
31220 (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
31221 (gst_wavparse_change_state):
31222 * gst/wavparse/gstwavparse.h:
31223 Quickfix for capsnego.
31225 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31227 * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
31228 Fix indenting, fix pad creation.
31230 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31232 * ext/xvid/gstxviddec.c: (gst_xviddec_init),
31233 (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
31234 (gst_xviddec_sink_link):
31235 Implement src_getcaps() so proper size caps is negotiated.
31237 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31239 * ext/flac/gstflacdec.c: (gst_flacdec_loop):
31240 Finish flac decoder on EOS. See #116178.
31242 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31244 * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
31245 (gst_matroska_demux_add_stream):
31246 * gst/matroska/matroska-ids.h:
31247 Add getcaps() function to fix capsnego...
31249 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31251 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
31252 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
31253 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
31254 Fix more integer overflows. Again, see #126967.
31256 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31258 * ext/mpeg2dec/gstmpeg2dec.c:
31259 Add support for mpeg2dec-0.4.0 (released two weeks ago). See
31262 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31265 * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
31266 (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
31267 * ext/xvid/gstxvid.h:
31268 * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
31269 (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
31270 (gst_xviddec_src_link), (gst_xviddec_sink_link),
31271 (gst_xviddec_change_state):
31272 * ext/xvid/gstxviddec.h:
31273 * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
31274 (gst_xvidenc_base_init), (gst_xvidenc_class_init),
31275 (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
31276 (gst_xvidenc_link), (gst_xvidenc_set_property),
31277 (gst_xvidenc_get_property), (gst_xvidenc_change_state):
31278 * ext/xvid/gstxvidenc.h:
31279 Update xvid plugin to latest xvid (1.0.0-beta3) API.
31281 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31283 * gst/rtp/rtp-packet.c:
31284 Add sys/types.h include, since OS X doesn't define in_addr_t
31285 in netinet/in.h, like it does on Linux (see #129600).
31287 2004-01-03 Thomas Canty <tommydal@optushome.com.au>
31289 reviewed by: Ronald Bultje <rbultje@ronald.bitfreak.net>
31291 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
31292 Correct logic of dispose function (see #129306).
31294 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31296 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
31297 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
31298 (gst_mpeg_parse_init):
31299 * gst/mpegstream/gstmpegparse.h:
31300 Remove clock (which was never provided, i.e. dead code), and
31301 also fix integer overflows at high PTS values (see #126967).
31303 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31305 * ext/flac/gstflacdec.c:
31306 * ext/libpng/gstpngenc.h:
31307 * ext/mikmod/gstmikmod.h:
31308 OS X fixes (see #126628).
31310 2004-01-02 David Schleef <ds@schleef.org>
31312 * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
31313 (gst_alsa_src_base_init): Remove bogus "src" request pad.
31314 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
31315 (gst_mpeg_parse_class_init): Move pad template registration
31316 to class_init, since the derived class (mpegdemux) doesn't
31319 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31321 * sys/ximage/Makefile.am:
31322 * sys/xvideo/Makefile.am:
31323 * sys/xvimage/Makefile.am:
31324 Move interface libs from LDFLAGS to LIBADD, fix relocation errors
31325 after installation (see #127664).
31327 2004-01-02 David Schleef <ds@schleef.org>
31329 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
31330 (gst_ffmpegenc_connect): Negotiation fixes.
31331 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
31332 Remove inappropriate gst_caps_free().
31333 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31334 Reenable Ronald's internal resize code, since the core handles
31337 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
31339 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
31340 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
31341 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
31342 Fix pad template stuff.
31344 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
31346 * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
31347 * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
31348 fix signed integer reading/writing.
31350 2004-01-02 Benjamin Otte <in7y118@public.uni-hamburg.de>
31353 Remove outdated document
31355 2004-01-03 Jan Schmidt <thaytan@mad.scientist.com>
31357 * gst/cutter/gstcutter.c: (gst_cutter_init):
31358 src pad was being created twice - oops.
31360 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
31362 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31363 Comment out internal resize. It doesn't handle the resulting
31364 XEvent internally, does another try_set_caps() which leads to
31365 a really nice loop.
31366 Real fix will come when Julien and Dave are awake. ;).
31368 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
31370 * ext/mpeg2enc/gstmpeg2enc.cc:
31371 fix const/nonconst compile issue.
31373 2004-01-02 David Schleef <ds@schleef.org>
31375 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
31376 (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
31377 Add fixate function and a check for bad formats.
31379 2004-01-01 David Schleef <ds@schleef.org>
31382 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
31383 (gst_audiofilter_init):
31384 * gst/debug/efence.c: (gst_efence_init):
31385 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
31386 (gst_deinterlace_init):
31387 * gst/volume/gstvolume.c: (volume_connect):
31389 2004-01-01 David Schleef <ds@schleef.org>
31391 Convert elements to use gst_pad_use_explicit_caps() where
31393 * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
31394 * ext/audiofile/gstafparse.c: (gst_afparse_init),
31395 (gst_afparse_open_file):
31396 * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
31397 (gst_afsrc_open_file):
31398 * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
31399 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
31400 (gst_ffmpegdec_chain):
31401 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
31402 * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
31403 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
31404 (gst_gdk_pixbuf_chain):
31405 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
31406 (gst_jpegdec_chain):
31407 * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
31408 * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
31409 (gst_mikmod_negotiate):
31410 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
31411 (gst_mpeg2dec_negotiate_format):
31412 * ext/mpeg2enc/gstmpeg2enc.cc:
31413 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
31414 * ext/speex/gstspeexdec.c: (gst_speexdec_init),
31415 (gst_speexdec_sinkconnect):
31416 * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
31417 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
31418 (gst_vorbisfile_new_link):
31419 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
31420 (gst_ac3parse_chain):
31421 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
31422 (gst_asf_demux_setup_pad):
31423 * gst/auparse/gstauparse.c: (gst_auparse_init),
31424 (gst_auparse_chain):
31425 * gst/id3/gstid3types.c: (gst_id3types_loop):
31426 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
31427 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
31428 (mp1videoparse_parse_seq):
31429 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
31431 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
31432 (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
31433 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
31434 (gst_mpeg_parse_send_data):
31435 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
31436 (gst_qtdemux_add_stream):
31437 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
31438 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
31439 (gst_wavparse_parse_fmt):
31441 2004-01-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
31444 Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
31445 1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
31446 it therefore uses the wrong include paths. Too bad... Note
31447 that 1.6.1.93 is not release yet. ;).
31448 Also add a check for mplex, which is now using the lib'ified
31449 mplex from mjpegtools, too.
31450 * ext/ffmpeg/gstffmpegcodecmap.c:
31451 Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
31452 issues. I don't think ffmpeg handles 3ivx correctly, so this
31453 probably won't work. But it won't hurt either.
31454 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
31455 (gst_ffmpegdec_chain):
31456 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
31457 (gst_ffmpegenc_chain_audio):
31458 Fix memleak in audio encoding. Close codec if open fails, this
31459 calls the cleanup routines so we can re-use the context.
31460 * ext/mpeg2enc/gstmpeg2enc.cc:
31461 Fix pad template names/types, fix memory issue with getcaps().
31462 * ext/mpeg2enc/gstmpeg2encoder.cc:
31463 * ext/mpeg2enc/gstmpeg2encoder.hh:
31464 Fix compile issue with new caps system (const thingy).
31465 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
31466 * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
31467 We read a first frame right on initing, so that we have a caps
31468 when we init the output. This caps is cached in padprivate and
31469 read as first frame.
31470 * ext/mplex/Makefile.am:
31471 * ext/mplex/gstmplex.cc:
31472 * ext/mplex/gstmplex.h:
31473 * ext/mplex/gstmplex.hh:
31474 * ext/mplex/gstmplexibitstream.cc:
31475 * ext/mplex/gstmplexibitstream.hh:
31476 * ext/mplex/gstmplexjob.cc:
31477 * ext/mplex/gstmplexjob.hh:
31478 * ext/mplex/gstmplexoutputstream.cc:
31479 * ext/mplex/gstmplexoutputstream.hh:
31480 We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
31481 had issues, didn't do capsnego, supported only a subset of the
31482 mplex features and required a mplex fork in our local CVS. Plus
31483 that it worked agaist a very old mplex version. Rewriting was
31484 faster than updating it.
31485 * gst-libs/ext/Makefile.am:
31486 * gst-libs/ext/mplex/INSTRUCT:
31487 * gst-libs/ext/mplex/Makefile.am:
31488 * gst-libs/ext/mplex/README:
31489 * gst-libs/ext/mplex/TODO:
31490 * gst-libs/ext/mplex/ac3strm_in.cc:
31491 * gst-libs/ext/mplex/audiostrm.hh:
31492 * gst-libs/ext/mplex/audiostrm_out.cc:
31493 * gst-libs/ext/mplex/aunit.hh:
31494 * gst-libs/ext/mplex/bits.cc:
31495 * gst-libs/ext/mplex/bits.hh:
31496 * gst-libs/ext/mplex/buffer.cc:
31497 * gst-libs/ext/mplex/buffer.hh:
31498 * gst-libs/ext/mplex/fastintfns.h:
31499 * gst-libs/ext/mplex/format_codes.h:
31500 * gst-libs/ext/mplex/inputstrm.cc:
31501 * gst-libs/ext/mplex/inputstrm.hh:
31502 * gst-libs/ext/mplex/lpcmstrm_in.cc:
31503 * gst-libs/ext/mplex/mjpeg_logging.cc:
31504 * gst-libs/ext/mplex/mjpeg_logging.h:
31505 * gst-libs/ext/mplex/mjpeg_types.h:
31506 * gst-libs/ext/mplex/mpastrm_in.cc:
31507 * gst-libs/ext/mplex/mpegconsts.cc:
31508 * gst-libs/ext/mplex/mpegconsts.h:
31509 * gst-libs/ext/mplex/mplexconsts.hh:
31510 * gst-libs/ext/mplex/multplex.cc:
31511 * gst-libs/ext/mplex/outputstream.hh:
31512 * gst-libs/ext/mplex/padstrm.cc:
31513 * gst-libs/ext/mplex/padstrm.hh:
31514 * gst-libs/ext/mplex/stillsstream.cc:
31515 * gst-libs/ext/mplex/stillsstream.hh:
31516 * gst-libs/ext/mplex/systems.cc:
31517 * gst-libs/ext/mplex/systems.hh:
31518 * gst-libs/ext/mplex/vector.cc:
31519 * gst-libs/ext/mplex/vector.hh:
31520 * gst-libs/ext/mplex/videostrm.hh:
31521 * gst-libs/ext/mplex/videostrm_in.cc:
31522 * gst-libs/ext/mplex/videostrm_out.cc:
31523 * gst-libs/ext/mplex/yuv4mpeg.cc:
31524 * gst-libs/ext/mplex/yuv4mpeg.h:
31525 * gst-libs/ext/mplex/yuv4mpeg_intern.h:
31526 * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
31527 We don't fork mjpegtools' mplex in our CVS anymore.
31528 * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
31529 (gst_avi_demux_add_stream):
31530 * gst/avi/gstavidemux.h:
31531 Add getcaps() function for proper caps nego. This makes some
31532 parts of AVI playback/reading work.
31533 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31534 Resize window on new capsnego. This is probably wrong, but
31535 I'm still committing it because with current capsnego, the
31536 first successfull capsnego is auto-fixated, therefore rounded
31537 down to the lowest values in the caps. this results in a 16x16
31538 XWindow that is not reized when real capsnego finishes.
31539 Dave, I see more cases of this, do you know a proper solution?
31540 * tools/gst-launch-ext.in:
31541 Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
31543 2003-12-31 David Schleef <ds@schleef.org>
31545 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
31546 * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
31547 Change gst_pad_proxy_link() to gst_pad_try_set_caps()
31549 2003-12-30 David Schleef <ds@schleef.org>
31551 * ext/ffmpeg/gstffmpegcolorspace.c:
31552 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
31553 (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
31554 (gst_ffmpegcsp_chain): Negotiation fixes
31555 * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
31556 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
31557 (gst_audio_convert_link), (gst_audio_convert_channels):
31558 * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
31559 (gst_audioscale_link), (gst_audioscale_get_buffer),
31560 (gst_audioscale_chain): Negotiation fixes
31561 * gst/audioscale/gstaudioscale.h:
31562 * gst/videofilter/gstvideofilter.c:
31563 (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
31564 (gst_videofilter_link), (gst_videofilter_init),
31565 (gst_videofilter_set_output_size), (gst_videofilter_setup),
31566 (gst_videofilter_find_format_by_structure):
31567 * gst/videofilter/gstvideofilter.h: Negotiation fixes
31568 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
31569 (gst_videoscale_link):
31570 * gst/videoscale/videoscale.c: (videoscale_get_structure),
31571 (videoscale_find_by_structure), (gst_videoscale_setup):
31572 * gst/videoscale/videoscale.h: Negotiation fixes
31573 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
31574 (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
31575 function, restrict resizing to a multiple of 4 (hack until
31576 everyone supports odd sizes correctly).
31578 2003-12-29 Colin Walters <walters@verbum.org>
31580 * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
31583 2003-12-30 Jan Schmidt <thaytan@mad.scientist.com>
31585 * ext/sndfile/gstsf.c: (gst_sf_loop):
31586 Fix warning about discarding const qualifier
31588 2003-12-27 Jeremy Simon <jesimon@libertysurf.fr>
31590 * gst/cutter/gstcutter.c:
31591 * gst/videoscale/gstvideoscale.c:
31592 * gst/volenv/gstvolenv.c:
31593 * gst-libs/gst/audio/audio.c:
31594 * gst-libs/gst/video/video.c:
31597 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31599 * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
31600 Don't send ALSA debugging to stderr.
31601 * ext/alsa/gstalsa.h:
31602 Use GST_WARNING instead of g_warning when ALSA functions fail.
31604 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31606 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
31607 Free XVAdapterInfo correctly.
31609 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31611 * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
31612 (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
31613 Make id3tag use correct caps nego.
31615 2003-12-27 Amaury Jacquot <sxpert@esitcom.org>
31617 * ext/ivorbis/vorbis.c:
31618 * ext/ivorbis/vorbisenc.h:
31619 * ext/ivorbis/vorbisfile.c:
31620 Modify so that it uses the new caps things
31622 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31624 * testsuite/spider/spider1.c: (main):
31625 * testsuite/spider/spider2.c: (main):
31626 * testsuite/spider/spider3.c: (main):
31627 Make tests compile again. They probably don't work.
31629 2003-12-24 Colin Walters <walters@verbum.org>
31631 * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
31632 we can't fixate the caps anymore.
31634 2003-12-23 David Schleef <ds@schleef.org>
31636 * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
31637 * sys/oss/gstosssink.c: (gst_osssink_init),
31638 (gst_osssink_sink_fixate): Add fixate function.
31640 2003-12-24 Ronald Bultje <rbultje@ronald.bitfreak.net>
31642 * ext/ffmpeg/gstffmpegcodecmap.c:
31643 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
31644 (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
31645 (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
31646 (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
31647 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
31648 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
31649 (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
31650 fix typo in RGB masks, and move back to "old" colorspace
31651 capsnego code until whoever wrote this new crap has actually
31652 tested it so that it works.
31653 And yes, this works, keep it that way please.
31655 2003-12-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
31657 * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
31658 (gst_divxdec_init), (gst_divxdec_negotiate):
31659 * ext/divx/gstdivxdec.h:
31660 * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
31661 (gst_divxenc_init):
31662 * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
31663 (gst_faac_sinkconnect), (gst_faac_srcconnect):
31664 * ext/mpeg2enc/gstmpeg2enc.cc:
31665 * ext/mpeg2enc/gstmpeg2encoder.cc:
31666 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
31667 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
31668 (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
31669 * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
31670 (dxr3spusink_init):
31671 * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
31672 (dxr3videosink_init):
31673 Fix caps breakage after Dave's caps branch merge.
31675 2003-12-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
31677 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
31678 Fix for 24bpp display.
31680 2003-12-23 Colin Walters <walters@verbum.org>
31682 * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
31683 a GnomeVFSHandle directly.
31685 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31687 * gst/volume/Makefile.am:
31688 * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
31689 (volume_base_init), (volume_init):
31690 Reenable volume element and fix to work with new caps stuff.
31691 Rhythmbox needs this.
31693 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31695 * gst/qtdemux/qtdemux.c: (plugin_init):
31696 qtdemux requires bytestream
31698 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31700 * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
31701 Fix remaining caps handling errors due to CAPS merge.
31703 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31705 * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
31706 (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
31707 (gst_faad_srcconnect):
31708 Port to new caps system.
31710 2003-12-21 Julien MOUTTE <julien@moutte.net>
31712 * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
31713 (got_video_size), (main): using g_print instead of g_message.
31714 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
31715 signal which was not emitted because of "switch" element added to the
31716 bin but not connected. (Removing from the bin temporarily)
31718 2003-12-21 Julien MOUTTE <julien@moutte.net>
31720 * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
31721 find X development files. I don't understand the previous tests and
31722 they fail on my debian/ppc unstable. This one works.
31723 * examples/gstplay/player.c: (main): Set the pipeline to READY before
31725 * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
31726 (gst_play_set_video_sink), (gst_play_set_audio_sink),
31727 (gst_play_set_visualization): Add some safety checks in set_ methods
31728 and state_change. This was throwing some ugly CRITICAL messages when
31729 pipeline was getting disposed and casts were failing.
31731 2003-12-21 Ronald Bultje <rbultje@ronald.bitfreak.net>
31734 Improve mpeg2enc detection. This is for distributions that do
31735 ship mjpegtools, but without mpeg2enc. Also does object check
31736 for might there ever be ABI incompatibility.
31737 * ext/mpeg2enc/gstmpeg2enc.cc:
31738 Add Andrew as second maintainer (he's helping me), and also add
31739 an error if no caps was set. This happens if I pull before capsnego
31740 and that's something I should solve sometime else.
31741 * gst/matroska/matroska-demux.c:
31742 (gst_matroska_demux_parse_blockgroup):
31744 * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
31745 (gst_matroska_mux_track_header):
31746 Add caps to templates.
31747 * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
31748 Add mpegversion=1 to prevent confusion with MPEG/AAC.
31749 * gst/mpegstream/gstmpegdemux.c:
31750 Remove layer since it causes warnings about unfixed caps.
31751 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
31752 Fix obvious typo (we error out if caps were set, we should of
31753 course error out if *no* caps were set).
31754 * sys/oss/gstosselement.c: (gst_osselement_convert):
31755 Fix format conversion, we confused bits/bytes.
31756 * sys/oss/gstosselement.h:
31757 Improve documentation for 'bps'.
31759 Remove stuff about plugins that need removing - this was done
31761 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
31762 (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
31763 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
31764 (gst_v4lsrc_src_query):
31765 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
31766 (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
31767 Add get_query_types(), get_formats() and query() functions.
31769 2003-12-21 Thomas Vander Stichele <thomas at apestaart dot org>
31771 * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
31772 * moved CVS to freedesktop.org