1 2007-02-28 Thomas Vander Stichele <thomas at apestaart dot org>
3 * tests/check/generic/states.c: (GST_START_TEST):
4 Copy the states.c test from core again
5 * tests/check/Makefile.am:
6 ignore cdio and cdparanoiasrc
8 2007-02-28 Stefan Kost <ensonic@users.sf.net>
10 * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
11 (double_hq), (audio_convert_get_func_index), (check_default),
12 (audio_convert_prepare_context), (audio_convert_convert):
13 Also make valgrind happy and avoid copying data in some cases.
15 2007-02-28 Stefan Kost <ensonic@users.sf.net>
17 * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
18 (double_hq), (audio_convert_get_func_index),
19 (audio_convert_prepare_context), (audio_convert_convert):
20 * gst/audioconvert/gstaudioconvert.c:
21 (gst_audio_convert_class_init), (gst_audio_convert_get_unit_size),
22 (gst_audio_convert_transform_caps):
23 * tests/check/elements/audioconvert.c: (GST_START_TEST),
25 Don't run inplace if that overwrites source data as we go. Add more
26 tests. Fixes #339837 even more.
28 2007-02-27 Julien MOUTTE <julien@moutte.net>
30 * tests/examples/seek/seek.c: (do_seek), (set_update_scale),
31 (msg_segment_done): Fix various seeking bugs (Slider was not
32 updating when doing a non flushing seek, Reverse playback
33 on segment seek was wrong).
35 2007-02-26 Wim Taymans <wim@fluendo.com>
37 * tests/examples/seek/seek.c: (stop_seek):
38 When we stop scrubbing, don't leave the pipeline PLAYING when we
39 requested a PAUSED state.
41 2007-02-25 Tim-Philipp Müller <tim at centricular dot net>
43 Patch by: René Stadler <mail at renestadler de>
45 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
46 Parse date strings in vorbis comments that have an invalid (zero)
47 month or day (#410396).
49 * tests/check/libs/tag.c: (GST_START_TEST):
50 Test case for the above.
52 2007-02-24 Tim-Philipp Müller <tim at centricular dot net>
54 Patch by: Loïc Minier <lool+gnome at via ecp fr>
57 * ext/alsa/Makefile.am:
58 * gst/audiotestsrc/Makefile.am:
59 Fix compilation with LDFLAGS='-Wl,-z,defs' (#410963).
61 2007-02-23 Tim-Philipp Müller <tim at centricular dot net>
63 * gst/playback/gstplaybin.c:
64 Improve docs: point out that the application needs to assist playbin
67 2007-02-23 Tim-Philipp Müller <tim at centricular dot net>
69 * gst-libs/gst/utils/install-plugins.c:
70 * gst-libs/gst/utils/missing-plugins.c:
71 * tests/check/libs/utils.c: (missing_msg_check_getters):
72 Change GStreamer marker prefix in detail string from 'gstreamer.net'
73 to just 'gstreamer'. Document the caps string component of the
74 decoder/encoder detail a bit better, since not everyone will be
75 familiar with the GStreamer media type/caps system (but they better
76 enjoy nested itemized lists).
78 2007-02-22 Tim-Philipp Müller <tim at centricular dot net>
80 * gst-libs/gst/netbuffer/gstnetbuffer.c:
81 (notgst_buffer_copy_fields_in_place), (gst_netbuffer_copy):
82 Fix copying of GstNetBuffer (would crash before, or at least lead to
83 invalid memory access, #410772), for now by copying the GstBuffer copy
84 code from the core over here so we can copy the GstBuffer fields on a
85 provided buffer instance (of type GstNetBuffer in this case). Would be
86 better to fix this with some support by the core though (and in the long
87 run change the broken GstBuffer/GstMiniObject copy semantics, #393099).
89 * tests/check/Makefile.am:
90 Enable unit test for GstNetBuffer.
92 2007-02-22 Andy Wingo <wingo@pobox.com>
94 * gst-libs/gst/audio/gstbaseaudiosink.c
95 (gst_base_audio_sink_init): Disable pull-mode activation until we
96 figure out how to make audio sinks go to PLAYING.
98 2007-02-22 Stefan Kost <ensonic@users.sf.net>
100 * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
101 (double_hq), (audio_convert_get_func_index),
102 (audio_convert_prepare_context), (audio_convert_convert):
103 * gst/audioconvert/audioconvert.h:
104 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_setup_matrix),
105 (gst_channel_mix_mix_int), (gst_channel_mix_mix_float):
106 * gst/audioconvert/gstchannelmix.h:
107 * tests/check/elements/audioconvert.c: (GST_START_TEST):
108 Add float as an intermediate format, as well as float mixing. Enable
109 test that was failing before. Fixes #339837
111 2007-02-21 Jan Schmidt <thaytan@mad.scientist.com>
113 * tests/examples/seek/seek.c: (do_seek):
114 Undo the previous commit: -1 as a stop time implies that the stop
115 time is the end of file, clearing any previously configured segment.
117 2007-02-21 Jan Schmidt <thaytan@mad.scientist.com>
119 * tests/examples/seek/seek.c: (do_seek):
120 Don't SEEK_SET with a stop time of -1, use SEEK_NONE instead.
122 2007-02-21 Stefan Kost <ensonic@users.sf.net>
124 * gst/volume/gstvolume.c: (volume_process_int16),
125 (volume_process_int16_clamp), (volume_set_caps):
126 Unbreak volume, value remains gint.
128 2007-02-21 Stefan Kost <ensonic@users.sf.net>
130 * gst/volume/gstvolume.c: (volume_choose_func),
131 (volume_update_real_volume), (gst_volume_set_volume),
132 (gst_volume_init), (volume_process_double), (volume_process_float),
133 (volume_process_int16), (volume_process_int16_clamp),
134 (volume_set_caps), (volume_transform_ip), (volume_update_volume):
135 * gst/volume/gstvolume.h:
136 Extend float audio support (double) and some int->uint cleanups.
138 2007-02-20 Edward Hervey <edward@fluendo.com>
140 * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
141 (multi_queue_underrun_cb), (gst_decode_group_check_if_drained),
142 (sort_end_pads), (gst_decode_group_expose),
143 (gst_decode_group_hide):
144 Don't free groups from the streaming threads. Just put them aside and
145 free them in dispose.
147 2007-02-20 Edward Hervey <edward@fluendo.com>
149 * gst/playback/gstdecodebin2.c: (connect_element),
150 (pad_added_group_cb), (gst_decode_group_check_if_blocked),
151 (sort_end_pads), (gst_decode_group_expose):
152 Handle dynamic pads within groups.
153 Sort pads before exposing them in order to make playbin happy.
154 There still is a race with the multiqueue filling up. This should be
158 2007-02-16 Tim-Philipp Müller <tim at centricular dot net>
160 * gst-libs/gst/utils/base-utils.c:
161 * gst-libs/gst/utils/descriptions.c:
162 * gst-libs/gst/utils/install-plugins.c:
163 * gst-libs/gst/utils/missing-plugins.c:
164 Some more docs (and descriptions for two subtitle formats).
166 2007-02-16 Tim-Philipp Müller <tim at centricular dot net>
168 * gst-libs/gst/audio/audio.c:
171 2007-02-16 Tim-Philipp Müller <tim at centricular dot net>
173 Patch by: Yves Lefebvre <ivanohe abacom com>
175 * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps):
176 Don't leak caps. Fixes #408278.
178 2007-02-15 Stefan Kost <ensonic@users.sf.net>
180 * ext/cdparanoia/gstcdparanoiasrc.h:
181 * ext/ogg/gstoggdemux.h:
182 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
183 (gst_audio_frame_length), (gst_audio_duration_from_pad_buffer),
184 (gst_audio_is_buffer_framed), (gst_audio_structure_set_int):
185 * gst-libs/gst/audio/audio.h:
186 * gst-libs/gst/audio/gstaudiofilter.h:
187 * gst-libs/gst/interfaces/videoorientation.h:
188 * gst/adder/gstadder.h:
189 More docs coverage and some ChangeLog surgery (add missing names)
191 2007-02-15 Wim Taymans <wim@fluendo.com>
193 * sys/ximage/ximagesink.c:
194 (gst_ximagesink_calculate_pixel_aspect_ratio):
195 * sys/xvimage/xvimagesink.c:
196 (gst_xvimagesink_calculate_pixel_aspect_ratio):
197 Small constifications.
199 2007-02-15 Wim Taymans <wim@fluendo.com>
201 * gst-libs/gst/audio/gstbaseaudiosink.c:
202 (gst_base_audio_sink_class_init), (gst_base_audio_sink_query),
203 (gst_base_audio_sink_render), (gst_base_audio_sink_callback),
204 (gst_base_audio_sink_async_play),
205 (gst_base_audio_sink_change_state):
206 Answer latency query.
207 Use configured latency when syncing.
210 * gst-libs/gst/audio/gstbaseaudiosrc.c:
211 (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
212 (gst_base_audio_src_query), (gst_base_audio_src_change_state):
213 Fix possible memleak.
214 Implement latency query.
217 2007-02-15 Wim Taymans <wim@fluendo.com>
219 * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
220 Ignore errors in reset, these are not fatal. They also grab the element
221 lock which is already taking when this function is called. Fixes
224 2007-02-13 Stefan Kost <ensonic@users.sf.net>
227 Remove 'tests/examples/xerror/Makefile' from output files again.
229 2007-02-13 Stefan Kost <ensonic@users.sf.net>
232 * docs/plugins/Makefile.am:
233 Also crossref against gst-plugins-base-libs.
235 2007-02-12 Stefan Kost <ensonic@users.sf.net>
238 * docs/libs/Makefile.am:
239 * docs/plugins/Makefile.am:
240 Add crossreferences to glib/gobject/gstream docs.
242 * gst-libs/gst/audio/audio.h:
245 * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
246 Add own debug category.
248 2007-02-12 Tim-Philipp Müller <tim at centricular dot net>
250 Patch by: René Stadler <mail at renestadler de>
252 * gst-libs/gst/tag/gstvorbistag.c:
253 Add vorbis/FLAC-tag mapping for new GST_TAG_REFERENCE_LEVEL
256 2007-02-10 Tim-Philipp Müller <tim at centricular dot net>
258 * gst/playback/gstplaybasebin.c: (setup_source):
259 When we have external subtitles and wait for the subtitle decodebin
260 to get up and running, we set up a (sync) bus handler for the
261 subtitle decodebin, so we can stop waiting when it posts an error
262 message. However, we should do that before we set the subtitle
263 decodebin's state to playing, otherwise things are racy and we might
264 miss error messages posted before we had a chance to set up the bus.
265 This should finally fix totem hanging on .txt pseudo-subtitle files.
267 2007-02-10 Sébastien Moutte <sebastien at moutte dot net>
269 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:(gst_base_rtp_audio_payload_handle_frame_based_buffer):
270 Use gst_gdouble_to_guint64 for conversions.
271 * win32/common/config.h.in:
272 Add a define for GST_INSTALL_PLUGINS_HELPER
273 * win32/common/libgstaudio.def:
274 * win32/common/libgstcdda.def:
275 * win32/common/libgstnetbuffer.def:
276 * win32/common/libgstrtp.def:
277 * win32/common/libgutils.def:
278 Add new exported functions.
279 * win32/vs6/gst_plugins_base.dsw:
280 * win32/vs6/libgstdecodebin.dsp:
281 * win32/vs6/libgstnetbuffer.dsp:
282 * win32/vs6/libgstplaybin.dsp:
283 * win32/vs6/libgstrtp.dsp:
284 * win32/vs6/libgstvorbis.dsp:
285 * win32/vs6/libgstcdda.dsp:
286 * win32/vs6/libgstgdp.dsp:
287 * win32/vs6/libgstutils.dsp:
288 Update and add new project files.
290 2007-02-10 Tim-Philipp Müller <tim at centricular dot net>
292 * gst/subparse/gstsubparse.c: (subrip_remove_unhandled_tag),
293 (subrip_remove_unhandled_tags), (parse_subrip):
294 For SubRip (.srt) subtitles, ignore all markup tags we don't
295 handle (like font tags, for example).
297 * tests/check/elements/subparse.c:
300 2007-02-09 Tim-Philipp Müller <tim at centricular dot net>
302 * gst/playback/gstdecodebin.c: (add_fakesink),
303 (gst_decode_bin_change_state):
304 * gst/playback/gstdecodebin2.c: (add_fakesink),
305 (gst_decode_bin_change_state):
306 Don't error out if there is no fakesink in the NULL to READY state
307 change, since when decodebin is re-used, we're only adding the
308 fakesink element in READY to PAUSED.
310 * tests/check/elements/decodebin.c:
311 (new_decoded_pad_plug_fakesink_cb), (GST_START_TEST),
313 Minimal unit test to make sure we can use the same decodebin
314 instance twice (at least with audiotestsrc input).
316 2007-02-09 Tim-Philipp Müller <tim at centricular dot net>
318 * ext/alsa/gstalsa.c: (gst_alsa_find_device_name):
319 Try to get devic-name from device string first, and from handle only
320 as fallback (seems to yield better results and is more robust
321 against buggy probing code on the application side).
323 2007-02-08 Tim-Philipp Müller <tim at centricular dot net>
325 Based on patch by: Julien Puydt <julien.puydt at laposte net>
327 * ext/alsa/gstalsa.c: (gst_alsa_find_device_name_no_handle),
328 (gst_alsa_find_device_name):
329 * ext/alsa/gstalsa.h:
330 * ext/alsa/gstalsasink.c: (gst_alsasink_get_property):
331 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_property):
332 Improve device-name detection a bit, especially in the case where
333 the device is not actually open (#405020, #405024). Move common code
334 into gstalsa.c instead of duplicating it.
336 2007-02-07 Tim-Philipp Müller <tim at centricular dot net>
338 * gst/audioconvert/gstaudioconvert.c:
339 Fix up docs chunk so that gtk-doc doesn't complain, and fix typo.
341 2007-02-06 Julien MOUTTE <julien@moutte.net>
343 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
344 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_clear),
345 (gst_xvimagesink_interface_supported),
346 (gst_xvimagesink_probe_get_properties),
347 (gst_xvimagesink_probe_probe_property),
348 (gst_xvimagesink_probe_needs_probe),
349 (gst_xvimagesink_probe_get_values),
350 (gst_xvimagesink_property_probe_interface_init),
351 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
352 (gst_xvimagesink_init), (gst_xvimagesink_class_init),
353 (gst_xvimagesink_get_type):
354 * sys/xvimage/xvimagesink.h: Implement PropertyProbe Interface
355 for XVAdaptors so that one can choose the adaptor to use with
356 gstreamer-properties.
358 2007-02-06 Stefan Kost <ensonic@users.sf.net>
360 * gst/audioconvert/gstaudioconvert.c:
361 Also mention that a conversion from double to float is suboptimal still.
363 2007-02-06 Tim-Philipp Müller <tim at centricular dot net>
365 * gst-libs/gst/audio/gstaudiofilter.c:
366 (gst_audio_filter_class_init), (gst_audio_filter_change_state):
367 Clear our formats structure and free the caps contained in it when
370 2007-02-05 Andy Wingo <wingo@pobox.com>
372 * gst-libs/gst/audio/gstbaseaudiosink.c
373 (gst_base_audio_sink_callback): Update basesink->offset so that we
374 pull monotonically increasing offsets instead of, um, seeking back
375 to 0 each time. Fixes alsasrc ! alsasink!
377 2007-02-05 Tim-Philipp Müller <tim at centricular dot net>
379 * gst/videoscale/gstvideoscale.c:
380 A width and height of 1 makes us crash, so increase minimum size to
381 2x2 pixels until someone feels like fixing this (#404512).
383 2007-02-04 Tim-Philipp Müller <tim at centricular dot net>
385 * tests/check/pipelines/oggmux.c: (GST_START_TEST), (oggmux_suite):
386 Add small test to make sure request pads are cleaned up properly
387 even if oggmux never changes state out of NULL.
389 2007-02-04 Tim-Philipp Müller <tim at centricular dot net>
391 * tests/check/libs/utils.c: (GST_START_TEST):
392 Fix unit test. Turns out things work much better when you
393 NULL-terminate string arrays. Should make p5 build bot happy again.
395 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
397 * gst-libs/gst/audio/Makefile.am:
398 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
399 (gst_audio_filter_template_base_init),
400 (gst_audio_filter_template_class_init),
401 (gst_audio_filter_template_init),
402 (gst_audio_filter_template_set_property),
403 (gst_audio_filter_template_get_property),
404 (gst_audio_filter_template_setup),
405 (gst_audio_filter_template_filter),
406 (gst_audio_filter_template_filter_inplace), (plugin_init):
407 Oops, forgot to commit fixed-up example.
409 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
411 * docs/libs/gst-plugins-base-libs-sections.txt:
412 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
413 (gst_audio_filter_class_init), (gst_audio_filter_init),
414 (gst_audio_filter_set_caps),
415 (gst_audio_filter_class_add_pad_templates):
416 * gst-libs/gst/audio/gstaudiofilter.h:
417 Port GstAudioFilter to 0.10. This change technically breaks
418 API and ABI (and thus also every library developer's heart),
419 but seems justifiable on the grounds that the base class was
420 completely unusable before (ie. would crash immediately when
421 actually used). Fixes #403963 (and eventually also #403572).
422 Also document all of this a bit.
424 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
426 * gst-libs/gst/utils/install-plugins.c:
427 (gst_install_plugins_spawn_child):
428 * tests/check/libs/utils.c:
429 (test_base_utils_install_plugins_do_callout):
430 Lowering log level to see why things fail on the p5 build bot;
431 fix some typos in unit test messages.
433 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
435 * tests/check/libs/utils.c:
436 (test_base_utils_install_plugins_do_callout):
437 Don't hard-code temp directory for test helper; use GLib functions
438 to write out file and do error checking etc.
440 2007-02-02 Tim-Philipp Müller <tim at centricular dot net>
442 * gst-libs/gst/utils/Makefile.am:
443 * gst-libs/gst/utils/base-utils.h:
444 * gst-libs/gst/utils/install-plugins.c:
445 (gst_install_plugins_context_set_xid),
446 (gst_install_plugins_context_new),
447 (gst_install_plugins_context_free),
448 (gst_install_plugins_get_helper),
449 (gst_install_plugins_spawn_child),
450 (gst_install_plugins_return_from_status),
451 (gst_install_plugins_installer_exited),
452 (gst_install_plugins_async), (gst_install_plugins_sync),
453 (gst_install_plugins_return_get_name),
454 (gst_install_plugins_installation_in_progress):
455 * gst-libs/gst/utils/install-plugins.h:
456 API: add API for applications to initiate installation of missing
457 plugins, ie. gst_install_plugins_async() primarily.
458 Based on libgimme-codec by Ryan Lortie.
461 Add --with-install-plugins-helper configure option so distros can specify
462 the path of the helper script or program to call when plugin installation
463 is requested (distros: please do any argument munging in this helper
464 script instead of patching GStreamer to pass arguments differently
465 to another program directly).
467 * docs/libs/gst-plugins-base-libs-docs.sgml:
468 * docs/libs/gst-plugins-base-libs-sections.txt:
469 Build and document new API.
471 * tests/check/libs/utils.c: (result_cb),
472 (test_base_utils_install_plugins_do_callout), (GST_START_TEST),
473 (libgstbaseutils_suite):
474 Some simple checks for the new API.
476 2007-02-02 Tim-Philipp Müller <tim at centricular dot net>
478 * tests/check/elements/audioconvert.c: (test_float_conversion):
479 Add small test for 32bit float <=> 64bit float conversion (works
480 only one way so far, 32=>64 produces structured noise).
482 2007-02-02 Tim-Philipp Müller <tim at centricular dot net>
484 * gst/audioconvert/gstaudioconvert.c:
485 (set_structure_widths_32_and_64), (make_lossless_changes):
486 We don't support floats with a width of 40, 48 or 56 bits.
488 2007-02-02 Stefan Kost <ensonic@users.sf.net>
490 * gst/audioconvert/audioconvert.c: (float), (double),
491 (audio_convert_get_func_index):
492 * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
493 (make_lossless_changes):
494 Support for 64-bit float audio in audioconvert (#339837)
496 2007-02-01 Tim-Philipp Müller <tim at centricular dot net>
498 Patch by: Holger Wansing <linux wansing-online de>
502 Add German translation (#352069).
504 2007-02-01 Sebastian Dröge <slomo@circular-chaos.org>
506 reviewed by: Wim Taymans <wim@fluendo.com>
508 * ext/ogg/gstoggmux.c: (gst_ogg_mux_ogg_pad_destroy_notify),
509 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad):
510 Use newly added GstCollectPads API to free the allocated resources in
511 the GstOggPad structures (#402393).
513 2007-01-31 Jan Schmidt <thaytan@mad.scientist.com>
515 * gst/playback/gstplaybin.c: (gen_vis_element):
516 Add audioresample+audioconvert in front of the visualisation
517 element, so that elements like libvisual 0.4 that don't support all
518 samplerates can work.
522 2007-01-30 Tim-Philipp Müller <tim at centricular dot net>
524 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property),
525 (gst_play_base_bin_get_streaminfo_value_array):
526 Take some locks and make a copy of the streaminfo value array we
527 maintain while holding the lock, so that the application can
528 retrieve the stream-info as a value array in a thread-safe way.
530 2007-01-30 Wim Taymans <wim@fluendo.com>
532 * gst/audioconvert/gstaudioconvert.c:
533 Don't fail on 0 sized buffers. Fixes #396835.
535 2007-01-29 David Schleef <ds@schleef.org>
537 * gst/typefind/gsttypefindfunctions.c:
538 Detect BBCD as video/x-dirac, so we can play raw dirac
541 2007-01-29 Tim-Philipp Müller <tim at centricular dot net>
543 * ext/theora/theoraenc.c: (theora_enc_chain):
544 Check return value of theora_encode_header(), or we might try to
545 allocate a random number of bytes. theora_encode_header() can fail
546 if libtheora has been compiled with encoding support disabled.
549 2007-01-29 Wim Taymans <wim@fluendo.com>
551 * tests/check/gst/.cvsignore:
554 2007-01-29 Wim Taymans <wim@fluendo.com>
556 * ext/libvisual/visual.c: (gst_visual_src_setcaps):
557 Fix strides in libvisual. Gst uses X strides.
558 Inspired by: <ed at catmur dot co dot uk> and
559 <tim at centricular dot net>
562 2007-01-27 Wim Taymans <wim@fluendo.com>
564 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
565 (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
566 (gst_ogg_demux_get_prev_page), (gst_ogg_demux_do_seek),
567 (gst_ogg_demux_perform_seek),
568 (gst_ogg_demux_bisect_forward_serialno),
569 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
570 (gst_ogg_demux_find_chains), (gst_ogg_demux_handle_page),
571 (gst_ogg_demux_chain), (gst_ogg_demux_combine_flows),
572 (gst_ogg_demux_loop_reverse), (gst_ogg_demux_loop):
573 * ext/ogg/gstoggdemux.h:
574 Properly propagate streaming errors when we are scanning the file for
575 chains so that we don't crash when shut down. Might fix some crashers
576 when quickly switching oggs in RB such as #332503 and #378436.
578 2007-01-26 Tim-Philipp Müller <tim at centricular dot net>
580 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
581 Map a gnome-vfs HOST_NOT_FOUND error into a GStreamer NOT_FOUND
584 2007-01-25 Wim Taymans <wim@fluendo.com>
586 * gst/playback/gstplaybasebin.c: (remove_source):
587 Don't try to disconnect a signal from a finalized object.
589 2007-01-25 Tim-Philipp Müller <tim at centricular dot net>
591 * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose):
592 Cast lock macro parameters to make sure we're actually accessing the
593 lock member at the right class level. Free list itself in _dispose()
594 as well and NULL it in case dispose gets called multiple times.
596 2007-01-25 Edward Hervey <edward@fluendo.com>
598 * gst/playback/gstdecodebin2.c:
599 (gst_decode_bin_dispose),(gst_decode_bin_finalize):
600 Free GstDecodeGroups no longer used.
601 (gst_decode_group_expose):
602 Don't unlock too many times !
603 (deactivate_free_recursive):
604 Free iterator once we're done with it.
605 Fix for recursively deactivating elements (stop at ghostpads).
607 2007-01-25 Tim-Philipp Müller <tim at centricular dot net>
609 * gst/playback/gstplaybin.c: (handoff):
610 Fix up caps on the frame buffer before we save it and potentially
611 make it accessible to other threads via g_object_get; also use
612 gst_buffer_replace() instead of gst_mini_object_replace().
614 2007-01-25 Tim-Philipp Müller <tim at centricular dot net>
616 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
617 Make getting the current frame thread-safe.
619 2007-01-25 Edward Hervey <edward@fluendo.com>
621 * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize),
622 (gst_decode_group_new), (gst_decode_group_free):
623 Set queues to bigger sizes to cope with HD contents.
624 Fix some mutex freeing and add comment about MT safe methods.
626 2007-01-24 Tim-Philipp Müller <tim at centricular dot net>
628 * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
629 (gst_text_overlay_text_event):
630 Don't unnecessarily ref (and then leak) upstream events if the text
631 pad is not linked. Fixes #399948.
633 * tests/check/gst-plugins-base.supp:
634 Add suppression for pango on edgy/x86 for textoverlay test.
636 2007-01-24 Wim Taymans <wim@fluendo.com>
638 * gst-libs/gst/rtp/gstrtpbuffer.h:
639 Add some more fixed payloads.
641 2007-01-23 Tim-Philipp Müller <tim at centricular dot net>
643 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
644 Error out properly if we get an error from libogg while reading the
645 BOS page(s). Fixes crash parsing 'fuzzed' ogg file (#399340).
647 2007-01-23 Tim-Philipp Müller <tim at centricular dot net>
649 * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize):
652 * tests/check/elements/playbin.c:
653 (test_sink_usage_video_only_stream),
654 (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
655 (test_suburi_error_wrongproto), (test_missing_urisource_handler),
656 (test_missing_suburisource_handler),
657 (test_missing_primary_decoder), (playbin_suite):
658 Run all tests once with decodebin and once with decodebin2.
659 One test does not pass yet with decodebin2.
661 2007-01-23 Edward Hervey <edward@fluendo.com>
663 * ext/ogg/gstoggmux.c: (all_pads_eos), (gst_ogg_mux_collected):
664 Fix the cases where oggmux doesn't properly figure out that all
665 sinkpads have gone EOS, and therefore doesn't push out the remaining
666 buffers and the final EOS event.
669 2007-01-23 Julien MOUTTE <julien@moutte.net>
671 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
672 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
673 Don't lock on navigation event push, just on keysym to string.
676 2007-01-22 Edward Hervey <edward@fluendo.com>
678 * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
679 (get_current_group), (group_demuxer_event_probe),
680 (gst_decode_group_expose), (deactivate_free_recursive),
681 (gst_decode_group_free):
683 Don't forget to emit 'no-more-pads' once a group is exposed.
684 Cleanup elements from a DecodeGroup once we remove it.
685 Protect call to gst_decode_group_expose() with the decodebin lock.
687 2007-01-22 Julien MOUTTE <julien@moutte.net>
689 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
690 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
691 Looking at Xorg code i can't figure out if that XKeysymToString
692 function is thread sensible or not. Lock it just in case as
693 recommended by Radek Doulik <rodo at ximian dot com>.
695 2007-01-22 Julien MOUTTE <julien@moutte.net>
697 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
698 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
699 Lock that X Call as well. Fixes #397673.
701 2007-01-22 Tim-Philipp Müller <tim at centricular dot net>
703 * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
704 Don't go into an endless loop if the file starts with 00 00 01 2X,
705 like quicktime redirect files might. Fixes #396042.
707 * tests/check/Makefile.am:
708 * tests/check/gst/.cvsignore:
709 * tests/check/gst/typefindfunctions.c: (GST_START_TEST),
710 (typefindfunctions_suite):
711 Add unit test for the above.
713 2007-01-22 Tim-Philipp Müller <tim at centricular dot net>
715 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
716 On second thought, use "depth" field rather than "bpp" field.
718 2007-01-22 Tim-Philipp Müller <tim at centricular dot net>
720 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
721 Camtasia caps apparently need a bpp field (#398875).
723 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
725 * gst/playback/gstplaybasebin.c: (setup_subtitle),
726 (gen_source_element), (gst_play_base_bin_change_state):
727 Attempt at a better error message in case we don't have the required
728 URI handler installed; post missing-plugin message also when we're
729 missing an URI handler for the subtitle URI; clean up properly also
730 when an error occurs and we never made it to PAUSED state.
732 * tests/check/elements/playbin.c: (GST_START_TEST),
734 Check that we're also getting a missing-plugin messsage for a
735 missing subtitle URI handler (and clean up properly).
737 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
739 * gst/playback/gstplaybasebin.c: (analyse_source), (setup_source):
740 Plug a few reference leaks.
742 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
744 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
745 Lower probability a bit if the marker isn't right at the start,
746 to decrease the chance of false positives.
748 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
750 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
751 Small mpeg2 system stream typefinding improvement: make typefinder
752 probe a bit into the stream instead of just looking for a marker
753 at the beginning. Fixes #397810.
755 2007-01-18 Tim-Philipp Müller <tim at centricular dot net>
757 * gst/audioconvert/gstchannelmix.c:
758 Remove compatibility cruft for prehistoric GLib versions.
760 2007-01-17 Tim-Philipp Müller <tim at centricular dot net>
762 * gst/playback/Makefile.am:
763 * gst/playback/gstdecodebin.c: (close_pad_link):
764 * gst/playback/gstdecodebin2.c: (analyze_new_pad):
765 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
766 (gst_play_base_bin_handle_message_func), (unknown_type):
767 Let decodebin be the element to post missing-plugin messages for
768 missing decoders (rather than playbin); make playbin implement
769 GstBin::handle_message so we can suppress missing-plugin messages
770 for types we're not handling on purpose (don't want to bring up an
771 installer in those cases).
773 2007-01-16 Tim-Philipp Müller <tim at centricular dot net>
775 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
776 * gst-libs/gst/tag/gstvorbistag.c:
777 (gst_tag_list_to_vorbiscomment_buffer):
778 * gst/typefind/gsttypefindfunctions.c: (vorbis_type_find):
779 Fix potentially unaligned access (#397207).
781 2007-01-16 Stefan Kost <ensonic@users.sf.net>
783 * tests/examples/seek/seek.c: (set_scale), (update_scale),
784 (do_seek), (stop_seek), (pause_cb), (stop_cb), (loop_toggle_cb),
785 (rate_spinbutton_changed_cb), (msg_eos), (msg_segment_done),
787 Allow to toggle looping while it plays. Fix callback prototype. Clean
788 up code a bit more. Add copyright header.
790 2007-01-16 Stefan Kost <ensonic@users.sf.net>
792 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
793 Red and blue mask was swapped (spotted by Dan Williams).
795 2007-01-15 Stefan Kost <ensonic@users.sf.net>
797 * gst-libs/gst/tag/gstid3tag.c:
798 * gst-libs/gst/tag/gstvorbistag.c:
799 Use new beats-per-minute tag from core.
801 2007-01-15 Tim-Philipp Müller <tim at centricular dot net>
804 Add new files with translatable strings, so they actually make it
805 into the template file one day.
807 2007-01-12 Andy Wingo <wingo@pobox.com>
809 * gst-libs/gst/audio/gstbaseaudiosink.c
810 (gst_base_audio_sink_fixate): Implement, stolen from baseaudiosrc.
811 (gst_base_audio_sink_activate_pull): Remove the handwavey nego
812 stuff, as the base class handles this now. Actually tell the ring
814 (gst_base_audio_sink_callback): Cast the ring buffer correctly.
815 How did this work before? Maybe I'm not as awesome a programmer as
818 * gst-libs/gst/audio/gstbaseaudiosrc.c
819 (gst_base_audio_src_fixate): Rework as a basesrc vmethod instead
822 2007-01-12 Tim-Philipp Müller <tim at centricular dot net>
824 * gst-libs/gst/utils/missing-plugins.c: (copy_and_clean_caps):
825 Remove more fields so that the application can better blacklist
826 formats that have been tried before.
828 2007-01-12 Tim-Philipp Müller <tim at centricular dot net>
830 * gst-libs/gst/audio/mixerutils.h:
831 Add G_BEGIN_DECLS and G_END_DECLS guards so these helpers can be
832 used when compiling with c++ compilers as well.
834 2007-01-12 Tim-Philipp Müller <tim at centricular dot net>
836 * gst/typefind/gsttypefindfunctions.c:
839 2007-01-11 Tim-Philipp Müller <tim at centricular dot net>
841 * gst/playback/gstplaybin.c: (post_missing_element_message),
842 (gen_video_element), (gen_text_element), (gen_audio_element),
844 Post missing-plugin messages also when we error out because
845 converters, textoverlay or auto*sinks are missing (#161922).
847 2007-01-10 Wim Taymans <wim@fluendo.com>
849 * gst/playback/gstdecodebin.c: (dynamic_add), (close_pad_link),
850 (is_demuxer_element), (new_caps):
851 * gst/playback/gstplaybasebin.c: (source_new_pad):
852 Fix the case where we try to ref a NULL element when we delay a link
853 because of unfixed caps.
854 Set the state of autoplugged decodebins to PAUSED.
855 RTSP now works in playbin, we can remove it from the blacklist.
857 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
859 * gst/playback/Makefile.am:
860 * gst/playback/gstplaybasebin.c: (string_arr_has_str),
861 (unknown_type), (setup_subtitle), (gen_source_element):
862 * gst/playback/gstplaybin.c: (plugin_init):
863 Post missing-plugin messages on the bus for missing sources and
864 missing decoders/demuxers/depayloaders; fix error code used when
865 we're missing an URI handler source; for media types that we are not
866 handling on purpose at the moment, don't print "don't know how to
867 handle xyz" messages to the terminal or post missing-plugin
870 * tests/check/elements/playbin.c: (create_playbin),
871 (GST_START_TEST), (gst_codec_src_uri_get_type),
872 (gst_codec_src_uri_get_protocols), (gst_codec_src_uri_get_uri),
873 (gst_codec_src_uri_set_uri), (gst_codec_src_uri_handler_init),
874 (gst_codec_src_init_type), (gst_codec_src_base_init),
875 (gst_codec_src_create), (gst_codec_src_class_init),
876 (gst_codec_src_init), (plugin_init), (playbin_suite):
877 Add some tests for the missing-plugin stuff.
879 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
882 * gst-libs/gst/Makefile.am:
883 * gst-libs/gst/utils/Makefile.am:
884 * gst-libs/gst/utils/base-utils.c: (gst_base_utils_init):
885 * gst-libs/gst/utils/base-utils.h:
886 * gst-libs/gst/utils/descriptions.c: (format_info_get_desc),
887 (find_format_info), (caps_are_rtp_caps),
888 (gst_base_utils_get_source_description),
889 (gst_base_utils_get_sink_description),
890 (gst_base_utils_get_decoder_description),
891 (gst_base_utils_get_encoder_description),
892 (gst_base_utils_get_element_description),
893 (gst_base_utils_add_codec_description_to_tag_list),
894 (gst_base_utils_get_codec_description), (gst_base_utils_list_all):
895 * gst-libs/gst/utils/descriptions.h:
896 * gst-libs/gst/utils/missing-plugins.c:
897 (missing_structure_get_type), (copy_and_clean_caps),
898 (gst_missing_uri_source_message_new),
899 (gst_missing_uri_sink_message_new),
900 (gst_missing_element_message_new),
901 (gst_missing_decoder_message_new),
902 (gst_missing_encoder_message_new),
903 (missing_structure_get_string_detail),
904 (missing_structure_get_caps_detail),
905 (gst_missing_plugin_message_get_installer_detail),
906 (gst_missing_plugin_message_get_description),
907 (gst_is_missing_plugin_message):
908 * gst-libs/gst/utils/missing-plugins.h:
909 API: add new libgstbaseutils library with functions
910 - to create and parse missing-plugins messages
911 - that provide (translated) descriptions for caps/decoders/sources/etc.
914 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
915 * pkgconfig/gstreamer-plugins-base.pc.in:
918 * docs/libs/gst-plugins-base-libs-docs.sgml:
919 * docs/libs/gst-plugins-base-libs-sections.txt:
920 Generate docs for new lib and API.
922 * tests/check/Makefile.am:
923 * tests/check/libs/.cvsignore:
924 * tests/check/libs/utils.c: (missing_msg_check_getters),
925 (GST_START_TEST), (libgstbaseutils_suite):
926 Add some basic unit tests.
928 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
930 * ext/ogg/Makefile.am:
931 Dist gstoggdemux.h to fix 'make distcheck'.
933 * sys/v4l/Makefile.am:
934 Fix 'make distcheck' even more.
936 2007-01-09 Wim Taymans <wim@fluendo.com>
938 * docs/plugins/Makefile.am:
939 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
940 * docs/plugins/gst-plugins-base-plugins-sections.txt:
941 * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
942 (gst_ogg_pad_query_types), (gst_ogg_pad_submit_page),
943 (gst_ogg_chain_reset), (gst_ogg_chain_new_stream),
944 (gst_ogg_demux_perform_seek):
945 * ext/ogg/gstoggdemux.h:
947 Add some more comments.
950 2007-01-09 Wim Taymans <wim@fluendo.com>
952 * ext/theora/theoradec.c:
953 * ext/vorbis/vorbisdec.c:
954 * gst-libs/gst/audio/gstringbuffer.c:
955 (gst_ring_buffer_commit_full):
956 * gst-libs/gst/audio/gstringbuffer.h:
957 * gst-libs/gst/rtp/gstrtpbuffer.c:
958 * gst-libs/gst/tag/gstvorbistag.c:
959 Small documentation updates/fixes
961 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
964 Require core CVS HEAD for Andy's basesrc/sink API additions.
966 2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
968 Patch by: Günter Thelen <daedalus dot inc at gmx net>
970 * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
972 Add typefinder for flac-in-ogg in conformance with the ogg-mapping
973 on flac.sf.net (there appear to be other versions of the first
974 ogg page in the wild) (#391365).
976 2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
979 Check if localtime_r() is available.
981 * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
982 If localtime_r() is not available, fall back to localtime(). Should
983 fix build on MingW (#393310).
985 2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
987 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
988 * gst/subparse/gstsubparse.h:
989 Remove spurious 1000 subtrahend when calculating the timestamp from
990 the frame number and the frame rate . Also, use the frames/second
991 value specified in the first line of the file, if one is specified
992 there. Should fix #357503.
994 * tests/check/elements/subparse.c: (do_test),
995 (test_tmplayer_do_test), (test_microdvd_do_test), (GST_START_TEST),
997 Add some basic unit tests for the microdvd subtitle format.
999 2007-01-07 Julien MOUTTE <julien@moutte.net>
1001 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1002 (gst_xvimage_buffer_finalize), (gst_xvimagesink_xvimage_new),
1003 (gst_xvimagesink_xvimage_put), (gst_lookup_xv_port_from_adaptor),
1004 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps),
1005 (gst_xvimagesink_set_xwindow_id),
1006 (gst_xvimagesink_set_event_handling),
1007 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
1008 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
1009 Patch by : Young-Ho Cha <ganadist at chollian dot net>
1011 Add an adaptor property to select a specific XV adaptor.
1012 * sys/xvimage/xvimagesink.h:
1014 2007-01-07 Julien MOUTTE <julien@moutte.net>
1016 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
1017 (gst_ximagesink_handle_xerror), (gst_ximagesink_ximage_new),
1018 (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
1019 (gst_ximagesink_handle_xevents), (gst_ximagesink_setcaps),
1020 (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
1021 (gst_ximagesink_expose), (gst_ximagesink_set_event_handling):
1022 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1023 (gst_xvimage_buffer_finalize), (gst_xvimagesink_handle_xerror),
1024 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
1025 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_setcaps),
1026 (gst_xvimagesink_change_state), (gst_xvimagesink_set_xwindow_id),
1027 (gst_xvimagesink_expose), (gst_xvimagesink_set_event_handling):
1028 Use flow_lock much more to protect every access to xwindow.
1029 Try to catch erros while creating images in case some drivers are
1030 just generating an XError when the requested image is too big.
1031 Should fix : #354698, #384008, #384060.
1032 * tests/icles/stress-xoverlay.c: (cycle_window), (create_window):
1033 Implement some stress testing of setting window xid.
1035 2007-01-07 Sébastien Moutte <sebastien@moutte.net>
1037 * win32/common/libgsaudio.def:
1038 Add new exported function.
1039 * win32/common/libgstogg.dsp:
1040 Add gstoggaviparse.c to the build.
1041 * win32/common/libgstvideoscale.dsp:
1042 Add vs_4tap.c to the build.
1043 * win32/common/libgstvorbis.dsp:
1044 Add vorbistag.c to the build.
1046 2007-01-06 Andy Wingo <wingo@pobox.com>
1048 * gst-libs/gst/audio/gstbaseaudiosink.c
1049 (gst_base_audio_sink_class_init)
1050 (gst_base_audio_sink_init):
1051 (gst_base_audio_sink_activate_pull): Add an activate_pull function
1052 to baseaudiosink, and tell basesink that we can work in pull mode.
1053 This way the ring buffer thread drives the pipeline directly, if
1054 pull mode is possible. There is some lingering nastiness regarding
1056 (gst_base_audio_sink_callback): Implement the callback to pull
1057 data. This interface is a bit light, though -- it should get a
1058 GstFlowReturn return value at least.
1060 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1062 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_stream_out):
1063 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
1064 * gst/playback/gstdecodebin2.c:
1065 (gst_decode_group_check_if_blocked):
1066 Printf format and missing argument fixes.
1068 2007-01-05 Jan Schmidt <thaytan@mad.scientist.com>
1070 * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header),
1071 (gst_ogm_parse_change_state):
1072 Activate pads before adding them to the element.
1074 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1076 * tests/examples/seek/scrubby.c: (main):
1077 * tests/examples/seek/seek.c: (main):
1078 Call g_thread_init() first thing in main() (see #391278).
1080 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1082 * tests/check/Makefile.am:
1083 * tests/check/libs/.cvsignore:
1084 * tests/check/libs/netbuffer.c: (GST_START_TEST),
1086 Add test for GstNetBuffer + gst_buffer_copy(). Disabled
1087 for the time being, since it's broken, see #393099.
1089 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1091 * tests/check/Makefile.am:
1092 Update to use GST_PLUGINS_BASE_CFLAGS as well.
1094 2007-01-04 Thomas Vander Stichele <thomas at apestaart dot org>
1097 split out GST_CFLAGS into GST_PLUGINS_BASE_CFLAGS and GST_CFLAGS
1098 so that GST_BASE_CFLAGS can go inbetween them, making sure
1099 we use uninstalled gst-libs headers
1100 * docs/libs/Makefile.am:
1101 * ext/alsa/Makefile.am:
1102 * ext/cdparanoia/Makefile.am:
1103 * ext/gnomevfs/Makefile.am:
1104 * ext/libvisual/Makefile.am:
1105 * ext/ogg/Makefile.am:
1106 * ext/theora/Makefile.am:
1107 * ext/vorbis/Makefile.am:
1108 * gst-libs/gst/audio/Makefile.am:
1109 * gst-libs/gst/cdda/Makefile.am:
1110 * gst-libs/gst/interfaces/Makefile.am:
1111 * gst-libs/gst/riff/Makefile.am:
1112 * gst-libs/gst/rtp/Makefile.am:
1113 * gst-libs/gst/tag/Makefile.am:
1114 * gst/adder/Makefile.am:
1115 * gst/audioconvert/Makefile.am:
1116 * gst/audiorate/Makefile.am:
1117 * gst/audioresample/Makefile.am:
1118 * gst/playback/Makefile.am:
1119 * gst/tcp/Makefile.am:
1120 * gst/videoscale/Makefile.am:
1121 * gst/volume/Makefile.am:
1122 * sys/ximage/Makefile.am:
1123 * sys/xvimage/Makefile.am:
1124 * tests/icles/Makefile.am:
1127 2007-01-04 Julien MOUTTE <julien@moutte.net>
1129 * gst-libs/gst/interfaces/xoverlay.c:
1130 (gst_x_overlay_handle_events):
1131 * gst-libs/gst/interfaces/xoverlay.h:
1132 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
1133 (gst_ximagesink_set_xwindow_id),
1134 (gst_ximagesink_set_event_handling),
1135 (gst_ximagesink_xoverlay_init), (gst_ximagesink_set_property),
1136 (gst_ximagesink_get_property), (gst_ximagesink_init),
1137 (gst_ximagesink_class_init):
1138 * sys/ximage/ximagesink.h:
1139 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new),
1140 (gst_xvimagesink_set_xwindow_id),
1141 (gst_xvimagesink_set_event_handling),
1142 (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_set_property),
1143 (gst_xvimagesink_get_property), (gst_xvimagesink_init),
1144 (gst_xvimagesink_class_init):
1145 * sys/xvimage/xvimagesink.h:
1146 * tests/icles/stress-xoverlay.c: (toggle_events), (create_window):
1147 Add a method to the XOverlay interface to allow disabling of
1148 event handling in x[v]imagesink elements. This will let X events
1149 propagate to parent windows which can be usefull in some cases.
1150 Be carefull that the application is then responsible of pushing
1151 navigation events and expose events to the video sink.
1154 2007-01-03 Tim-Philipp Müller <tim at centricular dot net>
1156 * gst-libs/gst/tag/gstvorbistag.c:
1157 * tests/check/libs/tag.c: (GST_START_TEST):
1158 Add vorbistag <=> GStreamer tag mapping for GST_TAG_LOCATION
1161 2007-01-01 Tim-Philipp Müller <tim at centricular dot net>
1165 * docs/design/Makefile.am:
1168 2006-12-27 Julien MOUTTE <julien@moutte.net>
1170 * docs/libs/gst-plugins-base-libs-sections.txt: Fix a documentation
1171 typo. Fixes: #390063.
1173 2006-12-27 Julien MOUTTE <julien@moutte.net>
1175 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
1176 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Plug a
1178 * win32/common/config.h: Updated.
1180 2006-12-22 Stefan Kost <ensonic@users.sf.net>
1182 * tests/check/elements/gdpdepay.c: (cleanup_gdpdepay),
1183 (setup_gdpdepay_streamheader):
1184 * tests/check/elements/gdppay.c: (cleanup_gdppay),
1185 (setup_gdppay_streamheader):
1186 Fix the dp tests, but activating the pads for the streamheader tests
1187 too and cleaning up conditionaly
1189 2006-12-22 Jan Schmidt <thaytan@mad.scientist.com>
1191 * gst/ffmpegcolorspace/avcodec.h:
1192 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1193 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
1194 (gst_ffmpegcsp_avpicture_fill):
1195 * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
1196 (img_get_alpha_info):
1197 Add 2 new caps arrangements, for 24-bit RGB and BGR in 32-bits, but at the
1198 other end of the word. Fixes: #387073.
1200 Add some inconsequential branch hints in a couple of places.
1202 2006-12-21 Tim-Philipp Müller <tim at centricular dot net>
1204 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1205 (gst_ffmpeg_caps_to_smpfmt):
1206 The "signed" field in raw audio caps is of boolean type, trying to
1207 extract the value with _get_int() will fail (fix to keep in sync with
1208 the copy in gst-ffmpeg)
1210 2006-12-21 Stefan Kost <ensonic@users.sf.net>
1212 * tests/check/elements/audioresample.c: (cleanup_audioresample):
1213 * tests/check/elements/audiotestsrc.c: (cleanup_audiotestsrc):
1214 * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
1216 * tests/check/elements/gdppay.c: (setup_gdppay), (cleanup_gdppay):
1217 * tests/check/elements/subparse.c: (teardown_subparse):
1218 * tests/check/elements/textoverlay.c: (cleanup_textoverlay):
1219 * tests/check/elements/videorate.c: (cleanup_videorate):
1220 * tests/check/elements/videotestsrc.c: (cleanup_videotestsrc):
1221 * tests/check/elements/volume.c: (cleanup_volume):
1222 * tests/check/elements/vorbisdec.c: (setup_vorbisdec),
1223 (cleanup_vorbisdec):
1224 * tests/check/elements/vorbistag.c: (setup_vorbistag),
1225 (cleanup_vorbistag):
1226 consistent pad (de)activation
1228 2006-12-20 Tim-Philipp Müller <tim at centricular dot net>
1230 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1231 Forgot to register the extensions.
1233 2006-12-20 Tim-Philipp Müller <tim at centricular dot net>
1235 * gst/typefind/gsttypefindfunctions.c: (vivo_type_find),
1237 Add typefinder for VIVO files (my christmas present to the 90s).
1239 2006-12-16 Tim-Philipp Müller <tim at centricular dot net>
1241 * gst/playback/gstdecodebin.c: (type_found):
1242 Special-case the text/plain media type: we only want to recognise it
1243 as a 'raw' decoded media type if it comes from a demuxer or subtitle
1244 parser, but not if the entire stream is of text/plain type. If the
1245 entire stream is text/plain, we should just error out.
1247 This fixes playback of audio files with lyrics in totem. Totem can't
1248 distinguish between text files and subtitle files and passes any
1249 .txt file with the same basename as the main file to playbin as
1250 suburi, and playbin will then throw a 'subtitle found, but no video
1251 stream' error, which isn't entirely helpful. See #380342.
1253 Also, with this change we'll show a slightly more correct error
1254 message in case totem passes a playlist file to us (although a
1255 custom error message wording instead of the default text would
1256 probably not be a bad idea either).
1258 Same problem also needs to be fixed for playbin+decodebin2.
1260 * tests/check/Makefile.am:
1261 * tests/check/elements/decodebin.c: (src_handoff_cb),
1262 (decodebin_new_decoded_pad_cb), (GST_START_TEST),
1264 Add simple unit test for decodebin for the above.
1266 2006-12-16 Tim-Philipp Müller <tim at centricular dot net>
1268 * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
1269 * gst/playback/gstdecodebin2.c: (gst_decode_bin_change_state):
1270 Refuse to change state to READY when we failed to create any of the
1271 required elements in our instance init function.
1273 2006-12-15 Tim-Philipp Müller <tim at centricular dot net>
1275 * docs/libs/gst-plugins-base-libs-sections.txt:
1276 Small docs fixes/updates.
1278 * gst-libs/gst/video/gstvideosink.h:
1279 Remove nonfunctional GST_VIDEO_SINK_CLOCK macro which is a leftover
1280 from the 0.9 days (GST_BASE_SINK_CLOCK, which it points to, was
1281 removed from the base sink API between 0.9.6 and 0.9.7).
1282 API: add GST_VIDEO_SINK_CAST and use it for the height/width
1283 accessor macros, so we don't do a runtime GObject type check every
1286 2006-12-15 Thomas Vander Stichele <thomas at apestaart dot org>
1289 * gst-plugins-base.doap:
1290 * gst-plugins-base.spec.in:
1293 2006-12-09 Tim-Philipp Müller <tim at centricular dot net>
1295 Patch by: Jens Granseuer <jensgr at gmx net>
1297 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
1298 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
1299 (gst_base_rtp_audio_payload_handle_frame_based_buffer),
1300 (gst_base_rtp_audio_payload_handle_sample_based_buffer):
1301 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
1302 Declare variables at the beginning of a block. Fixes #383195.
1304 2006-12-07 Jan Schmidt <thaytan@mad.scientist.com>
1307 Bump version nano - back to CVS.
1310 === release 0.10.11 ===
1312 2006-12-06 Jan Schmidt <thaytan@mad.scientist.com>
1315 releasing 0.10.11, "Dumb things"
1317 2006-12-05 Jan Schmidt <thaytan@mad.scientist.com>
1319 * gst/playback/gstdecodebin.c: (find_dynamic), (dynamic_add),
1320 (close_pad_link), (elem_is_dynamic), (unlinked), (close_link):
1321 Handle the case where an element has multiple pads with
1322 unfixed caps as well as still possibly producing more dynamic
1323 pads by storing each case as a distinct entry in the dynamic list.
1326 2006-12-04 Wim Taymans <wim@fluendo.com>
1328 * gst/playback/gstdecodebin.c: (close_pad_link):
1329 Fix #382223, add more dynamic caps handling.
1331 2006-12-04 Wim Taymans <wim@fluendo.com>
1333 reviewed by: <delete if not using a buddy>
1335 * gst-libs/gst/audio/gstringbuffer.h:
1336 * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_init),
1337 (gst_netaddress_set_ip4_interface),
1338 (gst_netaddress_set_ip6_interface), (gst_netaddress_set_loopback),
1339 (gst_netaddress_set_ttl), (gst_netaddress_get_ip4_interface),
1340 (gst_netaddress_get_ip6_interface), (gst_netaddress_get_loopback),
1341 (gst_netaddress_get_ttl):
1342 * gst-libs/gst/netbuffer/gstnetbuffer.h:
1343 * gst/playback/gstdecodebin.c: (close_pad_link):
1344 * tests/examples/seek/seek.c: (end_scrub), (end_seek), (do_seek),
1345 (seek_cb), (stop_seek), (rate_spinbutton_changed_cb):
1346 * win32/common/config.h:
1348 2006-12-01 Michael Smith <msmith@fluendo.com>
1350 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
1351 Delete bad debug code.
1354 2006-12-01 Jan Schmidt <thaytan@mad.scientist.com>
1356 * gst/videoscale/vs_4tap.c:
1358 * win32/common/config.h:
1359 * win32/vs8/libgstvideoscale.vcproj:
1360 Fix compilation on win32 under VS8
1361 Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
1362 Partially fixes #381175
1364 2006-11-30 Michael Smith <msmith@fluendo.com>
1366 * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
1368 It would be very bad if, after a discont buffer, we thought every
1369 single following buffer was also discont. So, add to the test to
1370 ensure that this isn't the case.
1372 * ext/theora/theoraenc.c: (theora_enc_is_discontinuous):
1373 ... it was the case. So fix it.
1375 2006-11-28 Wim Taymans <wim@fluendo.com>
1377 * gst/playback/gstplaybasebin.c: (check_queue_event):
1380 * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
1381 Fix width and height range from 16 - 4096 to 1 - MAXINT, just like the
1382 padtemplate caps. Refixes #357577.
1384 2006-11-28 Wim Taymans <wim@fluendo.com>
1386 * gst/playback/gstplaybasebin.c: (check_queue_event),
1387 (queue_threshold_reached), (queue_out_of_data),
1388 (gen_preroll_element):
1389 Add event probe to see when EOS is in a queue and we can disable the
1390 underrun signals. Fixes #357577.
1392 2006-11-28 Edward Hervey <edward@fluendo.com>
1394 * gst/playback/Makefile.am:
1395 * gst/playback/gstdecodebin2.c: (gst_decode_bin_get_type),
1396 (_gst_boolean_accumulator), (gst_decode_bin_class_init),
1397 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
1398 (gst_decode_bin_init), (gst_decode_bin_dispose),
1399 (gst_decode_bin_finalize), (gst_decode_bin_set_property),
1400 (gst_decode_bin_get_property), (gst_decode_bin_set_caps),
1401 (gst_decode_bin_get_caps), (gst_decode_bin_autoplug_continue),
1402 (gst_decode_bin_autoplug_sort), (analyze_new_pad), (connect_pad),
1403 (connect_element), (expose_pad), (type_found),
1404 (pad_added_group_cb), (pad_removed_group_cb),
1405 (no_more_pads_group_cb), (pad_added_cb), (pad_removed_cb),
1406 (no_more_pads_cb), (find_compatibles), (is_demuxer_element),
1407 (are_raw_caps), (multi_queue_overrun_cb),
1408 (multi_queue_underrun_cb), (gst_decode_group_new),
1409 (get_current_group), (group_demuxer_event_probe),
1410 (gst_decode_group_control_demuxer_pad),
1411 (gst_decode_group_control_source_pad),
1412 (gst_decode_group_check_if_blocked),
1413 (gst_decode_group_check_if_drained), (gst_decode_group_expose),
1414 (gst_decode_group_hide), (gst_decode_group_free),
1415 (gst_decode_group_set_complete), (source_pad_blocked_cb),
1416 (source_pad_event_probe), (gst_decode_pad_new), (add_fakesink),
1417 (remove_fakesink), (find_sink_pad), (gst_decode_bin_change_state),
1419 New decodebin2 element.
1421 * gst/playback/gstplay-marshal.list:
1422 Added marshallers for new signals in decodebin2
1423 * gst/playback/gstplaybasebin.c: (setup_subtitle), (make_decoder):
1424 Use decodebin2 if *and only if* the USE_DECODEBIN2 environment variable
1427 2006-11-28 Wim Taymans <wim@fluendo.com>
1429 * gst/playback/gstplaybasebin.c: (setup_source),
1430 (gst_play_base_bin_change_state):
1431 Disable rtsp:// uris for the release, it's not good enough yet.
1434 2006-11-26 Wim Taymans <wim@fluendo.com>
1436 * ext/theora/theoradec.c: (gst_theora_dec_reset),
1437 (theora_dec_push_forward), (theora_dec_push_reverse),
1438 (theora_handle_data_packet), (theora_dec_decode_buffer),
1439 (theora_dec_flush_decode), (theora_dec_chain_reverse),
1440 (theora_dec_chain_forward), (theora_dec_chain):
1441 Implement reverse playback.
1443 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
1444 (vorbis_dec_decode_buffer), (vorbis_dec_flush_decode),
1445 (vorbis_dec_chain_forward):
1446 Clear buffers used for reverse playback in _reset.
1447 No need to set the eos flag, we clip samples using the segment.
1449 2006-11-24 Wim Taymans <wim@fluendo.com>
1451 * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
1452 (gst_ogg_pad_init), (gst_ogg_pad_dispose), (gst_ogg_pad_reset),
1453 (gst_ogg_pad_stream_out), (gst_ogg_pad_submit_page),
1454 (gst_ogg_chain_reset), (gst_ogg_demux_perform_seek):
1456 Handle continued pages in reverse mode.
1458 2006-11-24 Wim Taymans <wim@fluendo.com>
1460 * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
1461 (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
1462 (vorbis_dec_flush_decode):
1464 Don't try to add invalid timestamps.
1465 Clipping will unref the buffer.
1467 2006-11-24 Stefan Kost <ensonic@users.sf.net>
1469 * gst/adder/gstadder.h:
1470 * gst/audiotestsrc/gstaudiotestsrc.h:
1471 remove obsolete _factory_init protos
1473 2006-11-24 Stefan Kost <ensonic@users.sf.net>
1475 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
1476 Fix spacing in debug message.
1478 2006-11-23 Wim Taymans <wim@fluendo.com>
1480 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
1481 (gst_ogg_demux_chain):
1482 Don't just ignore return values from _pad_push().
1483 Small debug improvements.
1485 2006-11-23 Michael Smith <msmith@fluendo.com>
1487 * ext/ogg/gstoggmux.c: (gst_ogg_mux_process_best_pad):
1488 If our incoming buffer is marked as DISCONT, then increment the page
1489 number (so that the discontinuity is marked in the final ogg
1490 bitstream) and flush the previous page.
1492 2006-11-22 Michael Smith <msmith@fluendo.com>
1494 * ext/theora/gsttheoraenc.h:
1495 * ext/theora/theoraenc.c: (gst_theora_enc_init),
1496 (theora_enc_reset), (theora_enc_clear), (theora_enc_sink_setcaps),
1497 (theora_buffer_from_packet), (theora_enc_is_discontinuous),
1498 (theora_enc_chain), (theora_enc_change_state):
1499 Mark discontinuities of > 3/4 of a frame, reinit encoder.
1501 * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
1502 (GST_START_TEST), (theoraenc_suite):
1503 Enable discontinuity test, fix it.
1505 2006-11-21 Tim-Philipp Müller <tim at centricular dot net>
1507 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
1508 (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
1509 (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
1510 (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
1511 (gst_text_overlay_change_state):
1512 * ext/pango/gsttextoverlay.h:
1513 Some textoverlay fixes: for one, in the video chain function,
1514 actually wait for a text buffer to come in if there is none at the
1515 moment and there should be one; also, deal more gracefully with
1516 incoming buffers that do not have a timestamp or duration; discard
1517 text buffer when not needed any longer. Fixes #341681.
1519 * tests/check/Makefile.am:
1520 * tests/check/elements/.cvsignore:
1521 * tests/check/elements/textoverlay.c:
1522 (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2),
1523 (setup_textoverlay), (buffer_is_all_black), (create_black_buffer),
1524 (create_text_buffer), (cleanup_textoverlay), (GST_START_TEST),
1525 (test_video_waits_for_text_send_text_newsegment_thread),
1526 (test_video_waits_for_text_shutdown_element),
1527 (test_render_continuity_push_video_buffers_thread),
1528 (textoverlay_suite):
1529 Add some unit tests for textoverlay.
1531 2006-11-21 Tim-Philipp Müller <tim at centricular dot net>
1533 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
1534 Avoid integer underflow when the found probability for mp3 is
1535 smaller than the 'penalty' we subtract if there's not a clean
1536 mp3 header sync at offset 0.
1538 2006-11-21 Stefan Kost <ensonic@users.sf.net>
1540 * docs/libs/gst-plugins-base-libs-sections.txt:
1541 Add some new symbols to the docs
1543 2006-11-20 Tim-Philipp Müller <tim at centricular dot net>
1545 * tests/check/Makefile.am:
1546 * tests/check/elements/ffmpegcolorspace.c:
1547 (ffmpegcolorspace_suite):
1548 Enable ffmpegcolorspace test now that the RGBA32 issue is fixed
1549 (for now not for valgrinding though, since it takes too long).
1551 2006-11-20 Wim Taymans <wim@fluendo.com>
1553 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1554 (gst_ffmpeg_pixfmt_to_caps):
1555 Fix RGBA32 caps. Fixes #357038.
1557 2006-11-20 Tim-Philipp Müller <tim at centricular dot net>
1559 * gst-libs/gst/interfaces/mixertrack.h:
1560 Add FIXME so we can add some padding here in 0.11
1562 2006-11-19 Tim-Philipp Müller <tim at centricular dot net>
1564 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
1565 Fix GstBaseRTPAudioPayload structure so the whole GObject
1566 inheritance business actually works (parent class instance structure
1567 must always come first in the derived class instance structure).
1569 2006-11-16 Tim-Philipp Müller <tim at centricular dot net>
1571 * gst/videotestsrc/Makefile.am:
1572 * tests/check/Makefile.am:
1573 Make sure our checks and the videotestsrc plugin link against the
1574 local uninstalled gst libs and not any installed gst libs that
1575 might happen to exist as well.
1577 * tests/check/elements/adder.c: (message_received),
1578 (test_event_message_received), (test_play_twice_message_received):
1579 * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
1580 Fix compiler warnings when compiling against core with disabled
1583 2006-11-16 Michael Smith <msmith@fluendo.com>
1585 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
1586 (gst_audio_rate_sink_event), (gst_audio_rate_chain):
1587 Fix audiorate, so that it accurately sets offsets and timestamps.
1588 Doesn't change the fundamental algorithmic decisions; so should be
1591 * tests/check/Makefile.am:
1592 Enable audiorate test now that it passes.
1594 2006-11-09 Stefan Kost <ensonic@users.sf.net>
1596 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
1597 clear xv when going to NULL, remove // commented non-existant proto
1599 * tests/examples/seek/seek.c: (main):
1600 add missing tooltip description for scrub and play_scrub
1602 2006-11-14 David Schleef <ds@schleef.org>
1605 Bump liboil requirement to 0.3.8.
1606 * gst-libs/gst/riff/riff-media.c:
1608 * gst/videoscale/vs_image.h:
1609 * gst/videoscale/vs_scanline.h:
1610 Use liboil's stdint.h.
1611 * gst/videotestsrc/videotestsrc.c:
1612 Remove liboil related ifdef's, since they aren't needed now, and
1613 won't work with future versions.
1615 2006-11-14 David Schleef <ds@schleef.org>
1617 * gst/videoscale/Makefile.am:
1618 * gst/videoscale/gstvideoscale.c:
1619 * gst/videoscale/gstvideoscale.h:
1620 * gst/videoscale/vs_4tap.c:
1621 * gst/videoscale/vs_4tap.h:
1622 * gst/videoscale/vs_image.c:
1623 * gst/videoscale/vs_image.h:
1624 * gst/videoscale/vs_scanline.c:
1625 * gst/videoscale/vs_scanline.h:
1626 Add a 4-tap image scaler. Theoretically looks much prettier.
1627 The tap calculation could use some improvement.
1629 2006-11-14 Wim Taymans <wim@fluendo.com>
1631 Patch by: Jan David Mol <j dot j dot d dot mol at tudelft dot nl>
1633 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds),
1634 (gst_riff_parse_strf_iavs):
1635 * gst/subparse/gstsubparse.c: (convert_encoding):
1636 * gst/tcp/gstmultifdsink.c:
1637 (gst_multi_fd_sink_handle_client_write):
1638 * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
1639 (gst_tcp_read_buffer), (gst_tcp_gdp_read_caps),
1640 (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
1641 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_render):
1642 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
1643 (gst_ximagesink_ximage_new):
1644 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
1645 Various gsize and gssize printf fixes. Fixes #372507.
1647 2006-11-13 Wim Taymans <wim@fluendo.com>
1649 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
1650 (vorbis_dec_push_forward), (vorbis_dec_push_reverse),
1651 (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
1652 (vorbis_dec_flush_decode), (vorbis_dec_chain_reverse),
1653 (vorbis_dec_chain_forward), (vorbis_dec_chain):
1654 * ext/vorbis/vorbisdec.h:
1655 First stab at vorbis reverse playback.
1657 2006-11-13 Wim Taymans <wim@fluendo.com>
1659 * gst-libs/gst/audio/gstbaseaudiosink.c:
1660 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
1661 * gst-libs/gst/audio/gstbaseaudiosink.h:
1662 Make the clock sync code more accurate wrt resampling and playback
1665 * gst-libs/gst/audio/gstringbuffer.c:
1666 (gst_ring_buffer_commit_full), (gst_ring_buffer_commit):
1667 * gst-libs/gst/audio/gstringbuffer.h:
1668 Use better algorithm to interpolate sample rates.
1670 2006-11-13 Michael Smith <msmith@fluendo.com>
1672 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page):
1673 Improve a debug line slightly.
1675 * ext/ogg/gstogmparse.c: (gst_ogm_parse_plugin_init):
1676 Call gst_riff_init() in plugin_init, to avoid getting errors from
1677 the debug system (unrelated changes to another plugin made this turn
1680 2006-11-10 Tim-Philipp Müller <tim at centricular dot net>
1682 Patch by: Sergey Scobich <sergery.scobich at gmail com>
1684 * win32/common/libgsttag.def:
1685 Add missing symbol (#366492).
1687 2006-11-09 Tim-Philipp Müller <tim at centricular dot net>
1689 * gst/playback/gststreamselector.c: (gst_stream_selector_dispose):
1690 Don't unref a NULL pad.
1692 2006-11-09 Wim Taymans <wim@fluendo.com>
1694 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
1695 (gst_ogg_demux_get_prev_page), (gst_ogg_demux_perform_seek),
1696 (gst_ogg_demux_handle_page), (gst_ogg_demux_chain),
1697 (gst_ogg_demux_loop_forward), (gst_ogg_demux_loop_reverse),
1698 (gst_ogg_demux_loop):
1699 Implement first stab at reverse playback.
1701 2006-11-07 Stefan Kost <ensonic@users.sf.net>
1703 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
1704 (gst_riff_create_video_template_caps):
1705 add h263/h264 variants to the caps, Fixes #363118
1707 2006-11-06 Tim-Philipp Müller <tim at centricular dot net>
1709 * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
1710 * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
1711 Use g_strerror instead of strerror so we get UTF-8.
1713 2006-11-03 David Schleef <ds@schleef.org>
1715 * ext/ogg/gstoggdemux.c:
1716 * ext/ogg/gstoggmux.c:
1717 Add/remove KW-DIRAC header here, since it is ogg-specific.
1719 2006-11-03 Michael Smith <msmith@fluendo.com>
1721 * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
1722 Recognise more mpeg4 elementary video streams.
1724 2006-11-02 Edward Hervey <edward@fluendo.com>
1726 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
1727 Lower the probability of mp3 typefinding functions if we don't find a
1728 valid mp3 header at the start of the file.
1731 2006-11-02 Wim Taymans <wim@fluendo.com>
1733 * ext/theora/gsttheoradec.h:
1734 * ext/theora/theoradec.c: (gst_theora_dec_init),
1735 (theora_dec_sink_event), (theora_dec_chain_forward),
1736 (theora_dec_flush_decode), (theora_dec_chain_reverse),
1738 Document and partially implement an algorithm for doing reverse playback
1741 2006-11-02 Tim-Philipp Müller <tim at centricular dot net>
1743 Patch by: Sergey Scobich <sergey.scobich at gmail com>
1745 * win32/common/config.h:
1746 * win32/common/interfaces-enumtypes.c:
1747 * win32/common/libgsttag.def:
1748 * win32/vs8/gst-plugins-base.sln:
1749 * win32/vs8/libgstaudioresample.vcproj:
1750 * win32/vs8/libgstinterfaces.vcproj:
1751 * win32/vs8/libgstogg.vcproj:
1752 * win32/vs8/libgstriff.vcproj:
1753 * win32/vs8/libgsttag.vcproj:
1754 * win32/vs8/libgsttheora.vcproj:
1755 * win32/vs8/libgstvideoscale.vcproj:
1756 * win32/vs8/libgstvorbis.vcproj:
1757 Misc. VS8 build fixes: fix syntax in config.h, add missing entries
1758 to libgsttag.def; add missing dependencies for some vs8 projects;
1759 re-arrange placement of .def files in vs8 projects (#366334).
1761 2006-11-01 Tim-Philipp Müller <tim at centricular dot net>
1764 Remove unused variable.
1766 * ext/ogg/gstoggdemux.c:
1767 Fix Wim's surname in plugin description.
1769 2006-10-31 Wim Taymans <wim@fluendo.com>
1771 * gst-plugins-base.spec.in:
1772 spec new .h file. Fixes #368310.
1774 2006-10-31 Michael Smith <msmith@fluendo.com>
1776 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
1777 (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
1778 (gst_multi_fd_sink_get_stats),
1779 (gst_multi_fd_sink_remove_client_link),
1780 (gst_multi_fd_sink_queue_buffer),
1781 (gst_multi_fd_sink_handle_clients):
1782 * gst/tcp/gstmultifdsink.h:
1783 Make using the remove or clear signals threadsafe.
1784 Make calling get-stats with an invalid fd not segfault.
1787 2006-10-31 Wim Taymans <wim@fluendo.com>
1789 * gst-libs/gst/rtp/Makefile.am:
1790 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
1791 (gst_base_rtp_audio_payload_init):
1792 Fix and activate base audio payloader.
1794 2006-10-28 Tim-Philipp Müller <tim at centricular dot net>
1796 * gst/typefind/gsttypefindfunctions.c: (qtif_type_find),
1798 Add typefinder for QuickTime Image Files (see #366156).
1800 2006-10-28 Tim-Philipp Müller <tim at centricular dot net>
1802 * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
1803 Another typo fix (#366212).
1805 2006-10-27 Wim Taymans <wim@fluendo.com>
1807 * gst/volume/gstvolume.c: (volume_transform_ip):
1808 Use stream time to synchronize volume property instead of rather random
1809 timestamps. This is needed when gnonlin does its time shifting.
1811 2006-10-27 Wim Taymans <wim@fluendo.com>
1813 Patch by: Mark Nauwelaerts <manauw at skynet dot be>
1815 * ext/ogg/gstoggmux.c: (gst_ogg_mux_release_pad):
1816 Remove the pad from the element in release_pad. Fixes #364812.
1818 2006-10-27 Tim-Philipp Müller <tim at centricular dot net>
1820 * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
1821 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
1822 Explicitly create our custom buffer classes at a thread-safe
1823 location as well, since g_type_class_ref() doesn't seem to be
1824 entirely thread-safe either (#365501; also see #349410).
1826 2006-10-26 Tim-Philipp Müller <tim at centricular dot net>
1828 * gst-libs/gst/riff/riff-read.c: (freeform_string_to_utf8),
1829 (gst_riff_parse_info):
1830 If strings in INFO chunk are not UTF-8, do something similar to
1831 what we do for ID3v1 tags: check a number of environment variables
1832 (GST_AVI_TAG_ENCODING, GST_RIFF_TAG_ENCODING, GST_TAG_ENCODING) for
1833 character sets to try, otherwise try the current locale and/or fall
1834 back on ISO-8859-1. Fixes #360552.
1836 2006-10-23 Tim-Philipp Müller <tim at centricular dot net>
1838 * gst/videotestsrc/gstvideotestsrc.c:
1839 (gst_video_test_src_pattern_get_type),
1840 (gst_video_test_src_set_pattern):
1841 * gst/videotestsrc/gstvideotestsrc.h:
1842 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_checkers1),
1843 (gst_video_test_src_checkers2), (gst_video_test_src_checkers4),
1844 (gst_video_test_src_checkers8):
1845 * gst/videotestsrc/videotestsrc.h:
1846 Add a bunch of exciting new checkers patterns.
1848 2006-10-23 Tim-Philipp Müller <tim at centricular dot net>
1850 * gst/subparse/Makefile.am:
1851 * gst/subparse/gstsubparse.c:
1852 (gst_sub_parse_data_format_autodetect),
1853 (gst_sub_parse_format_autodetect), (handle_buffer),
1854 (gst_sub_parse_chain), (gst_subparse_type_find), (plugin_init):
1855 * gst/subparse/gstsubparse.h:
1856 * gst/subparse/tmplayerparse.c: (tmplayer_parse_line),
1858 * gst/subparse/tmplayerparse.h:
1859 Add support for TMPlayer-type subtitles (#362845).
1861 * tests/check/elements/subparse.c: (test_tmplayer_do_test),
1862 (GST_START_TEST), (subparse_suite):
1863 Add some basic unit tests for the above.
1865 2006-10-23 Tim-Philipp Müller <tim at centricular dot net>
1867 * tests/check/elements/audiorate.c: (test_injector_base_init),
1868 (test_injector_class_init), (test_injector_chain),
1869 (test_injector_init), (probe_cb), (do_perfect_stream_test),
1870 (GST_START_TEST), (audiorate_suite):
1871 More tests for audiorate: inject buffers to check behaviour when
1874 2006-10-21 Tim-Philipp Müller <tim at centricular dot net>
1876 * tests/check/Makefile.am:
1877 * tests/check/elements/.cvsignore:
1878 * tests/check/elements/audiorate.c: (probe_cb), (got_buf),
1879 (do_perfect_stream_test), (GST_START_TEST), (audiorate_suite):
1880 Add some basic unit tests for audiorate. Disabled at the moment
1881 since it doesn't pass yet (see bug #363119).
1883 2006-10-20 Tim-Philipp Müller <tim at centricular dot net>
1885 * gst/subparse/gstsubparse.c: (subrip_fix_up_markup),
1886 (parse_subrip), (handle_buffer):
1887 Add missing closing tags for markup and fix broken markup,
1888 otherwise pango won't render anything (fixes #357531). Also,
1889 make sure the text we send out is always NUL-terminated
1890 (better safe than sorry etc.).
1892 * tests/check/elements/subparse.c: (test_srt_do_test),
1894 Some more tests for .srt incl. tests for the above stuff.
1896 2006-10-20 Julien MOUTTE <julien@moutte.net>
1898 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
1899 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
1900 Patch by: Stefan Kost <ensonic@users.sf.net>
1901 Try to redraw borders only when needed. Apparently this consumes
1902 resources on small devices... :-O (#363607)
1904 2006-10-20 Michael Smith <msmith@fluendo.com>
1906 * gst/tcp/gstmultifdsink.c:
1907 (gst_multi_fd_sink_client_queue_buffer):
1908 If caps change, then update the client's idea of the caps so that we
1909 don't end up re-sending streamheaders for every single buffer after
1912 2006-10-20 Michael Smith <msmith@fluendo.com>
1914 * ext/ogg/gstoggparse.c: (gst_ogg_parse_dispose),
1915 (gst_ogg_parse_append_header), (gst_ogg_parse_chain):
1916 Set caps on pushed buffers; fix up refcounting of caps objects.
1918 2006-10-19 Tim-Philipp Müller <tim at centricular dot net>
1920 * gst/typefind/gsttypefindfunctions.c: (mmsh_type_find),
1922 Typefind mmsh header data packet to application/x-mmsh (#362625).
1924 2006-10-19 Tim-Philipp Müller <tim at centricular dot net>
1926 * tests/check/Makefile.am:
1927 * tests/check/elements/.cvsignore:
1928 * tests/check/elements/subparse.c: (buffer_from_static_string),
1929 (setup_subparse), (teardown_subparse), (test_srt_do_test),
1930 (GST_START_TEST), (subparse_suite):
1931 Add very simple unit test for subparse.
1933 2006-10-19 Tim-Philipp Müller <tim at centricular dot net>
1935 * gst/subparse/gstsubparse.c: (strip_trailing_newlines),
1937 Strip trailing newlines from subtitle text output.
1939 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
1941 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
1942 (gst_sub_parse_change_state):
1943 Fix memleak; clear subparse->textbuf n state change function.
1945 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
1947 * gst/subparse/gstsubparse.c:
1948 (gst_sub_parse_data_format_autodetect):
1949 Don't require subrip (.srt) files to start with a chunk number of 1.
1951 2006-10-18 Wim Taymans <wim@fluendo.com>
1953 * gst-libs/gst/audio/gstbaseaudiosink.c:
1954 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
1955 * gst-libs/gst/audio/gstbaseaudiosink.h:
1956 Extract rate from the NEWSEGMENT event.
1957 Use commit_full to also take rate adjustment into account when writing
1958 samples to the ringbuffer.
1960 * gst-libs/gst/audio/gstringbuffer.c:
1961 (gst_ring_buffer_commit_full), (gst_ring_buffer_commit),
1962 (gst_ring_buffer_read):
1963 * gst-libs/gst/audio/gstringbuffer.h:
1964 Added _commit_full() to also take rate into account.
1965 Use simple interpolation algorithm to resample audio.
1966 API: gst_ring_buffer_commit_full()
1968 * tests/examples/seek/scrubby.c: (speed_cb), (do_seek):
1969 * tests/examples/seek/seek.c: (segment_done):
1970 Don't try to seek with 0.0 rate, just pause instead.
1971 Remove bogus debug line.
1973 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
1975 * gst/playback/gstplaybasebin.c: (subbin_startup_sync_msg),
1977 Catch async errors when starting up the subtitle bin, so we can
1978 stop waiting and continue with the main film instead of hanging
1979 forever. Fixes #339366.
1981 * tests/check/elements/playbin.c: (playbin_suite):
1982 Enable unit test for the above.
1984 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
1986 * tests/check/Makefile.am:
1987 * tests/check/elements/.cvsignore:
1988 * tests/check/elements/playbin.c: (GST_START_TEST),
1989 (gst_red_video_src_uri_get_type),
1990 (gst_red_video_src_uri_get_protocols),
1991 (gst_red_video_src_uri_get_uri), (gst_red_video_src_uri_set_uri),
1992 (gst_red_video_src_uri_handler_init),
1993 (gst_red_video_src_init_type), (gst_red_video_src_base_init),
1994 (gst_red_video_src_create), (gst_red_video_src_class_init),
1995 (gst_red_video_src_init), (plugin_init), (playbin_suite):
1996 Some small and basic unit tests for playbin; not very useful yet,
1997 but at least a start.
1999 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2001 * gst/playback/gstplaybin.c: (setup_sinks):
2002 The old pad activation spiel.
2004 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2006 * gst/playback/gstplaybasebin.c: (setup_source):
2007 Don't hang forever if the subbin already fails to start up in
2008 the state change to PAUSED (#339366).
2010 2006-10-17 Tim-Philipp Müller <tim at centricular dot net>
2012 * gst-libs/gst/interfaces/tuner.c: (gst_tuner_list_channels),
2013 (gst_tuner_set_channel), (gst_tuner_get_channel),
2014 (gst_tuner_list_norms), (gst_tuner_set_norm), (gst_tuner_get_norm),
2015 (gst_tuner_set_frequency), (gst_tuner_get_frequency),
2016 (gst_tuner_signal_strength), (gst_tuner_find_norm_by_name),
2017 (gst_tuner_find_channel_by_name):
2018 Fix some function guards, add some more function guards.
2020 2006-10-17 Jan Schmidt <thaytan@mad.scientist.com>
2022 * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
2023 (remove_element_chain):
2024 Don't return a pad from get_our_ghost_pad unless it is actually the
2026 Change a cast in remove_element_chain slightly.
2028 2006-10-13 Julien MOUTTE <julien@moutte.net>
2030 * tests/examples/seek/seek.c: (do_seek), (start_seek),
2031 (rate_spinbutton_changed_cb), (segment_done), (msg_state_changed):
2032 Segment seeking needs to use the rate and set stop to -1.
2034 2006-10-13 Wim Taymans <wim@fluendo.com>
2036 * gst-libs/gst/audio/gstbaseaudiosink.c:
2037 (gst_base_audio_sink_setcaps):
2038 Don't crash when ringbuffer is not yet created.
2039 Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
2042 * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
2043 * gst/playback/gststreamselector.c:
2044 (gst_stream_selector_request_new_pad):
2045 Activate pads befre adding them to running elements.
2047 2006-10-13 Julien MOUTTE <julien@moutte.net>
2049 * tests/examples/seek/seek.c: (do_seek), (start_seek),
2050 (rate_spinbutton_changed_cb), (msg_state_changed): Stop the scale
2051 updater when we start grabing the slider. Don't wait for the
2052 pipeline to be PAUSED.
2054 2006-10-13 Tim-Philipp Müller <tim at centricular dot net>
2056 * gst-libs/gst/interfaces/mixer.c: (gst_mixer_list_tracks),
2057 (gst_mixer_set_volume), (gst_mixer_get_volume),
2058 (gst_mixer_set_mute), (gst_mixer_set_option),
2059 (gst_mixer_get_option), (gst_mixer_mute_toggled),
2060 (gst_mixer_record_toggled), (gst_mixer_volume_changed),
2061 (gst_mixer_option_changed):
2062 Guard mixer interface functions against bogus arguments.
2064 2006-10-12 Julien MOUTTE <julien@moutte.net>
2066 * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
2067 (play_cb), (pause_cb), (stop_cb), (rate_spinbutton_changed_cb),
2068 (msg_state_changed), (main): Use state-changed messages to trigger
2069 start/stop of scale update timer. Indeed the scale slider was
2070 jumping here and there because the update timer was activated
2071 before seek completed. This fixes instant applying of rate changes
2072 by pressing the spinbutton like a crazy man !
2074 2006-10-12 Tim-Philipp Müller <tim at centricular dot net>
2076 Patch by: Sebastien Cote <sebas642 at yahoo.ca>
2078 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
2079 (gst_basertppayload_finalize):
2080 Fix two small memory leaks (#361456).
2082 2006-10-10 Julien MOUTTE <julien@moutte.net>
2084 * tests/examples/seek/seek.c: (do_seek),
2085 (rate_spinbutton_changed_cb): When changing spinbutton we try
2086 to change the rate on the fly.
2088 2006-10-10 Wim Taymans <wim@fluendo.com>
2090 * gst-libs/gst/riff/riff-ids.h:
2091 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
2092 (gst_riff_create_audio_template_caps):
2095 2006-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
2097 Patch by: Josep Torre Valles <josep@fluendo.com>
2099 * ext/gnomevfs/gstgnomevfssink.c:
2100 * ext/gnomevfs/gstgnomevfssrc.c:
2101 Fix URI interface implementation return type.
2102 * ext/pango/gsttextoverlay.c: (gst_text_overlay_set_property):
2103 Fix what looks like a copy/paste issue when assigning values.
2104 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
2105 (gst_audio_filter_template_get_type):
2106 Cast to prevent Forte warnings.
2107 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
2108 Fix URI interface implementation return type.
2109 gst_pad_query_position requires a signed integer pointer as
2110 3rd parameter, GstClockTime is unsigned.
2111 * gst/audioconvert/audioconvert.c:
2112 Fix integer overflow when treated as signed.
2113 * gst/audioresample/resample.c: (resample_add_input_data):
2114 Cast to prevent warnings on Forte.
2115 * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette):
2116 Fix integer overflow when treated as signed.
2117 * gst/ffmpegcolorspace/imgconvert_template.h:
2118 Fix integer overflow when treated as signed. RGBA_OUT shifts bits.
2119 * gst/playback/gstdecodebin.c: (queue_filled_cb),
2120 (cleanup_decodebin):
2121 Who initialises a guint to -1!
2122 Cast function pointers to prevent warnings on Forte.
2123 * gst/playback/gstplaybasebin.c: (queue_deadlock_check),
2124 (queue_threshold_reached):
2125 Cast function pointers correctly to prevent warnings on Forte.
2126 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
2127 Cast function pointers correctly to prevent warnings on Forte.
2128 * gst/subparse/gstssaparse.c: (gst_ssa_parse_setcaps):
2129 Obvious change to unsigned, 0xEF > max signed char.
2130 * gst/tcp/gstmultifdsink.c: (get_buffers_max), (count_burst_unit):
2131 GstClockTime is unsigned, initialise correctly.
2132 * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
2133 Cast so pointer arithemetic doesn't cause warnings on Forte.
2134 * gst/videorate/gstvideorate.c:
2135 Use correct return value.
2136 * tests/examples/seek/scrubby.c:
2137 GstClockTime is unsigned, initialise correctly.
2139 2006-10-10 Tim-Philipp Müller <tim at centricular dot net>
2141 Patch by: Ferenc Gerlits <fgerlits at gmail com>
2143 * gst/typefind/gsttypefindfunctions.c:
2144 Recognise XML files and XML-like files shorter than 256 bytes as
2145 well (fixes #359237).
2147 2006-10-09 Edgard Lima <edgard.lima@indt.org.br>
2149 Patch by: Renato Filho <renato.filho@indt.org.br>
2151 * gst/typefind/gsttypefindfunctions.c:
2152 Added typefind functions to video/x-nuv media.
2154 2006-10-08 Tim-Philipp Müller <tim at centricular dot net>
2156 * gst-libs/gst/interfaces/xoverlay.c:
2157 (gst_x_overlay_set_xwindow_id), (gst_x_overlay_expose):
2158 Some more guards against invalid input.
2160 2006-10-07 Julien MOUTTE <julien@moutte.net>
2162 * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event):
2164 * tests/examples/seek/seek.c: (do_seek),
2165 (rate_spinbutton_changed_cb), (main): Add a rate spinbutton in
2166 seek example to experiment with rates != 1.0 (reverse playback !)
2168 2006-10-06 Stefan Kost <ensonic@users.sf.net>
2170 * gst-libs/gst/interfaces/xoverlay.c:
2171 Unref message in doc-example (spotted by Robert McQueen)
2173 2006-10-06 Wim Taymans <wim@fluendo.com>
2175 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2176 (mpeg1_parse_header), (mpeg1_sys_type_find):
2179 2006-10-06 Wim Taymans <wim@fluendo.com>
2181 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
2183 * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
2184 Activate dynamic pads before adding them to the element.
2186 2006-10-06 Michael Smith <msmith@fluendo.com>
2188 * gst-libs/gst/floatcast/floatcast.h:
2189 Fix obviously-bogus macros; use the correct types.
2191 2006-10-06 Wim Taymans <wim@fluendo.com>
2193 * gst-libs/gst/rtp/gstbasertpdepayload.c:
2194 (gst_base_rtp_depayload_change_state):
2195 Also call parent state change function to activate pads.
2197 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2198 (mpeg1_parse_header), (mpeg1_sys_type_find):
2199 Add some more debug info in mpeg typefinding.
2201 2006-10-06 Michael Smith <msmith@fluendo.com>
2203 * ext/theora/theoradec.c: (theora_dec_chain):
2204 Zero byte theora packets are valid and well-defined; don't warn on
2207 2006-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
2209 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
2210 (gst_multi_fd_sink_get_stats), (find_limits),
2211 (gst_multi_fd_sink_queue_buffer):
2212 API: add dropped_buffers to the get-stats GValueArray
2214 2006-10-05 Tim-Philipp Müller <tim at centricular dot net>
2216 * ext/alsa/gstalsadeviceprobe.c:
2217 (gst_alsa_device_property_probe_get_values):
2218 * ext/alsa/gstalsasink.c: (set_hwparams):
2219 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_elem_pad),
2220 (gst_ogg_chain_new_stream), (gst_ogg_demux_read_chain):
2221 * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers),
2222 (gst_ogg_mux_process_best_pad):
2223 * ext/ogg/gstoggparse.c: (gst_ogg_parse_new_stream),
2224 (gst_ogg_parse_chain):
2225 * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
2226 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
2227 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_setup),
2228 (gst_vorbis_enc_buffer_check_discontinuous):
2229 * ext/vorbis/vorbisparse.c: (vorbis_parse_src_query):
2230 * gst-libs/gst/audio/gstbaseaudiosink.c:
2231 (gst_base_audio_sink_render):
2232 * gst-libs/gst/cdda/gstcddabasesrc.c:
2233 (gst_cdda_base_src_handle_track_seek):
2234 * gst-libs/gst/rtp/gstbasertpdepayload.c:
2235 (gst_base_rtp_depayload_push_full):
2236 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
2237 * gst/audioresample/resample.c: (resample_input_pushthrough):
2238 * gst/playback/gstplaybasebin.c: (queue_out_of_data):
2239 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
2240 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2241 (wavpack_type_find):
2242 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
2243 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
2244 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
2245 * tests/check/elements/volume.c: (GST_START_TEST):
2246 Printf format fixes.
2248 2006-10-04 Thomas Vander Stichele <thomas at apestaart dot org>
2250 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_caps):
2251 Fix a simple mistake (see the docs)
2254 2006-10-03 Tim-Philipp Müller <tim at centricular dot net>
2256 * docs/plugins/Makefile.am:
2257 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2258 * docs/plugins/gst-plugins-base-plugins-sections.txt:
2259 * docs/plugins/gst-plugins-base-plugins.args:
2260 * docs/plugins/gst-plugins-base-plugins.hierarchy:
2261 * docs/plugins/inspect/plugin-adder.xml:
2262 * docs/plugins/inspect/plugin-alsa.xml:
2263 * docs/plugins/inspect/plugin-audioconvert.xml:
2264 * docs/plugins/inspect/plugin-audiorate.xml:
2265 * docs/plugins/inspect/plugin-audioresample.xml:
2266 * docs/plugins/inspect/plugin-audiotestsrc.xml:
2267 * docs/plugins/inspect/plugin-cdparanoia.xml:
2268 * docs/plugins/inspect/plugin-decodebin.xml:
2269 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
2270 * docs/plugins/inspect/plugin-gdp.xml:
2271 * docs/plugins/inspect/plugin-gnomevfs.xml:
2272 * docs/plugins/inspect/plugin-libvisual.xml:
2273 * docs/plugins/inspect/plugin-ogg.xml:
2274 * docs/plugins/inspect/plugin-pango.xml:
2275 * docs/plugins/inspect/plugin-playbin.xml:
2276 * docs/plugins/inspect/plugin-subparse.xml:
2277 * docs/plugins/inspect/plugin-tcp.xml:
2278 * docs/plugins/inspect/plugin-theora.xml:
2279 * docs/plugins/inspect/plugin-typefindfunctions.xml:
2280 * docs/plugins/inspect/plugin-video4linux.xml:
2281 * docs/plugins/inspect/plugin-videorate.xml:
2282 * docs/plugins/inspect/plugin-videoscale.xml:
2283 * docs/plugins/inspect/plugin-videotestsrc.xml:
2284 * docs/plugins/inspect/plugin-volume.xml:
2285 * docs/plugins/inspect/plugin-vorbis.xml:
2286 * docs/plugins/inspect/plugin-ximagesink.xml:
2287 * docs/plugins/inspect/plugin-xvimagesink.xml:
2288 Add vorbistag element to docs; update version numbers to 0.10.10.1.
2290 2006-10-03 Tim-Philipp Müller <tim at centricular dot net>
2292 Patch by: James "Doc" Livingston <doclivingston at gmail com>
2294 * ext/vorbis/Makefile.am:
2295 * ext/vorbis/vorbis.c: (plugin_init):
2296 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_class_init),
2297 (vorbis_parse_parse_packet), (vorbis_parse_chain):
2298 * ext/vorbis/vorbisparse.h:
2299 * ext/vorbis/vorbistag.c: (gst_vorbis_tag_base_init),
2300 (gst_vorbis_tag_class_init), (gst_vorbis_tag_init),
2301 (gst_vorbis_tag_parse_packet):
2302 * ext/vorbis/vorbistag.h:
2303 Add new vorbistag element which derives from vorbisparse
2304 and is essentially the same as well, only that it implements
2305 the GstTagSetter interface and can modify the stream's
2306 vorbiscomment on the fly (#335635).
2308 * tests/check/Makefile.am:
2309 * tests/check/elements/.cvsignore:
2310 * tests/check/elements/vorbistag.c: (setup_vorbistag),
2311 (cleanup_vorbistag), (buffer_probe), (start_pipeline),
2312 (get_buffer), (stop_pipeline), (_create_codebook_header_buffer),
2313 (_create_audio_buffer), (GST_START_TEST), (vorbistag_suite):
2314 Add unit test for new vorbistag element.
2316 2006-10-03 Tim-Philipp Müller <tim at centricular dot net>
2318 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init),
2319 (vorbis_parse_push_headers), (vorbis_parse_chain):
2320 Set BOS flag in packet structure to fix 'jump depends
2321 on unitialized value' errors in valgrind; various minor
2324 2006-09-30 Jan Schmidt <thaytan@mad.scientist.com>
2326 * gst/playback/gstdecodebin.c: (close_pad_link):
2327 Fix typo in a debug statement.
2329 * gst/playback/gstplaybasebin.c: (probe_triggered),
2330 (new_decoded_pad_full), (new_decoded_pad), (subs_new_decoded_pad),
2331 (gen_source_element), (source_new_pad), (analyse_source),
2333 When handling no_more_pads in new_decoded_pad, make sure to treat
2334 subtitle pads correctly. Fixes playback with subtitle files.
2336 Move a recurring message to LOG level.
2338 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
2339 The maximum value for the Xv colorkey on this Radeon is 0xFFFFFFFF,
2340 which ends up as -1 when cast to an int. Make the logic handle the
2341 max value as an unsigned mask and only change the colorkey when it's
2342 a value we recognise.
2344 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
2346 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2347 Removed empty * between paragraphs
2349 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
2351 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2352 * gst-libs/gst/rtp/README:
2353 Moved some documentation into .c file
2355 2006-09-29 Wim Taymans <wim@fluendo.com>
2357 * gst/playback/gstdecodebin.c: (no_more_pads):
2360 2006-09-29 Wim Taymans <wim@fluendo.com>
2362 * gst/playback/gstdecodebin.c: (new_caps):
2365 * gst/playback/gstplaybin.c:
2368 2006-09-29 Tim-Philipp Müller <tim at centricular dot net>
2370 * tests/check/Makefile.am:
2371 Re-enable cddabasesrc test to see if it works again
2374 2006-09-29 Wim Taymans <wim@fluendo.com>
2376 * gst/playback/gstplaybasebin.c: (setup_subtitle),
2377 (gen_source_element):
2378 Handle invalid URIs a bit more gracefully.
2380 2006-09-29 Tim-Philipp Müller <tim at centricular dot net>
2382 * tests/check/pipelines/oggmux.c:
2383 Remove obsolete comment.
2385 2006-09-29 Michael Smith <msmith@fluendo.com>
2387 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
2388 (gst_ogg_mux_release_pad), (gst_ogg_mux_push_buffer),
2389 (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
2390 (gst_ogg_mux_send_headers), (gst_ogg_mux_process_best_pad),
2391 (gst_ogg_mux_collected):
2392 Commit patch from James "Doc" Livingston, adds proper EOS handling
2393 in oggmux. GStreamer can, for the first time ever, create a valid
2396 * tests/check/pipelines/oggmux.c: (check_chain_final_state),
2398 Reenable tests now that they pass.
2400 2006-09-29 Wim Taymans <wim@fluendo.com>
2402 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
2403 Stop reading commands when EOF (we read 0) as well.
2405 2006-09-28 Wim Taymans <wim@fluendo.com>
2407 * gst/playback/gstdecodebin.c: (dynamic_create), (dynamic_free),
2408 (close_pad_link), (dynamic_remove), (no_more_pads), (new_caps),
2409 (find_dynamic), (unlinked), (close_link):
2410 Implement delayed caps linking needed for element with a lot of
2411 different caps on the src pads that get fixed at runtime.
2412 Improve management of dynamic elements.
2414 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
2415 (group_destroy), (group_commit), (check_queue), (queue_overrun),
2416 (gen_preroll_element), (remove_groups), (unknown_type),
2417 (add_element_stream), (no_more_pads_full), (no_more_pads),
2418 (sub_no_more_pads), (source_no_more_pads), (preroll_unlinked),
2419 (new_decoded_pad), (setup_subtitle), (array_has_value),
2420 (gen_source_element), (source_new_pad), (has_all_raw_caps),
2421 (analyse_source), (remove_decoders), (make_decoder),
2422 (remove_source), (setup_source), (finish_source), (prepare_output),
2423 (gst_play_base_bin_change_state):
2424 * gst/playback/gstplaybasebin.h:
2425 Use more _CAST instead of full type checking casts.
2426 Small cleanups, plug some leaks.
2427 Handle dynamic sources.
2428 Add some helper functions to create lists of strings used for
2429 blacklisting and other stuff.
2430 Refactor some code dealing with analysing the source.
2431 Re-enable sources without pads (like cd:// or other selfcontained
2434 2006-09-28 Wim Taymans <wim@fluendo.com>
2436 * gst-libs/gst/audio/gstbaseaudiosink.c:
2437 (gst_base_audio_sink_render):
2438 When we have a timestamp, we can still perform clipping.
2439 When we have no clock, we must play the sample ASAP.
2441 2006-09-28 Wim Taymans <wim@fluendo.com>
2443 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
2444 Set caps on outgoing buffers.
2446 * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
2447 (gst_video_rate_event), (gst_video_rate_chain):
2448 * gst/videorate/gstvideorate.h:
2449 Fix videorate some more. Fixes #357977
2451 2006-09-28 Tim-Philipp Müller <tim at centricular dot net>
2453 * tests/check/elements/adder.c: (adder_suite):
2454 Don't set timeout to 6 seconds when we're running
2455 in valgrind ... (and how is 6 seconds longer than
2456 the default anyway?)
2458 2006-09-28 Wim Taymans <wim@fluendo.com>
2460 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
2461 (gst_audio_rate_sink_event), (gst_audio_rate_convert),
2462 (gst_audio_rate_convert_segments), (gst_audio_rate_chain):
2463 Keep sink and src segment to keep track of time and support more
2465 Fix bogus next_offset and run_time calculation, don't understand how
2466 this could have worked before. Fixes #357976.
2467 Remove some unneeded vars.
2469 2006-09-28 Tim-Philipp Müller <tim at centricular dot net>
2471 * gst/playback/gstplaybin.c: (remove_sinks):
2472 Only remove visualisation from visbin if there is a visbin (or:
2473 don't throw warnings when closing totem without playing a file).
2475 2006-09-27 Wim Taymans <wim@fluendo.com>
2477 * gst-libs/gst/audio/gstbaseaudiosink.c:
2478 (gst_base_audio_sink_render):
2479 Add some more info in a WARNING.
2481 * gst-libs/gst/audio/gstbaseaudiosrc.c:
2482 (gst_base_audio_src_create):
2483 Handle PAUSE in create function, use new -core addition to
2484 wait for playing. Fixes pausing and resuming capture from an
2487 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
2488 (gst_ring_buffer_read):
2490 Caller supports interrupted reads now.
2492 2006-09-27 Tim-Philipp Müller <tim at centricular dot net>
2494 * tests/check/Makefile.am:
2495 Another attempt to make the gen64 buildbot happy.
2497 2006-09-27 Stefan Kost <ensonic@users.sf.net>
2499 Patch by: Jonathan Matthew <jonathan@kaolin.wh9.net>
2501 * ext/libvisual/visual.c: (gst_visual_clear_actors),
2502 (gst_visual_chain), (gst_visual_change_state):
2503 Libvisual plugin was not passing audio data to libvisual 0.4.0
2504 correctly. Fixes #357800
2506 2006-09-27 Tim-Philipp Müller <tim at centricular dot net>
2508 * tests/check/pipelines/simple-launch-lines.c: (run_pipeline):
2509 Add timeout to _get_state() so we see which pipeline it is
2510 that causes trouble on the gen64 build bot.
2512 2006-09-27 Wim Taymans <wim@fluendo.com>
2514 * gst-libs/gst/rtp/gstbasertpdepayload.c:
2515 (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_push_full),
2516 (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_process),
2517 (gst_base_rtp_depayload_set_gst_timestamp):
2518 the source pad always uses fixed caps.
2520 2006-09-27 Wim Taymans <wim@fluendo.com>
2522 * docs/libs/gst-plugins-base-libs-docs.sgml:
2523 * docs/libs/gst-plugins-base-libs-sections.txt:
2524 * gst-libs/gst/audio/gstaudioclock.c:
2525 * gst-libs/gst/audio/gstaudioclock.h:
2526 * gst-libs/gst/audio/gstaudiosink.c:
2527 * gst-libs/gst/audio/gstaudiosink.h:
2528 * gst-libs/gst/audio/gstaudiosrc.c:
2529 * gst-libs/gst/audio/gstbaseaudiosink.c:
2530 (gst_base_audio_sink_render):
2531 * gst-libs/gst/audio/gstbaseaudiosink.h:
2532 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init):
2533 * gst-libs/gst/audio/gstbaseaudiosrc.h:
2534 * gst-libs/gst/audio/gstringbuffer.h:
2535 Added docs for the audio libs.
2537 2006-09-27 Tim-Philipp Müller <tim at centricular dot net>
2539 * tests/check/Makefile.am:
2540 Temporarily disable test that fails on the bots for unknown reasons.
2542 2006-09-26 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
2544 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2545 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
2546 Moved AudioCodecType into priv
2547 Renamed all gst_basertpaudiopayload to gst_base_rtp_audio_payload prefixes
2549 2006-09-25 Wim Taymans <wim@fluendo.com>
2551 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
2552 (add_fakesink), (remove_fakesink), (pad_probe), (close_pad_link),
2553 (is_demuxer_element), (try_to_link_1), (get_our_ghost_pad),
2555 Cleanups and small leak fixes.
2556 Added Depayloaders to valid list of autopluggable elements.
2558 2006-09-25 Wim Taymans <wim@fluendo.com>
2560 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
2561 (gst_play_bin_vis_blocked), (gst_play_bin_set_property),
2562 (gen_video_element), (gen_text_element), (gen_audio_element),
2563 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
2564 (gst_play_bin_set_clock_func), (gst_play_bin_change_state):
2565 Detect NO_PREROLL state change returns and disable clock distribution to
2566 the sinks so that sync is disabled.
2567 Avoid some type checking and do simple casts instead.
2568 Small cleanups, fix some FIXMEs.
2569 Be more robust when linking user specified elements, catch an report
2570 errors. Fixes #357404.
2571 Fix some leaks in the error paths.
2573 2006-09-25 Stefan Kost <ensonic@users.sf.net>
2576 ChangeLog surgery for missing bug-number
2578 2006-09-25 Tim-Philipp Müller <tim at centricular dot net>
2580 Patch by: Peter Kjellerstedt <pkj at axis com>
2582 * gst/playback/test.c:
2583 Fix compilation with uClibc and -Werror (#357591).
2585 2006-09-25 Tim-Philipp Müller <tim at centricular dot net>
2587 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
2588 Parse dates that are followed by a time as well (#357532).
2590 * tests/check/libs/tag.c: (test_vorbis_tags):
2591 Add unit test for this.
2593 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
2595 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
2596 (gst_audio_convert_transform_caps):
2597 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor):
2598 * gst/videotestsrc/videotestsrc.h:
2599 A few array const-ifications.
2601 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
2603 * tests/check/Makefile.am:
2604 See if this makes the build bots happy.
2606 * tests/check/libs/cddabasesrc.c:
2609 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
2611 Patch by: Young-Ho Cha <ganadist at chollian dot net>
2613 * gst/subparse/samiparse.c: (handle_start_font),
2614 (fix_invalid_entities):
2615 More case-insensitivity for certain tags; recognise entities with
2616 decimal codes as special entities as well (#357330).
2618 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
2620 * gst-libs/gst/Makefile.am:
2621 Need to build tag directory before cdda.
2623 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
2625 * docs/libs/gst-plugins-base-libs-sections.txt:
2626 * gst-libs/gst/cdda/Makefile.am:
2627 * gst-libs/gst/cdda/gstcddabasesrc.c:
2628 (gst_cdda_base_src_base_init):
2629 * gst-libs/gst/cdda/gstcddabasesrc.h:
2630 * gst-libs/gst/tag/tag.h:
2631 * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal),
2632 (gst_tag_register_musicbrainz_tags):
2633 Move GST_TAG_CDDA_* tags into libgsttag and make libgstcddabasesrc
2634 depend on libgsttag. This is required so we can extract/read tags like
2635 DISCID without depending on libgstcddabasesrc (which used to register
2638 * gst-libs/gst/tag/gstvorbistag.c:
2639 Add vorbiscomment mapping for CDDB_DISCID and MUSICBRAINZ_DISCID
2640 tags (also see #347848).
2642 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1):
2643 Log vorbis comments we are actually writing. Const-ify array.
2645 2006-09-23 Wim Taymans <wim@fluendo.com>
2647 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
2648 Improve buffering a bit by avoiding a deadlock because we cannot assume
2649 the underrun is always called.
2651 2006-09-23 Wim Taymans <wim@fluendo.com>
2653 Patch by: Young-Ho Cha <ganadist at chollian dot net>
2655 * gst-libs/gst/riff/riff-ids.h:
2656 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
2657 (gst_riff_create_audio_template_caps):
2658 Added MPEG-4 AAC and id and caps. Fixes #357289
2659 Added WMA9 Lossless id.
2661 2006-09-22 Tim-Philipp Müller <tim at centricular dot net>
2663 * ext/gnomevfs/gstgnomevfssrc.c:
2664 Fix misleading docs addition.
2666 * tests/check/elements/videotestsrc.c: (check_rgb_buf):
2667 Get rid of compiler warning the right way.
2669 2006-09-22 Wim Taymans <wim@fluendo.com>
2671 * gst-libs/gst/rtp/gstbasertpdepayload.c:
2672 (gst_base_rtp_depayload_finalize),
2673 (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
2674 (gst_base_rtp_depayload_push_full),
2675 (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_push),
2676 (gst_base_rtp_depayload_process),
2677 (gst_base_rtp_depayload_set_gst_timestamp),
2678 (gst_base_rtp_depayload_queue_release):
2679 * gst-libs/gst/rtp/gstbasertpdepayload.h:
2682 Refactored the process method and added methods to push from the process
2684 Use _scale functions.
2685 API: gst_base_rtp_depayload_push_ts
2686 API: gst_base_rtp_depayload_push
2688 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
2689 timestamps are uint.
2691 2006-09-22 Stefan Kost <ensonic@users.sf.net>
2693 * gst-libs/gst/interfaces/xoverlay.c:
2694 Remove unused statement from doc example.
2696 2006-09-21 Stefan Kost <ensonic@users.sf.net>
2698 * gst-libs/gst/interfaces/videoorientation.c:
2699 (gst_video_orientation_iface_init),
2700 (gst_video_orientation_get_hflip),
2701 (gst_video_orientation_get_vflip),
2702 (gst_video_orientation_get_hcenter),
2703 (gst_video_orientation_get_vcenter),
2704 (gst_video_orientation_set_hflip),
2705 (gst_video_orientation_set_vflip),
2706 (gst_video_orientation_set_hcenter),
2707 (gst_video_orientation_set_vcenter):
2708 Add since tags to new API docs, ChangeLog surgery (forgot API keyword
2711 2006-09-21 Tim-Philipp Müller <tim at centricular dot net>
2713 * tests/check/Makefile.am:
2714 * tests/check/elements/.cvsignore:
2715 * tests/check/elements/ffmpegcolorspace.c: (rgb_format_to_caps),
2716 (create_rgb_conversions), (rgb_conversion_free),
2717 (right_shift_colour), (fix_expected_colour), (check_rgb_buf),
2718 (got_buf_cb), (GST_START_TEST), (ffmpegcolorspace_suite):
2719 Add unit test for ffmpegcolorspace (RGB <=> RGB only so far),
2720 but disable for now since it doesn't pass (something wrong with
2723 2006-09-21 Wim Taymans <wim@fluendo.com>
2725 * gst/playback/gstplaybasebin.c: (group_commit),
2726 (queue_deadlock_check), (queue_overrun), (queue_threshold_reached),
2727 (queue_out_of_data), (gen_preroll_element),
2728 (preroll_remove_overrun), (probe_triggered):
2729 Refactor handling of overrun detection.
2730 Separate handling of group completion and deadlock detection when doing
2731 network buffering. This should fix some deadlocks that were not detected
2732 because the group was completed.
2733 Add more comments, improve debugging.
2735 2006-09-21 Wim Taymans <wim@fluendo.com>
2737 * tests/check/elements/gdpdepay.c: (GST_START_TEST):
2738 * tests/check/libs/audio.c:
2739 Some more compilation fixes.
2741 2006-09-21 Wim Taymans <wim@fluendo.com>
2743 * gst-libs/gst/audio/gstringbuffer.c:
2744 (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
2745 (gst_ring_buffer_read):
2746 Early morning compilation fix.
2748 2006-09-20 Wim Taymans <wim@fluendo.com>
2750 * tests/check/elements/gdpdepay.c: (GST_START_TEST):
2751 * tests/check/elements/multifdsink.c: (GST_START_TEST):
2752 * tests/check/elements/videorate.c: (GST_START_TEST):
2753 * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
2754 * tests/check/pipelines/oggmux.c: (eos_buffer_probe):
2757 2006-09-20 Stefan Kost <ensonic@users.sf.net>
2759 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
2760 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
2761 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
2762 Handcrafted merge to help CVS understanding what I changed and what
2765 2006-09-20 Stefan Kost <ensonic@users.sf.net>
2767 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
2768 (gst_xvimagesink_get_times):
2769 change colorkey behaviour back according to #354773 comment 6/7
2771 2006-09-19 Michael Smith <msmith@fluendo.com>
2773 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
2774 (gst_multi_fd_sink_class_init), (get_buffers_max), (find_limits),
2775 (gst_multi_fd_sink_recover_client),
2776 (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_set_property),
2777 (gst_multi_fd_sink_get_property):
2778 * gst/tcp/gstmultifdsink.h:
2779 Implement stubbed out properties unit-type, units-soft-max,
2780 units-max, to allow specifying maximum sizes in units other than
2784 2006-09-19 Wim Taymans <wim@fluendo.com>
2786 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
2787 (gst_riff_create_audio_template_caps):
2788 Reorder the audio formats a bit for clarity.
2789 Detect and create caps for MSGSM and MSN (WAV49).
2792 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
2793 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
2794 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
2795 Small cleanups, move error handling out of normal flow for clarity.
2797 2006-09-18 Stefan Kost <ensonic@users.sf.net>
2799 * docs/libs/gst-plugins-base-libs-docs.sgml:
2800 * docs/libs/gst-plugins-base-libs.types:
2801 * gst-libs/gst/interfaces/Makefile.am:
2802 * gst-libs/gst/interfaces/videoorientation.c:
2803 (gst_video_orientation_get_type),
2804 (gst_video_orientation_iface_init),
2805 (gst_video_orientation_get_hflip),
2806 (gst_video_orientation_get_vflip),
2807 (gst_video_orientation_get_hcenter),
2808 (gst_video_orientation_get_vcenter),
2809 (gst_video_orientation_set_hflip),
2810 (gst_video_orientation_set_vflip),
2811 (gst_video_orientation_set_hcenter),
2812 (gst_video_orientation_set_vcenter):
2813 * gst-libs/gst/interfaces/videoorientation.h:
2814 API: Add new interface to control video orientation (fixes #354908)
2816 2006-09-18 Stefan Kost <ensonic@users.sf.net>
2818 * gst/videotestsrc/gstvideotestsrc.c:
2819 Use G_UNLIKELY in _create and log one more detail.
2821 (gst_video_test_src_get_times), (gst_video_test_src_create):
2822 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
2823 Use gst_util_uint64_scale_int in _get_times().
2825 2006-09-18 Stefan Kost <ensonic@users.sf.net>
2827 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support)
2828 Give better warning message (add object and detail).
2830 2006-09-18 Stefan Kost <ensonic@users.sf.net>
2832 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
2833 (gst_xvimagesink_get_times):
2834 xvimage assumed that XV_COLORKEY can be set in RGB888 format (fixes
2835 #354773), use gst_util_uint64_scale_int in _get_times()
2837 2006-09-18 Michael Smith <msmith@fluendo.com>
2839 * ext/ogg/gstoggmux.c: (gst_ogg_mux_push_buffer):
2840 Timestamps are unsigned; comparision against GST_CLOCK_TIME_NONE was
2841 always true, leading to dropping all timestamps.
2843 2006-09-18 Stefan Kost <ensonic@users.sf.net>
2845 * ext/libvisual/visual.c: (gst_vis_src_negotiate),
2846 (gst_visual_chain), (gst_visual_change_state):
2847 update to work also with libvisual 0.4 API, fix double unref (#355914)
2849 * tools/gst-launch-ext.1.in:
2850 * tools/gst-visualise.1.in:
2851 remove references to old man-pages
2853 * tests/examples/seek/seek.c: (main):
2854 add real meadi-buttons, add tool-tips for the seek-options, arrange
2855 seek options in a table
2857 2006-09-18 Michael Smith <msmith@fluendo.com>
2859 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear),
2860 (gst_ogg_mux_push_buffer):
2861 Don't generate out-of-order timestamps from oggmux, instead clamp
2862 output timestamps to be >= the previously output ts.
2865 2006-09-18 Michael Smith <msmith@fluendo.com>
2867 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
2868 (gst_multi_fd_sink_class_init):
2869 Updates, fixes, and typo corrections for multifdsink. No functional
2872 2006-09-17 Michael Smith <msmith@fluendo.com>
2874 * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find):
2875 Don't crash on truncated files - check that we got an 8 byte buffer
2876 before trying to memcmp it.
2878 2006-09-17 Tim-Philipp Müller <tim at centricular dot net>
2880 * gst/playback/gstplaybasebin.c: (get_active_source):
2881 Make stream-switching appear instant to the application
2882 (ie. make sure that a g_object_get on 'current-foo' returns
2883 the stream previously set with g_object_set(). Totem needs
2884 this to update stream-related meta-info (like audio-codec)
2885 correctly when switching streams.
2887 2006-09-17 Tim-Philipp Müller <tim at centricular dot net>
2889 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer),
2890 (gst_alsa_mixer_ensure_track_list):
2891 Try harder to guess which mixer track is the master mixer
2892 track (instead of just taking the first one that has a pvolume).
2895 2006-09-17 Stefan Kost <ensonic@users.sf.net>
2897 reviewed by: <delete if not using a buddy>
2899 * gst-libs/gst/audio/audio.h:
2900 * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
2902 2006-09-17 Stefan Kost <ensonic@users.sf.net>
2904 * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
2905 (gst_audio_convert_transform_caps):
2906 Get structure-name just once.
2908 2006-09-17 Stefan Kost <ensonic@users.sf.net>
2910 * tests/check/elements/audioresample.c: (GST_START_TEST):
2911 * tests/check/elements/videotestsrc.c: (check_rgb_buf):
2912 * tests/check/elements/volume.c: (GST_START_TEST):
2913 * tests/check/elements/vorbisdec.c: (GST_START_TEST):
2914 * tests/check/pipelines/oggmux.c: (validate_ogg_page), (eos_watch),
2915 (test_pipeline), (GST_START_TEST):
2916 * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
2917 * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
2918 Fix big batch of compiler warnings.
2920 2006-09-17 Stefan Kost <ensonic@users.sf.net>
2922 * ext/gnomevfs/gstgnomevfssrc.c:
2923 Add docs about icydemux usage in connection with gnomevfssrc
2925 * ext/libvisual/visual.c:
2926 * ext/ogg/gstoggaviparse.c:
2927 * ext/ogg/gstoggdemux.c:
2928 * ext/ogg/gstoggmux.c:
2929 * ext/ogg/gstoggparse.c:
2930 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
2931 * gst-libs/gst/audio/gstaudiosink.c:
2932 * gst-libs/gst/audio/gstaudiosrc.c:
2933 * gst/audiorate/gstaudiorate.c:
2934 More G_OBJECT macro fixing.
2936 * gst/audiotestsrc/gstaudiotestsrc.h:
2937 Fix wrong info in header due to copy & paste
2939 2006-09-15 Wim Taymans <wim@fluendo.com>
2941 * gst-libs/gst/audio/gstbaseaudiosink.c:
2942 (gst_base_audio_sink_get_time), (gst_base_audio_sink_callback):
2943 * gst-libs/gst/audio/gstbaseaudiosrc.c:
2944 (gst_base_audio_src_get_time), (gst_base_audio_src_fixate),
2945 (gst_base_audio_src_get_times), (gst_base_audio_src_get_offset),
2946 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
2947 Do the delay calculation in the source/sink base classes as this is
2948 specific for the capture/playback mode.
2949 Try to fixate a bit better, like round depth up to a multiple of 8
2951 Handle underruns correctly by marking DISCONT on buffers and adjusting
2952 timestamps to handle the gap.
2953 Set offset/offset_end correctly on buffers.
2955 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_pause),
2956 (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
2957 (gst_ring_buffer_read):
2958 Remove resync and underrun recovery from the ringbuffer.
2959 Fix ringbuffer read code on under/overrun.
2961 2006-09-15 Wim Taymans <wim@fluendo.com>
2963 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
2964 (gst_play_base_bin_init), (fill_buffer), (check_queue),
2965 (queue_threshold_reached), (gst_play_base_bin_set_property),
2966 (gst_play_base_bin_get_property):
2967 * gst/playback/gstplaybasebin.h:
2968 Don't use a 0 low watermark when buffering, it is catching starvation
2969 way too late. Instead, use a 3 second queue with 30 and 95
2970 percent low/high watermarks.
2971 Added queue-min-threshold property to configure low watermark.
2972 Use new _buffering message API.
2973 Make queue_threshold variable big enough to store a uint64 time value.
2974 API: playbin::queue-min-threshold property.
2976 2006-09-15 Wim Taymans <wim@fluendo.com>
2979 We require 0.10.10.1 now because of _wait_preroll().
2981 * gst-libs/gst/audio/gstbaseaudiosink.c:
2982 (gst_base_audio_sink_render):
2983 Use gst_base_sink_wait_preroll().
2985 2006-09-15 Wim Taymans <wim@fluendo.com>
2987 * ext/alsa/gstalsasink.c: (xrun_recovery), (gst_alsasink_write):
2988 * ext/alsa/gstalsasrc.c: (xrun_recovery), (gst_alsasrc_read):
2989 Use DEBUG_OBJECT more.
2991 === release 0.10.10 ===
2993 2006-09-07 Thomas Vander Stichele <thomas at apestaart dot org>
2995 patch by: Michael Smith <msmith at fluendo dot com>
2997 * gst/tcp/gstmultifdsink.c: (is_sync_frame),
2998 (gst_multi_fd_sink_client_queue_buffer),
2999 (gst_multi_fd_sink_new_client):
3000 * tests/check/elements/multifdsink.c: (GST_START_TEST),
3001 (multifdsink_suite):
3002 Fix implementation of sync-method 'next-keyframe'
3005 2006-09-07 Thomas Vander Stichele <thomas at apestaart dot org>
3007 patch by: Wim Taymans <wim at fluendo dot com>
3009 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
3010 This patch removes the RANDOM flag that was incorrectly introduced with
3011 revision 1.91. Fixes #354590
3013 2006-09-05 Tim-Philipp Müller <tim at centricular dot net>
3015 * tests/check/Makefile.am:
3016 Random variation in Makefile line to see if it makes the
3017 gen64-base-full bot any happier.
3019 2006-09-04 Tim-Philipp Müller <tim at centricular dot net>
3021 * tests/check/pipelines/oggmux.c: (oggmux_suite):
3022 Disable test that fails at the moment (killed after timeout).
3024 2006-09-04 Tim-Philipp Müller <tim at centricular dot net>
3026 Patch by: James Livingston <doclivingston at gmail.com>
3028 * tests/check/Makefile.am:
3029 * tests/check/pipelines/.cvsignore:
3030 * tests/check/pipelines/oggmux.c: (get_page_codec),
3031 (check_chain_final_state), (fail_if_audio), (validate_ogg_page),
3032 (eos_buffer_probe), (start_pipeline), (stop_pipeline), (eos_watch),
3033 (test_pipeline), (test_vorbis), (test_theora), (test_vorbis_theora),
3034 (test_theora_vorbis), (oggmux_suite):
3035 Add simple unit test for oggmux from #337026 with checking for the
3036 EOS flags disabled for the time being.
3038 2006-09-04 Wim Taymans <wim@fluendo.com>
3040 patch by: Alessandro Dessina <alessandro nnva org>
3042 * ext/ogg/gstoggmux.c:
3043 Add cmml caps to oggmux. Fixes #353912
3045 2006-09-02 Tim-Philipp Müller <tim at centricular dot net>
3047 * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3048 Returning a return value often helps. In this case, we
3049 don't need the return value anyway, so just get rid of it.
3050 Should make build bots much happier.
3052 2006-09-02 Tim-Philipp Müller <tim at centricular dot net>
3054 * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure),
3055 (paint_get_structure), (gst_video_test_src_get_size),
3056 (gst_video_test_src_smpte), (gst_video_test_src_snow),
3057 (gst_video_test_src_unicolor), (paint_setup_AYUV),
3058 (paint_hline_AYUV), (paint_setup_ARGB8888), (paint_setup_ABGR8888),
3059 (paint_setup_RGBA8888), (paint_setup_BGRA8888), (paint_hline_str4):
3060 * gst/videotestsrc/videotestsrc.h:
3061 Add support for AYUV and the various RGBA formats. Initialise
3062 fields of paintinfo structs allocated on the stack.
3064 * tests/check/elements/videotestsrc.c: (right_shift_colour),
3065 (fix_expected_colour), (check_rgb_buf), (got_buf_cb),
3066 (check_rgb_buf), (videotestsrc_suite):
3067 Add unit tests for videotestsrc's RGB output.
3069 2006-09-01 Tim-Philipp Müller <tim at centricular dot net>
3071 * gst/videotestsrc/gstvideotestsrc.c:
3072 (gst_video_test_src_pattern_get_type),
3073 (gst_video_test_src_set_pattern):
3074 * gst/videotestsrc/gstvideotestsrc.h:
3075 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor),
3076 (gst_video_test_src_black), (gst_video_test_src_white),
3077 (gst_video_test_src_red), (gst_video_test_src_green),
3078 (gst_video_test_src_blue):
3079 * gst/videotestsrc/videotestsrc.h:
3080 Add more uni-colour patterns ("white", "red", "green", and "blue").
3082 2006-09-01 Tim-Philipp Müller <tim at centricular dot net>
3084 * gst/videotestsrc/videotestsrc.c: (paint_setup_YVYU):
3085 Fix stride for YVYU, should be word-aligned (#353658).
3087 2006-08-31 Tim-Philipp Müller <tim at centricular dot net>
3089 * gst/adder/gstadder.c: (gst_adder_src_event):
3092 2006-08-31 Edward Hervey <edward@fluendo.com>
3094 * gst/adder/gstadder.c: (forward_event_func),
3095 (gst_adder_src_event), (gst_adder_collected),
3096 (gst_adder_change_state):
3097 * gst/adder/gstadder.h:
3098 Remember the start position asked in the incoming seeks, so we can
3099 output GST_EVENT_NEW_SEGMENT with a correct position value (instead
3100 of assuming it will always be 0).
3102 2006-08-31 Edward Hervey <edward@fluendo.com>
3104 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
3105 (gst_ogg_demux_finalize), (gst_ogg_demux_perform_seek),
3106 (gst_ogg_demux_loop):
3107 Send the GST_EVENT_NEW_SEGMENT from the streaming thread.
3109 2006-08-30 Tim-Philipp Müller <tim at centricular dot net>
3111 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3112 (gst_ffmpegcsp_get_unit_size):
3113 Return FALSE instead of returning a random false unit
3114 size when the format isn't known/supported (even if
3115 this shouldn't happen under normal circumstances).
3117 2006-08-29 Wim Taymans <wim@fluendo.com>
3119 Patch by: Tim-Philipp Müller <tim at centricular dot net>
3121 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create),
3122 (gst_gnome_vfs_src_start):
3123 Try harder to get the size from a uri by using _info_uri() when
3124 _info_from_handle() does not give us enough info.
3125 Also follow symlinks when getting the size.
3126 Partially Fixes #332864.
3128 2006-08-29 Tim-Philipp Müller <tim at centricular dot net>
3130 Patch by: Viktor Peters <viktor dot peters at gmail dot com>
3132 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
3133 (gst_alsa_mixer_update), (gst_alsa_mixer_get_volume),
3134 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
3135 (gst_alsa_mixer_set_record):
3136 * ext/alsa/gstalsamixertrack.c:
3137 (gst_alsa_mixer_track_update_alsa_capabilities),
3138 (alsa_track_has_cap), (gst_alsa_mixer_track_new),
3139 (gst_alsa_mixer_track_update):
3140 * ext/alsa/gstalsamixertrack.h:
3141 Improve and fix mixer track handling, in particular better handling
3142 of alsa's pvolume/pswitch/cvolume/cswitch capabilities; create
3143 separate track objects for tracks that have both capture and playback
3144 volume (and label them differently as well so they're not mistakenly
3145 assumed to be duplicates); classify mixer tracks that only affect
3146 the audible volume of something (rather than the capture volume)
3147 as playback tracks. Redefine/fix meaning of RECORD and MUTE flags
3148 for capture tracks to correspond to alsa-pswitch alsa-cswitch
3149 (following the meaning documented in the mixer interface header
3150 file); add support for alsa's exclusive cswitch groups; update/sync
3151 state/flags better if mixer settings are changed by another
3152 application. Fixes #336075.
3154 2006-08-29 Tim-Philipp Müller <tim at centricular dot net>
3156 * gst/playback/gstplaybin.c:
3157 Improve docs: add section about BUFFERING messages sent by playbin.
3159 2006-08-29 Michael Smith <msmith@fluendo.com>
3161 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_push_buffer),
3162 (gst_vorbis_enc_buffer_check_discontinuous),
3163 (gst_vorbis_enc_chain):
3164 Ignore explicit DISCONT marked on buffers (which is often spurious,
3165 particularly when using multiple segments), in favour of solely
3166 using the timestamps/durations.
3168 2006-08-29 Edward Hervey <edward@fluendo.com>
3170 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
3171 Don't rely on incoming buffers offset anymore, since it is completely
3172 broken when using multiple segments.
3173 Instead convert the incoming buffers timestamp to running time, and
3174 then convert that value to the offsets.
3175 Also inform GstSegment of the last outputted stop position, which is
3176 needed if we received several segments with an unknown stop value.
3178 2006-08-29 Thomas Vander Stichele <thomas at apestaart dot org>
3180 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
3181 fix buffer unreffing on a header push failure
3183 2006-08-28 Wim Taymans <wim@fluendo.com>
3185 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_sink_event),
3186 (gst_audio_rate_chain):
3187 Make the metadata of the buffer writable before changing its
3190 2006-08-28 Wim Taymans <wim@fluendo.com>
3192 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
3193 (gst_audio_rate_setcaps), (gst_audio_rate_init),
3194 (gst_audio_rate_sink_event), (gst_audio_rate_src_event),
3195 (gst_audio_rate_chain), (gst_audio_rate_change_state):
3196 Fix audiorate some more.
3197 Reset and resync counters on flush and READY.
3198 Handle the DISCONT flag correctly.
3199 Use GstSegment to track position.
3200 Fail when not negotiated.
3203 2006-08-25 Michael Smith <msmith@fluendo.com>
3205 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
3207 Remove accidently included debug line.
3209 2006-08-25 Wim Taymans <wim@fluendo.com>
3211 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
3213 If a buffer is received with no caps, make the buffer metadata
3214 writable and set the caps, making sure that we don't screw up the
3217 2006-08-25 Michael Smith <msmith@fluendo.com>
3219 * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset),
3220 (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_chain):
3221 Fix memory leaks and misleading debug messages, add a couple of
3224 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats),
3225 (gst_multi_fd_sink_render):
3226 Do not use gst_buffer_make_writable() in a basesink render method,
3227 as it may incorrectly unref the buffer. Instead, use convoluted
3228 dance to avoid copying the buffer except when we need to.
3230 2006-08-25 Michael Smith <msmith@fluendo.com>
3232 * ext/vorbis/vorbisenc.c:
3233 (gst_vorbis_enc_buffer_check_discontinuous):
3234 Allow very small discontinuities in the timestamps. These we can't
3235 do anything useful with anyway (because vorbis's timestamps have
3236 only sample granularity), and are commonly produced by elements with
3237 minor bugs. Allow up to 1/2 a sample out.
3240 2006-08-24 Wim Taymans <wim@fluendo.com>
3242 * tests/examples/seek/seek.c: (seek_cb), (start_seek), (stop_seek),
3243 (play_scrub_toggle_cb), (main):
3244 Add a checkbox to enable play scrubbing. Makes it possible to disable
3247 2006-08-23 Stefan Kost <ensonic@users.sf.net>
3249 * tests/check/elements/.cvsignore:
3252 2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
3254 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
3255 (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init),
3256 (gst_ogm_parse_class_init), (gst_ogm_parse_dispose),
3257 (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
3258 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
3259 (gst_ogm_parse_stream_header), (gst_ogm_parse_comment_packet),
3260 (gst_ogm_text_parse_strip_trailing_zeroes),
3261 (gst_ogm_parse_data_packet), (gst_ogm_parse_chain),
3262 (gst_ogm_parse_sink_event), (gst_ogm_parse_change_state):
3263 Refactor ogm parse, do better input checking, misc. clean-ups.
3264 Cache incoming events and push them once the source pad has
3265 been created. Don't pass unterminated strings to sscanf().
3266 Strip trailing zeroes from subtitle text output, since they
3267 are not valid UTF-8. Don't push vorbiscomment packets on
3268 the subtitle text pad. Output perfect streams if possible.
3270 2006-08-23 Wim Taymans <wim@fluendo.com>
3272 * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
3273 Waits for tasks to settle down so that we clean up correctly for
3276 2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
3278 * tests/check/libs/tag.c: (GST_START_TEST), (taglists_are_equal):
3279 Unit test fixes: \377 is more likely to fit into 8 bits than \777;
3280 actually return return value in taglists_are_equal.
3282 2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
3284 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
3285 Fix crash due to broken bitstream parsing on x86-64: can't make
3286 any assumptions about sizeof(struct) due to alignment/packing
3287 differences on different architectures. Fixes #351790.
3289 2006-08-22 Wim Taymans <wim@fluendo.com>
3291 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
3292 (gst_riff_parse_chunk), (gst_riff_parse_file_header),
3293 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
3294 (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
3295 (gst_riff_parse_info):
3296 Protect public functions against bad input.
3300 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
3302 * gst-libs/gst/riff/riff-ids.h:
3303 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
3304 Add voxware audio IDs (even if we can't play it) (#351795).
3306 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
3308 * gst-libs/gst/riff/riff-media.c:
3309 (gst_riff_create_video_template_caps),
3310 (gst_riff_create_audio_template_caps),
3311 (gst_riff_create_iavs_template_caps):
3312 Const-ify some arrays and use G_N_ELEMENTS instead
3313 of wasting oodles of RAM on terminator bits.
3315 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
3317 * gst-libs/gst/tag/gstvorbistag.c:
3318 (gst_tag_list_to_vorbiscomment_buffer):
3319 * tests/check/libs/tag.c: (GST_START_TEST):
3320 And the same for _to_vorbiscomment_buffer(): allow
3321 id_data_len == 0 for speex.
3323 2006-08-21 Thomas Vander Stichele <thomas at apestaart dot org>
3326 * docs/plugins/Makefile.am:
3327 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3328 * docs/plugins/gst-plugins-base-plugins-sections.txt:
3329 * docs/plugins/inspect/plugin-gdp.xml:
3330 * gst/gdp/Makefile.am:
3331 * tests/check/Makefile.am:
3332 Move GDP plugin to -base from -bad. Closes #347783.
3334 2006-08-21 Tim-Philipp Müller <tim at centricular dot net>
3336 * gst-libs/gst/tag/gstvorbistag.c:
3337 (gst_tag_list_from_vorbiscomment_buffer):
3338 Allow id_data_len == 0 (needed for vorbis comments in Speex files).
3339 Also add some checks to make sure we don't memcmp() beyond the end of
3340 vorbiscomment buffer if the ID to check for is larger than the buffer.
3342 * tests/check/libs/tag.c: (GST_START_TEST):
3343 Some more tests for gst_tag_list_from_vorbiscomment_buffer().
3345 2006-08-21 Tim-Philipp Müller <tim at centricular dot net>
3347 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1),
3348 (gst_vorbis_enc_set_metadata):
3349 Use vorbis comment utility functions from libgsttag
3350 instead of re-inventing the wheel (partially fixes #347091).
3352 2006-08-21 Jan Schmidt <thaytan@mad.scientist.com>
3354 * tests/check/elements/audioconvert.c: (GST_START_TEST):
3355 Fix leaks. Wait for state transitions that might happen ASYNC, as well
3358 2006-08-21 Wim Taymans <wim@fluendo.com>
3360 * docs/libs/Makefile.am:
3361 * docs/libs/gst-plugins-base-libs-sections.txt:
3362 * docs/libs/gst-plugins-base-libs.types:
3363 Don't try to GObject scan the netbuffer as it's not a GObject.
3366 * gst-libs/gst/netbuffer/gstnetbuffer.c:
3367 * gst-libs/gst/netbuffer/gstnetbuffer.h:
3368 Document GstNetBuffer.
3370 2006-08-21 Stefan Kost <ensonic@users.sf.net>
3372 * tests/check/elements/audioconvert.c: (GST_START_TEST),
3373 (audioconvert_suite):
3374 Add testcase for caps-size-explosion
3376 2006-08-20 Stefan Kost <ensonic@users.sf.net>
3378 * gst/audioconvert/gstaudioconvert.c:
3379 (gst_audio_convert_get_unit_size), (set_structure_widths):
3380 Lower debug, use g_assert in _get_unit_size
3382 * gst/audioresample/gstaudioresample.c:
3383 (audioresample_get_unit_size):
3384 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3385 (gst_ffmpegcsp_get_unit_size):
3386 * gst/videoscale/gstvideoscale.c: (gst_video_scale_get_unit_size):
3387 use g_assert in _get_unit_size
3389 2006-08-18 Wim Taymans <wim@fluendo.com>
3391 * docs/libs/gst-plugins-base-libs-sections.txt:
3392 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_set_packet_len),
3393 (gst_rtp_buffer_pad_to), (gst_rtp_buffer_get_payload_subbuffer),
3394 (gst_rtp_buffer_get_payload_buffer):
3395 * gst-libs/gst/rtp/gstrtpbuffer.h:
3396 Document GstRTPBuffer.
3397 Added function to efficiently strip payload headers.
3398 API: gst_rtp_buffer_get_payload_subbuffer()
3400 2006-08-17 Tim-Philipp Müller <tim at centricular dot net>
3402 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
3403 (gst_tag_to_vorbis_comments):
3404 Serialise unknown vorbis comments into GST_TAG_EXTENDED_COMMENT
3405 tags and deserialise them properly as well (#347091).
3406 Add some more gtk-doc blurbs and also some g_return_if_fail().
3408 * tests/check/libs/tag.c: (GST_START_TEST),
3409 (back_to_vorbis_comments), (taglists_are_equal), (tag_suite):
3412 2006-08-17 Wim Taymans <wim@fluendo.com>
3414 * ext/ogg/Makefile.am:
3415 * ext/ogg/gstogg.c: (plugin_init):
3416 * ext/ogg/gstoggaviparse.c: (gst_ogg_avi_parse_get_type),
3417 (gst_ogg_avi_parse_base_init), (gst_ogg_avi_parse_class_init),
3418 (gst_ogg_avi_parse_init), (gst_ogg_avi_parse_finalize),
3419 (gst_ogg_avi_parse_setcaps), (gst_ogg_avi_parse_event),
3420 (gst_ogg_avi_parse_push_packet), (gst_ogg_avi_parse_chain),
3421 (gst_ogg_avi_parse_change_state), (gst_ogg_avi_parse_plugin_init):
3422 Added ogg-in-avi parser element. Fixes #140139.
3424 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
3425 Fixed a bug in oggdemux debug code.
3427 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3428 (gst_riff_create_audio_template_caps):
3429 Recognise Ogg in the AVI extensible wave format.
3431 2006-08-17 Tim-Philipp Müller <tim at centricular dot net>
3433 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
3434 Make buffer durations add up (duration should be next_ts-ts for
3435 perfect streams). Fixes CD ripping to Ogg/Vorbis with vorbisenc
3438 * tests/check/libs/cddabasesrc.c: (gst_cd_foo_src_close),
3439 (test_buffer_timestamps), (cddabasesrc_suite):
3440 Add unit test for the above.
3442 * tests/check/Makefile.am:
3443 Don't know why cddabasesrc test was in VALGRIND_TO_FIX, remove
3444 to see what happens.
3446 2006-08-16 Wim Taymans <wim@fluendo.com>
3448 * ext/alsa/gstalsasink.c: (gst_alsasink_set_property),
3449 (gst_alsasink_open):
3450 * ext/alsa/gstalsasrc.c: (gst_alsasrc_set_property),
3452 Avoid setting and using a NULL device name.
3453 Print more info when we fail to open a device.
3455 2006-08-16 Tim-Philipp Müller <tim at centricular dot net>
3457 * docs/libs/gst-plugins-base-libs-sections.txt:
3458 * gst-libs/gst/tag/tag.h:
3459 * gst-libs/gst/tag/tags.c: (gst_tag_parse_extended_comment):
3460 API: add gst_tag_parse_extended_comment() (#351426).
3462 * tests/check/Makefile.am:
3463 * tests/check/libs/.cvsignore:
3464 * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite), (main):
3465 Add unit test for gst_tag_parse_extended_comment().
3467 2006-08-15 Tim-Philipp Müller <tim at centricular dot net>
3469 * sys/ximage/ximagesink.c: (gst_ximagesink_get_property):
3470 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_property):
3473 2006-08-15 Tim-Philipp Müller <tim at centricular dot net>
3475 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3476 * docs/plugins/gst-plugins-base-plugins-sections.txt:
3477 * docs/plugins/gst-plugins-base-plugins.args:
3478 * gst/playback/gstplaybin.c:
3481 * docs/plugins/inspect/plugin-adder.xml:
3482 * docs/plugins/inspect/plugin-alsa.xml:
3483 * docs/plugins/inspect/plugin-audioconvert.xml:
3484 * docs/plugins/inspect/plugin-audiorate.xml:
3485 * docs/plugins/inspect/plugin-audioresample.xml:
3486 * docs/plugins/inspect/plugin-audiotestsrc.xml:
3487 * docs/plugins/inspect/plugin-cdparanoia.xml:
3488 * docs/plugins/inspect/plugin-decodebin.xml:
3489 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
3490 * docs/plugins/inspect/plugin-gnomevfs.xml:
3491 * docs/plugins/inspect/plugin-ogg.xml:
3492 * docs/plugins/inspect/plugin-pango.xml:
3493 * docs/plugins/inspect/plugin-playbin.xml:
3494 * docs/plugins/inspect/plugin-subparse.xml:
3495 * docs/plugins/inspect/plugin-tcp.xml:
3496 * docs/plugins/inspect/plugin-theora.xml:
3497 * docs/plugins/inspect/plugin-typefindfunctions.xml:
3498 * docs/plugins/inspect/plugin-video4linux.xml:
3499 * docs/plugins/inspect/plugin-videorate.xml:
3500 * docs/plugins/inspect/plugin-videoscale.xml:
3501 * docs/plugins/inspect/plugin-videotestsrc.xml:
3502 * docs/plugins/inspect/plugin-volume.xml:
3503 * docs/plugins/inspect/plugin-vorbis.xml:
3504 * docs/plugins/inspect/plugin-ximagesink.xml:
3505 * docs/plugins/inspect/plugin-xvimagesink.xml:
3506 Update to CVS version.
3508 2006-08-14 Tim-Philipp Müller <tim at centricular dot net>
3510 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
3511 (gst_play_bin_set_property), (gst_play_bin_get_property),
3512 (value_list_append_structure_list),
3513 (gst_play_bin_handle_redirect_message),
3514 (gst_play_bin_handle_message):
3515 API: GstPlayBin::connection-speed
3516 Add "connection-speed" property; re-order redirect messages with
3517 multiple redirect locations depending on the minimum bitrate if
3518 that information is available and a connection speed is set
3521 2006-08-14 Tim-Philipp Müller <tim at centricular dot net>
3523 * gst/playback/gstplaybin.c:
3524 Update max volume to the same value that the volume element uses.
3526 2006-08-14 Wim Taymans <wim@fluendo.com>
3528 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
3531 2006-08-14 Wim Taymans <wim@fluendo.com>
3533 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
3534 (gst_ogg_demux_get_next_page), (gst_ogg_demux_perform_seek),
3535 (gst_ogg_demux_read_chain), (gst_ogg_demux_loop):
3536 Add some more debug info.
3537 Don't crash when a seek failed.
3538 Actually return the result of the seek instead of TRUE.
3539 Ignore multiple BOS pages with the same serial so that we don't create
3540 the same stream multiple times.
3541 Post an error when we fail to do the initial seek.
3543 2006-08-13 Wim Taymans <wim@fluendo.com>
3545 * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
3546 (gst_alsa_detect_channels), (gst_alsa_probe_supported_formats):
3549 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
3550 (gst_alsa_mixer_new):
3551 Remove hack that always set the device to hw:0*.
3552 Properly find the card name for whatever device was configured.
3553 Do some better debugging.
3556 * ext/alsa/gstalsamixerelement.c:
3557 (gst_alsa_mixer_element_set_property),
3558 (gst_alsa_mixer_element_change_state):
3560 Handle setting of a NULL device name better.
3562 2006-08-11 Wim Taymans <wim@fluendo.com>
3564 * gst/adder/gstadder.c:
3565 Don't clip float values. Fixes #350900.
3567 2006-08-11 Andy Wingo <wingo@pobox.com>
3569 * gst/tcp/gsttcp.c: Really fix the build?
3571 * gst/tcp/gsttcp.h: For now, always disable deprecation here --
3574 2006-08-10 Tim-Philipp Müller <tim at centricular dot net>
3576 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes):
3577 Float caps shouldn't have a "signed" field.
3579 2006-08-10 Tim-Philipp Müller <tim at centricular dot net>
3581 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query):
3582 Implement SEEKING query in its most basic form, so that we can
3583 at least check if we're seekable or not (#350655).
3585 2006-08-09 Tim-Philipp Müller <tim at centricular dot net>
3587 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
3588 The checks here are not even close to anything that would
3589 justify MAXIMUM probability, lowering to POSSIBLE until someone
3590 fixes the checks (case at hand: quicktime redirection files
3591 might start with 00 00 01 XX and pass the checks here just
3594 2006-08-08 Tim-Philipp Müller <tim at centricular dot net>
3596 Patch by: Sjoerd Simons <sjoerd at luon net>
3598 * gst/typefind/gsttypefindfunctions.c: (multipart_type_find):
3599 Better detection for multipart/x-mixed-replace: accept leading
3600 whitespaces before the boundary marker as well (as our very own
3601 multipartmux used to produce) (#349068).
3603 2006-08-07 Tim-Philipp Müller <tim at centricular dot net>
3605 Patch by: Young-Ho Cha <ganadist at chollian net>
3607 * gst-libs/gst/riff/riff-ids.h:
3608 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3609 (gst_riff_create_audio_template_caps):
3610 Detect DTS audio streams (#350157).
3612 2006-08-05 Andy Wingo <wingo@pobox.com>
3614 * ext/theora/gsttheoraparse.h:
3615 * ext/theora/theoraparse.c (gst_theora_parse_class_init)
3616 (theora_parse_dispose, theora_parse_set_property)
3617 (theora_parse_get_property, theora_parse_munge_granulepos)
3618 (theora_parse_push_buffer, theora_parse_change_state):
3619 API: GstTheoraParse::synchronization-points
3620 Add a property 'synchronization-points' to fix badly synchronized oggs.
3622 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
3624 * tests/check/Makefile.am:
3625 * tests/check/libs/.cvsignore:
3626 * tests/check/libs/audio.c: (structure_contains_channel_positions),
3627 (fixed_caps_have_channel_positions), (GST_START_TEST),
3628 (audio_suite), (main):
3629 Add a few tests for the channel position stuff in libgstaudio.
3631 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
3633 * ext/alsa/gstalsa.c: (caps_add_channel_configuration),
3634 (gst_alsa_detect_channels):
3635 * ext/alsa/gstalsasink.c:
3636 Add support for cards that (only) do more than 8 channels,
3637 like the Delta 44 (#345188).
3639 * gst-libs/gst/audio/multichannel.c:
3640 (gst_audio_check_channel_positions):
3641 * gst-libs/gst/audio/multichannel.h:
3642 API: add GST_AUDIO_CHANNEL_POSITION_NONE, which stands for an
3643 unspecified channel position and cannot be combined with any
3644 of the other audio channel positions; adjust position layout
3645 checks accordingly (#345188).
3647 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
3649 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
3650 Recognise ancient RealAudio files (see #349779).
3652 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
3654 Patch by: Jens Granseuer <jensgr at gmx net>
3656 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
3657 Add typefinder for Interplay's MVE format (#348973).
3659 2006-08-02 Wim Taymans <wim@fluendo.com>
3661 Patch by: Marcel Moreaux <marcelm at luon dot net>
3663 * gst-libs/gst/rtp/gstbasertpdepayload.c:
3664 (gst_base_rtp_depayload_add_to_queue):
3665 * gst-libs/gst/rtp/gstbasertpdepayload.h:
3666 Handle RTP sequence number rollover.
3667 Disable jitterbuffer by default.
3669 2006-07-28 Jan Schmidt <thaytan@mad.scientist.com>
3671 * gst/audioresample/gstaudioresample.c: (audioresample_stop),
3672 (audioresample_set_caps):
3673 Don't leak references to the incoming caps. Clean them up when
3676 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
3677 (gst_video_scale_finalize):
3678 Don't leak our temporary pixel buffer.
3680 * tests/check/Makefile.am:
3681 * tests/check/pipelines/simple-launch-lines.c: (run_pipeline),
3682 (GST_START_TEST), (simple_launch_lines_suite):
3684 Fix leaks and re-enable the test for valgrind checking.
3686 2006-07-28 Tim-Philipp Müller <tim at centricular dot net>
3688 Patch by: Sjoerd Simons <sjoerd at luon net>
3690 * gst/typefind/gsttypefindfunctions.c: (multipart_type_find),
3692 Add typefind function for multipart/x-mixed-replace (#348916).
3694 2006-07-28 Wim Taymans <wim@fluendo.com>
3696 * gst/adder/gstadder.c: (gst_adder_setcaps),
3697 (gst_adder_query_duration):
3698 Fix leak in duration query.
3699 Reflow some docs and notes.
3701 2006-07-28 Michael Smith <msmith@fluendo.com>
3703 * tests/check/pipelines/vorbisenc.c: (GST_START_TEST),
3705 Enable Andy's extra vorbisenc test, now that it passes. Also fix one
3708 2006-07-28 Michael Smith <msmith@fluendo.com>
3710 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps),
3711 (gst_vorbis_enc_sink_getcaps), (gst_vorbis_enc_buffer_from_packet),
3712 (gst_vorbis_enc_push_buffer),
3713 (gst_vorbis_enc_buffer_check_discontinuous),
3714 (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
3715 * ext/vorbis/vorbisenc.h:
3716 Handle discontinuities in the input vorbis stream correctly,
3717 so that the output is properly timestamped (and has good granulepos
3718 values). Needs some oggmux fixes too.
3720 2006-07-27 Wim Taymans <wim@fluendo.com>
3722 patch by: Kai Vehmanen <kv2004 eca cx>
3724 * gst-libs/gst/rtp/gstbasertpdepayload.c:
3725 (gst_base_rtp_depayload_chain),
3726 (gst_base_rtp_depayload_handle_sink_event),
3727 (gst_base_rtp_depayload_change_state):
3728 Don't send multiple newsegments with different formats.
3731 2006-07-26 Wim Taymans <wim@fluendo.com>
3733 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
3734 (gst_ogg_demux_do_seek), (gst_ogg_demux_read_chain):
3735 Make seeking in ogg more accurate again by doing the more correct
3736 granuletime to stream time conversion.
3738 2006-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
3740 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
3741 (gst_multi_fd_sink_new_client):
3742 debug a little more understandably
3743 do not use goto as a substitute for break, especially if
3744 break is also being used
3746 2006-07-26 Tim-Philipp Müller <tim at centricular dot net>
3748 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
3749 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
3750 Remove GLib-2.6 compatibility cruft.
3752 2006-07-24 Wim Taymans <wim@fluendo.com>
3754 * gst-libs/gst/audio/gstbaseaudiosink.c:
3755 (gst_base_audio_sink_render):
3756 Don't try to align a sample to an unknown value.
3758 2006-07-24 Wim Taymans <wim@fluendo.com>
3760 * gst-libs/gst/audio/gstbaseaudiosink.c:
3761 (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
3762 When the audio clock is slaved to another clock, never try to align
3763 samples but trust the rate interpolation algorithm.
3765 2006-07-24 Wim Taymans <wim@fluendo.com>
3767 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
3768 Don't try to calculate silence samples, base class does this much
3771 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
3772 (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps),
3773 (gst_ring_buffer_acquire):
3774 Calculate silence samples correctly.
3776 * gst-libs/gst/audio/gstringbuffer.h:
3779 2006-07-22 Tim-Philipp Müller <tim at centricular dot net>
3781 * gst/typefind/gsttypefindfunctions.c: (xml_check_first_element):
3782 Limit search for the first markup tag to the first few kB of
3783 the file. If we don't find one there, it's highly unlikely that
3784 this is an XML(-ish) file.
3786 2006-07-21 Andy Wingo <wingo@pobox.com>
3788 * tests/check/pipelines/theoraenc.c (test_discontinuity): Similar
3789 test to the one in vorbisenc. Also commented out.
3791 * tests/check/pipelines/vorbisenc.c:
3792 (test_discontinuity): New test, commented out until Mike lands
3793 some elite vorbisenc patches.
3795 * tests/check/pipelines/theoraenc.c: Port to bufferstraw.
3796 Bufferstraw was actually factored out of these tests. Now we share
3799 * configure.ac (GST_MAJORMINOR): Rev core requirements to 0.10.9.1
3800 for bufferstraw addition to gstcheck.
3802 2006-07-21 Wim Taymans <wim@fluendo.com>
3804 * ext/theora/theoradec.c: (clip_buffer):
3807 2006-07-21 Wim Taymans <wim@fluendo.com>
3809 * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
3810 (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
3811 (gst_audioringbuffer_release), (gst_audioringbuffer_stop):
3813 Avoid type casting when we can.
3815 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_dispose):
3818 2006-07-20 Tim-Philipp Müller <tim at centricular dot net>
3820 * ext/alsa/gstalsamixerelement.c:
3821 (gst_alsa_mixer_element_change_state):
3822 Make state change fail if the specified device can't be opened
3825 2006-07-20 Wim Taymans <wim@fluendo.com>
3827 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
3828 (cb_newpad), (main):
3829 Example of a small audio/video player using decodebin.
3831 2006-07-20 Stefan Kost <ensonic@users.sf.net>
3833 * gst-libs/gst/riff/riff-ids.h:
3836 2006-07-19 Wim Taymans <wim@fluendo.com>
3838 * gst-libs/gst/rtp/gstbasertpdepayload.c:
3839 (gst_base_rtp_depayload_chain),
3840 (gst_base_rtp_depayload_change_state):
3841 Don't assert when not negotiated but post a meaningfull
3842 error message. Fixes #347918.
3844 * gst-libs/gst/rtp/gstbasertppayload.c:
3845 Add comment about better default MTU size.
3847 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
3848 Small cleanups, start docs.
3850 2006-07-19 Tim-Philipp Müller <tim at centricular dot net>
3852 Patch by: Martin Szulecki
3854 * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_property):
3855 If "device-name" is requested and the device is not
3856 open, try to temporarily open it to obtain this
3857 information (#342494).
3859 2006-07-19 Tim-Philipp Müller <tim at centricular dot net>
3861 * gst-libs/gst/tag/gstid3tag.c:
3862 Add TSSE <=> GST_TAG_ENCODER mapping (see #347898).
3864 * gst-libs/gst/tag/gsttageditingprivate.h:
3865 * gst-libs/gst/tag/gstvorbistag.c:
3866 Some more random const-ifications.
3868 2006-07-18 Stefan Kost <ensonic@users.sf.net>
3870 * gst-libs/gst/riff/riff-ids.h:
3871 * gst-libs/gst/riff/riff-media.c:
3872 (gst_riff_create_video_template_caps):
3873 Add more FOURCCs (sort list to make stuff easier to find),
3874 add comment what those 16 bytes in struct _gst_riff_strh according to
3877 2006-07-17 Tim-Philipp Müller <tim at centricular dot net>
3879 * gst-libs/gst/audio/multichannel.c:
3880 (gst_audio_check_channel_positions),
3881 (gst_audio_fixate_channel_positions):
3882 Const-ify two arrays.
3884 2006-07-17 Tim-Philipp Müller <tim at centricular dot net>
3886 * ext/alsa/gstalsa.c: (caps_add_channel_configuration):
3887 Fix typo, so that alsasink also advertises 8 channels
3888 if that's supported (tags: can, worms, open, alsa, ph34r).
3890 2006-07-17 Wim Taymans <wim@fluendo.com>
3892 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
3893 (gst_ogg_pad_submit_packet), (gst_ogg_demux_read_chain):
3894 *sigh*, when is the compiler going to warn when the comments
3895 are out-of-sync with the code.. Refix case of busted theora
3896 headers with 0 granule pos.
3898 2006-07-14 Wim Taymans <wim@fluendo.com>
3900 * gst-libs/gst/rtp/gstbasertpdepayload.c:
3901 (gst_base_rtp_depayload_wait),
3902 (gst_base_rtp_depayload_change_state),
3903 (gst_base_rtp_depayload_set_property),
3904 (gst_base_rtp_depayload_get_property):
3905 Fix 99% cpu load by waiting for absolute times on the
3906 clock. Fixes #347300.
3908 2006-07-14 Andy Wingo <wingo@pobox.com>
3910 * ext/theora/gsttheoraparse.h:
3911 * ext/theora/theoraparse.c (theora_parse_drain_event_queue)
3912 (theora_parse_push_headers, theora_parse_clear_queue)
3913 (theora_parse_drain_queue_prematurely, )
3914 (theora_parse_sink_event, theora_parse_change_state): Queue events
3915 until we initialized our state, like in vorbisparse.
3917 * ext/vorbis/vorbisparse.h:
3918 * ext/vorbis/vorbisparse.c (vorbis_parse_drain_event_queue)
3919 (vorbis_parse_push_headers, vorbis_parse_clear_queue)
3920 (vorbis_parse_drain_queue_prematurely, )
3921 (vorbis_parse_sink_event, vorbis_parse_change_state): Queue events
3922 until we have initialized our state. Fixes seeking after an
3925 2006-07-14 Andy Wingo <wingo@pobox.com>
3927 Patch by: Iain Holmes <iaingnome@gmail.com>
3929 * ext/ogg/gstoggdemux.c (gst_ogg_demux_finalize): Fix memleak.
3931 2006-07-14 Jan Schmidt <thaytan@mad.scientist.com>
3934 Bump nano back to CVS
3936 === release 0.10.9 ===
3938 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
3941 releasing 0.10.9, "I walk the line"
3943 2006-07-14 Michael Smith <msmith@fluendo.com>
3945 * tests/check/pipelines/vorbisenc.c: (stop_pipeline):
3946 Move a g_cond_signal to earlier to avoid sometimes deadlocking
3947 (commonly happens when running this test under valgrind) when trying
3948 to remove the buffer probe.
3950 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
3952 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
3953 Fix missing g_unlock from the previous commit
3955 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
3957 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
3958 (gst_ximagesink_change_state):
3959 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
3960 (gst_xvimagesink_change_state):
3961 Implement a locking order to ensure we always take the object lock
3962 before the x_lock and never vice-versa.
3964 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
3966 * gst/playback/gstdecodebin.c: (find_compatibles):
3967 Fix a caps leak when linking (#347304)
3969 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
3970 (gst_ximagesink_ximage_destroy), (gst_ximagesink_xcontext_clear),
3971 (gst_ximagesink_change_state):
3972 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
3973 (gst_xvimage_buffer_finalize), (gst_xvimagesink_check_xshm_calls),
3974 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
3975 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_change_state):
3976 Don't leak shared memory resources. Use the object lock to protect
3977 against the xcontext disappearing while returning a buffer from the
3980 2006-07-12 Edward Hervey <edward@fluendo.com>
3982 * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize),
3983 (vorbis_handle_comment_packet):
3984 gst_tag_list_merge() returns a new object. Take that into account when
3985 using it. This avoids memleak.
3986 Revert previous commit which is not needed.
3988 2006-07-12 Edward Hervey <edward@fluendo.com>
3990 * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize):
3991 Reset the decoder in finalize so that all fields get cleared.
3993 2006-07-12 Wim Taymans <wim@fluendo.com>
3995 * gst-libs/gst/audio/gstbaseaudiosrc.c:
3996 (gst_base_audio_src_set_clock),
3997 (gst_base_audio_src_check_get_range), (gst_base_audio_src_create):
3998 Don't try to post an error message when setting the clock fails
3999 as this can happen when adding an element to a bin which will then
4000 deadlock. Fixes #347296.
4002 2006-07-12 Edward Hervey <edward@fluendo.com>
4004 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
4005 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
4006 (vorbis_handle_type_packet):
4007 Post tag messages on the bus even if we're not initialized.
4008 If we're not initialized, we still postpone the event pushing of tags.
4010 2006-07-12 Wim Taymans <wim@fluendo.com>
4012 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4013 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4014 (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
4015 Revert last two changes that broke the freeze.
4017 2006-07-12 Wim Taymans <wim@fluendo.com>
4019 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4020 basesink calculates silence sample correctly for us.
4022 2006-07-12 Wim Taymans <wim@fluendo.com>
4024 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4025 (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
4026 Calculate correct silence samples so we don't fill our ringbuffer
4029 2006-07-12 Edward Hervey <edward@fluendo.com>
4031 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
4032 (gst_vorbis_dec_reset), (vorbis_dec_sink_event),
4033 (vorbis_handle_comment_packet), (vorbis_handle_type_packet):
4034 * ext/vorbis/vorbisdec.h:
4035 Delay sending events (newsegment, tags) until the decoder is properly
4039 2006-07-11 Jan Schmidt <thaytan@mad.scientist.com>
4041 * tests/check/elements/audioconvert.c: (get_float_mc_caps),
4042 (get_int_mc_caps), (GST_START_TEST), (audioconvert_suite):
4043 Patch from #347221 adding a test for audioconvert
4046 2006-07-11 Tim-Philipp Müller <tim at centricular dot net>
4048 * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
4049 (gst_ssa_parse_parse_line):
4050 Don't include the terminating NUL in the buffer size,
4051 it's only there for extra paranoia (would add random
4052 '*' characters at the end of each subtitle since the
4053 terminator itself is not valid UTF-8 technically).
4054 Also fix indenting after boilerplate macro.
4056 2006-07-10 Tim-Philipp Müller <tim at centricular dot net>
4058 * gst/playback/gstdecodebin.c: (close_pad_link):
4059 Also emit 'unknown-type' signal (which should really be
4060 called unhandled-type) if we found potential decoders/demuxers
4061 in the registry but none of them worked in the end (as in the
4062 case where the plugins don't exist any longer but are still
4063 listed in the registry). Fixes #329798.
4065 2006-07-08 Andy Wingo <wingo@pobox.com>
4067 * theoraparse.c (theora_parse_push_buffer)
4068 (theora_parse_drain_queue_prematurely, theora_parse_drain_queue):
4069 Add some more debugging. Fix granulepos reconstruction in the face
4072 2006-07-06 Wim Taymans <wim@fluendo.com>
4074 * gst-libs/gst/audio/gstbaseaudiosink.c:
4075 (gst_base_audio_sink_class_init),
4076 (gst_base_audio_sink_provide_clock):
4077 Use gobject_class instead of G_OBJECT_CLASS (klass)
4079 * gst-libs/gst/audio/gstbaseaudiosrc.c:
4080 (gst_base_audio_src_class_init), (gst_base_audio_src_init),
4081 (gst_base_audio_src_set_clock), (gst_base_audio_src_provide_clock),
4082 (gst_base_audio_src_get_time),
4083 (gst_base_audio_src_check_get_range), (gst_base_audio_src_create),
4084 (gst_base_audio_src_create_ringbuffer):
4085 Fix latency and buffer-time constants and properties ala basesink.
4086 Implement pull based scheduling. Fixes #346527.
4087 Set default blocksize in GstBaseSrc to 0, we default to pushing out
4089 Refuse slaving to another clock instead of silently not working.
4090 Only provide a clock when we are actually able to do so.
4091 Various small cleanups and compiler hints.
4093 2006-07-06 Tim-Philipp Müller <tim at centricular dot net>
4095 Patch by: Lutz Mueller <lutz at topfrose de>
4097 * gst/typefind/gsttypefindfunctions.c: (html_type_find),
4099 Add typefinding for text/html (#346581).
4101 2006-07-06 Tim-Philipp Müller <tim at centricular dot net>
4103 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
4104 (xml_check_first_element), (xml_type_find), (smil_type_find):
4105 Fix SMIL typefinding, make xml_check_first_element() more
4108 2006-07-06 Tim-Philipp Müller <tim at centricular dot net>
4110 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
4111 (gst_play_base_bin_finalize), (decodebin_element_added_cb),
4112 (decodebin_element_removed_cb), (gst_play_base_bin_set_property):
4113 * gst/playback/gstplaybasebin.h:
4114 Protect list of elements with a subtitle-encoding property and
4115 the subtitle encoding member itself with a lock of their own
4116 instead of using the object lock. This prevents a dead-lock in
4117 the element-remove callback in some circumstances when shutting
4120 2006-07-05 Sebastien Moutte <sebastien@moutte.net>
4122 * win32/common/libgsttag.def:
4123 Export some new functions.
4124 * win32/vs6/libgstogg.dsp:
4125 Add a link to libgsttag-0.10.lib.
4127 2006-07-04 Tim-Philipp Müller <tim at centricular dot net>
4129 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
4130 Some const-ification.
4132 2006-07-04 Wim Taymans <wim@fluendo.com>
4134 * gst/playback/gstplaybasebin.c: (is_stream), (gen_source_element):
4135 Improve checking if we are dealing with a stream. Added some
4136 more uris that need buffering.
4138 2006-07-03 Edward Hervey <edward@fluendo.com>
4140 * ext/vorbis/vorbisdec.c: (vorbis_do_clip):
4141 Remove unused variable.
4143 2006-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
4148 add GCOV_LIBS to GST_LIBS
4150 2006-07-02 Tim-Philipp Müller <tim at centricular dot net>
4152 Patch by: Michael Sheldon <webmaster at mikeasoft com>
4154 * ext/alsa/gstalsasrc.c:
4155 Add 32 bps to template caps and increase channels range
4156 from [1,2] to [1,MAX]. See #346326.
4158 2006-06-30 Tim-Philipp Müller <tim at centricular dot net>
4160 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
4161 Recognise 'WMVA' video codec fourcc (#345879).
4163 2006-06-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
4165 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4166 Fixed nasty memory leak
4168 2006-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
4170 * gst/tcp/gsttcp.c: (gst_tcp_read_buffer),
4171 (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps):
4174 2006-06-23 Jan Schmidt <thaytan@mad.scientist.com>
4176 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
4177 (gst_decode_bin_init), (gst_decode_bin_finalize), (add_fakesink),
4178 (remove_fakesink), (pad_probe), (gst_decode_bin_change_state):
4179 Protect remove_fakesink using a mutex, so that we don't try and
4180 remove the fakesink simultaneously from multiple threads.
4182 When going from READY to PAUSED, restore the fakesink, so that
4183 it is there when decodebin gets reused.
4185 2006-06-23 Tim-Philipp Müller <tim at centricular dot net>
4187 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4188 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4189 * gst-libs/gst/rtp/gstbasertppayload.c:
4190 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4191 * gst/tcp/gstmultifdsink.c:
4192 * gst/tcp/gsttcpclientsink.c:
4193 * gst/tcp/gsttcpclientsrc.c:
4194 * gst/tcp/gsttcpserversink.c:
4195 * gst/tcp/gsttcpserversrc.c:
4196 * gst/videorate/gstvideorate.c:
4197 * gst/videotestsrc/gstvideotestsrc.c:
4198 * sys/v4l/gstv4ljpegsrc.c:
4199 * sys/v4l/gstv4lmjpegsink.c:
4200 * sys/v4l/gstv4lsrc.c:
4201 * tests/examples/seek/scrubby.c:
4202 * tests/examples/seek/seek.c:
4203 Use GST_DEBUG_CATEGORY_STATIC where possible (#342503).
4205 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4207 * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
4208 Second field in GEnumValue shouldn't be a description,
4209 but a stringified version of the enum value.
4211 2006-06-22 Wim Taymans <wim@fluendo.com>
4213 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
4214 (gst_ximage_buffer_free), (gst_ximagesink_ximage_put),
4215 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
4216 Avoid type checking in buffer casts.
4217 Avoid caps copy in buffer_alloc when we can.
4218 Use pad_peer_accept.
4220 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4222 * gst-libs/gst/tag/tag.h:
4223 Oops, make that 'Since: 0.10.9'.
4225 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4227 * docs/libs/gst-plugins-base-libs-sections.txt:
4228 * gst-libs/gst/tag/tag.h:
4229 * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
4230 (gst_tag_image_type_get_type):
4231 API: add GstTagImageType enum to describe images contained
4232 in image tags (#345641).
4234 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4236 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4237 Fix warnings with gst-inspect: "buffers-min" property
4238 should be of G_TYPE_INT and not G_TYPE_INT64. Also fix
4239 typo in property description.
4241 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4243 Patch by: Cody Russell <bratsche at gnome org>
4245 * gst/audioresample/gstaudioresample.c:
4246 (gst_audioresample_class_init):
4247 * gst/playback/gststreamselector.c:
4248 (gst_stream_selector_class_init):
4249 * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
4250 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4251 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
4252 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
4253 * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
4254 * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
4255 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
4256 * gst/videotestsrc/gstvideotestsrc.c:
4257 (gst_video_test_src_class_init):
4258 * gst/volume/gstvolume.c: (gst_volume_class_init):
4259 Avoid unnecessary class cast check in class_init
4260 functions (#337747).
4262 2006-06-21 Tim-Philipp Müller <tim at centricular dot net>
4264 * ext/pango/gsttextoverlay.c: (gst_text_overlay_make_utf8),
4265 (gst_text_overlay_video_chain):
4266 g_markup_escape_text() REALLY doesn't like non-UTF8 input
4267 and doesn't validate its input either (and neither did
4268 textoverlay it seems). Let's do that then and fix #345206.
4270 2006-06-19 Wim Taymans <wim@fluendo.com>
4272 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
4273 (gst_unit_type_get_type), (gst_multi_fd_sink_class_init),
4274 (gst_multi_fd_sink_init), (gst_multi_fd_sink_add_full),
4275 (gst_multi_fd_sink_add), (gst_multi_fd_sink_handle_client_read),
4276 (find_syncframe), (find_limits), (assign_value),
4277 (count_burst_unit), (gst_multi_fd_sink_new_client),
4278 (gst_multi_fd_sink_handle_client_write),
4279 (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_render),
4280 (gst_multi_fd_sink_set_property), (gst_multi_fd_sink_get_property),
4281 (gst_multi_fd_sink_change_state):
4282 * gst/tcp/gstmultifdsink.h:
4283 Added shiny new burst-on-connect methods.
4284 Add properties to control the minimal amount of data queued.
4286 API: bytes-min property
4287 API: time-min property
4288 API: buffers-min property
4289 API: burst-unit property
4290 API: burst-value property
4291 API: add-full signal
4293 * gst/tcp/gsttcp-marshal.list:
4294 Added new marshaller code for the new signal.
4296 * tests/check/elements/multifdsink.c: (GST_START_TEST),
4297 (multifdsink_suite):
4298 Added testcases for new burst methods.
4300 2006-06-19 Edward Hervey <edward@fluendo.com>
4302 * ext/theora/theoradec.c: (clip_buffer), (theora_dec_push):
4303 Implement clipping for accurate seeking.
4306 2006-06-19 Wim Taymans <wim@fluendo.com>
4308 Patch by: Philip Jaegenstedt <philip at lysator dot liu dot se>
4310 * gst/videoscale/gstvideoscale.c: (gst_video_scale_prepare_size),
4311 (gst_video_scale_transform):
4312 Make videoscale support RGBA, ARGB, BGRA and ABGR. Fixes #345131
4314 2006-06-17 Tim-Philipp Müller <tim at centricular dot net>
4317 Fix --disable-external (can't set conditionals conditionally,
4320 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
4322 * tests/check/elements/audioresample.c: (test_reuse),
4323 (audioresample_suite):
4324 Add test case for bug #342789 fixed below.
4326 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
4328 * gst/audioresample/gstaudioresample.c:
4329 (gst_audioresample_class_init), (gst_audioresample_init),
4330 (audioresample_start), (audioresample_stop),
4331 (gst_audioresample_set_property), (gst_audioresample_get_property):
4332 Implement GstBaseTransform::start and ::stop so that audioresample
4333 can clear its internal state properly and be reused instead of
4334 causing non-negotiated errors with playbin under some circumstances
4337 * tests/check/elements/audioresample.c: (setup_audioresample),
4338 (cleanup_audioresample):
4339 Need to set element state here so that ::start and ::stop are
4342 2006-06-16 Wim Taymans <wim@fluendo.com>
4344 Patch by: Young-Ho Cha <ganadist at chollian dot net>
4346 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_vids):
4347 Parse extra data better, apparently it's right behind
4348 the normal strf header size. Fixes #343500.
4350 2006-06-16 Wim Taymans <wim@fluendo.com>
4352 * ext/alsa/gstalsasink.c: (set_hwparams):
4353 If we fail to set the buffer_time and period_time alsa
4354 parameters, post a warning and leave alsa select a
4355 default instead of failing. Fixes #342085
4357 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
4359 * docs/libs/gst-plugins-base-libs-sections.txt:
4360 * gst-libs/gst/cdda/gstcddabasesrc.h:
4361 Remove GST_CDDA_TAG_TRACK_TAGS again, it is #ifdef 0'ed
4362 out in the header file and shouldn't be listed in the docs.
4364 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
4365 Must dereference pointer to fourcc in the debug statement.
4367 2006-06-16 Stefan Kost <ensonic@users.sf.net>
4369 * docs/libs/Makefile.am:
4370 * docs/libs/gst-plugins-base-libs-docs.sgml:
4371 * docs/libs/gst-plugins-base-libs-sections.txt:
4372 * docs/libs/gst-plugins-base-libs.types:
4373 add remaining symbols into correct setions
4375 * gst-libs/gst/audio/gstringbuffer.c:
4378 * gst-libs/gst/audio/gstringbuffer.h:
4379 comment out not yet implemented function
4382 * gst-libs/gst/floatcast/floatcast.h:
4383 * gst-libs/gst/netbuffer/gstnetbuffer.c:
4384 add short descriptions
4387 * gst-libs/gst/interfaces/propertyprobe.c:
4388 fix return value docs
4390 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
4391 simplify debug logging
4393 * gst-libs/gst/riff/riff-read.h:
4394 sync function prototype and docs
4396 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
4397 remove left over symbol
4399 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
4404 Use GST_PLUGIN_DOCS macro in configure.ac, add
4405 --enable-plugin-docs default to autogen.sh and use
4406 ENABLE_PLUGIN_DOCS conditional in Makefile.am (#344039).
4408 2006-06-15 Wim Taymans <wim@fluendo.com>
4410 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
4411 (gst_ogg_demux_activate_chain), (gst_ogg_demux_combine_flows),
4412 (gst_ogg_demux_loop):
4413 Combine GstFlowReturn from the source pads to give a
4414 meaningfull result to the upstream peer or to stop the
4415 processing task in case of errors.
4417 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
4419 * gst/playback/gststreaminfo.c: (cb_probe):
4420 Try GST_TAG_CODEC as fallback when extracting the
4421 codec name; more debug info.
4423 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
4425 * ext/ogg/Makefile.am:
4426 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
4427 Extract language tags from ogm subtitle streams, so that
4428 the subtitle menu choices are labelled correctly in
4429 Totem (fixes #344708).
4431 2006-06-14 Wim Taymans <wim@fluendo.com>
4433 Patch by: Alessandro Decina <alessandro at nnva dot org>
4435 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_clear),
4436 (gst_ogg_mux_release_pad), (gst_ogg_mux_get_headers),
4437 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_init_collectpads),
4438 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
4439 Fix various leaks. Fixes #343699.
4440 Add x-smoke mime type.
4442 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
4444 * gst-libs/gst/riff/riff-ids.h:
4445 Add IDs for 'bext' chunks (see #343837).
4447 2006-06-12 Tim-Philipp Müller <tim at centricular dot net>
4449 Patch by: Young-Ho Cha <ganadist at chollian net>
4451 * gst/subparse/samiparse.c: (sami_context_pop_state),
4452 (handle_start_font), (end_sami_element):
4453 Honour font face tags in SAMI subtitles (#344503).
4455 2006-06-11 Stefan Kost <ensonic@users.sf.net>
4458 add missing files containing translatable strings
4460 2006-06-11 Stefan Kost <ensonic@users.sf.net>
4462 * docs/libs/tmpl/.cvsignore:
4463 we don't want those *.sgml files in CVS either
4465 2006-06-11 Stefan Kost <ensonic@users.sf.net>
4467 * docs/libs/.cvsignore:
4468 * tests/check/elements/.cvsignore:
4469 * tests/check/libs/.cvsignore:
4472 2006-06-11 Stefan Kost <ensonic@users.sf.net>
4474 * docs/libs/Makefile.am:
4475 also commiting the changed Makefile.am (added more libs to the
4478 2006-06-11 Stefan Kost <ensonic@users.sf.net>
4480 * docs/libs/gst-plugins-base-libs-docs.sgml:
4481 * docs/libs/gst-plugins-base-libs-sections.txt:
4482 * docs/libs/gst-plugins-base-libs.types:
4483 first batch of reordering things, add index & hierarchy
4485 2006-06-11 Thomas Vander Stichele <thomas at apestaart dot org>
4488 use GST_PKG_CHECK_MODULES, cleans up output
4490 2006-06-10 Tim-Philipp Müller <tim at centricular dot net>
4492 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
4493 Add support for burn:// URIs (#343385); const-ify things a bit,
4494 use G_N_ELEMENTS instead of hard-coded array size.
4496 2006-06-10 Tim-Philipp Müller <tim at centricular dot net>
4498 Patch by: Young-Ho Cha <ganadist at chollian net>
4500 * gst/subparse/samiparse.c: (fix_invalid_entities), (parse_sami):
4501 Fix up broken entities before passing them to libxml *sigh*.
4504 2006-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
4509 === release 0.10.8 ===
4511 2006-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
4514 releasing 0.10.8, "Moar gij ziet mij nie"
4516 2006-06-07 Thomas Vander Stichele <thomas at apestaart dot org>
4533 * win32/common/config.h:
4536 2006-06-07 Thomas Vander Stichele <thomas at apestaart dot org>
4538 * docs/libs/tmpl/gstaudio.sgml:
4539 * docs/libs/tmpl/gstcolorbalance.sgml:
4540 * docs/libs/tmpl/gstmixer.sgml:
4541 * docs/libs/tmpl/gstringbuffer.sgml:
4542 * docs/libs/tmpl/gsttuner.sgml:
4543 * docs/libs/tmpl/gstxoverlay.sgml:
4544 * gst-libs/gst/audio/audio.c:
4545 * gst-libs/gst/audio/gstringbuffer.c:
4546 * gst-libs/gst/interfaces/colorbalance.c:
4547 * gst-libs/gst/interfaces/mixer.c:
4548 * gst-libs/gst/interfaces/tuner.c:
4549 * gst-libs/gst/interfaces/xoverlay.c:
4550 move last template doc snippets to source code and delete them
4552 2006-06-06 Michael Smith <msmith@fluendo.com>
4554 * ext/theora/theoraparse.c: (theora_parse_drain_queue_prematurely),
4555 (theora_parse_drain_queue):
4556 Mark DELTA_UNIT on non-keyframes.
4558 2006-06-03 Jan Schmidt <thaytan@mad.scientist.com>
4560 * gst-libs/gst/audio/gstbaseaudiosink.c:
4561 (gst_base_audio_sink_class_init), (gst_base_audio_sink_setcaps):
4562 * gst-libs/gst/audio/gstbaseaudiosink.h:
4563 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps),
4564 (gst_ring_buffer_samples_done):
4565 * gst-libs/gst/audio/gstringbuffer.h:
4566 Document better the fact that latency_time and buffer_time are values
4567 stored in microseconds, and not the usual GStreamer nanoseconds.
4568 Change the variables (compatibly) that store them from GstClockTime
4569 to guint64 to make it more clear that they're not storing clock times.
4570 Also, remove the bogus property description that says the user can
4571 specify -1 to get the default value, since that's never been the case.
4573 When computing the default segment size for the ring buffer, make it
4574 an integer number of samples.
4576 When the sub-class indicates a delay greater than the number of
4577 samples we've written return 0 from the audio sink get_time method.
4579 2006-06-02 Michael Smith <msmith@fluendo.com>
4581 * tests/check/elements/audioconvert.c: (set_channel_positions),
4582 (get_float_mc_caps), (get_int_mc_caps):
4583 * tests/check/elements/audioresample.c:
4584 * tests/check/elements/audiotestsrc.c: (GST_START_TEST):
4585 * tests/check/elements/videorate.c:
4586 * tests/check/elements/videotestsrc.c: (GST_START_TEST):
4587 * tests/check/elements/volume.c:
4588 * tests/check/elements/vorbisdec.c:
4589 * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
4590 Don't busy-wait in tests; this was causing test timeouts very
4591 frequently when running under valgrind.
4593 2006-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
4596 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_init),
4597 (gst_multi_fd_sink_remove_client_link),
4598 (gst_multi_fd_sink_client_queue_caps),
4599 (gst_multi_fd_sink_client_queue_buffer),
4600 (gst_multi_fd_sink_handle_client_write),
4601 (gst_multi_fd_sink_render):
4602 * gst/tcp/gstmultifdsink.h:
4603 make multifdsink properly deal with streamheader:
4604 - streamheader is taken from caps
4605 - buffers marked with IN_CAPS are not sent
4606 - streamheaders are sent, on connection, from the caps of the
4607 buffer where the client gets positioned to
4608 - further streamheader changes are done every time the client
4609 will receive a buffer with different caps
4610 * tests/check/elements/multifdsink.c: (GST_START_TEST),
4611 (gst_multifdsink_create_streamheader):
4614 2006-06-02 Michael Smith <msmith@fluendo.com>
4616 * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
4617 Reinstate limit on channel count. Vorbis does not define the meaning
4618 of > 6 channels, so they're just independent channels. Gstreamer
4619 currently has no mechanism to represent N independent channels.
4621 2006-06-02 Michael Smith <msmith@fluendo.com>
4623 * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
4624 Don't arbitrarily restrict channel counts and rate in vorbis.
4625 In terms of effects likely on real-world files, this fixes 96kHz
4628 2006-06-02 Michael Smith <msmith@fluendo.com>
4630 * gst/audioconvert/audioconvert.c: (float):
4631 More correct float->int conversion.
4633 2006-06-02 Michael Smith <msmith@fluendo.com>
4635 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_perform_seek):
4636 Don't accidently send GST_CLOCK_TIME_NONE as a new segment start
4637 value. Fixes g-critical on trying to play back ogg containing
4640 2006-06-02 Wim Taymans <wim@fluendo.com>
4642 * gst/playback/gstplaybasebin.c: (group_create), (group_commit),
4644 * gst/playback/gstplaybasebin.h:
4645 Make the subtitle detection work from any thread so we don't
4646 deadlock. Fixes #343397.
4648 2006-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
4650 * gst/volume/Makefile.am:
4651 Seriously, it's not *that* hard to get compilation right. Even
4652 a drunk can do it ! Add LIBOIL CFLAGS and LIBS
4654 2006-06-01 Stefan Kost <ensonic@users.sf.net>
4656 * gst/volume/gstvolume.c: (volume_choose_func),
4657 (volume_update_real_volume), (gst_volume_class_init),
4658 (gst_volume_init), (volume_process_float), (volume_process_int16),
4659 (volume_process_int16_clamp), (volume_set_caps),
4660 (volume_transform_ip), (plugin_init):
4661 * gst/volume/gstvolume.h:
4662 rewrite the passthrough check, split _int16 and _int16_clamp, fix
4663 another property desc., remove unused param from process function
4665 * tests/check/elements/volume.c: (volume_suite):
4666 reactivate the passthrough test
4668 2006-06-01 Stefan Kost <ensonic@users.sf.net>
4670 * ext/alsa/gstalsamixerelement.h:
4671 * ext/alsa/gstalsamixeroptions.h:
4672 * ext/alsa/gstalsamixertrack.h:
4673 * ext/gnomevfs/gstgnomevfssink.h:
4674 * ext/gnomevfs/gstgnomevfssrc.h:
4675 * ext/theora/gsttheoradec.h:
4676 * ext/theora/gsttheoraenc.h:
4677 * ext/theora/gsttheoraparse.h:
4678 * ext/vorbis/vorbisparse.h:
4679 * gst-libs/gst/audio/gstaudioclock.h:
4680 * gst-libs/gst/audio/gstaudiofilter.h:
4681 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
4682 * gst/audioconvert/gstaudioconvert.h:
4683 * gst/audioresample/gstaudioresample.h:
4684 * gst/audiotestsrc/gstaudiotestsrc.h:
4685 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
4686 * gst/playback/gststreamselector.h:
4687 * gst/tcp/gstmultifdsink.h:
4688 * gst/tcp/gsttcpclientsink.h:
4689 * gst/tcp/gsttcpclientsrc.h:
4690 * gst/tcp/gsttcpserversink.h:
4691 * gst/tcp/gsttcpserversrc.h:
4692 * gst/videorate/gstvideorate.h:
4693 * gst/videoscale/gstvideoscale.h:
4694 * gst/videotestsrc/gstvideotestsrc.h:
4695 * gst/volume/gstvolume.h:
4696 * sys/v4l/gstv4ljpegsrc.h:
4697 * sys/v4l/gstv4lmjpegsink.h:
4698 * sys/v4l/gstv4lmjpegsrc.h:
4699 * sys/v4l/gstv4lsrc.h:
4700 * sys/ximage/ximagesink.h:
4701 * sys/xvimage/xvimagesink.h:
4702 * tests/old/testsuite/alsa/sinesrc.h:
4703 Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
4705 2006-05-31 Wim Taymans <wim@fluendo.com>
4707 * ext/libvisual/visual.c: (gst_visual_reset),
4708 (gst_visual_sink_setcaps), (gst_visual_sink_event),
4709 (gst_visual_src_event), (get_buffer), (gst_visual_chain):
4711 Use running time before doing QoS.
4714 2006-05-31 Thomas Vander Stichele <thomas at apestaart dot org>
4716 * docs/libs/Makefile.am:
4717 set a magic variable to indicate we know the docs are incomplete
4719 2006-05-30 Sebastien Moutte <sebastien@moutte.net>
4721 * win32/common/libgstvideo.def:
4722 export gst_video_calculate_display_ratio
4723 * win32/vs6/libgstvideoscale.dsp:
4724 add link to libgstvideo-0.10.lib
4726 2006-05-30 Tim-Philipp Müller <tim at centricular dot net>
4728 * gst/playback/gstplaybasebin.c: (gen_source_element):
4729 Throw a more comprehensible error for rtsp:// URIs (rather
4730 than erroring out with a negotiation error later on) until
4731 we fix playbin to handle rtspsrc etc.
4733 2006-05-30 Wim Taymans <wim@fluendo.com>
4735 * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
4736 (gst_text_overlay_text_event):
4739 2006-05-30 Wim Taymans <wim@fluendo.com>
4741 * gst/adder/gstadder.c: (gst_adder_class_init), (gst_adder_init),
4742 (gst_adder_request_new_pad), (gst_adder_release_pad):
4743 * gst/adder/gstadder.h:
4744 Implement release_request_pad.
4745 Make padcounter atomic.
4747 * tests/check/elements/adder.c: (GST_START_TEST), (adder_suite):
4748 Added check for release_pad in adder.
4750 2006-05-30 Wim Taymans <wim@fluendo.com>
4752 * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream):
4755 2006-05-30 Thomas Vander Stichele <thomas at apestaart dot org>
4757 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
4758 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
4759 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
4760 (gst_ogg_pad_submit_page), (gst_ogg_chain_new_stream),
4761 (gst_ogg_demux_seek), (gst_ogg_demux_get_data),
4762 (gst_ogg_demux_get_next_page), (gst_ogg_demux_do_seek),
4763 (gst_ogg_demux_bisect_forward_serialno),
4764 (gst_ogg_demux_read_chain), (gst_ogg_demux_find_chains),
4765 (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
4767 clean up printf formats for granulepos and serialno
4769 2006-05-30 Michael Smith <msmith@fluendo.com>
4771 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
4772 (gst_vorbis_enc_class_init), (gst_vorbis_enc_dispose),
4773 (gst_vorbis_enc_generate_sink_caps), (gst_vorbis_enc_sink_getcaps),
4774 (gst_vorbis_enc_init), (gst_vorbis_enc_buffer_from_header_packet),
4775 (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
4776 * ext/vorbis/vorbisenc.h:
4777 Multi-channel caps negotiation, so we can do proper multichannel
4778 vorbis encoding, negotiated through audioconvert.
4780 2006-05-30 Wim Taymans <wim@fluendo.com>
4782 * tests/check/elements/adder.c: (test_event_message_received),
4783 (test_play_twice_message_received), (GST_START_TEST),
4785 Added check to show that #339935 is fixed with ongoing
4786 adder and collectpads fixes.
4788 2006-05-29 Wim Taymans <wim@fluendo.com>
4790 * gst/adder/gstadder.c: (gst_adder_request_new_pad):
4791 Don't leak pad name.
4793 2006-05-29 Wim Taymans <wim@fluendo.com>
4795 * gst/adder/gstadder.c: (gst_adder_query_duration),
4796 (forward_event_func), (forward_event), (gst_adder_src_event):
4798 Make query/seeking code threadsafe.
4800 * tests/check/Makefile.am:
4801 * tests/check/elements/adder.c: (test_event_message_received),
4802 (GST_START_TEST), (test_play_twice_message_received):
4803 Fix adder test case.
4805 2006-05-29 Tim-Philipp Müller <tim at centricular dot net>
4807 Patch by: Young-Ho Cha <ganadist at chollian net>
4809 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
4810 (gst_play_base_bin_init), (gst_play_base_bin_dispose),
4811 (set_encoding_element), (decodebin_element_added_cb),
4812 (decodebin_element_removed_cb), (setup_subtitle), (setup_source),
4813 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
4814 * gst/playback/gstplaybasebin.h:
4815 Add 'subtitle-encoding' property to playbin, so applications can
4816 force a subtitle encoding for non-UTF8 subtitles (#342268).
4818 * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init),
4819 (gst_sub_parse_set_property):
4820 Rename recently-added 'encoding' property to 'subtitle-encoding'
4821 (so it can be proxied by playbin/decodebin in a generic way
4822 with less danger of false positives).
4824 2006-05-29 Michael Smith <msmith@fluendo.com>
4826 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
4827 (append_with_other_format), (set_structure_widths),
4828 (gst_audio_convert_transform_caps):
4829 Patch from #341562: give more specific audio caps in get_caps, so
4830 that basetransform can make better decisions on what caps to
4833 2006-05-28 Stefan Kost <ensonic@users.sf.net>
4835 * tests/check/elements/volume.c:
4836 make it compile again
4838 2006-05-28 Stefan Kost <ensonic@users.sf.net>
4840 * tests/check/elements/volume.c: (volume_suite):
4841 disable test until #343196 gets resolved
4843 2006-05-28 Stefan Kost <ensonic@users.sf.net>
4845 * gst/adder/gstadder.c: (gst_adder_get_type):
4846 Make it easier to copy&paste
4848 * gst/volume/Makefile.am:
4849 * gst/volume/gstvolume.c: (volume_update_real_volume),
4850 (gst_volume_set_volume), (gst_volume_set_mute),
4851 (gst_volume_class_init), (volume_process_int16), (volume_set_caps),
4852 (volume_transform_ip), (volume_update_mute),
4853 (volume_update_volume):
4854 * gst/volume/gstvolume.h:
4855 Add own debug category, move duplicate code to helper function, fix
4856 property texts, add more comments and prepare ffor liboil-goodness
4858 * tests/check/Makefile.am:
4859 * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
4860 add test for mute and passtrough case, be a bit more verbose to track
4863 * tests/check/generic/states.c: (GST_START_TEST):
4864 catch elements that fail to instantiate
4866 2006-05-28 Edward Hervey <edward@fluendo.com>
4868 * tests/check/pipelines/simple-launch-lines.c:
4869 * tests/check/pipelines/theoraenc.c:
4870 * tests/check/pipelines/vorbisenc.c:
4871 Comment out tests using parse_launch() if core was built without
4872 parsing capabilities.
4874 2006-05-27 Edward Hervey <edward@fluendo.com>
4876 * tests/check/Makefile.am:
4877 Extra bonus points for whoever explains to ensonic that you are meant
4878 to test unit tests thoroughly before commiting them, especially if
4879 you know it's going to break.
4880 De-activated element/adder tests.
4882 2006-05-27 Edward Hervey <edward@fluendo.com>
4884 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
4885 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps):
4886 Marking caps conversion issues as GST_WARNING is way too verbose,
4887 Moving them to GST_LOG.
4889 2006-05-27 Tim-Philipp Müller <tim at centricular dot net>
4892 Replace current README (containing the release notes from
4893 some 0.9.x version) with a proper README taken from the core.
4895 2006-05-26 Wim Taymans <wim@fluendo.com>
4897 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
4898 (vorbis_dec_src_event), (vorbis_dec_sink_event), (vorbis_do_clip),
4899 (vorbis_dec_push), (vorbis_handle_data_packet), (vorbis_dec_chain),
4900 (vorbis_dec_change_state):
4903 Clip output samples to segment boundaries.
4905 2006-05-26 Jan Schmidt <thaytan@mad.scientist.com>
4907 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
4908 (gst_ximagesink_xcontext_get), (gst_ximagesink_show_frame):
4909 Improve the errors produced on bad output, including some human
4910 readable description strings.
4911 Handle the (theoretical for ximagesink) case where the XServer
4912 has a different idea about the size required for a particular
4913 frame and gives us too small a memory allocation.
4915 2006-05-26 Jan Schmidt <thaytan@mad.scientist.com>
4917 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
4918 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
4919 (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
4920 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
4921 Improve the errors produced on bad output, including some human
4922 readable description strings.
4923 Handle RGB Xv formats properly by transforming them into our
4924 big-endian caps description.
4925 Use gst_caps_truncate to ensure that we never try and choose a
4926 non-fixed caps in buffer_alloc.
4927 Handle the case where the XServer has a different idea about the size
4928 required for a particular frame and gives us too small a memory
4930 Use -1 to indicate 'no image format', because 0 is a valid XServer
4931 image format number.
4932 Put RGB Xv formats at the end of the caps, so that we always prefer
4934 Iterate the available Xv Encodings to determine the maximum width and
4935 height, and then return that in our caps.
4936 (Closes #315312, #337544)
4938 2006-05-25 Jan Schmidt <thaytan@mad.scientist.com>
4940 * gst/playback/gstdecodebin.c: (remove_fakesink), (pad_probe):
4941 When there is only one unfinished pad and it receives an event that
4942 doesn't match our requirements, we need to set alldone=FALSE so that
4943 the fakesink is not removed yet.
4945 2006-05-25 Tim-Philipp Müller <tim at centricular dot net>
4947 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
4948 Use gst_type_find_helper_for_buffer() to find the type
4949 of stream from the first packet.
4952 Bump requirements to core CVS (needed for vorbis
4953 typefinding to work).
4955 2006-05-24 Edward Hervey <edward@fluendo.com>
4957 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
4958 Added the 'prfl' atom type which MQV (no, it's not a typo) files
4959 contain. Else they play perfectly fine with qtdemux.
4961 2006-05-23 Stefan Kost <ensonic@users.sf.net>
4963 * ext/theora/theoradec.c:
4964 * ext/theora/theoraenc.c:
4965 * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
4966 * gst/audiorate/gstaudiorate.c:
4967 make more debug catagories static
4969 * tests/check/Makefile.am:
4970 * tests/check/elements/adder.c: (message_received),
4971 (test_event_message_received), (GST_START_TEST),
4972 (test_play_twice_message_received), (adder_suite):
4973 added test case for using element twice, extra bonus points for anyone
4974 who can make these test run reliably
4976 2006-05-23 Tim-Philipp Müller <tim at centricular dot net>
4978 * ext/theora/theoradec.c: (theora_dec_chain):
4979 Make work with time-stamped input buffers that do not
4980 have a granulepos in BUFFER_OFFSET_END (like theora
4981 buffers coming from matroskademux). Fixes #342448.
4983 2006-05-22 Tim-Philipp Müller <tim at centricular dot net>
4985 Patch by: Peter Kjellerstedt <pkj at axis com>
4987 * gst/tcp/Makefile.am:
4988 fdstresstest doesn't need Gtk+, fix compilation if
4989 gtk is not available (#342566).
4991 2006-05-19 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
4993 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4995 Removed redundant floor()
4997 2006-05-19 Tim-Philipp Müller <tim at centricular dot net>
4999 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5000 On second thought, just skip JUNK chunks automatically, so
5001 the caller doesn't have to handle this. Fixes #342345.
5002 Also, return GST_FLOW_UNEXPECTED if we get a short read,
5005 2006-05-19 Tim-Philipp Müller <tim at centricular dot net>
5007 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5008 Don't bail out on JUNK chunks with a size of 0 (would try to
5009 pull_range 0 bytes before, which sources don't like too much).
5012 2006-05-19 Jan Schmidt <thaytan@mad.scientist.com>
5014 * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5015 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5016 Use the gstutil scaling function to preserve 64 bits while calculating
5017 output width and height from the display-aspect-ratio. (A continuation
5020 2006-05-19 Jan Schmidt <thaytan@mad.scientist.com>
5022 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
5023 (gst_xvimagesink_buffer_alloc):
5024 * sys/xvimage/xvimagesink.h:
5025 When performing buffer allocations, remember the caps and image format
5026 we return so that if the same caps are asked for next time we can
5027 return them immediately without doing any caps intersections.
5029 2006-05-18 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
5031 * gst-libs/gst/rtp/README:
5032 Some new documentation
5033 * gst-libs/gst/rtp/gstrtpbuffer.h:
5034 Added GST_RTP_PAYLOAD_DYNAMIC_STRING for use by children
5035 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
5036 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
5037 New RTP audio base payloader class. Supports frame or sample based
5038 codecs. Not enabled in Makefile.am until approved.
5040 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5042 * tests/check/elements/alsa.c: (test_device_property_probe):
5043 Fix test case: don't try to free NULL GValueArray when there
5046 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5048 * tests/check/Makefile.am:
5049 * tests/check/elements/alsa.c: (test_device_property_probe),
5050 (alsa_suite), (main):
5051 Add simple test that runs a device property probe on alsasrc,
5052 alsasink and alsamixer. Disable valgrind check for now (too
5053 many leaks in libasound, and valgrind ignored my suppressions
5056 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5058 * ext/alsa/gstalsadeviceprobe.c: (gst_alsa_get_device_list),
5059 (gst_alsa_device_property_probe_probe_property),
5060 (gst_alsa_device_property_probe_needs_probe),
5061 (gst_alsa_device_property_probe_get_values),
5062 (gst_alsa_type_add_device_property_probe_interface):
5063 * ext/alsa/gstalsadeviceprobe.h:
5064 * ext/alsa/gstalsamixerelement.c:
5065 (gst_alsa_mixer_element_init_interfaces):
5066 * ext/alsa/gstalsamixerelement.h:
5067 Clean up and simplify alsa device probing. Make it actually work
5068 for multiple classes. Don't cache results any longer.
5070 * ext/alsa/gstalsasink.c: (gst_alsasink_init_interfaces),
5071 (gst_alsasink_init):
5072 * ext/alsa/gstalsasrc.c: (gst_alsasrc_dispose),
5073 (gst_alsasrc_interface_supported), (gst_implements_interface_init),
5074 (gst_alsasrc_init_interfaces), (gst_alsasrc_set_property):
5075 Make alsasink and alsasrc implement the GstPropertyProbe interface
5076 for device probing (#342181).
5077 Patch by: Martin Szulecki <gnomebugzilla at sukimashita com>
5079 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5081 * gst/subparse/samiparse.c: (handle_start_font):
5082 Don't ignore return value of strtol (++compiler_happiness).
5084 2006-05-17 Tim-Philipp Müller <tim at centricular dot net>
5086 Patch by: Young-Ho Cha <ganadist chollian net>
5088 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
5089 (gst_sub_parse_class_init), (gst_sub_parse_init),
5090 (gst_sub_parse_set_property), (gst_sub_parse_get_property),
5092 * gst/subparse/gstsubparse.h:
5093 Add 'encoding' property (#341681).
5095 * gst/subparse/samiparse.c: (characters_sami):
5096 Output is pango markup, so we need to escape text
5097 between tags (#342143).
5099 2006-05-16 Tim-Philipp Müller <tim at centricular dot net>
5101 * gst-libs/gst/audio/multichannel.c:
5102 (gst_audio_check_channel_positions):
5103 It's okay to have caps with channels=1 and a channel position
5104 different from GST_AUDIO_CHANNEL_POSITION_FRONT_MONO
5105 (deinterleavers might want to keep the position in the caps,
5106 so that they can be re-interleaved again properly later).
5107 Leave check for unexpected 2-channel layouts intact for now.
5109 2006-05-16 Zaheer Abbas Merali <zaheerabbas at merali dot org>
5111 * gst/tcp/gsttcp.c: (gst_tcp_socket_read):
5112 Return GST_FLOW_UNEXPECTED when we have an eos on the socket so
5113 basesrc can do its job correctly.
5115 2006-05-16 Tim-Philipp Müller <tim at centricular dot net>
5117 * ext/alsa/Makefile.am:
5118 * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
5119 (gst_alsa_detect_formats), (get_channel_free_structure),
5120 (caps_add_channel_configuration), (gst_alsa_detect_channels),
5121 (gst_alsa_probe_supported_formats):
5122 * ext/alsa/gstalsa.h:
5123 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
5124 Refactor and improve caps probing code: probe signedness
5125 when we probe the supported formats/widths; set endianness
5126 to the one we actually probed for (ie. cpu endianness).
5128 * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (gst_alsasrc_getcaps),
5129 (gst_alsasrc_close):
5130 * ext/alsa/gstalsasrc.h:
5131 Implement caps probing for alsasrc.
5133 2006-05-15 Wim Taymans <wim@fluendo.com>
5135 * ext/theora/theoradec.c: (gst_theora_dec_reset),
5136 (theora_dec_src_query), (theora_dec_src_event),
5137 (theora_dec_sink_event), (theora_handle_comment_packet),
5138 (theora_handle_data_packet), (theora_dec_change_state):
5139 Cleanups, add some G_LIKELY.
5140 Use segment helpers instead of our own wrong code.
5141 Clear queued buffers on seek and READY.
5143 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
5144 (vorbis_dec_convert), (vorbis_dec_src_query),
5145 (vorbis_dec_src_event), (vorbis_dec_sink_event),
5146 (vorbis_handle_comment_packet), (vorbis_dec_push),
5147 (vorbis_handle_data_packet), (vorbis_dec_chain),
5148 (vorbis_dec_change_state):
5149 * ext/vorbis/vorbisdec.h:
5150 Remove old useless packetno variable.
5151 Do position query properly.
5153 Do cleanup of queued buffers in new helper function
5156 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5158 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
5159 Query supported sample rates. Fixes #341732.
5161 2006-05-15 Julien MOUTTE <julien@moutte.net>
5163 * gst/playback/gstdecodebin.c: (cleanup_decodebin),
5164 (gst_decode_bin_change_state): Make decodebin reusable
5165 when going from PAUSE_TO_READY and then back to PAUSED.
5168 2006-05-15 Wim Taymans <wim@fluendo.com>
5170 * ext/vorbis/vorbisdec.c: (vorbis_get_query_types),
5171 (vorbis_dec_convert), (vorbis_dec_src_query),
5172 (vorbis_dec_sink_query), (vorbis_dec_src_event),
5173 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
5174 (vorbis_dec_clean_queued), (vorbis_dec_push),
5175 (vorbis_handle_data_packet), (vorbis_dec_change_state):
5176 Cleanups. Use refcounting and DEBUG_OBJECT.
5177 Reset segment on flush, use code methods instead of our
5179 Fix potential memleak.
5181 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5183 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
5184 (gst_alsasink_init):
5185 * ext/alsa/gstalsasink.h:
5186 Don't leak allocated snd_output_t structure if there's
5187 more than one alsasink instance at a time (#341873).
5188 Also fix GObject macros in header file.
5190 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5192 * gst/subparse/gstsubparse.c:
5193 (gst_sub_parse_data_format_autodetect):
5194 Don't use libxml functions in the typefinding code.
5196 2006-05-15 Wim Taymans <wim@fluendo.com>
5198 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
5199 Fix seeking performance in the case where a non-header
5200 packet has a 0 granulepos (busted theora case).
5202 (nvdr: thanks Wim for not mentioning who spotted and fixed it in
5203 the first place, you limelight stealer you)
5205 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5207 * gst/subparse/gstsubparse.c:
5208 (gst_sub_parse_data_format_autodetect):
5209 Improve SAMI typefinding: handle case where there are
5210 whitespaces or newlines in front of the first <SAMI>
5213 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5216 Build video4linux plugin even if there's no XVIDEO, just
5217 without implementing the GstXOverlay interface (#334002).
5219 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5222 * ext/libvisual/visual.c: (gst_visual_actor_plugin_is_gl),
5224 Add tentative support for libvisual-0.4 (#336881).
5226 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5228 Patch by: Young-Ho Cha <ganadist at chollian net>
5230 * gst/subparse/samiparse.c: (handle_start_font):
5231 Need to map "silver" colour explicitly (#169936).
5233 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5235 Patch by: Young-Ho Cha <ganadist at chollian net>
5237 * gst/subparse/Makefile.am:
5238 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
5239 (parser_state_dispose), (gst_sub_parse_data_format_autodetect),
5240 (gst_sub_parse_format_autodetect), (feed_textbuf),
5241 (gst_subparse_type_find), (plugin_init):
5242 * gst/subparse/gstsubparse.h:
5243 * gst/subparse/samiparse.c:
5244 * gst/subparse/samiparse.h:
5245 Add support for SAMI subtitles (#169936).
5247 2006-05-14 Michael Smith <msmith@fluendo.com>
5249 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
5250 Fix #341696: crash when mixing L+R+C to mono or stereo.
5251 * tests/check/Makefile.am:
5252 * tests/check/elements/audioconvert.c: (set_channel_positions),
5253 (get_float_mc_caps), (get_int_mc_caps), (GST_START_TEST),
5254 (audioconvert_suite):
5255 Add test for the above, including some generic framework bits for
5256 testing multichannel things.
5258 === release 0.10.7 ===
5260 2006-05-14 Jan Schmidt <thaytan@mad.scientist.com>
5263 releasing 0.10.7, "Leave the gun"
5265 2006-05-13 Jan Schmidt <thaytan@mad.scientist.com>
5267 * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5268 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5271 2006-05-12 Jan Schmidt <thaytan@mad.scientist.com>
5273 * docs/libs/gst-plugins-base-libs-docs.sgml:
5274 * docs/libs/gst-plugins-base-libs-sections.txt:
5275 * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio):
5276 * gst-libs/gst/video/video.h:
5277 * gst/videoscale/Makefile.am:
5278 * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5279 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5280 * tests/check/Makefile.am:
5281 * tests/check/libs/video.c: (GST_START_TEST), (video_suite),
5283 Fix integer overflow problem with pixel-aspect-ratio calculations
5284 in videoscale and xvimagesink (#341542)
5286 2006-05-12 Tim-Philipp Müller <tim at centricular dot net>
5288 * gst-libs/gst/tag/gstid3tag.c:
5289 Map GST_IMAGE_TAG to and from ID2v2 APIC frames (#341557).
5291 2006-05-12 Sebastien Moutte <sebastien@moutte.net>
5294 update win32 files listing
5296 2006-05-11 Thomas Vander Stichele <thomas at apestaart dot org>
5298 patch by: Sjoerd Simons (sjoerd@luon.net)
5300 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
5301 (group_create), (group_destroy), (add_stream),
5302 (gst_play_base_bin_get_property),
5303 (gst_play_base_bin_get_streaminfo_value_array):
5304 * gst/playback/gstplaybasebin.h:
5305 API: GstPlayBaseBin::stream-info-value-array property
5306 use a more bindings-friendly way of exposing streaminfo
5307 using a GValueArray. Tested in ipython.
5310 2006-05-11 Wim Taymans <wim@fluendo.com>
5312 * gst/playback/gstdecodebin.c: (try_to_link_1), (queue_enlarge),
5313 (queue_underrun_cb), (queue_filled_cb):
5314 Also catch queue underruns but don't do anything yet.
5315 Refactor and comment queue enlarging code a bit.
5317 * gst/playback/gstplaybasebin.c: (queue_overrun),
5318 (queue_threshold_reached), (queue_out_of_data),
5319 (gen_preroll_element):
5320 If a queue over/underruns check that we don't create nasty
5321 deadlocks when the min-threshold is not reached but the
5322 max-bytes is. In those cases disable max-bytes when we
5323 know that the queue is fed timed data.
5326 2006-05-11 Tim-Philipp Müller <tim at centricular dot net>
5328 * gst/playback/gstplaybin.c: (gen_audio_element):
5329 Make playbin automatically plug an 'audioresample'
5330 element before the audio sink as well. This solves
5331 problems with sinks that only accept a very specific
5332 sample rate, like esdsink (e.g. #340379).
5334 2006-05-11 Tim-Philipp Müller <tim at centricular dot net>
5336 * gst/playback/gstplaybasebin.c: (gen_source_element):
5337 Make http sources send special headers so that we receive
5338 icecast metadata if the http stream is an icecast stream
5339 (otherwise the server will just ignore them). This also
5340 means that from now on users will need the 'icydemux'
5341 element from gst-plugins-good installed if they want to
5342 listen to icecast radio streams. (#341432, #333657).
5344 2006-05-11 Thomas Vander Stichele <thomas at apestaart dot org>
5346 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_remove_client_link),
5347 (gst_multi_fd_sink_new_client), (gst_multi_fd_sink_stop):
5348 remove stupid example from docs - it should come with a simple
5351 * tests/check/elements/multifdsink.c: (wait_bytes_served),
5352 (fail_if_can_read), (GST_START_TEST),
5353 (gst_multifdsink_create_streamheader), (multifdsink_suite):
5354 add a test for changing streamheader which exposes a bug in
5357 2006-05-11 Michael Smith <msmith@fluendo.com>
5359 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
5360 (gst_gnome_vfs_src_received_headers_callback):
5361 * ext/gnomevfs/gstgnomevfssrc.h:
5362 Don't set icy-caps unless we have a sane interval value. Move
5363 interval to a local variable; we never use it outside this function.
5365 2006-05-11 Wim Taymans <wim@fluendo.com>
5367 * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
5368 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
5369 Register special buffer types along with the objects so
5370 that they are not registered at runtime from N different
5371 streaming threads since they are not threadsafe.
5373 2006-05-10 Thomas Vander Stichele <thomas at apestaart dot org>
5375 * tests/check/elements/multifdsink.c: (wait_bytes_served),
5376 (GST_START_TEST), (fail_unless_read), (multifdsink_suite):
5377 add two more tests, one doing streamheader
5379 2006-05-10 Thomas Vander Stichele <thomas at apestaart dot org>
5381 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_stop):
5382 clean up the bufqueue when shutting down
5383 * tests/check/Makefile.am:
5384 * tests/check/elements/multifdsink.c: (setup_multifdsink),
5385 (cleanup_multifdsink), (GST_START_TEST), (multifdsink_suite),
5387 add a test for the leak that was just fixed
5389 2006-05-10 Wim Taymans <wim@fluendo.com>
5391 * gst/adder/gstadder.c: (gst_adder_setcaps),
5392 (gst_adder_query_duration), (gst_adder_query), (forward_event),
5393 (gst_adder_src_event), (gst_adder_sink_event),
5394 (gst_adder_class_init), (gst_adder_finalize),
5395 (gst_adder_request_new_pad), (gst_adder_collected):
5396 * gst/adder/gstadder.h:
5397 Updated some docs. Added comments and FIXMEs all over the place.
5398 Improve debugging info.
5399 Fix leak on finalize by not calling the parent.
5400 Implement duration query.
5401 Make event forwarding threadsafe.
5402 Correctly send NEWSEGMENT at start and after flush.
5403 Handle EOS correctly.
5404 Post error when not negotiated.
5406 * tests/check/elements/adder.c: (GST_START_TEST):
5407 Added FIXME in the test.
5409 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
5411 * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
5412 (gst_text_overlay_halign_get_type),
5413 (gst_text_overlay_wrap_mode_get_type):
5414 * ext/theora/theoradec.c: (theora_handle_type_packet),
5415 (theora_handle_data_packet):
5416 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
5417 (theora_enc_sink_setcaps), (theora_enc_chain):
5418 * gst-libs/gst/cdda/gstcddabasesrc.c:
5419 (gst_cdda_base_src_mode_get_type):
5420 * gst/audiotestsrc/gstaudiotestsrc.c:
5421 (gst_audiostestsrc_wave_get_type):
5422 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
5423 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
5424 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
5425 (gst_sync_method_get_type), (gst_unit_type_get_type),
5426 (gst_client_status_get_type):
5427 * gst/videoscale/gstvideoscale.c:
5428 (gst_video_scale_method_get_type):
5429 * gst/videotestsrc/gstvideotestsrc.c:
5430 (gst_video_test_src_pattern_get_type):
5431 * gst/videotestsrc/videotestsrc.c: (paint_setup_I420),
5432 (paint_setup_YV12), (paint_setup_YUY2), (paint_setup_UYVY),
5433 (paint_setup_YVYU), (paint_setup_IYU2), (paint_setup_Y41B),
5434 (paint_setup_Y42B), (paint_setup_Y800), (paint_setup_YVU9),
5435 (paint_setup_YUV9), (paint_setup_RGB888), (paint_setup_BGR888),
5436 (paint_setup_RGB565), (paint_setup_xRGB1555):
5437 Const-ify GEnumValue and GFlagsValue arrays. Use
5438 GST_ROUND_UP_* macros instead of home-made ones.
5440 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
5443 Require core CVS for the new newsegment stuff.
5445 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
5447 Patch by: Sjoerd Simons <sjoerd at luon net>
5449 * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type):
5450 Register nick for enum value (#341160).
5452 2006-05-09 Stefan Kost <ensonic@users.sf.net>
5454 * gst/typefind/gsttypefindfunctions.c: (m4a_type_find),
5456 backout typefind patch #340375
5458 * tests/check/elements/adder.c: (message_received),
5459 (GST_START_TEST), (adder_suite):
5460 redo, signal-handling of test
5462 2006-05-09 Wim Taymans <wim@fluendo.com>
5464 * gst/adder/gstadder.c: (gst_adder_request_new_pad),
5465 (gst_adder_collected):
5466 * gst/adder/gstadder.h:
5467 Remove bogus segment merging and forwarding, we don't
5468 care about timestamps anyway and we just produce a
5470 Also create a nice NEWSEGMENT event when we start.
5471 Use _scale_int some more.
5473 2006-05-09 Edward Hervey <edward@fluendo.com>
5475 * tests/icles/stress-xoverlay.c:
5476 Fix if core was built without parsing support.
5478 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
5480 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
5481 Add SEDG (Samsung MPEG-4) fourcc.
5483 2006-05-09 Edward Hervey <edward@fluendo.com>
5485 * tests/icles/stress-xoverlay.c:
5486 * tests/examples/volume/volume.c:
5487 Fix if core was built without parsing support.
5489 * tests/examples/seek/seek.c:
5490 Disable the parse_launch example if core was built without parsing
5493 2006-05-08 Edward Hervey <edward@fluendo.com>
5495 * autogen.sh: (CONFIGURE_DEF_OPT):
5496 libtoolize on Darwin/MacOSX is called glibtoolize
5498 2006-05-07 Stefan Kost <ensonic@users.sf.net>
5500 * tests/check/Makefile.am:
5501 * tests/check/elements/adder.c: (event_loop), (GST_START_TEST):
5502 Disable the adder test, until the build-slaves posses the kindness to
5503 either like it or to give valid reason for not doing so
5505 2006-05-07 Stefan Kost <ensonic@users.sf.net>
5507 * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
5509 Shuffle NULL state change around and raise timeout more
5511 2006-05-07 Stefan Kost <ensonic@users.sf.net>
5513 * gst/typefind/gsttypefindfunctions.c: (mp4_find_box),
5514 (mp4_type_find), (plugin_init):
5515 Add typefind to distinguish between "audio/x-m4a" and new type
5516 "video/mp4". Fixes #340375
5518 * tests/check/elements/adder.c: (adder_suite):
5519 Raise timeout to make buildbot happy
5521 2006-05-07 Stefan Kost <ensonic@users.sf.net>
5523 * gst/adder/gstadder.c: (gst_adder_sink_event),
5524 (gst_adder_request_new_pad), (gst_adder_change_state):
5525 * gst/adder/gstadder.h:
5526 * tests/check/Makefile.am:
5527 * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
5528 (adder_suite), (main):
5529 Add sink-event handling to adder. It tries to merge incomming
5530 newsegment-events. Added test to check if segment_done is comming
5531 through. Fixes #340060
5533 2006-05-05 Andy Wingo <wingo@pobox.com>
5535 * ext/theora/theoraparse.c (gst_theora_parse_init)
5536 (theora_parse_src_convert, theora_parse_src_query):
5537 * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
5538 (vorbis_parse_convert, vorbis_parse_src_query): Add convert and
5539 query functions on the source pads of the theora and vorbis parse
5540 elements. Fixes position querying when doing a remux.
5542 2006-05-05 Michael Smith <msmith@fluendo.com>
5544 * ext/theora/theoraparse.c: (parse_granulepos),
5545 (theora_parse_drain_queue_prematurely),
5546 (theora_parse_queue_buffer), (theora_parse_sink_event):
5548 Fix invalid granulepos outputs when starting with a non-keyframe.
5550 2006-05-05 Jan Schmidt <thaytan@mad.scientist.com>
5552 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find),
5553 (mpeg1_sys_type_find), (ogganx_type_find), (sw_data_destroy):
5554 Rearrange MPEG system stream detection, fixing some memleaks in the
5556 Constify the data for STARTS_WITH and RIFF helper handlers. Make sure
5557 they clean up their data correctly.
5558 Remove unused ogganx caps and move the 'is_annodex' check to inside
5559 the 'is_ogg' if statement.
5561 2006-05-05 Wim Taymans <wim@fluendo.com>
5563 * gst/playback/gstdecodebin.c: (cleanup_decodebin):
5564 Properly remove ghostpads. Fixes #340392
5566 2006-05-04 David Schleef <ds@schleef.org>
5568 * gst/typefind/gsttypefindfunctions.c:
5570 2006-05-03 Jan Schmidt <thaytan@mad.scientist.com>
5572 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
5573 (mpeg_ts_probe_headers), (mpeg_ts_type_find):
5575 When typefinding an MP3 in push-based mode, don't penalise the
5576 probability down to 74% when we found 5 valid frames just because we
5577 can't peek the end of the file.
5579 Make the probability for detecting MPEG Transport Streams based on the
5580 number of sequential headers we successfully detected.
5582 2006-05-03 Wim Taymans <wim@fluendo.com>
5584 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
5585 (vorbis_dec_push), (vorbis_dec_chain):
5586 Still produce an error when we receive an empty packet.
5588 2006-05-03 Wim Taymans <wim@fluendo.com>
5590 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
5591 (gst_ogg_chain_mark_discont), (gst_ogg_chain_new_stream),
5592 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek):
5593 Mark buffers with DISCONT after seek and after activating new
5596 * ext/theora/gsttheoradec.h:
5597 * ext/theora/theoradec.c: (gst_theora_dec_reset),
5598 (theora_get_query_types), (theora_dec_sink_event),
5599 (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
5600 (theora_dec_change_state):
5602 Detect and mark DISCONT buffers.
5604 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
5605 (vorbis_dec_sink_event), (vorbis_dec_push), (vorbis_dec_chain),
5606 (vorbis_dec_change_state):
5607 * ext/vorbis/vorbisdec.h:
5609 Detect and mark DISCONT buffers.
5610 Don't crash on 0 sized buffers.
5612 2006-05-03 Wim Taymans <wim@fluendo.com>
5614 * gst/volume/gstvolume.c: (volume_funcfind), (volume_set_caps),
5615 (volume_transform_ip):
5616 Increase "volume" property to 10.0. Fixes #340369.
5617 Set the process function to NULL when capsnego fails so that
5618 we properly error out.
5620 2006-05-02 Stefan Kost <ensonic@users.sf.net>
5622 * gst/playback/gstplaybin.c: (add_sink):
5623 * gst/playback/test.c: (main):
5624 * gst/playback/test5.c: (dump_element_stats):
5625 * gst/playback/test6.c: (main):
5626 free caps using gst_caps_unref, don't leak caps-strings
5628 2006-05-01 Tim-Philipp Müller <tim at centricular dot net>
5630 * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
5632 Refine musepack typefinding a bit. Return MAXIMUM
5633 probability when we detect stream version 7 to make
5634 sure the mpeg audio typefinder doesn't trump us.
5636 2006-04-29 Tim-Philipp Müller <tim at centricular dot net>
5638 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
5639 Protect against unexpected NULL strf_data buffer.
5641 2006-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
5643 * tests/check/elements/audioconvert.c: (verify_convert),
5645 interpret the out[] buffer in the order the bytes are actually
5646 put in, which is LITTLE_ENDIAN, not BYTE_ORDER.
5647 Other tests should use BYTE_ORDER since the array is filled in
5650 2006-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
5652 * tests/check/elements/audioconvert.c: (verify_convert),
5654 when a test fails, give an indication of which it is
5656 2006-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
5658 * gst-libs/gst/cdda/gstcddabasesrc.c:
5659 compile fix; strtol() needs <stdlib.h>
5661 2006-04-28 Stefan Kost <ensonic@users.sf.net>
5663 * ext/alsa/gstalsamixerelement.c:
5664 * ext/alsa/gstalsasrc.c:
5665 * ext/cdparanoia/gstcdparanoiasrc.c:
5666 * ext/gnomevfs/gstgnomevfssink.c:
5667 * ext/gnomevfs/gstgnomevfssrc.c:
5668 * ext/ogg/gstoggdemux.c:
5669 * ext/ogg/gstoggmux.c:
5670 * ext/ogg/gstoggparse.c:
5671 * ext/ogg/gstogmparse.c:
5672 * ext/pango/gstclockoverlay.c:
5673 * ext/pango/gsttextoverlay.c:
5674 * ext/pango/gsttextrender.c:
5675 * ext/pango/gsttimeoverlay.c:
5676 * ext/theora/theoradec.c:
5677 * ext/theora/theoraenc.c:
5678 * ext/vorbis/vorbisdec.c:
5679 * ext/vorbis/vorbisenc.c:
5680 * gst-libs/gst/audio/gstaudiofilter.c:
5681 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
5682 * gst/audioconvert/gstaudioconvert.c:
5683 * gst/audiorate/gstaudiorate.c:
5684 * gst/audioresample/gstaudioresample.c:
5685 * gst/audiotestsrc/gstaudiotestsrc.c:
5686 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
5687 * gst/playback/gstdecodebin.c:
5688 * gst/playback/gstplaybin.c:
5689 * gst/playback/gststreamselector.c:
5690 * gst/subparse/gstsubparse.c:
5691 * gst/tcp/gstmultifdsink.c:
5692 * gst/tcp/gsttcpclientsink.c:
5693 * gst/tcp/gsttcpclientsrc.c:
5694 * gst/tcp/gsttcpserversink.c:
5695 * gst/tcp/gsttcpserversrc.c:
5696 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
5697 * gst/videorate/gstvideorate.c:
5698 * gst/videoscale/gstvideoscale.c:
5699 * gst/videotestsrc/gstvideotestsrc.c:
5700 * gst/volume/gstvolume.c:
5701 * sys/v4l/gstv4ljpegsrc.c:
5702 * sys/v4l/gstv4lmjpegsink.c:
5703 * sys/v4l/gstv4lmjpegsrc.c:
5704 * sys/v4l/gstv4lsrc.c:
5705 * sys/ximage/ximagesink.c:
5706 * sys/xvimage/xvimagesink.c:
5707 * tests/check/libs/cddabasesrc.c:
5708 make GstElementDetails const
5710 2006-04-28 Stefan Kost <ensonic@users.sf.net>
5712 * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
5714 send events from src-pad to all sink-pads fixes #338657
5716 2006-04-28 Stefan Kost <ensonic@users.sf.net>
5718 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps),
5719 (alsasink_parse_spec):
5720 query width capabilities from alsa, fixes #338919
5722 2006-04-28 Wim Taymans <wim@fluendo.com>
5724 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
5725 (gst_multi_fd_sink_remove_client_link):
5726 * gst/tcp/gstmultifdsink.h:
5727 Fix race condition in multifdsink that can lead to spurious
5728 duplicate clients. this patch adds a new signal that is fired when
5729 multifdsink has removed all references to the fd.
5731 Updated documentation.
5732 API: client-fd-removed signal added
5734 2006-04-28 Michael Smith <msmith@fluendo.com>
5736 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats):
5737 When asking g_value_array_new to prealloc elements, we may as well
5738 ask for the right number of elements.
5740 2006-04-28 Wim Taymans <wim@fluendo.com>
5742 * gst-libs/gst/audio/gstbaseaudiosink.c:
5743 (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
5744 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
5745 patch to make timestamp checking more tollerant to rounding
5746 errors given that real discontinuities are to be marked on
5747 buffers. Fixes some asf files and #338778.
5748 Also avoid some crashers when we receive an event in the
5751 2006-04-28 Michael Smith <msmith@fluendo.com>
5753 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
5754 (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
5755 (gst_gnome_vfs_src_get_property),
5756 (gst_gnome_vfs_src_send_additional_headers_callback),
5757 (gst_gnome_vfs_src_received_headers_callback),
5758 (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_start),
5759 (gst_gnome_vfs_src_stop):
5760 * ext/gnomevfs/gstgnomevfssrc.h:
5761 Remove ICY handling (mostly) from gnomevfssrc, in favour of
5762 proper shared support within icydemux.
5764 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
5766 * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
5767 (gst_video_rate_swap_prev), (gst_video_rate_chain):
5769 fix a leak when no caps negotiated
5770 fix counting of input frames
5771 * tests/check/elements/.cvsignore:
5772 * tests/check/elements/videorate.c: (assert_videorate_stats),
5773 (GST_START_TEST), (videorate_suite):
5776 2006-04-28 Wim Taymans <wim@fluendo.com>
5778 * gst-libs/gst/audio/gstringbuffer.c:
5779 (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
5780 (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
5781 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
5782 (gst_ring_buffer_pause), (gst_ring_buffer_stop),
5783 (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
5784 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
5785 (gst_ring_buffer_commit), (gst_ring_buffer_read),
5786 (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
5787 (gst_ring_buffer_clear), (gst_ring_buffer_may_start):
5788 Check arguments passed to public functions instead of
5791 2006-04-28 Wim Taymans <wim@fluendo.com>
5793 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
5794 (gst_base_audio_src_get_time), (gst_base_audio_src_create):
5795 GstBaseAudioSrc must be live or it does not work.
5797 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audio_src_init):
5798 Don't set live to TRUE as this is the default in the parentclass.
5800 2006-04-28 Wim Taymans <wim@fluendo.com>
5802 * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps),
5803 (gst_video_scale_fixate_caps), (gst_video_scale_src_event):
5804 Videoscale doesn't pass on pixel-aspect ratio. Handle all
5805 fixation cases better. Fixes #338991
5807 2006-04-28 Wim Taymans <wim@fluendo.com>
5809 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
5810 Handle 0/1 framerate correctly Fixes #331901.
5812 2006-04-28 Wim Taymans <wim@fluendo.com>
5814 * tests/check/elements/audioconvert.c: (get_float_caps),
5815 (GST_START_TEST), (audioconvert_suite):
5816 Added check for correct clipping when doing float samples
5819 2006-04-28 Wim Taymans <wim@fluendo.com>
5821 * gst/videorate/gstvideorate.c: (gst_video_rate_event),
5822 (gst_video_rate_chain):
5823 Print more debugging info.
5825 2006-04-28 Wim Taymans <wim@fluendo.com>
5827 * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
5828 (resample_set_state_from_caps):
5829 Add support for other formats audioresample can handle such as
5830 32 bits in and float and 64 bits float. Fixes #301759
5832 2006-04-28 Wim Taymans <wim@fluendo.com>
5834 * gst/audioconvert/audioconvert.c: (float):
5835 correctly clip float samples > 1.0. Fixes #338718
5837 2006-04-28 Tim-Philipp Müller <tim at centricular dot net>
5839 Patch by: Young-Ho Cha <ganadist at chollian net>
5841 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
5842 (gst_text_overlay_render_text):
5843 Don't strip newlines from the text. Also, center lines
5844 within multi-line paragraphs (#339405).
5846 2006-04-28 Tim-Philipp Müller <tim at centricular dot net>
5848 * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find):
5849 Fix wavpack typefinding to work in more cases (don't peek
5850 for chunks of multiple hundred kBs at once, but process
5851 things step-by-step in smaller units). Fixes #339786.
5853 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
5858 === release 0.10.6 ===
5860 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
5863 releasing 0.10.6, "Chao"
5865 2006-04-26 David Schleef <ds@schleef.org>
5867 * gst/videoscale/gstvideoscale.c: Add call to oil_init().
5870 2006-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
5873 * win32/common/config.h:
5876 2006-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
5878 patch by: Wim Taymans
5880 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
5881 (gst_ogg_demux_perform_seek):
5882 make sure correct newsegments are sent, so that the decoder
5883 and the demuxer agree on timestamps. Fixes playback of a lot
5884 of Ogg files that do not start from 0. Fixes #339833.
5886 2006-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
5888 Patch by: Edward Hervey <edward@fluendo.com>
5890 * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
5891 * tests/check/Makefile.am:
5892 * tests/check/elements/videorate.c: (assert_videorate_stats),
5893 (setup_videorate), (cleanup_videorate), (GST_START_TEST),
5894 (videorate_suite), (main):
5895 Fix an infinite loop if frames are passed in with wrongly ordered
5896 timestamps. Fixes #339013.
5898 2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
5900 Patch by: Tim-Philipp Müller <tim at centricular dot net>
5902 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
5903 fix typefinding on some ISO files. Fixes #339212.
5905 2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
5907 Patch by: Tim-Philipp Müller <tim at centricular dot net>
5909 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
5910 add another H264 fourcc. Fixes #339047.
5912 2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
5914 Patch by: Jan Schmidt
5916 * gst/playback/gststreamselector.c:
5917 (gst_stream_selector_bufferalloc):
5918 Restore old StreamSelector behaviour.
5921 2006-04-12 Thomas Vander Stichele <thomas at apestaart dot org>
5924 * win32/common/config.h:
5927 2006-04-11 Tim-Philipp Müller <tim at centricular dot net>
5929 Patch by: Antoine Tremblay <hexa00 at gmail dot com>
5931 * gst-libs/gst/rtp/gstbasertpdepayload.c:
5932 (gst_base_rtp_depayload_finalize), (gst_base_rtp_depayload_push):
5933 Fix some memory leaks: on finalize, free buffers left in the queue
5934 before destroying the queue; in _push(), unref rtp_buf even if
5935 the process vfunc returned a NULL buffer as output buffer (#337548);
5936 demote some recuring debug messages to LOG level.
5938 2006-04-11 Wim Taymans <wim@fluendo.com>
5940 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
5941 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
5942 (gst_ogg_chain_free), (gst_ogg_demux_sink_event),
5943 (gst_ogg_demux_loop):
5945 Respect segment stop when emiting EOS or SEGMENT_DONE.
5948 2006-04-11 Tim-Philipp Müller <tim at centricular dot net>
5950 * gst/playback/gststreamselector.c:
5951 (gst_stream_selector_get_property):
5952 Don't leak pad name.
5954 2006-04-10 Michael Smith <msmith@fluendo.com>
5956 * tests/check/Makefile.am:
5957 * tests/check/gst-plugins-base.supp:
5958 Suppress an old libtheora bug (fixed in more recent versions), so
5959 that FC4 buildslaves can pass.
5961 2006-04-10 Wim Taymans <wim@fluendo.com>
5963 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
5964 (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
5965 (gst_ogg_demux_init), (gst_ogg_demux_finalize),
5966 (gst_ogg_demux_sink_event), (gst_ogg_demux_get_data),
5967 (gst_ogg_demux_loop):
5969 Remember what error we got when finding chains, if we
5970 were shutdown, that would not be an error.
5972 2006-04-10 Wim Taymans <wim@fluendo.com>
5974 * gst-libs/gst/audio/gstbaseaudiosink.c:
5975 (gst_base_audio_sink_event):
5976 Starting the ringbuffer when we did not acquire it can cause
5977 a deadlock, is pointless and causes nasty things for
5979 Fixes gst-launch audiotestsrc num-buffers=0 ! alsasink.
5981 2006-04-10 Wim Taymans <wim@fluendo.com>
5983 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
5984 (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
5985 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
5986 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
5987 (gst_ogg_demux_deactivate_current_chain),
5988 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
5989 (gst_ogg_demux_bisect_forward_serialno),
5990 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain):
5991 Add some more debugging.
5993 2006-04-10 Wim Taymans <wim@fluendo.com>
5995 * ext/theora/theoradec.c: (theora_dec_src_event),
5996 (theora_handle_data_packet):
5997 Some more debug info.
5999 * tests/examples/seek/seek.c: (start_seek), (main):
6000 Print element messages too.
6002 2006-04-09 Sebastien Moutte <sebastien@moutte.net>
6004 * gst/audioresample/debug.h:
6005 replace debug macros with variable number of parameters
6006 by a simple alias to gstreamer standard debug macros
6007 (#define RESAMPLE_ERROR GST_ERROR, __VA_ARGS__ is not
6008 supported by MSVC 6.0 and 7.1)
6009 * gst/audioresample/resample.h:
6010 define M_PI and rint for WIN32
6011 * win32/common/libgstaudio.def:
6012 * win32/common/libgstriff.def:
6013 * win32/common/libgsttag.def:
6014 * win32/common/libgstvideo.def:
6015 add new exported functions
6017 update project files
6019 2006-04-08 Stefan Kost <ensonic@users.sf.net>
6021 * ext/alsa/gstalsamixeroptions.c:
6022 (gst_alsa_mixer_options_class_init):
6023 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init):
6024 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init):
6025 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
6026 * ext/ogg/gstoggparse.c: (gst_ogg_parse_class_init):
6027 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_class_init):
6028 * gst-libs/gst/audio/gstaudiofilter.c:
6029 (gst_audio_filter_class_init):
6030 * gst-libs/gst/audio/gstaudiosink.c:
6031 (gst_audioringbuffer_class_init):
6032 * gst-libs/gst/audio/gstaudiosrc.c:
6033 (gst_audioringbuffer_class_init):
6034 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_class_init):
6035 * gst-libs/gst/interfaces/colorbalancechannel.c:
6036 (gst_color_balance_channel_class_init):
6037 * gst-libs/gst/interfaces/mixeroptions.c:
6038 (gst_mixer_options_class_init):
6039 * gst-libs/gst/interfaces/mixertrack.c:
6040 (gst_mixer_track_class_init):
6041 * gst-libs/gst/interfaces/tunerchannel.c:
6042 (gst_tuner_channel_class_init):
6043 * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_class_init):
6044 * gst-libs/gst/netbuffer/gstnetbuffer.c:
6045 (gst_netbuffer_class_init):
6046 * gst-libs/gst/rtp/gstbasertppayload.c:
6047 (gst_basertppayload_class_init):
6048 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
6049 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
6050 * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
6051 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
6052 * gst/playback/gststreamselector.c:
6053 (gst_stream_selector_class_init):
6054 * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
6055 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
6056 * sys/v4l/gstv4lcolorbalance.c:
6057 (gst_v4l_color_balance_channel_class_init):
6058 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_class_init):
6059 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
6060 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
6061 * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_channel_class_init),
6062 (gst_v4l_tuner_norm_class_init):
6063 * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
6064 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
6065 * tests/old/testsuite/alsa/sinesrc.c: (sinesrc_class_init):
6066 Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
6068 2006-04-08 Stefan Kost <ensonic@users.sf.net>
6070 * ext/pango/gsttextrender.h:
6071 * gst-libs/gst/audio/gstaudiosink.h:
6072 * gst-libs/gst/audio/gstaudiosrc.h:
6073 * gst-libs/gst/audio/gstbaseaudiosink.h:
6074 * gst-libs/gst/audio/gstbaseaudiosrc.h:
6075 * gst-libs/gst/audio/gstringbuffer.h:
6076 * gst-libs/gst/rtp/gstbasertpdepayload.h:
6077 * gst-libs/gst/rtp/gstbasertppayload.h:
6078 * gst-libs/gst/video/gstvideofilter.h:
6079 * gst-libs/gst/video/gstvideosink.h:
6080 * gst/playback/gstplaybasebin.h:
6081 * gst/tcp/gstmultifdsink.h:
6082 * sys/v4l/gstv4lelement.h:
6083 Fix broken GObject macros
6085 2006-04-08 Stefan Kost <ensonic@users.sf.net>
6087 * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec):
6088 More debug to trace why my USB headset is not working with gst
6090 2006-04-07 Jan Schmidt <thaytan@mad.scientist.com>
6092 * gst/playback/gstplaybasebin.c: (group_destroy):
6093 Clean up our group elements properly in the case where it never
6094 got committed - it still got added unconditionally to the bin.
6096 2006-04-07 Wim Taymans <wim@fluendo.com>
6098 * ext/theora/theoradec.c: (theora_dec_sink_event),
6099 (theora_handle_data_packet), (theora_dec_chain):
6100 Unref unhandled events.
6101 Protect against empty buffers.
6102 Perform QoS on running time.
6104 2006-04-07 Michael Smith <msmith@fluendo.com>
6106 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_set_header_on_caps),
6107 (gst_vorbis_enc_chain):
6108 Remove leaks from vorbisenc.
6109 Mostly minor changes, the only significant one is that now the
6110 buffers we set as 'streamheader' on the caps are copies of the
6111 original buffers, to avoid circular refcounting problems.
6113 2006-04-07 Jan Schmidt <thaytan@mad.scientist.com>
6115 * gst/playback/gstplaybasebin.c: (mute_stream), (setup_substreams):
6116 Don't remove our mute-probe if someone else already did so.
6117 Don't set a 2nd one if there is already one pending on the pad.
6119 * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
6121 When a seek fails, ensure that playbin is still set back to playing.
6123 * gst/typefind/gsttypefindfunctions.c: (mpeg_ts_probe_headers),
6124 (mpeg_ts_type_find), (plugin_init):
6125 Add a typefind function for mpeg-ts streams. (Closes: #336617)
6127 2006-04-06 Andy Wingo <wingo@pobox.com>
6129 * gst/videorate/gstvideorate.c (gst_video_rate_reset)
6130 (gst_video_rate_init): Caps-related parameters should not be reset
6131 by a flush -- move their inits to the instance init function.
6132 (gst_video_rate_flush_prev): Don't complain if gst_pad_push
6133 is not OK, just return the result.
6135 * gst/audiotestsrc/gstaudiotestsrc.c
6136 (gst_audio_test_src_class_init)
6137 (gst_audio_test_src_get_times): Re-enable is-live=true, as was
6138 broken by Stefan's commit on 24 March.
6140 * ext/ogg/gstoggmux.c (gst_ogg_mux_push_buffer): Set caps on
6141 buffers being pushed out. Fixes oggmux ! multifdsink.
6143 2006-04-05 Tim-Philipp Müller <tim at centricular dot net>
6145 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
6146 (gst_vorbis_dec_init), (vorbis_dec_finalize):
6147 * ext/vorbis/vorbisdec.h:
6148 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_add_interfaces),
6149 (gst_vorbis_enc_base_init), (gst_vorbis_enc_class_init),
6150 (gst_vorbis_enc_sink_setcaps), (gst_vorbis_enc_convert_src),
6151 (gst_vorbis_enc_convert_sink), (gst_vorbis_enc_get_query_types),
6152 (gst_vorbis_enc_src_query), (gst_vorbis_enc_sink_query),
6153 (gst_vorbis_enc_init), (gst_vorbis_enc_get_tag_value),
6154 (gst_vorbis_enc_metadata_set1), (gst_vorbis_enc_set_metadata),
6155 (gst_vorbis_enc_setup), (gst_vorbis_enc_clear),
6156 (gst_vorbis_enc_buffer_from_packet),
6157 (gst_vorbis_enc_buffer_from_header_packet),
6158 (gst_vorbis_enc_push_buffer), (gst_vorbis_enc_push_packet),
6159 (gst_vorbis_enc_set_header_on_caps), (gst_vorbis_enc_sink_event),
6160 (gst_vorbis_enc_chain), (gst_vorbis_enc_output_buffers),
6161 (gst_vorbis_enc_get_property), (gst_vorbis_enc_set_property),
6162 (gst_vorbis_enc_change_state):
6163 * ext/vorbis/vorbisenc.h:
6164 Remove left-over 0.8 cruft; use GST_DEBUG_FUNCPTR; make
6165 vorbisenc adhere to the official nomenclature; use boilerplate
6168 2006-04-04 Andy Wingo <wingo@pobox.com>
6170 * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
6171 Whoops, fix bug introduced. Bad hacker!
6173 * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
6174 Properly handle the case where you get EOS before any buffers are
6175 received. Use gst_buffer_make_metadata_writable where appropriate.
6177 * ext/theora/theoradec.c (theora_handle_data_packet): This value
6178 is often negative -- make it signed so as not to wrap around.
6179 Fixes segfaults introduced on 9 March.
6181 2006-04-03 Wim Taymans <wim@fluendo.com>
6183 * ext/theora/gsttheoradec.h:
6184 * ext/theora/theoradec.c: (theora_dec_src_event):
6185 Don't try to store a gdouble in a gboolean.
6188 2006-04-03 Michael Smith <msmith@fluendo.com>
6190 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads):
6192 Make it suck slightly less by writing out the final page.
6193 Still can't encode a vorbis-in-ogg file correctly, though.
6195 2006-04-03 Andy Wingo <wingo@pobox.com>
6197 * ext/theora/theoraparse.c (theora_parse_drain_queue): Um, remove
6200 * ext/theora/theora.c (plugin_init): Register theoraparse.
6202 * ext/theora/gsttheoraparse.h:
6203 * ext/theora/theoraparse.c: New files implementing a theora
6204 parser. Now we can properly remux ogg/theora+vorbis, yay.
6206 * ext/vorbis/vorbisparse.c: Add some docs and a copyright.
6208 2006-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
6210 * gst/audiotestsrc/gstaudiotestsrc.c:
6211 Fixed the sample pipeline (see #323798)
6213 2006-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
6216 * win32/common/config.h:
6217 * win32/common/config.h.in:
6218 use AS_VERSION and AS_NANO
6221 2006-03-31 Andy Wingo <wingo@pobox.com>
6223 * ext/vorbis/vorbisparse.c (vorbis_parse_sink_event): Fix
6224 uninitialized variable return that would happen.
6226 * ext/vorbis/vorbisparse.c (vorbis_parse_drain_queue): Fix
6227 uninitialized variable return that would never happen.
6229 * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
6230 (vorbis_parse_sink_event): Add an event function to flush our
6231 state on a seek, and to drain buffers on a premature EOS.
6232 (vorbis_parse_push_headers, vorbis_parse_clear_queue)
6233 (vorbis_parse_push_buffer, vorbis_parse_drain_queue_prematurely)
6234 (vorbis_parse_chain, vorbis_parse_queue_buffer)
6235 (vorbis_parse_drain_queue): Queue up buffers until we can set
6236 their timestamps and granulepos values.
6238 * ext/vorbis/vorbisparse.h: Include the vorbis decoder headers,
6239 and keep track of data needed for deriving granulepos and
6240 timestamps for buffers.
6242 2006-03-29 Wim Taymans <wim@fluendo.com>
6244 Patch by: j^ <j at bootlab dot org>
6246 * ext/alsa/gstalsamixerelement.c:
6247 (gst_alsa_mixer_element_class_init):
6248 * ext/alsa/gstalsasink.c:
6249 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
6250 * ext/ogg/gstoggdemux.c:
6251 * ext/ogg/gstoggmux.c:
6252 * ext/ogg/gstoggparse.c:
6253 * ext/pango/gstclockoverlay.c:
6254 * ext/pango/gsttextoverlay.c:
6255 * ext/pango/gsttextrender.c:
6256 * ext/pango/gsttimeoverlay.c:
6257 * ext/theora/theoradec.c:
6258 * ext/theora/theoraenc.c:
6259 * ext/vorbis/vorbisdec.c:
6260 * ext/vorbis/vorbisenc.c:
6261 * gst/audioconvert/gstaudioconvert.c:
6262 * gst/subparse/gstsubparse.c:
6263 * gst/tcp/gstmultifdsink.c:
6264 * gst/tcp/gsttcpclientsink.c:
6265 * gst/tcp/gsttcpclientsrc.c:
6266 * gst/tcp/gsttcpserversink.c:
6267 * gst/tcp/gsttcpserversrc.c:
6268 better/unified long descriptions
6271 2006-03-29 Wim Taymans <wim@fluendo.com>
6273 * tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
6275 Don't let double and triple clicks mess up our state.
6277 2006-03-28 Tim-Philipp Müller <tim at centricular dot net>
6279 * gst/playback/gstplaybin.c: (gen_video_element),
6280 (gen_text_element), (gen_audio_element), (gen_vis_element):
6281 Error out gracefully when we can't create any of the usual
6282 conversion elements for some reason. Also, don't try to
6283 create an audioscale (sic) element that's not used anyway.
6285 2006-03-28 Tim-Philipp Müller <tim at centricular dot net>
6287 * gst/playback/gstplaybasebin.c: (setup_source):
6288 Don't post RESOURCE_NOT_FOUND error when we can't find a source
6289 element for a particular protocol, that's confusing for users.
6290 Instead, post a RESOURCE_FAILED error, so that our own error
6291 message is actually shown in totem etc. (#336303).
6293 2006-03-27 Tim-Philipp Müller <tim at centricular dot net>
6295 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
6297 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_finalize),
6298 (gst_gnome_vfs_src_get_icy_metadata):
6299 Fix some minor memory leaks (#336194).
6301 2006-03-27 Tim-Philipp Müller <tim at centricular dot net>
6303 * ext/gnomevfs/gstgnomevfs.c:
6304 (gst_gnome_vfs_location_to_uri_string):
6305 * ext/gnomevfs/gstgnomevfs.h:
6306 * ext/gnomevfs/gstgnomevfssink.c:
6307 (gst_gnome_vfs_sink_set_property):
6308 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_set_property):
6309 Make gnomevfssink accept filenames as well as URIs for the
6310 "location" property, just like gnomevfssrc does (and
6311 filesrc/filesink do) (#336190).
6313 2006-03-24 Thomas Vander Stichele <thomas at apestaart dot org>
6315 * tests/check/generic/clock-selection.c: (GST_START_TEST):
6316 set to NULL before unreffing, fixes a valgrind leak.
6317 Why was this not triggering the error that an object needs to
6318 be NULL before unreffing ?
6319 * win32/common/config.h:
6322 2006-03-24 Tim-Philipp Müller <tim at centricular dot net>
6324 * gst/subparse/gstsubparse.c: (convert_encoding),
6325 (gst_sub_parse_change_state):
6326 * gst/subparse/gstsubparse.h:
6327 Text subtitle files may or may not be UTF-8. If it's not, we
6328 don't really want to see '?' characters in place of non-ASCII
6329 characters like accented characters. So let's assume the input
6330 is UTF-8 until we come across text that is clearly not. If it's
6331 not UTF-8, we don't really know what it is, so try the following:
6332 (a) see whether the GST_SUBTITLE_ENCODING environment variable
6333 is set; if not, check (b) if the current locale encoding is
6334 non-UTF-8 and use that if it is, or (c) assume ISO-8859-15 if
6335 the current locale encoding is UTF-8 and the environment variable
6336 was not set to any particular encoding. Not perfect, but better
6337 than nothing (and better than before, I think) (fixes #172848).
6339 2006-03-24 Thomas Vander Stichele <thomas at apestaart dot org>
6342 update core requirement to 0.10.4.1 because of async_playback
6343 vmethod on GstBaseSink
6345 2006-03-24 Stefan Kost <ensonic@users.sf.net>
6347 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
6348 * gst/adder/gstadder.c: (gst_adder_init):
6349 use DEBUG_FUNCPTR for collectpads
6351 2006-03-24 Stefan Kost <ensonic@users.sf.net>
6353 * docs/plugins/Makefile.am:
6354 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6355 * docs/plugins/gst-plugins-base-plugins-sections.txt:
6356 * ext/cdparanoia/gstcdparanoiasrc.c:
6357 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_base_init),
6358 (gst_gnome_vfs_sink_class_init):
6359 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_base_init):
6360 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_base_init):
6361 * ext/ogg/gstoggmux.c:
6362 * ext/ogg/gstoggparse.c: (gst_ogg_parse_base_init):
6363 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
6364 (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init):
6365 * ext/pango/gsttextoverlay.c:
6366 * ext/pango/gsttextrender.c:
6367 * ext/theora/theoradec.c:
6368 * ext/theora/theoraenc.c:
6369 * ext/vorbis/vorbisdec.c:
6370 * ext/vorbis/vorbisenc.c:
6371 * gst-libs/gst/audio/gstaudiofilter.c:
6372 (gst_audio_filter_base_init):
6373 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
6374 (gst_audio_filter_template_base_init):
6375 * gst/adder/gstadder.c: (gst_adder_get_type):
6376 * gst/adder/gstadder.h:
6377 * gst/audioconvert/gstaudioconvert.c:
6378 * gst/audiotestsrc/gstaudiotestsrc.c:
6379 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
6380 (gst_audio_test_src_create):
6381 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6382 * gst/playback/gstdecodebin.c:
6383 * gst/playback/gstplaybin.c:
6384 * gst/playback/gststreamselector.c:
6385 (gst_stream_selector_base_init):
6386 * gst/subparse/gstsubparse.c: (gst_sub_parse_base_init):
6387 * gst/volume/gstvolume.c:
6388 * sys/v4l/gstv4lmjpegsink.c:
6389 * sys/v4l/gstv4lmjpegsrc.c:
6390 * tests/check/libs/cddabasesrc.c:
6391 * tests/old/examples/gob/gst-identity2.gob:
6392 Add docs for adder, use GST_ELEMENT_DETAILS macro,
6393 define GstElementDetails at the top
6395 2006-03-23 Sebastien Moutte <sebastien@moutte.net>
6397 * win32/common/libgstinterfaces.def:
6398 Add a lot of export functions for gst-python
6399 * win32/vs6/libgstinterfaces.dsp:
6400 Add a missing include folder in the project configuration
6402 2006-03-23 Wim Taymans <wim@fluendo.com>
6404 * gst-libs/gst/audio/gstbaseaudiosrc.c:
6405 (gst_base_audio_src_get_time), (gst_base_audio_src_create),
6406 (gst_base_audio_src_change_state):
6407 Fix audio sources, forgot to make the ringbuffer
6410 2006-03-23 Wim Taymans <wim@fluendo.com>
6412 * gst-libs/gst/audio/gstbaseaudiosrc.c:
6413 (gst_base_audio_src_get_time), (gst_base_audio_src_create),
6414 (gst_base_audio_src_change_state):
6415 unparent instead of unref the ringbuffer.
6417 2006-03-23 Wim Taymans <wim@fluendo.com>
6419 * gst-libs/gst/audio/gstbaseaudiosink.c:
6420 (gst_base_audio_sink_class_init), (gst_base_audio_sink_async_play),
6421 (gst_base_audio_sink_do_play), (gst_base_audio_sink_change_state):
6422 Implement new async_play vmethod to start slaving and allow
6423 playback start in case of async PLAY state changes.
6425 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
6426 Enable QoS with new method in base class.
6428 2006-03-23 Wim Taymans <wim@fluendo.com>
6430 Patch by: Julien MOUTTE <julien at moutte dot net>
6432 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_query),
6433 (gst_video_test_src_do_seek), (gst_video_test_src_create):
6434 Partially handle 0 framerate, only EOS after the first frame
6437 2006-03-23 Wim Taymans <wim@fluendo.com>
6439 Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
6441 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
6442 (gst_riff_create_video_template_caps):
6443 * gst/ffmpegcolorspace/avcodec.h:
6444 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
6445 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
6446 (gst_ffmpegcsp_avpicture_fill):
6447 * gst/ffmpegcolorspace/imgconvert.c:
6448 Patch for support of YVU9 AVI files (#334822)
6450 2006-03-22 Edward Hervey <edward@fluendo.com>
6452 * docs/design/design-decodebin.txt:
6453 Added design document for new decodebin
6454 (Target Caps): text/x-pango-markup is also a default target caps.
6456 2006-03-22 Wim Taymans <wim@fluendo.com>
6458 * gst-libs/gst/audio/gstbaseaudiosink.c:
6459 (gst_base_audio_sink_dispose):
6460 Since we _parent the ringbuffer, we also need to
6461 _unparent instead of a plain _unref.
6463 2006-03-22 Wim Taymans <wim@fluendo.com>
6465 * tests/examples/seek/seek.c: (end_scrub), (do_seek), (seek_cb),
6466 (stop_seek), (scrub_toggle_cb), (main):
6469 2006-03-21 Tim-Philipp Müller <tim at centricular dot net>
6471 * ext/ogg/gstoggparse.c: (gst_ogg_parse_find_stream),
6472 (gst_ogg_parse_chain):
6473 Fix very inefficient usage of linked lists (#335365).
6475 2006-03-21 Edward Hervey <edward@fluendo.com>
6477 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
6478 * gst/playback/gstplaybin.c: (handoff):
6479 * gst/playback/gststreamselector.c:
6480 (gst_stream_selector_set_property):
6481 gcc 4.1 unreferenced pointer fixes.
6482 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
6483 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
6484 gst_buffer_ref() now takes a GstBuffer*.
6486 2006-03-20 Julien MOUTTE <julien@moutte.net>
6488 * sys/xvimage/xvimagesink.c:
6489 (gst_xvimagesink_get_format_from_caps): Fix a memleak reported
6492 2006-03-19 Tim-Philipp Müller <tim at centricular dot net>
6494 * gst/typefind/gsttypefindfunctions.c: (id3v2_type_find),
6495 (id3v1_type_find), (apetag_type_find), (plugin_init):
6496 Can't do tag preferences via probability, as tags would then
6497 lose against types that are recognised with MAXIMUM probability
6498 (like .wav); so let all tag typefinders return MAXIMUM themselves
6499 and order them via the rank. Split ID3v1 and ID3v2 typefinders so
6500 that we can prefer APE to ID3v1 (fixes #335028).
6502 2006-03-17 Wim Taymans <wim@fluendo.com>
6504 * gst-libs/gst/audio/gstbaseaudiosink.c:
6505 (gst_base_audio_sink_change_state):
6506 * gst-libs/gst/audio/gstringbuffer.c: (wait_segment),
6507 (gst_ring_buffer_may_start):
6508 * gst-libs/gst/audio/gstringbuffer.h:
6509 Only start playback if we are playing.
6512 2006-03-17 Jan Schmidt <thaytan@mad.scientist.com>
6514 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
6515 * win32/common/config.h:
6516 Revert accidental commits to these files.
6518 2006-03-16 Tim-Philipp Müller <tim at centricular dot net>
6520 Patch by: Michal Benes <michal dot benes at xeris dot cz>
6522 * tests/Makefile.am:
6523 Don't try to build tests in tests/icles if we
6524 don't have X (#323852)
6526 2006-03-16 Tim-Philipp Müller <tim at centricular dot net>
6528 * gst-libs/gst/tag/gstid3tag.c:
6529 Add TXXX frame identifiers for replaygain stuff as used
6530 by some taggers (see #323721).
6532 2006-03-16 Jan Schmidt <thaytan@mad.scientist.com>
6534 * gst/playback/gststreamselector.c:
6535 (gst_stream_selector_set_property),
6536 (gst_stream_selector_bufferalloc):
6537 Preserve the existing buggy streamselector behaviour by performing
6538 a fallback buffer allocation when downstream isn't linked yet.
6539 This should really be fixed in playbin by blocking pads until it's
6541 Also, use gst_pad_alloc_buffer instead of
6542 gst_pad_alloc_buffer_and_set.
6544 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
6546 * gst-libs/gst/tag/gstid3tag.c:
6547 Don't crash on unknown ID3v2 TXXX frames.
6549 2006-03-15 Jan Schmidt <thaytan@mad.scientist.com>
6551 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise):
6552 Chain up to the parent finalize method.
6553 Add 32-bit sample size to the template caps.
6555 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
6556 (gst_riff_create_video_template_caps):
6557 Add the fourcc that the VMWare codec uses.
6559 * gst/playback/gststreamselector.c:
6560 (gst_stream_selector_set_property),
6561 (gst_stream_selector_bufferalloc),
6562 (gst_stream_selector_request_new_pad):
6563 For the active pad, forward buffer-alloc requests, otherwise
6564 return GST_FLOW_NOT_LINKED. This also prevents xvimagesink
6565 having to memcpy every frame when used by playbin.
6567 * gst/tcp/gstmultifdsink.c:
6568 (gst_multi_fd_sink_handle_client_write):
6569 Get negotiated caps from the sink pad, rather than the sink
6572 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
6574 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
6576 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_pop_callbacks):
6577 Don't forget to set src->callbacks_pushed to FALSE again when
6578 popping them, otherwise re-activation in a different mode won't
6581 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
6583 Patch by: Sebastien Moutte <sebastien moutte net>
6585 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ff_vid_caps_new),
6586 (gst_ff_aud_caps_new), (gst_ffmpeg_pixfmt_to_caps),
6587 (gst_ffmpeg_smpfmt_to_caps):
6588 Replace __VA_ARGS__ caps creation macros with varargs functions.
6589 Makes things compile on MSVC (#320765), looks nicer, and we can
6590 tell the compiler to check for the NULL terminator.
6592 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
6594 Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
6596 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6597 Make sure the buffer we copy into is really always big
6598 enough, this time for real (#333488).
6600 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
6602 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6603 Add support for 24bpp DIB (#305279).
6605 2006-03-14 Wim Taymans <wim@fluendo.com>
6607 * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_init):
6608 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
6609 * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcsp_init):
6610 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
6611 (gst_video_scale_init), (gst_video_scale_src_event):
6612 Re-enable QoS after the release.
6613 Rework videoscale to use the base class src_event handler.
6615 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
6620 === release 0.10.5 ===
6622 2006-03-13 Thomas Vander Stichele <thomas at apestaart dot org>
6625 releasing 0.10.5, "Net"
6627 2006-03-13 Tim-Philipp Müller <tim at centricular dot net>
6629 * docs/plugins/Makefile.am:
6630 Part of previous cdparanoiasrc docs fixes, forgot to commit.
6632 2006-03-12 Tim-Philipp Müller <tim at centricular dot net>
6634 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6635 * docs/plugins/gst-plugins-base-plugins-sections.txt:
6636 * docs/plugins/gst-plugins-base-plugins.hierarchy:
6637 Add cdparanoiasrc to docs.
6639 * gst-libs/gst/cdda/gstcddabasesrc.c:
6640 More GstCddaBaseSrc docs.
6642 2006-03-12 Tim-Philipp Müller <tim at centricular dot net>
6644 * docs/libs/gst-plugins-base-libs-sections.txt:
6645 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_user_tag):
6646 * gst-libs/gst/tag/tag.h:
6647 API: libgsttag: new method gst_tag_from_id3_user_tag().
6649 2006-03-11 Tim-Philipp Müller <tim at centricular dot net>
6651 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
6652 NULL-terminate array of mpeg4 video file extensions.
6653 Fixes crash on PPC (#334226).
6655 2006-03-11 Tim-Philipp Müller <tim at centricular dot net>
6657 * ext/gnomevfs/gstgnomevfssrc.c:
6658 (gst_gnome_vfs_src_check_get_range):
6659 gnome_vfs_uri_is_local() alone is not a good indicator
6660 whether we can operate in pull-mode with a specific URI,
6661 as it returns FALSE for file:// URIs that point to an
6662 NFS-mounted path. Be more conservative here: whitelist
6663 local files, blacklist http URIs and use the old
6664 mechanism for anything else (fixes #334216).
6666 2006-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
6671 === release 0.10.4 ===
6673 2006-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
6676 releasing 0.10.4, "Power"
6678 2006-03-10 Jan Schmidt <thaytan@mad.scientist.com>
6680 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
6681 Disable max-lateness by setting it to -1 for now, so that
6682 we can bed QoS stuff in thoroughly between now and the next
6685 2006-03-10 Tim-Philipp Müller <tim at centricular dot net>
6687 Patch by: Fabrizio Gennari
6689 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6690 Make sure we don't read beyond the palette buffer in case of
6691 broken or manipulated files (#333488)
6693 2006-03-10 Edward Hervey <edward@fluendo.com>
6695 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
6696 Fix for variable not initialized.
6698 2006-03-09 Wim Taymans <wim@fluendo.com>
6700 * ext/libvisual/visual.c: (gst_visual_get_type),
6701 (gst_visual_src_setcaps), (gst_vis_src_negotiate),
6705 * ext/theora/gsttheoradec.h:
6706 * ext/theora/theoradec.c: (gst_theora_dec_init),
6707 (gst_theora_dec_reset), (_theora_granule_time),
6708 (theora_dec_src_convert), (theora_dec_sink_convert),
6709 (theora_dec_src_query), (theora_dec_src_event),
6710 (theora_dec_sink_event), (theora_handle_comment_packet),
6711 (theora_handle_header_packet), (theora_dec_push),
6712 (theora_handle_data_packet), (theora_dec_chain),
6713 (theora_dec_change_state):
6716 2006-03-09 Wim Taymans <wim@fluendo.com>
6718 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
6719 (audiocast_register_listener), (gst_gnome_vfs_src_start):
6722 2006-03-09 Wim Taymans <wim@fluendo.com>
6724 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
6725 Don't try to activate NULL chains.
6727 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
6729 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
6730 Fix invalid memory access to region before peek'd data (#332964).
6732 2006-03-09 Wim Taymans <wim@fluendo.com>
6734 Patch by: Christophe Fergeau
6736 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
6737 * ext/pango/gsttextrender.c: (gst_text_render_init):
6738 * gst/adder/gstadder.c: (gst_adder_init):
6739 Don't leak padtemplates, closes #333510.
6741 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
6743 * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
6744 Fix invalid memory access: make sure string passed to
6745 regexec() is NUL-termianted.
6747 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
6749 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
6751 Refactor mpeg/audio typefinding to make it more maintainable
6752 and easier to fine-tune. Make probing into middle of the file
6753 work properly (fixes #333900, also see #152688).
6755 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
6757 * gst/typefind/gsttypefindfunctions.c:
6758 (utf8_type_find_have_valid_utf8_at_offset):
6759 Remove part from previous commit that was bogus:
6760 g_utf8_validate() does in fact not accept embedded
6761 zeroes, so we don't need to check for those (thanks
6762 to Mike for the hint).
6764 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
6766 * gst/typefind/gsttypefindfunctions.c:
6767 (utf8_type_find_count_embedded_zeroes),
6768 (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
6769 Make plain/text typefinder more conservative: firstly, check
6770 for embedded zeroes, which are perfectly valid UTF-8 characters,
6771 but also a fairly good sign that something is not a plain text
6772 file; secondly, probe into the middle of the file if possible.
6773 If we can't probe into the middle, limit the probability value
6774 to be returned to TYPE_FIND_POSSIBLE (see #333900).
6776 2006-03-08 Michael Smith <msmith@fluendo.com>
6778 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
6779 Make typefind function name for mpeg4 video unique.
6781 2006-03-08 Wim Taymans <wim@fluendo.com>
6783 * ext/libvisual/visual.c: (gst_visual_init),
6784 (gst_visual_clear_actors), (gst_visual_dispose),
6785 (gst_visual_reset), (gst_visual_src_setcaps),
6786 (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
6787 (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
6788 (gst_visual_chain), (gst_visual_change_state):
6789 Cleanups, post nice errors.
6790 Handle sink and src events.
6791 Implement simple QoS.
6793 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
6794 Use new basesink methods to configure max-lateness.
6797 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6798 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
6799 Debug statement cleanups.
6801 * gst/volume/gstvolume.c: (gst_volume_class_init):
6804 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
6806 * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
6807 (gst_text_overlay_init), (gst_text_overlay_set_property),
6808 (gst_text_overlay_get_property):
6809 Revert API/ABI break from March 1. Keep 'halign' and 'valign'
6810 as string type properties, but mark them deprecated. Add
6811 'halignment' and 'valignment' properties that use enums
6814 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
6816 Patch by: Fabrizio Gennari
6818 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6819 Allow palettes with less than 256 colours in AVI files
6822 2006-03-07 Julien MOUTTE <julien@moutte.net>
6824 * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
6825 (gst_text_overlay_video_event): Fix wrong EOS handling on text
6826 pad. We were releasing the queued text buffer when we should keep
6827 it until video pad gets EOS or discard the text buffer because it's
6828 too old. That was eating the last subtitle buffer. Add some more
6831 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
6833 * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
6834 (gst_text_overlay_video_chain):
6835 Fix invalid memory access (we can't access a buffer after it's been
6836 pushed downstream without taking a reference); fix memory leak (if
6837 there's no text to render, bail out before allocating stuff).
6839 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
6841 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
6842 (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
6843 * ext/pango/gsttextoverlay.h:
6844 If input is plain text, escape it before passing it to
6845 pango_layout_set_markup().
6847 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
6849 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
6850 Don't ignore flow return from gst_pad_push().
6852 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
6854 Patch by: Fabrizio Gennari
6856 * ext/libvisual/visual.c: (gst_visual_getcaps),
6857 (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
6858 * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
6859 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
6860 (gst_vorbisenc_convert_sink):
6861 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
6862 (gst_audio_duration_from_pad_buffer):
6863 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
6864 (gst_audio_filter_chain):
6865 * gst-libs/gst/rtp/gstbasertpdepayload.c:
6866 (gst_base_rtp_depayload_setcaps):
6867 * gst-libs/gst/video/video.c: (gst_video_frame_rate),
6868 (gst_video_get_size):
6869 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
6870 Don't leak references returned by gst_pad_get_parent()
6873 2006-03-06 Stefan Kost <ensonic@users.sf.net>
6875 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
6876 change location param details
6877 * gst/volume/gstvolume.c: (plugin_init):
6878 correct plugin description
6880 2006-03-06 Tim-Philipp Müller <tim at centricular dot net>
6882 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
6883 (gst_gnome_vfs_src_check_get_range):
6884 Override GstBaseSrc::check_get_range() in order to avoid opening
6885 the resource just to check whether we can operate in pull-mode or
6886 not - we can predict that pretty well from the URI alone. Should
6887 fix problems with last.fm (#331690). (Requires latest core CVS).
6889 2006-03-06 Wim Taymans <wim@fluendo.com>
6891 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
6892 (gst_video_sink_class_init):
6893 Throw away frames that are later than 20 ms.
6895 2006-03-06 Tim-Philipp Müller <tim at centricular dot net>
6897 Patch by: Fabrizio Gennari
6899 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
6900 Set depth on WMA caps (#333545)
6902 2006-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
6904 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
6905 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
6906 put Theora BOS pages before others. This hardcodes
6907 the Ogg/Theora I profile, but hey.
6909 2006-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
6912 updated with some examples
6913 * ext/theora/theoraenc.c: (granulepos_to_timestamp),
6914 (granulepos_add), (theora_buffer_from_packet):
6915 * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
6916 (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
6917 (gst_vorbisenc_chain):
6918 implement strategy from ext/ogg/README
6919 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
6920 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
6921 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
6922 (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
6923 Fix muxer so that oggz-validate is happy with all streams;
6924 except for no eos mark, and the BOS page ordering
6925 * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
6926 (check_buffer_granulepos):
6927 * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
6928 update tests to check for OFFSET being set as requested
6929 fixed type of granulepos, it's not a ClockTime
6931 2006-03-05 Julien MOUTTE <julien@moutte.net>
6933 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
6934 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
6935 Check that the xvimage we are creating has a correct size
6936 before returning it. (#314897)
6938 2006-03-05 Tim-Philipp Müller <tim at centricular dot net>
6940 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
6941 Give id3 and ape tag typefinders a rank slightly higher
6942 than PRIMARY to ensure they're always run before any of
6943 the other typefinders (in particular wav and mp3) (#324186).
6945 2006-03-05 Tim-Philipp Müller <tim at centricular dot net>
6947 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6948 Add support for '3IVD' fourcc (#333403).
6950 2006-03-04 Tim-Philipp Müller <tim at centricular dot net>
6953 Bump requirements to GStreamer CVS for the new error enum.
6955 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
6956 Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
6957 space left on the device (fixes #333352).
6959 2006-03-04 Sebastien Moutte <sebastien@moutte.net>
6962 add a project file for libgstvolume
6963 update the workspace
6965 2006-03-03 Thomas Vander Stichele <thomas at apestaart dot org>
6967 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
6968 * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
6970 Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
6971 Set IN_CAPS on header buffers
6973 2006-03-02 Wim Taymans <wim@fluendo.com>
6975 * docs/plugins/Makefile.am:
6976 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6977 * docs/plugins/gst-plugins-base-plugins-sections.txt:
6978 Add audioresample to docs.
6980 * gst/audioconvert/gstaudioconvert.c:
6983 * gst/audioresample/gstaudioresample.c:
6984 (gst_audioresample_base_init), (gst_audioresample_class_init),
6985 (gst_audioresample_init), (gst_audioresample_dispose),
6986 (audioresample_get_unit_size), (audioresample_transform_caps),
6987 (resample_set_state_from_caps), (audioresample_transform_size),
6988 (audioresample_set_caps), (audioresample_event),
6989 (audioresample_do_output), (audioresample_transform),
6990 (audioresample_pushthrough), (gst_audioresample_set_property),
6991 (gst_audioresample_get_property), (plugin_init):
6992 * gst/audioresample/gstaudioresample.h:
6994 Small code cleanups.
6996 2006-03-02 Wim Taymans <wim@fluendo.com>
6998 * docs/plugins/Makefile.am:
6999 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7000 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7001 Added videoscale to docs.
7003 * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
7004 (gst_video_rate_swap_prev), (gst_video_rate_event),
7005 (gst_video_rate_chain):
7008 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
7009 (gst_video_scale_init), (gst_video_scale_prepare_size),
7010 (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
7011 (gst_video_scale_fixate_caps), (gst_video_scale_transform):
7012 * gst/videoscale/gstvideoscale.h:
7013 Added docs, examples.
7015 Post errors instead of g_warning.
7017 2006-03-02 Wim Taymans <wim@fluendo.com>
7019 * docs/libs/gst-plugins-base-libs-docs.sgml:
7020 * docs/libs/gst-plugins-base-libs-sections.txt:
7021 * docs/libs/gst-plugins-base-libs.types:
7022 * docs/plugins/Makefile.am:
7023 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7024 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7025 Added some more docs to libs and plugins.
7027 * gst-libs/gst/audio/gstringbuffer.c:
7028 (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
7029 * gst-libs/gst/audio/gstringbuffer.h:
7030 Document ringbuffer some more.
7032 * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
7033 (gst_video_rate_setcaps), (gst_video_rate_reset),
7034 (gst_video_rate_init), (gst_video_rate_flush_prev),
7035 (gst_video_rate_swap_prev), (gst_video_rate_event),
7036 (gst_video_rate_chain), (gst_video_rate_change_state):
7037 * gst/videorate/gstvideorate.h:
7038 Fix videorate to use segments.
7039 Make it work with 0/1 framerates (closes #331903)
7040 Handle EOS correctly.
7043 2006-03-02 Tim-Philipp Müller <tim at centricular dot net>
7045 * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
7046 (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
7047 (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
7048 In state change function, first chain up to parent class,
7049 then handle downwards state change stuff. Remove some
7050 commented out cruft from 0.8 code.
7052 2006-03-02 Tim-Philipp Müller <tim at centricular dot net>
7054 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
7055 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
7056 (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
7057 (gst_ogm_parse_chain):
7058 Don't remove/re-add source pad if the new caps are the same as
7059 the old caps anyway (#333042). When removing source pad, don't
7060 unref it afterwards - we didn't ref it when adding. Sprinkle some
7061 GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
7062 after using gst_pad_get_parent(). Return downstream flow return
7063 value in chain function.
7065 2006-03-02 Wim Taymans <wim@fluendo.com>
7067 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7068 * docs/plugins/gst-plugins-base-plugins.args:
7069 * docs/plugins/gst-plugins-base-plugins.hierarchy:
7070 * docs/plugins/gst-plugins-base-plugins.interfaces:
7071 * docs/plugins/gst-plugins-base-plugins.signals:
7072 Fix hierarchy, added some more elements to the docs.
7074 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7075 (gst_ffmpegcsp_get_type):
7076 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
7077 Fix docs for ffmpegcolorspace.
7079 2006-03-01 Tim-Philipp Müller <tim at centricular dot net>
7081 * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
7082 (apetag_type_find), (ape_type_find), (plugin_init):
7083 Some typefinding fine-tuning:
7084 - rank ID3/APE tags in order of preference via probabilities, so that
7085 ID3v2 > APEv2 > APEv1 > ID3v1.
7086 - three or four bytes don't really justify MAXIMUM probability,
7087 change those to 'very likely' (musepack and monkeysaudio).
7089 2006-03-01 Wim Taymans <wim@fluendo.com>
7091 * docs/plugins/Makefile.am:
7092 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7093 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7094 * ext/alsa/gstalsamixer.c:
7095 * ext/alsa/gstalsamixer.h:
7096 * ext/alsa/gstalsamixerelement.c:
7097 (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
7098 * ext/alsa/gstalsamixerelement.h:
7099 * ext/alsa/gstalsasink.c:
7100 * ext/alsa/gstalsasink.h:
7101 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
7103 * ext/alsa/gstalsasrc.h:
7105 Small code cleanups.
7107 2006-03-01 Wim Taymans <wim@fluendo.com>
7109 * ext/theora/Makefile.am:
7110 Dist new header too,
7112 2006-03-01 Wim Taymans <wim@fluendo.com>
7114 * docs/plugins/Makefile.am:
7115 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7116 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7117 * ext/gnomevfs/gstgnomevfssink.h:
7118 * ext/gnomevfs/gstgnomevfssrc.h:
7119 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
7120 * ext/vorbis/vorbisdec.h:
7121 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
7122 * ext/vorbis/vorbisenc.h:
7123 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
7124 (vorbis_parse_chain), (vorbis_parse_change_state):
7125 * ext/vorbis/vorbisparse.h:
7126 * gst/audioconvert/gstaudioconvert.h:
7127 * gst/tcp/gsttcpserversink.h:
7128 * gst/videotestsrc/gstvideotestsrc.c:
7129 * gst/videotestsrc/gstvideotestsrc.h:
7130 * gst/volume/gstvolume.c:
7131 * gst/volume/gstvolume.h:
7133 Added docs for vorbisdec and vorbisparse.
7136 2006-03-01 Wim Taymans <wim@fluendo.com>
7138 * docs/plugins/Makefile.am:
7139 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7140 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7141 * ext/pango/gstclockoverlay.h:
7142 * ext/pango/gsttextoverlay.h:
7143 * ext/pango/gsttextrender.h:
7144 * ext/pango/gsttimeoverlay.h:
7145 * ext/theora/gsttheoradec.h:
7146 * ext/theora/gsttheoraenc.h:
7147 * ext/theora/theoradec.c:
7148 * ext/theora/theoraenc.c:
7149 * gst/audioconvert/gstaudioconvert.h:
7150 * gst/audiotestsrc/gstaudiotestsrc.h:
7151 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
7152 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
7153 * gst/tcp/gstmultifdsink.h:
7154 Updated/added documentation.
7156 * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
7157 (gst_text_overlay_halign_get_type),
7158 (gst_text_overlay_wrap_mode_get_type),
7159 (gst_text_overlay_base_init), (gst_text_overlay_class_init),
7160 (gst_text_overlay_init), (gst_text_overlay_set_property),
7161 (gst_text_overlay_get_property):
7162 Fix up properties to be enums instead of string to make bindings,
7163 introspection and automatic GUI creation possible.
7164 Add getters for the properties.
7166 2006-02-28 Sebastien Moutte <sebastien@moutte.net>
7168 * gst/audiotestsrc/gstaudiotestsrc.c:
7169 added defines of M_PI and M_PI_2
7170 * gst/ffmpegcolorspace/avcodec.h:
7171 removed #include "stdint.h" for win32 as _stdint.h is
7172 autogenerated to win32/common
7173 * win32/common/libgstaudio.def:
7174 * win32/common/libgsttag.def:
7177 some project files bugs corrected
7179 project files are reset to the default vs7 configuration
7180 (they link to msvcr71.dll using default optimizations)
7182 2006-02-28 Wim Taymans <wim@fluendo.com>
7184 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
7187 2006-02-28 Edward Hervey <edward@fluendo.com>
7189 * ext/alsa/gstalsasrc.c:
7190 Set proper class on the ElementDetails:
7191 Source/Audio instead of Src/Audio/
7193 2006-02-28 Edward Hervey <edward@fluendo.com>
7195 * gst/videoscale/vs_scanline.c:
7196 (vs_scanline_resample_nearest_RGBA):
7197 Revert optimization in videoscale. It should go in liboil and have
7198 an appropriate liboil function.
7200 2006-02-28 Wim Taymans <wim@fluendo.com>
7202 * gst-libs/gst/audio/gstbaseaudiosink.c:
7203 (gst_base_audio_sink_provide_clock):
7204 Don't try to provide a clock in the NULL state.
7206 2006-02-28 Wim Taymans <wim@fluendo.com>
7208 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
7209 (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
7210 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
7211 (gst_ogg_demux_deactivate_current_chain),
7212 (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
7213 (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
7214 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
7215 (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
7216 Use GstSegment infrastructure to remove duplicated code
7217 and handle more seek cases correctly.
7219 2006-02-28 Wim Taymans <wim@fluendo.com>
7221 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7222 (gst_ffmpegcsp_transform):
7223 Don't ignore return code from ffmpeg convert function.
7225 * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
7226 Split out some long statements to ease debugging.
7228 2006-02-27 Jan Schmidt <thaytan@mad.scientist.com>
7230 * ext/libvisual/visual.c: (gst_visual_init),
7231 (gst_vis_src_negotiate), (get_buffer), (plugin_init):
7232 Don't use gst_pad_use_fixed_caps, because it prevents downstream from
7233 being able to renegotiate the size. Instead, use the negotiation
7234 algorithm from the goom plugin to pick an initial output caps.
7236 Also, allow theoretical libvisual plugins that might support non-GL
7237 output even if they also do GL.
7239 2006-02-26 Julien MOUTTE <julien@moutte.net>
7241 * ext/libvisual/visual.c: (gst_visual_init),
7242 (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
7243 (plugin_init): Load only non GL plugins. Fix some memleaks and
7244 possible negotiation issues.
7246 2006-02-25 Julien MOUTTE <julien@moutte.net>
7248 * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
7250 2006-02-24 Michael Smith <msmith@fluendo.com>
7252 * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
7253 (cmml_type_find), (plugin_init):
7254 Fix CMML type find function to not require a specific minor version
7257 Add an MPEG4 video elementary stream typefind function.
7259 2006-02-04 Michael Smith <msmith@fluendo.com>
7261 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
7262 (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
7263 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
7264 (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
7265 (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
7266 (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
7267 Annodex support in ogg demuxer. Doesn't do very much without the
7268 other annodex patches (to come).
7270 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7272 Patch by: Fabrizio Gennari <fabrizio dot get at tiscali dot it>
7274 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7275 Pick up palette for MS video v1 (#327028)
7277 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7279 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7280 (gst_ffmpegcsp_caps_remove_format_info),
7281 (gst_ffmpegcsp_get_unit_size):
7282 The 'palette_data' field from incoming RGB caps shouldn't be
7283 proxied on outgoing YUV caps; also, restrict unit size
7284 adjustment in case of paletted data only to the unit that
7285 actually has a palette. Fixes #330711.
7287 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7289 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7290 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
7291 (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
7292 (gst_ffmpegcsp_get_unit_size):
7293 Plug some memory leaks.
7295 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7297 * sys/ximage/Makefile.am:
7298 * sys/xvimage/Makefile.am:
7299 Add some _CFLAGS and _LIBS that seem to be missing
7300 and/or required for Cygwin (see #317048).
7302 2006-02-22 Wim Taymans <wim@fluendo.com>
7304 * ext/alsa/gstalsasrc.c:
7305 Fix description as pointed out by caugier.
7307 2006-02-22 Tommi Myöhänen <ext-tommi do myohanen at nokia dot com>
7309 Reviewed by : Edward Hervey <edward@fluendo.com>
7311 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
7313 Better 3gp typefinding (#331526).
7315 2006-02-21 Tim-Philipp Müller <tim at centricular dot net>
7317 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
7318 Don't send EOS event here, the base class will send one for us.
7320 * gst/playback/gstplaybasebin.c: (prepare_output):
7321 Subpictures without video stream aren't allowed either.
7323 * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
7324 Fix debug statement copy'n'paste-o.
7326 2006-02-21 Tim-Philipp Müller <tim at centricular dot net>
7328 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
7329 Fix issues with mixer keeping state when muting/unmuting
7330 and when changing the volume whilst muted (see #331763
7333 2006-02-20 Tim-Philipp Müller <tim at centricular dot net>
7335 * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
7336 (parse_subrip), (gst_sub_parse_format_autodetect):
7337 Set right caps given that we send escaped text. Also,
7338 honour <i></i>, <b></b> and <u></u> markers that can be found
7339 in .srt files (fixes #310202).
7341 2006-02-20 Tim-Philipp Müller <tim at centricular dot net>
7343 * gst-libs/gst/audio/mixerutils.c:
7344 (element_factory_rank_compare_func):
7345 Make order in which elements are tried more determinable.
7347 2006-02-20 Julien MOUTTE <julien@moutte.net>
7349 * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
7350 (remove_element_chain), (cleanup_decodebin),
7351 (gst_decode_bin_change_state): Make decodebin reusable by
7352 fixing remove_element_chain first and then introduce a
7353 cleaner in state change to ->NULL. (Closes #331678)
7355 2006-02-19 Wim Taymans <wim@fluendo.com>
7357 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
7358 use 0666 mask when creating files so umask gets applied
7359 correctly. Fixes #331295.
7361 2006-02-19 Tim-Philipp Müller <tim at centricular dot net>
7363 * gst/subparse/Makefile.am:
7364 * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
7365 (gst_ssa_parse_dispose), (gst_ssa_parse_init),
7366 (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
7367 (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
7368 (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
7369 (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
7370 * gst/subparse/gstssaparse.h:
7371 * gst/subparse/gstsubparse.c: (plugin_init):
7372 Add very basic parser for SSA subtitle streams (as often
7373 found in matroska files).
7375 2006-02-19 Tim-Philipp Müller <tim at centricular dot net>
7377 * gst/playback/gstdecodebin.c: (mimetype_is_raw):
7378 That should be text/x-pango-markup, not text/x-pango-layout.
7380 2006-02-19 Julien MOUTTE <julien@moutte.net>
7382 * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
7385 2006-02-19 Julien MOUTTE <julien@moutte.net>
7387 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
7388 (gst_text_overlay_finalize), (gst_text_overlay_init),
7389 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
7390 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
7391 (gst_text_overlay_text_event), (gst_text_overlay_video_event),
7392 (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
7393 (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
7394 Fix state change deadlock.
7396 2006-02-19 Julien MOUTTE <julien@moutte.net>
7398 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
7399 (gst_text_overlay_finalize), (gst_text_overlay_init),
7400 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
7401 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
7402 (gst_text_overlay_text_event), (gst_text_overlay_video_event),
7403 (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
7404 (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
7405 * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
7406 and subtitles files.
7408 2006-02-19 Julien MOUTTE <julien@moutte.net>
7410 * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
7411 should be considered as raw.
7413 2006-02-19 Julien MOUTTE <julien@moutte.net>
7415 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
7417 * gst/playback/gststreaminfo.h: Introduce language informations.
7419 2006-02-18 Jan Schmidt <thaytan@mad.scientist.com>
7421 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
7422 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
7423 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
7424 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
7425 Set shared memory segments to be deleted as soon as we have attached,
7426 that way they get cleaned up automatically if we crash.
7428 2006-02-18 Julien MOUTTE <julien@moutte.net>
7430 * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text):
7431 * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
7432 functions are called with lock held.
7434 2006-02-18 Julien MOUTTE <julien@moutte.net>
7436 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
7437 (gst_text_overlay_finalize), (gst_text_overlay_init),
7438 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
7439 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
7440 (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
7441 (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
7442 (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
7443 (gst_text_overlay_change_state): Refactoring of textoverlay
7444 without collectpads. This now supports sparse subtitles coming
7445 from a demuxer instead of a sub file. Seeking is still broken
7446 though. Need to discuss with wtay some more on how to handle
7448 * ext/pango/gsttextoverlay.h:
7449 * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
7450 subtitles coming from the demuxer.
7452 2006-02-17 Wim Taymans <wim@fluendo.com>
7454 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
7455 (gst_vorbisenc_convert_sink):
7456 Use some more scaling functions.
7458 2006-02-17 Tim-Philipp Müller <tim at centricular dot net>
7460 * ext/cdparanoia/gstcdparanoiasrc.c:
7461 (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
7462 (gst_cd_paranoia_paranoia_callback),
7463 (gst_cd_paranoia_src_signal_is_being_watched),
7464 (gst_cd_paranoia_src_read_sector):
7465 * ext/cdparanoia/gstcdparanoiasrc.h:
7466 Add back 'transport-error' and 'uncorrected-error' signals and
7467 make them actually be fired when bad stuff happens (#319340).
7469 2006-02-17 Wim Taymans <wim@fluendo.com>
7471 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
7472 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
7473 (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
7474 (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
7475 (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
7476 (gst_ring_buffer_pause), (gst_ring_buffer_stop),
7477 (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
7478 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
7479 (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
7480 (gst_ring_buffer_clear):
7482 Added some G_LIKELY.
7484 2006-02-17 Wim Taymans <wim@fluendo.com>
7486 * gst-libs/gst/audio/TODO:
7489 * gst-libs/gst/audio/gstbaseaudiosink.c:
7490 (gst_base_audio_sink_get_offset):
7491 When trying to play samples ASAP and we don't have a
7492 previous sample, try to play at position 0 instead of
7493 an invalid position.
7495 2006-02-17 Wim Taymans <wim@fluendo.com>
7497 * ext/alsa/gstalsasink.c: (gst_alsasink_open),
7498 (gst_alsasink_reset):
7499 Also release lock when we get an error in _reset();
7500 fix an error message.
7502 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
7504 * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
7505 (gst_alsasink_init), (get_channel_free_structure),
7506 (caps_add_channel_configuration), (gst_alsasink_getcaps),
7507 (gst_alsasink_close):
7508 * ext/alsa/gstalsasink.h:
7509 Add support for more than 2 channels (#326720).
7511 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
7513 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
7514 Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
7515 with 4 or 6 channels, assume a default channel layout to make things
7516 work (not sure there's anything else we can do in those cases).
7518 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
7520 * gst-libs/gst/audio/multichannel.c:
7523 * gst-libs/gst/riff/Makefile.am:
7524 * gst-libs/gst/riff/riff-ids.h:
7525 * gst-libs/gst/riff/riff-media.c:
7526 (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
7527 Add support for WAVEFORMATEX, eg. PCM audio with more than two
7528 channels and a channel layout map.
7530 2006-02-16 Mathieu Garcia <b0nk at free dot fr>
7532 Reviewed by Edward Hervey <edward@fluendo.com>
7534 * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA):
7535 C-level optimization of the RGBA nearest neighbour function.
7536 Eventually this might end up in liboil with vectorized versions.
7538 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
7540 * gst-libs/gst/audio/multichannel.c:
7541 (gst_audio_get_channel_positions):
7542 When we have more than 2 channels, but no channel layout is
7543 specified in the caps, return some default channel layout
7544 to the caller and warn about about a possibly buggy element
7545 (could be buggy filtercaps as well of course) (#317038).
7547 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
7549 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
7550 Add gst-libs/gst/cdda to list of lib search paths.
7552 2006-02-15 Andy Wingo <wingo@pobox.com>
7554 * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
7555 timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
7556 to the Lord Jesus that I do not have to touch the ogg muxer ever
7559 2006-02-15 Edward Hervey <edward@fluendo.com>
7561 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
7562 quicktime movie files can also contain 'uuid' atoms.
7564 2006-02-14 Tim-Philipp Müller <tim at centricular dot net>
7566 * gst/audioconvert/plugin.c: (plugin_init):
7567 Register the GstAudioChannelPosition enum type with the type
7568 system in the plugin_init function, so that it is known before
7569 any element actually makes use of multi-channel stuff. This is
7570 required for example if one wants to be able to deserialise/use
7571 a caps string with channel positions before any pipeline has
7572 been setup and started, like with gst-launch.
7574 2006-02-14 Wim Taymans <wim@fluendo.com>
7576 * gst-libs/gst/audio/gstringbuffer.c:
7577 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
7578 (gst_ring_buffer_samples_done), (wait_segment),
7579 (gst_ring_buffer_commit), (gst_ring_buffer_clear):
7580 Add some compiler G_(UN_)LIKELY help.
7581 SIGNAL the ringbuffer waiters when going to PAUSED as well to
7582 make sure they can exit their functions. Should fix #330748
7584 2006-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
7589 * win32/common/_stdint.h:
7590 Windows does not have long long; copy the generated _stdint.h
7591 * win32/common/interfaces-enumtypes.c:
7592 (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
7593 (gst_mixer_track_flags_get_type),
7594 (gst_tuner_channel_flags_get_type):
7595 * win32/common/multichannel-enumtypes.c:
7596 (gst_audio_channel_position_get_type):
7599 2006-02-13 Wim Taymans <wim@fluendo.com>
7601 * gst-libs/gst/audio/gstbaseaudiosink.c:
7602 (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
7603 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
7604 Always sync on first sample we receive when starting.
7606 2006-02-13 Wim Taymans <wim@fluendo.com>
7608 * gst/playback/gstplaybin.c: (gen_vis_element):
7609 Update vis bin docs.
7610 Move queue after tee so we don't queue video buffers but
7611 audio samples instead. Fixes problems where the video queue
7612 is filled and the audio queue empty.
7614 2006-02-13 Tim-Philipp Müller <tim at centricular dot net>
7616 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
7617 No need to push an EOS event here, GstBaseSrc will do that for us
7618 when we return FLOW_UNEXPECTED.
7620 2006-02-12 Wim Taymans <wim@fluendo.com>
7622 * gst-libs/gst/audio/gstbaseaudiosink.c:
7623 (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
7624 (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
7625 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
7626 Use scale functions when possible.
7628 Free clockid when after waiting for EOS.
7629 Use G_(UN_)LIKLY when it makes sense.
7630 Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
7632 2006-02-12 Edward Hervey <edward@fluendo.com>
7634 * gst/playback/gstplaybasebin.c: (prepare_output):
7635 Remove stray semi-colon (fixes #330888).
7637 2006-02-12 Jan Schmidt <thaytan@mad.scientist.com>
7639 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
7640 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
7641 Fix up the XShm call testing so that we catch errors, and don't
7642 cause new ones by attempting to detach from a segment we failed
7643 to attach to. Fixes #312439.
7645 2006-02-10 Edward Hervey <edward@fluendo.com>
7647 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7648 Added flv file typefind (video/x-flv).
7650 2006-02-10 Edward Hervey <edward@fluendo.com>
7652 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
7653 (gst_riff_create_video_template_caps):
7654 Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
7655 Also added the caps to the default set of riff video caps.
7657 2006-02-09 Andy Wingo <wingo@pobox.com>
7659 * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
7660 time and the end time of the last packet in the page.
7661 (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
7662 on the pages in our queue, set the duration as well. Reflow a
7664 (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
7665 Fixes bad muxing order.
7667 2006-02-09 Thomas Vander Stichele <thomas at apestaart dot org>
7669 * gst-libs/gst/rtp/gstbasertppayload.c:
7670 (gst_basertppayload_setcaps), (gst_basertppayload_push):
7671 update seqnum before setting it on the packet; this makes sure
7672 that the timestamp and seqnum properties match after pushing
7675 2006-02-09 Andy Wingo <wingo@pobox.com>
7677 * gst-libs/gst/audio/gstringbuffer.c
7678 (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
7679 overflow after 13.5 hours of recording. Kapow!
7681 * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
7682 the buffer size -- we don't care about underrun/overrun reporting
7683 right now, just need to return a useful value.
7685 2006-02-09 Jan Schmidt <thaytan@mad.scientist.com>
7690 === release 0.10.3 ===
7692 2006-02-09 Jan Schmidt <thaytan@mad.scientist.com>
7695 releasing 0.10.3, "Under Pressure"
7697 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
7700 Drat. Bump libtool version number for new API.
7701 Prelease 0.10.2.3 (of 0.10.3)
7703 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
7706 * win32/common/config.h:
7707 0.10.2.2 prerelease (of 0.10.3).
7709 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
7711 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
7712 Revert Andy's newsegment change pending a more correct
7715 2006-02-08 Thomas Vander Stichele <thomas at apestaart dot org>
7717 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
7718 (qt_type_find), (plugin_init):
7719 detect more files as 3gp
7720 group and reorder the iso file formats
7722 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
7724 * ext/vorbis/vorbis.c: (plugin_init):
7725 Register musicbrainz tags, so apps don't have to.
7727 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
7729 * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
7730 (gst_tag_to_vorbis_tag):
7731 Make sure we called gst_tag_register_musicbrainz_tags()
7732 before possibly mapping a vorbiscomment string from/to a
7735 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
7737 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
7738 In case we can't find the required number of consecutive
7739 mpeg audio frames to positively identify an MPEG audio
7740 stream, check if there's at least a valid mpeg audio
7741 frame right at offset 0 and if so suggest mpeg/audio
7742 caps with a very low probability (#153004).
7744 2006-02-07 Andy Wingo <wingo@pobox.com>
7746 * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
7747 a TIME segment if we get timestamped buffers. Requires recent
7748 fixes in core to work properly.
7750 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
7752 * gst/playback/gstplaybasebin.c: (prepare_output):
7753 Don't print the URI as part of the error message, it
7754 makes error dialogs look rather ugly, especially if
7755 the URI is very long or has characters in it that
7758 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
7760 * gst/playback/gstplaybasebin.c: (prepare_output):
7761 Error out if we have only text or subtitles, but nothing
7762 else. Also error out if we have subtitles but no video
7765 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
7767 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
7768 Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
7769 Post an error message on the bus when we encounter an
7770 error, which will hopefully be more meaningful than the
7771 'Internal Flow Error' message users get to see if we
7772 just return GST_FLOW_ERROR.
7774 2006-02-07 Andy Wingo <wingo@pobox.com>
7776 * configure.ac (GST_MAJORMINOR): Update core version req to
7777 0.10.2.2, for the collectpads API addition (#330244).
7779 2006-02-06 Tim-Philipp Müller <tim at centricular dot net>
7781 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
7782 Return FALSE from plugin_init() when GnomeVFS can't
7783 be initialised for some reason (#328423).
7785 2006-02-06 Julien MOUTTE <julien@moutte.net>
7787 * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event):
7788 Stick to seeking theory until i find the bug.
7789 * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
7791 2006-02-06 Jan Schmidt <thaytan@mad.scientist.com>
7793 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
7794 (theora_enc_finalize), (theora_enc_sink_setcaps),
7795 (theora_set_header_on_caps), (theora_enc_chain),
7796 (theora_enc_change_state):
7797 * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
7798 Make theoraenc and the tests leak free. Like, really.
7800 2006-02-06 Jan Schmidt <thaytan@mad.scientist.com>
7802 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
7803 (theora_enc_finalize), (theora_enc_sink_setcaps):
7804 Add a finalize method to ensure we clean up state even if
7805 someone omitted the state change back to NULL.
7807 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
7808 (gst_vorbisenc_chain):
7809 Free some more leaked bits.
7811 * tests/check/pipelines/theoraenc.c: (start_pipeline),
7813 Wait for state changes to happen if they're ASYNC.
7815 This ought to teach those fancy pants buildbots a lesson.
7817 2006-02-05 Jan Schmidt <thaytan@mad.scientist.com>
7819 * gst-libs/gst/tag/gstid3tag.c:
7820 Add mapping for ID3 International Standard Recording Code
7823 2006-02-05 Jan Schmidt <thaytan@mad.scientist.com>
7825 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
7826 Don't leak tag names.
7828 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
7830 * docs/libs/gst-plugins-base-libs-docs.sgml:
7831 * docs/libs/gst-plugins-base-libs-sections.txt:
7832 * gst-libs/gst/tag/gstid3tag.c:
7833 * gst-libs/gst/tag/gstvorbistag.c:
7834 * gst-libs/gst/tag/tags.c:
7835 Split libgsttag docs into multiple sections.
7837 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
7839 * docs/libs/Makefile.am:
7840 * docs/libs/gst-plugins-base-libs-docs.sgml:
7841 * docs/libs/gst-plugins-base-libs-sections.txt:
7842 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
7843 * gst-libs/gst/tag/gstvorbistag.c:
7844 * gst-libs/gst/tag/tag.h:
7845 * gst-libs/gst/tag/tags.c:
7846 Add libgsttag to the docs.
7848 2006-02-05 Julien MOUTTE <julien@moutte.net>
7850 * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
7851 (gst_text_overlay_init), (gst_text_overlay_src_event),
7852 (gst_text_overlay_collected): Fix clockoverlay.
7854 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
7856 * docs/libs/compiling.sgml:
7857 Fix typo: it's pkg-config, not pkg-gconfig
7859 * docs/libs/gst-plugins-base-libs-docs.sgml:
7860 * docs/libs/gst-plugins-base-libs-sections.txt:
7861 * docs/libs/tmpl/gstgconf.sgml:
7862 There is no libgstgconf in 0.10, remove it
7865 2006-02-05 Julien MOUTTE <julien@moutte.net>
7867 * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
7868 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
7869 (gst_text_overlay_src_event), (gst_text_overlay_collected):
7870 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
7871 (gst_sub_parse_class_init), (gst_sub_parse_init),
7872 (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
7873 (parse_mpsub), (parser_state_init), (handle_buffer),
7874 (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
7875 * gst/subparse/gstsubparse.h: Introduce seeking code.
7877 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
7879 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
7880 Add comment about LANGUAGE tag inconsistency (we want
7881 ISO-639-1, but extract three-letter identifiers?)
7884 Add two translatable files.
7886 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
7888 * gst-libs/gst/tag/Makefile.am:
7889 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
7890 * gst-libs/gst/tag/tag.h:
7891 * gst-libs/gst/tag/tags.c:
7892 (gst_tag_register_musicbrainz_tags_internal),
7893 (gst_tag_register_musicbrainz_tags):
7894 Forward-port some tags stuff from the 0.8 branch. This is
7895 mostly the addition of musicbrainz tags and their mapping
7896 to vorbistags, and a vorbistag mapping of the language tag.
7898 2006-02-05 Julien MOUTTE <julien@moutte.net>
7900 * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
7903 2006-02-04 David Schleef <ds@schleef.org>
7905 * ext/ogg/gstoggmux.c:
7906 * gst/typefind/gsttypefindfunctions.c:
7907 Add Dirac typefinding and add dirac format to oggmux.
7909 2006-02-03 Tim-Philipp Müller <tim at centricular dot net>
7911 * gst/playback/gstdecodebin.c: (try_to_link_1):
7912 Don't put essential function call into
7913 g_return_*() macro, otherwise it'll all be
7914 replaced by NOOPs when compiling with
7915 G_DISABLE_CHECKS defined.
7917 2006-02-03 Edgard Lima <edgard.lima@indt.org.br>
7919 * ext/ogg/gstoggdemux.c:
7920 * ext/ogg/gstoggparse.c:
7921 * gst/tcp/gsttcpserversink.c:
7922 * sys/v4l/v4lsrc_calls.c:
7923 * sys/v4l/v4lsrc_calls.h:
7924 Just make it compile with --disable-gst-debug.
7926 2006-02-03 Wim Taymans <wim@fluendo.com>
7928 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
7929 (gst_alsasink_class_init), (gst_alsasink_init),
7930 (gst_alsasink_write), (gst_alsasink_reset):
7931 * ext/alsa/gstalsasink.h:
7932 Add lock to protect alsa calls.
7933 Implement reset to flush samples ASAP, does not work
7936 2006-02-02 Wim Taymans <wim@fluendo.com>
7938 * gst-libs/gst/audio/gstbaseaudiosink.c:
7939 (gst_base_audio_sink_provide_clock):
7940 Ugh.. getting late I guess...
7942 2006-02-02 Wim Taymans <wim@fluendo.com>
7944 * gst-libs/gst/audio/gstbaseaudiosink.c:
7945 (gst_base_audio_sink_provide_clock),
7946 (gst_base_audio_sink_set_property),
7947 (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
7948 Don't try to provide a clock when we are not negotiated since
7949 we might not be able to make it run.
7951 2006-02-02 Tim-Philipp Müller <tim at centricular dot net>
7953 * gst/playback/gstdecodebin.c: (try_to_link_1):
7954 Unlinking two source pads is ... hard.
7956 2006-02-02 Wim Taymans <wim@fluendo.com>
7958 * gst-libs/gst/audio/TODO:
7961 * gst-libs/gst/audio/gstbaseaudiosink.c:
7962 (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
7963 On EOS, wait till the last sample is played before posting EOS.
7965 2006-02-01 Philippe Kalaf <burger at speedy dot org>
7967 * gst-libs/gst/rtp/gstbasertpdepayload.c:
7968 Patch by Kai Vehmanen : Adds ability to enable newsegment bypass by
7969 setting queue_delay to zero. Also avoid thread being started if
7970 queue_delay is zero.
7972 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
7974 * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
7975 Make test work again by connecting fakesinks to each decoded pad,
7976 which makes the pipeline wait until each fakesink has a buffer
7977 queued before going to PAUSED state. At that point we know the
7978 decodebin pads are negotiated.
7980 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
7982 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
7983 (gst_cdda_base_src_handle_event):
7984 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
7985 Pass unhandled queries to the parent class's query function.
7987 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
7989 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
7990 (gst_ogg_pad_src_query):
7991 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
7992 * ext/theora/theoradec.c: (theora_dec_src_query),
7993 (theora_dec_sink_query):
7994 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
7995 (vorbis_dec_sink_query):
7996 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
7997 (gst_vorbisenc_sink_query):
7998 * gst/adder/gstadder.c: (gst_adder_query):
7999 Pass unhandled queries upstream instead of just
8000 dropping them (#326447). Also, fix supported
8001 query types list for some elements.
8003 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
8005 * gst/typefind/gsttypefindfunctions.c: (au_type_find),
8006 (paris_type_find), (ilbc_type_find), (plugin_init):
8007 Fix typefinding for audio/x-au, audio/x-paris and
8008 audio/iLBC-sh. We cannot use the START_WITH macros
8009 here, because there can only be one typefind factory
8010 with the same name (caps), so the second one would
8011 replace the first one and the first one would never
8012 be called when doing typefinding (see #161712).
8015 2006-01-31 Wim Taymans <wim@fluendo.com>
8017 * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
8018 (vorbis_handle_header_packet), (vorbis_dec_push),
8019 (vorbis_handle_data_packet):
8020 Use scale_int when we can, add some more scaling.
8021 Check packettype before parsing it.
8023 2006-01-31 Wim Taymans <wim@fluendo.com>
8025 * ext/theora/theoradec.c: (_theora_granule_time),
8026 (theora_dec_src_convert), (theora_dec_sink_convert):
8027 Call right _scale functions.
8028 Use parameter instead of some other random value.
8030 2006-01-31 Wim Taymans <wim@fluendo.com>
8032 * ext/theora/theoradec.c: (_theora_granule_frame),
8033 (_theora_granule_time), (_inc_granulepos),
8034 (theora_dec_src_convert), (theora_dec_sink_convert),
8035 (theora_handle_type_packet), (theora_handle_data_packet),
8037 Use higher precision timestamps calculation.
8038 Convert some other conversions to _scale.
8040 2006-01-31 Stefan Kost <ensonic@users.sf.net>
8042 * gst/audiotestsrc/gstaudiotestsrc.c:
8043 (gst_audio_test_src_create_sine_table), (plugin_init):
8044 * gst/volume/gstvolume.c: (plugin_init):
8045 initialize gst_controller before using
8047 2006-01-31 Jan Schmidt <thaytan@mad.scientist.com>
8049 * tests/check/pipelines/theoraenc.c:
8050 * tests/check/pipelines/vorbisenc.c:
8051 Define constant using G_GINT64_CONSTANT to avoid errors when
8052 passing it around - otherwise it gets truncated to 32 bits.
8054 Fixes failing tests.
8056 2006-01-31 Andy Wingo <wingo@pobox.com>
8058 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
8059 caps being set doesn't have a framerate value. Basically a stopgap
8062 * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
8063 technically correct enough to put into core though.
8064 (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
8065 DURATION. Fixes theoraenc ! oggmux.
8067 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
8068 fraction, not double.
8070 2006-01-31 Sebastien Moutte <sebastien@moutte.net>
8073 add vs7 project files created by Sergey Scobich
8075 2006-01-30 Sebastien Moutte <sebastien@moutte.net>
8078 add vs8 project files created by Sergey Scobich
8080 2006-01-30 Andy Wingo <wingo@pobox.com>
8082 * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
8083 timestamp + duration, not just timestamp -- ogg pages should be
8084 ordered by stop time. Necessary fix given the change in vorbis
8087 * ext/theora/theoraenc.c (theora_enc_sink_setcaps)
8088 (gst_theora_enc_init): Pull the granule shift out of the encoder.
8089 (granulepos_add): New function, handles the messiness of adjusting
8091 (theora_buffer_from_packet):
8093 (theora_enc_sink_event): Use granulepos_add, not +.
8095 * tests/check/pipelines/theoraenc.c
8096 (check_buffer_granulepos_from_starttime): Just check the frame
8097 count, not the actual granulepos -- we can't dictate to the
8098 encoder when it should be placing keyframes.
8100 2006-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
8102 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
8103 SERVICE_NOT_AVAILABLE happens for example when you're trying to
8104 play an http:// stream from a server that's not serving
8106 2006-01-30 Andy Wingo <wingo@pobox.com>
8108 * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET):
8109 * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
8110 remove the UINT64_CONSTANT macro, doesn't appear to be needed or
8113 * ext/theora/gsttheoraenc.h:
8114 * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
8115 although theoraenc was timestamping correctly. Added handling of
8116 streams that start with nonzero timestamps.
8118 * tests/check/Makefile.am:
8119 * tests/check/pipelines/theoraenc.c: New file, basically does same
8122 * tests/check/pipelines/vorbisenc.c: I claim these bugs.
8124 2006-01-30 Wim Taymans <wim@fluendo.com>
8126 * gst-libs/gst/audio/gstaudiosink.c:
8127 (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
8128 (gst_audioringbuffer_pause):
8129 Implement pause that does not wait for completion.
8131 * gst-libs/gst/audio/gstbaseaudiosink.c:
8132 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8133 Don't drop buffers when going to PAUSED but perform preroll on
8134 remaining samples now that core base class supports this.
8136 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
8137 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
8138 (gst_ring_buffer_commit):
8139 Pause should not signal waiters.
8140 Implement return value of _commit correctly.
8142 2006-01-30 Andy Wingo <wingo@pobox.com>
8144 * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
8146 * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
8147 updated to timestamp from the first sample, not the last.
8148 (gst_vorbisenc_buffer_from_header_packet): New function, takes
8149 special care of granulepos and timestamp for header packets.
8150 (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
8151 when the first buffer has a nonzero timestamp.
8153 * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
8154 (GstVorbisEnc.subgranule_offset): New members. Take care of the
8155 case when the first audio buffer we get has a nonzero timestamp.
8156 (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
8157 properly timestamp vorbis buffers with the time of the first
8158 sample, not the last.
8160 * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
8161 vorbis_granule_time_copy -- now it takes the granule/subgranule
8162 offset into account.
8164 * tests/check/pipelines/vorbisenc.c: New test for correctness of
8165 timestamps, durations, and granulepos on buffers produced by
8168 2006-01-30 Jan Schmidt <thaytan@mad.scientist.com>
8170 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8171 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
8172 Patch from Eric Jonas to support conversions to/from UYVY
8175 2006-01-30 Julien MOUTTE <julien@moutte.net>
8177 * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
8178 (setup_subtitle), (setup_source), (set_active_source):
8179 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
8180 (gen_text_element), (gen_audio_element), (gen_vis_element),
8181 (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
8183 2006-01-29 Sebastien Moutte <sebastien@moutte.net>
8185 * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
8186 * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
8187 use gst_guint64_to_gdouble to be compliant with vs6
8188 * gst/playback/gstdecodebin.c: (try_to_link_1)
8189 * gst/videorate/videorate.c: (gst_video_rate_blank_data)
8190 use G_GINT64_CONSTANT for int64 constants
8191 * win32/common/libgstinterfaces.def:
8192 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
8194 update and add new project files
8196 2006-01-29 Thomas Vander Stichele <thomas at apestaart dot org>
8200 * win32/common/interfaces-enumtypes.c:
8201 (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
8202 (gst_mixer_track_flags_get_type),
8203 (gst_tuner_channel_flags_get_type):
8204 * win32/common/interfaces-enumtypes.h:
8205 * win32/common/multichannel-enumtypes.c:
8206 (gst_audio_channel_position_get_type):
8207 * win32/common/multichannel-enumtypes.h:
8208 add a win32-update rule like in core, and copy over enumtypes files
8210 2006-01-29 Thomas Vander Stichele <thomas at apestaart dot org>
8213 * win32/common/config.h:
8214 * win32/common/config.h.in:
8215 add config files just like in core
8217 2006-01-28 Tim-Philipp Müller <tim at centricular dot net>
8219 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
8220 Make gcc-4.1 happy (part of #327357).
8222 2006-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
8224 * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
8225 (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
8226 (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
8227 * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
8228 (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
8229 (gst_alsasrc_unprepare), (gst_alsasrc_read):
8230 Update all error messages. All of them should either use
8231 the default translated message, or actually provide a
8232 translatable string.
8233 Make the string for channel count problems meaningful.
8235 2006-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
8237 * sys/v4l/v4l_calls.c: (gst_v4l_open):
8238 check for and throw RESOURCE_BUSY
8240 2006-01-27 David Schleef <ds@schleef.org>
8242 * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
8243 checked in this change -- it requires liboil features not
8244 in 0.3.6. Revert parts.
8246 2006-01-27 David Schleef <ds@schleef.org>
8249 * configure.ac: update liboil requirement to 0.3.6
8250 * gst/videoscale/Makefile.am:
8251 * gst/videoscale/vs_scanline.c: liboilify
8253 2006-01-27 Jan Schmidt <thaytan@mad.scientist.com>
8255 * ext/libvisual/visual.c: (get_buffer):
8256 When pad_alloc returns a GstFlowReturn other
8257 than GST_FLOW_OK, make sure it is passed upstream.
8259 2006-01-27 Jan Schmidt <thaytan@mad.scientist.com>
8261 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
8262 (gst_alsasink_class_init):
8263 Free the device name string.
8265 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
8266 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
8267 (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
8268 Don't remove a pad from the collectpads structure until it
8269 is released - it's a request pad, and may receive data again
8270 if the element gets moved back to PLAYING state.
8272 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
8273 Ensure we turn on double buffering on the Xv port, and
8274 set the colour key to something dark and mysterious that
8277 2006-01-27 Thomas Vander Stichele <thomas at apestaart dot org>
8279 * ext/alsa/gstalsaplugin.c: (plugin_init):
8280 * ext/cdparanoia/gstcdparanoiasrc.c:
8281 (gst_cd_paranoia_src_base_init), (plugin_init):
8282 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
8283 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
8284 - a library should not call setlocale. see "Libraries" node in
8286 - make sure all plugins that use translation do bindtextdomain
8287 to point to the localedir
8288 * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
8289 (setup_sinks), (plugin_init):
8290 all this, and check for NULL when creating sinks
8292 2006-01-27 Julien MOUTTE <julien@moutte.net>
8294 * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
8295 (plugin_init): Make typefinding of subtitles work again.
8297 2006-01-26 Tim-Philipp Müller <tim at centricular dot net>
8299 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
8300 (mp3_type_frame_length_from_header), (mp3_type_find),
8301 (wavpack_type_find), (m4a_type_find), (ircam_type_find),
8303 Backport a bunch of typefinding fixes from the 0.8 branch.
8304 Also, improve wavpack typefinding: if we can't peek the
8305 entire wavpack block, try to parse the bits we can get and
8306 see if we find what we're looking for in those.
8308 2006-01-26 Julien MOUTTE <julien@moutte.net>
8310 * sys/ximage/ximagesink.c:
8311 (gst_ximagesink_calculate_pixel_aspect_ratio):
8312 * sys/xvimage/xvimagesink.c:
8313 (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
8314 more cases of pixel aspect ratio.
8316 2006-01-26 Edward Hervey <edward@fluendo.com>
8318 * gst/playback/gstdecodebin.c: (pad_probe):
8319 Also consider the flush-start and tag events as unblockers
8322 2006-01-26 Julien MOUTTE <julien@moutte.net>
8324 * gst/playback/gstplaybin.c: (gst_play_bin_init),
8325 (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
8326 (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
8327 On the fly visualisation switch, works disabling, enabling as
8328 well but it won't be able to enable vis in a playbin that was
8329 created with no visualisation.
8331 2006-01-25 Wim Taymans <wim@fluendo.com>
8333 * gst-libs/gst/audio/gstbaseaudiosink.c:
8334 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8335 Undo previous commit that returned WRONG_STATE sooner, it breaks
8338 2006-01-25 Wim Taymans <wim@fluendo.com>
8340 * gst-libs/gst/audio/gstbaseaudiosink.c:
8341 (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
8342 (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
8344 Post error when caps cannot be parsed.
8345 Resync on discontinuity in the stream.
8346 Clip samples to segment boundaries.
8347 return WRONG_STATE sooner when we are flushing.
8349 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
8350 (gst_base_audio_src_get_time), (gst_base_audio_src_create):
8351 Make audiosrc operate in TIME.
8352 Set TIMESTAMP and DURATION on buffers.
8354 2006-01-24 Tim-Philipp Müller <tim at centricular dot net>
8356 * tests/examples/seek/seek.c: (main):
8357 Output tag messages as well.
8359 2006-01-23 Edward Hervey <edward@fluendo.com>
8361 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
8362 (free_pad_probes), (remove_fakesink), (pad_probe),
8363 (close_pad_link), (gst_decode_bin_change_state):
8364 Replace GstPadBlockCallback with pad probes that detect
8365 first buffer AND eos before removing fakesink.
8366 Fixes hang with demuxers doing EOS while pre-rolling.
8369 2006-01-23 Andy Wingo <wingo@pobox.com>
8371 * ext/alsa/gstalsasink.c:
8372 * gst-libs/gst/rtp/gstbasertpdepayload.c:
8373 (gst_base_rtp_depayload_setcaps),
8374 (gst_base_rtp_depayload_add_to_queue),
8375 (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
8377 Patch by: Jens Granseuer <jensgr at gmx dot net>
8379 2006-01-22 Julien MOUTTE <julien@moutte.net>
8381 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
8382 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
8383 (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some
8384 frames. We might get a frame destroyed after changing state to
8385 NULL, adding a safety check on xcontext.
8387 2006-01-22 Tim-Philipp Müller <tim at centricular dot net>
8389 * gst-libs/gst/interfaces/xoverlay.c:
8390 Fix prepare-xwindow-id code example in the docs - we need to
8391 ignore all messages that aren't element messages as well.
8393 2006-01-21 Julien MOUTTE <julien@moutte.net>
8395 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
8396 I think one day i'll completely undestand how caps negotiation
8397 is supposed to work. This refactoring handles buffer_alloc
8398 called with caps we can't handle. We definitely don't want a
8399 set_caps with those caps, so we define and allocate a buffer
8400 we would like to receive.
8402 2006-01-19 Tim-Philipp Müller <tim at centricular dot net>
8404 * gst/playback/gstplaybasebin.c: (setup_source):
8405 Free iterator when done.
8407 2006-01-17 Jan Schmidt <thaytan@mad.scientist.com>
8409 * gst-libs/gst/audio/gstbaseaudiosink.c:
8410 (gst_base_audio_sink_render):
8411 Fix playback of non-synchronised streams by assuming a rate
8412 of 1.0 instead of a random one.
8414 Makes this work again:
8416 gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
8417 endianness=(int)4321, signed=(boolean)true, width=(int)16,
8418 depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
8419 audioresample ! alsasink
8421 === release 0.10.2 ===
8423 2006-01-16 Thomas Vander Stichele <thomas at apestaart dot org>
8426 releasing 0.10.2, "Then the devil is six"
8428 2006-01-16 Jan Schmidt <thaytan@mad.scientist.com>
8430 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
8431 * gst/playback/gststreamselector.c:
8432 (gst_stream_selector_set_property):
8433 Comment out broken code that connects to the state-changed signal.
8434 At this point, changing current stream selection is broken, but
8435 stuff like gst-launch playbin current-audio=1 works and filters
8436 to the chosen stream.
8438 2006-01-16 Thomas Vander Stichele <thomas at apestaart dot org>
8440 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
8441 Fix #327216 (null dereference in vorbisdec)
8443 2006-01-16 Tim-Philipp Müller <tim at centricular dot net>
8445 * ext/theora/theoradec.c: (theora_handle_comment_packet):
8446 Post taglist actually on bus instead of just freeing it
8447 (fixes #327114 and totem bug #327080).
8449 * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
8450 Use gst_element_found_tags_for_pad(), so that the tags
8451 are sent downstream as an event as well.
8453 2006-01-15 Thomas Vander Stichele <thomas at apestaart dot org>
8455 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
8456 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
8457 (gst_ximagesink_buffer_alloc):
8458 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
8459 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
8460 (gst_xvimagesink_buffer_alloc):
8461 move all regularly occurring messages to GST_LOG level
8462 add some more object logs
8464 2006-01-14 Thomas Vander Stichele <thomas at apestaart dot org>
8466 * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
8467 fix a silly segfault
8469 2006-01-14 Tim-Philipp Müller <tim at centricular dot net>
8471 * docs/libs/gst-plugins-base-libs-docs.sgml:
8472 * docs/libs/gst-plugins-base-libs-sections.txt:
8473 * gst-libs/gst/audio/mixerutils.c:
8474 * gst-libs/gst/audio/mixerutils.h:
8475 Add docs for mixerutils stuff.
8477 2006-01-13 Tim-Philipp Müller <tim at centricular dot net>
8479 * gst/playback/gstplaybasebin.c: (setup_source):
8480 Fix playback for sources that emit raw audio or
8481 raw video streams (e.g.: cd audio sources) (#325984).
8483 2006-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
8485 * gst-libs/gst/audio/mixerutils.c:
8486 (gst_audio_mixer_filter_do_filter):
8487 actually save the element we create
8489 2006-01-12 Tim-Philipp Müller <tim at centricular dot net>
8491 * gst-libs/gst/cdda/gstcddabasesrc.c:
8492 (gst_cdda_base_src_handle_track_seek):
8493 No need to post a tag message on the bus when seeking
8494 within the same track, only post it when the current
8497 2006-01-11 Jan Schmidt <thaytan@mad.scientist.com>
8499 * gst/playback/gstplaybasebin.c: (group_destroy),
8500 (probe_triggered), (new_decoded_pad), (mute_group_type),
8501 (set_active_source):
8502 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
8503 * gst/playback/gststreamselector.c:
8504 (gst_stream_selector_base_init),
8505 (gst_stream_selector_set_property),
8506 (gst_stream_selector_request_new_pad):
8507 Reenable stream selection. These mechanisms need a complete overhaul
8508 in the face of 0.8->0.10 changes though.
8510 2006-01-11 Jan Schmidt <thaytan@mad.scientist.com>
8512 * ext/ogg/gstoggdemux.c:
8513 Change the pad template to src_%d to match the pads that
8514 are created from it. decodebin needs this information in order
8515 to decide that oggdemux is capable of producing multiple pads
8516 (and hence needs queues inserted).
8518 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
8519 (gst_ogg_mux_collected):
8520 Make debug output more useful by using GST_PTR_FORMAT.
8522 2006-01-11 Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
8524 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
8526 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
8527 Set depth and width for alaw/mulaw (fixes #326601).
8529 2006-01-11 Thomas Vander Stichele <thomas at apestaart dot org>
8531 * tests/icles/Makefile.am:
8532 don't build the tests if we don't have the libs
8534 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
8536 * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
8537 (gst_cd_paranoia_paranoia_callback):
8538 Don't try to free NULL pointers.
8540 2006-01-10 Edward Hervey <edward@fluendo.com>
8542 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
8543 (gst_audio_rate_change_state), (plugin_init):
8544 Add debugging category.
8546 Add case for incoming buffers without valid offset/offset_end.
8548 2006-01-10 Michael Smith <msmith@fluendo.com>
8550 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
8551 Don't leak GCond in audio sources.
8553 2006-01-10 Jan Schmidt <thaytan@mad.scientist.com>
8555 * gst/playback/gstplaybin.c: (gen_audio_element):
8556 Don't leak an autoaudiosink/alsasink when we generate
8557 a new audio element. (old code, I guess)
8559 2006-01-10 Michael Smith <msmith@fluendo.com>
8561 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
8562 Support float audio in audiorate.
8563 Use width rather than depth for selecting sample width.
8565 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
8567 * gst/videotestsrc/videotestsrc.h:
8568 Use GLib types here (that way we don't have to include the
8569 generated _stdint.h header, which makes life easier for win32
8570 folks that don't use autotools for the build) (#325990, patch
8571 by: Sergey Scobich).
8573 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
8575 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
8576 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
8577 (gst_ring_buffer_pause), (wait_segment):
8578 * gst-libs/gst/audio/gstringbuffer.h:
8579 Name (private) union, makes Forte compiler happy (this time
8580 for real) (#324900).
8582 2006-01-09 Tim-Philipp Müller <tim at centricular dot net>
8584 * gst-libs/gst/audio/Makefile.am:
8585 Link against libgstinterfaces, needed for mixer
8586 and property probe stuff.
8588 2006-01-09 Edward Hervey <edward@fluendo.com>
8590 * gst-libs/gst/Makefile.am:
8592 2006-01-09 Tim-Philipp Müller <tim at centricular dot net>
8594 * gst-libs/gst/audio/Makefile.am:
8595 * gst-libs/gst/audio/mixerutils.c:
8596 (gst_audio_mixer_filter_do_filter),
8597 (gst_audio_mixer_filter_check_element),
8598 (gst_audio_mixer_filter_probe_feature),
8599 (element_factory_rank_compare_func),
8600 (gst_audio_default_registry_mixer_filter):
8601 * gst-libs/gst/audio/mixerutils.h:
8602 Add gst_audio_default_registry_mixer_filter() utility
8605 2006-01-03 Michael Smith <msmith@fluendo.com>
8607 * gst/audioresample/resample.h:
8608 As before, but for o_buf
8610 2006-01-03 Michael Smith <msmith@fluendo.com>
8612 * gst/audioresample/resample.h:
8613 Declare struct _ResampleState.buffer as unsigned char *, not void *,
8614 since we do arithmetic on it.
8616 2006-01-02 Tim-Philipp Müller <tim at centricular dot net>
8618 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
8619 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
8620 (gst_ring_buffer_pause), (wait_segment):
8621 * gst-libs/gst/audio/gstringbuffer.h:
8622 Sun's Forte compiler doesn't seem to like anonymous structs,
8623 so use same setup as in GstBaseSrc (fixes #324900).
8625 2005-12-30 Stefan Kost <ensonic@users.sf.net>
8628 * gst/volume/Makefile.am:
8629 * gst/volume/demo.c:
8630 move old example to tests/examples/volume/volune.c
8631 * tests/examples/Makefile.am:
8632 * tests/examples/seek/seek.c: (main):
8633 change window-close event from "delete-event" to "destroy"
8634 * tests/examples/volume/Makefile.am:
8635 * tests/examples/volume/volume.c: (value_changed_callback),
8636 (setup_gui), (message_received), (eos_message_received), (main):
8637 fix event handling and bus usage
8639 2005-12-29 Stefan Kost <ensonic@users.sf.net>
8641 * gst/audiotestsrc/gstaudiotestsrc.c:
8642 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
8643 (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
8644 (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
8645 (gst_audio_test_src_create_square),
8646 (gst_audio_test_src_create_saw),
8647 (gst_audio_test_src_create_triangle),
8648 (gst_audio_test_src_create_silence),
8649 (gst_audio_test_src_create_white_noise),
8650 (gst_audio_test_src_create_pink_noise),
8651 (gst_audio_test_src_init_sine_table),
8652 (gst_audio_test_src_create_sine_table),
8653 (gst_audio_test_src_change_wave),
8654 (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
8655 (gst_audio_test_src_create), (gst_audio_test_src_set_property):
8656 * gst/audiotestsrc/gstaudiotestsrc.h:
8657 update to basesrc changes, implement segmented seeking and eos
8658 handling, add a 'sine-tab' waveform for performance critical playback
8660 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
8663 ... and this time the other modified file that I missed last time.
8665 2005-12-29 Michael Smith <msmith@fluendo.com>
8667 * gst/playback/gstdecodebin.c: (new_pad):
8668 Fix non-C89 variable declaration not at the start of a block. Should
8669 help some compilers.
8671 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
8673 * tests/check/Makefile.am:
8674 And now fix 'make distcheck' (builddir != srcdir)
8676 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
8679 * ext/cdparanoia/Makefile.am:
8680 * ext/cdparanoia/gstcdparanoia.c:
8681 * ext/cdparanoia/gstcdparanoia.h:
8682 * ext/cdparanoia/gstcdparanoiasrc.c:
8683 (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
8684 (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
8685 (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
8686 (gst_cd_paranoia_paranoia_callback),
8687 (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
8688 (gst_cd_paranoia_src_set_property),
8689 (gst_cd_paranoia_src_get_property), (plugin_init):
8690 * ext/cdparanoia/gstcdparanoiasrc.h:
8691 New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
8692 plugin again (there are still fixes required to playbin to make
8693 cdda:// uris work there).
8695 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
8697 * tests/check/Makefile.am:
8698 Fix test case compilation.
8700 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
8702 * gst-libs/gst/cdda/gstcddabasesrc.c:
8703 (gst_cdda_base_src_update_duration),
8704 (gst_cdda_base_src_calculate_cddb_id):
8705 An integer is not a string. Fix access to uninitialised variable.
8707 * tests/check/Makefile.am:
8708 Add cddabasesrc unit test; also actually enable the vorbis test.
8710 * tests/check/generic/states.c:
8711 Blacklist new cd audio elements as well.
8713 * tests/check/libs/cddabasesrc.c:
8714 Unit test for GstCddaBaseSrc (discid calculation mostly).
8716 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
8718 * docs/libs/Makefile.am:
8719 * docs/libs/gst-plugins-base-libs-docs.sgml:
8720 * docs/libs/gst-plugins-base-libs-sections.txt:
8721 * docs/libs/gst-plugins-base-libs.types:
8722 Add docs for libgstcdda/GstCddaBaseSrc.
8724 * gst-libs/gst/interfaces/mixertrack.h:
8725 Do one struct member per line with a semicolon at the end, that way
8726 even gtk-doc might parse it without complaining.
8728 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
8731 * gst-libs/gst/Makefile.am:
8732 * gst-libs/gst/cdda/Makefile.am:
8733 * gst-libs/gst/cdda/base64.c:
8734 * gst-libs/gst/cdda/base64.h:
8735 * gst-libs/gst/cdda/gstcddabasesrc.c:
8736 (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
8737 (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
8738 (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
8739 (gst_cdda_base_src_get_property),
8740 (gst_cdda_base_src_get_track_from_sector),
8741 (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
8742 (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
8743 (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
8744 (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
8745 (gst_cdda_base_src_uri_get_protocols),
8746 (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
8747 (gst_cdda_base_src_uri_handler_init),
8748 (gst_cdda_base_src_setup_interfaces),
8749 (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
8750 (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
8751 (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
8752 (gst_cdda_base_src_add_tags),
8753 (gst_cdda_base_src_add_index_associations),
8754 (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
8755 (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
8756 (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
8757 (gst_cdda_base_src_create):
8758 * gst-libs/gst/cdda/gstcddabasesrc.h:
8759 * gst-libs/gst/cdda/sha1.c:
8760 * gst-libs/gst/cdda/sha1.h:
8761 Add new libgstcdda with GstCddaBaseSrc class.
8763 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
8765 * ext/gnomevfs/gstgnomevfssink.h:
8766 Use GstBaseSinkClass as parent_class member for class struct, not
8769 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
8771 Patch by: Michael Benes
8773 * gst/videotestsrc/gstvideotestsrc.c:
8774 (gst_video_test_src_class_init), (gst_video_test_src_start):
8775 Add start method to reset running time and number of frames sent
8776 when starting up (fixes #324696)
8778 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
8780 * docs/plugins/Makefile.am:
8781 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
8782 * docs/plugins/gst-plugins-base-plugins-sections.txt:
8783 * docs/plugins/gst-plugins-base-plugins.args:
8784 * docs/plugins/gst-plugins-base-plugins.hierarchy:
8785 * docs/plugins/gst-plugins-base-plugins.signals:
8786 Add docs stuff for gnomevfssrc and gnomevfssink.
8788 * ext/gnomevfs/gstgnomevfssrc.c:
8789 Fix example pipeline in gtk-doc blurb.
8791 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
8793 * ext/gnomevfs/Makefile.am:
8794 * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
8795 (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
8796 (gst_gnome_vfs_handle_get_type), (plugin_init):
8797 * ext/gnomevfs/gstgnomevfs.h:
8798 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
8799 (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
8800 (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
8801 (gst_gnome_vfs_sink_set_property),
8802 (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
8803 (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
8804 (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
8805 (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
8806 (gst_gnome_vfs_sink_uri_get_type),
8807 (gst_gnome_vfs_sink_uri_get_protocols),
8808 (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
8809 (gst_gnome_vfs_sink_uri_handler_init):
8810 * ext/gnomevfs/gstgnomevfssink.h:
8811 Port gnomevfssink; add gtk-doc blurb.
8813 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
8814 (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
8815 (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
8816 (gst_gnome_vfs_src_uri_get_type),
8817 (gst_gnome_vfs_src_uri_get_protocols),
8818 (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
8819 (gst_gnome_vfs_src_uri_handler_init),
8820 (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
8821 (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
8822 (gst_gnome_vfs_src_send_additional_headers_callback),
8823 (gst_gnome_vfs_src_received_headers_callback),
8824 (gst_gnome_vfs_src_push_callbacks),
8825 (gst_gnome_vfs_src_pop_callbacks),
8826 (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
8827 (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
8828 (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
8829 * ext/gnomevfs/gstgnomevfssrc.h:
8830 s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
8831 file; add gtk-doc blurb with example pipelines.
8833 === release 0.10.1 ===
8835 2005-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
8838 releasing 0.10.1, "Dobro Dedek"
8840 2005-12-21 Edgard Lima <edgard.lima@indt.org.br>
8842 * gst/typefind/gsttypefindfunctions.c:
8843 iLBC30 and iLBC20 added to typefind.
8845 2005-12-20 Thomas Vander Stichele <thomas at apestaart dot org>
8847 * gst-libs/gst/audio/gstbaseaudiosink.c:
8848 (gst_base_audio_sink_class_init):
8849 * gst-libs/gst/audio/gstbaseaudiosrc.c:
8850 (gst_base_audio_src_class_init):
8851 update strings, values are in microseconds
8852 change the default sink buffer time to something that is smaller
8853 (to help software volume mixing have a slightly lower delay) but
8854 still be acceptable on Wim's laptop
8856 2005-12-20 Edward Hervey <edward@fluendo.com>
8858 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
8859 Made a quack, forgot to add DUCK to the riff video template.
8861 2005-12-19 Edward Hervey <edward@fluendo.com>
8863 * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
8864 (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
8865 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
8866 (gst_ogm_parse_chain):
8867 Make sure pads are initialized correctly.
8868 * gst-libs/gst/riff/riff-ids.h:
8869 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
8870 (gst_riff_create_video_template_caps):
8871 Add a whole bunch of FOURCC <=> MimeType.
8872 Extend the riff video pad template to support the newly added fourcc.
8874 2005-12-18 Jan Schmidt <thaytan@mad.scientist.com>
8876 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
8877 (gst_ogg_demux_activate_chain):
8878 Extra debug output when activating/deactivating chains.
8880 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
8881 (is_demuxer_element), (try_to_link_1), (remove_element_chain),
8883 Remove a queue from our list when it becomes unlinked.
8884 Don't add queues to elements in class 'Demux' if they
8885 can only produce one pad
8887 2005-12-18 Julien MOUTTE <julien@moutte.net>
8889 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
8890 (gst_video_sink_get_type): Add a debug category.
8892 2005-12-17 Philippe Khalaf <burger@speedy.org>
8894 * gst-libs/gst/rtp/gstbasertpdepayload.c:
8895 (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
8896 Handle downstream newsegment by sending our own newsegment before the
8897 next buffer to be released. (#323900)
8899 2005-12-17 Philippe Khalaf <burger@speedy.org>
8901 * gst-libs/gst/rtp/gstbasertpdepayload.c:
8902 (gst_base_rtp_depayload_set_gst_timestamp):
8903 add queue delay to new segment as well (as opposed to just the first
8904 buffer). (bug #322347)
8906 2005-12-16 Stefan Kost <ensonic@users.sf.net>
8908 * ext/libvisual/visual.c: (make_valid_name):
8909 change some char* into char[]
8910 * gst/audiotestsrc/gstaudiotestsrc.c:
8911 (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
8912 (gst_audio_test_src_create):
8913 * gst/audiotestsrc/gstaudiotestsrc.h:
8914 prepare to handle EOS and SEGMENT_DONE
8916 2005-12-16 Tim-Philipp Müller <tim at centricular dot net>
8918 * tests/check/generic/states.c: (GST_START_TEST):
8919 Blacklist cdparanoia element in state test.
8921 2005-12-16 Tim-Philipp Müller <tim at centricular dot net>
8923 Patch by: Benjamin Pineau
8926 * gst/tcp/gsttcpclientsink.c:
8927 * gst/tcp/gsttcpserversink.c:
8928 * gst/tcp/gsttcpserversrc.c:
8929 Add <string.h> includes for memset and FD_ZERO (fixes #323878)
8931 2005-12-15 Michael Smith <msmith@fluendo.com>
8933 * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
8934 (gst_video_rate_chain):
8935 Fix timestamping for videorate when the first buffer it sees has a
8936 non-zero timestamp. Fix some misleading debug output.
8938 2005-12-15 Michael Smith <msmith@fluendo.com>
8940 * gst/audioresample/gstaudioresample.c:
8941 Don't leak all input buffers to audioresample.
8943 2005-12-15 Tim-Philipp Müller <tim at centricular dot net>
8945 * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
8946 Don't operate on empty text buffers. Strip newlines and
8947 tabs only from the end of the text, but leave them intact
8948 in the middle. Fix typo in gtk-doc description.
8950 2005-12-15 Tim-Philipp Müller <tim at centricular dot net>
8952 * gst/playback/gstplaybasebin.c:
8953 * gst/playback/gstplaybin.c: (handoff):
8954 Make sure the video frame buffer we return to apps via the
8955 "frame" property always has caps set on it. Modify
8956 _gst_gvalue_set_object() macro to handle NULL objects
8959 2005-12-14 Stefan Kost <ensonic@users.sf.net>
8961 * gst/audiotestsrc/gstaudiotestsrc.c:
8962 (gst_audio_test_src_class_init), (gst_audio_test_src_init),
8963 (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
8964 (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
8965 (gst_audio_test_src_create):
8966 * gst/audiotestsrc/gstaudiotestsrc.h:
8967 Adjust to some recent api changes and add wtays new cool seeking
8970 2005-12-14 Tim-Philipp Müller <tim at centricular dot net>
8972 * ext/alsa/Makefile.am:
8973 * ext/alsa/gstalsadeviceprobe.c:
8974 * ext/alsa/gstalsadeviceprobe.h:
8975 Helper functions to add device probing via the GstPropertyProbe
8976 interface to a class.
8978 * ext/alsa/gstalsamixer.h:
8979 Comment out GST_ALSA_MIXER, it returns a struct that's not
8982 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
8983 Add some debug info.
8985 * ext/alsa/gstalsamixerelement.c:
8986 (gst_alsa_mixer_element_interface_supported),
8987 (gst_implements_interface_init),
8988 (gst_alsa_mixer_element_init_interfaces),
8989 (gst_alsa_mixer_element_class_init),
8990 (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
8991 (gst_alsa_mixer_element_set_property),
8992 (gst_alsa_mixer_element_get_property),
8993 (gst_alsa_mixer_element_change_state):
8994 * ext/alsa/gstalsamixerelement.h:
8995 Add 'device' and 'device-name' properties. Add GstPropertyProbe
8996 for device handling (gnome-volume-control will need that).
8998 2005-12-12 Christian Schaller <uraeus@gnome.org>
9000 * ext/Makefile.am: fix cdparanoia entry
9001 * gst-plugins-base.spec.in: add cdparanoia
9003 2005-12-12 Michael Smith <msmith@fluendo.com>
9005 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
9006 Use the correct function to free list of typefind factories.
9008 2005-12-12 Wim Taymans <wim@fluendo.com>
9010 * gst/videotestsrc/gstvideotestsrc.c:
9011 (gst_video_test_src_class_init), (gst_video_test_src_init),
9012 (gst_video_test_src_parse_caps), (gst_video_test_src_query),
9013 (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
9014 (gst_video_test_src_create):
9015 * gst/videotestsrc/gstvideotestsrc.h:
9016 Implement seeking in videotestsrc.
9019 2005-12-12 Wim Taymans <wim@fluendo.com>
9021 * ext/cdparanoia/Makefile.am:
9022 * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
9023 (gst_paranoia_endian_get_type), (_do_init),
9024 (cdparanoia_class_init), (cdparanoia_init),
9025 (cdparanoia_set_property), (cdparanoia_get_property),
9026 (cdparanoia_do_seek), (cdparanoia_is_seekable),
9027 (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
9028 (cdparanoia_convert), (cdparanoia_get_query_types),
9029 (cdparanoia_query), (cdparanoia_set_index),
9030 (cdparanoia_uri_set_uri):
9031 * ext/cdparanoia/gstcdparanoia.h:
9032 Partially ported cdparanoia now that basesrc can support a
9035 2005-12-12 Wim Taymans <wim@fluendo.com>
9037 * tests/examples/seek/scrubby.c: (main):
9038 Set higher priority for bus events so they don't get reordered with
9041 * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
9042 (flush_toggle_cb), (main):
9043 Added checkbox to disable flushing seeks.
9044 Disable scrubbing when doing non flushing seeks.
9046 2005-12-12 Tim-Philipp Müller <tim at centricular dot net>
9048 * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
9049 (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
9050 (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
9051 (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
9052 Implement some sort of event handling that doesn't rely on
9053 g_return_if_fail; make sure we always push the last chunk of an
9054 .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
9055 state change function; remove some old cruft. Seeking is still
9056 rather unlikely to work though.
9061 2005-12-11 Julien MOUTTE <julien@moutte.net>
9063 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
9064 Fixed a leak of the current image reference when cleaning up.
9065 Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
9067 2005-12-09 Michael Smith <msmith@fluendo.com>
9069 * tools/Makefile.am:
9070 * tools/gst-launch-ext-m.m:
9071 Remove gst-launch-ext. It doesn't work, and is no longer
9072 particularly useful.
9074 2005-12-08 Luca Ognibene <luogni@tin.it>
9076 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
9077 don't pass random values to ogmparse convert function.
9078 Make seeking possible in the exile1.ogm file.
9080 2005-12-07 Tim-Philipp Müller <tim at centricular dot net>
9082 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
9083 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
9084 Work around refcount problem with g_value_set_object() that occur
9085 if the core has been compiled against GLib-2.6 (g_value_set_object()
9086 will only g_object_ref() the element, but the caller will
9087 gst_object_unref() it and bad things will happen due to the way
9088 GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
9089 totem for people on FC4 using Thomas's 0.10 RPMs.
9091 2005-12-07 Edward Hervey <edward@fluendo.com>
9093 Time to welcome ogm to 0.10 :)
9095 * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
9096 (gst_ogg_pad_typefind):
9097 Oggdemux can now properly typefind elements with dynamic pads.
9098 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
9099 Properly set caps on src pad, and set caps on outgoing buffers.
9101 2005-12-06 Thomas Vander Stichele <thomas at apestaart dot org>
9103 * ext/alsa/gstalsamixer.h:
9104 * ext/alsa/gstalsamixerelement.h:
9105 * ext/alsa/gstalsamixeroptions.h:
9106 * ext/alsa/gstalsamixertrack.h:
9107 * ext/alsa/gstalsasink.c:
9108 * ext/alsa/gstalsasink.h:
9109 * ext/alsa/gstalsasrc.c:
9110 * ext/alsa/gstalsasrc.h:
9111 * ext/cdparanoia/gstcdparanoia.h:
9112 * ext/gnomevfs/gstgnomevfsuri.h:
9113 * ext/ogg/gstoggdemux.c:
9114 * ext/ogg/gstoggmux.c:
9115 * ext/pango/gsttextoverlay.h:
9116 * ext/theora/theoradec.c:
9117 * ext/theora/theoraenc.c:
9118 * ext/vorbis/vorbisdec.h:
9119 * ext/vorbis/vorbisenc.c:
9120 * ext/vorbis/vorbisenc.h:
9121 * ext/vorbis/vorbisparse.h:
9122 * gst-libs/gst/audio/gstaudioclock.h:
9123 * gst-libs/gst/audio/gstaudiosink.c:
9124 * gst-libs/gst/audio/gstaudiosink.h:
9125 * gst-libs/gst/audio/gstaudiosrc.c:
9126 * gst-libs/gst/audio/gstaudiosrc.h:
9127 * gst-libs/gst/audio/gstbaseaudiosink.c:
9128 * gst-libs/gst/audio/gstbaseaudiosink.h:
9129 * gst-libs/gst/audio/gstbaseaudiosrc.c:
9130 * gst-libs/gst/audio/gstbaseaudiosrc.h:
9131 * gst-libs/gst/audio/gstringbuffer.h:
9132 * gst-libs/gst/audio/multichannel.h:
9133 * gst-libs/gst/floatcast/floatcast.h:
9134 * gst-libs/gst/interfaces/colorbalance.c:
9135 * gst-libs/gst/interfaces/colorbalance.h:
9136 * gst-libs/gst/interfaces/colorbalancechannel.h:
9137 * gst-libs/gst/interfaces/mixer.h:
9138 * gst-libs/gst/interfaces/mixeroptions.h:
9139 * gst-libs/gst/interfaces/mixertrack.h:
9140 * gst-libs/gst/interfaces/navigation.h:
9141 * gst-libs/gst/interfaces/propertyprobe.h:
9142 * gst-libs/gst/interfaces/tuner.h:
9143 * gst-libs/gst/interfaces/tunerchannel.h:
9144 * gst-libs/gst/interfaces/tunernorm.h:
9145 * gst-libs/gst/interfaces/xoverlay.h:
9146 * gst-libs/gst/netbuffer/gstnetbuffer.h:
9147 * gst-libs/gst/riff/riff-ids.h:
9148 * gst-libs/gst/riff/riff-media.h:
9149 * gst-libs/gst/riff/riff-read.h:
9150 * gst-libs/gst/rtp/gstbasertpdepayload.h:
9151 * gst-libs/gst/rtp/gstbasertppayload.c:
9152 * gst-libs/gst/rtp/gstbasertppayload.h:
9153 * gst-libs/gst/rtp/gstrtpbuffer.c:
9154 * gst-libs/gst/rtp/gstrtpbuffer.h:
9155 * gst-libs/gst/tag/gsttageditingprivate.h:
9156 * gst-libs/gst/tag/gstvorbistag.c:
9157 (gst_tag_list_from_vorbiscomment_buffer):
9158 * gst-libs/gst/tag/tag.h:
9159 * gst-libs/gst/video/video.h:
9160 * gst/adder/gstadder.c:
9161 * gst/adder/gstadder.h:
9162 * gst/audioconvert/audioconvert.c:
9163 * gst/audioconvert/audioconvert.h:
9164 * gst/audioconvert/gstaudioconvert.c:
9165 * gst/audioconvert/gstchannelmix.c:
9166 * gst/audioconvert/gstchannelmix.h:
9167 * gst/audiorate/gstaudiorate.c:
9168 * gst/audioresample/buffer.h:
9169 * gst/audioresample/functable.h:
9170 * gst/audioresample/gstaudioresample.c:
9171 * gst/audioresample/resample.h:
9172 * gst/ffmpegcolorspace/avcodec.h:
9173 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
9174 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
9175 * gst/ffmpegcolorspace/imgconvert.c:
9176 * gst/ffmpegcolorspace/imgconvert_template.h:
9177 * gst/playback/gstdecodebin.c:
9178 * gst/playback/gstplaybasebin.h:
9179 * gst/playback/gstplaybin.c:
9180 * gst/playback/gststreaminfo.h:
9181 * gst/tcp/gstfdset.c:
9182 * gst/tcp/gstfdset.h:
9183 * gst/tcp/gstmultifdsink.c:
9184 * gst/tcp/gstmultifdsink.h:
9186 * gst/tcp/gsttcpclientsrc.c:
9187 * gst/tcp/gsttcpclientsrc.h:
9188 * gst/tcp/gsttcpplugin.h:
9189 * gst/tcp/gsttcpserversink.c:
9190 * gst/tcp/gsttcpserversrc.c:
9191 * gst/typefind/gsttypefindfunctions.c:
9192 * gst/videorate/gstvideorate.c:
9193 * gst/videotestsrc/gstvideotestsrc.h:
9194 * gst/videotestsrc/videotestsrc.h:
9195 * sys/v4l/gstv4lcolorbalance.h:
9196 * sys/v4l/gstv4ltuner.h:
9197 * sys/v4l/gstv4lxoverlay.h:
9198 * sys/v4l/v4l_calls.h:
9199 * sys/v4l/videodev_mjpeg.h:
9200 * tests/check/elements/audioconvert.c:
9201 * tests/check/elements/audioresample.c:
9202 * tests/check/elements/audiotestsrc.c:
9203 * tests/check/elements/videotestsrc.c:
9204 * tests/check/elements/volume.c:
9205 * tests/examples/seek/scrubby.c:
9206 * tests/examples/seek/seek.c:
9209 === release 0.10.0 ===
9211 2005-12-05 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9214 releasing 0.10.0, "Mont-d'or"
9216 2005-12-05 Jan Schmidt <thaytan@mad.scientist.com>
9218 * tests/examples/seek/Makefile.am:
9219 Build fix for when gtk is not available.
9221 2005-12-05 Andy Wingo <wingo@pobox.com>
9223 * ext/libvisual/visual.c: (get_buffer):
9224 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
9225 * ext/pango/gsttextrender.c: (gst_text_render_chain):
9226 * ext/theora/theoradec.c: (theora_handle_data_packet):
9227 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
9229 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9230 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
9231 Update for alloc_buffer changes.
9233 2005-12-05 Andy Wingo <wingo@pobox.com>
9235 patch by: Kai Vehmanen <kv2004 eca cx>
9237 * gst-libs/gst/rtp/gstbasertpdepayload.c
9238 (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
9240 2005-12-04 Andy Wingo <wingo@pobox.com>
9242 patch by: Sebastien Cote <sebas642 yahoo ca>
9244 * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
9247 2005-12-02 Tim-Philipp Müller <tim at centricular dot net>
9249 * docs/plugins/Makefile.am:
9250 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9251 * docs/plugins/gst-plugins-base-plugins-sections.txt:
9252 * docs/plugins/gst-plugins-base-plugins.hierarchy:
9253 * ext/pango/gstclockoverlay.c:
9254 * ext/pango/gsttextoverlay.c:
9255 * ext/pango/gsttextrender.c:
9256 * ext/pango/gsttimeoverlay.c:
9257 Add gtk-doc blurbs to pango elements.
9259 2005-12-02 Wim Taymans <wim@fluendo.com>
9261 * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
9262 * gst/audioresample/buffer.h:
9263 * gst/audioresample/gstaudioresample.c:
9264 * gst/audioresample/gstaudioresample.h:
9265 * gst/audioresample/resample.c: (resample_input_flush),
9266 (resample_input_pushthrough), (resample_input_eos),
9267 (resample_get_output_size_for_input),
9268 (resample_get_input_size_for_output), (resample_get_output_size),
9269 (resample_get_output_data):
9270 * gst/audioresample/resample.h:
9271 * gst/audioresample/resample_ref.c: (resample_scale_ref):
9272 Fix audioresample, seek torture, new segments, reverse negotiation
9275 2005-12-02 Wim Taymans <wim@fluendo.com>
9277 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9280 2005-12-02 Wim Taymans <wim@fluendo.com>
9282 * gst/audioconvert/gstaudioconvert.c:
9283 (gst_audio_convert_transform):
9286 === release 0.9.7 ===
9288 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9291 releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
9293 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9299 add win32 MANIFEST file
9300 do something to the hungarian translation
9302 2005-12-01 Tim-Philipp Müller <tim at centricular dot net>
9305 Add $(PANGO_DIR) to SUBDIRS
9307 * ext/pango/gstclockoverlay.c:
9308 * ext/pango/gsttimeoverlay.c:
9309 Fix and improve element descriptions.
9311 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9313 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9314 * docs/plugins/inspect/plugin-libvisual.xml:
9315 * docs/plugins/inspect/plugin-pango.xml:
9316 add pango plugin to docs
9318 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9324 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9327 * tests/Makefile.am:
9328 * tests/icles/.cvsignore:
9329 * tests/icles/Makefile.am:
9330 * tests/icles/stress-xoverlay.c: (myclock), (open_display),
9331 (close_display), (resize_window), (move_window), (create_window),
9332 (terminate_playback), (pause_playback), (start_playback), (main):
9333 add stress test for xoverlay from Julien
9335 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9337 * docs/libs/tmpl/gstcolorbalance.sgml:
9338 * gst-libs/gst/rtp/gstbasertpdepayload.c:
9339 * gst-libs/gst/rtp/gstbasertppayload.c:
9340 * gst-libs/gst/rtp/gstrtpbuffer.c:
9341 * gst-libs/gst/rtp/gstrtpbuffer.h:
9342 Do burger's rename for rtp payloaders and depayloaders
9344 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9347 add Visual Studio 6 build files
9349 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9351 * docs/libs/gst-plugins-base-libs-docs.sgml:
9352 * docs/libs/gst-plugins-base-libs-sections.txt:
9353 * docs/libs/tmpl/gstaudio.sgml:
9354 * docs/libs/tmpl/gstringbuffer.sgml:
9355 * gst-libs/gst/interfaces/xoverlay.c:
9356 * gst-libs/gst/video/gstvideofilter.c:
9357 * gst-libs/gst/video/gstvideosink.c:
9358 update documentation
9360 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9362 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
9363 (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
9364 (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
9365 (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
9366 (gst_multi_fd_sink_get_stats),
9367 (gst_multi_fd_sink_remove_client_link),
9368 (gst_multi_fd_sink_handle_client_read),
9369 (gst_multi_fd_sink_client_queue_data),
9370 (gst_multi_fd_sink_client_queue_caps),
9371 (gst_multi_fd_sink_client_queue_buffer),
9372 (gst_multi_fd_sink_new_client),
9373 (gst_multi_fd_sink_handle_client_write),
9374 (gst_multi_fd_sink_recover_client),
9375 (gst_multi_fd_sink_queue_buffer),
9376 (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
9377 (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
9378 (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
9379 (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
9380 * gst/tcp/gstmultifdsink.h:
9381 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
9382 (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
9383 (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
9384 (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
9385 (gst_tcp_client_sink_set_property),
9386 (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
9387 (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
9388 * gst/tcp/gsttcpclientsink.h:
9389 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
9390 (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
9391 (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
9392 (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
9393 (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
9394 (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
9395 * gst/tcp/gsttcpclientsrc.h:
9396 * gst/tcp/gsttcpplugin.c: (plugin_init):
9397 * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
9398 (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
9399 (gst_tcp_server_sink_finalize),
9400 (gst_tcp_server_sink_handle_server_read),
9401 (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
9402 (gst_tcp_server_sink_set_property),
9403 (gst_tcp_server_sink_get_property),
9404 (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
9405 * gst/tcp/gsttcpserversink.h:
9406 * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
9407 (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
9408 (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
9409 (gst_tcp_server_src_set_property),
9410 (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
9411 (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
9412 * gst/tcp/gsttcpserversrc.h:
9415 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9417 * docs/plugins/Makefile.am:
9418 * docs/plugins/gst-plugins-base-plugins.args:
9419 * docs/plugins/inspect/plugin-libvisual.xml:
9420 * gst/audioconvert/plugin.h:
9421 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
9422 (gst_audio_rate_base_init), (gst_audio_rate_class_init),
9423 (gst_audio_rate_setcaps), (gst_audio_rate_init),
9424 (gst_audio_rate_chain), (gst_audio_rate_set_property),
9425 (gst_audio_rate_get_property), (gst_audio_rate_change_state),
9427 * gst/audiotestsrc/gstaudiotestsrc.c:
9428 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
9429 (gst_audio_test_src_class_init), (gst_audio_test_src_init),
9430 (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
9431 (gst_audio_test_src_get_query_types),
9432 (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
9433 (gst_audio_test_src_create_square),
9434 (gst_audio_test_src_create_saw),
9435 (gst_audio_test_src_create_triangle),
9436 (gst_audio_test_src_create_silence),
9437 (gst_audio_test_src_create_white_noise),
9438 (gst_audio_test_src_init_pink_noise),
9439 (gst_audio_test_src_generate_pink_noise_value),
9440 (gst_audio_test_src_create_pink_noise),
9441 (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
9442 (gst_audio_test_src_create), (gst_audio_test_src_set_property),
9443 (gst_audio_test_src_get_property), (gst_audio_test_src_start),
9445 * gst/audiotestsrc/gstaudiotestsrc.h:
9446 * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
9447 (gst_sub_parse_base_init), (gst_sub_parse_class_init),
9448 (gst_sub_parse_init), (gst_sub_parse_formats),
9449 (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
9450 (convert_encoding), (get_next_line),
9451 (gst_sub_parse_data_format_autodetect),
9452 (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
9453 (gst_sub_parse_loop), (gst_sub_parse_chain),
9454 (gst_sub_parse_change_state), (gst_sub_parse_type_find),
9456 * gst/subparse/gstsubparse.h:
9457 * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
9458 (gst_video_rate_base_init), (gst_video_rate_class_init),
9459 (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
9460 (gst_video_rate_setcaps), (gst_video_rate_blank_data),
9461 (gst_video_rate_init), (gst_video_rate_event),
9462 (gst_video_rate_chain), (gst_video_rate_set_property),
9463 (gst_video_rate_get_property), (gst_video_rate_change_state),
9465 * gst/videoscale/gstvideoscale.c:
9466 (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
9467 (gst_video_scale_src_template_factory),
9468 (gst_video_scale_sink_template_factory),
9469 (gst_video_scale_get_type), (gst_video_scale_base_init),
9470 (gst_video_scale_class_init), (gst_video_scale_init),
9471 (gst_video_scale_set_property), (gst_video_scale_get_property),
9472 (gst_video_scale_transform_caps), (gst_video_scale_get_format),
9473 (gst_video_scale_prepare_size), (parse_caps),
9474 (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
9475 (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
9476 (gst_video_scale_transform), (gst_video_scale_handle_src_event),
9478 * gst/videoscale/gstvideoscale.h:
9479 * gst/videotestsrc/gstvideotestsrc.c:
9480 (gst_video_test_src_pattern_get_type),
9481 (gst_video_test_src_base_init), (gst_video_test_src_class_init),
9482 (gst_video_test_src_init), (gst_video_test_src_src_fixate),
9483 (gst_video_test_src_set_pattern),
9484 (gst_video_test_src_set_property),
9485 (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
9486 (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
9487 (gst_video_test_src_event), (gst_video_test_src_get_times),
9488 (gst_video_test_src_create), (plugin_init):
9489 * gst/videotestsrc/gstvideotestsrc.h:
9490 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
9491 (gst_video_test_src_smpte), (gst_video_test_src_snow),
9492 (gst_video_test_src_black):
9493 * gst/videotestsrc/videotestsrc.h:
9495 clean up docs a little
9497 2005-11-30 Wim Taymans <wim@fluendo.com>
9499 * gst-libs/gst/rtp/gstbasertpdepayload.h:
9500 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
9501 (gst_basertppayload_event), (gst_basertppayload_push),
9502 (gst_basertppayload_change_state):
9503 * gst-libs/gst/rtp/gstbasertppayload.h:
9506 2005-11-30 Julien MOUTTE <julien@moutte.net>
9508 * docs/libs/gst-plugins-base-libs-docs.sgml:
9509 * docs/libs/gst-plugins-base-libs-sections.txt:
9510 * gst-libs/gst/video/gstvideofilter.c:
9511 * gst-libs/gst/video/gstvideosink.c:
9512 * gst-libs/gst/video/gstvideosink.h: Adding docs.
9514 2005-11-30 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9534 * scripts/autoplugins.sh:
9537 2005-11-30 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9541 * examples/Makefile.am:
9542 * examples/capsfilter/Makefile.am:
9543 * examples/capsfilter/capsfilter1.c:
9544 * examples/gob/Makefile.am:
9545 * examples/gob/gst-identity2.gob:
9546 * examples/indexing/.cvsignore:
9547 * examples/indexing/Makefile.am:
9548 * examples/indexing/indexmpeg.c:
9549 * examples/seeking/.cvsignore:
9550 * examples/seeking/Makefile.am:
9551 * examples/seeking/cdparanoia.c:
9552 * examples/seeking/cdplayer.c:
9553 * examples/seeking/chained.c:
9554 * examples/seeking/scrubby.c:
9555 * examples/seeking/seek.c:
9556 * examples/stats/Makefile.am:
9557 * examples/stats/mp2ogg.c:
9558 * examples/switch/.cvsignore:
9559 * examples/switch/Makefile.am:
9560 * examples/switch/switcher.c:
9561 * tests/Makefile.am:
9562 * tests/check/generic/.cvsignore:
9563 * tests/check/pipelines/.cvsignore:
9564 * tests/examples/Makefile.am:
9565 * tests/examples/seek/Makefile.am:
9566 reorganize stuff under tests/
9568 2005-11-30 Edward Hervey <edward@fluendo.com>
9570 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
9571 Go away you stupid GstStaticPadTemplate memleak.
9573 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
9575 * gst-libs/gst/net/Makefile.am:
9576 * gst-libs/gst/net/README:
9577 * gst-libs/gst/net/gstnetbuffer.c:
9578 * gst-libs/gst/net/gstnetbuffer.h:
9579 this was moved to "netbuffer"
9581 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
9583 * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
9584 (gst_video_filter_class_init), (gst_video_filter_init):
9585 * gst-libs/gst/video/gstvideofilter.h:
9586 borgify name to bring in line with other classes
9588 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
9590 * gst/audioscale/.cvsignore:
9591 * gst/audioscale/Makefile.am:
9592 * gst/audioscale/README:
9593 * gst/audioscale/audioscale.vcproj:
9594 * gst/audioscale/dtof.c:
9595 * gst/audioscale/dtos.c:
9596 * gst/audioscale/functable.c:
9597 * gst/audioscale/gstaudioscale.c:
9598 * gst/audioscale/gstaudioscale.h:
9599 * gst/audioscale/private.h:
9600 * gst/audioscale/resample.c:
9601 * gst/audioscale/resample.h:
9602 * gst/audioscale/test.c:
9605 2005-11-30 Edward Hervey <edward@fluendo.com>
9607 * gst-libs/gst/netbuffer/Makefile.am:
9608 really, really tired
9610 2005-11-30 Edward Hervey <edward@fluendo.com>
9612 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
9613 Update for new GstTypeFindFactory _register()
9615 2005-11-30 Edward Hervey <edward@fluendo.com>
9617 * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir):
9618 Let's not override libgstnet from core for no reason...
9619 (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
9620 Ok, maybe not so quick next time.
9622 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
9625 * gst-libs/gst/Makefile.am:
9626 moved gst-libs/gst/net to netbuffer through CVS surgery
9627 remove old directory
9628 updating build to accomodate
9631 2005-11-29 Andy Wingo <wingo@pobox.com>
9633 * pkgconfig/gstreamer-plugins-base.pc.in:
9634 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
9635 * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
9638 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
9640 * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
9641 3rd time's the charm. Correct ref-counting for discarded buffers.
9643 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
9645 * gst/playback/gststreamselector.c:
9646 (gst_stream_selector_class_init),
9647 (gst_stream_selector_set_property),
9648 (gst_stream_selector_get_property),
9649 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
9652 2005-11-29 Tim-Philipp Müller <tim at centricular dot net>
9654 * gst/subparse/gstsubparse.c: (feed_textbuf):
9655 Don't access already unref'ed buffer.
9657 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
9659 * gst/playback/gststreamselector.c:
9660 (gst_stream_selector_class_init), (gst_stream_selector_init),
9661 (gst_stream_selector_dispose), (gst_stream_selector_set_property),
9662 (gst_stream_selector_get_property),
9663 (gst_stream_selector_get_linked_pad),
9664 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
9665 * gst/playback/gststreamselector.h:
9666 Add the active-pad property for playbin to use shortly. Ignore buffers
9667 from any other pad, returning GST_FLOW_NOT_LINKED
9669 2005-11-29 Julien MOUTTE <julien@moutte.net>
9671 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
9672 patch from bug #322704 (Alessandro Decina).
9674 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
9676 * gst-libs/gst/audio/Makefile.am:
9677 folded audiofilter into the audio library
9679 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
9681 * gst/videoscale/gstvideoscale.h:
9682 * gst/videoscale/gstvideoscale.c:
9683 remove unimplemented scale methods
9685 2005-11-28 Tim-Philipp Müller <tim at centricular dot net>
9687 * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
9690 2005-11-28 Julien MOUTTE <julien@moutte.net>
9692 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
9693 (gst_ximagesink_setcaps):
9694 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
9695 (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
9696 happens (only visible on ximagesink but bug is in xv too) set_caps was
9697 destroying the internal x[v]image used to memcpy non locally alloced
9698 buffers so that it got renewed on next _chain. The issue is that
9699 _expose will try to put that image as it reffed it in _put.
9700 Using gst_buffer_unref instead of destroy fixes it !
9702 2005-11-28 Edward Hervey <edward@fluendo.com>
9704 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
9705 (try_to_link_1), (queue_filled_cb):
9706 Better use of the queues. Start with a small size queue and only increase
9707 the size of the queues when the other queues are empty.
9709 2005-11-28 Thomas Vander Stichele <thomas at apestaart dot org>
9711 * gst-libs/gst/video/Makefile.am:
9712 compile in copied-over videofilter into the video library
9713 * gst-libs/gst/video/videosink.h:
9714 rename the header to gstvideosink.h since it's a base GstObject class
9715 * sys/ximage/ximagesink.h:
9716 * sys/xvimage/xvimagesink.h:
9719 2005-11-28 Wim Taymans <wim@fluendo.com>
9721 * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
9722 * gst/playback/gstplaybasebin.h:
9723 Prepare to handle errors betters.
9725 * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
9726 Set sinks to PAUSED first before adding and linking them so that
9727 we don't interrupt dataflow.
9729 2005-11-28 Wim Taymans <wim@fluendo.com>
9731 * gst-libs/gst/audio/TODO:
9734 * gst-libs/gst/audio/gstaudiosink.c:
9735 (gst_audioringbuffer_open_device),
9736 (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
9737 (gst_audioringbuffer_release):
9740 * gst-libs/gst/audio/gstbaseaudiosink.c:
9741 (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
9742 (gst_base_audio_sink_change_state):
9743 Slave to the master clock when going to PLAYING and unslave when
9746 * gst-libs/gst/audio/gstringbuffer.c:
9747 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
9748 (gst_ring_buffer_acquire), (gst_ring_buffer_release),
9749 (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
9750 (gst_ring_buffer_clear_all), (wait_segment),
9751 (gst_ring_buffer_commit), (gst_ring_buffer_read),
9752 (gst_ring_buffer_advance):
9753 * gst-libs/gst/audio/gstringbuffer.h:
9754 Add some docs and cleanups.
9756 2005-11-28 Julien MOUTTE <julien@moutte.net>
9758 * sys/xvimage/xvimagesink.c:
9759 (gst_xvimagesink_navigation_send_event): Fix navigation events
9760 coordinates translation with pixel aspect ratios.
9762 2005-11-28 Julien MOUTTE <julien@moutte.net>
9764 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
9765 Use calculated video geometry from _setcaps instead of buffer
9766 caps to respect pixel aspect ratio. (fixes #322388)
9768 2005-11-28 Julien MOUTTE <julien@moutte.net>
9770 * docs/libs/tmpl/gstcolorbalance.sgml:
9771 * docs/libs/tmpl/gstmixer.sgml:
9772 * docs/libs/tmpl/gstxoverlay.sgml:
9773 * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
9776 2005-11-28 Julien MOUTTE <julien@moutte.net>
9778 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
9779 Refuse to create an XvImage if we can't find the format.
9781 2005-11-28 Edward Hervey <edward@fluendo.com>
9783 * gst-libs/gst/riff/riff-media.c:
9784 (gst_riff_create_audio_template_caps):
9785 Add ATRAC3 to the list of riff-possible audio caps.
9786 I know we still don't have a plugin for atrac3, but it's saner to output
9787 that than a cryptic mimetype.
9789 2005-11-27 Edward Hervey <edward@fluendo.com>
9791 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
9792 Don't try to create a zero-sized subbuffer.
9794 2005-11-27 Julien MOUTTE <julien@moutte.net>
9796 * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
9797 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
9798 (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
9799 (gst_ximagesink_expose): Fixed a tricky race.
9800 * sys/ximage/ximagesink.h:
9801 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
9802 (gst_xvimagesink_expose): Fixed a tricky race.
9803 * sys/xvimage/xvimagesink.h:
9805 2005-11-27 Edward Hervey <edward@fluendo.com>
9807 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
9808 (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
9809 Remove unused properties, and add queues between demuxers and decoders
9810 so that a lot more files can preroll properly.
9812 2005-11-27 Thomas Vander Stichele <thomas at apestaart dot org>
9814 * gst-libs/gst/net/Makefile.am:
9815 * gst-libs/gst/rtp/Makefile.am:
9816 * gst-libs/gst/tag/Makefile.am:
9817 remove silly include
9818 * gst/tags/Makefile.am:
9819 * gst/tags/gsttagediting.c:
9820 * gst/tags/gsttageditingprivate.h:
9821 * gst/tags/tagedit.vcproj:
9822 remove directory, is as good as empty
9824 2005-11-27 Thomas Vander Stichele <thomas at apestaart dot org>
9827 added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
9828 * gst-libs/Makefile.am:
9829 * gst-libs/gst/audio/Makefile.am:
9830 * gst-libs/gst/interfaces/Makefile.am:
9831 * gst-libs/gst/net/Makefile.am:
9832 * gst-libs/gst/riff/Makefile.am:
9833 * gst-libs/gst/rtp/Makefile.am:
9834 * gst-libs/gst/tag/Makefile.am:
9835 * gst-libs/gst/video/Makefile.am:
9838 2005-11-27 Julien MOUTTE <julien@moutte.net>
9840 * docs/libs/tmpl/gstcolorbalance.sgml:
9841 * docs/libs/tmpl/gstmixer.sgml:
9842 * docs/libs/tmpl/gstxoverlay.sgml:
9843 * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
9844 * sys/ximage/ximagesink.h:
9845 * sys/xvimage/xvimagesink.h: More and more documentation.
9847 2005-11-26 Julien MOUTTE <julien@moutte.net>
9849 * docs/libs/gst-plugins-base-libs-docs.sgml:
9850 * docs/libs/gst-plugins-base-libs-sections.txt:
9851 * docs/libs/tmpl/gstcolorbalance.sgml:
9852 * docs/libs/tmpl/gstmixer.sgml:
9853 * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
9856 2005-11-26 Julien MOUTTE <julien@moutte.net>
9858 * docs/plugins/Makefile.am:
9859 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9860 * docs/plugins/gst-plugins-base-plugins-sections.txt:
9861 * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
9863 2005-11-26 Julien MOUTTE <julien@moutte.net>
9865 * docs/plugins/Makefile.am:
9866 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9867 * docs/plugins/gst-plugins-base-plugins-sections.txt:
9868 * docs/plugins/inspect/plugin-adder.xml:
9869 * docs/plugins/inspect/plugin-alsa.xml:
9870 * docs/plugins/inspect/plugin-audioconvert.xml:
9871 * docs/plugins/inspect/plugin-audiorate.xml:
9872 * docs/plugins/inspect/plugin-audioresample.xml:
9873 * docs/plugins/inspect/plugin-audiotestsrc.xml:
9874 * docs/plugins/inspect/plugin-decodebin.xml:
9875 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
9876 * docs/plugins/inspect/plugin-gnomevfs.xml:
9877 * docs/plugins/inspect/plugin-ogg.xml:
9878 * docs/plugins/inspect/plugin-playbin.xml:
9879 * docs/plugins/inspect/plugin-subparse.xml:
9880 * docs/plugins/inspect/plugin-tcp.xml:
9881 * docs/plugins/inspect/plugin-theora.xml:
9882 * docs/plugins/inspect/plugin-typefindfunctions.xml:
9883 * docs/plugins/inspect/plugin-video4linux.xml:
9884 * docs/plugins/inspect/plugin-videorate.xml:
9885 * docs/plugins/inspect/plugin-videoscale.xml:
9886 * docs/plugins/inspect/plugin-videotestsrc.xml:
9887 * docs/plugins/inspect/plugin-volume.xml:
9888 * docs/plugins/inspect/plugin-vorbis.xml:
9889 * docs/plugins/inspect/plugin-ximagesink.xml:
9890 * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
9891 * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
9893 2005-11-26 Edward Hervey <edward@fluendo.com>
9895 * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
9896 Properly return GstFlowReturn from gst_pad_push in chain functions.
9898 2005-11-25 Michael Smith <msmith@fluendo.com>
9900 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
9901 (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
9902 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
9903 (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
9904 Handle various conditions better when we don't understand a stream.
9905 Removes a heap of CRITICALs on ogg streams containing unknown data.
9907 2005-11-24 Andy Wingo <wingo@pobox.com>
9909 * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
9912 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
9914 * configure.ac: back to HEAD
9916 === release 0.9.6 ===
9918 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
9921 releasing 0.9.6, "White Eight"
9923 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
9925 * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
9926 * docs/plugins/inspect/plugin-sine.xml:
9927 remove sinesrc some more
9929 2005-11-23 Wim Taymans <wim@fluendo.com>
9931 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
9932 If we are reading too slowly, jump forward in the ringbuffer
9933 instead of blocking.
9935 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
9937 * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
9939 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
9940 * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
9941 (gst_videorate_chain):
9942 * gst/videotestsrc/gstvideotestsrc.c:
9943 (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
9944 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
9945 (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
9946 (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
9947 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
9948 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
9949 Updates for API changes
9951 2005-11-23 Wim Taymans <wim@fluendo.com>
9953 * gst-libs/gst/audio/gstbaseaudiosink.c:
9954 (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
9955 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
9956 Fix for calibration API change.
9958 2005-11-23 Michael Smith <msmith@fluendo.com>
9960 * gst-libs/gst/audio/multichannel.c:
9961 (gst_audio_get_channel_positions),
9962 (gst_audio_set_channel_positions),
9963 (gst_audio_set_structure_channel_positions_list),
9964 (gst_audio_fixate_channel_positions):
9965 Use gst_value_array_*() functions on value arrays, not
9968 2005-11-23 Edward Hervey <edward@fluendo.com>
9971 eheh, sinesrc is gone. Replacing sample srcfile by existing one.
9974 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
9976 * check/Makefile.am:
9977 * check/elements/videotestsrc.c: (setup_videotestsrc),
9978 (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
9980 add a test for videotestsrc
9982 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
9984 * gst/sine/.cvsignore:
9985 * gst/sine/Makefile.am:
9986 * gst/sine/gstsinesrc.c:
9987 * gst/sine/gstsinesrc.h:
9988 * gst/sine/sinesrc.vcproj:
9989 and remove sinesrc from the repository. Closes #321446
9991 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
9994 * gst-plugins-base.spec.in:
9995 remove sinesrc from the build
9997 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
9999 * check/Makefile.am:
10000 * check/elements/audiotestsrc.c: (setup_audiotestsrc),
10001 (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
10003 add a test for audiotestsrc, testing all waves. Even seems
10004 leak-free at first glance, nice job Stefan
10006 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
10022 Translation string updates
10024 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
10025 (gst_v4lsrc_set_caps):
10026 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10027 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10028 * sys/v4l/v4lsrc_calls.h:
10029 Improve v4lsrc, by making it work again.
10031 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
10033 * ext/libvisual/visual.c: (gst_visual_chain):
10034 Fix the fps calculations.
10036 * gst/ffmpegcolorspace/avcodec.h:
10037 Move structure element for clarity
10039 * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
10040 * gst-libs/gst/interfaces/tunernorm.h:
10041 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
10042 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
10043 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
10044 (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
10045 (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
10046 (gst_v4lmjpegsrc_getcaps):
10047 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
10048 (gst_v4lsrc_set_caps):
10049 * sys/v4l/gstv4lsrc.h:
10050 * sys/v4l/v4l_calls.c: (gst_v4l_open):
10051 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10052 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10053 * sys/v4l/v4lsrc_calls.h:
10054 Fractional framerates...
10056 2005-11-22 Wim Taymans <wim@fluendo.com>
10058 * gst-libs/gst/audio/gstbaseaudiosink.c:
10059 (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
10060 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10061 And we provide a clock by default, of course...
10063 2005-11-22 Wim Taymans <wim@fluendo.com>
10065 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
10066 This clock can be slaved to a master clock now.
10068 * gst-libs/gst/audio/gstbaseaudiosink.c:
10069 (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
10070 (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
10071 (gst_base_audio_sink_set_clock),
10072 (gst_base_audio_sink_set_property),
10073 (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
10074 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10075 * gst-libs/gst/audio/gstbaseaudiosink.h:
10076 Handle slaving the internal clock to the clock selected in the
10078 Add property to make the basesink not provide a clock.
10080 * gst-libs/gst/rtp/gstbasertpdepayload.c:
10081 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
10082 (gst_base_rtp_depayload_wait):
10083 * gst-libs/gst/rtp/gstbasertpdepayload.h:
10084 We can use the clock in GstElement, no need to store it ourselves.
10086 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
10088 * docs/libs/tmpl/gstaudio.sgml:
10090 * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
10091 (gst_paranoia_endian_get_type):
10092 * ext/theora/theoraenc.c: (gst_border_mode_get_type):
10093 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
10094 * gst/audiotestsrc/gstaudiotestsrc.c:
10095 (gst_audiostestsrc_wave_get_type):
10096 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
10097 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
10098 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
10099 (gst_sync_method_get_type), (gst_unit_type_get_type),
10100 (gst_client_status_get_type), (gst_multifdsink_class_init),
10101 (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
10102 (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
10103 (gst_multifdsink_get_property):
10104 * gst/tcp/gstmultifdsink.h:
10105 * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
10106 * gst/videotestsrc/gstvideotestsrc.c:
10107 (gst_videotestsrc_pattern_get_type):
10108 remove deprecated properties
10109 fix up enums to correctly have short lowercase dashed nicks
10111 2005-11-22 Michael Smith <msmith@fluendo.com>
10113 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
10114 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
10117 2005-11-22 Michael Smith <msmith@fluendo.com>
10119 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
10120 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
10121 Use utility method for scaling clocktime for fractional framerates.
10123 2005-11-22 Jan Schmidt <thaytan@mad.scientist.com>
10125 * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
10126 (gst_visual_chain):
10127 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
10128 * ext/theora/theoradec.c: (theora_handle_type_packet):
10129 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
10130 (theora_enc_chain):
10131 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
10132 * gst-libs/gst/video/video.c: (gst_video_frame_rate):
10133 * gst-libs/gst/video/video.h:
10134 * gst/ffmpegcolorspace/avcodec.h:
10135 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10136 (gst_ffmpeg_caps_to_pixfmt):
10137 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10138 (gst_ffmpegcsp_set_caps):
10139 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
10140 (gst_videorate_setcaps), (gst_videorate_blank_data),
10141 (gst_videorate_chain):
10142 * gst/videotestsrc/gstvideotestsrc.c:
10143 (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
10144 (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
10145 (gst_videotestsrc_event), (gst_videotestsrc_create):
10146 * gst/videotestsrc/gstvideotestsrc.h:
10147 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
10148 (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
10149 (gst_ximagesink_get_times), (gst_ximagesink_init):
10150 * sys/ximage/ximagesink.h:
10151 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
10152 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
10153 (gst_xvimagesink_get_times), (gst_xvimagesink_init):
10154 * sys/xvimage/xvimagesink.h:
10155 Convert elements to use fractions for their framerate.
10156 V4L elements to come later tonight.
10158 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
10160 * gst-libs/gst/audio/audio.c:
10161 * gst-libs/gst/audio/audio.h:
10162 remove some deprecated functions
10164 2005-11-22 Andy Wingo <wingo@pobox.com>
10166 * Update for gst_tag_setter API changes.
10168 2005-11-22 Andy Wingo <wingo@pobox.com>
10170 * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
10171 (gst_ogg_demux_perform_seek):
10172 * ext/theora/theoradec.c (theora_dec_sink_event):
10173 * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
10176 2005-11-22 Wim Taymans <wim@fluendo.com>
10178 * examples/seeking/seek.c: (main):
10179 Give higher priority to bus signals than the gtk events
10180 to fix a race condition in the segment looping.
10182 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
10184 * ext/theora/Makefile.am:
10185 * ext/vorbis/Makefile.am:
10186 * gst-libs/gst/tag/Makefile.am:
10187 * gst-plugins-base.spec.in:
10188 Rename libgsttagedit to libgsttag (#322117).
10190 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
10192 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
10193 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
10194 Call gst_x_overlay_prepare_xwindow_id() to give applications
10195 a final chance to set their own xwindow id before the video
10196 sink creates its own window.
10198 2005-11-22 Julien MOUTTE <julien@moutte.net>
10200 * sys/xvimage/xvimagesink.c:
10201 (gst_xvimagesink_navigation_send_event): Handle navigation
10202 events correcly with borders if applicable.
10204 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
10206 Patch by: Luca Ognibene
10208 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10209 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
10210 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10211 (gst_ffmpegcsp_caps_remove_format_info):
10212 * gst/ffmpegcolorspace/imgconvert.c:
10213 * gst/ffmpegcolorspace/imgconvert_template.h:
10214 Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
10215 #318353); use gst_structure_has_name().
10217 2005-11-22 Julien MOUTTE <julien@moutte.net>
10219 * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
10220 (gst_ximagesink_class_init): Add debug macros on functions.
10221 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
10222 (gst_xvimagesink_xwindow_draw_borders),
10223 (gst_xvimagesink_xvimage_put),
10224 (gst_xvimagesink_xwindow_update_geometry),
10225 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
10226 (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
10227 (gst_xvimagesink_xcontext_clear),
10228 (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
10229 (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
10230 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
10231 (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
10232 (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
10233 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
10234 * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
10235 expose while being PAUSED, out of data flow navigation events, etc..
10237 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
10239 * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
10240 * gst-libs/gst/audio/audio.h:
10241 fix prototype - wondering why the test worked regardless
10243 2005-11-21 Thomas Vander Stichele <thomas at apestaart dot org>
10245 * check/Makefile.am:
10246 * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
10247 * gst-libs/gst/audio/audio.h:
10248 add a method that returns a proper GstClockTime
10250 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10252 * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
10253 (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
10254 * gst-libs/gst/interfaces/xoverlay.h:
10255 Remove everything having to do with the desired size; add
10256 gst_x_overlay_prepare_xwindow_id() function; remove the
10257 'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
10258 post a message on the bus instead (#321816).
10260 * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
10261 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
10262 (gst_xvimagesink_xoverlay_init):
10263 Remove desired size stuff (#321816).
10265 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10267 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
10268 (mpeg2_sys_type_find), (mpeg1_sys_type_find),
10269 (mpeg_video_type_find), (mpeg_video_stream_type_find):
10270 Terminate vararg functions with NULL instead of 0 to
10273 2005-11-21 Andy Wingo <wingo@pobox.com>
10275 patch by: Sebastien Cote <sebas642@yahoo.ca>
10277 * gst-libs/gst/rtp/gstrtpbuffer.h:
10278 * gst-libs/gst/rtp/gstrtpbuffer.c
10279 (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
10281 2005-11-21 Andy Wingo <wingo@pobox.com>
10283 * gst/playback/gstplaybin.c (gen_audio_element)
10284 (gen_video_element): Use the new MISSING_PLUGIN core error
10285 category. Closes #320060.
10287 * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event):
10288 * gst/videorate/gstvideorate.c (gst_videorate_event):
10289 * ext/theora/theoradec.c (theora_dec_sink_event):
10290 * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
10293 * gst/subparse/gstsubparse.c (gst_subparse_src_event):
10294 * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
10295 stream lock changes.
10297 2005-11-21 Wim Taymans <wim@fluendo.com>
10299 * gst-libs/gst/audio/gstbaseaudiosink.c:
10300 (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
10301 (gst_base_audio_sink_provide_clock),
10302 (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
10303 (gst_base_audio_sink_change_state):
10304 * gst/audioresample/gstaudioresample.c:
10305 Segment update fix.
10307 2005-11-21 Andy Wingo <wingo@pobox.com>
10310 * *.c: Ran scripts/update-macros. Oh yes.
10312 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10314 * sys/ximage/Makefile.am:
10315 * sys/ximage/ximage.c:
10316 Rename ximage plugin to ximagesink (#321426) (Don't forget to
10317 remove your old libgstximage.* manually if necessary).
10319 2005-11-21 Michael Smith <msmith@fluendo.com>
10321 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
10322 Minimal fix for bug #320200: set the min/max bitrate in the correct
10323 units. A better fix would be to upgrade to the RATEMANAGE2
10324 interface, rather than using the deprecated interface used here, but
10325 that would require an update in our libvorbis dependency (to 1.1),
10326 which is probably undesirable.
10328 2005-11-21 Jan Schmidt <thaytan@mad.scientist.com>
10330 * ext/libvisual/visual.c: (get_buffer):
10331 * gst-libs/gst/audio/gstbaseaudiosrc.c:
10332 (gst_base_audio_src_fixate):
10333 * gst/audioconvert/gstaudioconvert.c:
10334 (gst_audio_convert_fixate_caps):
10335 * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
10336 * gst/audiotestsrc/gstaudiotestsrc.c:
10337 (gst_audiotestsrc_src_fixate):
10338 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
10339 * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
10340 * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
10341 * gst/videotestsrc/gstvideotestsrc.c:
10342 (gst_videotestsrc_src_fixate):
10343 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
10344 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
10345 Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
10349 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10351 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
10352 (gst_riff_create_iavs_caps):
10353 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
10354 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
10355 (gst_riff_parse_info):
10356 * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
10357 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
10358 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
10359 Fixes for GST_FOURCC_FORMAT API change.
10361 2005-11-21 Andy Wingo <wingo@pobox.com>
10363 patch by: Alessandro Dessina <alessandro nnva org>
10365 * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
10366 * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
10367 (gst_ogg_parse_chain):
10368 * ext/theora/theoraenc.c (theora_set_header_on_caps):
10369 * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
10370 * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
10371 gst_value_list calls on arrays. Fixes #321962.
10373 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10375 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
10376 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
10377 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
10378 * gst/adder/gstadder.c: (gst_adder_init),
10379 (gst_adder_request_new_pad), (gst_adder_collected),
10380 (gst_adder_change_state):
10381 Update for gst_collectpads_foo() to gst_collect_pads_foo()
10384 2005-11-21 Michael Smith <msmith@fluendo.com>
10386 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
10387 (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
10388 Properly handle pad_push return values.
10390 2005-11-20 Jan Schmidt <thaytan@mad.scientist.com>
10392 * gst-libs/gst/tag/Makefile.am:
10393 * gst-libs/gst/tag/gstvorbistag.c:
10394 (gst_tag_list_to_vorbiscomment_buffer):
10395 Remove obsolete vorbistag element and debug category.
10397 * gst/playback/gstplaybasebin.c: (check_queue):
10398 Don't divide by 0 when queue-threshold is 0.
10400 * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
10401 Don't modify an existing pixel-aspect-ratio if we fail to read
10404 2005-11-20 Wim Taymans <wim@fluendo.com>
10406 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
10407 (gst_vorbisenc_push_packet):
10408 GST_PAD_IS_USABLE is gone, use the return value of
10409 the push or pad_alloc_buffer instead.
10411 2005-11-18 Julien MOUTTE <julien@moutte.net>
10413 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
10414 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
10415 (gst_ximagesink_ximage_destroy),
10416 (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
10417 (gst_ximagesink_xwindow_new),
10418 (gst_ximagesink_xwindow_update_geometry),
10419 (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
10420 (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
10421 (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
10422 (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
10423 (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
10424 (gst_ximagesink_navigation_send_event),
10425 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
10426 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
10427 (gst_ximagesink_finalize), (gst_ximagesink_init),
10428 (gst_ximagesink_class_init):
10429 * sys/ximage/ximagesink.h: Refactoring of ximagesink.
10430 This new version brings correct software scaling, non flickering
10431 window while resizing, pixel aspect ratio handling, usage of
10432 hardware buffer pools, out of data flow event thread for
10433 navigation and handling of expose events even when being PAUSED,
10434 a new property to keep video aspect ratio when resizing, etc...
10436 2005-11-18 Julien MOUTTE <julien@moutte.net>
10438 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
10439 (gst_videoscale_fixate_caps): Introduce back caps fixate with
10442 2005-11-18 Edward Hervey <bilboed@dvdsrc.fluendo.com>
10444 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
10445 Unsetting IS_SINK flag from the fakesink, so decodebin
10446 never behaves as a sink.
10448 2005-11-17 Wim Taymans <wim@fluendo.com>
10450 * gst-libs/gst/audio/gstbaseaudiosrc.c:
10451 (gst_base_audio_src_change_state):
10452 Fix the audiosrc base class again, we did not unflush.
10454 2005-11-17 Julien MOUTTE <julien@moutte.net>
10456 * examples/seeking/seek.c: (make_dv_pipeline),
10457 (make_vorbis_theora_pipeline), (make_avi_pipeline),
10458 (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
10459 to ogg/vorbis/theora pipeline.
10461 2005-11-17 Wim Taymans <wim@fluendo.com>
10463 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
10464 (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
10465 (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
10466 Fix EOS on multiple streams.
10469 2005-11-16 Wim Taymans <wim@fluendo.com>
10471 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
10472 (gst_ogg_demux_perform_seek):
10473 Segment done must include stream time.
10475 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
10476 (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
10477 (gst_ogg_mux_change_state):
10478 Fix ogg muxer again.
10480 2005-11-16 Wim Taymans <wim@fluendo.com>
10482 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
10485 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
10487 * ext/libvisual/visual.c: (gst_visual_init):
10488 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
10489 * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
10490 (gst_ogg_parse_chain):
10491 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
10492 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
10493 * ext/theora/theoradec.c: (gst_theora_dec_init):
10494 * ext/theora/theoraenc.c: (gst_theora_enc_init):
10495 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
10496 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
10497 * gst/adder/gstadder.c: (gst_adder_class_init),
10498 (gst_adder_dispose):
10499 * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
10500 * gst/subparse/gstsubparse.c: (gst_subparse_init):
10501 * gst/videorate/gstvideorate.c: (gst_videorate_init):
10502 Fix a whole set of pad template leaks
10504 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
10506 * check/generic/states.c: (GST_START_TEST):
10507 fix the test so that it only checks for elements that are part of
10510 2005-11-16 Michael Smith <msmith@fluendo.com>
10512 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
10513 (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
10514 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
10515 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
10516 (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
10517 (gst_ogg_mux_change_state):
10518 Fix leaking collectpads.
10520 2005-11-16 Edward Hervey <edward@fluendo.com>
10522 * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
10523 (gst_videorate_event), (gst_videorate_chain):
10524 Handle segment seeks
10526 2005-11-16 Wim Taymans <wim@fluendo.com>
10528 * gst-libs/gst/audio/gstbaseaudiosink.c:
10529 (gst_base_audio_sink_provide_clock),
10530 (gst_base_audio_sink_change_state):
10531 Set ringbuffer to non-flushing when going to PAUSED, set to
10532 flushing again when going to READY.
10534 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
10535 (gst_ring_buffer_stop):
10536 Start in flushing mode by default.
10537 Don't set flushing in the _stop method, let the app call
10540 2005-11-16 Julien MOUTTE <julien@moutte.net>
10542 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
10543 * gst-libs/gst/video/videosink.h: Add helper function needed
10546 2005-11-16 Tim-Philipp Müller <tim at centricular dot net>
10548 * gst/videoscale/gstvideoscale.c:
10549 (gst_videoscale_handle_src_event):
10550 Don't leak reference to pad parent.
10552 2005-11-16 Wim Taymans <wim@fluendo.com>
10554 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
10555 Set ringbuffer to flushing when stopping so that we don't
10556 block on wait_segment anymore and livelock.
10558 2005-11-16 Wim Taymans <wim@fluendo.com>
10560 * examples/seeking/seek.c: (send_event), (do_seek),
10561 (loop_toggle_cb), (segment_done), (main):
10562 Added looping checkbox.
10564 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
10566 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
10567 (gst_ogg_demux_init):
10568 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
10569 (gst_vorbis_dec_init):
10570 revert unrefs, they don't pass make check
10572 2005-11-15 Johan Dahlin <johan@gnome.org>
10574 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
10575 (gst_ogg_demux_init), (gst_ogg_demux_finalize):
10576 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
10577 (gst_vorbis_dec_init):
10578 Fix pad template leaks.
10580 2005-11-15 Tim-Philipp Müller <tim at centricular dot net>
10582 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
10583 Make state change function thread safe.
10585 2005-11-15 Edward Hervey <edward@fluendo.com>
10587 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
10588 (gst_ogg_demux_class_init):
10589 Implement GstElement::send_event, so we can send seek events
10592 2005-11-14 Julien MOUTTE <julien@moutte.net>
10594 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
10595 Discovered how to take away flickering while resizing the
10596 window. Please don't put that in ximagesink, refactoring in
10599 2005-11-14 Michael Smith <msmith@fluendo.com>
10601 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
10602 (gst_multifdsink_render):
10603 Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
10605 2005-11-14 Tim-Philipp Müller <tim at centricular dot net>
10607 * gst/playback/gstplaybin.c: (gen_audio_element):
10608 Use autoaudiosink, it tends to be more widely available than
10611 2005-11-14 Andy Wingo <wingo@pobox.com>
10613 * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
10614 as well if it is available. Fixes #316442.
10616 2005-11-14 Michael Smith <msmith@fluendo.com>
10618 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
10619 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
10620 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
10621 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
10622 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
10623 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
10624 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
10625 (gst_vorbisenc_change_state):
10626 Fix a small memory leak in vorbisenc.
10627 Fix large memory leaks in oggmux, also fix lots of state change
10630 2005-11-14 Thomas Vander Stichele <thomas at apestaart dot org>
10632 * gst/videotestsrc/gstvideotestsrc.c:
10633 (gst_videotestsrc_class_init), (gst_videotestsrc_init),
10634 (gst_videotestsrc_src_fixate):
10635 move fixation to a fixate function
10636 remove negotiate function, basesrc's is good enough
10637 fixes a bug for check when using the element alone
10639 2005-11-13 Edward Hervey <edward@fluendo.com>
10641 * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
10642 (key_toggle_cb), (main):
10643 Added checkboxes for adding/removing the accurate and key_unit seek
10646 2005-11-11 Thomas Vander Stichele <thomas at apestaart dot org>
10648 * configure.ac: back to HEAD
10650 === release 0.9.5 ===
10652 2005-11-11 Thomas Vander Stichele <thomas at apestaart dot org>
10655 releasing 0.9.5, "No No Kia"
10657 2005-11-11 Edward Hervey <edward@fluendo.com>
10659 * examples/seeking/seek.c: (make_parselaunch_pipeline):
10660 Added parse-launch syntax seeking mode for the seeking example.
10661 This should help stress-test even more cases.
10662 Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
10664 2005-11-11 Tim-Philipp Müller <tim at centricular dot net>
10666 * sys/xvimage/xvimagesink.c:
10667 (gst_xvimagesink_navigation_send_event):
10668 Check whether peer pad exists before sending navigation events
10671 2005-11-11 Michael Smith <msmith@fluendo.com>
10673 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
10674 (gst_vorbisenc_buffer_from_packet):
10675 * ext/vorbis/vorbisenc.h:
10676 Set duration on encoded buffers. This allows oggmux's
10677 max_page_delay parameter to actually work.
10679 2005-11-11 Tim-Philipp Müller <tim at centricular dot net>
10681 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10682 (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
10683 (gst_ffmpegcsp_avpicture_fill):
10684 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10685 (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
10686 Make palettes work again (see #132341). Use our own macros
10689 2005-11-10 Andy Wingo <wingo@pobox.com>
10691 * gst/playback/gstplaybasebin.c (prepare_output): Fix format
10694 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
10696 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10697 (gst_ffmpegcsp_transform_caps):
10698 Prefer passthrough in transform_caps
10700 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
10702 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
10703 check for ALSA errors properly, instead of relying on ALSA's
10704 error strings to serve to the user.
10706 2005-11-10 Wim Taymans <wim@fluendo.com>
10708 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
10709 (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
10710 (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
10711 Modernise the seek code.
10713 2005-11-10 Michael Smith <msmith@fluendo.com>
10715 * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
10716 (setup_substreams), (set_active_source):
10717 Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
10718 trying to go to NULL if we failed to read a file.
10720 2005-11-10 Wim Taymans <wim@fluendo.com>
10722 * gst/audiotestsrc/gstaudiotestsrc.c:
10723 (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
10724 (gst_audiotestsrc_create):
10725 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
10726 (gst_sinesrc_get_times), (gst_sinesrc_create):
10727 * gst/videotestsrc/gstvideotestsrc.c:
10728 (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
10729 (gst_videotestsrc_create):
10730 The base class can now sync for us.
10732 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
10734 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
10735 a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
10736 name=source autoprobe=false autoprobe-fps=false copy-mode=1
10737 device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
10738 format=(fourcc)I420" ! xvimagesink
10740 2005-11-10 Tim-Philipp Müller <tim at centricular dot net>
10742 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
10743 (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
10744 (gst_sinesrc_newsegment):
10745 Send newsegment event in TIME format, set duration if
10746 num-buffers is set, fix duration querying.
10748 2005-11-10 Michael Smith <msmith@fluendo.com>
10750 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
10751 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
10752 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
10753 (gst_ogg_mux_collected):
10754 Fix EOS handling, partially. Now forwarding an EOS event once we have
10755 EOS on all pads works correctly. However, we still don't properly set
10756 EOS on the actual ogg stream pages.
10758 2005-11-09 Tim-Philipp Müller <tim at centricular dot net>
10760 * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
10761 Set elements to NULL state before disposing of them.
10763 2005-11-08 Sebastien Cote <sebas642 at yahoo dot ca>
10765 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
10767 * gst-libs/gst/rtp/gstbasertpdepayload.c:
10768 (gst_base_rtp_depayload_init),
10769 (gst_base_rtp_depayload_set_gst_timestamp):
10770 * gst-libs/gst/rtp/gstbasertpdepayload.h:
10771 We need to send a newsegment event for each instance, not
10772 just for the first instance of this class (get rid of
10773 static variable in function). (#321011).
10775 2005-11-08 Michael Smith <msmith@fluendo.com>
10777 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
10778 (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
10779 (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
10780 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
10781 Forward port rewrite of muxing strategy to 0.9 version of oggmux.
10782 This makes us mux things correctly according to the ogg muxing
10783 rules. Still not handling EOS correctly right now, though.
10785 2005-11-08 Tim-Philipp Müller <tim at centricular dot net>
10787 * gst/audioconvert/gstaudioconvert.c:
10790 2005-11-08 Tim-Philipp Müller <tim at centricular dot net>
10792 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
10793 (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
10794 Initialise segment_stop to GST_CLOCK_TIME_NONE when
10795 creating a new chain; should fix live streaming. Also
10796 add more debug output and fix a typo.
10798 2005-11-08 Brian Cameron <brian dot cameron at sun dot com>
10800 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
10802 * gst/volume/gstvolume.c: (volume_set_caps):
10803 Fix compilation on Solaris with Forte. (#320923)
10805 2005-11-08 Wim Taymans <wim@fluendo.com>
10807 * gst-libs/gst/audio/gstbaseaudiosink.c:
10808 (gst_base_audio_sink_render):
10809 No need to do a typecheck.
10811 2005-11-07 Tim-Philipp Müller <tim at centricular dot net>
10813 * ext/alsa/gstalsa.h:
10814 We register a debug category, so let's use it.
10816 2005-11-04 Zeeshan Ali <zeenix@gmail.com>
10818 * gst-libs/gst/rtp/gstbasertpdepayload.c:
10819 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
10820 Fixed a small problem.
10822 2005-11-04 Wim Taymans <wim@fluendo.com>
10824 * examples/seeking/Makefile.am:
10825 * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
10826 (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
10827 (make_playerbin_pipeline), (format_value), (update_scale),
10828 (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
10829 (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
10830 (print_usage), (main):
10831 Added app for playback speed testing.
10833 * examples/seeking/seek.c: (dynamic_link),
10834 (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
10835 (make_mpeg_pipeline), (do_seek), (set_update_scale),
10836 (message_received), (main):
10837 Updated seek example.
10839 2005-11-04 Zeeshan Ali <zeenix@gmail.com>
10841 * gst-libs/gst/rtp/gstbasertpdepayload.c:
10842 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
10843 (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
10844 (gst_base_rtp_depayload_set_clock):
10845 * gst-libs/gst/rtp/gstbasertpdepayload.h:
10846 Don't sleep on the bench (system clock) when you have a nice
10847 comfortable bed (Gstreamer clock) to sleep on.
10849 2005-11-03 Wim Taymans <wim@fluendo.com>
10851 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
10852 (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
10853 (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
10854 Handle the case where a pad_block failed.
10856 2005-11-02 Sebastien Cote <sebas642@yahoo.ca>
10858 reviewed by: Zeeshan Ali <zeenix@gmail.com>
10860 * gst-libs/gst/rtp/gstbasertpdepayload.c:
10861 (gst_base_rtp_depayload_add_to_queue),
10862 (gst_base_rtp_depayload_push),
10863 (gst_base_rtp_depayload_set_gst_timestamp),
10864 (gst_base_rtp_depayload_queue_release):
10865 Fixes some bugs in the depayloader's queuing/de-queueing code.
10867 2005-10-31 Michael Smith <msmith@fluendo.com>
10869 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
10870 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
10871 (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
10872 Patch from Alessandro Decina <alessandro@nnva.org>.
10873 Make oggdemux only find the final time in a chain, not per-pad,
10874 since the per-pad information can be very expensive to locate, and
10875 it isn't used anywhere. This makes reading a file containing
10876 OggSkeleton reasonably fast.
10877 Also, make chain finding work when there are logical bitstreams that
10878 can't be decoded. Fixes #319110.
10880 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
10882 * gst-libs/gst/rtp/gstbasertpdepayload.c:
10883 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
10884 (gst_base_rtp_depayload_chain),
10885 (gst_base_rtp_depayload_add_to_queue),
10886 (gst_base_rtp_depayload_push),
10887 (gst_base_rtp_depayload_set_gst_timestamp),
10888 (gst_base_rtp_depayload_queue_release),
10889 (gst_base_rtp_depayload_start_thread),
10890 (gst_base_rtp_depayload_set_property),
10891 (gst_base_rtp_depayload_get_property):
10892 * gst-libs/gst/rtp/gstbasertpdepayload.h:
10893 Some random fixes, to fullfill the desires of thomas.
10895 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
10897 * gst-libs/gst/rtp/gstbasertpdepayload.c:
10898 (gst_base_rtp_depayload_add_to_queue),
10899 (gst_base_rtp_depayload_push):
10900 Fixed the queueing algorithm.
10902 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
10904 * gst-libs/gst/rtp/gstbasertpdepayload.c:
10905 (gst_base_rtp_depayload_push):
10908 2005-10-31 Wim Taymans <wim@fluendo.com>
10910 * gst-libs/gst/audio/gstringbuffer.h:
10913 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10914 (gst_ffmpeg_caps_to_pixfmt):
10915 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10916 (gst_ffmpegcsp_set_caps):
10917 Some more comments.
10918 Handle missing required caps fields better.
10920 2005-10-31 Wim Taymans <wim@fluendo.com>
10922 * gst-libs/gst/audio/gstbaseaudiosink.c:
10923 (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
10924 (gst_base_audio_sink_render):
10925 * gst-libs/gst/audio/gstringbuffer.c:
10926 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
10927 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
10928 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
10929 (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
10930 (gst_ring_buffer_read):
10931 * gst-libs/gst/audio/gstringbuffer.h:
10932 Add flushing mode to the ringbuffer so that it in all cases does
10933 not try to handle more audio. This makes sure it does not try to
10934 block anymore when flushing and fixes a livelock.
10936 2005-10-29 Tim-Philipp Müller <tim at centricular dot net>
10938 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
10939 (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
10940 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
10941 Explicitly check for -1 values before doing a conversion
10942 and always map them to -1. (#315545)
10944 2005-10-28 Thomas Vander Stichele <thomas at apestaart dot org>
10946 * gst/playback/gstplaybin.c: (gen_video_element):
10947 first try autovideosink, then xvimagesink, then error out
10949 add translatable file
10964 update translations
10966 2005-10-27 Philippe Khalaf <burger at speedy dot org>
10968 * gst-libs/gst/rtp/gstbasedepayload.c:
10969 * gst-libs/gst/rtp/gstbasedepayload.h:
10972 2005-10-27 Tim-Philipp Müller <tim at centricular dot net>
10974 * gst/playback/.cvsignore:
10975 * gst/playback/decodetest.c:
10976 * gst/playback/test3.c:
10977 Port these two tests as well.
10979 2005-10-27 Wim Taymans <wim@fluendo.com>
10981 * ext/theora/theoradec.c: (theora_dec_src_query),
10982 (theora_dec_sink_event):
10983 * ext/theora/theoraenc.c: (theora_enc_sink_event),
10984 (theora_enc_change_state):
10985 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
10986 (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
10987 Take proper locks when handling events.
10989 2005-10-27 Wim Taymans <wim@fluendo.com>
10991 * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
10992 (gst_adder_change_state):
10993 Fix timestamps and fix deadlock when stopping the collectpads.
10995 2005-10-27 Zeeshan Ali <zeenix@gmail.com>
10997 * gst-libs/gst/rtp/gstrtpbuffer.h:
10998 Declaring the payload types as strings too so that they can be used
10999 in the padtemplate inialization.
11001 2005-10-26 Andre Magalhaes <andrunko@gmail.com>
11003 reviewed by: Zeeshan Ali <zeenix@gmail.com>
11005 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11006 (gst_base_rtp_depayload_class_init):
11007 Fixes a small but nasty bug. The derived elements no longer segfaults
11010 2005-10-26 Michael Smith <msmith@fluendo.com>
11012 * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
11013 When clearing an audioconvert context, set tmpbufsize to zero, so
11014 we'll allocate it again later if required.
11015 This fixes audioconvert re-negotiating formats, which previously
11016 segfaulted with a NULL destination buffer.
11018 2005-10-26 Zeeshan Ali <zeenix@gmail.com>
11020 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11021 (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
11022 (gst_base_rtp_depayload_set_gst_timestamp),
11023 (gst_base_rtp_depayload_queue_release):
11024 Fixed a smalll memleak.
11026 2005-10-26 Zeeshan Ali <zeenix@gmail.com>
11027 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11028 (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
11029 (gst_base_rtp_depayload_finalize),
11030 (gst_base_rtp_depayload_setcaps),
11031 (gst_base_rtp_depayload_add_to_queue),
11032 (gst_base_rtp_depayload_push),
11033 (gst_base_rtp_depayload_set_gst_timestamp),
11034 (gst_base_rtp_depayload_queue_release),
11035 (gst_base_rtp_depayload_thread),
11036 (gst_base_rtp_depayload_change_state):
11037 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11038 Changed the C++ comments to C comments
11040 2005-10-26 Tim-Philipp Müller <tim at centricular dot net>
11042 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
11043 * gst/tcp/gsttcpclientsrc.h:
11044 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
11045 * gst/tcp/gsttcpserversrc.h:
11046 Remove unused 'curoffset' structure member.
11048 2005-10-25 Zeeshan Ali <zeenix@gmail.com>
11050 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11051 (gst_base_rtp_depayload_base_init),
11052 (gst_base_rtp_depayload_finalize):
11053 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11054 * gst-libs/gst/rtp/gstbasertppayload.h:
11055 The pad-template on the sinkpad should be set by the derived classes.
11056 Also added some useful macros.
11058 2005-10-24 Wim Taymans <wim@fluendo.com>
11060 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
11061 Correctly flush decoder samples even if we could not
11062 copy them to an output buffer. Fixes #319618.
11064 2005-10-24 Julien MOUTTE <julien@moutte.net>
11066 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
11067 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
11068 the caps against our xcontext caps.
11070 2005-10-24 Wim Taymans <wim@fluendo.com>
11072 * gst-libs/gst/audio/gstbaseaudiosink.c:
11073 (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
11075 Use sync property from baseclass to disable sync.
11077 2005-10-24 Wim Taymans <wim@fluendo.com>
11079 * gst-libs/gst/audio/gstbaseaudiosink.c:
11080 (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
11081 Buffers with no timestamps get aligned with previous buffers or
11082 on underrun, played ASAP.
11084 2005-10-24 Julien MOUTTE <julien@moutte.net>
11086 * gst-libs/gst/video/video.h:
11087 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11088 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
11089 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
11090 here comes my change on caps for framerate and geometry range.
11091 We are now accepting 1 to MAXINT for width and height, and from
11092 0.0 to MAXDOUBLE for framerate. That allows duration less png frames
11093 to be blended correctly in videomixer.
11095 2005-10-24 Thomas Vander Stichele <thomas at apestaart dot org>
11100 === release 0.9.4 ===
11102 2005-10-23 Thomas Vander Stichele <thomas at apestaart dot org>
11107 releasing 0.9.4, "Velociraptor"
11109 2005-10-23 Thomas Vander Stichele <thomas at apestaart dot org>
11111 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
11115 2005-10-21 Wim Taymans <wim@fluendo.com>
11117 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11118 (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
11119 (pad_blocked), (close_pad_link), (new_pad):
11120 Don't try to remove elements twice.
11122 2005-10-21 Wim Taymans <wim@fluendo.com>
11124 * ext/theora/theoradec.c: (theora_dec_src_query),
11125 (theora_dec_sink_event):
11126 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11127 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
11128 (vorbis_handle_data_packet):
11129 * ext/vorbis/vorbisdec.h:
11132 * gst-libs/gst/audio/gstbaseaudiosink.c:
11133 (gst_base_audio_sink_render):
11134 Don't try to sync on buffers without a timestamp.
11136 2005-10-21 Wim Taymans <wim@fluendo.com>
11138 * ext/theora/theoradec.c: (theora_dec_src_query),
11139 (theora_dec_sink_event):
11140 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11141 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
11142 (vorbis_handle_data_packet):
11143 * ext/vorbis/vorbisdec.h:
11146 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
11148 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
11149 (gst_vorbisenc_src_query):
11150 Implement position and duration queries.
11152 * gst/playback/test3.c: (update_scale), (main):
11153 Fix for async state changes and print nicer output.
11155 2005-10-20 Wim Taymans <wim@fluendo.com>
11157 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11158 (dump_element_stats), (main):
11159 * gst/playback/test6.c: (main):
11162 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
11164 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
11165 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
11166 Don't use functions for position queries when handling
11169 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
11171 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11172 (vorbis_handle_data_packet), (vorbis_dec_chain),
11173 (vorbis_dec_change_state):
11174 * ext/vorbis/vorbisdec.h:
11175 Vorbis streams can be embedded in other container formats
11176 than ogg, container formats where the demuxer might set
11177 timestamps on encoded vorbis buffers instead of those silly
11178 granulepos thingies. In short: make vorbisdec handle
11179 timestamps on incoming buffers as well.
11181 2005-10-20 Wim Taymans <wim@fluendo.com>
11183 * gst/playback/gstplaybasebin.c: (group_destroy),
11184 (gst_play_base_bin_change_state):
11186 Handle case where playbasebin is now ASYNC because
11189 2005-10-19 Tim-Philipp Müller <tim at centricular dot net>
11191 * gst/audioconvert/Makefile.am:
11192 * gst/audioconvert/bufferframesconvert.c:
11193 * gst/audioconvert/plugin.c: (plugin_init):
11194 * gst/audioconvert/plugin.h:
11195 And bye bye buffer-frames-convert
11197 2005-10-19 Wim Taymans <wim@fluendo.com>
11199 * check/elements/audioconvert.c:
11200 * docs/libs/tmpl/gstaudio.sgml:
11201 * docs/libs/tmpl/gstcolorbalance.sgml:
11202 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11203 (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
11204 * ext/vorbis/vorbisenc.c: (raw_caps_factory):
11205 * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
11206 * gst-libs/gst/audio/audio.h:
11207 * gst/audioconvert/audioconvert.h:
11208 * gst/audioconvert/gstaudioconvert.c:
11209 (gst_audio_convert_parse_caps):
11210 * gst/volume/gstvolume.c:
11211 Bye bye buffer-frames.
11213 2005-10-19 Wim Taymans <wim@fluendo.com>
11215 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
11216 (query_positions_elems), (query_positions_pads), (update_scale),
11217 (do_seek), (set_update_scale), (message_received), (main):
11218 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
11219 (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
11220 (gst_ogg_demux_loop):
11221 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
11222 * ext/theora/theoradec.c: (theora_dec_src_query),
11223 (theora_dec_sink_event):
11224 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11225 (vorbis_dec_sink_event), (vorbis_handle_data_packet):
11226 * gst/adder/gstadder.c: (gst_adder_query):
11227 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
11228 * gst/playback/test3.c: (update_scale):
11229 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11230 (dump_element_stats), (main):
11231 * gst/playback/test6.c: (main):
11232 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
11235 2005-10-19 Tim-Philipp Müller <tim at centricular dot net>
11237 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
11238 (xml_check_first_element), (xml_type_find), (smil_type_find),
11240 Add typefinding for SMIL and for generic XML. Based on patch by
11241 Akos Maroy (#308663).
11243 2005-10-18 Wim Taymans <wim@fluendo.com>
11245 * gst/playback/Makefile.am:
11246 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11247 (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
11248 (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
11249 (try_to_link_1), (new_pad), (no_more_pads), (type_found),
11250 (gst_decode_bin_change_state):
11251 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
11252 (gst_play_bin_send_event_to_sink):
11253 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11254 (dump_element_stats), (main):
11255 * gst/playback/test6.c: (main):
11256 Make playbin async, it'll commit state to paused when all streams
11259 Added test6.c to show async behaviour.
11261 2005-10-18 Wim Taymans <wim@fluendo.com>
11263 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
11264 (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
11265 Fix for segment-start/stop API change.
11267 2005-10-18 Wim Taymans <wim@fluendo.com>
11269 * check/Makefile.am:
11270 * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
11272 Add future test for clock selection.
11274 2005-10-18 Wim Taymans <wim@fluendo.com>
11276 * ext/alsa/gstalsasink.c: (gst_alsasink_init),
11277 (gst_alsasink_close):
11278 Set handle to NULL.
11280 * gst-libs/gst/audio/gstringbuffer.c:
11281 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
11282 (gst_ring_buffer_acquire), (gst_ring_buffer_release),
11283 (gst_ring_buffer_start), (gst_ring_buffer_pause),
11284 (gst_ring_buffer_stop), (gst_ring_buffer_commit),
11285 (gst_ring_buffer_read):
11288 2005-10-17 Stefan Kost <ensonic@users.sf.net>
11290 * gst/audiotestsrc/Makefile.am:
11291 * gst/sine/Makefile.am:
11292 * gst/volume/Makefile.am:
11293 fix broken build of controllerized plugins
11295 2005-10-17 Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
11297 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
11299 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
11300 (gst_riff_create_video_template_caps):
11301 Add support for Indeo-3 (IV32).
11303 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
11308 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
11310 * gst-libs/gst/video/video.c: (gst_video_get_size):
11311 * gst/audiotestsrc/gstaudiotestsrc.c:
11314 2005-10-17 Andy Wingo <wingo@pobox.com>
11316 * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
11317 with the collectpads change.
11318 (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
11320 * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
11322 * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
11324 * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
11325 alloc_buffer flow return to callers.
11326 (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
11327 change. Fix some memleaks in theoraenc.
11329 * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
11330 in strange circumstance.
11332 2005-10-17 Julien MOUTTE <julien@moutte.net>
11334 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11335 (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
11336 from caps, let's use the caps...
11338 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
11341 put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
11343 2005-10-16 Thomas Vander Stichele <thomas at apestaart dot org>
11345 * gst-libs/gst/interfaces/Makefile.am:
11348 2005-10-16 Andy Wingo <wingo@pobox.com>
11350 * gst/playback/gstdecodebin.c
11351 (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
11353 (try_to_link_1): Increase kraziness level.
11355 2005-10-16 Thomas Vander Stichele <thomas at apestaart dot org>
11358 restructure like the core one
11359 * gst-libs/gst/audio/Makefile.am:
11360 * gst-libs/gst/interfaces/Makefile.am:
11361 * gst-libs/gst/net/Makefile.am:
11362 * gst-libs/gst/riff/Makefile.am:
11363 * gst-libs/gst/rtp/Makefile.am:
11364 * gst-libs/gst/tag/Makefile.am:
11365 * gst-libs/gst/video/Makefile.am:
11366 use correct linker flags, now the libs are properly versioned
11367 * check/elements/audioconvert.c: (verify_convert):
11368 * ext/alsa/gstalsaplugin.c:
11369 * ext/cdparanoia/gstcdparanoia.c:
11370 * ext/gnomevfs/gstgnomevfs.c:
11371 * ext/libvisual/visual.c:
11372 * ext/ogg/gstogg.c:
11373 * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
11374 * ext/theora/theora.c:
11375 * ext/vorbis/vorbis.c:
11376 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
11377 * gst-libs/gst/tag/gsttagediting.c:
11378 * gst-libs/gst/video/video.c:
11379 * gst/adder/gstadder.c:
11380 * gst/audioconvert/plugin.c:
11381 * gst/audiorate/gstaudiorate.c:
11382 * gst/audioresample/gstaudioresample.c:
11383 * gst/audioresample/resample_ref.c: (resample_scale_ref):
11384 * gst/audioscale/gstaudioscale.c:
11385 * gst/audioscale/resample.c:
11386 * gst/audiotestsrc/gstaudiotestsrc.c:
11387 * gst/ffmpegcolorspace/gstffmpeg.c:
11388 * gst/playback/gstdecodebin.c: (close_pad_link):
11389 * gst/playback/gstplaybin.c: (gen_video_element),
11390 (gen_audio_element):
11391 * gst/sine/gstsinesrc.c:
11392 * gst/subparse/gstsubparse.c:
11393 * gst/tags/gsttagediting.c:
11394 * gst/tcp/gsttcpplugin.c:
11395 * gst/typefind/gsttypefindfunctions.c:
11396 * gst/videorate/gstvideorate.c:
11397 * gst/videoscale/gstvideoscale.c:
11398 * gst/videotestsrc/gstvideotestsrc.c:
11399 * gst/volume/gstvolume.c:
11400 * sys/v4l/gstv4l.c:
11401 * sys/ximage/ximage.c:
11402 * sys/xvimage/xvimagesink.c:
11405 2005-10-13 Tim-Philipp Müller <tim at centricular dot net>
11407 * ext/vorbis/vorbisenc.c:
11408 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
11409 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
11410 (gst_tag_to_vorbis_comments):
11411 Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
11413 2005-10-13 Stefan Kost <ensonic@users.sf.net>
11415 * examples/stats/mp2ogg.c:
11416 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11419 2005-10-13 Michael Smith <msmith@fluendo.com>
11421 * ext/ogg/gstoggmux.c:
11422 Use magic glib macros to define constants as 64 bit, to ensure
11423 appropriate vararg passing.
11425 2005-10-13 Michael Smith <msmith@fluendo.com>
11427 * ext/ogg/gstoggmux.c:
11428 * gst/audioconvert/audioconvert.c: (float):
11429 Don't use LL suffix, as it's not portable, and neither of these
11430 uses required it anyway.
11432 2005-10-12 Stefan Kost <ensonic@users.sf.net>
11434 * examples/indexing/indexmpeg.c: (main):
11435 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
11436 (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
11437 (cdparanoia_convert), (cdparanoia_query):
11438 * ext/cdparanoia/gstcdparanoia.h:
11439 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
11440 (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
11441 (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
11442 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
11443 * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
11444 * gst/playback/gststreamselector.c: (gst_stream_selector_init):
11445 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
11446 (gst_multifdsink_render), (gst_multifdsink_start),
11447 (gst_multifdsink_stop):
11448 * gst/tcp/gstmultifdsink.h:
11449 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
11450 (gst_tcpclientsink_render), (gst_tcpclientsink_start),
11451 (gst_tcpclientsink_stop):
11452 * gst/tcp/gsttcpclientsink.h:
11453 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
11454 (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
11455 (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
11456 * gst/tcp/gsttcpclientsrc.h:
11457 * gst/tcp/gsttcpserversink.h:
11458 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
11459 (gst_tcpserversrc_create), (gst_tcpserversrc_start),
11460 (gst_tcpserversrc_stop):
11461 * gst/tcp/gsttcpserversrc.h:
11462 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
11463 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
11464 * sys/ximage/ximagesink.c: (gst_ximagesink_init):
11465 renamed GST_FLAGS macros to GST_OBJECT_FLAGS
11466 moved bitshift from macro to enum definition
11468 2005-10-12 Wim Taymans <wim@fluendo.com>
11470 * examples/seeking/Makefile.am:
11473 2005-10-12 Wim Taymans <wim@fluendo.com>
11475 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
11476 (gst_ring_buffer_read), (gst_ring_buffer_clear):
11477 Don't assert on normal stuff.
11479 * gst/playback/gstplaybin.c: (do_playbin_seek):
11482 2005-10-12 Wim Taymans <wim@fluendo.com>
11484 * check/pipelines/simple_launch_lines.c: (run_pipeline):
11485 * examples/seeking/Makefile.am:
11486 * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
11487 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
11488 (do_seek), (set_update_scale), (message_received), (main):
11489 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
11490 (gst_ring_buffer_read), (gst_ring_buffer_clear):
11491 Update for _get_state() API change.
11493 2005-10-11 Wim Taymans <wim@fluendo.com>
11495 * gst-libs/gst/audio/gstbaseaudiosink.c:
11496 (gst_base_audio_sink_render):
11497 * gst-libs/gst/audio/gstbaseaudiosrc.c:
11498 (gst_base_audio_src_create):
11499 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
11500 (gst_ring_buffer_read):
11502 Commit and read from ringbuffer in samples rather than bytes.
11504 2005-10-11 Wim Taymans <wim@fluendo.com>
11506 * gst-libs/gst/audio/gstbaseaudiosink.c:
11507 (gst_base_audio_sink_render):
11508 Respect segment rate and accum when scheduling samples.
11510 2005-10-11 Julien MOUTTE <julien@moutte.net>
11512 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
11513 (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
11514 EOS correctly, that needs more work.
11516 2005-10-11 Wim Taymans <wim@fluendo.com>
11518 * check/generic/states.c: (GST_START_TEST):
11519 remove old property.
11521 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
11522 (gst_ogg_demux_perform_seek):
11523 * ext/theora/theoradec.c: (theora_dec_sink_event):
11524 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11525 (vorbis_handle_data_packet):
11526 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11527 (gst_base_rtp_depayload_set_gst_timestamp):
11528 * gst/videorate/gstvideorate.c: (gst_videorate_event):
11529 Update for newsegment API change.
11531 2005-10-11 Michael Smith <msmith@fluendo.com>
11533 * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
11534 (do_playbin_seek), (gst_play_bin_send_event):
11535 Override send_event differently, so that we can takes bits of
11536 functionality from GstPipeline (special handling for seeks,
11537 including pausing/resuming, and resetting stream time) and still get
11538 the appropriate behaviour of only forwarding event to a single sink,
11539 rather than all of them.
11540 Unfortunately requires a lot of code duplication, but the
11541 alternatives are equally ugly in the end.
11543 2005-10-11 Thomas Vander Stichele <thomas at apestaart dot org>
11545 * check/elements/audioconvert.c: (setup_audioconvert),
11546 (cleanup_audioconvert), (get_int_caps), (verify_convert),
11547 (GST_START_TEST), (audioconvert_suite):
11548 clean up tests a little, fix some leaks.
11550 2005-10-10 Wim Taymans <wim@fluendo.com>
11552 * ext/alsa/gstalsasink.c:
11553 Also allow unsigned int.
11555 * gst-libs/gst/audio/gstbaseaudiosrc.c:
11556 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
11559 2005-10-10 Wim Taymans <wim@fluendo.com>
11561 * check/pipelines/simple_launch_lines.c: (run_pipeline):
11562 Small update, use API as stated in design docs.
11564 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
11565 (update_scale), (do_seek), (seek_cb), (set_update_scale),
11566 (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
11567 (message_received), (main):
11568 Updated seek example for GOption. Some usability improvements.
11570 2005-10-10 Wim Taymans <wim@fluendo.com>
11572 * gst/audioconvert/audioconvert.h:
11573 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
11574 (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
11575 Alloc temp storage somewhere else where we can do it more
11578 2005-10-10 Wim Taymans <wim@fluendo.com>
11580 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
11581 (gst_tcpserversrc_start):
11582 Don't block in accept while doing the state change, move
11583 to poll and make cancellable.
11585 2005-10-09 Philippe Khalaf <burger@speedy.org>
11587 * gst-libs/gst/rtp/rtpbasedepayload.c:
11588 Set timestamp and add queue delay to timestamp
11589 * gst-libs/gst/rtp/rtpbuffer.h:
11590 Set correct payload type for h263
11592 2005-10-09 Stefan Kost <ensonic@users.sf.net>
11594 * gst/audiotestsrc/gstaudiotestsrc.c:
11595 (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
11596 (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
11597 (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
11598 (gst_audiotestsrc_create_triangle),
11599 (gst_audiotestsrc_create_silence),
11600 (gst_audiotestsrc_create_white_noise),
11601 (gst_audiotestsrc_init_pink_noise),
11602 (gst_audiotestsrc_generate_pink_noise_value),
11603 (gst_audiotestsrc_create_pink_noise),
11604 (gst_audiotestsrc_change_wave):
11605 * gst/audiotestsrc/gstaudiotestsrc.h:
11606 fixed typo, added pink noise
11608 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
11610 * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
11612 Add wavpack and spc typefind functions from 0.8 branch.
11614 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
11616 * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
11617 (ar_type_find), (msdos_type_find), (plugin_init):
11618 Add typefind functions for tar archives, ar archives,
11619 RAR archives, and msdos-executables (dlls, exe, etc.).
11620 Some of those would be wrongly identified as mpeg
11621 streams of some sort before (#315550).
11623 2005-10-09 Stefan Kost <ensonic@users.sf.net>
11626 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
11627 * docs/plugins/gst-plugins-base-plugins-sections.txt:
11628 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
11629 * gst/audiotestsrc/Makefile.am:
11630 * gst/audiotestsrc/gstaudiotestsrc.c:
11631 (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
11632 (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
11633 (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
11634 (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
11635 (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
11636 (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
11637 (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
11638 (gst_audiotestsrc_create_silence),
11639 (gst_audiotestsrc_create_white_noise),
11640 (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
11641 (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
11642 (gst_audiotestsrc_start), (plugin_init):
11643 * gst/audiotestsrc/gstaudiotestsrc.h:
11644 add new plugin and element
11645 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
11648 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
11650 * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
11651 (gst_adder_init), (gst_adder_request_new_pad),
11652 (gst_adder_change_state):
11653 Add query function to source pad, so adder reports the correct
11654 time/sample position when queried (#315457); fix state change
11655 function; use GST_DEBUG_FUNCPTR() for pad functions.
11657 2005-10-08 Thomas Vander Stichele <thomas at apestaart dot org>
11659 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
11660 Fix leaks in typefind registration
11661 Clean up the gratuitous commenting and whitespacing a little
11663 2005-10-08 Wim Taymans <wim@fluendo.com>
11665 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
11666 Only actually wait for the thread to be stopped if it's
11669 2005-10-08 Wim Taymans <wim@fluendo.com>
11671 * gst-libs/gst/audio/gstbaseaudiosink.c:
11672 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
11673 If we receive EOS we can start playback of what we had.
11675 2005-10-08 Wim Taymans <wim@fluendo.com>
11677 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
11678 (gst_multifdsink_finalize), (multifdsink_hash_remove),
11679 (gst_multifdsink_stop):
11680 Fix crasher when going to NULL multiple times.
11682 2005-10-06 Wim Taymans <wim@fluendo.com>
11684 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
11685 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
11686 * gst-libs/gst/audio/gstbaseaudiosrc.h:
11687 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
11688 patch from Edgard Lima <edgard.lima@indt.org.br>
11689 Fixed gstbaseaudiosrc adding ring buffer sync to it.
11691 2005-10-06 Wim Taymans <wim@fluendo.com>
11693 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
11694 Report the FLOW_RETURN as string in the error message.
11696 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
11697 Don't assert when clearing an unnegotiated buffer.
11699 2005-10-04 Michael Smith <msmith@fluendo.com>
11701 * gst/playback/gstplaybasebin.c: (group_destroy),
11702 (gen_preroll_element), (remove_groups), (setup_source):
11703 * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
11704 (setup_sinks), (gst_play_bin_send_event),
11705 (gst_play_bin_change_state):
11706 Set state to NULL before removing from bin. Fix refcounting.
11708 2005-10-04 Michael Smith <msmith@fluendo.com>
11710 * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
11711 Correct refcounting in send_event() function. Previously was wrong
11712 if the first sink was unable to handle the event.
11714 2005-10-03 Thomas Vander Stichele <thomas at apestaart dot org>
11717 back to development
11719 === release 0.9.3 ===
11721 2005-10-03 Thomas Vander Stichele <thomas at apestaart dot org>
11724 Releasing 0.9.3, "De Facto"
11726 2005-10-03 Andy Wingo <wingo@pobox.com>
11728 * gst/playback/gstdecodebin.c (try_to_link_1)
11729 (remove_element_chain): set element to NULL before removing it.
11731 2005-10-02 Johan Dahlin <johan@gnome.org>
11733 * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols):
11734 protect gst_gnomevfs_get_supported_uris by a mutex, to make it
11737 2005-10-02 Andy Wingo <wingo@pobox.com>
11739 * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear)
11740 (gst_ring_buffer_prepare_read):
11741 * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
11744 2005-09-29 Wim Taymans <wim@fluendo.com>
11746 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
11747 * ext/theora/theoradec.c: (theora_handle_data_packet):
11748 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
11749 Propagate error codes from alloc_buffer too.
11751 2005-09-29 Wim Taymans <wim@fluendo.com>
11753 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
11756 * gst/playback/Makefile.am:
11757 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11758 (dump_element_stats), (main):
11759 Added example stream introspection code.
11761 2005-09-28 Stefan Kost <ensonic@users.sf.net>
11763 * gst/adder/gstadder.c: (gst_adder_collected):
11764 fix adder for float elements
11766 2005-09-28 Wim Taymans <wim@fluendo.com>
11768 * gst-libs/gst/audio/gstbaseaudiosink.c:
11769 (gst_base_audio_sink_class_init),
11770 (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
11771 * gst-libs/gst/audio/gstbaseaudiosrc.c:
11772 (gst_base_audio_src_class_init),
11773 (gst_base_audio_src_provide_clock):
11774 get_clock -> provide_clock
11776 2005-09-28 Andy Wingo <wingo@pobox.com>
11778 * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
11781 * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
11784 * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
11785 Actually add the pad template.
11786 (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
11788 * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
11791 * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
11792 from fdsrc. Get caps in create() instead of start() so it can be
11793 interrupted. Interruption somewhat untested.
11795 * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
11796 Proper EOS handling.
11798 2005-09-27 Andy Wingo <wingo@pobox.com>
11800 * gst/tcp/gsttcpclientsrc.c: Cleaned up.
11802 * gst/tcp/gsttcpserversrc.c: Cleaned up.
11804 * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
11806 * gst/tcp/gsttcp.h:
11807 * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
11808 out of tcpclientsrc.c. Cancellable.
11809 (gst_tcp_socket_read): Made private, cancellable, with better
11810 diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
11811 (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
11812 whole buffer, and better diagnostics.
11813 (gst_tcp_gdp_read_caps): Same.
11815 * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
11817 2005-09-26 Andy Wingo <wingo@pobox.com>
11819 * gst/sine/gstsinesrc.h:
11820 * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
11821 change the 'sync' property to 'is-live' and implement it halfway,
11822 update for controller api change.
11824 * gst/volume/gstvolume.c (volume_transform_ip): Update for
11825 controller api change.
11827 2005-09-24 Wim Taymans <wim@fluendo.com>
11829 * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
11830 * gst-libs/gst/audio/gstaudiosink.c:
11831 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
11832 (gst_audioringbuffer_stop):
11833 * gst-libs/gst/audio/gstbaseaudiosink.c:
11834 (gst_base_audio_sink_event), (gst_base_audio_sink_render),
11835 (gst_base_audio_sink_change_state):
11836 * gst-libs/gst/audio/gstbaseaudiosink.h:
11837 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
11838 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
11839 (gst_ring_buffer_commit), (gst_ring_buffer_read):
11840 * gst-libs/gst/audio/gstringbuffer.h:
11841 Fix sync again. Moved sample alignment to basesink.
11843 2005-09-23 Thomas Vander Stichele <thomas at apestaart dot org>
11845 * docs/plugins/Makefile.am:
11846 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
11847 * docs/plugins/gst-plugins-base-plugins-sections.txt:
11848 * gst/volume/gstvolume.c:
11850 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
11851 * gst-libs/gst/audio/audio.h:
11852 add conversion macros for frames <-> clocktime
11854 2005-09-23 David Schleef <ds@schleef.org>
11856 * gst/audioresample/Makefile.am:
11857 * gst/audioresample/debug.h:
11858 * gst/audioresample/gstaudioresample.c:
11859 * gst/audioresample/resample.c: Convert to using gst debugging
11861 2005-09-22 Wim Taymans <wim@fluendo.com>
11863 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
11864 (gst_play_bin_send_event):
11865 Only seek on one sink, the first one that succeeds.
11867 2005-09-22 Michael Smith <msmith@fluendo.com>
11869 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
11870 (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
11871 Don't flush encoder state unless we have an initialised encoder.
11872 Clear out encoder state on PAUSED_TO_READY.
11874 2005-09-22 Wim Taymans <wim@fluendo.com>
11876 * gst-libs/gst/rtp/gstbasertppayload.c:
11877 (gst_basertppayload_class_init), (gst_basertppayload_init),
11878 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
11879 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
11880 (gst_basertppayload_is_filled), (gst_basertppayload_push),
11881 (gst_basertppayload_set_property),
11882 (gst_basertppayload_get_property),
11883 (gst_basertppayload_change_state):
11884 * gst-libs/gst/rtp/gstbasertppayload.h:
11885 Added max-ptime to control amount of data in the rtp packets.
11887 2005-09-21 Andy Wingo <wingo@pobox.com>
11889 * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
11892 * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
11893 can be called multiple times, dogs.
11895 2005-09-21 Wim Taymans <wim@fluendo.com>
11897 * gst-libs/gst/rtp/gstbasertppayload.c:
11898 (gst_basertppayload_class_init), (gst_basertppayload_init),
11899 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
11900 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
11901 (gst_basertppayload_push), (gst_basertppayload_get_property),
11902 (gst_basertppayload_change_state):
11905 2005-09-21 Stefan Kost <ensonic@users.sf.net>
11907 * docs/libs/compiling.sgml:
11910 2005-09-20 Wim Taymans <wim@fluendo.com>
11912 * gst-libs/gst/rtp/gstbasertppayload.c:
11913 (gst_basertppayload_class_init), (gst_basertppayload_init),
11914 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
11915 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
11916 (gst_basertppayload_push), (gst_basertppayload_set_property),
11917 (gst_basertppayload_get_property),
11918 (gst_basertppayload_change_state):
11919 * gst-libs/gst/rtp/gstbasertppayload.h:
11920 Added property to configure sequence number offsets.
11922 2005-09-20 Wim Taymans <wim@fluendo.com>
11924 * gst-libs/gst/rtp/gstbasertppayload.c:
11925 (gst_basertppayload_class_init), (gst_basertppayload_init),
11926 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
11927 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
11928 (gst_basertppayload_push), (gst_basertppayload_set_property),
11929 (gst_basertppayload_get_property),
11930 (gst_basertppayload_change_state):
11931 * gst-libs/gst/rtp/gstbasertppayload.h:
11932 Make timestamp offset configurable.
11934 2005-09-20 Thomas Vander Stichele <thomas at apestaart dot org>
11936 * check/pipelines/simple_launch_lines.c: (run_pipeline):
11937 fix wrong pop/unref
11939 2005-09-19 Torsten Schoenfeld <kaffeetisch at gmx dot net>
11941 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
11943 * gst-libs/gst/interfaces/propertyprobe.c:
11944 (gst_property_probe_probe_property_name),
11945 (gst_property_probe_needs_probe_name),
11946 (gst_property_probe_get_values_name),
11947 (gst_property_probe_probe_and_get_values_name):
11948 Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
11949 G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
11951 2005-09-19 Thomas Vander Stichele <thomas at apestaart dot org>
11953 * check/Makefile.am:
11954 have some tests be disabled for valgrinding
11955 * check/elements/vorbisdec.c: (cleanup_vorbisdec),
11957 * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
11958 Fix A Leak. Chain To Parent Finalize.
11960 2005-09-19 Wim Taymans <wim@fluendo.com>
11962 * examples/seeking/seek.c: (make_wav_pipeline), (main):
11963 Fixed wav pipeline.
11965 2005-09-19 Wim Taymans <wim@fluendo.com>
11967 * gst-libs/gst/rtp/gstbasertppayload.c:
11968 (gst_basertppayload_class_init), (gst_basertppayload_init),
11969 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
11970 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
11971 (gst_basertppayload_push), (gst_basertppayload_get_property),
11972 (gst_basertppayload_change_state):
11973 Posting ERROR and WARNING messages is good.
11975 2005-09-19 Wim Taymans <wim@fluendo.com>
11977 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11978 (gst_base_rtp_depayload_add_to_queue),
11979 (gst_base_rtp_depayload_push),
11980 (gst_base_rtp_depayload_set_gst_timestamp),
11981 (gst_base_rtp_depayload_queue_release):
11982 This one was not supposed to go in.
11984 2005-09-19 Wim Taymans <wim@fluendo.com>
11986 * check/pipelines/simple_launch_lines.c: (run_pipeline):
11989 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11990 (gst_base_rtp_depayload_chain),
11991 (gst_base_rtp_depayload_add_to_queue),
11992 (gst_base_rtp_depayload_push),
11993 (gst_base_rtp_depayload_set_gst_timestamp),
11994 (gst_base_rtp_depayload_queue_release):
11997 * gst-libs/gst/rtp/gstbasertppayload.c:
11998 (gst_basertppayload_class_init), (gst_basertppayload_init),
11999 (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
12000 (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
12001 (gst_basertppayload_get_property),
12002 (gst_basertppayload_change_state):
12003 Added debugging category.
12005 2005-09-18 David Schleef <ds@schleef.org>
12007 * gst/playback/gstdecodebin.c: free plugin list correctly
12008 * gst/playback/gstplaybin.c: emit warning if autovideosink
12009 and autoaudiosink can't be found (instead of segfaulting)
12011 2005-09-17 Thomas Vander Stichele <thomas at apestaart dot org>
12013 * check/elements/audioconvert.c: (GST_START_TEST):
12014 try out 24 bit conversion
12016 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12018 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
12019 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
12020 (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
12021 * ext/vorbis/vorbisenc.h:
12022 Fix EOS handling. Still needs a fix in the ogg muxer to
12023 mark the last page as eos.
12025 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12027 * common/gtk-doc-plugins.mak:
12028 * docs/plugins/Makefile.am:
12029 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12030 * gst/ffmpegcolorspace/Makefile.am:
12031 * gst/ffmpegcolorspace/avcodec.h:
12032 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12033 * gst/tcp/gstmultifdsink.c:
12034 fix up ffmpegcolorspace docs; extract header
12036 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12038 * common/gtk-doc-plugins.mak:
12039 * docs/plugins/Makefile.am:
12040 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12041 * ext/theora/Makefile.am:
12042 * ext/theora/gsttheoraenc.h:
12043 * ext/theora/theoraenc.c:
12044 * ext/vorbis/vorbisenc.c:
12045 pick up signals and args for vorbis; add some docs for vorbis
12047 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12049 * common/gstdoc-scangobj:
12050 * common/gtk-doc-plugins.mak:
12051 * docs/libs/Makefile.am:
12052 * docs/plugins/gst-plugins-base-plugins.args:
12053 * docs/plugins/gst-plugins-base-plugins.hierarchy:
12054 * docs/plugins/gst-plugins-base-plugins.interfaces:
12055 * docs/plugins/gst-plugins-base-plugins.prerequisites:
12056 * docs/plugins/gst-plugins-base-plugins.signals:
12057 only scanobj stuff from our source module. Not sure yet
12058 if that's correct, given the hierarchy stuff :)
12060 2005-09-15 Wim Taymans <wim@fluendo.com>
12062 * gst/audioconvert/gstaudioconvert.c:
12063 And enable 24 bits mode as well..
12065 2005-09-15 Wim Taymans <wim@fluendo.com>
12067 * gst-libs/gst/rtp/Makefile.am:
12068 * gst-libs/gst/rtp/gstbasertppayload.c:
12069 (gst_basertppayload_get_type), (gst_basertppayload_base_init),
12070 (gst_basertppayload_class_init), (gst_basertppayload_init),
12071 (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
12072 (gst_basertppayload_chain), (gst_basertppayload_set_options),
12073 (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
12074 (gst_basertppayload_set_property),
12075 (gst_basertppayload_get_property),
12076 (gst_basertppayload_change_state):
12077 * gst-libs/gst/rtp/gstbasertppayload.h:
12078 Added rtp payloader base class.
12080 2005-09-15 Andy Wingo <wingo@pobox.com>
12082 * configure.ac (plugindir): Remove the EOL matcher from the
12083 regexp, as it causes me problems. Libtool? Make? Who knows?
12085 2005-09-14 David Schleef <ds@schleef.org>
12087 * check/generic/states.c:
12088 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
12089 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
12090 Fixes for changes in registry API.
12092 * configure.ac: Only export gst_plugins_desc. Add -no-undefined
12093 to GST_PLUGIN_LDFLAGS.
12094 * ext/libvisual/visual.c: Make the library shut up.
12095 * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
12096 * gst-libs/gst/audio/gstaudiofilter.c: same
12098 2005-09-14 Thomas Vander Stichele <thomas at apestaart dot org>
12100 * docs/plugins/Makefile.am:
12101 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12102 * docs/plugins/inspect/plugin-libvisual.xml:
12103 * docs/plugins/tmpl/element-tcpserversink.sgml:
12104 * ext/theora/theoraenc.c:
12105 add libvisual plugin and theoraenc element to docs
12107 2005-09-14 Thomas Vander Stichele <thomas at apestaart dot org>
12109 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12110 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12111 * ext/theora/theoraenc.c:
12114 2005-09-13 Tim-Philipp Müller <tim at centricular dot net>
12116 * gst/audioconvert/Makefile.am:
12117 Audioconvert derives from GstBaseTransform and should
12118 link to the library with our base elements to avoid
12119 unresolved symbols. Makes things work with MinGW (#316160)
12121 * gst/playback/test4.c: (main):
12122 Fix MinGW build problem and use g_usleep() instead of
12125 2005-09-12 Wim Taymans <wim@fluendo.com>
12127 * gst/audioconvert/audioconvert.c: (float),
12128 (audio_convert_prepare_context), (audio_convert_convert):
12129 * gst/audioconvert/audioconvert.h:
12130 Cleanups, speedups, simplifications, added back support
12133 2005-09-11 Thomas Vander Stichele <thomas at apestaart dot org>
12135 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12136 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12137 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12138 * docs/plugins/tmpl/element-tcpserversink.sgml:
12139 * gst/ffmpegcolorspace/gstffmpeg.c:
12140 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12141 * gst/videotestsrc/gstvideotestsrc.c:
12142 * gst/volume/gstvolume.c:
12143 add more elements to the docs
12145 2005-09-09 Jan Schmidt <thaytan@mad.scientist.com>
12147 * check/Makefile.am:
12148 * check/pipelines/simple_launch_lines.c: (setup_pipeline),
12149 (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
12150 Add extra tests for basetransform based components.
12151 Comment out the test_element_negotiation test until we decide
12152 if it's testing correct behaviour.
12153 * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
12154 (gst_visual_chain), (gst_visual_change_state):
12155 Slightly more correct but still bogus timestamping.
12156 Fix state change function.
12157 * gst/audioconvert/gstaudioconvert.c:
12158 (gst_audio_convert_class_init):
12159 * gst/audioresample/gstaudioresample.c:
12160 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12161 (gst_ffmpegcsp_class_init):
12162 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
12163 (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
12164 (gst_videoscale_prepare_image):
12165 * gst/volume/gstvolume.c: (gst_volume_class_init),
12166 (volume_transform_ip):
12167 Basetransform updates. Enable passthrough modes.
12168 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12169 (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
12170 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
12171 Negotiation fix that allows the window to return to the original
12172 size and renegotiate passthrough upstream. Extra debug output.
12174 2005-09-09 Thomas Vander Stichele <thomas at apestaart dot org>
12176 * gst/sine/gstsinesrc.c:
12177 * gst/volume/gstvolume.c:
12178 fix up header include
12180 2005-09-09 Stefan Kost <ensonic@users.sf.net>
12182 * gst-libs/gst/audio/gstbaseaudiosink.c:
12183 (gst_base_audio_sink_render):
12184 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
12185 * gst/volume/gstvolume.c: (gst_volume_class_init),
12186 (volume_transform):
12187 fixing lost sync, some more debugging
12189 2005-09-08 Jan Schmidt <thaytan@mad.scientist.com>
12191 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12192 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
12193 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
12194 (gst_xvimagesink_check_xshm_calls):
12195 Fix compilation when XShm is not available.
12197 2005-09-07 Jan Schmidt <thaytan@mad.scientist.com>
12199 * ext/libvisual/visual.c: (gst_visual_dispose),
12200 (gst_visual_getcaps), (gst_visual_src_setcaps),
12201 (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
12202 (gst_visual_change_state):
12203 Finish fixing up libvisual plugin so that it runs.
12205 2005-09-07 Stefan Kost <ensonic@users.sf.net>
12207 * ext/vorbis/vorbisenc.c:
12208 * gst-libs/gst/tag/gstvorbistag.c:
12209 gsttaginterface.h -> gsttagsetter.h
12211 2005-09-07 Stefan Kost <ensonic@users.sf.net>
12213 * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
12214 added another test that failes for me (test is not active by default)
12216 2005-09-07 Zaheer Abbas Merali <zaheerabbas at merali dot org>
12219 v4l2 is no longer in gst-plugins-base
12221 2005-09-07 Jan Schmidt <thaytan@mad.scientist.com>
12224 In the output at the end, don't show the first plugin on the same
12225 line as "Core plug-ins, always built:".
12226 Indent the output as for other plugin categories
12227 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
12228 #define that can be used to not use peer buffer_alloc functions for
12230 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12231 (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
12232 (gst_ximagesink_show_frame):
12233 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
12234 (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
12235 (gst_xvimagesink_show_frame):
12236 Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
12237 fails gracefully instead of XError aborting or deadlocking.
12239 2005-09-07 Stefan Kost <ensonic@users.sf.net>
12241 * ext/libvisual/Makefile.am:
12242 link against gst-base-libs
12244 2005-09-06 David Schleef <ds@schleef.org>
12246 * configure.ac: Enable libvisual plugin.
12247 * ext/libvisual/Makefile.am:
12248 * ext/libvisual/visual.c: Fixes to make it compile.
12250 === release 0.9.2 ===
12252 2005-09-06 Thomas Vander Stichele <thomas at apestaart dot org>
12257 * docs/random/ChangeLog-0.8:
12258 releasing 0.9.2, "Spoon"
12260 2005-09-05 Michael Smith <msmith@fluendo.com>
12262 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
12263 libvorbis accepts quality as low as -0.1, not just 0.0. So accept
12264 that in the vorbisenc element.
12266 2005-09-04 Thomas Vander Stichele <thomas at apestaart dot org>
12268 * common/gtk-doc-plugins.mak:
12269 * docs/plugins/Makefile.am:
12271 * gst/audioresample/resample.c:
12272 fix wrong docstring
12274 2005-09-04 Thomas Vander Stichele <thomas at apestaart dot org>
12276 * common/gst-xmlinspect.py:
12277 * common/gtk-doc-plugins.mak:
12278 only inspect plugins for this given package
12279 require gst-python 0.9
12281 2005-09-03 Thomas Vander Stichele <thomas at apestaart dot org>
12285 * common/gst-xmlinspect.py:
12287 * docs/Makefile.am:
12288 * docs/plugins/inspect/plugin-alsa.xml:
12289 * docs/plugins/inspect/plugin-audioresample.xml:
12290 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12291 * docs/plugins/inspect/plugin-ogg.xml:
12292 * docs/plugins/tmpl/element-gnomevfssink.sgml:
12293 * docs/plugins/tmpl/element-multifdsink.sgml:
12294 * docs/plugins/tmpl/element-tcpserversink.sgml:
12295 * docs/plugins/tmpl/element-vorbisenc.sgml:
12296 * gst-plugins-base.spec.in:
12297 various doc-related updates
12299 2005-08-31 Wim Taymans <wim@fluendo.com>
12301 * gst-libs/gst/audio/gstbaseaudiosink.c:
12302 (gst_base_audio_sink_render):
12303 Resync if the buffer timestamps drift more than a 10th
12306 2005-08-31 Tim-Philipp Müller <tim at centricular dot net>
12308 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
12309 (gst_v4lsrc_get_property):
12310 The 'timestamp-offset' property is registered as an int64, so
12311 let's use g_value_{set|get}_int64() in our setter and getter
12312 functions (makes it work and fixes warnings with gst-inspect).
12314 2005-08-30 Wim Taymans <wim@fluendo.com>
12316 * check/elements/audioconvert.c: (setup_audioconvert):
12317 * check/elements/audioresample.c: (setup_audioresample):
12318 * check/elements/volume.c: (setup_volume):
12321 2005-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
12323 * common/gtk-doc-plugins.mak:
12324 * common/plugins.xsl:
12325 * docs/plugins/Makefile.am:
12326 make module a param
12328 2005-08-30 Stefan Kost <ensonic@users.sf.net>
12330 * examples/seeking/seek.c: (make_mp3_pipeline),
12331 (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
12332 (play_cb), (pause_cb), (stop_cb):
12335 2005-08-30 Stefan Kost <ensonic@users.sf.net>
12337 * gst/volume/gstvolume.c: (gst_volume_class_init),
12338 (volume_transform):
12339 do not update controlled params, if buffer has no timestamp
12341 2005-08-29 Stefan Kost <ensonic@users.sf.net>
12344 * gst/sine/Makefile.am:
12345 * gst/volume/Makefile.am:
12346 controllerized elements also need to link against controller-libs ;)
12348 2005-08-29 Stefan Kost <ensonic@users.sf.net>
12350 * docs/libs/tmpl/gstcolorbalance.sgml:
12351 * docs/libs/tmpl/gstgconf.sgml:
12352 * docs/libs/tmpl/gstmixer.sgml:
12353 * docs/libs/tmpl/gstringbuffer.sgml:
12354 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
12355 (gst_sinesrc_create):
12356 * gst/volume/gstvolume.c: (gst_volume_class_init),
12357 (volume_transform):
12358 controllerized two audio plugins
12360 2005-08-29 Andy Wingo <wingo@pobox.com>
12362 * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push)
12363 (vorbis_handle_data_packet): Fix some int overflow errors.
12365 * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
12367 (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
12369 (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
12370 if it's valid. Fixed streaming-mode playback.
12372 * check/elements/volume.c (cleanup_volume): Fix for running
12375 * check/elements/audioconvert.c: Convert from native endian, not
12378 2005-08-29 Michael Smith <msmith@fluendo.com>
12380 * ext/ogg/Makefile.am:
12381 * ext/ogg/gstogg.c: (plugin_init):
12382 * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
12383 (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
12384 (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
12385 (gst_ogg_parse_class_init), (gst_ogg_parse_init),
12386 (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
12387 (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
12388 (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
12389 (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
12390 Add an ogg parser element.
12392 2005-08-28 Andy Wingo <wingo@pobox.com>
12394 * Updates for two-arg init from GST_BOILERPLATE_FULL.
12396 2005-08-26 Wim Taymans <wim@fluendo.com>
12398 * gst/audioconvert/audioconvert.c: (if), (float),
12399 (audio_convert_get_func_index), (check_default),
12400 (audio_convert_clean_fmt), (audio_convert_prepare_context),
12401 (audio_convert_clean_context), (audio_convert_get_sizes),
12402 (audio_convert_convert):
12405 2005-08-26 Wim Taymans <wim@fluendo.com>
12407 * gst/audioconvert/audioconvert.c: (if), (float),
12408 (audio_convert_get_func_index), (check_default),
12409 (audio_convert_clean_fmt), (audio_convert_prepare_context),
12410 (audio_convert_clean_context), (audio_convert_get_sizes),
12411 (audio_convert_convert):
12412 More elegant and working temp buffer selection algo.
12414 2005-08-26 Wim Taymans <wim@fluendo.com>
12416 * gst/audioconvert/audioconvert.c: (if), (float),
12417 (audio_convert_get_func_index), (check_default),
12418 (audio_convert_clean_fmt), (audio_convert_prepare_context),
12419 (audio_convert_clean_context), (audio_convert_get_sizes),
12420 (get_temp_buffer), (audio_convert_convert):
12421 Use realloc else we lose our original data.
12423 2005-08-26 Thomas Vander Stichele <thomas at apestaart dot org>
12425 * gst/audioresample/gstaudioresample.c:
12426 use base class' newsegment to properly timestamp
12428 2005-08-26 Wim Taymans <wim@fluendo.com>
12430 * gst/audioconvert/audioconvert.c: (if), (float),
12431 (audio_convert_get_func_index), (check_default),
12432 (audio_convert_clean_fmt), (audio_convert_prepare_context),
12433 (audio_convert_clean_context), (audio_convert_get_sizes),
12434 (get_temp_buffer), (audio_convert_convert):
12435 * gst/audioconvert/gstaudioconvert.c:
12436 (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
12437 (gst_audio_convert_transform_caps),
12438 (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
12439 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
12440 Oops, allocate enough space to perform the channel mix.
12442 2005-08-26 Wim Taymans <wim@fluendo.com>
12444 * gst/audioconvert/Makefile.am:
12445 * gst/audioconvert/audioconvert.c: (if), (float),
12446 (audio_convert_get_func_index), (check_default),
12447 (audio_convert_clean_fmt), (audio_convert_prepare_context),
12448 (audio_convert_clean_context), (audio_convert_get_sizes),
12449 (get_temp_buffer), (audio_convert_convert):
12450 * gst/audioconvert/audioconvert.h:
12451 * gst/audioconvert/gstaudioconvert.c:
12452 (gst_audio_convert_class_init), (gst_audio_convert_init),
12453 (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
12454 (gst_audio_convert_get_unit_size),
12455 (gst_audio_convert_transform_caps),
12456 (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
12457 (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
12458 * gst/audioconvert/gstaudioconvert.h:
12459 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
12460 (gst_channel_mix_fill_identical),
12461 (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
12462 (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
12463 (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
12464 (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
12465 (gst_channel_mix_mix):
12466 * gst/audioconvert/gstchannelmix.h:
12467 Cleanups, librarify a bit, optimize, better negotiation and more.
12469 2005-08-26 Jan Schmidt <thaytan@mad.scientist.com>
12471 * ext/ogg/gstoggdemux.c: (ogg_find_peek):
12472 Another from MikeS:
12473 During typefinding, don't support negative offsets
12474 (offsets from the end of the stream) in our typefind->peek() function
12475 - nothing embedded in ogg ever needs them. However, we need to recognise
12476 those requests and reject them, otherwise we return invalid pointers.
12478 2005-08-26 Jan Schmidt <thaytan@mad.scientist.com>
12480 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
12481 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
12482 (vorbisdec_finalize), (vorbis_handle_type_packet):
12483 Big shout-out to MikeS for fixing this giant memory leak.
12486 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
12488 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
12489 (audio_convert_get_unit_size):
12492 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
12494 * check/Makefile.am:
12495 * check/elements/audioconvert.c: (setup_audioconvert),
12496 (cleanup_audioconvert), (get_int_caps), (verify_convert),
12497 (GST_START_TEST), (audioconvert_suite), (main):
12498 add a test for audioconvert
12499 * gst/audioresample/gstaudioresample.c:
12500 * gst/audioresample/gstaudioresample.h:
12501 set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
12502 note that for buffers of 1/3 sec this means DURATION(c) is
12503 one nanosecond more than for a and b
12505 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
12507 * check/Makefile.am:
12508 * check/elements/audioresample.c: (setup_audioresample),
12509 (cleanup_audioresample), (fail_unless_perfect_stream),
12510 (test_perfect_stream_instance), (GST_START_TEST),
12511 add a check for audioresample
12512 (audioresample_suite), (main):
12513 * check/elements/volume.c: (GST_START_TEST):
12514 remove unused method
12515 * gst/audioresample/gstaudioresample.c:
12516 set correct buffer parameters since we're changing them
12517 * gst/audioresample/resample_ref.c: (resample_scale_ref):
12520 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
12522 * gst/audioresample/debug.c:
12523 * gst/audioresample/gstaudioresample.c:
12524 add room for extra overlap samples when asked to transform size
12525 protect against possible mem corruption and check for discrepancies
12526 between written size and outbuffer's size so we can warn for
12528 * gst/audioresample/resample.c: (resample_init),
12529 (resample_get_output_size_for_input), (resample_get_output_size),
12530 (resample_set_n_channels), (resample_set_format):
12531 set debug level based on RESAMPLE_DEBUG env var
12532 make sure that get_output_size* returns a whole number of
12534 set sample_size each time either channel or format is set
12535 * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
12536 * gst/audioresample/resample_functable.c:
12537 (resample_scale_functable):
12538 * gst/audioresample/resample_ref.c: (resample_scale_ref):
12539 remove r->sample_size, it's done in resample.c now
12540 add some debugging to the ref implementation
12541 make sure we only give back bytes that are wholes of the sample
12544 2005-08-25 Jan Schmidt <thaytan@mad.scientist.com>
12545 * gst/playback/gstplaybasebin.c: (fill_buffer):
12546 Revert unpopular change for GST_MESSAGE_SRC to GObject.
12548 2005-08-25 Stefan Kost <ensonic@users.sf.net>
12550 * gst/volume/gstvolume.c:
12551 made set_caps function static
12553 2005-08-24 Wim Taymans <wim@fluendo.com>
12555 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
12556 (gst_vorbisenc_change_state):
12557 Stop leaking taglists.
12559 2005-08-24 Wim Taymans <wim@fluendo.com>
12561 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
12562 (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
12563 (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
12564 (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
12565 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
12566 (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
12567 Parse seeking events better.
12569 Generate correct newsegment events, fixes seeking in live oggs.
12571 * ext/theora/theoradec.c: (theora_dec_src_query),
12572 (theora_dec_src_event), (theora_dec_src_getcaps),
12573 (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
12574 Use newsegment values to report correct play time.
12576 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
12577 (vorbis_dec_src_event), (vorbis_dec_sink_event):
12578 * ext/vorbis/vorbisdec.h:
12579 Parse and use newsegment values to report correct play time.
12581 * gst-libs/gst/audio/gstbaseaudiosink.c:
12582 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
12583 Clear ringbuffer on flush.
12584 Use newsegment values to calculate playback time.
12586 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
12587 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
12588 Basesink does newsegment calculations for us now.
12590 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
12592 * check/Makefile.am:
12594 add core's plugins to the mix so that playbin works
12595 * check/generic/states.c: (GST_START_TEST):
12596 set a 0 timeout on pipelines, so they don't force the next
12598 * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
12599 (gst_play_base_bin_change_state):
12600 remove the crappy error handling and do GST error handling
12602 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
12604 * check/Makefile.am:
12605 * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
12606 add same test as to core, it bitches out on playbin atm.
12608 2005-08-24 Wim Taymans <wim@fluendo.com>
12613 2005-08-24 Wim Taymans <wim@fluendo.com>
12615 * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
12616 (gst_videoscale_prepare_size), (parse_caps),
12617 (gst_videoscale_set_caps), (gst_videoscale_get_size),
12618 (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
12619 (gst_videoscale_transform):
12620 * gst/videoscale/gstvideoscale.h:
12621 Refactor, make use of BaseTranform really well.
12623 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
12626 compile audioresample
12627 * gst/audioresample/Makefile.am:
12628 * gst/audioresample/buffer.c:
12629 * gst/audioresample/functable.c:
12630 * gst/audioresample/gstaudioresample.c:
12631 * gst/audioresample/gstaudioresample.h:
12632 * gst/audioresample/resample.c:
12633 (resample_get_output_size_for_input):
12634 * gst/audioresample/resample.h:
12635 * gst/audioresample/resample_chunk.c:
12636 * gst/audioresample/resample_functable.c:
12637 * gst/audioresample/resample_ref.c:
12638 port to use basetransform; doesn't work in all cases yet
12640 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
12642 * gst/audioconvert/gstaudioconvert.c:
12643 (gst_audio_convert_class_init), (gst_audio_convert_init),
12644 (audio_convert_get_unit_size), (audio_convert_transform_caps),
12645 (audio_convert_fixate_caps), (audio_convert_set_caps),
12646 (audio_convert_transform),
12647 (gst_audio_convert_buffer_to_default_format),
12648 (gst_audio_convert_buffer_from_default_format),
12649 (gst_audio_convert_channels):
12650 * gst/audioconvert/gstchannelmix.c:
12651 * gst/audioconvert/gstchannelmix.h:
12652 port to basetransform
12653 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12654 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
12655 (gst_ffmpegcsp_get_unit_size):
12656 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
12657 (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
12658 fix for basetransform changes
12660 2005-08-24 Jan Schmidt <thaytan@mad.scientist.com>
12662 * check/Makefile.am:
12663 Add CHECK_CFLAGS and LDFLAGS
12665 * gst/playback/gstplaybasebin.c: (fill_buffer):
12666 GST_MESSAGE_SRC became a GObject
12668 2005-08-24 Wim Taymans <wim@fluendo.com>
12670 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
12671 (gst_ring_buffer_clear_all):
12672 * gst-libs/gst/audio/gstringbuffer.h:
12673 Added function to clear the ringbuffer.
12675 2005-08-24 Andy Wingo <wingo@pobox.com>
12677 * sys/v4l/gstv4lelement.c (gst_v4lelement_start)
12678 (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
12679 of _open and _close.
12681 * sys/v4l/gstv4lxoverlay.h:
12682 * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
12683 an Xv connection here, instead of all the time. Make Xv only be
12684 loaded if you axe for it. Kindof a workaround for buggy behaviour
12685 of Xv when using remote xservers (XvQueryExtension would block).
12686 (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
12687 replace the _open and _close public API. Only start the xv
12688 connection if necessary.
12689 (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
12691 2005-08-23 David Schleef <ds@schleef.org>
12693 * gst/audioresample/Makefile.am: Leet audioresampling code
12694 * gst/audioresample/buffer.c:
12695 * gst/audioresample/buffer.h:
12696 * gst/audioresample/debug.c:
12697 * gst/audioresample/debug.h:
12698 * gst/audioresample/functable.c:
12699 * gst/audioresample/functable.h:
12700 * gst/audioresample/gstaudioresample.c:
12701 * gst/audioresample/gstaudioresample.h:
12702 * gst/audioresample/resample.c:
12703 * gst/audioresample/resample.h:
12704 * gst/audioresample/resample_chunk.c:
12705 * gst/audioresample/resample_functable.c:
12706 * gst/audioresample/resample_ref.c:
12708 2005-08-23 Wim Taymans <wim@fluendo.com>
12710 * examples/seeking/seek.c: (make_vorbis_pipeline),
12711 (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
12712 Small seek updates.
12714 2005-08-23 Andy Wingo <wingo@pobox.com>
12716 * gst-libs/gst/audio/gstbaseaudiosrc.c
12717 (gst_base_audio_src_fixate): Only fixate endianness if it is
12718 present in the caps.
12720 2005-08-22 Andy Wingo <wingo@pobox.com>
12722 * ext/alsa/gstalsasink.c (gst_alsasink_get_property):
12723 * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
12724 device-name property.
12726 * gst-libs/gst/audio/gstaudiosrc.h:
12727 * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
12728 close_device in the ring buffer, like gstaudiosink.
12730 * ext/alsa/gstalsamixer.h:
12731 * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
12732 macro to implement the interface without much code. Cleanups.
12734 * ext/alsa/gstalsasrc.h:
12735 * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
12738 * ext/alsa/Makefile.am: Add new files.
12739 * ext/alsa/gstalsamixerelement.c:
12740 * ext/alsa/gstalsamixerelement.c: Split element code out from
12741 mixer code so that alsasrc can be a mixer too.
12743 2005-08-21 Thomas Vander Stichele <thomas at apestaart dot org>
12745 * check/elements/volume.c: (setup_volume), (cleanup_volume),
12747 * check/elements/vorbisdec.c: (setup_vorbisdec),
12748 (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
12749 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
12750 (vorbis_handle_identification_packet),
12751 (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
12752 (vorbis_handle_header_packet), (vorbis_dec_push),
12753 (vorbis_dec_chain):
12754 use the setup/teardown methods to save code. save code is good.
12756 2005-08-20 Thomas Vander Stichele <thomas at apestaart dot org>
12758 * check/Makefile.am:
12759 add ext dir for plugins
12760 add vorbisdec test conditionally
12761 * check/elements/volume.c: (setup_volume), (cleanup_volume),
12762 (GST_START_TEST), (volume_suite):
12763 add a test with wrong caps
12764 * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
12765 (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
12766 add a vorbisdec test
12767 * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
12768 (gst_ogg_demux_chain), (gst_ogg_demux_loop):
12769 clean up debug output
12770 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
12771 yay, fix a segfault/security issue in vorbisdec
12772 gst-launch fakesrc ! vorbisdec wasn't happy
12773 * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
12774 (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
12775 (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
12776 (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
12777 (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
12778 (gst_vorbisenc_set_metadata), (get_constraints_string),
12779 (update_start_message), (gst_vorbisenc_setup),
12780 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
12781 (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
12782 (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
12783 (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
12784 * ext/vorbis/vorbisenc.h:
12786 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12787 (gst_ffmpegcsp_transform):
12788 have the kow come home
12789 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
12791 * gst/volume/gstvolume.c: (volume_set_caps):
12794 2005-08-20 Thomas Vander Stichele <thomas at apestaart dot org>
12797 * check/.cvsignore:
12798 * check/Makefile.am:
12799 * check/elements/.cvsignore:
12800 * check/elements/volume.c: (chain_func), (event_func),
12801 (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
12804 add unit test structure for gst-plugins-base
12805 add a test for volume
12806 * gst/volume/gstvolume.c: (gst_volume_list_tracks),
12807 (gst_volume_set_volume), (gst_volume_get_volume),
12808 (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
12809 (volume_funcfind), (volume_process_float), (volume_process_int16),
12810 (volume_set_caps), (volume_transform), (volume_update_mute),
12811 (volume_update_volume), (volume_set_property),
12812 (volume_get_property):
12813 document a little; use basetransform vmethod _set_caps
12815 2005-08-19 Andy Wingo <wingo@pobox.com>
12817 * ext/alsa/gstalsamixertrack.h:
12818 * ext/alsa/gstalsamixertrack.c:
12819 * ext/alsa/gstalsamixeroptions.h:
12820 * ext/alsa/gstalsamixeroptions.c:
12821 * ext/alsa/gstalsamixer.h:
12822 * ext/alsa/gstalsamixer.c: Port to 0.9.
12824 * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
12825 Remove gstalsa.c and alsaclock. No more cruft here.
12827 2005-08-18 Wim Taymans <wim@fluendo.com>
12829 * gst-libs/gst/rtp/gstbasertpdepayload.c:
12830 (gst_base_rtp_depayload_chain),
12831 (gst_base_rtp_depayload_add_to_queue),
12832 (gst_base_rtp_depayload_push),
12833 (gst_base_rtp_depayload_queue_release):
12834 * gst-libs/gst/rtp/gstbasertpdepayload.h:
12835 Fix for RTPBuffer changes.
12837 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
12838 (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
12839 (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
12840 (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
12841 (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
12842 (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
12843 (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
12844 (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
12845 (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
12846 (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
12847 (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
12848 (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
12849 (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
12850 (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
12851 (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
12852 (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
12853 (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
12854 (gst_rtpbuffer_get_payload):
12855 * gst-libs/gst/rtp/gstrtpbuffer.h:
12856 Don't subclass GstBuffer but add methods and helper functions
12857 to construct and manipulate RTP packets in regular GstBuffers.
12859 2005-08-18 Stefan Kost <ensonic@users.sf.net>
12861 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
12862 moved statement below switch
12863 * gst/volume/gstvolume.c: (gst_volume_class_init):
12866 2005-08-16 Wim Taymans <wim@fluendo.com>
12868 * gst-libs/gst/audio/gstbaseaudiosrc.c:
12869 (gst_base_audio_src_change_state):
12870 Open and close device in READY<->NULL state change.
12872 2005-08-16 Andy Wingo <wingo@pobox.com>
12874 * examples/seeking/Makefile.am: Don't compile non-compiling
12875 compiled objects with the compiler.
12877 * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
12880 2005-08-12 Philippe Khalaf <burger@speedy.org>
12881 * gst-libs/gst/rtp/gstbasertpdepayload.c:
12882 * gst-libs/gst/rtp/gstbasertpdepayload.h:
12883 Made a thread to release the queue.
12884 Removed timestamp conversion for now.
12886 2005-08-10 Philippe Khalaf <burger@speedy.org>
12887 * gst-libs/gst/rtp/gstbasertpdepayload.c:
12888 * gst-libs/gst/rtp/gstbasertpdepayload.h:
12889 Added rtp timestamp -> gst timestamp conversion.
12890 Fixed several problems with queue.
12892 2005-08-09 Tim-Philipp Müller <tim at centricular dot net>
12894 * gst-libs/gst/audio/gstaudioclock.h:
12895 * gst-libs/gst/audio/gstaudiofilter.h:
12896 * gst-libs/gst/audio/gstaudiosink.h:
12897 * gst-libs/gst/audio/gstaudiosrc.h:
12898 * gst-libs/gst/audio/gstbaseaudiosink.h:
12899 * gst-libs/gst/audio/gstbaseaudiosrc.h:
12900 * gst-libs/gst/audio/gstringbuffer.h:
12901 * gst-libs/gst/net/gstnetbuffer.h:
12902 * gst-libs/gst/rtp/gstbasertpdepayload.h:
12903 * gst-libs/gst/rtp/gstrtpbuffer.h:
12904 Add padding (you will need to rebuild gst-plugins-base,
12905 gst-plugins and all applications afterwards!)
12907 2005-08-09 Tim-Philipp Müller <tim at centricular dot net>
12909 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
12910 (gst_riff_parse_chunk):
12911 Fix bug in debug message and add some more debug messages.
12913 2005-08-08 Edward Hervey <edward@fluendo.com>
12915 * gst-libs/gst/riff/riff-media.c:
12916 backported updates since branch
12918 2005-08-08 Andy Wingo <wingo@pobox.com>
12920 * gst-libs/gst/audio/gstbaseaudiosink.c
12921 (gst_base_audio_sink_change_state): Open the device in NULL->READY
12922 like good elements should. Close on READY->NULL too.
12924 * gst-libs/gst/audio/gstaudiosink.c
12925 (gst_audioringbuffer_open_device,
12926 (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
12927 (gst_audioringbuffer_release): Updates for new ring buffer API,
12928 hook into the new audio sink api.
12930 * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
12931 (GstAudioSinkClass.close): Just open and close the device -- no
12932 resource allocation or configuration.
12933 (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
12934 vmethods, handle device setup and resource allocation.
12936 * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
12937 (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
12940 * gst-libs/gst/audio/gstringbuffer.h
12941 (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
12944 * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
12945 (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
12946 New API functions. The device should be opened before acquiring
12947 and closed after releasing.
12949 2005-08-08 Tim-Philipp Müller <tim at centricular dot net>
12951 * gst-libs/gst/interfaces/mixer.h:
12952 Reset padding to GST_PADDING.
12954 2005-08-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12956 * gst/playback/gstplaybin.c: (remove_sinks):
12957 Remove visualization from parent explicitely; works around some
12958 apparent refcount issue that I haven't tracked down yet.
12960 2005-08-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12962 * ext/alsa/gstalsasink.c: (set_hwparams):
12963 Assign debug category, add negotiation debug msgs.
12965 2005-08-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12967 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
12968 Fix error code for file-not-found to NOT_FOUND.
12970 2005-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
12972 * common/gtk-doc-plugins.mak:
12973 * docs/plugins/Makefile.am:
12974 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12975 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12976 renamed to actual element names, so much nicer to look at
12977 * docs/plugins/tmpl/gstmultifdsink.sgml:
12979 * docs/plugins/tmpl/multifdsink.sgml:
12980 * docs/plugins/tmpl/tcpserversink.sgml:
12982 * ext/alsa/gstalsa.c:
12983 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
12984 * ext/ogg/gstoggmux.c:
12985 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
12986 * gst/playback/gstdecodebin.c:
12987 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
12988 * gst/tcp/gsttcpserversink.c:
12989 various fixes and documentation additions
12991 2005-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
12993 * common/Makefile.am:
12994 * common/gstdoc-scangobj:
12995 * common/gtk-doc-plugins.mak:
12996 * common/gtk-doc.mak:
12997 add a custom scangobj that uses the registry
12998 add a custom gtk-doc-plugins.mak that uses it
12999 some doc build fixes
13001 * docs/Makefile.am:
13002 * docs/plugins/Makefile.am:
13003 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13004 * docs/plugins/gst-plugins-base-plugins-sections.txt:
13005 * docs/plugins/gst-plugins-base-plugins.types:
13006 * docs/plugins/tmpl/gstmultifdsink.sgml:
13007 add docs for one element, multifdsink
13008 * gst/adder/gstadder.h:
13009 * gst/volume/gstvolume.h:
13010 don't privatize enum
13011 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
13012 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
13013 (gst_sync_method_get_type), (gst_client_status_get_type),
13014 (gst_multifdsink_class_init),
13015 (gst_multifdsink_client_queue_buffer),
13016 (gst_multifdsink_handle_client_write):
13017 * gst/tcp/gstmultifdsink.h:
13018 * gst/tcp/gsttcp.h:
13019 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
13020 (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
13021 (gst_tcpclientsink_render):
13022 * gst/tcp/gsttcpclientsink.h:
13023 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
13024 (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
13025 (gst_tcpclientsrc_start):
13026 * gst/tcp/gsttcpclientsrc.h:
13027 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
13028 (gst_tcpserversrc_init), (gst_tcpserversrc_create):
13029 * gst/tcp/gsttcpserversrc.h:
13030 * gst/typefind/gsttypefindfunctions.c:
13031 remove superfluous Type stuff
13033 2005-08-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13035 * gst/playback/gstplaybin.c: (gen_video_element):
13038 2005-08-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13040 * gst-libs/gst/gconf/gconf.c:
13041 * gst-libs/gst/gconf/gconf.h:
13042 Fix some Andy Problem [tm].
13044 2005-08-04 Andy Wingo <wingo@pobox.com>
13046 * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
13047 * gst/ffmpegcolorspace/gstffmpegcolorspace.c
13048 (gst_ffmpegcsp_get_size): Adapt to API changes.
13050 * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
13051 Implement an in-place do-nothing transform.
13053 2005-08-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13055 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
13056 (gst_ximagesink_renegotiate_size):
13057 Do not set new window sizes yet if we prepare a new buffer size
13058 for upstream renegotiation (software scaling) at some point in the
13059 future, because this new size waqs not actually accepted yet. Once
13060 accepted, renegotiation later on will set the new sizes just fine.
13061 Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
13062 embedding testcase.
13064 2005-08-03 Andy Wingo <wingo@pobox.com>
13066 * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
13067 (gst_ximagesink_buffer_alloc):
13068 Protect the height, width, and desired_caps with the pool_lock.
13069 Fixes videotestsrc ! queue ! ximagesink.
13071 2005-08-02 Edward Hervey <edward@fluendo.com>
13073 * gst/volume/gstvolume.c:
13074 include left from controller cleanup
13076 2005-08-02 Jan Schmidt <thaytan@mad.scientist.com>
13077 * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
13078 Stop collectpads before calling the parent state
13079 change function on PAUSED->READY.
13081 2005-08-01 Jan Schmidt <thaytan@mad.scientist.com>
13083 When testing for X libs, use the X CFlags
13084 * gst/adder/gstadder.c: (gst_adder_change_state):
13085 Stop the collectpads before calling parent state change function
13086 on PAUSED->READY, otherwise we deadlock deactivating pads.
13088 2005-08-01 Stefan Kost <ensonic@users.sf.net>
13091 * docs/libs/tmpl/gstcolorbalance.sgml:
13092 * docs/libs/tmpl/gstmixer.sgml:
13093 * examples/Makefile.am:
13094 * gst/sine/Makefile.am:
13095 * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
13096 (gst_sinesrc_set_property), (plugin_init):
13097 * gst/sine/gstsinesrc.h:
13098 * gst/volume/Makefile.am:
13099 * gst/volume/gstvolume.c: (gst_volume_set_volume),
13100 (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
13101 (volume_process_float), (volume_process_int16),
13102 (volume_set_property), (plugin_init):
13103 * gst/volume/gstvolume.h:
13104 deactivate and remove dparams (libgstcontrol)
13106 2005-07-29 Wim Taymans <wim@fluendo.com>
13108 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
13109 Convert me to BaseTransform!! help..
13111 2005-07-29 Andy Wingo <wingo@pobox.com>
13113 * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
13116 * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
13117 support of both endiannesses.
13119 2005-07-28 Tim-Philipp Müller <tim at centricular dot net>
13121 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
13122 Fix confusing debug message (s/event/query/)
13124 2005-07-28 Tim-Philipp Müller <tim at centricular dot net>
13126 * gst/videotestsrc/videotestsrc.h:
13127 Use "_stdint.h" instead of <stdint.h>
13129 2005-07-27 Wim Taymans <wim@fluendo.com>
13131 * ext/vorbis/Makefile.am:
13132 Revert wrong commit.
13134 2005-07-27 Wim Taymans <wim@fluendo.com>
13136 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
13137 More compilation fixen.
13139 2005-07-27 Wim Taymans <wim@fluendo.com>
13141 * gst-libs/gst/audio/gstbaseaudiosink.c:
13142 (gst_base_audio_sink_event), (gst_base_audio_sink_render),
13143 (gst_base_audio_sink_create_ringbuffer),
13144 (gst_base_audio_sink_change_state):
13147 2005-07-27 Wim Taymans <wim@fluendo.com>
13149 * examples/seeking/seek.c: (setup_dynamic_link),
13150 (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
13151 (query_positions_elems), (query_positions_pads), (do_seek):
13152 Update seek example.
13154 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
13155 (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
13156 (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
13157 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
13158 (gst_ogg_demux_handle_event),
13159 (gst_ogg_demux_deactivate_current_chain),
13160 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
13161 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13162 (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
13163 (gst_ogg_demux_loop):
13164 * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
13165 * ext/theora/theoradec.c: (theora_dec_src_event),
13166 (theora_dec_src_getcaps), (theora_dec_sink_event),
13167 (theora_dec_push), (theora_dec_chain):
13168 * ext/vorbis/Makefile.am:
13169 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
13170 (vorbis_dec_sink_event), (vorbis_dec_push),
13171 (vorbis_handle_data_packet):
13172 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
13173 (gst_vorbisenc_chain):
13174 * gst/playback/gststreaminfo.c: (cb_probe):
13175 * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
13176 * gst/videorate/gstvideorate.c: (gst_videorate_event):
13177 * gst/videoscale/gstvideoscale.c:
13178 (gst_videoscale_handle_src_event):
13179 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
13180 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
13181 (gst_ximagesink_navigation_send_event):
13182 * sys/xvimage/xvimagesink.c:
13183 (gst_xvimagesink_navigation_send_event):
13184 Various event updates and cleanups
13186 2005-07-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13188 * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
13189 Fix segfault for I420/YV12.
13191 2005-07-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13193 * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
13196 2005-07-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13198 * gst/playback/gstplaybin.c: (gen_video_element),
13199 (gen_audio_element):
13200 Switch to auto*sink elements as default sinks; add volume element
13201 so that volume control in totem works.
13203 2005-07-21 Wim Taymans <wim@fluendo.com>
13205 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
13206 * gst/playback/gstplaybin.c: (setup_sinks),
13207 (gst_play_bin_change_state):
13208 Refcount fix and more comments.
13210 2005-07-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
13212 * sys/ximage/Makefile.am:
13213 * sys/ximage/ximage.c: (plugin_init):
13214 * sys/ximage/ximagesink.c:
13215 Prepare for adding ximagesrc, rename of plugin to ximage etc.
13218 2005-07-21 Wim Taymans <wim@fluendo.com>
13220 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
13221 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
13222 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
13223 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13224 (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
13225 (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
13226 (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
13227 (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
13228 (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
13229 Generate correct disconts for live chained oggs.
13231 * gst-libs/gst/audio/gstbaseaudiosink.c:
13232 (gst_base_audio_sink_render),
13233 (gst_base_audio_sink_create_ringbuffer),
13234 (gst_base_audio_sink_change_state):
13235 Handle discont math correctly.
13237 * gst/playback/gstplaybin.c: (add_sink):
13238 Some small debug cleanup.
13240 2005-07-21 Wim Taymans <wim@fluendo.com>
13242 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
13243 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
13244 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
13245 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13246 (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
13247 (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
13248 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
13249 (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
13250 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13251 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
13252 (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
13253 (gst_ogg_demux_change_state), (gst_ogg_print):
13254 Reorganize code to send the right disconts when in streaming
13257 2005-07-20 Andy Wingo <wingo@pobox.com>
13259 * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
13260 fix (?), fixes a seggie mcfalterson (#310894).
13262 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13264 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
13265 (gst_ogg_mux_set_header_on_caps):
13266 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
13267 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
13268 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
13269 * gst-libs/gst/audio/multichannel.c:
13270 (gst_audio_set_channel_positions),
13271 (gst_audio_set_structure_channel_positions_list):
13272 * gst/playback/gstdecodebin.c: (dynamic_create):
13273 * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
13274 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
13275 Fixes for API changes in core.
13277 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13279 * gst/playback/gstplaybasebin.c: (fill_buffer):
13280 Use _new_custom() so we can set custom message types for buffering
13283 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13286 * gst-libs/gst/Makefile.am:
13287 * gst-libs/gst/gconf/.cvsignore:
13288 * gst-libs/gst/gconf/Makefile.am:
13289 * gst-libs/gst/gconf/test-gconf.c:
13290 * pkgconfig/Makefile.am:
13291 * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
13292 * pkgconfig/gstreamer-gconf.pc.in:
13293 Remove gconf stuff, use gconf elements instead from now on.
13295 2005-07-20 Wim Taymans <wim@fluendo.com>
13297 * gst-libs/gst/audio/TODO:
13298 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
13299 (gst_audio_clock_get_internal_time):
13300 * gst-libs/gst/audio/gstaudioclock.h:
13301 * gst-libs/gst/audio/gstbaseaudiosink.c:
13302 (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
13303 (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
13304 (gst_base_audio_sink_render),
13305 (gst_base_audio_sink_create_ringbuffer),
13306 (gst_base_audio_sink_change_state):
13307 Make sure the audio clock always returns an increasing value.
13309 2005-07-19 Andy Wingo <wingo@pobox.com>
13311 * gst/videotestsrc/: Cleanups.
13313 2005-07-19 Wim Taymans <wim@fluendo.com>
13315 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
13318 2005-07-19 Wim Taymans <wim@fluendo.com>
13320 * examples/seeking/seek.c: (make_dv_pipeline),
13321 (make_vorbis_theora_pipeline), (query_rates),
13322 (query_positions_elems), (query_positions_pads), (do_seek):
13323 Make correct DV pipeline.
13325 2005-07-18 Andy Wingo <wingo@pobox.com>
13327 * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
13328 default. Also because it's the only thing that really works. (This
13329 is used in the GConf elements).
13330 Use AS_LIBTOOL_TAGS.
13332 2005-07-18 Wim Taymans <wim@fluendo.com>
13334 * gst/playback/gstdecodebin.c: (remove_element_chain):
13335 * gst/playback/gstplaybin.c: (add_sink):
13336 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
13337 (gst_stream_info_set_mute):
13338 * gst/playback/gststreamselector.c:
13339 (gst_stream_selector_get_linked_pad),
13340 (gst_stream_selector_getcaps), (gst_stream_selector_chain):
13341 More leak and compile fixes.
13343 2005-07-18 Wim Taymans <wim@fluendo.com>
13345 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
13346 (query_rates), (query_positions_elems), (query_positions_pads),
13347 (do_seek), (seek_cb), (stop_seek):
13348 Updated seek example.
13350 * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
13351 * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
13352 (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
13353 * gst/playback/gstplaybin.c: (add_sink):
13354 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
13355 (gst_stream_info_set_mute):
13356 Some refcount leak fixes.
13358 2005-07-16 Wim Taymans <wim@fluendo.com>
13360 * gst-libs/gst/audio/gstbaseaudiosink.c:
13361 (gst_base_audio_sink_render):
13362 Align samples even if we have roundoff errors in the
13363 timestamp conversion.
13365 2005-07-16 Wim Taymans <wim@fluendo.com>
13367 * docs/libs/tmpl/gstringbuffer.sgml:
13368 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
13369 (query_rates), (query_positions_elems), (query_positions_pads),
13370 (update_scale), (do_seek):
13371 Updated seek example.
13373 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
13374 (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
13375 (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
13376 (gst_ogg_demux_loop):
13377 Push out correct discont values.
13379 * ext/theora/theoradec.c: (theora_dec_src_convert),
13380 (theora_dec_sink_convert), (theora_dec_src_getcaps),
13381 (theora_dec_sink_event), (theora_handle_type_packet),
13382 (theora_handle_header_packet), (theora_dec_push),
13383 (theora_handle_data_packet), (theora_dec_chain),
13384 (theora_dec_change_state):
13385 Better timestamping.
13387 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
13388 (vorbis_dec_sink_event), (vorbis_dec_push),
13389 (vorbis_handle_data_packet), (vorbis_dec_chain):
13390 * ext/vorbis/vorbisdec.h:
13391 Better timestamping.
13393 * gst-libs/gst/audio/gstbaseaudiosink.c:
13394 (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
13395 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
13396 Handle syncing on timestamps instead of sample offsets. Make
13397 use of DISCONT values as described in design docs.
13399 * gst-libs/gst/audio/gstbaseaudiosrc.c:
13400 (gst_base_audio_src_get_time):
13401 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
13402 (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
13403 (gst_ring_buffer_read):
13404 * gst-libs/gst/audio/gstringbuffer.h:
13405 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
13406 (gst_ximagesink_show_frame):
13407 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
13408 Correcly convert buffer timestamp to stream time.
13410 2005-07-16 Wim Taymans <wim@fluendo.com>
13412 * gst/audioconvert/gstaudioconvert.c:
13413 (gst_audio_convert_get_buffer):
13414 Timestamp buffers correctly.
13416 * gst/playback/gstplaybin.c: (gen_video_element):
13417 Make internal fakesink silent.
13419 2005-07-15 Wim Taymans <wim@fluendo.com>
13421 * gst/ffmpegcolorspace/Makefile.am:
13422 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13423 (gst_ffmpegcsp_caps_remove_format_info),
13424 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
13425 (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
13426 (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
13427 (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
13428 Ported ffmpegcolorspace to basetransform.
13430 * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
13431 * gst/volume/gstvolume.c: (volume_transform):
13434 2005-07-14 Wim Taymans <wim@fluendo.com>
13436 * gst/videotestsrc/Makefile.am:
13437 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
13438 (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
13439 (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
13440 (gst_videotestsrc_init), (gst_videotestsrc_event),
13441 (gst_videotestsrc_create), (gst_videotestsrc_start),
13442 (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
13443 (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
13444 (gst_videotestsrc_get_property):
13445 * gst/videotestsrc/gstvideotestsrc.h:
13446 Make videotestsrc a pushsrc.
13448 2005-07-14 Wim Taymans <wim@fluendo.com>
13450 * gst/tcp/gstfdset.c: (gst_fdset_free):
13451 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
13452 (gst_multifdsink_add), (gst_multifdsink_remove),
13453 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
13454 (gst_multifdsink_remove_client_link),
13455 (gst_multifdsink_client_queue_data),
13456 (gst_multifdsink_client_queue_caps),
13457 (gst_multifdsink_client_queue_buffer),
13458 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
13459 (gst_multifdsink_stop):
13460 * gst/tcp/gstmultifdsink.h:
13463 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
13464 Also draw image when not from a pool.
13466 2005-07-14 Wim Taymans <wim@fluendo.com>
13468 * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
13469 (mute_stream), (silence_stream):
13470 Small debug additions.
13472 2005-07-14 Wim Taymans <wim@fluendo.com>
13474 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
13475 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
13476 (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
13477 Better error recovery, ignore unconnected pads and
13480 2005-07-14 Thomas Vander Stichele <thomas at apestaart dot org>
13482 * docs/libs/tmpl/gstaudio.sgml:
13483 * docs/libs/tmpl/gstcolorbalance.sgml:
13484 * docs/libs/tmpl/gstgconf.sgml:
13485 * docs/libs/tmpl/gstmixer.sgml:
13486 * docs/libs/tmpl/gstringbuffer.sgml:
13487 * docs/libs/tmpl/gsttuner.sgml:
13488 * gst-libs/gst/audio/gstbaseaudiosrc.c:
13489 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
13490 (gst_tcpclientsrc_class_init):
13491 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
13492 (gst_tcpserversrc_class_init):
13493 * sys/v4l/gstv4lelement.c:
13494 more autistic cleanliness in functions/names/defines
13496 2005-07-13 Thomas Vander Stichele <thomas at apestaart dot org>
13499 make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
13500 added manually to each Makefile.am so we are sure it goes
13501 *last* and doesn't add -L flags before linking in libs of our
13502 own, like, say, internal .la libs, that then accidentally pick
13503 up the installed copy.
13504 * docs/libs/Makefile.am:
13505 * ext/alsa/Makefile.am:
13506 * ext/cdparanoia/Makefile.am:
13507 * ext/gnomevfs/Makefile.am:
13508 * ext/libvisual/Makefile.am:
13509 * ext/ogg/Makefile.am:
13510 * ext/theora/Makefile.am:
13511 * ext/vorbis/Makefile.am:
13512 * gst-libs/gst/video/Makefile.am:
13513 * gst/adder/Makefile.am:
13514 * gst/audioconvert/Makefile.am:
13515 * gst/audiorate/Makefile.am:
13516 * gst/audioscale/Makefile.am:
13517 * gst/ffmpegcolorspace/Makefile.am:
13518 * gst/playback/Makefile.am:
13519 * gst/sine/Makefile.am:
13520 * gst/subparse/Makefile.am:
13521 * gst/tags/Makefile.am:
13522 * gst/tcp/Makefile.am:
13523 * gst/typefind/Makefile.am:
13524 * gst/videorate/Makefile.am:
13525 * gst/videoscale/Makefile.am:
13526 * gst/videotestsrc/Makefile.am:
13527 * gst/volume/Makefile.am:
13528 * sys/v4l/Makefile.am:
13529 * sys/ximage/Makefile.am:
13530 * sys/xvimage/Makefile.am:
13531 adapt properly to this change. This should make sure that
13532 plugins and libs properly link to the as-yet-uninstalled
13533 copies of stuff like libgstinterfaces and libgstvideo
13535 2005-07-13 Andy Wingo <wingo@pobox.com>
13537 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
13538 (gst_v4lsrc_fixate): Fixate on format as well.
13540 * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy)
13541 (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
13542 buffer points to it.
13543 (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
13544 rather just doing X calls ourselves. Also fixes a memleak.
13546 2005-07-12 Andy Wingo <wingo@pobox.com>
13548 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property)
13549 (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init)
13550 (gst_v4lsrc_create): Re-add the copy-mode property, default to
13551 TRUE to avoid deadlocks if an element holds on to our buffers.
13553 2005-07-11 Thomas Vander Stichele <thomas at apestaart dot org>
13555 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
13556 (gst_sinesrc_init), (gst_sinesrc_create),
13557 (gst_sinesrc_set_property), (gst_sinesrc_get_property),
13558 (gst_sinesrc_start):
13559 * gst/sine/gstsinesrc.h:
13560 removing num-buffers property before moving it
13562 2005-07-10 Thomas Vander Stichele <thomas at apestaart dot org>
13565 use overridable ERROR_CFLAGS
13566 * docs/libs/gst-plugins-base-libs.types:
13567 * docs/libs/tmpl/gstringbuffer.sgml:
13568 * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
13569 (gst_alsasink_class_init):
13570 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
13571 (gst_alsasrc_class_init):
13572 * gst-libs/gst/audio/audio.h:
13573 * gst-libs/gst/audio/gstaudioclock.h:
13574 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
13575 (gst_audio_filter_base_init), (gst_audio_filter_class_init),
13576 (gst_audio_filter_link), (gst_audio_filter_init),
13577 (gst_audio_filter_chain), (gst_audio_filter_set_property),
13578 (gst_audio_filter_get_property),
13579 (gst_audio_filter_class_add_pad_templates):
13580 * gst-libs/gst/audio/gstaudiofilter.h:
13581 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
13582 (gst_audio_filter_template_get_type),
13583 (gst_audio_filter_template_base_init),
13584 (gst_audio_filter_template_class_init),
13585 (gst_audio_filter_template_init),
13586 (gst_audio_filter_template_set_property),
13587 (gst_audio_filter_template_get_property), (plugin_init),
13588 (gst_audio_filter_template_setup),
13589 (gst_audio_filter_template_filter),
13590 (gst_audio_filter_template_filter_inplace):
13591 * gst-libs/gst/audio/gstaudiosink.c:
13592 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
13593 (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
13594 (gst_audioringbuffer_release), (gst_audioringbuffer_start),
13595 (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
13596 (gst_audio_sink_base_init), (gst_audio_sink_class_init),
13597 (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
13598 * gst-libs/gst/audio/gstaudiosink.h:
13599 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
13600 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
13601 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
13602 (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
13603 (gst_audioringbuffer_delay), (gst_audio_src_base_init),
13604 (gst_audio_src_class_init), (gst_audio_src_init),
13605 (gst_audio_src_create_ringbuffer):
13606 * gst-libs/gst/audio/gstaudiosrc.h:
13607 * gst-libs/gst/audio/gstbaseaudiosink.c:
13608 (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
13609 (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
13610 (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
13611 (gst_base_audio_sink_set_property),
13612 (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
13613 (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
13614 (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
13615 (gst_base_audio_sink_create_ringbuffer),
13616 (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
13617 * gst-libs/gst/audio/gstbaseaudiosink.h:
13618 * gst-libs/gst/audio/gstbaseaudiosrc.c:
13619 (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
13620 (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
13621 (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
13622 (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
13623 (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
13624 (gst_base_audio_src_event), (gst_base_audio_src_create),
13625 (gst_base_audio_src_create_ringbuffer),
13626 (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
13627 * gst-libs/gst/audio/gstbaseaudiosrc.h:
13628 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
13629 (gst_ring_buffer_class_init), (gst_ring_buffer_init),
13630 (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
13631 (gst_ring_buffer_debug_spec_caps),
13632 (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
13633 (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
13634 (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
13635 (gst_ring_buffer_start), (gst_ring_buffer_pause),
13636 (gst_ring_buffer_stop), (gst_ring_buffer_delay),
13637 (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
13638 (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
13639 (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
13640 (gst_ring_buffer_clear):
13641 * gst-libs/gst/audio/gstringbuffer.h:
13642 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
13643 (gst_video_sink_class_init), (gst_video_sink_get_type):
13644 * gst-libs/gst/video/videosink.h:
13645 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
13646 (gst_multifdsink_class_init),
13647 (gst_multifdsink_handle_client_write),
13648 (gst_multifdsink_change_state):
13649 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
13650 (gst_tcpclientsink_setcaps):
13651 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
13652 (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
13653 (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
13654 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
13655 (gst_ximagesink_send_pending_navigation),
13656 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
13657 (gst_ximagesink_class_init), (gst_ximagesink_get_type):
13658 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
13659 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
13660 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
13661 (gst_xvimagesink_send_pending_navigation),
13662 (gst_xvimagesink_navigation_send_event),
13663 (gst_xvimagesink_set_xwindow_id),
13664 (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
13665 (gst_xvimagesink_get_type):
13666 more macro splitting
13668 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
13670 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
13671 plug a memleak, allows me to import 1479 albums in one go
13673 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
13674 (vorbis_handle_type_packet), (vorbis_dec_chain),
13675 (vorbis_dec_change_state):
13676 fix some format strings
13678 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
13680 * docs/libs/tmpl/gstcolorbalance.sgml:
13681 * docs/libs/tmpl/gstmixer.sgml:
13682 * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
13683 (gst_alsasink_set_property), (gst_alsasink_get_property):
13684 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
13685 (gst_alsasrc_set_property), (gst_alsasrc_get_property):
13686 add device property
13688 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
13690 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
13691 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
13692 (audiocast_register_listener), (audiocast_thread_run),
13693 (gst_gnomevfssrc_send_additional_headers_callback),
13694 (gst_gnomevfssrc_received_headers_callback),
13695 (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
13696 (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
13697 (gst_gnomevfssrc_get_size):
13698 add/clean up debugging
13699 * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
13702 2005-07-07 Andy Wingo <wingo@pobox.com>
13704 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
13705 framerate. Need to get a handle on when exactly this function is
13708 * sys/v4l/v4lsrc_calls.h:
13709 * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
13710 (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
13711 (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
13713 * sys/v4l/v4l_calls.h: Cast to V4lElement.
13714 * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
13715 v4lelements are sources.
13717 * sys/v4l/gstv4lxoverlay.h:
13718 * sys/v4l/gstv4lxoverlay.c:
13719 * sys/v4l/gstv4ltuner.h:
13720 * sys/v4l/gstv4ltuner.c: Header loc fixen.
13722 * sys/v4l/gstv4lsrc.h:
13723 * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
13724 PushSrc/BaseSrc. Removed most sync-related properties, videorate
13725 or something should handle that. Made a live source.
13727 * sys/v4l/gstv4lelement.h:
13728 * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
13729 signals. Some cleanups.
13731 * sys/v4l/gstv4lcolorbalance.h: Interface header update.
13733 * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
13736 * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
13739 * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
13741 2005-07-07 Wim Taymans <wim@fluendo.com>
13743 * ext/theora/theoradec.c: (theora_get_query_types),
13744 (theora_dec_src_getcaps), (theora_dec_push):
13745 * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
13746 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
13747 Remove deprecated/unused query types.
13749 2005-07-06 Wim Taymans <wim@fluendo.com>
13751 * ext/alsa/Makefile.am:
13752 * ext/alsa/gstalsaplugin.c: (plugin_init):
13753 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
13754 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
13755 (gst_alsasrc_dispose), (gst_alsasrc_base_init),
13756 (gst_alsasrc_class_init), (gst_alsasrc_init),
13757 (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
13758 (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
13759 (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
13760 (gst_alsasrc_reset):
13761 * ext/alsa/gstalsasrc.h:
13762 * gst-libs/gst/audio/Makefile.am:
13763 * gst-libs/gst/audio/gstaudiosink.c:
13764 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
13765 (gst_audioringbuffer_start):
13766 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
13767 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
13768 (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
13769 (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
13770 (gst_audioringbuffer_release), (gst_audioringbuffer_start),
13771 (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
13772 (gst_audiosrc_base_init), (gst_audiosrc_class_init),
13773 (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
13774 * gst-libs/gst/audio/gstaudiosrc.h:
13775 * gst-libs/gst/audio/gstbaseaudiosink.c:
13776 (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
13777 (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
13778 (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
13779 * gst-libs/gst/audio/gstbaseaudiosrc.c:
13780 (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
13781 (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
13782 (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
13783 (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
13784 (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
13785 (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
13786 (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
13787 (gst_baseaudiosrc_change_state):
13788 * gst-libs/gst/audio/gstbaseaudiosrc.h:
13789 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
13790 (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
13791 (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
13792 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
13793 (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
13794 (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
13795 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
13796 * gst-libs/gst/audio/gstringbuffer.h:
13797 Added audiosource base classes.
13798 Ported alsasrc, still very basic.
13800 2005-07-06 Wim Taymans <wim@fluendo.com>
13802 * ext/theora/theoradec.c: (theora_dec_src_getcaps),
13803 (theora_dec_push), (theora_handle_data_packet):
13804 Prepare for better timestamp fix later.
13806 * gst/audioconvert/gstaudioconvert.c:
13807 List most accurate caps first
13809 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
13810 Use proper pad task function.
13812 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
13813 (gst_xvimagesink_show_frame):
13814 Fix deadlock when alloc failed.
13816 2005-07-05 Andy Wingo <wingo@pobox.com>
13818 * ext/gnomevfs/gstgnomevfssrc.c:
13819 * gst/sine/gstsinesrc.c:
13820 * gst/tcp/gsttcpserversrc.c:
13821 * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
13823 * sys/v4l/: Port from 0.8.
13825 * Many files: Null if we got it....
13827 2005-07-05 Andy Wingo <wingo@pobox.com>
13829 * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read):
13830 * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
13833 2005-07-05 Wim Taymans <wim@fluendo.com>
13836 * gst/tcp/Makefile.am:
13838 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
13839 (gst_multifdsink_base_init), (gst_multifdsink_class_init),
13840 (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
13841 (is_sync_frame), (gst_multifdsink_handle_client_write),
13842 (gst_multifdsink_render), (gst_multifdsink_start),
13843 (gst_multifdsink_stop), (gst_multifdsink_change_state):
13844 * gst/tcp/gstmultifdsink.h:
13845 * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
13846 (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
13847 (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
13848 * gst/tcp/gsttcp.h:
13849 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
13850 (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
13851 (gst_tcpclientsink_render), (gst_tcpclientsink_start),
13852 (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
13853 * gst/tcp/gsttcpclientsink.h:
13854 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
13855 (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
13856 (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
13857 (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
13858 (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
13859 * gst/tcp/gsttcpclientsrc.h:
13860 * gst/tcp/gsttcpplugin.c: (plugin_init):
13861 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
13862 * gst/tcp/gsttcpserversink.h:
13863 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
13864 (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
13865 (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
13866 (gst_tcpserversrc_create), (gst_tcpserversrc_start),
13867 (gst_tcpserversrc_stop):
13868 * gst/tcp/gsttcpserversrc.h:
13869 * gst/tcp/gsttcpsink.c:
13870 * gst/tcp/gsttcpsink.h:
13871 * gst/tcp/gsttcpsrc.c:
13872 * gst/tcp/gsttcpsrc.h:
13873 Ported tcp plugins to 0.9.
13876 2005-07-05 Andy Wingo <wingo@pobox.com>
13878 * gst/playback/gstplaybasebin.c (fill_buffer):
13879 message_new_application fixen.
13881 * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
13884 2005-07-04 Wim Taymans <wim@fluendo.com>
13886 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
13887 Set caps on output buffer.
13889 2005-07-04 Andy Wingo <wingo@pobox.com>
13891 * ext/gnomevfs/gstgnomevfssrc.c
13892 (gst_gnomevfssrc_received_headers_callback)
13893 (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
13896 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
13897 No refcount leakage.
13899 * configure.ac: Enable -Werror.
13901 * ext/theora/theoradec.c (theora_dec_src_getcaps):
13902 * gst/audioconvert/bufferframesconvert.c
13903 (buffer_frames_convert_fixate):
13904 * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
13905 (gst_audio_convert_fixate):
13906 * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
13907 (gst_sinesrc_create): Fixate func changes.
13909 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
13910 (gst_ximagesink_buffer_alloc): Unused var.
13912 2005-07-01 Andy Wingo <wingo@pobox.com>
13914 * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
13915 getcaps to do explicit caps. Needs to be done in all decoders,
13916 possibly via a base class.
13918 * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
13920 * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
13921 caps on the sink pad, just rely on the pad template. Also, setting
13922 ANY caps on a pad is not valid because the caps are not fixed.
13924 * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
13925 caps on the buffer, and get the width from the desired_caps if
13927 (gst_ximagesink_renegotiate_size): Implement via setting the
13928 desired_caps on the ximagesink.
13929 (gst_ximagesink_setcaps): Only reset the width of the player if it
13930 wasn't already set. Not sure if this is right.
13931 (gst_ximagesink_show_frame): Memcpy only for normal buffers.
13933 * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
13934 that the user wants. NULL unless the window has been resized.
13936 * gst/volume/gstvolume.c (volume_transform): Adapt to
13937 basetransform refcount changes.
13939 2005-07-01 Andy Wingo <wingo@pobox.com>
13941 * gst/videoscale/gstvideoscale.c:
13942 * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
13943 from BaseTransform, implements a transform_caps. Removed dead code
13944 including some PAR stuff that was never reached -- should probably
13945 be added back somehow.
13947 2005-07-01 Andy Wingo <wingo@pobox.com>
13949 * gst/videoscale: Merge David's work from 0.8 branch. Changes to
13952 2005-06-30 Thomas Vander Stichele <thomas at apestaart dot org>
13955 * docs/libs/Makefile.am:
13956 * docs/libs/gst-plugins-libs.types:
13957 * ext/alsa/Makefile.am:
13958 * ext/alsa/gstalsamixer.h:
13959 * ext/alsa/gstalsamixeroptions.h:
13960 * ext/alsa/gstalsamixertrack.h:
13961 * gst-libs/gst/Makefile.am:
13962 * gst-libs/gst/colorbalance/.cvsignore:
13963 * gst-libs/gst/colorbalance/Makefile.am:
13964 * gst-libs/gst/colorbalance/colorbalance-marshal.list:
13965 * gst-libs/gst/colorbalance/colorbalance.c:
13966 * gst-libs/gst/colorbalance/colorbalance.h:
13967 * gst-libs/gst/colorbalance/colorbalance.vcproj:
13968 * gst-libs/gst/colorbalance/colorbalancechannel.c:
13969 * gst-libs/gst/colorbalance/colorbalancechannel.h:
13970 * gst-libs/gst/interfaces/Makefile.am:
13971 * gst-libs/gst/interfaces/colorbalance.c:
13972 (gst_color_balance_class_init):
13973 * gst-libs/gst/interfaces/colorbalance.h:
13974 * gst-libs/gst/interfaces/interfaces-marshal.list:
13975 * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
13976 * gst-libs/gst/interfaces/mixer.h:
13977 * gst-libs/gst/interfaces/mixeroptions.h:
13978 * gst-libs/gst/interfaces/navigation.c:
13979 * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
13980 * gst-libs/gst/interfaces/tuner.h:
13981 * gst/volume/Makefile.am:
13982 * gst/volume/gstvolume.c:
13983 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
13984 * sys/ximage/Makefile.am:
13985 * sys/ximage/ximagesink.c:
13986 * sys/xvimage/Makefile.am:
13987 * sys/xvimage/xvimagesink.c:
13988 fold in all interfaces into an interfaces dir, preserving CVS
13991 2005-06-30 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13993 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
13994 Fix build after riff changes.
13996 2005-06-30 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13998 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
13999 (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
14000 (gst_riff_create_video_template_caps),
14001 (gst_riff_create_audio_template_caps),
14002 (gst_riff_create_iavs_template_caps):
14003 * gst-libs/gst/riff/riff-media.h:
14004 * gst-libs/gst/riff/riff-read.h:
14005 * gst-libs/gst/riff/riff.c: (gst_riff_init):
14006 Add gst_riff_init() to initialize the debug category, instead
14007 of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
14009 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14011 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
14012 Oops, I shouldn't apply hacks.
14014 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14016 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
14017 Remove pad_loop function which doesn't work.
14019 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14021 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
14022 Send EOS when deactivating.
14023 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
14024 (check_queue), (queue_threshold_reached), (queue_out_of_data),
14025 (gen_preroll_element), (probe_triggered), (mute_stream),
14026 (silence_stream), (new_decoded_pad), (setup_substreams),
14027 (set_active_source):
14028 * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
14029 (remove_sinks), (add_sink):
14030 * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
14031 Change for new probe API.
14033 2005-06-29 Wim Taymans <wim@fluendo.com>
14035 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
14036 * gst-libs/gst/audio/gstbaseaudiosink.c:
14037 (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
14038 (gst_baseaudiosink_change_state):
14039 * gst-libs/gst/audio/gstbaseaudiosink.h:
14040 * gst-libs/gst/audio/gstringbuffer.c:
14041 (gst_ringbuffer_set_callback):
14042 Fix compilation error.
14043 Ringbuffer starts out as not running.
14044 Free our clock in dispose.
14045 When releasing the ringbuffer we need to renegotiate so
14046 clear the pad caps.
14048 2005-06-29 Thomas Vander Stichele <thomas at apestaart dot org>
14052 * docs/Makefile.am:
14053 * docs/libs/Makefile.am:
14054 * docs/libs/gst-plugins-libs-docs.sgml:
14055 * docs/libs/gst-plugins-libs-sections.txt:
14056 * docs/libs/gst-plugins-libs.types:
14057 * docs/libs/tmpl/gstaudio.sgml:
14058 * docs/libs/tmpl/gstcolorbalance.sgml:
14059 * docs/libs/tmpl/gstringbuffer.sgml:
14060 * gst-libs/gst/audio/gstringbuffer.c:
14061 (gst_ringbuffer_set_callback):
14062 reinstate gtk-doc docs for plugin libs
14064 2005-06-28 Wim Taymans <wim@fluendo.com>
14066 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14067 (gst_ogg_demux_init):
14068 Removed pad loop function.
14070 2005-06-28 Wim Taymans <wim@fluendo.com>
14072 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
14073 If we're building a chain we are not in an error case
14074 when we queue a buffer.
14076 2005-06-28 Andy Wingo <wingo@pobox.com>
14078 * *.c: Don't cast to GstObject before reffing/unreffing.
14080 2005-06-27 Andy Wingo <wingo@pobox.com>
14082 * gst/videotestsrc/gstvideotestsrc.c
14083 (gst_videotestsrc_activate_push): Activation API changes.
14085 * gst/playback/gstdecodebin.c (gst_decode_bin_change_state)
14086 (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
14087 they have refs on the decodebin.
14089 * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
14091 (gst_ogg_pad_typefind): Don't leak a pad ref.
14092 (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
14093 (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push)
14094 (gst_ogg_demux_sink_activate_pull): Changes for activation API.
14096 2005-06-27 Edward Hervey <edward@fluendo.com>
14098 * ext/theora/theoradec.c: (theora_dec_change_state):
14099 re-arranged call to parent's state change in order to avoid locks (or
14102 2005-06-26 Edward Hervey <edward@fluendo.com>
14104 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
14105 2nd argument of 'unknow-type' signal is a GstCaps and not a
14108 2005-06-25 Jan Schmidt <thaytan@mad.scientist.com>
14109 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
14110 Set the worker thread's running flag to TRUE before starting the
14112 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
14113 Catch a failure to add typefind to the bin.
14115 2005-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
14117 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
14118 (gst_sinesrc_init), (gst_sinesrc_create),
14119 (gst_sinesrc_set_property), (gst_sinesrc_get_property),
14120 (gst_sinesrc_start):
14121 * gst/sine/gstsinesrc.h:
14122 add num-buffers and timestamp-offset properties
14123 * gst/videotestsrc/gstvideotestsrc.c:
14124 (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
14125 (gst_videotestsrc_get_property):
14126 add timestamp-offset property
14128 2005-06-23 Christian Schaller <uraeus@gnome.org>
14130 * configure.ac: add videorate
14131 * gst-plugins-base.spec.in: add videorate
14133 2005-06-23 Wim Taymans <wim@fluendo.com>
14135 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14136 (gst_videorate_getcaps), (gst_videorate_setcaps),
14137 (gst_videorate_event), (gst_videorate_chain):
14138 Fixed videorate, fixating an already fixated caps is not
14141 2005-06-23 Wim Taymans <wim@fluendo.com>
14144 * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
14145 Buffer on caps is not boxed anymore.
14147 2005-06-22 Wim Taymans <wim@fluendo.com>
14149 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
14150 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
14151 Set buffers on caps as miniobjects and not as boxed.
14153 2005-06-19 Thomas Vander Stichele <thomas at apestaart dot org>
14158 === release 0.9.1 ===
14160 2005-06-19 Thomas Vander Stichele <thomas at apestaart dot org>
14181 updates for release
14183 2005-06-09 Andy Wingo <wingo@pobox.com>
14185 * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
14187 2005-06-09 Andy Wingo <wingo@pobox.com>
14190 * gst-libs/gst/Makefile.am:
14191 * gst-libs/gst/net/Makefile.am:
14192 Add gstnet to build.
14194 2005-06-09 Andy Wingo <wingo@pobox.com>
14196 * gst-libs/gst/gconf/gconf.c:
14197 * gst/playback/test.c:
14198 * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
14201 * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
14203 * ext/theora/theoraenc.c (theora_enc_chain):
14204 * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
14206 * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
14209 2005-06-02 Wim Taymans <wim@fluendo.com>
14211 * gst-libs/gst/net/Makefile.am:
14212 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
14213 * pkgconfig/gstreamer-libs.pc.in:
14214 Added net stuff, version net lib.
14216 2005-06-02 Wim Taymans <wim@fluendo.com>
14218 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
14219 (query_rates), (query_positions_elems), (query_positions_pads),
14221 Updated seek example.
14223 2005-06-02 Andy Wingo <wingo@pobox.com>
14225 * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
14226 * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
14229 * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
14230 remove the typefind, the bin dispose will do it for us. When it's
14231 removed and unreffed, the signal handler will be disconnected,
14233 (unlinked): It's too difficult to disconnect from unlinked
14234 handlers, as they are on pads not elements. Just punt if the pads
14235 aren't grandkids of the bin.
14237 2005-06-02 Wim Taymans <wim@fluendo.com>
14240 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14241 (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
14242 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
14243 * ext/theora/theoradec.c: (theora_dec_src_query),
14244 (theora_handle_data_packet):
14245 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
14246 (theora_enc_chain):
14247 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14248 (vorbis_handle_data_packet):
14249 * gst/audioconvert/bufferframesconvert.c:
14250 (buffer_frames_convert_chain):
14251 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14252 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14253 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
14254 (gst_ffmpegcsp_chain):
14255 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14256 (gst_videorate_getcaps), (gst_videorate_setcaps),
14257 (gst_videorate_event), (gst_videorate_chain):
14258 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
14259 (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
14260 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14261 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
14262 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
14263 (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
14264 (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
14265 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
14266 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
14267 Cleanups and buffer alloc.
14269 2005-05-31 Wim Taymans <wim@fluendo.com>
14271 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
14272 Don't try to call the delay method when the device is not
14275 2005-05-31 Wim Taymans <wim@fluendo.com>
14277 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
14278 Get actual segment size and buffer size after opening
14281 2005-05-30 Wim Taymans <wim@fluendo.com>
14283 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
14284 (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
14285 Also FLUSH upstream, makes the loop function exit faster.
14287 * ext/theora/theoradec.c: (theora_dec_src_query):
14288 Some more debug info in the query.
14290 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14291 (gst_ximagesink_setcaps):
14292 Release lock on par error, better error reporting.
14294 2005-05-26 Wim Taymans <wim@fluendo.com>
14296 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14297 (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
14298 (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
14299 Clear chains in READY
14300 Queue packets until the chain is activated.
14302 2005-05-25 Wim Taymans <wim@fluendo.com>
14304 * gst-libs/gst/audio/gstaudiosink.c:
14305 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14306 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
14307 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14308 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
14309 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
14310 (gst_audiosink_create_ringbuffer):
14311 * gst-libs/gst/audio/gstbaseaudiosink.c:
14312 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
14313 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
14314 (gst_baseaudiosink_set_property), (build_linear_format),
14315 (debug_spec_caps), (debug_spec_buffer),
14316 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
14317 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
14318 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
14319 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
14320 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
14321 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
14322 (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
14323 (gst_ringbuffer_play), (gst_ringbuffer_pause),
14324 (gst_ringbuffer_stop), (gst_ringbuffer_delay),
14325 (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
14326 (wait_segment), (gst_ringbuffer_commit),
14327 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
14328 (gst_ringbuffer_clear):
14329 Various small cleanups.
14331 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
14332 (gst_audio_convert_change_state):
14333 * gst/subparse/gstsubparse.c: (gst_subparse_chain):
14334 No need to take the locks anymore.
14336 2005-05-25 Wim Taymans <wim@fluendo.com>
14338 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
14339 (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
14340 (remove_element_chain), (no_more_pads), (unlinked), (close_link),
14342 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
14343 (group_destroy), (group_commit), (queue_overrun),
14344 (gen_preroll_element), (no_more_pads), (preroll_unlinked),
14345 (mute_stream), (new_decoded_pad), (setup_substreams),
14346 (setup_source), (mute_group_type), (set_active_source),
14347 (gst_play_base_bin_change_state):
14348 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
14349 (gen_video_element), (gen_text_element), (gen_audio_element),
14350 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
14351 * gst/playback/gststreaminfo.c: (gst_stream_info_new),
14352 (gst_stream_info_dispose), (gst_stream_info_set_mute):
14353 * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
14354 Some playbin cleanups mostly refcounting sloppyness.
14356 2005-05-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14358 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
14359 Work with streaming input.
14361 2005-05-25 Wim Taymans <wim@fluendo.com>
14363 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14364 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14365 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
14366 (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
14367 No need to take the STREAM lock anymore.
14369 2005-05-25 Wim Taymans <wim@fluendo.com>
14371 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
14372 (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
14373 (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
14374 (gst_ogg_demux_chain), (gst_ogg_demux_loop),
14375 (gst_ogg_demux_sink_activate):
14376 * ext/theora/theoradec.c: (theora_dec_src_event),
14377 (theora_handle_comment_packet), (theora_dec_chain),
14378 (theora_dec_change_state):
14379 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14380 (vorbis_handle_data_packet), (vorbis_dec_chain),
14381 (vorbis_dec_change_state):
14382 Remove STREAM locks as they are taken in core now.
14383 Never set bogus granulepos on vorbis/theora.
14384 Fix leaks in theoradec tag parsing.
14386 2005-05-25 Wim Taymans <wim@fluendo.com>
14388 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
14389 Fix memleaks, GST_BUFFER_DATA() is not freed.
14391 2005-05-25 Wim Taymans <wim@fluendo.com>
14393 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
14394 Open non-blocking, set to blocking mode afterwards to avoid
14395 lockups when audio device is busy.
14397 2005-05-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14399 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
14400 This can't be good.
14402 2005-05-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14404 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
14405 (gst_audio_convert_chain), (gst_audio_convert_link_src),
14406 (gst_audio_convert_setcaps):
14407 Implement instant setup switching.
14409 2005-05-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14411 * gst/playback/gstplaybasebin.c: (probe_triggered):
14412 Fix missing unlock.
14413 * gst/playback/gstplaybin.c: (add_sink):
14414 First add, then link (otherwise pad link fails).
14416 2005-05-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
14418 * examples/Makefile.am:
14419 fix buildbot (make distcheck)
14421 2005-05-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14423 * gst/playback/gstplaybin.c: (gen_vis_element):
14424 Remove some wrong code. Doesn't work yet.
14426 2005-05-19 Wim Taymans <wim@fluendo.com>
14428 * gst-libs/gst/net/Makefile.am:
14429 * gst-libs/gst/net/README:
14430 * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
14431 (gst_netbuffer_class_init), (gst_netbuffer_init),
14432 (gst_netbuffer_finalize), (gst_netbuffer_copy),
14433 (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
14434 (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
14435 (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
14436 * gst-libs/gst/net/gstnetbuffer.h:
14437 Added buffer subclass to store extra to/from addresses for
14438 network sources/sinks.
14440 2005-05-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14442 * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
14443 Don't lock an unassigned variable.
14445 2005-05-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14447 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
14448 Increase buffer for video, decrease buffer for other media types.
14449 * gst/playback/gstplaybin.c: (gen_video_element),
14450 (gen_audio_element):
14451 Change names for debugging purposes.
14453 2005-05-18 Wim Taymans <wim@fluendo.com>
14455 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14456 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14457 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
14458 (gst_ffmpegcsp_chain):
14459 Enable buffer alloc passthrough if the source and dest
14460 formats are the same.
14462 2005-05-17 Wim Taymans <wim@fluendo.com>
14464 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
14465 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
14466 (gst_ogg_demux_chain_unlocked):
14467 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
14468 (gst_audio_convert_caps_remove_format_info),
14469 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
14470 (gst_audio_convert_fixate), (gst_audio_convert_change_state):
14471 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14472 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14473 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
14474 (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
14475 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
14476 (gst_ffmpegcsp_get_property):
14477 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
14478 (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
14479 (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
14480 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
14481 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
14482 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
14483 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
14484 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
14485 Leak fixes in oggdemux.
14486 Some cleanups in audioconvert.
14487 Make passthrough work along with buffer_alloc etc.
14488 Make buffer_alloc and buffer recycling actually work in
14491 2005-05-17 Thomas Vander Stichele <thomas at apestaart dot org>
14493 * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
14494 make the compiler happy
14496 2005-05-17 Wim Taymans <wim@fluendo.com>
14498 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
14499 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
14500 (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
14501 (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
14502 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
14503 (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
14504 (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
14505 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
14506 (gst_xvimagesink_set_xwindow_id):
14507 * sys/xvimage/xvimagesink.h:
14508 Port xvimagesink to new MiniObject.
14510 2005-05-17 Wim Taymans <wim@fluendo.com>
14512 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
14513 (gst_audiofilter_chain):
14514 * gst-libs/gst/audio/gstaudiosink.c:
14515 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14516 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
14517 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14518 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
14519 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
14520 (gst_audiosink_create_ringbuffer):
14521 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
14522 (gst_audio_convert_caps_remove_format_info),
14523 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
14524 (gst_audio_convert_fixate), (gst_audio_convert_channels):
14525 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14526 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14527 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
14528 Fix passthrough in ffmpegcolorspace.
14529 Fix memset in audiosink on wrong memory.
14531 2005-05-16 David Schleef <ds@schleef.org>
14533 * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
14536 2005-05-16 David Schleef <ds@schleef.org>
14538 Port from GstData to GstMiniObject.
14539 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
14540 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
14541 (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
14542 (gst_ogg_mux_collected):
14543 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
14544 * ext/theora/theoradec.c: (theora_handle_comment_packet),
14545 (theora_handle_data_packet):
14546 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
14547 (theora_set_header_on_caps), (theora_enc_chain):
14548 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14549 (vorbis_handle_comment_packet):
14550 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
14551 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
14552 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
14553 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
14554 * gst/audioconvert/gstaudioconvert.c:
14555 (gst_audio_convert_get_buffer):
14556 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
14557 * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
14558 (mute_stream), (silence_stream):
14559 * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
14560 * gst/volume/gstvolume.c: (volume_transform):
14561 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
14562 (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
14563 (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
14564 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
14565 (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
14566 (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
14567 (gst_ximagesink_buffer_alloc):
14568 * sys/ximage/ximagesink.h:
14570 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14572 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
14573 (fill_buffer), (check_queue), (queue_threshold_reached),
14574 (queue_out_of_data):
14575 * gst/playback/gstplaybasebin.h:
14576 Post buffer-fullness on the bus.
14578 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14580 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
14582 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
14583 (group_commit), (probe_triggered), (setup_source),
14584 (gst_play_base_bin_change_state):
14585 * gst/playback/gstplaybasebin.h:
14586 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
14587 (gst_play_bin_init), (remove_sinks), (setup_sinks),
14588 (gst_play_bin_change_state):
14589 Move setup_output_pads into a virtual function, remove
14590 group-switch (no longer needed) and redirect (handled by bus
14593 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14595 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
14596 (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
14597 (get_active_group), (get_building_group), (group_destroy),
14598 (group_commit), (check_queue), (queue_overrun),
14599 (queue_threshold_reached), (queue_out_of_data),
14600 (gen_preroll_element), (remove_groups), (unknown_type),
14601 (add_element_stream), (no_more_pads), (probe_triggered),
14602 (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
14603 (setup_substreams), (setup_source), (finish_source),
14604 (prepare_output), (muted_group_change_state),
14605 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
14606 (gst_play_base_bin_change_state):
14607 * gst/playback/gstplaybasebin.h:
14608 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
14609 (gst_play_bin_init), (gst_play_bin_set_property),
14610 (gen_video_element), (gen_text_element), (gen_audio_element),
14611 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
14612 (gst_play_bin_change_state):
14613 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
14614 (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
14615 (stream_info_change_state), (gst_stream_info_set_mute),
14616 (gst_stream_info_get_property):
14617 * gst/playback/gststreaminfo.h:
14618 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
14619 (gst_stream_selector_get_linked_pad),
14620 (gst_stream_selector_getcaps),
14621 (gst_stream_selector_get_linked_pads),
14622 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
14623 * gst/playback/gststreamselector.h:
14624 Rough port of playbin. Needs some more work, but is mostly done,
14625 and uses a few locks in important places, which should make stuff
14626 like chain-switches clean. Still uses GST_STATE() in a few places,
14627 which isn't all that good an idea, subtitles/elements disabled
14628 because no elements to test with and thus probably broken, query
14629 and event handling moved to GstBin, internal thread removed
14630 alltogether because the pipeline does that for us now. Can play
14631 Ogg/Vorbis files. Haven't tested anything else yet.
14633 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14635 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
14636 Do no-more-pads (needed for autoplugging).
14638 2005-05-10 Andy Wingo <wingo@pobox.com>
14640 * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
14641 message to the bus with the tags. Still not sent downstream tho.
14643 * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
14645 (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
14646 avoid refcounting hassles.
14648 2005-05-09 Andy Wingo <wingo@pobox.com>
14650 * gst/volume/Makefile.am:
14651 * gst/volume/demo.c
14652 * gst/volume/gstvolume.h
14653 * gst/volume/gstvolume.c: Port to 0.9 API, derive from
14654 basetransform. Probably need an audio filter base class.
14656 2005-05-09 Wim Taymans <wim@fluendo.com>
14658 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
14659 (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
14660 (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
14661 (gst_vorbisenc_chain):
14662 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
14663 (gst_audio_convert_caps_remove_format_info),
14664 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
14665 (gst_audio_convert_fixate), (gst_audio_convert_channels):
14666 Make caps writable before writing to it.
14667 Fix negotiation in audioconvert some more.
14669 2005-05-09 Wim Taymans <wim@fluendo.com>
14671 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14672 (gst_videorate_getcaps), (gst_videorate_setcaps),
14673 (gst_videorate_event), (gst_videorate_chain):
14674 Better negotiation.
14676 2005-05-09 Wim Taymans <wim@fluendo.com>
14678 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
14679 (gst_videorate_getcaps), (gst_videorate_setcaps),
14680 (gst_videorate_blank_data), (gst_videorate_init),
14681 (gst_videorate_event), (gst_videorate_chain),
14682 (gst_videorate_change_state):
14683 Port videorate, do a better job at negotiation while we're at
14686 2005-05-09 Jan Schmidt <thaytan@mad.scientist.com>
14691 * examples/Makefile.am:
14692 * gst-libs/gst/audio/Makefile.am:
14693 * gst-libs/gst/riff/Makefile.am:
14694 * gst-libs/gst/tag/Makefile.am:
14695 * gst-libs/gst/video/Makefile.am:
14696 Fixups for missing variables.
14698 2005-05-09 Wim Taymans <wim@fluendo.com>
14700 * examples/seeking/seek.c: (make_theora_pipeline),
14701 (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
14702 (query_rates), (query_positions_elems), (query_positions_pads),
14703 (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
14704 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
14705 (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
14706 (gst_ogg_pad_typefind), (gst_ogg_demux_init),
14707 (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
14708 (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
14709 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
14710 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
14711 (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
14712 (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
14713 (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
14714 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
14715 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
14716 (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
14717 * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
14718 (theora_dec_src_convert), (theora_dec_sink_convert),
14719 (theora_dec_src_query), (theora_dec_sink_query),
14720 (theora_dec_src_event), (theora_dec_sink_event),
14721 (theora_handle_comment_packet), (theora_handle_type_packet),
14722 (theora_handle_header_packet), (theora_handle_data_packet),
14723 (theora_dec_chain):
14724 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
14725 (vorbis_dec_convert), (vorbis_dec_src_query),
14726 (vorbis_dec_sink_query), (vorbis_dec_src_event),
14727 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
14728 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
14729 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
14730 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
14731 (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
14732 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
14733 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
14734 (gst_play_bin_query):
14735 * gst/playback/test3.c: (update_scale):
14736 * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
14737 (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
14738 * gst/subparse/gstsubparse.c: (gst_subparse_init):
14739 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
14740 (gst_videotestsrc_src_query):
14741 * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
14742 (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
14743 (paint_hline_YUV9):
14744 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
14745 Port to new query API.
14747 Cleanups in x[v]imagesink
14749 2005-05-09 Andy Wingo <wingo@pobox.com>
14751 * ext/alsa/gstalsasink.h:
14752 * ext/gnomevfs/gstgnomevfssrc.c:
14753 (gst_gnomevfssrc_get_icy_metadata):
14754 * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
14755 (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
14756 * ext/theora/theoradec.c (theora_dec_src_query)
14757 (theora_dec_src_event, theora_dec_sink_event)
14758 (theora_handle_comment_packet, theora_handle_data_packet):
14759 * ext/theora/theoraenc.c (theora_enc_chain):
14760 * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
14761 (vorbis_dec_sink_event, vorbis_handle_comment_packet):
14762 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
14763 * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
14765 * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
14766 (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
14767 (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
14768 (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
14769 (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
14770 (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
14771 (paint_setup_xBGR8888, paint_setup_RGBx8888)
14772 (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
14773 (paint_setup_RGB565, paint_setup_xRGB1555):
14774 * gst/videotestsrc/videotestsrc.h:
14775 * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
14776 * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
14777 (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
14780 * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
14781 gst_pad_query_position. Fixes oggdemux.
14783 2005-05-08 David Schleef <ds@schleef.org>
14785 * configure.ac: Require liboil.
14786 * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
14788 * gst/videotestsrc/videotestsrc.c:
14789 * gst/videotestsrc/videotestsrc.h:
14791 2005-05-06 Wim Taymans <wim@fluendo.com>
14793 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14794 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14795 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
14796 Well, unreffing a buffer right before pushing it is asking
14799 2005-05-06 Christian Schaller <uraeus@gnome.org>
14801 * pkgconfig/gstreamer-libs.pc.in: add missing library calls
14803 2005-05-06 Wim Taymans <wim@fluendo.com>
14805 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
14806 (gst_audio_convert_caps_remove_format_info),
14807 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
14808 (gst_audio_convert_fixate), (gst_audio_convert_channels):
14809 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14810 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14811 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
14812 * gst/sine/Makefile.am:
14813 * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
14814 (gst_sinesrc_class_init), (gst_sinesrc_init),
14815 (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
14816 (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
14817 (gst_sinesrc_update_freq):
14818 * gst/sine/gstsinesrc.h:
14819 * gst/tcp/gstmultifdsink.c:
14820 * sys/xvimage/xvimagesink.c:
14821 Fixed negotiation wrt _peer_get_caps()
14825 2005-05-06 Wim Taymans <wim@fluendo.com>
14827 * gst-libs/gst/audio/gstaudiosink.c:
14828 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14829 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
14830 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14831 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
14832 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
14833 (gst_audiosink_create_ringbuffer):
14834 * gst-libs/gst/audio/gstbaseaudiosink.c:
14835 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
14836 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
14837 (gst_baseaudiosink_set_property), (build_linear_format),
14838 (debug_spec_caps), (debug_spec_buffer),
14839 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
14840 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
14841 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
14842 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
14843 * gst-libs/gst/audio/gstbaseaudiosink.h:
14844 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
14845 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
14846 (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
14847 (gst_ringbuffer_play), (gst_ringbuffer_pause),
14848 (gst_ringbuffer_stop), (gst_ringbuffer_delay),
14849 (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
14850 (wait_segment), (gst_ringbuffer_commit),
14851 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
14852 (gst_ringbuffer_clear):
14853 * gst-libs/gst/audio/gstringbuffer.h:
14854 Make the base audiosink return an error when there is no
14855 audiobuffer negotiated.
14857 2005-05-06 Zaheer Abbas Merali <zaheerabbas at merali dot org>
14860 Disable cdparanoia until someone ports it!
14862 2005-05-06 Wim Taymans <wim@fluendo.com>
14864 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
14865 (gst_ogg_demux_sink_activate):
14866 And revert after wingo's revert.. sigh..
14868 2005-05-05 Andy Wingo <wingo@pobox.com>
14870 * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
14872 * configure.ac: Return audiorate and subparse from the ghetto.
14873 Re-enable -Wall -Werror.
14874 * gst/subparse/gstsubparse.c:
14875 * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
14876 or chain-based. Cleaned up a bit. Not tested.
14878 2005-05-05 Christian Schaller <christian@fluendo.com>
14880 * Makefile.am: remove stuff that is not building
14881 * configure.ac: remove stuff that is not building
14882 * examples/Makefile.am: remove stuff that is not building
14883 * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
14884 * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
14885 * sys/Makefile.am: remove stuff that is not building
14886 * testsuite/Makefile.am: remove stuff that is not building
14888 2005-05-05 Andy Wingo <wingo@pobox.com>
14890 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
14891 * gst-libs/gst/tag/gstvorbistag.c:
14892 (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
14893 * gst/adder/gstadder.h:
14894 * gst/audioconvert/gstchannelmix.c:
14895 (gst_audio_convert_fill_one_other):
14896 * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
14897 (gst_audiorate_init), (gst_audiorate_chain):
14898 * gst/playback/gstplaybasebin.c: (setup_source):
14899 * gst/playback/test3.c: (update_scale):
14917 2005-05-05 Wim Taymans <wim@fluendo.com>
14919 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
14920 (gst_audio_convert_caps_remove_format_info),
14921 (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
14922 (gst_audio_convert_change_state), (gst_audio_convert_channels):
14923 * gst/videotestsrc/gstvideotestsrc.c:
14924 (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
14925 (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
14926 (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
14927 (gst_videotestsrc_init), (gst_videotestsrc_loop):
14928 Don't ignore _push() return values.
14929 Make sure no processing is done when shutting down.
14930 Videotestsrc pad activation fix.
14932 2005-05-05 Wim Taymans <wim@fluendo.com>
14934 * gst/adder/Makefile.am:
14935 * gst/adder/gstadder.c: (gst_adder_setcaps),
14936 (gst_adder_class_init), (gst_adder_init),
14937 (gst_adder_request_new_pad), (gst_adder_collected),
14938 (gst_adder_change_state):
14939 * gst/adder/gstadder.h:
14940 Ported adder as an example of a mixer element using
14941 collect pads. Needs more negotiation work.
14943 2005-05-05 Wim Taymans <wim@fluendo.com>
14945 * ext/theora/theoradec.c: (_inc_granulepos),
14946 (theora_dec_src_event), (theora_dec_sink_event),
14947 (theora_handle_comment_packet), (theora_handle_type_packet),
14948 (theora_handle_header_packet), (theora_handle_data_packet),
14949 (theora_dec_chain):
14950 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
14951 (gst_theora_enc_init), (theora_enc_sink_setcaps),
14952 (theora_push_buffer), (theora_push_packet),
14953 (theora_enc_sink_event), (theora_enc_chain),
14954 (theora_enc_change_state), (theora_enc_set_property),
14955 (theora_enc_get_property):
14956 Added stream lock to decoder so that we can serialize
14958 More theoraenc porting, recover from errors, do clean
14961 2005-05-05 Wim Taymans <wim@fluendo.com>
14963 * ext/ogg/Makefile.am:
14965 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
14966 (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
14968 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
14969 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
14970 (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
14971 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
14972 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
14973 (gst_ogg_mux_change_state):
14976 2005-05-05 Wim Taymans <wim@fluendo.com>
14978 * docs/design-audiosinks.txt:
14979 * gst-libs/gst/audio/TODO:
14980 * gst-libs/gst/audio/gstaudiosink.c:
14981 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14982 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
14983 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14984 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
14985 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
14986 (gst_audiosink_create_ringbuffer):
14987 * gst-libs/gst/audio/gstbaseaudiosink.c:
14988 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
14989 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
14990 (gst_baseaudiosink_set_property), (build_linear_format),
14991 (debug_spec_caps), (debug_spec_buffer),
14992 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
14993 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
14994 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
14995 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
14996 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
14997 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
14998 (gst_ringbuffer_release), (gst_ringbuffer_play),
14999 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
15000 (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
15001 (gst_ringbuffer_set_sample), (wait_segment),
15002 (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
15003 (gst_ringbuffer_advance), (gst_ringbuffer_clear):
15004 More work on the audiosink, mostly debugging and a race in
15007 2005-04-28 Wim Taymans <wim@fluendo.com>
15009 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15010 (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
15011 * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
15012 (vorbis_dec_src_query), (vorbis_dec_src_event),
15013 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15014 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15015 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
15016 Don't crap out when seeking back to position 0.
15018 2005-04-28 Wim Taymans <wim@fluendo.com>
15020 * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
15021 (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
15022 (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
15023 (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
15024 (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
15025 Make audio sink configurable, use alsasink as default.
15027 2005-04-28 Wim Taymans <wim@fluendo.com>
15029 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
15030 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15031 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15032 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
15033 (vorbis_dec_change_state):
15034 * ext/vorbis/vorbisdec.h:
15035 Refactor, use STREAM_LOCK.
15037 2005-04-28 Wim Taymans <wim@fluendo.com>
15039 * ext/theora/theoradec.c: (_inc_granulepos),
15040 (theora_dec_sink_event), (theora_handle_comment_packet),
15041 (theora_handle_type_packet), (theora_handle_header_packet),
15042 (theora_handle_data_packet), (theora_dec_chain),
15043 (theora_dec_change_state):
15044 Refactor a bit, use STREAM_LOCK.
15046 2005-04-28 Wim Taymans <wim@fluendo.com>
15048 * ext/alsa/Makefile.am:
15049 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
15050 (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
15051 (gst_alsa_link), (gst_alsa_close_audio):
15052 * ext/alsa/gstalsaplugin.c: (plugin_init):
15053 * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
15054 (gst_alsasink_dispose), (gst_alsasink_base_init),
15055 (gst_alsasink_class_init), (gst_alsasink_init),
15056 (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
15057 (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
15058 (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
15059 (gst_alsasink_reset):
15060 * ext/alsa/gstalsasink.h:
15061 Implement alsasink with simple open/write/close API.
15062 Make alsa dir build by disabling compilation of code.
15064 2005-04-28 Wim Taymans <wim@fluendo.com>
15066 * gst-libs/gst/audio/Makefile.am:
15067 * gst-libs/gst/audio/audio.h:
15068 * gst-libs/gst/audio/audioclock.c:
15069 * gst-libs/gst/audio/audioclock.h:
15070 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
15071 (gst_audio_clock_class_init), (gst_audio_clock_init),
15072 (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
15073 * gst-libs/gst/audio/gstaudioclock.h:
15074 * gst-libs/gst/audio/gstaudiosink.c:
15075 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15076 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15077 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15078 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15079 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15080 (gst_audiosink_create_ringbuffer):
15081 * gst-libs/gst/audio/gstbaseaudiosink.c:
15082 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15083 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15084 (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
15085 (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
15086 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15087 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15088 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15089 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15090 * gst-libs/gst/audio/gstbaseaudiosink.h:
15091 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15092 (gst_ringbuffer_init), (gst_ringbuffer_finalize),
15093 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15094 (gst_ringbuffer_release), (gst_ringbuffer_play),
15095 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
15096 (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
15097 (gst_ringbuffer_set_sample), (wait_segment),
15098 (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
15099 (gst_ringbuffer_advance), (gst_ringbuffer_clear):
15100 * gst-libs/gst/audio/gstringbuffer.h:
15101 Make ringbuffer faster and more simple by removing the locks
15102 in the playback thread.
15103 Add sample accurate playback based on buffer sample offsets.
15104 Make the baseaudiosink provide a clock.
15105 Parse caps in the base class.
15106 Correctly handle seeking, flushing and state changes.
15108 2005-04-25 Thomas Vander Stichele <thomas at apestaart dot org>
15111 * gst/audioconvert/Makefile.am:
15112 * gst/audioscale/Makefile.am:
15113 Fix part of the build. Come on guys, autogen didn't even work :)
15115 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15118 * gst-libs/gst/Makefile.am:
15119 * gst-libs/gst/media-info/.cvsignore:
15120 * gst-libs/gst/media-info/Makefile.am:
15121 * gst-libs/gst/media-info/README:
15122 * gst-libs/gst/media-info/media-info-priv.c:
15123 * gst-libs/gst/media-info/media-info-priv.h:
15124 * gst-libs/gst/media-info/media-info-test.c:
15125 * gst-libs/gst/media-info/media-info.c:
15126 * gst-libs/gst/media-info/media-info.h:
15127 * gst-libs/gst/media-info/media-info.vcproj:
15128 * pkgconfig/Makefile.am:
15129 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
15130 * pkgconfig/gstreamer-media-info.pc.in:
15131 Remove media-info, which is also successed by playbin (see Totem
15134 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15137 * examples/Makefile.am:
15138 * examples/gstplay/.cvsignore:
15139 * examples/gstplay/Makefile.am:
15140 * examples/gstplay/player.c:
15141 * gst-libs/gst/Makefile.am:
15142 * gst-libs/gst/play/.cvsignore:
15143 * gst-libs/gst/play/Makefile.am:
15144 * gst-libs/gst/play/play.c:
15145 * gst-libs/gst/play/play.h:
15146 * gst-libs/gst/play/play.vcproj:
15147 * pkgconfig/Makefile.am:
15148 * pkgconfig/gstreamer-play-uninstalled.pc.in:
15149 * pkgconfig/gstreamer-play.pc.in:
15150 Remove libgstplay, playbin is now the official successor.
15152 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15155 * gst-libs/gst/Makefile.am:
15156 * gst-libs/gst/xwindowlistener/Makefile.am:
15157 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
15158 * gst-libs/gst/xwindowlistener/xwindowlistener.h:
15159 Remove deprecated xwindowlistener (I've moved xwindowlistening
15160 in the v4l/v4l2 plugins over to serverside).
15162 2005-04-25 David Schleef <ds@schleef.org>
15164 * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
15165 to examples/dynparams. Examples do not belong interspersed with
15167 * examples/dynparams/demo-dparams.c:
15168 * gst/sine/Makefile.am:
15169 * gst/sine/demo-dparams.c:
15171 2005-04-25 David Schleef <ds@schleef.org>
15173 Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
15174 * gst-libs/gst/audio/Makefile.am:
15175 * gst-libs/gst/riff/Makefile.am:
15176 * gst-libs/gst/tag/Makefile.am:
15177 * gst-libs/gst/video/Makefile.am:
15178 * gst-libs/gst/xwindowlistener/Makefile.am:
15180 Convert to 0.9 API, seems to work:
15181 * sys/ximage/Makefile.am:
15182 * sys/ximage/ximagesink.c:
15184 2005-04-24 David Schleef <ds@schleef.org>
15186 Link plugins against libraries:
15187 * ext/alsa/Makefile.am:
15188 * gst/tcp/Makefile.am:
15190 Remove asm code that should be in liboil
15191 * gst/videoscale/Makefile.am:
15192 * gst/videoscale/videoscale_x86_asm.s:
15194 gettext wants these checked in:
15210 2005-04-24 David Schleef <ds@schleef.org>
15212 Convert gst_main() to g_main_loop_run()
15213 * gst/playback/decodetest.c: (main):
15214 * gst/playback/test2.c: (main):
15215 * gst/playback/test3.c: (main):
15216 * gst/playback/test4.c: (main):
15218 Link plugins against libraries:
15219 * ext/libvisual/Makefile.am:
15220 * sys/xvimage/Makefile.am:
15222 2005-04-24 David Schleef <ds@schleef.org>
15224 * configure.ac: Remove idct and resample libs
15225 * gst-libs/gst/Makefile.am: same
15227 Remove usage of gst_library_load():
15228 * ext/alsa/gstalsaplugin.c: (plugin_init):
15229 * ext/libvisual/visual.c: (plugin_init):
15230 * ext/ogg/gstogg.c: (plugin_init):
15231 * ext/theora/theora.c: (plugin_init):
15232 * ext/vorbis/vorbis.c: (plugin_init):
15233 * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
15234 * gst/audioscale/gstaudioscale.c:
15235 * gst/adder/gstadder.c: (plugin_init):
15236 * gst/audioconvert/plugin.c: (plugin_init):
15237 * sys/ximage/ximagesink.c: (plugin_init):
15238 * sys/xvimage/xvimagesink.c: (plugin_init):
15239 * gst/tcp/gsttcpplugin.c: (plugin_init):
15241 Link plugins against libraries:
15242 * ext/ogg/Makefile.am:
15243 * ext/theora/Makefile.am:
15244 * ext/vorbis/Makefile.am:
15245 * gst/audioconvert/Makefile.am:
15247 Create proper libraries:
15248 * gst-libs/gst/riff/Makefile.am:
15249 * gst-libs/gst/audio/Makefile.am:
15250 * gst-libs/gst/video/Makefile.am:
15252 Move resample library to audioscale plugin directory:
15253 * gst-libs/gst/resample/Makefile.am:
15254 * gst-libs/gst/resample/README:
15255 * gst-libs/gst/resample/dtof.c:
15256 * gst-libs/gst/resample/dtos.c:
15257 * gst-libs/gst/resample/functable.c:
15258 * gst-libs/gst/resample/private.h:
15259 * gst-libs/gst/resample/resample.c:
15260 * gst-libs/gst/resample/resample.h:
15261 * gst-libs/gst/resample/resample.vcproj:
15262 * gst-libs/gst/resample/test.c:
15263 * gst/audioscale/Makefile.am:
15264 * gst/audioscale/README:
15265 * gst/audioscale/dtof.c:
15266 * gst/audioscale/dtos.c:
15267 * gst/audioscale/functable.c:
15268 * gst/audioscale/private.h:
15269 * gst/audioscale/resample.c:
15270 * gst/audioscale/resample.h:
15271 * gst/audioscale/test.c:
15273 Move tagedit library to gst-libs:
15274 * gst-libs/gst/tag/Makefile.am:
15275 * gst-libs/gst/tag/gstid3tag.c:
15276 * gst-libs/gst/tag/gsttagediting.c:
15277 * gst-libs/gst/tag/gsttageditingprivate.h:
15278 * gst-libs/gst/tag/gstvorbistag.c:
15279 * gst/tags/Makefile.am:
15280 * gst/tags/gstid3tag.c:
15281 * gst/tags/gstvorbistag.c:
15283 Fix for core changes:
15284 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
15285 (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
15286 (gst_sinesrc_getrange):
15288 2005-04-23 David Schleef <ds@schleef.org>
15290 * gst-libs/gst/Makefile.am: Remove idct. It hasn't been used
15291 in gst-plugins in a long time, and properly belongs in liboil.
15292 * gst-libs/gst/idct/Makefile.am:
15293 * gst-libs/gst/idct/README:
15294 * gst-libs/gst/idct/dct.h:
15295 * gst-libs/gst/idct/doieee:
15296 * gst-libs/gst/idct/fastintidct.c:
15297 * gst-libs/gst/idct/floatidct.c:
15298 * gst-libs/gst/idct/idct.c:
15299 * gst-libs/gst/idct/idct.h:
15300 * gst-libs/gst/idct/idtc.vcproj:
15301 * gst-libs/gst/idct/ieeetest.c:
15302 * gst-libs/gst/idct/intidct.c:
15304 2005-04-20 Wim Taymans <wim@fluendo.com>
15306 * docs/design-audiosinks.txt:
15307 * gst-libs/gst/audio/Makefile.am:
15308 * gst-libs/gst/audio/TODO:
15309 * gst-libs/gst/audio/gstaudiosink.c:
15310 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15311 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15312 (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
15313 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15314 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15315 (gst_audioringbuffer_delay), (gst_audiosink_base_init),
15316 (gst_audiosink_class_init), (gst_audiosink_init),
15317 (gst_audiosink_create_ringbuffer):
15318 * gst-libs/gst/audio/gstaudiosink.h:
15319 * gst-libs/gst/audio/gstbaseaudiosink.c:
15320 (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
15321 (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
15322 (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
15323 (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
15324 (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
15325 (gst_baseaudiosink_create_ringbuffer),
15326 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15327 * gst-libs/gst/audio/gstbaseaudiosink.h:
15328 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15329 (gst_ringbuffer_class_init), (gst_ringbuffer_init),
15330 (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
15331 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15332 (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
15333 (gst_ringbuffer_play), (gst_ringbuffer_pause),
15334 (gst_ringbuffer_resume), (gst_ringbuffer_stop),
15335 (gst_ringbuffer_callback), (gst_ringbuffer_delay),
15336 (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
15337 (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
15338 * gst-libs/gst/audio/gstringbuffer.h:
15339 An attempt at a set of audio base classes together with some
15342 2005-04-20 Wim Taymans <wim@fluendo.com>
15344 * gst/audioconvert/Makefile.am:
15345 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15346 (gst_audio_convert_caps_remove_format_info),
15347 (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
15348 (gst_audio_convert_channels):
15349 Link against audio libs.
15350 Fix audio convert plugin.
15352 2005-04-20 Wim Taymans <wim@fluendo.com>
15354 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
15355 (gst_ogg_demux_sink_activate):
15356 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
15357 (theora_set_header_on_caps), (theora_enc_sink_event),
15358 (theora_enc_chain):
15359 Fix theora encoder.
15361 2005-04-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15363 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
15364 * gst/playback/gstdecodebin.c: (find_compatibles):
15365 Work with staticpadtemplates in elementfactories.
15367 2005-04-12 Wim Taymans <wim@fluendo.com>
15369 * gst/playback/README:
15370 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
15371 (compare_ranks), (print_feature), (gst_decode_bin_init),
15372 (dynamic_create), (dynamic_free), (find_compatibles),
15373 (mimetype_is_raw), (close_pad_link), (got_redirect),
15374 (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
15375 (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
15376 (gst_decode_bin_change_state):
15377 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15378 (gst_play_base_bin_init), (group_destroy), (group_commit),
15379 (check_queue), (queue_overrun), (queue_threshold_reached),
15380 (queue_out_of_data), (gen_preroll_element), (unknown_type),
15381 (new_decoded_pad), (setup_subtitle), (gen_source_element),
15382 (got_redirect), (setup_source), (play_base_eos),
15383 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
15384 (gst_play_base_bin_remove_element):
15385 * gst/playback/gstplaybasebin.h:
15386 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15387 (gst_play_bin_init), (gst_play_bin_dispose),
15388 (gst_play_bin_set_property), (gen_video_element),
15389 (gen_text_element), (gen_audio_element), (remove_sinks),
15390 (gst_play_bin_send_event):
15391 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
15392 (stream_info_change_state), (gst_stream_info_set_mute):
15393 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
15394 (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
15395 (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
15396 (gst_stream_selector_chain):
15397 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
15399 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
15400 (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
15401 (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
15402 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
15403 Raw and crude port of decodebin.
15404 Make playbin compile.
15406 2005-04-06 Wim Taymans <wim@fluendo.com>
15408 * ext/gnomevfs/Makefile.am:
15409 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
15410 (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
15411 (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
15412 (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
15413 (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
15414 (gst_gnomevfssrc_stop):
15415 * ext/ogg/Makefile.am:
15416 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
15417 (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
15418 * ext/theora/Makefile.am:
15419 * ext/theora/theoradec.c: (_inc_granulepos),
15420 (theora_dec_sink_event), (theora_dec_chain):
15421 * ext/vorbis/Makefile.am:
15422 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
15423 (vorbis_dec_sink_event), (vorbis_dec_chain):
15424 * gst-libs/gst/audio/Makefile.am:
15425 * sys/xvimage/Makefile.am:
15426 Make gnomevfssrc extend the source base class.
15427 Fix linking against libs in various plugins.
15429 2005-04-06 Andy Wingo <wingo@pobox.com>
15431 * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
15434 * configure.ac: Add check and AC_SUBST for libgstbase.
15436 2005-03-31 Wim Taymans <wim@fluendo.com>
15438 * examples/seeking/Makefile.am:
15439 * examples/seeking/cdparanoia.c: (main):
15440 * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
15441 (play_cb), (pause_cb), (stop_cb), (main):
15442 * examples/seeking/playbin.c:
15443 * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
15444 (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
15445 (make_sid_pipeline), (make_vorbis_pipeline),
15446 (make_theora_pipeline), (make_vorbis_theora_pipeline),
15447 (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
15448 (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
15449 (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
15450 (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
15452 * examples/seeking/spider_seek.c:
15453 * examples/seeking/vorbisfile.c:
15454 * ext/gnomevfs/Makefile.am:
15455 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
15456 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
15457 (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
15458 (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
15459 (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
15460 (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
15461 (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
15462 (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
15464 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
15465 (gst_ogg_pad_class_init), (gst_ogg_pad_init),
15466 (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
15467 (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
15468 (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
15469 (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
15470 (gst_ogg_pad_event), (gst_ogg_pad_reset),
15471 (gst_ogg_demux_factory_filter), (compare_ranks),
15472 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
15473 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
15474 (gst_ogg_chain_new), (gst_ogg_chain_free),
15475 (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
15476 (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
15477 (gst_ogg_demux_class_init), (gst_ogg_demux_init),
15478 (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
15479 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
15480 (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
15481 (gst_ogg_demux_get_prev_page),
15482 (gst_ogg_demux_deactivate_current_chain),
15483 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
15484 (gst_ogg_demux_bisect_forward_serialno),
15485 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
15486 (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
15487 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
15488 (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
15489 (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
15490 (gst_ogg_demux_change_state), (gst_ogg_print):
15491 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
15492 (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
15493 (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
15494 (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
15495 (gst_ogg_mux_loop):
15496 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
15497 * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
15498 (theora_dec_src_convert), (theora_dec_sink_convert),
15499 (theora_dec_src_query), (theora_dec_src_event),
15500 (theora_dec_sink_event), (theora_dec_chain),
15501 (theora_dec_change_state):
15502 * ext/theora/theoraenc.c: (gst_theora_enc_init),
15503 (theora_enc_sink_setcaps), (theora_buffer_from_packet),
15504 (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
15505 (theora_enc_change_state):
15506 * ext/vorbis/Makefile.am:
15507 * ext/vorbis/oggvorbisenc.c:
15508 * ext/vorbis/oggvorbisenc.h:
15509 * ext/vorbis/vorbis.c: (plugin_init):
15510 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
15511 (vorbis_dec_src_query), (vorbis_dec_src_event),
15512 (vorbis_dec_sink_event), (vorbis_dec_chain),
15513 (vorbis_dec_change_state):
15514 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
15515 (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
15516 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
15517 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
15518 (gst_vorbisenc_change_state):
15519 * ext/vorbis/vorbisenc.h:
15520 * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
15521 * gst-libs/gst/audio/audioclock.c:
15522 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
15523 (gst_audiofilter_init), (gst_audiofilter_chain):
15524 * gst-libs/gst/audio/testchannels.c: (main):
15525 * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
15526 * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
15527 (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
15528 (gmip_find_track_streaminfo), (gmip_find_track_format):
15529 * gst-libs/gst/media-info/media-info.c:
15530 (gst_media_info_read_idler):
15531 * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
15532 (gst_play_get_all_by_interface):
15533 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
15534 (gst_riff_parse_chunk), (gst_riff_parse_file_header),
15535 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
15536 (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
15537 (gst_riff_parse_info):
15538 * gst-libs/gst/riff/riff-read.h:
15539 * gst-libs/gst/riff/riff.c: (plugin_init):
15540 * gst-libs/gst/video/Makefile.am:
15541 * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
15542 (gst_videosink_class_init), (gst_videosink_get_type):
15543 * gst-libs/gst/video/videosink.h:
15544 * gst/audioconvert/bufferframesconvert.c:
15545 (buffer_frames_convert_init), (buffer_frames_convert_fixate),
15546 (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
15547 * gst/audioconvert/channelmixtest.c: (main):
15548 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
15549 (gst_audio_convert_chain),
15550 (gst_audio_convert_caps_remove_format_info),
15551 (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
15552 (gst_audio_convert_setcaps), (_fixate_caps_to_int),
15553 (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
15554 (gst_audio_convert_buffer_to_default_format),
15555 (gst_audio_convert_buffer_from_default_format),
15556 (gst_audio_convert_channels):
15557 * gst/audioconvert/gstchannelmix.h:
15558 * gst/ffmpegcolorspace/avcodec.h:
15559 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15560 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
15561 (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
15562 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
15563 * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
15564 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
15565 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
15566 (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
15567 (mpeg_video_type_find), (mpeg_video_stream_type_find),
15569 * gst/videotestsrc/gstvideotestsrc.c:
15570 (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
15571 (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
15572 (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
15573 (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
15574 (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
15575 (gst_videotestsrc_init), (gst_videotestsrc_src_query),
15576 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
15577 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
15578 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
15579 (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
15580 (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
15581 (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
15582 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
15583 (gst_xvimagesink_navigation_send_event),
15584 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
15585 (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
15586 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
15587 * sys/xvimage/xvimagesink.h:
15588 Plugin port to 0.9, ogg/theora playback should work in the seek
15590 Removed old examples.
15591 Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
15592 explained in 0.9 TODO doc.
15595 2005-02-23 Thomas Vander Stichele <thomas at apestaart dot org>
15617 * testsuite/Makefile.am:
15618 remove a whole bunch of plugins. This module now contains a set
15619 of free reference plugins/elements as agreed.
15621 2005-02-22 Thomas Vander Stichele <thomas at apestaart dot org>
15624 hunting season on 0.9 is now OPEN
15626 2005-02-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15628 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
15629 Kick the hell out of gcc for not warning me about a symbol conflict.
15631 2005-02-22 Luca Ognibene <luogni@tin.it>
15633 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
15635 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
15636 Don't leak caps string (fixes #168134)
15638 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
15639 (gst_jpegenc_init), (gst_jpegenc_finalize),
15640 (gst_jpegenc_change_state):
15641 Don't leak line buffers and context struct (fixes #168133).
15643 2005-02-21 Tim-Philipp Müller <tim at centricular dot net>
15646 * ext/dirac/gstdiracdec.cc:
15647 (gst_diracdec_chain):
15648 Since dirac 0.5.0 the framerate in dirac is expressed as a
15649 rational number. Fix build and up requirement to 0.5.0, and
15650 also pass parameters to gst_diracdec_link in the right order
15653 2005-02-21 Maciej Katafiasz <mathrick@freedesktop.org>
15655 * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
15656 * ext/faad/gstfaad.h:
15657 TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with
15658 certain invalid muxed streams, where some packets will contain
15659 junk after decoder data. Partially fixes #149158.
15661 2005-02-21 Jan Schmidt <thaytan@mad.scientist.com>
15662 * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
15663 Make sure we only write to writable buffers
15665 2005-02-20 Tim-Philipp Müller <tim at centricular dot net>
15667 * gst-libs/gst/riff/riff-media.c:
15668 (gst_riff_create_audio_caps_with_data):
15669 Do actually fix invalid RIFF fmt header values for alaw
15670 and mulaw audio instead of just saying so.
15672 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
15673 Give gst_riff_create_audio_caps_with_data() a chance to
15674 fix up broken format header fields before extracting any
15675 parameters from the header. (fixes #167633)
15677 2005-02-19 Martin Holters <martin.holters@gmx.de>
15679 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
15681 * gst/audioconvert/bufferframesconvert.c:
15682 (buffer_frames_convert_link):
15683 Don't leak othercaps. (fixes #167878)
15685 2005-02-19 Arwed v. Merkatz <v.merkatz@gmx.net>
15688 * ext/libvisual/visual.c: (gst_visual_srclink),
15689 (gst_visual_change_state):
15690 Support libvisual 0.2.0.
15692 2005-02-18 Tim-Philipp Müller <tim at centricular dot net>
15694 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
15695 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
15696 Use same rowstrides for I420 as used everywhere else.
15698 2005-02-17 Tim-Philipp Müller <tim at centricular dot net>
15700 * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
15701 Declare variables at beginning of block and make gcc-2.95 happy
15702 (fixes # 167482, patch by Gergely Nagy).
15704 * gst/tcp/gsttcpclientsrc.c:
15705 * gst/tcp/gsttcpclientsrc.h:
15706 Move some includes into the header, so that struct sockaddr_in is
15707 defined when it should be defined on FreeBSD as well (fixes
15710 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
15711 Don't pass uninitialised values to setsockopt() here either.
15713 2005-02-17 Luca Ognibene <luogni at tin dot it>
15715 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
15717 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
15718 Don't pass uninitialised values to setsockopt(). (fixes #167704)
15720 2005-02-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15722 * gst/playback/gstplaybin.c: (add_sink):
15723 Invert bin_add/link order to workaround deadlock in opt.
15725 2005-02-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15727 * gst/modplug/gstmodplug.cc:
15728 Add missing break causing position queries to fail.
15730 2005-02-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15732 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
15733 Granpos can apparently be -1, which screws up calculations...
15735 2005-02-16 Jan Schmidt <thaytan@mad.scientist.com>
15737 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
15738 (gst_ximagesink_send_pending_navigation),
15739 (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
15740 (gst_ximagesink_init):
15741 * sys/ximage/ximagesink.h:
15742 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
15743 (gst_xvimagesink_send_pending_navigation),
15744 (gst_xvimagesink_navigation_send_event),
15745 (gst_xvimagesink_finalize), (gst_xvimagesink_init):
15746 * sys/xvimage/xvimagesink.h:
15747 Use a mutex protected list to marshal navigation
15748 events into the stream thread from whichever thread
15751 2005-02-15 Tim-Philipp Müller <tim at centricular dot net>
15753 * gst/speed/demo-mp3.c: (time_tick_cb), (main):
15754 Display current position and track length; misc. clean-ups.
15756 * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
15757 (speed_init), (speed_chain):
15758 Add query function, so that the stream length and current position
15759 get adjusted when queried (note that current position queries may
15760 still be wrong if the audio sink returns values based on buffer
15761 timestamps instead of passing on the query).
15763 2005-02-13 Benjamin Otte <otte@gnome.org>
15765 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
15766 (gst_audio_convert_channels):
15767 create channel conversion matrix when linking
15768 * gst/audioconvert/.cvsignore:
15769 * gst/audioconvert/Makefile.am:
15770 * gst/audioconvert/channelmixtest.c: (main):
15771 add (ugly) test that ensures stereo <=> mono conversion works
15774 2005-02-13 Benjamin Otte <otte@gnome.org>
15776 * gst/audioconvert/gstchannelmix.h:
15777 include missing header file
15778 * gst/audioconvert/gstchannelmix.c:
15779 (gst_audio_convert_fill_compatible):
15780 use same sign for both channels when converting to/from compatible
15781 channel. Previously used different signs made the signals cancel
15782 each other out and appear like silence. (fixes #167269)
15784 2005-02-12 Tim-Philipp Müller <tim at centricular dot net>
15786 * gst/ffmpegcolorspace/avcodec.h:
15787 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
15788 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
15789 (gst_ffmpegcsp_avpicture_fill):
15790 * gst/ffmpegcolorspace/imgconvert.c:
15791 Convert to and from YV12 (fixes #156379).
15793 2005-02-12 Julien MOUTTE <julien@moutte.net>
15795 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
15796 (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
15797 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
15798 (gst_ximagesink_expose), (gst_ximagesink_set_property),
15799 (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
15800 methods from chain and negotiation and vice versa (Fixes #166142).
15801 * sys/ximage/ximagesink.h: Add stream_lock.
15802 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
15803 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
15804 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
15805 (gst_xvimagesink_expose): Check for xcontext before trying to link.
15807 2005-02-12 Tim-Philipp Müller <tim at centricular dot net>
15809 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
15810 Don't send "Hey! You gave me a NULL pointer you naughty person" as
15811 error message when we can't open the DVD device (when dvdnav_open()
15812 fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
15813 the above). Send something more useful instead (fixes #167117).
15815 2005-02-11 Julien MOUTTE <julien@moutte.net>
15817 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
15818 (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
15819 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
15820 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
15821 (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
15822 (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
15823 methods from chain and negotiation and vice versa (Fixes #166142).
15824 Fix a possible bug of images in the buffer pool being discarded because
15825 we are looking at the wrong geometry.
15826 * sys/xvimage/xvimagesink.h: Add stream_lock.
15828 2005-02-11 David Schleef <ds@schleef.org>
15830 * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
15831 unsigned int. (fixes #167128)
15833 2005-02-11 David Schleef <ds@schleef.org>
15835 * gst/librfb/Makefile.am: Testing stuff before committing is
15836 for wimps... and people with fast machines. Fix stupid
15839 2005-02-11 David Schleef <ds@schleef.org>
15841 * configure.ac: Pull in librfb from my CVS tree, because it is
15842 too small and annoying to be separate. Move rfbsrc plugin
15845 * ext/librfb/Makefile.am:
15846 * ext/librfb/gstrfbsrc.c:
15847 * gst/librfb/Makefile.am:
15848 * gst/librfb/gstrfbsrc.c:
15849 * gst/librfb/rfb.c:
15850 * gst/librfb/rfb.h:
15851 * gst/librfb/rfbbuffer.c:
15852 * gst/librfb/rfbbuffer.h:
15853 * gst/librfb/rfbbytestream.c:
15854 * gst/librfb/rfbbytestream.h:
15855 * gst/librfb/rfbcontext.h:
15856 * gst/librfb/rfbdecoder.c:
15857 * gst/librfb/rfbdecoder.h:
15858 * gst/librfb/rfbutil.h:
15860 2005-02-10 Tim-Philipp Müller <tim at centricular dot net>
15862 * gst/speed/Makefile.am:
15863 * gst/speed/demo-mp3.c: (main):
15864 * gst/speed/filter.func:
15865 * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
15866 (speed_class_init), (speed_init), (speed_chain_int16),
15867 (speed_chain_float32), (speed_chain), (speed_set_property),
15868 (speed_get_property), (speed_change_state):
15869 * gst/speed/gstspeed.h:
15870 Fix speed element and make it chain-based (fixes #156467),
15871 and make it handle more than one channel.
15873 2005-02-10 Jan Schmidt <thaytan@mad.scientist.com>
15875 * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
15876 (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
15877 (gst_dtsdec_chain), (gst_dtsdec_change_state):
15878 * ext/dts/gstdtsdec.h:
15879 Don't clobber the stack constructing the channels array.
15880 Make the element chain-based. DTS tracks can now be played.
15882 2005-02-09 Tim-Philipp Müller <tim at centricular dot net>
15884 * gst-libs/gst/audio/multichannel.h:
15885 * gst-libs/gst/gconf/gconf.h:
15886 * gst-libs/gst/idct/idct.h:
15887 * gst-libs/gst/media-info/media-info-priv.h:
15888 * gst-libs/gst/play/play.h:
15889 * gst-libs/gst/resample/private.h:
15890 * gst-libs/gst/resample/resample.h:
15891 * gst-libs/gst/riff/riff-ids.h:
15892 * gst-libs/gst/video/video.h:
15893 * gst-libs/gst/video/videosink.h:
15894 Add G_BEGIN_DECLS and G_END_DECLS around headers where
15895 missing, so that they work when included from C++ code.
15897 2005-02-09 David Schleef <ds@schleef.org>
15899 * testsuite/gst-lint: Check for non-statically scoped
15900 parent_class variables. This won't be a problem once
15901 plugins are loaded with RTLD_LOCAL.
15903 2005-02-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15905 * ext/mplex/gstmplexibitstream.cc:
15908 2005-02-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15910 * ext/ogg/gstogmparse.c:
15911 * gst/debug/gstnavigationtest.c:
15912 Die, thou faulty symbol pollutors (non-static parent_class).
15914 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15916 * ext/mplex/gstmplexibitstream.cc:
15917 Fix event handling (#165525).
15919 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15921 * ext/mikmod/gstmikmod.c:
15922 * gst/modplug/gstmodplug.cc:
15923 Add missing endianness to template (fixes #165509).
15925 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15927 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
15928 Fix wrong order of reading of optional bytes (#165290).
15930 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15932 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
15933 Implement FILLER event awareness.
15935 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15937 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
15938 Fix track calculations (#166208).
15940 2005-02-08 Gergely Nagy <algernon@bonehunter.rulez.org>
15942 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15944 * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
15945 * ext/libpng/gstpngenc.c:
15946 Fix byte-order, use proper fixed caps. Fixes #164197.
15948 2005-02-08 Jan Schmidt <thaytan@mad.scientist.com>
15953 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
15954 (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
15955 Don't push buffers if the src pad isn't negotiated yet.
15957 * gst/audioconvert/gstaudioconvert.c:
15958 (gst_audio_convert_buffer_to_default_format),
15959 (gst_audio_convert_buffer_from_default_format):
15960 Add support for 24-bit width.
15962 * gst/dvdlpcmdec/.cvsignore:
15963 * gst/dvdlpcmdec/Makefile.am:
15964 * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
15965 (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
15966 (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
15967 (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
15969 * gst/dvdlpcmdec/gstdvdlpcmdec.h:
15970 New decoder for rearranging DVD LPCM into our audio/x-raw-int
15971 format. Needs support for the channels maps if someone can find
15972 a DVD LPCM track with > 2 channels.
15974 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
15975 (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
15976 (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
15977 * gst/mpegstream/gstdvddemux.h:
15978 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
15979 (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
15980 (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
15981 * gst/mpegstream/gstmpegdemux.h:
15982 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
15983 (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
15984 (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
15985 (gst_mpeg_parse_handle_src_query),
15986 (gst_mpeg_parse_handle_src_event):
15987 Use audio/x-dvd-lpcm for LPCM output.
15990 2005-02-08 Gergely Nagy <algernon@bonehunter.rulez.org>
15992 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15994 * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
15995 (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
15996 Add BGRA handling (#165736).
15998 2005-02-08 Francis Labonte <francis_labonte@hotmail.com>
16000 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16002 * gst/law/alaw-decode.c: (alawdec_link):
16003 * gst/law/alaw-encode.c: (alawenc_link):
16004 * gst/law/mulaw-decode.c: (mulawdec_link):
16005 * gst/law/mulaw-encode.c: (mulawenc_link):
16006 Fix caps memleaks (#166600).
16008 2005-02-08 Tim-Philipp Müller <tim at centricular dot net>
16010 * ext/tarkin/mem.h:
16011 * ext/tarkin/wavelet.h:
16012 * ext/tarkin/yuv.h:
16013 * gst/ffmpegcolorspace/avcodec.h:
16014 Include "_stdint.h" instead of <stdint.h>. Fixes build on
16015 systems that don't have stdint.h, like Solaris9 (fixes #166631).
16017 2005-02-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16019 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
16020 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
16021 (gst_xvimagesink_change_state):
16022 Clear window on PAUSED->READY instead of READY->PAUSED. Stop
16023 Xv video (and thereby regenerate Xv colourkey) in clear() so
16024 that PLAY -> READY -> PLAY works (fixes #162504).
16026 2005-02-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16028 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
16029 Switch to list instead of range, since MJPEG-devices really just
16030 support decimations, not any size.
16032 2005-02-05 Jan Schmidt <thaytan@mad.scientist.com>
16033 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
16034 (gst_mpeg2dec_reset), (free_all_buffers),
16035 (gst_mpeg2dec_alloc_buffer), (handle_sequence):
16036 * ext/mpeg2dec/gstmpeg2dec.h:
16037 The libmpeg2 user-allocated buffer management is awkward,
16038 to say the least. Hopefully this fixes things.
16040 2005-02-04 Andy Wingo <wingo@pobox.com>
16042 * gst/audioconvert/bufferframesconvert.c
16043 (buffer_frames_convert_fixate): New function, fixates to 256
16044 frames per buffer by default. (Much better than 1.)
16045 (buffer_frames_convert_init): Set the fixate function for both src
16047 (buffer_frames_convert_link): After success setting nonfixed caps,
16048 get the negotiated caps so we can know how many buffer-frames it
16049 will be. No idea how this worked at all before.
16051 2005-02-05 Jan Schmidt <thaytan@mad.scientist.com>
16053 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
16054 (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
16055 (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
16056 (handle_sequence), (handle_picture):
16057 * ext/mpeg2dec/gstmpeg2dec.h:
16058 Rearrange buffer tracking and refcounting and refactor
16059 a little for readability.
16061 2005-02-04 Jan Schmidt <thaytan@mad.scientist.com>
16062 * sys/v4l/gstv4l.c: (plugin_init):
16063 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
16064 (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
16065 (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
16066 (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
16067 * sys/v4l/gstv4ljpegsrc.h:
16068 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
16069 * sys/v4l/v4l_calls.h:
16070 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
16071 (gst_v4lsrc_get_fps):
16072 * sys/v4l/v4lsrc_calls.h:
16073 Add new v4ljpegsrc for handling the ov51x hacky "I'll give
16074 you jpeg inside rgb frames" driver.
16075 Don't error in the v4lsrc link function, just return
16078 2005-02-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16080 * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
16081 (gst_qcamsrc_open):
16082 Use GST_ELEMENT_ERROR, not g_warning, if open failed.
16084 2005-02-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16086 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
16087 Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
16089 2005-02-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16091 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
16092 Reset negotiated state on PAUSED->READY.
16094 2005-02-02 David Schleef <ds@schleef.org>
16096 * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
16097 whereever possible. (Fixes #165997)
16098 * examples/capsfilter/capsfilter1.c: (main):
16099 * examples/dynparams/filter.c: (create_ui):
16100 * examples/seeking/cdparanoia.c: (get_track_info), (main):
16101 * examples/seeking/chained.c: (main):
16102 * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
16103 (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
16104 (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
16105 (make_mpeg_pipeline), (make_mpegnt_pipeline):
16106 * examples/seeking/spider_seek.c: (make_spider_pipeline):
16107 * examples/switch/switcher.c: (main):
16108 * ext/dv/demo-play.c: (main):
16109 * ext/faad/gstfaad.c: (gst_faad_change_state):
16110 * ext/mad/gstmad.c: (gst_mad_chain):
16111 * ext/smoothwave/demo-osssrc.c: (main):
16112 * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
16113 (gst_gconf_render_bin_from_description),
16114 (gst_gconf_get_default_audio_sink),
16115 (gst_gconf_get_default_video_sink),
16116 (gst_gconf_get_default_audio_src),
16117 (gst_gconf_get_default_video_src),
16118 (gst_gconf_get_default_visualization_element):
16119 * gst/level/demo.c: (main):
16120 * gst/level/plot.c: (main):
16121 * gst/playback/gstplaybin.c: (gen_video_element),
16122 (gen_audio_element):
16123 * gst/playback/test.c: (gen_video_element), (gen_audio_element):
16124 * gst/playondemand/demo-mp3.c: (setup_pipeline):
16125 * gst/sine/demo-dparams.c: (main):
16126 * gst/spectrum/demo-osssrc.c: (main):
16127 * gst/speed/demo-mp3.c: (main):
16128 * gst/volume/demo.c: (main):
16129 * testsuite/embed/embed.c: (main):
16131 2005-02-02 Jan Schmidt <thaytan@mad.scientist.com>
16133 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
16134 (gst_tcpclientsink_finalize):
16135 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
16136 (gst_tcpclientsrc_finalize):
16137 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
16138 (gst_tcpserversink_init), (gst_tcpserversink_finalize):
16139 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
16140 (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
16141 Don't leak the hostname when shutting down.
16142 In tcpserversrc, take a copy of the default hostname.
16144 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16146 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
16147 Set caps to systemstream=TRUE.
16149 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16151 * testsuite/Makefile.am:
16152 Fix more OSX buildbots.
16154 2005-02-02 Jan Schmidt <thaytan@mad.scientist.com>
16156 * ext/mpeg2dec/gstmpeg2dec.c:
16157 Don't send things to NULL PAD_PEERs
16159 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
16160 Copy-on-write the incoming buffer.
16162 * gst/mpegstream/gstdvddemux.h:
16163 * gst/mpegstream/gstmpegclock.h:
16164 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
16165 (normal_seek), (gst_mpeg_demux_handle_src_event):
16166 * gst/mpegstream/gstmpegdemux.h:
16167 * gst/mpegstream/gstmpegpacketize.h:
16168 * gst/mpegstream/gstmpegparse.c:
16169 (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
16170 (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
16171 (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
16172 (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
16173 (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
16174 * gst/mpegstream/gstmpegparse.h:
16175 * gst/mpegstream/gstrfc2250enc.h:
16176 Various changes to the way time is computed that make seeking and
16177 total time estimation much better here.
16178 Use G_BEGIN/END_DECLS instead of __cplusplus
16180 * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
16181 Use gst_buffer_stamp instead of only copying the TIMESTAMP
16183 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16185 * gst/subparse/gstsubparse.c:
16188 2005-01-31 Tim-Philipp Müller <tim at centricular dot net>
16190 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
16191 (theora_enc_chain), (theora_enc_change_state):
16192 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
16193 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
16194 (gst_vorbisenc_change_state):
16195 * ext/vorbis/vorbisenc.h:
16196 Set granulepos and timestamp correctly for streams not
16197 starting at 0, taking into account the initial delay.
16199 2005-01-31 Tim-Philipp Müller <tim at centricular dot net>
16201 * gst/mpegstream/gstdvddemux.c:
16202 Add audio/x-dts to audio pad template caps
16204 2005-01-30 David Schleef <ds@schleef.org>
16206 * ext/polyp/polypsink.c: (gst_polypsink_base_init),
16207 (create_context), (gst_polypsink_link): Fix silly endianness
16208 bug. Add some debugging. Remove float from caps; it doesn't
16209 work. Attempt to get remote audio working.
16211 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16213 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
16216 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16218 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
16219 (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
16220 (gst_avi_demux_stream_data):
16221 * gst/avi/gstavidemux.h:
16222 Invert DIB images. Fixes #132341.
16224 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16226 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16227 (gst_ffmpegcsp_chain):
16228 D'oh, reference the palette data, not the palette structure.
16229 Fixes color distortion in #132341.
16231 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16233 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
16234 PAR can be non-fixed when not provided as argument (#162626).
16236 2005-01-29 David Moore <dcm@acm.org>
16238 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16240 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
16241 (gst_qtdemux_loop_header):
16242 Re-apply patch from #142272 that allows non-seekable sources,
16243 re-proposed by Daniel Drake <dsd@gentoo.org>.
16245 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16247 * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
16248 Use the src template for creating the src pad (#162330).
16250 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16253 * ext/musepack/Makefile.am:
16254 * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
16255 (gst_musepackdec_init), (gst_musepackdec_dispose),
16256 (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
16257 (gst_musepack_stream_init), (gst_musepackdec_loop),
16258 (gst_musepackdec_change_state):
16259 * ext/musepack/gstmusepackdec.cpp:
16260 * ext/musepack/gstmusepackdec.h:
16261 * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
16262 (gst_musepack_reader_read), (gst_musepack_reader_seek),
16263 (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
16264 (gst_musepack_reader_canseek), (gst_musepack_init_reader):
16265 * ext/musepack/gstmusepackreader.cpp:
16266 * ext/musepack/gstmusepackreader.h:
16267 Update to 1.1 API (#165446).
16269 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16274 2005-01-28 Andy Wingo <wingo@pobox.com>
16276 * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
16277 to reflect a different dubious internet source. Add a reference
16278 and some commentary.
16280 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16282 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
16283 (gst_stream_selector_get_caps), (gst_stream_selector_chain):
16284 * gst/playback/gststreamselector.h:
16285 Be more selective when we're redoing caps negotiation from
16286 within the chain function on a stream change.
16288 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16292 * ext/amrnb/Makefile.am:
16293 * ext/amrnb/amrnb.c: (plugin_init):
16294 * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
16295 (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
16296 (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
16297 (gst_amrnbdec_state_change):
16298 * ext/amrnb/amrnbdec.h:
16299 * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
16300 (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
16301 (gst_amrnbparse_init), (gst_amrnbparse_formats),
16302 (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
16303 (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
16304 (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
16305 * ext/amrnb/amrnbparse.h:
16306 Add support for AMR-NB (mobile phone audio format; #155163, #163286).
16307 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16308 Add AMR-NB/-WB raw formats.
16309 * ext/alsa/gstalsa.c: (gst_alsa_link):
16310 Keep valid time when changing format.
16311 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
16312 (qtdemux_parse_trak):
16313 Add some more format-specific options (#140141, #143555, #155163).
16315 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16317 * gst/matroska/matroska-demux.c:
16318 (gst_matroska_demux_parse_blockgroup):
16319 Fix logic error in timing of subtitle stream synchronization.
16320 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
16321 Add skip-chunk, which is found in kodak-camera streams.
16323 2005-01-27 Thomas Vander Stichele <thomas at apestaart dot org>
16327 Adding Vietnamese translation (submitted by Clytie Siddall)
16329 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16331 * gst/playback/gstdecodebin.c: (try_to_link_1):
16332 Use realpad for signal.
16334 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16336 * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
16337 Fix category so decodebin picks it up.
16339 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16341 * ext/mad/Makefile.am:
16342 * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
16343 (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
16344 (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
16345 (found_type), (gst_id3demux_bin_change_state):
16346 * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
16347 (gst_id3_tag_init), (gst_id3_tag_handle_event),
16348 (gst_id3_tag_src_link), (gst_id3_tag_chain),
16349 (gst_id3_tag_change_state), (plugin_init):
16350 * ext/mad/gstmad.h:
16351 Add id3demuxbin (which is a simple bin consisting of id3demux
16352 and typefind), take over rank from id3demux, remove typefind
16353 code from id3demux. Makes all broken mp3s that I know of work,
16354 and thereby fixes #152688.
16356 2005-01-27 Edward Hervey <bilboed@bilboed.com>
16358 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16360 * ext/mad/gstmad.c: (gst_mad_src_event):
16361 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
16362 Allow seeks on audio pad, make mad forward those (#164826).
16363 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
16364 Set duration (#165335).
16366 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16368 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
16369 (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
16370 (gst_asf_demux_process_ext_content_desc),
16371 (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
16372 (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
16373 * gst/asfdemux/gstasfdemux.h:
16374 Improve metadata display, e.g. if the metadata comes before the
16375 streams are loaded (which is perfectly valid).
16377 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16379 * tools/gst-launch-ext-m.m:
16380 Fix AVI/ASF pipelines (#165340).
16382 2005-01-26 Amaury Jacquot <sxpert@esitcom.org>
16383 * ext/cairo/gsttextoverlay.c: include string.h and strings.h to fix
16384 build failure on amd64
16386 2005-01-26 Tim-Philipp Müller <tim at centricular dot net>
16388 * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
16389 (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
16390 Check environment variables GST_ID3V2_TAG_ENCODING,
16391 GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
16392 list of character encodings to force interpretation of non-unicode
16393 strings stored in an ID3v2 tag to a particular encoding. If none
16394 is specified, try to use current locale's encoding, then fall back
16395 to ISO-8859-1 (which will always succeed). (Resolves #149274)
16396 * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
16397 (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
16398 Check environment variables GST_ID3V1_TAG_ENCODING,
16399 GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
16400 list of character encodings to use in case a string encountered
16401 in an ID3v1 tag is not valid UTF-8 already. If no encoding is
16402 specified, try to use the current locale's encoding, then fall
16403 back to ISO-8859-1 (which will always succeed).
16405 2005-01-25 Benjamin Otte <otte@gnome.org>
16407 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
16408 - on half framerate, compute the rate in advance so the comparisons
16409 don't compare wrong values
16410 - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
16412 - don't use mad_header_decode anymore, mad_frame_decode does that
16414 - when getting rid of consumed bytes, reset the stream's skiplen
16417 2005-01-26 Jan Schmidt <thaytan@mad.scientist.com>
16419 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
16420 Use 1/2 a second for default max_discont, as PES streams from DVB
16421 seem to have larger spacings in the SCR.
16424 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16426 * gst/playback/gstplaybasebin.c: (group_commit):
16427 Notify delayed stream-info availability.
16429 2005-01-26 Jan Schmidt <thaytan@mad.scientist.com>
16430 * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
16431 (gst_a52dec_handle_event), (gst_a52dec_chain):
16432 Add some debug output. Check that a discont has a valid
16434 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
16435 (gst_alsa_sink_loop):
16436 Ignore TAG events. A little extra debug for broken timestamps.
16437 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
16438 (dvdnavsrc_change_state):
16439 Ensure we send a discont to engage the link before we send any
16441 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
16442 (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
16443 (_seek_chapter), (seek_sector), (dvdreadsrc_get),
16444 (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
16445 Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
16446 dvd://title works in totem because typefinding sends a seek that ends
16447 up going back to chapter 1 regardless.
16448 * ext/mpeg2dec/gstmpeg2dec.c:
16449 * ext/mpeg2dec/gstmpeg2dec.h:
16450 Output correct timestamps and handle disconts.
16451 * ext/ogg/gstoggdemux.c: (get_relative):
16452 Small guard against a null dereference.
16453 * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
16454 (gst_textoverlay_set_property):
16455 Free memory when done. Don't call gst_event_filler_get_duration on
16456 EOS events. Use GST_LOG and GST_WARNING instead of g_message and
16458 * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
16459 (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
16460 (gst_sw_srclink), (gst_smoothwave_chain):
16461 Draw solid lines, prettier colours.
16462 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
16463 Add a default palette that'll work for some movies.
16464 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
16465 (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
16466 (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
16467 * gst/mpegstream/gstdvddemux.h:
16468 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
16469 (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
16470 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
16471 (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
16472 * gst/mpegstream/gstmpegparse.h:
16473 Use PTM/NAV events when for timestamp adjustment when connected to
16474 dvdnavsrc. Don't use many discont events where one suffices.
16475 * gst/playback/gstplaybasebin.c: (group_destroy),
16476 (gen_preroll_element), (gst_play_base_bin_add_element):
16477 * gst/playback/gstplaybasebin.h:
16478 Make sure we remove subtitles from the same bin we put them in.
16479 * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
16480 (gst_subparse_buffer_format_autodetect),
16481 (gst_subparse_change_state):
16482 Fix some memleaks and invalid accesses.
16483 * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
16484 (oggskel_type_find), (cmml_type_find), (plugin_init):
16485 Some typefind functions for Annodex v3.0 files
16486 * gst/wavparse/gstwavparse.h:
16487 GstRiffReadClass is the correct parent class.
16489 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16491 * gst-libs/gst/riff/riff-media.c:
16492 (gst_riff_create_video_caps_with_data):
16493 Add extradata to huffyuv (fixes #165013).
16494 * gst-libs/gst/riff/riff-read.c:
16495 (gst_riff_read_strf_vids_with_data):
16496 Fix extradata extraction if it is in the chunk size.
16498 2005-01-25 Edward Hervey <bilboed@bilboed.com>
16500 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16502 * gst/effectv/gstquark.c: (gst_quarktv_class_init),
16503 (gst_quarktv_change_state), (gst_quarktv_dispose):
16504 Memory free'ing location fix (#164708).
16506 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16508 * gst/playback/gstplaybasebin.c: (group_commit),
16509 (gen_preroll_element), (probe_triggered), (gen_source_element),
16510 (setup_source), (gst_play_base_bin_change_state),
16511 (gst_play_base_bin_add_element):
16512 Don't block for streams.
16513 * gst/playback/gststreaminfo.c: (stream_info_change_state),
16514 (gst_stream_info_set_mute):
16515 Use gst_pad_set_active_recursive.
16517 2005-01-25 Andy Wingo <wingo@pobox.com>
16519 * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
16520 for #ifndef HAVE_XVIDEO.
16522 2005-01-24 Jeffrey C. Ollie
16524 reviewed by: Maciej Katafiasz <mathrick@freedesktop.org>
16526 * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
16527 * ext/gsm/gstgsmdec.h:
16528 * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
16529 * ext/gsm/gstgsmenc.h:
16530 Fix rate to 8kHz as per spec, removes obscure errors when no rate
16531 was given by property. Add proper buffer timestamps and offsets.
16533 2005-01-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16535 * gst-libs/gst/riff/riff-media.c:
16536 (gst_riff_create_audio_caps_with_data):
16537 Audio can be <8000Hz.
16539 2005-01-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16541 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
16542 Explicit state change to workaround refcount bugs.
16544 2005-01-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16546 * gst/avi/gstavimux.c: (gst_avimux_write_tag),
16547 (gst_avimux_riff_get_avi_header):
16550 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16552 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
16553 (gst_riff_read_element_data):
16554 * gst-libs/gst/riff/riff-read.h:
16555 Add _peek version (req'ed in CDXA).
16556 * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
16557 (gst_cdxaparse_loop):
16558 Fix parsing in playbin.
16559 * gst/playback/gstdecodebin.c: (close_pad_link):
16560 Ignore current_ pads, they cause major annoyance.
16562 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16564 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
16567 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16569 * gst/avi/gstavimux.c: (gst_avimux_write_tag):
16572 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16574 * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
16575 Allow for 0-sized buffers. Fixes length query problems in
16576 starwars.mkv from the testsuite.
16578 2005-01-19 Tim-Philipp Müller <tim at centricular dot net>
16580 * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
16581 (gst_video_box_i420), (gst_video_box_chain):
16582 Fix row strides for I420 (fixes #163159)
16584 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16586 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
16587 MPEG2 has a useful rate property, so we can actually use that.
16588 For MPEG-1, continue using the bytes/time properties.
16590 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16592 * gst-libs/gst/riff/riff-media.c:
16593 (gst_riff_create_video_caps_with_data),
16594 (gst_riff_create_video_template_caps):
16597 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16599 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
16600 Fail if caps negotiation fails. Should fix #162184, and should
16601 definately be in there regardless of it fixing the actual bug.
16602 * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
16603 (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
16604 (gst_avimux_riff_get_avix_header),
16605 (gst_avimux_riff_get_video_header),
16606 (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
16607 (gst_avimux_start_file), (gst_avimux_handle_event),
16608 (gst_avimux_change_state):
16609 * gst/avi/gstavimux.h:
16610 Refactor structure writing to use GST_WRITE_UINT macros, add
16611 metadata writing support.
16613 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16615 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
16616 Elements may already be destroyed when this function is called.
16618 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16620 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
16621 (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
16622 More memory leak fixes (#149162).
16624 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16626 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
16627 (gst_qtdemux_add_stream):
16630 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16632 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
16635 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16637 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
16638 Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
16639 when fixating to six channels in Totem.
16641 2005-01-17 Tim-Philipp Müller <tim at centricular dot net>
16643 * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
16644 Fix compile warnings on Solaris 10 buildbot
16646 2005-01-17 Tim-Philipp Müller <tim at centricular dot net>
16648 * ext/dvdread/dvdreadsrc.c: (_read):
16649 Don't read beyond the last cell in a chapter (fixes
16650 invalid memory access)
16652 2005-01-17 Tim-Philipp Müller <tim at centricular dot net>
16654 * ext/dvdread/stream_labels.c:
16655 (dvdreadsrc_get_audio_stream_labels):
16656 Use NULL for an empty GList instead of g_list_alloc(); fix
16657 memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead
16658 of GString (easier to bulk free later)
16660 2005-01-17 Gergely Nagy <algernon@bonehunter.rulez.org>
16662 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16664 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16665 (gst_ffmpeg_pixfmt_to_caps):
16666 Fix BGRA32 caps (#164209).
16668 2005-01-17 Gergely Nagy <algernon@bonehunter.rulez.org>
16670 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16672 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16673 (gst_ffmpeg_caps_to_pixfmt):
16674 alpha_mask can be RGBA/ABGR. Fixes #164265.
16676 2005-01-17 Francis Labonte <francis_labonte@hotmail.com>
16678 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16680 * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
16681 (gst_mpeg2dec_alloc_buffer):
16682 * ext/mpeg2dec/gstmpeg2dec.h:
16683 Crop if decoding size is not the actual image size (#163676).
16685 2005-01-17 Steve Baker <steve@stevebaker.org>
16687 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16689 * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
16690 (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
16691 Add libsndfile typefind functions (#163309).
16693 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16695 * tools/gst-launch-ext-m.m:
16696 Add .aac, fix .m1v/.m2v (#163891).
16698 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16700 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
16701 Sanity check, don't wait endlessly since the clock might not
16702 actually run at this point (which is a deadlock). Fixes #164069.
16704 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16706 * gst/playback/gstplaybasebin.c: (probe_triggered):
16707 Of course, only pause if group is done...
16709 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16711 * gst/playback/gstplaybasebin.c: (probe_triggered):
16714 2005-01-16 Jan Schmidt <thaytan@mad.scientist.com>
16716 * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
16717 Don't return state change success when the parent
16720 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16722 * gst/avi/gstavimux.c: (gst_avimux_handle_event):
16723 Free events (fix memleak in #162905).
16725 2005-01-15 Gergely Nagy <algernon@bonehunter.rulez.org>
16727 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16729 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16730 (gst_ffmpeg_caps_to_pixfmt):
16731 Fix for depth = 15. Fixes #161675.
16733 2005-01-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16735 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
16736 Set FPS correctly, even for webcams and the like.
16737 * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
16738 Don error on setting while capturing.
16740 2005-01-14 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
16742 * ext/dv/gstdvdec.c:
16743 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
16744 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
16745 I'm a bad boy. using /1001. to force C to do float division
16746 and not integer division (as it did in my last commit)
16747 Thanks to David I. Lehn for pointing this mistake.
16749 2005-01-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16751 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
16752 Revert Johan's 1.35->1.36 since it breaks compat.
16754 2005-01-14 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
16756 * ext/dv/gstdvdec.c:
16757 * ext/libfame/gstlibfame.c:
16758 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
16759 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
16760 replace framerate aproximations by their real value
16761 (24000/1001, 30000/1001, 60000/1001)
16762 Finish fixing bug #164049
16764 2005-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
16766 * ext/ogg/gstoggmux.c:
16768 * gst/tcp/gstmultifdsink.c:
16769 * gst/tcp/gstmultifdsink.h:
16770 * gst/tcp/gsttcp.c:
16771 * gst/tcp/gsttcp.h:
16772 * gst/tcp/gsttcpclientsink.c:
16773 * gst/tcp/gsttcpclientsrc.c:
16774 * gst/tcp/gsttcpserversink.c:
16775 * gst/tcp/gsttcpserversrc.c:
16776 improve reusability of elements after state changes and errors
16777 make multifdsink throw away streamheaders when receiving new ones
16779 2005-01-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16781 * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
16782 Fix for if items are already in list...
16784 2005-01-12 Benjamin Otte <otte@gnome.org>
16786 * gst/adder/gstadder.c: (gst_adder_loop):
16787 fix adder a bit so it doesn't screw up with events as much anymore
16789 2005-01-12 Jan Schmidt <thaytan@mad.scientist.com>
16791 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
16792 (pixbufscale_scale), (gst_pixbufscale_chain):
16793 * ext/gdk_pixbuf/pixbufscale.h:
16794 Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
16795 to ensure rowstrides are calculated the same way as
16797 Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
16798 that we pick up duration and offset also.
16800 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16802 * gst/avi/gstavimux.c: (gst_avimux_class_init),
16803 (gst_avimux_pad_unlink), (gst_avimux_release_pad):
16806 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16808 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
16809 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
16810 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
16811 (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
16812 Update flags when requested.
16814 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16816 * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
16819 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16821 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
16822 (gst_play_base_bin_init), (gst_play_base_bin_dispose),
16823 (probe_triggered), (new_decoded_pad), (gen_source_element),
16824 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
16825 * gst/playback/gstplaybasebin.h:
16826 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
16827 (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
16828 (gst_play_bin_change_state):
16829 Implement group-switch signal for use in apps to clear metadata
16830 cache, clean up subtitle, add suburi property instead of # hack,
16831 some error-out fixes.
16833 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16835 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
16837 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
16838 If we got a state change in the _get handler, don't return success.
16840 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
16842 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
16843 (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
16844 Make jpegdec quiet on MJPEG decoding
16845 * gst/asfdemux/README:
16846 Fix mimetypes for MJPEG and H263
16848 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16850 * ext/theora/theoradec.c: (theora_dec_chain):
16851 Fix broken code generation by gcc by swapping arguments.
16852 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
16855 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
16858 delete this file, it is by far outdated
16859 * ext/alsa/gstalsa.1: remove
16860 * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
16861 (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
16862 (gst_alsa_get_caps):
16863 Add HW probing for supported sample rates. Fixes #161704
16865 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16867 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
16868 Don't crash, biatch! :).
16870 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16872 * ext/musepack/gstmusepackreader.cpp:
16873 * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
16874 Some work on tags - still doesn't work in playbin...
16875 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
16878 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16880 * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
16881 Also shove tags on kid pads.
16883 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16885 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
16886 Don't bail on unknown events.
16887 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
16888 Don't crash on events before negotiation.
16889 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
16890 Send tags on pads, too.
16891 * gst/playback/gststreamselector.c:
16892 (gst_stream_selector_request_new_pad):
16893 Forward events on first pad if no input was selected yet.
16895 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16897 * gst/playback/gstplaybasebin.c: (setup_substreams):
16898 Don't disable streamtype if the stream doesn't exist, since
16899 then playing a video after audio will disable both and nothing
16900 will happen. Fixes the testsuite.
16902 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16904 * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
16905 (gst_v4l_xoverlay_set_xwindow_id):
16906 * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
16907 (gst_v4l2_xoverlay_set_xwindow_id):
16908 Add debug categories, fix overlay disabling.
16910 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
16912 * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
16913 * ext/alsa/gstalsa.h:
16914 Add HW probing for period_count/size and buffer_size MIX/MAX
16915 Adjust default/user defined value if out of bounds
16916 Should fix bug #162024
16918 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16920 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
16921 Fix warning (#161191).
16923 2005-01-09 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
16925 * ext/dvdread/stream_labels.c:
16926 (dvdreadsrc_get_audio_stream_labels):
16927 Fix warning (init the good variable in switch default)
16929 2005-01-09 Koop Mast <kwm@rainbow-runner.nl>
16931 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16933 * gst/tta/gstttaparse.c: (gst_tta_src_event):
16934 Fix gcc-2.95 compile (#163485).
16936 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16939 * ext/flac/gstflacenc.c: (gst_flacenc_init),
16940 (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
16941 (gst_flacenc_tell_callback), (gst_flacenc_chain),
16942 (gst_flacenc_change_state):
16943 * ext/flac/gstflacenc.h:
16944 Update for API change in flac-1.1.1. Update requirement in
16945 configure.ac. Fixes #162974.
16947 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16949 * gst/playback/gstplaybasebin.c: (group_destroy):
16950 Remove hack to get rid of assert and get rid of unlinked
16953 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16955 * gst/playback/gstplaybasebin.c: (setup_source):
16956 Set source to NULL so that resources are free'ed. Fixes issues
16957 with playback of CDDA and similar device-accessing things.
16959 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16961 * testsuite/embed/Makefile.am:
16962 test->noinst, fix make test in buildbot.
16964 2005-01-09 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
16966 * ext/dvdread/stream_labels.c: new file
16967 * ext/dvdread/stream_labels.h: new file
16968 * ext/dvdread/Makefile.am:
16969 * ext/dvdread/dvdreadsrc.c: (_seek_title):
16970 Extract audio stream label from DVD IFO files.
16971 It only dump them on the console for now, still have to
16972 make playbin aware of them.
16974 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16976 * gst/playback/gstplaybasebin.c: (setup_source):
16979 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16981 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
16982 (gen_preroll_element), (remove_groups), (setup_subtitle),
16983 (gen_source_element), (setup_source):
16984 * gst/playback/gstplaybasebin.h:
16985 Multiple .sub files is just a stupid idea... Fix some threading
16986 mistakes. Interestingly, external .sub files cause playbin to
16987 hang, I don't know why... Parsing fixes contributed by Fran??ois
16988 Kooman <fkooman@tuxed.net>.
16990 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16992 * testsuite/embed/Makefile.am:
16995 2005-01-09 Gergely Nagy <algernon@bonehunter.rulez.org>
16997 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16999 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
17000 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
17001 (gst_pngenc_set_property):
17002 * ext/libpng/gstpngenc.h:
17003 Add compression level property (#163323).
17005 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17008 * examples/capsfilter/capsfilter1.c: (main):
17009 * examples/seeking/spider_seek.c: (make_spider_pipeline):
17010 * ext/dvdread/Makefile.am:
17011 * ext/dvdread/demo-play:
17012 * ext/dvdread/demo-play.c:
17013 * gconf/gstreamer.schemas.in:
17014 * gst-libs/gst/gconf/gconf.c:
17016 * testsuite/Makefile.am:
17017 * testsuite/embed/Makefile.am:
17018 * testsuite/embed/embed.c: (cb_expose), (main):
17019 Remove all references to xvideosink, fix examples (#140845).
17020 * gst/playback/gstplaybasebin.c: (group_destroy):
17021 Apparently, disposal does not unlink - so do explicitely.
17022 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
17025 2005-01-09 Maciej Katafiasz <mathrick@freedesktop.org>
17027 * README: fix PKG_CONFIG_PATH instructions, what was there
17028 previously was breaking default search path, not nice.
17031 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17033 * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
17034 (gst_audioscale_chain):
17035 %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
17036 when resampling - how the ^@$^!@^! is this possible?!?
17038 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17040 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
17041 Reset variables on READY.
17042 * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
17043 (gst_matroska_mux_loop):
17044 Require data before writing header.
17046 2005-01-09 Francis Labonte <francis_labonte@hotmail.com>
17048 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17050 * ext/mad/gstmad.c: (gst_mad_chain):
17051 Don't call mad_stream_sync() directly after recovering sync.
17054 2005-01-09 Martin Eikermann <meiker@upb.de>
17056 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17058 * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
17059 (snapshot_handler), (gst_snapshot_sinkconnect),
17060 (gst_snapshot_chain):
17061 Allocate resources when required, fix recursive signal emission
17062 and fix caps. Fixes #161667.
17064 2005-01-09 Gergely Nagy <algernon@bonehunter.rulez.org>
17066 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17068 * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
17069 (gst_pngdec_chain):
17070 Handle only 8-bppc (bits-per-pixel-component) images, better
17071 error handling and correct strides. Fixes #163177.
17072 * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
17073 (gst_pngenc_chain):
17074 Better error handling. Fixes #163348.
17076 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17078 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
17079 (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
17080 (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
17081 (dvdnavsrc_uri_handler_init):
17082 Add DVD-nav URI (dvdnav://) for Totem testing purposes.
17083 * gst/playback/gstplaybasebin.c: (gen_source_element):
17084 Add MMS to streaming URIs.
17086 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17088 * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
17089 * sys/xvimage/xvimagesink.c:
17090 (gst_xvimagesink_navigation_send_event):
17091 Check for pad availability before sending event.
17093 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17095 * gst-plugins.spec.in:
17098 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17101 Since we use functions from CVS, up requirement.
17103 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17105 * gst/playback/Makefile.am:
17106 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
17107 (group_destroy), (group_commit), (group_is_muted),
17108 (gen_preroll_element), (add_stream), (unknown_type),
17109 (probe_triggered), (preroll_unlinked), (mute_stream),
17110 (silence_stream), (new_decoded_pad), (setup_substreams),
17111 (setup_source), (get_active_source), (mute_group_type),
17112 (muted_group_change_state), (set_active_source),
17113 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
17114 (play_base_eos), (gst_play_base_bin_change_state):
17115 * gst/playback/gstplaybasebin.h:
17116 * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
17117 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
17118 (gst_stream_info_dispose), (stream_info_mute_pad),
17119 (stream_info_change_state), (gst_stream_info_set_mute):
17120 * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
17121 (gst_stream_selector_base_init), (gst_stream_selector_class_init),
17122 (gst_stream_selector_init), (gst_stream_selector_dispose),
17123 (gst_stream_selector_get_linked_pad),
17124 (gst_stream_selector_get_caps), (gst_stream_selector_link),
17125 (gst_stream_selector_get_linked_pads),
17126 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
17127 * gst/playback/gststreamselector.h:
17128 Adding stream selection support plus required properties for
17129 applications to use this. Fully fixes #100931.
17131 2005-01-08 Benjamin Otte <otte@gnome.org>
17133 * gst/games/gstpuzzle.c: (nav_event_handler):
17134 - handle nav events differently: forward every event no matter if it
17135 was handled or not.
17137 You can now cheat by using navigationtest ! puzzle and moving the
17138 mouse close to the edge of a tile. ;)
17140 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17143 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
17144 * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
17145 (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
17146 (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
17147 (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
17148 (gst_ogm_parse_plugin_init):
17149 * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
17150 (gst_textoverlay_link), (gst_textoverlay_getcaps),
17151 (gst_textoverlay_event), (gst_textoverlay_video_chain),
17152 (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
17153 * ext/pango/gsttextoverlay.h:
17154 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
17155 (gst_matroska_demux_handle_seek_event),
17156 (gst_matroska_demux_sync_streams),
17157 (gst_matroska_demux_parse_blockgroup),
17158 (gst_matroska_demux_subtitle_caps),
17159 (gst_matroska_demux_plugin_init):
17160 * gst/matroska/matroska-ids.h:
17161 * gst/playback/gstdecodebin.c: (close_pad_link):
17162 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
17163 (gen_preroll_element), (remove_groups), (add_stream),
17164 (new_decoded_pad), (setup_subtitles), (gen_source_element),
17166 * gst/playback/gstplaybasebin.h:
17167 * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
17168 * gst/subparse/Makefile.am:
17169 * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
17170 (gst_subparse_base_init), (gst_subparse_class_init),
17171 (gst_subparse_init), (gst_subparse_formats),
17172 (gst_subparse_eventmask), (gst_subparse_event),
17173 (gst_subparse_handle_event), (convert_encoding), (get_next_line),
17174 (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
17175 (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
17176 (parse_mpsub_deinit), (parse_mpsub_init),
17177 (gst_subparse_buffer_format_autodetect),
17178 (gst_subparse_format_autodetect), (gst_subparse_loop),
17179 (gst_subparse_change_state), (gst_subparse_type_find),
17181 * gst/subparse/gstsubparse.h:
17182 * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
17184 Add subtitle support, .sub parser (supports SRT and MPsub),
17185 OGM text support, Matroska UTF-8 text support, deadlock fixes
17186 all over the place, subtitle awareness in decodebin/playbin
17187 and some fixes to textoverlay to handle subtitles in a stream
17188 correctly. Fixes #100931.
17190 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17192 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
17193 Check for pad availability before doing a query on it.
17195 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17197 * ext/dv/gstdvdec.c:
17198 really fix bpp24/32 dvdec caps (classic rgba indeed)
17199 * gst/asfdemux/gstasfdemux.c:
17200 (gst_asf_demux_process_ext_content_desc):
17201 don't send text tags if they are empty (bis repetita)
17203 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17205 * ext/dv/gstdvdec.c:
17206 remove unneeded comment from dvdec
17207 (related to DV 4CC codes in AVI files)
17208 moved them in gstreamer/docs/random/mimetypes
17209 * gst/asfdemux/gstasfdemux.c:
17210 (gst_asf_demux_process_ext_content_desc):
17211 don't send text tags if they are empty
17212 fix mem leak on error path
17213 * gst/ffmpegcolorspace/avcodec.h:
17214 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17215 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
17216 (gst_ffmpegcsp_avpicture_fill):
17217 * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
17218 * gst/ffmpegcolorspace/imgconvert_template.h:
17219 adds BGR32 and BGRA32 to ffmpegcolorspace
17220 (still bad colors, fixing it on next commit)
17221 helps with dvdec outputing BGR32
17223 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17225 * ext/dv/gstdvdec.c:
17226 Fix audio caps i just broke (missing ',')
17227 * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
17228 (gst_matroska_mux_reset):
17229 Fix typo + add FIXME about old "x-gst-metadata" crap
17231 2005-01-07 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17233 * ext/dv/demo-play.c: (main):
17234 xvideosink -> xvimagesink
17235 * ext/dv/gstdvdec.c:
17236 change rgb 32/32 caps to 24/32 (no alpha)
17237 change nb of channels to be a list (2 or 4, not 2)
17238 change sample rate to be a list (32, 44.1, 48 kHz) not a range
17239 * gst/asfdemux/gstasfdemux.c:
17240 (gst_asf_demux_process_ext_content_desc):
17241 Add 'date/year' to extracted metadata list
17243 2005-01-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17245 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
17246 The return value of fixate_to does not imply that the requested
17247 value was set, so don't assume.
17249 2005-01-07 Gergely Nagy <algernon@bonehunter.rulez.org>
17251 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17253 * ext/libpng/gstpngdec.c:
17254 * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
17255 (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
17256 * ext/libpng/gstpngenc.h:
17257 Alpha support (encoder; #163161), mime fixage.
17259 2005-01-07 Sebastien Cote <sc5@hermes.usherb.ca>
17261 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17263 * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
17264 (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
17265 (gst_faac_set_property), (gst_faac_get_property):
17266 * ext/faac/gstfaac.h:
17267 Allow for ADTS output (#153434).
17269 2005-01-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17271 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
17272 Fix against template (#150576).
17274 2005-01-06 Benjamin Otte <otte@gnome.org>
17276 * gst/games/gstpuzzle.c: (draw_puzzle):
17277 don't draw a puzzle if either width or height of tiles would be 0.
17279 2005-01-06 Benjamin Otte <otte@gnome.org>
17281 * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
17282 (gst_puzzle_class_init), (gst_puzzle_finalize):
17283 no memleaks, please
17284 (gst_puzzle_create), (gst_puzzle_init),
17285 (gst_puzzle_set_property), (gst_puzzle_setup):
17286 change initialization code around so we don't reshuffle on resize
17288 fix another stupid typo
17290 2005-01-06 Benjamin Otte <otte@gnome.org>
17292 * gst/games/gstvideoimage.c: (copy_hline_YUY2):
17293 fix stupid typo that borked copying on YUY2
17295 2005-01-06 Benjamin Otte <otte@gnome.org>
17297 * gst/games/gstpuzzle.c: (draw_puzzle):
17298 fix edges when image sizes aren't multiples of tile sizes
17300 2005-01-06 Benjamin Otte <otte@gnome.org>
17302 * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
17303 make RGB endianness work correctly
17304 (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
17305 refactor and fix race with initial shuffling
17306 (nav_event_handler):
17307 allow using the mouse to puzzle
17309 insist on tiles having width and height as multiples of 4 to get
17310 clean YUV image handling
17311 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
17312 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
17313 s/DEBUG/LOG/ for common messages
17314 (gst_xvimagesink_navigation_send_event):
17315 fix mouse event translation to not include screen PAR
17316 * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
17317 fix mouse event translation to actually work
17319 2005-01-06 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17321 * gst/asfdemux/gstasfdemux.c:
17322 (gst_asf_demux_process_ext_content_desc):
17323 Extract TrackNumber metadata + clean up code
17324 * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
17325 Hope this is the good fix (var used unitialised)
17327 2005-01-06 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17329 * ext/faad/gstfaad.c: (gst_faad_chain):
17330 Only increment timestamp if it's valid. Fixes raw AAC streams.
17332 2005-01-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
17335 * gst/games/Makefile.am:
17336 * gst/games/gstpuzzle.c:
17337 add a puzzle game with...
17338 * gst/games/gstvideoimage.c:
17339 * gst/games/gstvideoimage.h:
17340 ... full colorspace support (that includes YUV9 and RGB16)) stolen
17341 from videotestsrc and made into something that would be a nice
17342 library for a lot of other plugins.
17344 2005-01-06 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17347 don't compile faad plugin if a RC of 2.0 is found
17348 Fixes #155346 (and FC1 buildbot)
17349 * gst/asfdemux/gstasfdemux.c:
17350 (gst_asf_demux_process_ext_content_desc):
17351 try to make Solaris compiler happier
17353 2005-01-06 Paul Jack <pjack@sfaf.org>
17355 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17357 * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
17358 Fix segfault (#161667).
17360 2005-01-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17362 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
17363 Fix framerate reporting.
17365 2005-01-05 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17367 * gst-libs/gst/riff/riff-ids.h:
17368 * gst/wavenc/riff.h:
17369 Add AMR (VBR and CBR) ids to riff.h audio codec list
17370 * gst/asfdemux/gstasfdemux.c:
17371 (gst_asf_demux_process_ext_content_desc),
17372 (gst_asf_demux_process_object):
17373 Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
17375 2005-01-05 Martin Eikermann <meiker@upb.de>
17377 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17379 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
17380 (gst_dvd_demux_handle_discont):
17381 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
17382 (gst_mpeg_demux_handle_discont):
17383 Recreate pads on new-media (#160730).
17384 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
17385 Send discont even if manager changes timestamps (#161929).
17387 2005-01-05 Sebastien Cote <sc5@hermes.usherb.ca>
17389 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17391 * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
17392 Fix invalid memory access (#159211).
17394 2005-01-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17396 * examples/gstplay/player.c: (main):
17398 * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
17399 Add visualizations.
17400 * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
17401 (gst_a52dec_handle_frame):
17403 * ext/dvdnav/gst-dvd:
17404 Add audioconvert. Fixes #161325.
17405 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
17406 Explicitely case to gint64. Possible valgrind error.
17407 * gst-libs/gst/play/play.c: (caps_set), (setup_size),
17408 (gst_play_tick_callback), (gst_play_change_state),
17409 (gst_play_dispose), (gst_play_init), (gst_play_class_init),
17410 (gst_play_set_location), (gst_play_get_location),
17411 (gst_play_seek_to_time), (gst_play_set_data_src),
17412 (gst_play_set_video_sink), (gst_play_set_audio_sink),
17413 (gst_play_set_visualization), (gst_play_connect_visualization),
17414 (gst_play_get_framerate), (gst_play_get_all_by_interface),
17416 Use playbin. Fixes #139749 and #147744.
17417 * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
17419 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
17420 (audioscale_get_type), (gst_audioscale_base_init),
17421 (gst_audioscale_class_init), (gst_audioscale_expand_caps),
17422 (gst_audioscale_getcaps), (gst_audioscale_fixate),
17423 (gst_audioscale_link), (gst_audioscale_get_buffer),
17424 (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
17425 (gst_audioscale_init), (gst_audioscale_dispose),
17426 (gst_audioscale_chain), (gst_audioscale_set_property),
17427 (gst_audioscale_get_property), (plugin_init):
17429 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
17431 * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
17432 (qtdemux_tag_add_str), (qtdemux_tag_add_num),
17433 (qtdemux_tag_add_gnre), (qtdemux_video_caps):
17434 Add more metadata (fixes #162656).
17436 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
17441 === release 0.8.7 ===
17443 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
17448 releasing 0.8.7, "Hyperspace"
17450 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
17452 patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
17454 * gst/playback/gstplaybasebin.c:
17455 Fix for #162924 - free caps after use, not before
17457 2005-01-04 Thomas Vander Stichele <thomas at apestaart dot org>
17459 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
17461 * gst/playback/gstplaybasebin.c:
17462 * gst/wavparse/gstwavparse.c:
17463 Fix for #154773 - fixes playback of small .wav files
17465 2005-01-03 Thomas Vander Stichele <thomas at apestaart dot org>
17467 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
17469 * gst/audioscale/gstaudioscale.c:
17470 Fix for #162819 - make audioscale reusable
17471 Fixes playback of more than one file with playbin/totem
17473 2004-12-29 Thomas Vander Stichele <thomas at apestaart dot org>
17475 * gst/ffmpegcolorspace/avcodec.h:
17476 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17477 * gst/ffmpegcolorspace/imgconvert.c:
17478 clean up the mess that made me cry and avoid needless duplication
17480 2004-12-29 Thomas Vander Stichele <thomas at apestaart dot org>
17482 * gst/ffmpegcolorspace/imgconvert.c:
17483 give some indication of why we're segfaulting
17485 2004-12-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17488 Fix indentation, fix v4l2 plugin detection.
17490 Fix libmms location (Maciej, use diff -u!).
17491 * ext/alsa/gstalsa.c: (gst_alsa_init):
17492 Initialize caps cache to NULL.
17493 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
17494 Only change state on audiosink if it exists.
17496 2004-12-28 Maciej Katafiasz <mathrick@mathrick.org>
17498 * gst/matroska/matroska-demux.c:
17499 * gst/matroska/matroska-ids.h:
17500 * gst/matroska/matroska-demux.h:
17501 Fix Vorbis streams failing to decode in some files, where cluster_time
17502 isn't 0, because then it doesn't send codec_priv before actual data.
17503 Remove time-based test and replace it with marker set on beginning of
17506 2004-12-28 David Schleef <ds@schleef.org>
17508 Merge patch from Ronald fixing problems with streaming
17510 * ext/cairo/gstcairo.c: (plugin_init):
17511 * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
17512 (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
17513 (gst_textoverlay_video_chain), (gst_textoverlay_loop),
17514 (gst_textoverlay_font_init), (gst_textoverlay_init),
17515 (gst_textoverlay_set_property):
17516 * ext/cairo/gsttextoverlay.h:
17518 2004-12-27 David Schleef <ds@schleef.org>
17520 * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
17521 (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
17522 (gst_textoverlay_video_chain), (gst_textoverlay_loop),
17523 (gst_textoverlay_font_init), (gst_textoverlay_init),
17524 (gst_textoverlay_set_property): Improvements to actually
17525 render text as white on black outline on video, including
17526 font selection and horizontal/vertical alignment. (Ronald's
17528 * ext/cairo/gsttextoverlay.h:
17530 2004-12-26 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17532 * ext/ogg/gstogg.c:
17533 * ext/ogg/gstogmparse.c:
17534 fix ogm[audio/video]parse plugin registration
17535 (riff won't load if bytestream is already loaded)
17537 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
17539 * gst/audioconvert/gstchannelmix.c:
17542 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
17546 disable docs again until it actually passes make distcheck.
17548 2004-12-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17550 * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
17551 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
17553 Add 3GP (variables name Q3GP because they can't start with a
17554 number). Add samr audio fourcc (used in .3gp files), decoder
17555 is work in progress. Also do a GST_WARNING instead of ERROR
17556 in case of unknown nodes, to decrease output.
17558 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
17563 2004-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
17566 * ext/speex/gstspeexdec.h:
17567 * ext/speex/gstspeexenc.h:
17568 Fixes #158382. Make speex plugin compatible with both 1.0 and 1.1.
17569 Fix detection code in configure.ac
17571 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17573 * gst/matroska/matroska-demux.c:
17574 (gst_matroska_demux_parse_blockgroup):
17575 Save position, so that queries give proper return values. Don't
17576 know how this could ever have worked before...
17578 2004-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
17581 Put additional LAME check inside the conditional. Fixes #152339
17583 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17585 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
17586 (gst_avi_demux_stream_scan):
17587 Add some more debug. Fix logic error when setting movi offset
17588 while reading index.
17590 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17592 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
17593 (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
17594 (gst_avi_demux_process_next_entry):
17595 Add some debugging. Better detection of broken indexes and the
17596 accompanying index recovery. No infinite loops on state changes
17597 when we're still in our loopfunction.
17599 2004-12-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17604 2004-12-22 Archana Shah <archana.shah@wipro.com>
17606 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17608 * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
17609 Normalizing the value before setting
17610 (gst_sunaudiomixer_get_volume):
17611 Normalizing the value after getting. Fixes bug# 161980
17613 2004-12-22 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
17615 * Makefile.am: Make sure docs gets disted
17616 * docs/Makefile.am: Make sure all needed files get disted
17617 * gst-plugins.spec.in: latest updates
17619 2004-12-22 Wim Taymans <wim@fluendo.com>
17621 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
17622 Revert patch 1.38 as clock distribution over schedulers does
17623 not work correcly in the core yet.
17625 2004-12-21 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17627 * sys/oss/README: remove this file, which predates my birth
17628 (and which content is by far outdated)
17630 2004-12-20 Stefan Kost <ensonic@users.sf.net>
17634 * docs/Makefile.am:
17635 * docs/libs/Makefile.am:
17636 * docs/libs/gst-plugins-libs-docs.sgml:
17637 * docs/libs/gst-plugins-libs-sections.txt:
17638 * docs/libs/tmpl/gstgconf.sgml:
17640 * docs/version.entities.in:
17641 Added boilerplate gtk-doc files for plugin-libs documentation.
17643 2004-12-19 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17645 * gst/auparse/gstauparse.c: fix int and float audio caps
17647 2004-12-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17649 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
17650 * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
17651 g_assert() can be a macro, don't use #ifdef inside it.
17653 2004-12-19 Edward Hervey <bilboed@bilboed.com>
17655 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17657 * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
17658 (gst_videorate_init), (gst_videorate_chain),
17659 (gst_videorate_change_state):
17660 Event handling (fixes #159986).
17662 2004-12-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17664 * gst-libs/gst/riff/riff-media.c:
17665 (gst_riff_create_video_caps_with_data):
17666 Add BLZ0 (Blizzard's version of DivX) fourcc.
17668 2004-12-18 David Schleef <ds@schleef.org>
17670 * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
17673 2004-12-18 David Schleef <ds@schleef.org>
17675 * gst/tta/ttadec.h: Disable some header code that isn't used
17676 and clearly isn't portable.
17678 2004-12-18 David Schleef <ds@schleef.org>
17680 * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
17681 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
17682 (avcodec_get_pix_fmt), (avpicture_layout),
17683 (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
17684 (get_convert_table_entry), (img_convert), (img_get_alpha_info):
17685 Fix code to not use GCC extensions (and c99 extensions that
17686 Forte does not like.)
17688 2004-12-19 Tim-Philipp Müller <t.i.m@zen.co.uk>
17690 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17692 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
17693 (gst_deinterlace_chain):
17694 Rowstride fixes. Fixes #161039.
17695 * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
17696 (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
17697 (gst_video_crop_getcaps), (gst_video_crop_link),
17698 (gst_video_crop_i420), (gst_video_crop_chain),
17699 (gst_video_crop_change_state):
17700 Rework of negotiation. Actually works now. Fixes #158650.
17702 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17704 * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
17705 That was very stupid.
17707 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17709 * gst/matroska/matroska-demux.c:
17710 (gst_matroska_demux_parse_blockgroup):
17711 Fix possible crasher.
17713 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17715 * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
17716 (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
17717 Lace sizes can be zero.
17719 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17721 * ext/musepack/gstmusepackdec.cpp:
17722 Fetch error return values. Fixes #161624.
17723 * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
17726 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17728 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
17729 Work for truncated (unfinished download etc.) files. Fixes #160514.
17731 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17733 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
17734 Fix for integer overflow. Makes #156001 not crash. Probably masks
17737 2004-12-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17739 * gst/ac3parse/gstac3parse.c: (plugin_init):
17740 Parsers never have ranks. Fixes #159651.
17742 2004-12-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
17744 * gst/playback/gstdecodebin.c: (compare_ranks):
17745 make sure the facotries are ordered the same every time even if they
17746 have the same rank by using the name
17747 * gst/playback/gstdecodebin.c: (find_compatibles):
17748 make sure we don't add factories to the list twice
17750 2004-12-16 David Schleef <ds@schleef.org>
17752 * configure.ac: look for musepack headers as musepack/*.h
17754 * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
17755 * ext/musepack/gstmusepackreader.h: same
17757 2004-12-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17759 * gst-libs/gst/riff/riff-read.c:
17760 (gst_riff_read_strf_auds_with_data):
17761 Read extradata correctly (fixes #155879).
17763 2004-12-16 David Schleef <ds@schleef.org>
17765 * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
17766 audio. does _not_ attempt or allow conversion unless channels
17769 2004-12-16 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
17771 * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
17773 2004-12-16 David Schleef <ds@schleef.org>
17775 * gst/audioscale/gstaudioscale.c: the resample library only
17776 handles 1 or 2 channels. Change caps to compensate.
17778 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17780 * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
17781 (gst_matroska_demux_audio_caps):
17782 Some MPEG-AAC hacks, because else it doesn't work...
17784 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17786 * gst-libs/gst/riff/riff-media.c:
17787 (gst_riff_create_video_caps_with_data),
17788 (gst_riff_create_video_template_caps):
17791 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17793 * gst-libs/gst/audio/Makefile.am:
17794 Try to fix buildbot.
17796 2004-12-16 Thomas Vander Stichele <thomas at apestaart dot org>
17798 * gst/tcp/gstmultifdsink.c:
17799 Clean up and uniformize debugging.
17801 2004-12-16 Edward Hervey <bilboed@bilboed.com>
17803 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17805 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
17806 (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
17807 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
17808 (gst_mpeg_demux_change_state):
17809 Reset on ready. Fixes 160276.
17811 2004-12-16 Sebastien Cote <sc5@hermes.usherb.ca>
17813 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17815 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17816 (gst_ffmpegcsp_pad_link):
17817 Fix memleak (#154815).
17819 2004-12-16 James Bowes <bowes@cs.dal.ca>
17821 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17823 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
17824 (gst_musicbrainz_init), (gst_musicbrainz_chain),
17825 (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
17826 * ext/musicbrainz/gsttrm.h:
17827 Add support for using a proxy server when getting a trm id from
17828 the MusicBrainz database (#149613).
17830 2004-12-16 Christophe Fergeau <teuf@gnome.org>
17832 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17834 * gst/playback/gstdecodebin.c: (new_pad), (close_link):
17835 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
17836 Fix memleaks (#157233).
17838 2004-12-16 Sebastien Cote <sc5@hermes.usherb.ca>
17840 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17842 * gst-libs/gst/resample/resample.c: (gst_resample_close):
17843 * gst-libs/gst/resample/resample.h:
17844 * gst/audioscale/gstaudioscale.c:
17845 Fix memleak (#159215).
17847 2004-12-16 Toni Willberg <toniw@iki.fi>
17849 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17851 * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
17852 * sys/oss/oss_probe.c: (main):
17853 Check for mono/stereo support (similar to samplerate probing),
17854 fixes #159433. Also add missing copyright header to oss_probe.c.
17856 2004-12-15 David Schleef <ds@schleef.org>
17858 * configure.ac: add audioresample and cairo plugins. Remove
17859 HAVE_MMX stuff, because it's not used.
17860 * ext/Makefile.am: same
17861 * ext/audioresample/Makefile.am: You are not ready for an
17862 audio resampling element based on audioresample.
17863 * ext/audioresample/gstaudioresample.c:
17864 * ext/audioresample/gstaudioresample.h:
17865 * ext/cairo/Makefile.am: You are not ready for overlay elements
17866 based on cairo. Don't look too closely, these elements kinda
17868 * ext/cairo/gstcairo.c: new
17869 * ext/cairo/gsttextoverlay.c: new
17870 * ext/cairo/gsttextoverlay.h: new
17871 * ext/cairo/gsttimeoverlay.c: new
17872 * ext/cairo/gsttimeoverlay.h: new
17873 * gst-libs/gst/media-info/media-info-priv.h: fix compile
17874 problem with compilers that don't support variadic macros.
17876 2004-12-15 Balamurali Viswanathan <balamurali.viswanathan@wipro.com>
17878 Reviewed by: David Schleef <ds@schleef.org>
17880 * sys/sunaudio/gstsunaudio.c: (plugin_init): Apply patch from
17881 Bala, registering sunaudiosrc (oops!), and cleaning up code a
17882 bit. Also ran indent-gst.
17883 * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
17884 (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
17885 (gst_sunaudiosrc_setparams):
17887 2004-12-14 David Schleef <ds@schleef.org>
17889 * gst/festival/gstfestival.c: (gst_festival_chain): Set the
17890 output rate to 16000. Should fix #160235.
17892 2004-12-14 Zaheer Abbas Merali <zaheerabbas at merali dot org>
17894 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
17895 Add typefinding for mpeg2 pes streams
17897 2004-12-13 David Schleef <ds@schleef.org>
17899 * configure.ac: Applied patch from bug #143659, making default
17900 sources and sinks OS-dependent (for Solaris), and added code
17902 * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
17904 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17906 * gst-libs/gst/riff/riff-media.c:
17907 forgot to add h2.64 to avidemux template caps
17909 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17911 * gst/wavenc/riff.h:
17912 * gst-libs/gst/riff/riff-media.c:
17913 * gst-libs/gst/riff/riff-ids.h:
17914 * gst/avi/gstavimux.c
17915 add 4CC code for VideoSoft h264 in AVI (VSSH)
17917 remove s323 from riff, it's quicktime specific :(
17919 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17921 * gst/asfdemux/README
17922 * gst/wavenc/riff.h
17923 * gst-libs/gst/riff/riff-ids.h
17924 * gst-libs/gst/riff/riff-media.c
17925 * gst/qtdemux/qtdemux.c:
17926 add new 4CC codes for h263 related codecs
17927 fixes partially bug #155163
17929 2004-12-12 Christian Fredrik Kalager Schaller <christian at fluendo dot com>
17931 * configure.ac: Update polyaudio requirement to 0.7
17932 * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
17934 2004-12-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
17936 * gst/interleave/deinterleave.c:
17937 fix my name's spelling! :)
17939 2004-12-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17941 * AUTHORS ChangeLog
17942 * gst/auparse/gstauparse.c
17943 * gst/interleave/deinterleave.c
17945 alaw-decode.c alaw-encode.c
17946 mulaw-decode.c mulaw-encode.c
17947 * gst/oneton/gstoneton.c
17949 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
17951 cocoawindow.h cocoawindow.m
17952 osxvideosink.h osxvideosink.m
17954 put the same mail address for Zaheer Abbas Merali everywhere
17956 2004-12-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17958 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
17959 Align by packetsize, and assert that we a packet available before
17960 playing. The first makes webstreams work (they often include
17961 trailing padding data in a packet), the second allows pausing a
17962 ASF stream in totem without getting demux errors afterwards.
17964 2004-12-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17966 * ext/ogg/gstoggdemux.c: (get_relative):
17967 Check for non-NULL before accessing member (end-of-chain).
17969 2004-12-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17971 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
17972 (cdparanoia_set_property), (cdparanoia_get_property):
17973 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
17974 (dvdnavsrc_set_property), (dvdnavsrc_get_property):
17975 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
17976 (dvdreadsrc_init), (dvdreadsrc_set_property),
17977 (dvdreadsrc_get_property):
17978 * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
17979 (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
17980 Synchronize property names where not yet the case. Devices are
17981 now device=X, other versions are deprecated (but still exist).
17982 Also use g_free() unconditionally.
17983 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
17984 (setup_source), (gst_play_base_bin_get_property):
17987 2004-12-09 Thomas Vander Stichele <thomas at apestaart dot org>
17989 * configure.ac: move GCONF macro outside conditional for the am
17990 conditional. Fixes #160439
17992 2004-12-08 David Schleef <ds@schleef.org>
17994 * tools/gst-visualise-m.m: Switch to elements that currently
17997 2004-12-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17999 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
18000 We love wrong commas.
18002 2004-12-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18004 * gst/matroska/matroska-demux.c:
18005 (gst_matroska_demux_handle_src_query):
18006 Don't set DEFAULT, unsupported - makes length display incorrectly
18009 2004-12-07 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18011 * gst/monoscope/README: remove blurb about files being GPL
18012 * gst/monoscope/gstmonoscope.c: Change license field to LGPL
18013 * gst/monoscope/monoscope.c: Change license to BSD with explanation
18014 monoscope is now effectively LGPL licensed
18016 2004-12-07 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18018 * gst/monoscope/README: Update information to be more correct
18019 * gst/monoscope/convolve.c: Relicense to LGPL
18020 * gst/monoscope/convolve.h: Relicense to LGPL
18022 2004-12-06 Arwed v. Merkatz <v.merkatz@gmx.net>
18024 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
18025 set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
18026 * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
18027 set default_duration for mpeg1 audio
18029 2004-12-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
18031 * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
18032 * ext/alsa/gstalsa.h:
18033 refactor big chunks of the core caps negotiation code to make it
18034 a lot faster, because people claim it's really slow
18035 (actually, just cache the getcaps when the device is opened)
18037 2004-12-06 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18039 * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
18040 (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
18041 (gst_a52dec_handle_frame), (gst_a52dec_chain),
18042 (gst_a52dec_change_state), (plugin_init):
18043 * ext/a52dec/gsta52dec.h:
18044 Do something useful with timestamps. Make chain-based (since
18045 there's really no reason to be loopbased).
18046 * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
18047 Update current_byte/frame correctly.
18049 2004-12-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18051 * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
18052 (gst_ape_demux_stream_init):
18055 2004-12-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18057 * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
18058 Let's make sure we're done typefinding when detecting tags.
18060 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18062 * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
18063 (gst_ebml_read_init), (gst_ebml_read_use_event),
18064 (gst_ebml_read_element_id), (gst_ebml_peek_id),
18065 (gst_ebml_read_seek), (gst_ebml_read_skip),
18066 (gst_ebml_read_reserve), (gst_ebml_read_buffer),
18067 (gst_ebml_read_master):
18068 * gst/matroska/ebml-read.h:
18069 * gst/matroska/matroska-demux.c:
18070 (gst_matroska_demux_parse_contents),
18071 (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
18072 Disgustingly evil hack for working around INTERRUPT events and
18073 their extremely annoying habit of being a pain in the ass. We
18074 simply peek a cluster before reading any of it.
18076 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18078 * ext/musepack/gstmusepackdec.cpp:
18079 There's also floating point libmusepacks.
18081 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18083 * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
18084 (gst_faad_chanpos_to_gst), (gst_faad_chain):
18085 Set DURATION even if source buffer didn't. Also use increasing
18087 * gst-libs/gst/riff/riff-media.c:
18088 (gst_riff_create_audio_caps_with_data):
18089 Block_align can have larger values than 8192.
18091 2004-12-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18093 * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
18094 * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
18095 * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
18096 * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
18099 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18101 * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
18104 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18106 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
18109 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18111 * ext/esd/esdsink.c: (gst_esdsink_chain):
18112 Make error actually say something useful (fixes #156798).
18113 * gst-libs/gst/riff/riff-media.c:
18114 (gst_riff_create_video_caps_with_data),
18115 (gst_riff_create_video_template_caps):
18116 Add Intel Video 5.0 fourcc (IV50).
18118 2004-12-01 Christophe Fergeau <teuf@gnome.org>
18120 * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
18121 detection on mono and stereo mp3 files.
18123 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18125 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
18126 Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
18127 the contained stream).
18129 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18131 * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
18132 Oops, remove debug.
18134 2004-12-01 Sebastien Cote <sc5@hermes.usherb.ca>
18136 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18138 * gst/law/alaw-decode.c: (alawdec_getcaps):
18139 * gst/law/mulaw-decode.c: (mulawdec_getcaps):
18140 Prevent warnings when negotiating caps (fixes #159338).
18142 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18144 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18145 (gst_ffmpegcsp_chain):
18146 Remove old leftover that shouldn't be there...
18148 2004-12-01 Sebastien Cote <sc5@hermes.usherb.ca>
18150 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18152 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
18153 Don't forward DISCONT events (fixes #159684).
18155 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18157 * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
18158 Unlink manually since sometimes bin disposal (and therefore
18159 pad unlinking) is delayed, which will cause a new media file
18160 to not be able to start playing instantly.
18162 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18164 * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
18165 On mute of an unlinked stream, check for pad availability so
18166 we don't crash on unlinked pad.
18168 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18170 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18171 (gst_avi_demux_massage_index):
18172 Fix quite humiliating bug in omitting 0-sized index chunks but
18173 forgetting to count them for timestamps.
18175 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18177 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
18178 Actually leave the loop if we failed to sync. Don't crash.
18180 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18182 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
18183 (gst_dvd_demux_process_private):
18184 * gst/mpegstream/gstdvddemux.h:
18185 Fix crash (#159759). Doesn't work, though. :-(.
18187 2004-11-28 Benjamin Otte <otte@gnome.org>
18189 * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
18190 more overwriting protection due to modifying channels one by one
18191 instead of all at once
18193 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18195 * gst/audioconvert/gstchannelmix.c:
18196 (gst_audio_convert_fill_normalize):
18197 Normalize using absolute values.
18199 2004-11-28 Julien MOUTTE <julien@moutte.net>
18203 * ext/directfb/Makefile.am:
18204 * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
18205 (gst_directfbvideosink_get_pixel_format),
18206 (gst_directfbvideosink_get_format_from_fourcc),
18207 (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
18208 (gst_directfbvideosink_sink_link),
18209 (gst_directfbvideosink_change_state),
18210 (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
18211 (gst_directfbvideosink_buffer_alloc),
18212 (gst_directfbvideosink_interface_supported),
18213 (gst_directfbvideosink_interface_init),
18214 (gst_directfbvideosink_navigation_send_event),
18215 (gst_directfbvideosink_navigation_init),
18216 (gst_directfbvideosink_set_property),
18217 (gst_directfbvideosink_get_property),
18218 (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
18219 (gst_directfbvideosink_base_init),
18220 (gst_directfbvideosink_class_init),
18221 (gst_directfbvideosink_get_type), (plugin_init):
18222 * ext/directfb/directfbvideosink.h: Adding a first version of
18224 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
18227 2004-11-28 Benjamin Otte <otte@gnome.org>
18229 * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
18230 walk the samples backwards if out_channels > in_channels so we don't
18233 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18235 * gst/audioconvert/Makefile.am:
18236 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
18237 (gst_audio_convert_link), (gst_audio_convert_change_state),
18238 (gst_audio_convert_channels):
18239 * gst/audioconvert/gstchannelmix.c:
18240 (gst_audio_convert_unset_matrix),
18241 (gst_audio_convert_fill_identical),
18242 (gst_audio_convert_fill_compatible),
18243 (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
18244 (gst_audio_convert_fill_others),
18245 (gst_audio_convert_fill_normalize),
18246 (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
18247 (gst_audio_convert_passthrough), (gst_audio_convert_mix):
18248 * gst/audioconvert/gstchannelmix.h:
18249 Implement a channel mixer.
18251 2004-11-28 Martin Soto <martinsoto@users.sourceforge.net>
18253 * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
18254 * ext/alsa/gstalsa.h:
18255 * ext/alsa/gstalsa.c (gst_alsa_set_clock):
18256 Make alsasink actually honor gst_element_set_clock and use that
18257 clock instead of its internal one.
18259 2004-11-27 Christophe Fergeau <teuf@gnome.org>
18261 * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
18262 (gst_play_base_bin_change_state): nullify source and decoder when
18263 going from READY to NULL so that we don't try to do weird stuff with
18264 them when going from NULL to READY
18265 * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
18266 instead of g_object_unref
18267 (gen_video_element), (gen_audio_element): more refcounting fixes, now
18268 it should be correct
18269 (gst_play_bin_change_state): don't call remove_sinks if we are
18270 currently disposing the object
18272 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18274 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
18275 Don't forget bass if it's there. Else left channel is silent...
18277 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18279 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
18280 (gst_a52dec_change_state):
18281 Don't do sample adjusting anymore, we use float audio now.
18282 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
18283 Don't fixate to non-existing properties.
18285 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18287 * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
18288 (gst_a52dec_change_state):
18289 Advertise that we can do surround sound.
18291 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18293 * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
18294 Add buffer-frames=0.
18295 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
18296 (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
18297 (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
18298 (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
18299 (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
18300 (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
18301 (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
18302 (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
18303 (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
18304 * ext/dvdread/dvdreadsrc.h:
18305 Add seeking, querying for bytes, sectors, title, angle and
18306 chapter. Handle multiple chapters. Relicense to LGPL because
18307 Billy agreed on that (thanks Billy!).
18309 2004-11-27 Christophe Fergeau <teuf@gnome.org>
18311 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
18312 call parent dispose method
18314 2004-11-27 Martin Soto <martinsoto@users.sourceforge.net>
18316 * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
18317 (gst_audio_clock_get_internal_time):
18318 Fix active <-> inactive transitions: ensure time value always
18319 grows and avoid abrupt value changes.
18321 2004-11-27 Arwed v. Merkatz <v.merkatz@gmx.net>
18324 * gst/tta/Makefile.am:
18326 * gst/tta/filters.h:
18327 * gst/tta/gsttta.c:
18328 * gst/tta/gstttadec.c:
18329 * gst/tta/gstttadec.h:
18330 * gst/tta/gstttaparse.c:
18331 * gst/tta/gstttaparse.h:
18332 * gst/tta/ttadec.h:
18333 added TTA parser and decoder
18335 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18337 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
18338 (probe_triggered), (check_queue), (buffer_underrun),
18339 (buffer_running), (buffer_overrun), (gen_source_element),
18341 * gst/playback/gstplaybasebin.h:
18342 Implement buffering. Needs some more work.
18344 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18346 * ext/theora/theoradec.c: (theora_dec_chain):
18347 Fix ilog mask range overflow.
18349 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18351 * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
18352 Don't omit the last (which in case of dmix is the only :) )
18353 channel count. Don't set channels if <= 2.
18355 2004-11-26 Christophe Fergeau <teuf@gnome.org>
18357 * gst/playback/gstplaybin.c: (gen_video_element),
18358 (gen_audio_element): Removed 2 obsolete comments
18360 2004-11-26 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18362 * ext/vorbis/oggvorbisenc.c
18363 * ext/vorbis/vorbisenc.c :
18364 change description fields of those plugins to differentiate them
18365 (pitivi show Encoders by description, they had the same one)
18367 2004-11-25 Christophe Fergeau <teuf@gnome.org>
18369 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18371 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
18372 (gst_play_bin_set_property), (gen_video_element),
18373 (gen_audio_element):
18374 Refcounting fixes for provided audio-/videosinks.
18376 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18378 * gst/playback/gstplaybin.c: (gen_video_element),
18379 (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
18380 Don't reference all sinks, but only the video- and audiosinks.
18381 The vis. element should be disposed when we're done with it.
18382 We don't have any reason to keep it around. This fixes warnings
18383 when reusing playbin for playing multiple audio files with
18384 vis. enabled. Also release audio device on pause - idea stolen
18387 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18389 * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
18390 (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
18391 * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
18392 * ext/alsa/gstalsaplugin.c: (plugin_init):
18393 * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
18394 (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
18395 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
18396 (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
18397 (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
18398 (gst_faad_change_state), (plugin_init):
18399 * ext/faad/gstfaad.h:
18400 * ext/vorbis/vorbis.c: (plugin_init):
18401 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
18402 * gst-libs/gst/audio/Makefile.am:
18403 * gst-libs/gst/audio/audio.c: (plugin_init):
18404 * gst-libs/gst/audio/multichannel.c:
18405 (gst_audio_check_channel_positions),
18406 (gst_audio_get_channel_positions),
18407 (gst_audio_set_channel_positions),
18408 (gst_audio_set_structure_channel_positions_list),
18409 (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
18410 (gst_audio_fixate_channel_positions):
18411 * gst-libs/gst/audio/multichannel.h:
18412 * gst-libs/gst/audio/testchannels.c: (main):
18413 * gst/audioconvert/gstaudioconvert.c:
18414 (gst_audio_convert_class_init), (gst_audio_convert_init),
18415 (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
18416 (gst_audio_convert_parse_caps), (gst_audio_convert_link),
18417 (gst_audio_convert_fixate), (gst_audio_convert_channels):
18418 * gst/audioconvert/plugin.c: (plugin_init):
18419 Surround sound support.
18421 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18423 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
18424 Fix position for discont if we're close as well. Nitpicking, but
18425 saves a few milliseconds of extra waiting or skipping.
18427 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18429 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
18430 We sometimes need parsers for playback, so add those too.
18432 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18435 * gst/apetag/Makefile.am:
18436 * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
18437 (gst_ape_demux_base_init), (gst_ape_demux_class_init),
18438 (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
18439 (gst_ape_demux_get_src_query_types),
18440 (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
18441 (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
18442 (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
18443 (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
18444 (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
18445 (gst_ape_demux_stream_data), (gst_ape_demux_loop),
18446 (gst_ape_demux_change_state):
18447 * gst/apetag/apedemux.h:
18448 * gst/apetag/apetag.c: (plugin_init):
18449 * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
18451 APE v1/2 tag reader plus typefind function.
18453 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18456 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
18457 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
18458 Remove hacks for older core. Require newer core version
18461 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18463 * gst/cdxaparse/Makefile.am:
18464 * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
18465 (gst_cdxaparse_class_init), (gst_cdxaparse_init),
18466 (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
18467 * gst/cdxaparse/gstcdxaparse.h:
18468 * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
18469 (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
18470 (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
18471 (gst_cdxastrip_get_src_query_types),
18472 (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
18473 (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
18474 (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
18475 (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
18476 * gst/cdxaparse/gstcdxastrip.h:
18477 SVCD/VCD header stripping separated from CDXA image parsing.
18478 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
18480 Add VCD/SVCD header typefinding for VCD/SVCD.
18481 * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
18482 (gst_vcdsrc_class_init), (gst_vcdsrc_init),
18483 (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
18484 (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
18485 (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
18486 (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
18487 (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
18488 (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
18489 (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
18490 (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
18491 (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
18492 * sys/vcd/vcdsrc.h:
18493 Fix up, add seeking, querying, URI interface. Works in totem now.
18495 2004-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
18500 === release 0.8.6 ===
18502 2004-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
18520 releasing 0.8.6, "IOU Love"
18522 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
18524 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18526 * gst/playback/gstplaybasebin.c:
18527 Fix unplayable files error handling. Fixes #158365
18529 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
18531 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18533 * gst/typefind/gsttypefindfunctions.c:
18534 Fix broken mp3 typefinding. Fixes #158375
18536 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
18538 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18540 * ext/ogg/gstoggdemux.c:
18541 Fix sync on broken files. Fixes #158976
18543 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
18545 patch by: Edward Hervey <bilboed@bilboed.com>
18547 * ext/libpng/gstpngenc.c:
18548 Copy over buffer properties. Fixes #158832
18550 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
18552 patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
18554 * ext/dvdread/dvdreadsrc.c:
18555 Fixes invalid reads (#158462)
18557 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
18559 * sys/v4l/gstv4lsrc.c:
18560 * sys/v4l/gstv4lsrc.h:
18561 * sys/v4l/v4lsrc_calls.c:
18562 Probe less and cache it. Fixes #159187.
18564 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
18566 * gst/videorate/gstvideorate.c:
18567 Handle all video formats. Fixes #159186.
18569 2004-11-16 Jan Schmidt <thaytan@mad.scientist.com>
18570 * gst/synaesthesia/gstsynaesthesia.c:
18571 (gst_synaesthesia_class_init), (gst_synaesthesia_init),
18572 (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
18573 (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
18574 (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
18575 (gst_synaesthesia_change_state), (plugin_init):
18576 Fix up synaesthesia to work under different samplerates/ buffer sizes.
18577 Force 320x200 output, as that's the only thing the underlying
18578 synaesthesia implementation supports. Still needs to be made
18581 2004-11-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18584 Fix mpeg2enc configure check (similar to mplex check below).
18586 2004-11-14 Koop Mast <kwm@rainbow-runner.nl>
18588 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18590 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18591 Fix for gcc-2.95 (fixes #158221).
18593 2004-11-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18595 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
18596 Re-add clock distribution hack (until new core is released).
18599 2004-11-13 Arwed v. Merkatz <v.merkatz@gmx.net>
18601 fix mplex configure check segfaulting on some systems (bug #140994)
18603 2004-11-13 Benjamin Otte <otte@gnome.org>
18605 * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
18607 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18608 do a wait when we enter the loop func with no data available to
18609 write instead of getting into an 100% CPU loop by just returning and
18610 being called again by the scheduler
18612 2004-11-13 Jan Schmidt <thaytan@mad.scientist.com>
18615 * ext/libvisual/visual.c: (gst_visual_get_type),
18616 (libvisual_log_handler), (gst_visual_getcaps),
18617 (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
18619 Update libvisual to 0.1.7. Link in the debug handling to gstreamer
18620 * ext/smoothwave/Makefile.am:
18621 * ext/smoothwave/demo-osssrc.c: (main):
18622 * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
18623 (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
18624 (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
18626 * ext/smoothwave/gstsmoothwave.h:
18627 Make gstsmoothwave a working element in the 20th century.
18629 * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
18630 Fix incorrect link function
18632 2004-11-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18634 * gst/volume/gstvolume.c:
18635 Allow buffer-frames=0.
18637 2004-11-12 Iain <iaingnome@gmail.com>
18639 * configure.ac: Check for polypaudio
18641 * ext/Makefile.am: Build the polyp dir
18643 * ext/polyp: The polypsink sources.
18645 2004-10-30 Iain <iaingnome@gmail.com>
18647 * gst/interleave/interleave.c (interleave_unlink): Change the src pads
18648 caps to reflect the new number of channels.
18650 2004-11-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18652 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18653 Fix for negotiation order problem. This would show when the
18654 ALSA loopfuction was called before any other function. ALSA
18655 wouldn't do anything because we're not negotiated yet, leading
18656 to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
18658 2004-11-11 Tim-Philipp Müller <t.i.m@zen.co.uk>
18660 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18662 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
18663 No warnings (#157986).
18665 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18667 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
18668 Prefer apev1/2 and id3v1 (at end of file) over musepack.
18670 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18672 * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
18673 Signal no-more-pads (so it works in playbin).
18675 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18677 * ext/musepack/gstmusepackreader.cpp:
18678 Workaround for older core.
18680 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18682 * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
18683 Actually test for odd width/height rather than testing whether
18684 a temporary variable that was 0 before we subtracted 1 is now
18685 not equal to zero (which it always is).
18687 2004-11-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18689 * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
18690 Fix compilation if HAVE_XVIDEO is not defined
18692 2004-11-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18694 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
18695 Fix compilation if HAVE_XVIDEO is not defined
18697 2004-11-11 Jan Schmidt <thaytan@mad.scientist.com>
18699 * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
18700 (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
18701 (gst_goom_change_state), (plugin_init):
18702 Use the bytestream adapter so goom doesn't depend on the input
18704 Add a debug category
18706 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18708 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
18709 Only set hardware parameters *after* negotiation. Before
18710 negotiation, it will set ANY and that seems to cause crashes
18711 (see e.g. #151288, #153227).
18713 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18715 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
18716 This seems to be antique leftover. It needs to pass error
18718 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
18719 (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
18720 (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
18721 (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
18722 Fix GstXOverlay implementation (#151059).
18724 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18726 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
18727 Don't assert (#157853).
18729 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18731 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
18732 Fix bytes/samples confustion.
18733 (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
18734 Fix for underrun (#144389).
18736 2004-11-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18738 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
18739 Disable halfway-seek for pending release (since it needs a new
18742 2004-11-09 Thomas Vander Stichele <thomas at apestaart dot org>
18744 * sys/v4l/gstv4lsrc.c:
18745 * sys/v4l/gstv4lsrc.h:
18746 * sys/v4l/v4lsrc_calls.c:
18747 add autoprobe-fps property so we can separate autoprobing parts
18749 2004-11-09 Thomas Vander Stichele <thomas at apestaart dot org>
18751 * sys/v4l/gstv4lsrc.c:
18752 * sys/v4l/v4lsrc_calls.c:
18753 initialise fourcc to catch unset fourcc's, and debug
18755 2004-11-09 Wim Taymans <wim@fluendo.com>
18757 * gst/playback/README:
18758 * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
18759 * gst/playback/gstplaybin.c: (gst_play_bin_init),
18760 (gst_play_bin_dispose), (gst_play_bin_set_property),
18761 (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
18762 (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
18763 (gst_play_bin_get_formats), (gst_play_bin_convert),
18764 (gst_play_bin_get_query_types), (gst_play_bin_query):
18765 Cleanups and some more documentation.
18767 2004-11-09 Jan Schmidt <thaytan@mad.scientist.com>
18769 * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
18770 (gst_cacasink_init), (gst_cacasink_chain):
18771 * ext/libcaca/gstcacasink.h:
18772 Cacasink inherits from VideoSink, so let that store the clock.
18774 2004-11-09 Wim Taymans <wim@fluendo.com>
18776 * gst/playback/README:
18777 * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
18778 (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
18779 (probe_triggered), (preroll_unlinked), (new_decoded_pad),
18780 (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
18781 * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
18783 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
18784 (gst_stream_info_is_mute), (gst_stream_info_set_property):
18785 * gst/playback/gststreaminfo.h:
18787 Only switch groups if all streams have muted (EOSed).
18788 Send Tags in sync with the stream playback instead of in
18789 the playback/preroll phase.
18790 Some cleanups, free the fakesrc elements.
18792 2004-11-09 Benjamin Otte <in7y118@public.uni-hamburg.de>
18794 * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
18795 buffer-frames property was missing
18796 * ext/arts/gst_arts.c:
18797 rate missing from sinkcaps
18798 * ext/audiofile/gstafparse.c:
18799 * ext/audiofile/gstafsink.c:
18800 * ext/audiofile/gstafsrc.c:
18801 * ext/swfdec/gstswfdec.c:
18802 int audio doesn't know buffer-frames
18803 * ext/cdparanoia/gstcdparanoia.c:
18804 int audio doesn't know chunksize either
18805 * ext/nas/nassink.c:
18806 it's endianness, not endianess
18807 * gst-libs/gst/audio/audio.h:
18808 make float standard pad template caps really describe float
18809 * gst/law/mulaw.c: (linear_factory):
18810 signed only, please
18811 * gst/mpegstream/gstdvddemux.c:
18812 widths of 20 are not valid
18814 2004-11-08 Thomas Vander Stichele <thomas at apestaart dot org>
18816 Submitted by: Luca Ferretti <elle.uca@infinito.it>
18822 2004-11-08 Wim Taymans <wim@fluendo.com>
18824 * gst/playback/README:
18825 * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
18826 * gst/playback/gstplaybasebin.c: (probe_triggered),
18827 (gst_play_base_bin_change_state):
18828 Updated README, added more comments for fixmes etc..
18830 2004-11-08 Wim Taymans <wim@fluendo.com>
18832 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
18833 We can remove this hack now.
18835 2004-11-08 Wim Taymans <wim@fluendo.com>
18837 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
18838 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
18839 (gst_videomixer_blend_buffers), (gst_videomixer_loop):
18840 Only mix AYUV for maximum quality.
18842 2004-11-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18844 * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
18845 (gst_ogg_demux_push), (gst_ogg_pad_push):
18846 Let's act as if we're synchronized now! :).
18847 * ext/theora/theoradec.c: (theora_dec_chain):
18850 2004-11-08 Wim Taymans <wim@fluendo.com>
18852 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
18853 (gst_alpha_set_property), (gst_alpha_sink_link),
18854 (gst_alpha_set_ayuv), (gst_alpha_set_i420),
18855 (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
18856 (gst_alpha_init_params), (gst_alpha_chain):
18857 Implement alpha functions for AYUV too, this increases
18858 accuracy quite a bit.
18860 2004-11-08 Wim Taymans <wim@fluendo.com>
18862 * gst/ffmpegcolorspace/avcodec.h:
18863 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18864 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
18865 (gst_ffmpegcsp_avpicture_fill):
18866 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18867 (gst_ffmpegcsp_caps_remove_format_info):
18868 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
18869 (shrink12), (img_get_alpha_info), (deinterlace_line),
18870 (deinterlace_line_inplace):
18871 * gst/ffmpegcolorspace/imgconvert_template.h:
18872 Added AYUV colorspace and handle RGBA a bit more respectful.
18874 2004-11-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18876 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
18877 Actually always send a discont (cornercase when resending the
18878 same serial-tagged chain twice).
18880 2004-11-08 Julien MOUTTE <julien@moutte.net>
18882 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
18883 (gst_ximagesink_finalize):
18884 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
18885 (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
18887 2004-11-08 Wim Taymans <wim@fluendo.com>
18889 * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
18890 Don't segfault on NULL data.
18892 2004-11-08 Wim Taymans <wim@fluendo.com>
18894 * gst/playback/gstdecodebin.c: (unlinked):
18895 * gst/playback/gstplay-marshal.list:
18896 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
18897 (gst_play_base_bin_init), (group_create), (get_active_group),
18898 (get_building_group), (group_destroy), (group_commit),
18899 (queue_overrun), (remove_groups), (add_stream), (unknown_type),
18900 (add_element_stream), (no_more_pads), (probe_triggered),
18901 (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
18902 (state_change), (setup_source), (gst_play_base_bin_get_property),
18903 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
18904 (gst_play_base_bin_link_stream),
18905 (gst_play_base_bin_get_streaminfo):
18906 * gst/playback/gstplaybasebin.h:
18907 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
18908 (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
18909 Add support for chained ogg files. Prepare for playlist
18910 support. This patch introduces the concept of pad groups, which
18911 together compose one playable media file.
18913 2004-11-07 David Schleef <ds@schleef.org>
18915 * testsuite/gst-lint: Check for pad templates that aren't statically
18918 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18922 * ext/musepack/Makefile.am:
18923 * ext/musepack/gstmusepackdec.cpp:
18924 * ext/musepack/gstmusepackdec.h:
18925 * ext/musepack/gstmusepackreader.cpp:
18926 * ext/musepack/gstmusepackreader.h:
18927 Add musepack decoder.
18928 * ext/faad/gstfaad.c: (gst_faad_base_init):
18929 Make pad templates static.
18930 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
18932 Add musepack typefinder, make mp3 typefinding work halfway stream,
18933 which doesn't actually work yet because id3demux doesn't implement
18936 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18938 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
18939 (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
18940 Fix interrupt event handling (#144436).
18942 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18944 * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
18947 2004-11-06 Tim-Philipp Müller <t.i.m@zen.co.uk>
18949 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18951 * ext/vorbis/vorbisenc.c: (raw_caps_factory):
18952 Fix weird caps (#157548).
18954 2004-11-06 Tim-Philipp Müller <t.i.m@zen.co.uk>
18956 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18958 * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
18959 Add missing NULL terminator (#157543).
18961 2004-11-05 Thomas Vander Stichele <thomas at apestaart dot org>
18963 * gst/tcp/gsttcp.h:
18964 * gst/tcp/gsttcpclientsink.c:
18965 * gst/tcp/gsttcpclientsrc.c:
18966 * gst/tcp/gsttcpserversink.c:
18967 * gst/tcp/gsttcpserversrc.c:
18968 ports can go up to 65535. Move common defines to gsttcp.h
18970 2004-11-05 Wim Taymans <wim@fluendo.com>
18972 * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
18973 (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
18974 Added two more colorspaces.
18976 2004-11-05 Wim Taymans <wim@fluendo.com>
18978 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18979 (gst_ffmpegcsp_avpicture_fill):
18980 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
18981 (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
18982 (img_convert), (deinterlace_line), (deinterlace_line_inplace):
18985 2004-11-05 Wim Taymans <wim@fluendo.com>
18987 * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
18988 (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
18989 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
18990 (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
18991 (gst_videomixer_loop):
18994 2004-11-05 Benjamin Otte <otte@gnome.org>
18996 * ext/mad/gstmad.c: (gst_mad_chain):
18997 don't overflow data buffer. Flush not needed sync data when syncing
19000 2004-11-04 Wim Taymans <wim@fluendo.com>
19002 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19003 (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
19004 (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
19005 (gst_alpha_init_params), (gst_alpha_chain),
19006 (gst_alpha_change_state):
19007 Updated the chroma keying algorithm with something more
19010 2004-11-03 Wim Taymans <wim@fluendo.com>
19012 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
19013 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
19014 (gst_videomixer_blend_buffers), (gst_videomixer_loop):
19015 Fix stride issues. Does not completely work for odd
19018 2004-11-03 Wim Taymans <wim@fluendo.com>
19020 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19021 (gst_alpha_chroma_key), (gst_alpha_chain):
19022 Fix stride issues. Does not completely work for odd
19025 2004-11-03 Christophe Fergeau <teuf@gnome.org>
19027 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
19028 * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
19031 2004-11-03 Wim Taymans <wim@fluendo.com>
19033 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19034 (gst_ffmpegcsp_avpicture_fill):
19035 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19037 * gst/ffmpegcolorspace/imgconvert_template.h:
19038 Use correct _fill function to get correct strides.
19040 2004-11-02 David Schleef <ds@schleef.org>
19042 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19043 (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
19044 (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
19045 Change all g_print()s to debugging. Add a bunch of consistency
19048 2004-11-02 Wim Taymans <wim@fluendo.com>
19050 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19051 (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
19052 (unlinked), (no_more_pads), (close_link):
19053 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
19054 (unknown_type), (add_element_stream), (new_decoded_pad),
19055 (removed_decoded_pad), (setup_source):
19056 * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
19057 (gst_stream_info_class_init), (gst_stream_info_init),
19058 (gst_stream_info_new), (gst_stream_info_dispose),
19059 (stream_info_mute_pad), (gst_stream_info_set_property),
19060 (gst_stream_info_get_property):
19061 * gst/playback/gststreaminfo.h:
19062 Fix playback of multiple files.
19063 a slightly different approach to handling dynamic pad removals.
19064 This one only looks at pads that we have linked.
19066 2004-11-01 Christophe Fergeau <teuf@gnome.org>
19068 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
19069 free" warning from libc.
19071 2004-11-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19073 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19074 (get_unconnected_element), (remove_starting_from), (pad_removed),
19076 Implement support for dynamic pad changing. We listen to "live"
19077 pad removals (i.e. while playing) and re-setup autoplugging
19078 after that. Playbasebin/playbin need some more work for this
19079 to finally work, but decodebin supports (and replugs) chained
19082 2004-11-02 Jan Schmidt <thaytan@mad.scientist.com>
19084 * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
19085 (gst_alsa_finalize):
19086 * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
19087 (gst_cdaudio_finalize):
19088 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
19089 (cdparanoia_finalize):
19090 * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
19091 * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
19092 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
19093 (dvdreadsrc_finalize):
19094 * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
19095 (gst_flacdec_finalize):
19096 * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
19097 (gst_flacenc_finalize):
19098 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
19099 (gst_gnomevfssink_finalize):
19100 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
19101 (gst_gnomevfssrc_finalize):
19102 * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
19103 (gst_fameenc_finalize):
19104 * ext/nas/nassink.c: (gst_nassink_class_init),
19105 (gst_nassink_finalize):
19106 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
19107 (gst_sdlvideosink_class_init):
19108 * ext/sndfile/gstsf.c: (gst_sf_dispose):
19109 * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
19110 * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
19111 * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
19112 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
19113 (gst_x_window_listener_dispose):
19114 * gst/audioscale/gstaudioscale.c:
19115 * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
19116 (play_on_demand_finalize):
19117 * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
19118 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
19119 * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
19120 (cdplayer_finalize):
19121 * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
19122 (gst_glimagesink_class_init):
19123 * sys/oss/gstosselement.c: (gst_osselement_class_init),
19124 (gst_osselement_finalize):
19125 * sys/oss/gstosssink.c: (gst_osssink_dispose):
19126 * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
19127 * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
19128 Fixes a bunch of problems with finalize and dispose functions,
19129 either assumptions that dispose is only called once, or not calling
19130 the parent class dispose/finalize function
19132 2004-11-01 Stefan Kost <ensonic@users.sf.net>
19134 * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
19135 added two api precondition guards
19136 use g_strdup with getenv to fix crash when using ENVVAR
19138 2004-11-01 Jan Schmidt <thaytan@mad.scientist.com>
19139 * ext/esd/esdsink.c: (gst_esdsink_class_init),
19140 (gst_esdsink_finalize):
19141 Use a finalize function, not dispose, and more importantly,
19142 call the parent class finalize function too
19144 2004-11-01 Johan Dahlin <johan@gnome.org>
19146 * ext/ogg/gstoggdemux.c:
19147 * gst/tags/gstvorbistag.c:
19150 2004-10-31 Benjamin Otte <otte@gnome.org>
19152 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
19153 lotsa memleaks today. But they're all small...
19155 2004-10-31 Benjamin Otte <otte@gnome.org>
19157 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19158 another memleak crushed
19160 2004-10-31 Benjamin Otte <otte@gnome.org>
19162 * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
19165 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19167 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19168 Hack to prevent crash when going to READY inside signal handler
19169 while this function is active.
19171 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19173 * gst/ffmpegcolorspace/Makefile.am:
19174 * gst/ffmpegcolorspace/avcodec.h:
19175 * gst/ffmpegcolorspace/common.h:
19176 * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
19177 * gst/ffmpegcolorspace/dsputil.h:
19178 * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
19179 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19180 (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
19181 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
19182 (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
19183 (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
19184 (gst_ffmpegcsp_avpicture_fill):
19185 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
19186 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19187 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
19188 (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
19189 (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
19190 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
19191 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
19192 (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
19193 * gst/ffmpegcolorspace/imgconvert.c:
19194 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
19195 (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
19196 (avpicture_get_size), (avcodec_get_pix_fmt_loss),
19197 (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
19198 (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
19199 (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
19200 (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
19201 (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
19202 (img_convert_init), (img_apply_table), (shrink41), (shrink21),
19203 (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
19204 (grow21), (grow22), (grow41), (grow44), (conv411),
19205 (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
19206 (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
19207 (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
19208 (avpicture_free), (is_yuv_planar), (img_convert),
19209 (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
19210 (deinterlace_line_inplace), (deinterlace_bottom_field),
19211 (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
19212 * gst/ffmpegcolorspace/imgconvert_template.h:
19213 * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
19214 * gst/ffmpegcolorspace/mmx.h:
19215 * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
19216 (av_fast_realloc), (av_mallocz_static), (av_free_static),
19217 (av_freep), (avcodec_get_context_defaults),
19218 (avcodec_alloc_context), (avcodec_init):
19219 Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
19220 handling plus update from ffmpeg CVS. Large clean-up.
19222 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19224 * gst/playback/Makefile.am:
19225 We need the marshallers for decodebin, too.
19227 2004-10-30 David Schleef <ds@schleef.org>
19229 * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
19230 quicktime typefinding work with 64-bit offsets.
19232 2004-10-30 Jan Schmidt <thaytan@mad.scientist.com>
19234 * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
19235 Set EOS on the element when processing an EOS event.
19236 * ext/speex/gstspeexdec.h:
19237 * ext/speex/gstspeexenc.h:
19238 Only keep a const ptr to the mode
19239 * gst-libs/gst/riff/riff-media.c:
19240 (gst_riff_create_audio_caps_with_data),
19241 (gst_riff_create_audio_template_caps):
19242 Allow WMAV3, with up to 6 channels.
19243 * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
19244 Don't call gst_pad_set_event_function on a sink pad.
19245 * gst/mpegstream/gstdvddemux.c:
19246 (gst_dvd_demux_get_subpicture_stream),
19247 (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
19248 Copy the explicit caps that were set across to the cur_* pads,
19249 instead of trying to use a possibly non-existent negotiated caps.
19250 Reset the type of subpicture pads to UNKNOWN after calling
19251 init_stream, so that the caps get set.
19253 2004-10-29 Martin Pitt <martin.pitt@canonical.com>
19255 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19257 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
19258 Don't touch buffer if it is of size 0 (fixes #151064).
19260 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19262 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
19263 Synchronized discont handling.
19265 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19267 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
19268 (gst_ogg_demux_push):
19269 Make seeking sort-of exact again (fixes #156387).
19271 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19273 * gst/playback/gstplaybasebin.c: (unknown_type),
19274 (add_element_stream), (new_decoded_pad),
19275 (gst_play_base_bin_change_state):
19276 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
19277 (gst_stream_info_init), (gst_stream_info_new),
19278 (gst_stream_info_dispose), (gst_stream_info_get_property):
19279 * gst/playback/gststreaminfo.h:
19280 Make caps explicitely available. Makes testing for unsupported
19281 types possible. Improves error reporting.
19283 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19285 * gst/audioconvert/gstaudioconvert.c:
19286 (gst_audio_convert_buffer_to_default_format):
19287 Really don't touch read-only buffers (#156563).
19289 2004-10-29 Sebastien Cote <sc5@hermes.usherb.ca>
19291 Reviewd by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19293 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
19294 Fix memleak (#155223).
19296 2004-10-29 Wim Taymans <wim@fluendo.com>
19298 * gst/tcp/.cvsignore:
19299 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
19300 (gst_multifdsink_class_init), (gst_multifdsink_init),
19301 (gst_multifdsink_add), (gst_multifdsink_remove),
19302 (gst_multifdsink_remove_client_link), (is_sync_frame),
19303 (gst_multifdsink_new_client),
19304 (gst_multifdsink_handle_client_write),
19305 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
19306 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
19307 (gst_multifdsink_get_property):
19308 * gst/tcp/gstmultifdsink.h:
19309 Added burst on connect sync_method, deprecated sync_clients,
19310 streamlined the sync code some more.
19312 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19314 * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
19315 (gst_play_base_bin_change_state):
19316 Improve error reporting.
19318 2004-10-28 Wim Taymans <wim@fluendo.com>
19320 * gst/tcp/Makefile.am:
19321 * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
19322 * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
19323 (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
19324 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
19325 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
19326 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
19328 Added more locks around fdset structures. Fixed/reworked
19329 the poll array resizing code.
19330 Added stress test for fdset.
19332 2004-10-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19334 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
19337 2004-10-28 Benjamin Otte <otte@gnome.org>
19339 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
19340 fix link function to always query channels and query width for
19344 * gst/equalizer/Makefile.am:
19345 * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
19346 (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
19347 (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
19348 (arg_to_scale), (setup_filter),
19349 (gst_iir_equalizer_compute_frequencies),
19350 (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
19351 (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
19355 2004-10-27 Thomas Vander Stichele <thomas at apestaart dot org>
19357 Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
19361 Added Norwegian Bokmaal translation
19363 2004-10-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19365 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
19366 Don't break on options (fixes #156488).
19368 2004-10-27 Thomas Vander Stichele <thomas at apestaart dot org>
19371 * ext/cdaudio/Makefile.am:
19373 fix build on older automake
19375 2004-10-26 Wim Taymans <wim@fluendo.com>
19377 * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
19378 (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
19379 Allow a little margin when negotiating the framerate.
19381 2004-10-26 Stefan Kost <ensonic@users.sf.net>
19383 * gst/level/gstlevel.c:
19384 synchonised naming of pads and pad-templates
19386 2004-10-26 Wim Taymans <wim@fluendo.com>
19388 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
19389 (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
19390 (_find_streams_check), (gst_ogg_demux_push):
19391 Fix EOS again. Needs to be done in a better way. We should not
19392 remove the pad if there is no new chained stream.
19394 2004-10-26 Iain <iaingnome@gmail.com>
19396 * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
19397 * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
19399 * gst/interleave/interleave.c (interleave_class_init): Hook up release
19401 (interleave_release_pad): Remove the pad.
19402 * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
19403 * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
19405 * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
19407 (gst_xvimagesink_xcontext_clear): Free the xcontext.
19408 (gst_xvimagesink_finalize): Free the par.
19410 2004-10-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19412 * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
19413 (gst_avimux_stop_file):
19414 First calculate the rate, and only then use it. Hdr.rate is a
19415 multiple and not a derivative of hdr.scale. Scale is not the
19416 same as blockalign but is solely related to rate.
19418 2004-10-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19420 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
19421 (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
19424 2004-10-25 James Henstridge <james@jamesh.id.au>
19426 Reviewed by: David Schleef <ds@schleef.org>
19428 * examples/gstplay/player.c: (got_stream_length), (main):
19429 * examples/seeking/cdplayer.c: (update_scale):
19430 * examples/seeking/seek.c: (format_value), (update_scale):
19431 * examples/seeking/spider_seek.c: (format_value), (update_scale),
19433 Build fixes on AMD64.
19435 2004-10-25 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19437 reviewed by: Ronald Bultje <rbultje at gnome dot org>
19439 * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
19440 Fix for some v4l cards which hang in v4lsrc
19442 2004-10-25 Wim Taymans <wim@fluendo.com>
19444 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
19445 (gst_ogg_demux_push), (gst_ogg_chains_clear):
19446 Make sure to remove the pad when a new chain is
19447 encountered. Set some vars to NULL so we don't try
19448 to reference freed memory.
19450 2004-10-25 Wim Taymans <wim@fluendo.com>
19452 * examples/seeking/Makefile.am:
19453 * examples/seeking/cdplayer.c: (update_scale):
19454 * examples/seeking/chained.c: (unlinked), (new_pad), (main):
19455 * examples/seeking/playbin.c: (make_playerbin_pipeline),
19456 (format_value), (update_scale), (iterate), (start_seek),
19457 (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
19458 (print_usage), (main):
19459 Added some more examples, update others.
19461 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19463 * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
19464 * ext/speex/gstspeexdec.c: (speex_dec_chain):
19465 * ext/theora/theoradec.c: (theora_dec_chain):
19466 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
19467 Add codec-name metadata.
19469 2004-10-25 Takao Fujiwara <Takao.Fujiwara@Sun.COM>
19471 Reviewd by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19473 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
19474 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
19475 * ext/alsa/gstalsamixertrack.h:
19477 ALSA mixer track label internationalization (#154054).
19479 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19481 * ext/theora/theoradec.c: (theora_dec_chain):
19482 Export bitrate as metadata.
19484 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19486 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
19487 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
19488 * ext/alsa/gstalsamixertrack.h:
19489 Fix names, fix loop.
19491 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19493 * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
19494 (speex_dec_convert):
19495 sinkconvert function so oggdemux can get the file length (totem).
19497 2004-10-25 James Morrison <ja2morri@csclub.uwaterloo.ca>
19499 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19501 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
19502 Don't push incomplete packets.
19503 * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
19504 Fix MPEG-4 audio typefinding.
19506 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19508 * sys/v4l/Makefile.am:
19509 * sys/v4l/gstv4l.c: (plugin_init):
19510 * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
19511 (gst_v4lelement_init), (gst_v4lelement_dispose),
19512 (gst_v4lelement_change_state):
19513 * sys/v4l/gstv4lelement.h:
19514 * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
19515 (gst_v4l_xoverlay_close), (idle_refresh),
19516 (gst_v4l_xoverlay_set_xwindow_id):
19517 * sys/v4l/gstv4lxoverlay.h:
19518 * sys/v4l/v4l-overlay_calls.c:
19519 * sys/v4l/v4l_calls.h:
19520 * sys/v4l2/Makefile.am:
19521 * sys/v4l2/gstv4l2.c: (plugin_init):
19522 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
19523 (gst_v4l2element_init), (gst_v4l2element_dispose),
19524 (gst_v4l2element_change_state):
19525 * sys/v4l2/gstv4l2element.h:
19526 * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
19527 (gst_v4l2_xoverlay_close), (idle_refresh),
19528 (gst_v4l2_xoverlay_set_xwindow_id):
19529 * sys/v4l2/gstv4l2xoverlay.h:
19530 * sys/v4l2/v4l2-overlay_calls.c:
19531 * sys/v4l2/v4l2_calls.h:
19532 Remove client-side overlay handling, use the X-server v4l plugin
19533 for that. Nicer overlay, less code. Also make the plugin
19534 compileable without X (but then without overlay, obviously).
19535 Makes xwindowlistener obsolete, should we remove that?
19537 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19539 * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
19540 (gst_osssrc_src_query):
19541 * sys/oss/gstosssrc.h:
19542 OK, so people want offset in DEFAULT. This time, actually fix all
19544 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
19547 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19549 * gst/asfdemux/gstasfmux.c:
19550 * gst/avi/gstavimux.c:
19553 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19555 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
19556 Fix properties (channel, norm, frequency).
19558 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19560 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
19562 * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
19565 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19567 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
19570 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19572 * sys/v4l2/gstv4l2element.h:
19573 Yet Another Hack (tm) for kernel header borkedness.
19574 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
19575 (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
19576 (gst_v4l2src_link), (gst_v4l2src_getcaps),
19577 (gst_v4l2src_change_state):
19578 * sys/v4l2/gstv4l2src.h:
19579 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
19580 (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
19581 Fix caps, keep track of state, work.
19583 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19585 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
19588 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19590 * sys/oss/gstosssrc.c: (gst_osssrc_get):
19591 Don't mix bytes and samples.
19593 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19595 * ext/ogg/gstoggmux.c:
19596 Basic pad template which accepts OGM tracks, speex, flac, vorbis
19597 and theora. Any is incorrect.
19598 * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
19600 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
19601 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
19602 (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
19603 (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
19604 * sys/v4l/gstv4lmjpegsrc.h:
19605 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
19606 (gst_v4lsrc_change_state):
19607 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
19608 (gst_v4lmjpegsrc_capture_stop):
19609 Fix caps. Keep track of internal state. Work.
19611 2004-10-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19614 Fix the build fixes.
19616 2004-10-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19618 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
19619 (gst_ogg_demux_src_event), (_find_chain_seek),
19620 (gst_ogg_pad_push):
19621 Check for pad availability before using it.
19622 * ext/ogg/gstoggdemux.c: (_find_chain_process):
19623 Fix parsing of chained ogg. Needs more work on the decoder side.
19625 2004-10-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
19627 * gst/spectrum/Makefile.am:
19628 * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
19630 Fix demo and reenable it. Yes, I'm currently playing with audio
19633 2004-10-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19635 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19636 We love it if files that start at zero work too...
19638 2004-10-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19640 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
19641 Handle files with missing EOS headers.
19643 2004-10-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19645 * gst/tcp/gsttcpserversink.c:
19646 (gst_tcpserversink_handle_server_read),
19647 (gst_tcpserversink_init_send):
19648 Zero some variables first (need for accept not to return EINVAL)
19650 2004-10-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19652 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
19653 (gst_ogg_demux_src_event), (gst_ogg_pad_push):
19654 * ext/theora/theoradec.c: (theora_dec_sink_convert),
19655 (theora_dec_chain):
19656 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
19657 (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
19658 Seeking and querying finetune.
19660 2004-10-20 Thomas Vander Stichele <thomas at apestaart dot org>
19664 * ext/raw1394/Makefile.am:
19667 2004-10-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19669 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
19671 * gst/playback/Makefile.am:
19672 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
19673 * gst/playback/gstplay-marshal.list:
19674 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
19677 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19679 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
19682 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19684 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
19685 (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
19686 (gst_ogg_pad_push):
19687 Yay for non-lineair granulepos in theora.
19689 2004-10-18 Wim Taymans <wim@fluendo.com>
19691 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
19692 (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
19693 * ext/dv/gstdvdec.h:
19694 Make sure we renegotiate aspect ratio when the camera switches.
19696 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19698 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
19699 (gst_ogg_demux_src_event), (gst_ogg_pad_push):
19701 * ext/theora/theoradec.c: (theora_dec_chain):
19702 Skip headers. Bad idea for chained ogg, but fixes seeking.
19704 2004-10-18 Wim Taymans <wim@fluendo.com>
19707 I swear, this is the last time I touch this.
19709 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19711 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
19712 (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
19713 (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
19715 * ext/theora/theoradec.c: (theora_dec_sink_convert):
19716 Time-to-default conversion.
19717 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
19718 Don't error on unknown packets, just skip. We should probably
19719 read them if we want to support chained ogg.
19721 2004-10-18 Wim Taymans <wim@fluendo.com>
19724 Added cdaudio to wrong list.
19726 2004-10-18 Wim Taymans <wim@fluendo.com>
19731 2004-10-18 Wim Taymans <wim@fluendo.com>
19733 * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
19734 (gst_dvdec_video_link), (gst_dvdec_push):
19735 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
19736 (gst_smokeenc_resync), (gst_smokeenc_chain):
19737 Fix mimetype on smoke encoder.
19738 Add aspect ratio to dvdec. Not sure if these
19739 values are correct though....
19741 2004-10-18 Wim Taymans <wim@fluendo.com>
19743 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
19744 Fix vorbis property descriptions and ranges.
19746 2004-10-18 Wim Taymans <wim@fluendo.com>
19748 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
19749 Really do nothing when no data is available.
19750 Go to the playing state when the stream is not seekable
19751 instead of failing.
19753 2004-10-18 Wim Taymans <wim@fluendo.com>
19755 * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
19756 (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
19757 (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
19758 (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
19759 (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
19760 Added uri handler for cd://
19763 2004-10-18 Wim Taymans <wim@fluendo.com>
19765 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19766 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
19767 (try_to_link_1), (no_more_pads), (close_link), (type_found):
19768 * gst/playback/gstplaybasebin.c: (gen_preroll_element),
19769 (remove_prerolls), (unknown_type), (add_element_stream),
19770 (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
19771 (gst_play_base_bin_remove_element),
19772 (gst_play_base_bin_link_stream):
19773 * gst/playback/gstplaybin.c: (gen_video_element),
19774 (gen_vis_element), (remove_sinks), (setup_sinks):
19775 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
19776 (gst_stream_info_get_type), (gst_stream_info_class_init),
19777 (gst_stream_info_init), (gst_stream_info_new),
19778 (gst_stream_info_dispose), (stream_info_mute_pad),
19779 (gst_stream_info_set_property), (gst_stream_info_get_property):
19780 * gst/playback/gststreaminfo.h:
19781 Add sink padtemplate to decodebin.
19782 Added some more comments.
19783 Make queue size configurable in playbasebin.
19784 Added possibility to use elements as sinks (ex cdaudio).
19786 2004-10-15 Wim Taymans <wim@fluendo.com>
19788 * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
19789 (gst_speexenc_chain):
19790 Fix speex timestamps so that it gets muxed properly.
19792 2004-10-15 Wim Taymans <wim@fluendo.com>
19794 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
19795 (gst_dv1394src_base_init), (gst_dv1394src_class_init),
19796 (gst_dv1394src_init), (gst_dv1394src_dispose),
19797 (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
19798 (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
19799 (gst_dv1394src_event), (gst_dv1394src_get_formats),
19800 (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
19801 (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
19802 (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
19803 (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
19804 * ext/raw1394/gstdv1394src.h:
19805 Added conversion/query functions.
19806 Update buffer timestamps,
19808 Added uri dv:// so it might play from the firewire in playbin.
19809 Fix a possible leak.
19812 2004-10-15 Wim Taymans <wim@fluendo.com>
19814 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
19815 (gst_dv1394src_init), (gst_dv1394src_set_property),
19816 (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
19817 (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
19818 * ext/raw1394/gstdv1394src.h:
19819 Added AV/C VTR control support needed for some cameras.
19820 Added automatic port detection.
19821 Added properties for selecting the channel.
19822 The configure.ac script is not yet updated to reflect the
19823 new libavc1394 and librom1394 dependencies.
19825 2004-10-15 Wim Taymans <wim@fluendo.com>
19827 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19828 (qtdemux_parse), (gst_qtdemux_handle_esds):
19829 An esds box is not a container.
19830 Fix parsing of mp4v boxes.
19831 Do not try to renegotiate fps for each frame. Need to
19832 find a better method. This should fix mp4 playback.
19834 2004-10-14 David Schleef <ds@schleef.org>
19836 * configure.ac: update for swfdec-0.3 and liboil-0.2
19837 * ext/swfdec/gstswfdec.c: update for swfdec-0.3
19838 * ext/swfdec/gstswfdec.h: same
19839 * gst/videofilter/gstvideobalance.c: update for liboil-0.2
19840 * gst/videotestsrc/videotestsrc.c: same
19842 2004-10-14 Wim Taymans <wim@fluendo.com>
19844 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
19845 (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
19846 (is_sync_frame), (gst_multifdsink_new_client),
19847 (gst_multifdsink_handle_client_write),
19848 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
19849 (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
19850 Turn warnings into info.
19851 Don't allow a state change in the streaming thread.
19853 2004-10-14 Thomas Vander Stichele <thomas at apestaart dot org>
19855 * ext/vorbis/oggvorbisenc.c:
19856 * ext/vorbis/vorbisdec.c:
19857 fix template sample rate
19859 2004-10-13 Wim Taymans <wim@fluendo.com>
19861 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
19862 Decoding the header first fixes some problems in resyncing
19865 2004-10-12 Wim Taymans <wim@fluendo.com>
19867 * gst/playback/gstplaybin.c: (gen_video_element),
19868 (gen_vis_element), (remove_sinks), (setup_sinks):
19869 Added vis plugin support, need to configure the vis
19870 element to activate it.
19872 2004-10-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19874 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
19875 (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
19877 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
19878 (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
19879 (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
19880 (gst_avi_demux_stream_index), (gst_avi_demux_skip),
19881 (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
19882 (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
19883 * gst/avi/gstavidemux.h:
19884 Support for openDML-2.0 indx/ix## chunks. Support for broken index
19885 recovery (where, if part of the index is broken, we will still read
19886 the rest of the index and recover the broken part by stream
19887 scanning). More broken media support. EOS workarounds. General AVI
19888 braindamage headache recovery. Aspirin included.
19890 2004-10-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19892 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
19893 (cdparanoia_event), (cdparanoia_query):
19894 Get rid of hideous lead-in.
19896 2004-10-11 Wim Taymans <wim@fluendo.com>
19898 * gst/playback/gstplaybasebin.c: (setup_source):
19899 Wrong var used to get g_list_next.
19901 2004-10-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19903 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
19904 (cdparanoia_get), (cdparanoia_open):
19905 Report discid as metadata, add duration.
19907 2004-10-11 Wim Taymans <wim@fluendo.com>
19909 * gst/playback/gstplaybasebin.c: (setup_source):
19910 Cleanup the previous pipeline a little earlier for the
19911 case that a source element provides raw data.
19913 2004-10-11 Benjamin Otte <otte@gnome.org>
19915 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
19916 reset v1 tag offset when there is no v1 tag. Fixes id3demux always
19917 consuming the last 128 bytes, even though it was valid mp3 data.
19919 2004-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19921 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
19922 (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
19923 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
19924 Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
19926 2004-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19928 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
19929 Fix for webcams that support only specific width or height
19931 2004-10-09 Tim-Philipp Müller <t.i.m@zen.co.uk>
19933 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19935 * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
19936 Fix wrong discont event setup (fixes #154967).
19938 2004-10-09 Sebastien Cote <sc5@hermes.usherb.ca>
19940 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19942 * gst/auparse/gstauparse.c: (gst_auparse_chain):
19943 Error out on invalid data (fixes #154807).
19945 2004-10-09 Tim-Philipp Müller <t.i.m@zen.co.uk>
19947 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19949 * ext/dvdread/dvdreadsrc.c: (_read):
19950 Make titles > 0 work again (fixes #154834).
19952 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19954 * gst-libs/gst/riff/riff-media.c:
19955 (gst_riff_create_video_template_caps):
19956 WMV3 missing in template caps.
19958 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19960 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
19961 OK, so the original code was too strict. It makes random AVI files
19962 hang for seconds upon opening, which is unacceptable and is far
19963 beyond the original goal of getting multiple chunks for one-chunk
19964 sounc stream files. So now do just that.
19966 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19968 * gst/playback/gstplaybasebin.c: (setup_source),
19969 (gst_play_base_bin_change_state):
19970 Actually clean up streaminfo if output fails. This would trigger
19971 if, for example, there was no CD in the drive. No preroll, so
19972 a streaminfo structure is created, but the subsequent state change
19973 of the thread fails.
19974 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
19975 Don't change state if parent failed.
19977 2004-10-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19979 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
19980 (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
19981 (gen_video_element), (remove_sinks):
19982 Add small bits of code for screenshot handling.
19984 2004-10-08 Wim Taymans <wim@fluendo.com>
19986 * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
19987 (gen_video_element), (gen_audio_element), (setup_sinks):
19988 Don't assume the user provided sinks are named "sink"...
19990 2004-10-08 Wim Taymans <wim@fluendo.com>
19992 * gst/playback/gstplaybasebin.c: (gen_preroll_element),
19993 (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
19994 (gst_play_base_bin_link_stream):
19995 Do not try to autoplug sources that generate raw streams like
19997 disconnect the preroll overrun signal when we don't need it anymore.
19999 2004-10-08 Milosz Derezynski <internalerror.rez@fhtw-berlin.de>
20001 * ext/cdparanoia/gstcdparanoia.c: (_do_init),
20002 Added reworked patch from #154903 from milosz derezynski (deadchip).
20004 2004-10-08 Wim Taymans <wim@fluendo.com>
20006 * ext/cdparanoia/gstcdparanoia.c: (_do_init),
20007 (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
20008 (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
20009 (cdparanoia_convert), (cdparanoia_uri_get_type),
20010 (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
20011 (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
20012 * ext/cdparanoia/gstcdparanoia.h:
20013 This adds the cdda://<tracknum> uri.
20015 2004-10-08 Wim Taymans <wim@fluendo.com>
20017 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
20018 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20019 (try_to_link_1), (no_more_pads), (close_link), (type_found):
20020 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
20021 (unknown_type), (gst_play_base_bin_remove_element),
20022 (gst_play_base_bin_link_stream):
20023 * gst/playback/gstplaybasebin.h:
20024 * gst/playback/gstplaybin.c: (gst_play_bin_init),
20025 (gst_play_bin_set_property), (gen_video_element),
20026 (gen_audio_element), (setup_sinks):
20027 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
20028 (gst_stream_info_get_type), (gst_stream_info_class_init),
20029 (gst_stream_info_init), (gst_stream_info_new),
20030 (gst_stream_info_dispose), (stream_info_mute_pad),
20031 (gst_stream_info_set_property), (gst_stream_info_get_property):
20032 * gst/playback/gststreaminfo.h:
20033 Reuse the audio and video bins.
20034 Some internal cleanups in the stream selection code.
20036 2004-10-08 Julien MOUTTE <julien@moutte.net>
20038 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20039 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
20040 * sys/ximage/ximagesink.h:
20041 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
20042 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
20043 * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
20044 not coming from those elements. Moreover these elements should not keep
20045 the xid they have been given when in NULL state.
20047 2004-10-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20049 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20050 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
20051 * sys/ximage/ximagesink.h:
20052 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
20053 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
20054 * sys/xvimage/xvimagesink.h:
20055 Actually only create a new toplevel window if we're not gonna
20056 embed it right after.
20058 2004-10-07 Wim Taymans <wim@fluendo.com>
20060 * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
20061 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
20062 * gst/playback/gstplaybin.c: (setup_sinks):
20063 Implement muting/unmuting of streams, mute streams that are not
20066 2004-10-07 Wim Taymans <wim@fluendo.com>
20068 * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
20070 Added lame audio/x-ac3 typefind function.
20072 2004-10-06 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
20077 === release 0.8.5 ===
20079 2004-10-06 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
20084 releasing 0.8.5, "Take You On"
20086 2004-10-06 Wim Taymans <wim@fluendo.com>
20088 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20089 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
20090 (no_more_pads), (close_link), (type_found):
20091 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20092 * gst/playback/gstplaybin.c: (gen_video_element):
20093 Do not signal the no_more_pads after the first pad when
20094 we are plugging a non dynamic element with multiple
20095 output pads (like swfdec, dvdec, ...).
20097 2004-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
20100 bump for prerelease
20102 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20104 * gst/wavparse/gstwavparse.c:
20105 add ATRAC3 to STATIC CAPS to fix a warning
20107 * gst/matroska/ebml-read.c:
20108 * gst-libs/gst/riff/riff-read.c:
20111 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20113 * gst-libs/gst/riff/riff-media.c:
20114 generate caps for ATRAC3 audio streams
20116 * gst/realmedia/rmdemux.c:
20117 generate caps for ATRAC3 audio streams
20119 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20121 * gst/wavparse/Makefile.am
20122 * gst/wavparse/riff.h
20123 * gst/wavparse/wavparse.vcproj
20124 riff.h removal (unused and duplication with riff-ids.h)
20126 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20128 * gst/wavparse/gstwavparse.h
20129 remove duplicated defines for audio codec codes
20131 * gst-libs/gst/riff/riff-ids.h
20132 * gst/wavenc/riff.h:
20133 add "4CC" code for ATRAC3 audio streams
20134 add "4CC" code for ITU_G721_ADPCM (unused for now)
20136 2004-10-06 Wim Taymans <wim@fluendo.com>
20138 * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
20139 Actually _do_ negotiation. Pass gdouble as arg instead
20140 of guint64 for the framerate.
20142 2004-10-06 Wim Taymans <wim@fluendo.com>
20144 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20145 (find_compatibles), (close_pad_link), (try_to_link_1),
20146 (no_more_pads), (close_link), (type_found):
20147 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20148 * gst/playback/gstplaybin.c: (gen_video_element),
20149 (gen_audio_element):
20150 Set state on newly added element to READY so that negotiation
20152 Addes some more debug info.
20153 Do not try to plug pads with multiple caps structures or ANY
20154 because it is too dangerous since we do not do dynamic
20157 2004-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
20159 written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
20163 add Oriya translation
20165 2004-10-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20167 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20168 Prevent overwrite of size member. Makes audio sound crappy.
20170 2004-10-05 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20172 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
20173 Add rmvb to the list of known RealMedia extensions
20175 2004-10-05 Wim Taymans <wim@fluendo.com>
20177 * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
20178 (mngdec_openstream), (mngdec_closestream),
20179 (mngdec_handle_sink_event), (mngdec_readdata),
20180 (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
20181 (mngdec_getcanvasline), (mngdec_refresh),
20182 (gst_mngdec_change_state):
20183 Set the framerate correctly.
20185 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20187 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20188 There was something wrong with the index massaging.
20190 2004-10-04 Wim Taymans <wim@fluendo.com>
20192 * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
20193 * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
20194 (gst_smokedec_chain):
20195 * ext/jpeg/gstsmokedec.h:
20196 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
20197 (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
20198 * ext/jpeg/gstsmokeenc.h:
20199 * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
20200 (smokecodec_decode_new), (smokecodec_info_free),
20201 (smokecodec_set_quality), (smokecodec_get_quality),
20202 (smokecodec_set_threshold), (smokecodec_get_threshold),
20203 (smokecodec_set_bitrate), (smokecodec_get_bitrate),
20204 (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
20205 (smokecodec_encode), (smokecodec_parse_id),
20206 (smokecodec_parse_header), (smokecodec_decode):
20207 * ext/jpeg/smokecodec.h:
20208 * ext/jpeg/smokeformat.h:
20209 Updated smoke, new bitstream, allows embedding in ogg.
20211 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20213 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
20214 Fix seeking in some files. All this code is no longer needed (and
20215 actually breaks stuff) because we now synchronize the full index
20216 right when reading the header.
20218 2004-10-04 Wim Taymans <wim@fluendo.com>
20221 configure update for libmng.
20223 2004-10-04 Wim Taymans <wim@fluendo.com>
20225 * ext/libmng/Makefile.am:
20226 * ext/libmng/gstmng.c: (plugin_init):
20227 * ext/libmng/gstmng.h:
20228 * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
20229 (gst_mngdec_base_init), (gst_mngdec_class_init),
20230 (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
20231 (gst_mngdec_loop), (gst_mngdec_get_property),
20232 (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
20233 (mngdec_closestream), (mngdec_handle_sink_event),
20234 (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
20235 (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
20236 (gst_mngdec_change_state):
20237 * ext/libmng/gstmngdec.h:
20238 * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
20239 (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
20240 (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
20241 (gst_mngenc_chain), (gst_mngenc_get_property),
20242 (gst_mngenc_set_property):
20243 * ext/libmng/gstmngenc.h:
20244 Added basic MNG decoder. Needs more work. The encoder does
20247 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20249 * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
20250 (gst_rmdemux_loop), (gst_rmdemux_add_stream),
20251 (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
20252 Don't hang on length=0 chunks. Some negotiation fixes. Signal
20255 2004-10-04 Thomas Vander Stichele <thomas at apestaart dot org>
20258 you need at least 1.0.4 of speex
20260 2004-10-04 Iain <iaingnome@gmail.com>
20262 * ext/speex/gstspeexdec.h: Revert the includes changes.
20264 * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
20266 2004-09-30 Iain <iaingnome@gmail.com>
20268 * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
20269 found during init or set as a property instead of hardcoding /dev/audio
20271 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20273 * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
20274 (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
20275 (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
20276 (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
20277 (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
20278 (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
20279 (gst_rmdemux_dump_data):
20280 Use debug category, fix EOS handling. filesrc ! rmdemux now
20283 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20285 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
20286 (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
20287 (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
20288 Improve allocation, cutting and sorting of the index. How takes a
20289 few seconds instead of minutes.
20291 2004-10-03 Christophe Fergeau <teuf@gnome.org>
20293 * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
20296 2004-10-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20298 * gst-libs/gst/riff/riff-media.c:
20299 (gst_riff_create_video_caps_with_data),
20300 (gst_riff_create_video_template_caps):
20301 Add wing commander format mimetype/fourccs.
20302 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20303 Don't crash if some value is 0.
20305 2004-10-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20307 * gst-libs/gst/riff/riff-media.c:
20308 (gst_riff_create_video_caps_with_data),
20309 (gst_riff_create_video_template_caps):
20310 Add DIB fourcc (raw, palettized 8-bit RGB).
20311 * gst-libs/gst/riff/riff-read.c:
20312 (gst_riff_read_strf_vids_with_data):
20313 Oops, fix strf_data reading bug.
20314 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
20315 Use a non-NULL tag.
20316 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
20317 Time for hacks. Sorry Dave. At least one quicktime movie (a
20318 trailer) that I've encountered contains multiple video tracks.
20319 One of those is the actual video track, the other are one-frame
20320 tracks (images). Unfortunately, the number of frames according
20321 to the trak header is 1 for each, so that doesn't help. So
20322 instead, I look at the duration and discard tracks with a
20323 duration shorter than 20% of the length of the stream. Better
20326 2004-10-01 Christian Schaller <christian@fluendo.com>
20328 * ext/ivorbis/vorbis.c:
20329 Patch from Phil Blundell (Bug 152341)
20331 2004-10-01 Wim Taymans <wim@fluendo.com>
20333 * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
20334 (speex_dec_get_formats), (speex_dec_convert),
20335 (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
20336 (speex_dec_chain), (gst_speexdec_get_property),
20337 (gst_speexdec_set_property):
20340 2004-10-01 Wim Taymans <wim@fluendo.com>
20342 * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
20343 (gst_wavparse_stream_init), (gst_wavparse_fmt),
20344 (gst_wavparse_other), (gst_wavparse_loop),
20345 (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
20346 (gst_wavparse_srcpad_event):
20347 * gst/wavparse/gstwavparse.h:
20348 Added some more debugging info.
20349 Fix the case where the length of the file is 0.
20350 Make sure we seek to sample borders.
20352 2004-10-01 Wim Taymans <wim@fluendo.com>
20354 * gst/playback/README:
20355 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
20356 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20357 (try_to_link_1), (no_more_pads), (close_link), (type_found):
20358 Add some debug info to decodebin, update README
20360 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20362 * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
20363 Don't use g_print(); use GST_DEBUG().
20365 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20367 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
20368 (gst_ogg_mux_queue_pads):
20369 Handle EOS properly.
20371 2004-10-01 Sebastien Cote <sc5@hermes.usherb.ca>
20373 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20375 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
20376 (gst_faad_chain), (gst_faad_change_state):
20377 * ext/faad/gstfaad.h:
20378 Allow playback of raw (unframed) MPEG AAC files (#148993).
20380 2004-10-01 Sebastien Cote <sc5@hermes.usherb.ca>
20382 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20384 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
20385 Throw error if we didn't recognize the stream. Fixes #152289.
20387 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20389 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
20392 2004-10-01 Francis Labonte <francis_labonte@hotmail.com>
20394 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20396 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
20399 2004-10-01 Balamurali Viswanathan <balamurali.viswanathan@wipro.com>
20401 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20403 * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
20405 * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
20408 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20410 * gst-libs/gst/riff/riff-media.c:
20411 (gst_riff_create_video_caps_with_data),
20412 (gst_riff_create_audio_caps_with_data):
20413 Add codec_data handling (like asfdemux used to do).
20414 * gst/asfdemux/gstasf.c: (plugin_init):
20415 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
20416 (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
20417 Use riff-media for caps creation instead of our own (mostly
20418 broken) copy of its functions.
20420 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20422 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
20423 Don't actually error out if we get another return value than
20424 -EINVAL. Opposite to what I first thought, drivers have random
20425 return values for this, although -EINVAL is the expected return
20426 value. Since this is not fatal, we shouldn't use
20427 GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
20429 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20431 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
20432 (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
20433 (dvdreadsrc_get_property), (_open), (_seek), (_read),
20434 (dvdreadsrc_get), (dvdreadsrc_open_file),
20435 (dvdreadsrc_change_state):
20436 Fix. Don't do one big huge loop around the whole DVD, that will
20437 cache all data and thus eat sizeof(dvd) (several GB) before we
20439 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
20440 Actually NULL'ify event after using it.
20441 * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
20442 (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
20443 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
20444 (gst_ebml_read_seek), (gst_ebml_read_skip):
20446 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
20447 (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
20448 (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
20449 Fix timing (this will probably break if I seek using menus, but
20450 I didn't get there yet). VOBs and normal DVDs should now work.
20451 Add a mpeg2-only pad with high rank so this get autoplugged for
20453 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
20454 (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
20455 (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
20456 (gst_mpeg_demux_get_audio_stream),
20457 (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
20458 (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
20459 Use this as second rank for MPEG-1 and MPEG-2. Still use this for
20460 MPEG-1 but use dvddemux for MPEG-2.
20461 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
20462 (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
20463 (gst_mpeg_parse_parse_packhead):
20464 Timing. Only add pad template if it exists. Add sink template from
20465 class and not from ourselves. This means we will always use the
20466 correct sink template even if it is not the one defined in this
20469 2004-09-29 Wim Taymans <wim@fluendo.com>
20471 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
20472 (gst_mpeg_demux_parse_pes):
20473 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
20474 Fix playback of mpeg again, timestamps where screwed up by
20477 2004-09-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20479 * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
20480 Only return true if we actually filled something in. Prevents
20481 player applications from showing a random length for flac files.
20482 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
20483 (gst_riff_read_use_event), (gst_riff_read_handle_event),
20484 (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
20485 (gst_riff_read_strf_vids_with_data),
20486 (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
20487 OK, ok, so I implemented event handling. Apparently it's normal
20488 that we receive random events at random points without asking
20490 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
20491 (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
20492 (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
20493 (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
20494 (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
20495 (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
20496 (gst_avi_demux_stream_data), (gst_avi_demux_loop):
20497 * gst/avi/gstavidemux.h:
20498 Implement non-lineair chunk handling and subchunk processing.
20499 The first solves playback of AVI files where the audio and video
20500 data of individual buffers that we read are not synchronized.
20501 This should not happen according to the wonderful AVI specs, but
20502 of course it does happen in reality. It is also a prerequisite for
20503 the second. Subchunk processing allows us to cut chunks in small
20504 pieces and process each of these pieces separately. This is
20505 required because I've seen several AVI files with incredibly large
20506 audio chunks, even some files with only one audio chunk for the
20507 whole file. This allows for proper playback including seeking.
20508 This patch is supposed to fix all AVI A/V sync issues.
20509 * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
20510 (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
20512 * gst/modplug/gstmodplug.cc:
20513 Proper return value setting for the query() function.
20514 * gst/playback/gstplaybasebin.c: (setup_source):
20515 Being in non-playing state (after, e.g., EOS) is not necessarily
20516 a bad thing. Allow for that. This fixes playback of short files.
20517 They don't actually playback fully now, because the clock already
20518 runs. This means that small files (<500kB) with a small length
20519 (<2sec) will still not or barely play. Other files, such as mod
20520 or flx, will work correctly, however.
20522 2004-09-28 Wim Taymans <wim@fluendo.com>
20524 * ext/speex/gstspeex.c: (plugin_init):
20525 * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
20526 (gst_speex_dec_class_init), (speex_dec_get_formats),
20527 (speex_get_event_masks), (speex_get_query_types),
20528 (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
20529 (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
20530 (gst_speexdec_get_property), (gst_speexdec_set_property),
20531 (speex_dec_change_state):
20532 * ext/speex/gstspeexdec.h:
20533 * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
20534 (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
20535 (gst_speexenc_base_init), (gst_speexenc_class_init),
20536 (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
20537 (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
20538 (gst_speexenc_src_query), (gst_speexenc_init),
20539 (gst_speexenc_get_tag_value), (comment_init), (comment_add),
20540 (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
20541 (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
20542 (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
20543 (gst_speexenc_chain), (gst_speexenc_get_property),
20544 (gst_speexenc_set_property), (gst_speexenc_change_state):
20545 * ext/speex/gstspeexenc.h:
20546 Rewrote speex encoder, make sure it can be embedded in ogg.
20547 Implemented speex decoder.
20549 2004-09-28 Christian Schaller <christian@fluendo.com>
20552 Remove kioslave plugin. Markey is brewing a new working one
20553 * ext/Makefile.am: Remove kioslave plugin
20555 * gst-plugins.spec.in: remove kio plugin from spec
20557 2004-09-27 Wim Taymans <wim@fluendo.com>
20559 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
20560 (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
20561 (is_sync_frame), (gst_multifdsink_client_queue_buffer),
20562 (gst_multifdsink_new_client),
20563 (gst_multifdsink_handle_client_write),
20564 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
20565 (gst_multifdsink_handle_clients):
20566 * gst/tcp/gstmultifdsink.h:
20567 Make syncing to keyframes actually work for new clients and lagging
20570 2004-09-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
20572 * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
20573 (gst_navigationtest_handle_src_event), (draw_box_planar411),
20574 (gst_navigationtest_planar411), (gst_navigationtest_change_state):
20575 * gst/debug/gstnavigationtest.h:
20576 make navigationtest display button-press and button-release events
20578 2004-09-26 Iain <iaingnome@gmail.com>
20580 * gst/interleave/interleave.c (all_channels_new_media): Checks if all
20581 the channels have received a new media event.
20582 (interleave_buffered_loop): Compresses a new media event on all
20585 2004-09-26 Iain <iaingnome@gmail.com>
20587 * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
20588 call the sinkpad's default event handler and not the srcpads. He also
20589 says this is confusing :)
20590 (gst_wavenc_stop_file): Company says that seek events only go upstream
20591 we should send a discontinuous downstream instead.
20593 2004-09-25 Christian Schaller <christian@fluendo.com>
20595 * Update SPEC file to be usable in conjunction with Fedora Core,
20596 Fedora.us and freshrpms packages
20597 * Fix typo in multifilesrc test Makefile
20599 2004-09-24 Wim Taymans <wim@fluendo.com>
20601 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20602 Only signal the no_more_pads signal when we have
20603 added the stream to our list.
20605 2004-09-24 Wim Taymans <wim@fluendo.com>
20607 * gst/playback/gstplaybasebin.c: (remove_prerolls),
20609 * gst/playback/gstplaybasebin.h:
20610 * gst/playback/gstplaybin.c: (setup_sinks):
20611 Don't try to preroll or decode more than one audio/video
20614 2004-09-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20616 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
20617 Throw error if we failed to find a suitable output. This should
20618 throw an error if we successfully set up a pipeline (e.g. because
20619 we recognized a media file) but found no decodable streams in it
20620 (e.g. because it contains only media stream types for which we
20621 have no decoders, or because it's not a media type).
20623 2004-09-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20625 * ext/dirac/Makefile.am:
20626 * ext/dirac/gstdirac.cc:
20627 * ext/dirac/gstdiracdec.cc:
20628 * ext/dirac/gstdiracdec.h:
20629 Do something. Don't actually know if this works because I don't
20630 have a demuxer yet.
20631 * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
20632 Add channels=1 to caps returned from _getcaps().
20633 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
20634 (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
20635 (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
20636 (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
20637 (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
20638 (gst_ogm_parse_change_state):
20639 Separate between audio/video so ogmaudioparse actually uses the
20640 audio pad templates. Both audio and video work now, including
20641 autoplugging. Also use sometimes-srcpad hack.
20642 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
20643 Handle events better. Don't hang on infinite loops.
20644 * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
20645 (gst_avi_demux_init), (gst_avi_demux_reset),
20646 (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
20647 (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
20648 (gst_avi_demux_change_state):
20649 * gst/avi/gstavidemux.h:
20650 Improve A/V sync. Still not perfect.
20651 * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
20652 (gst_ebml_read_skip):
20653 Handle events better.
20654 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
20655 (gst_qtdemux_loop_header), (qtdemux_parse_trak),
20656 (qtdemux_audio_caps):
20657 Add IMA4. Improve event handling. Save offset after a seek when
20658 the headers are at the end of the file so that we don't end up in
20660 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
20661 Add low-priority typefind support for files with no length.
20663 2004-09-23 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20665 * testsuite/multifilesink/Makefile.am:
20668 2004-09-22 Julien MOUTTE <julien@moutte.net>
20670 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
20671 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
20672 mistakes from thaytan's patches.
20674 2004-09-23 Jan Schmidt <thaytan@mad.scientist.com>
20676 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
20677 For completeness, XSync in the destroy function as xvimage does.
20679 2004-09-23 Jan Schmidt <thaytan@mad.scientist.com>
20681 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
20682 Correct caps negotiation
20683 * gst/volume/gstvolume.c: (volume_chain_float),
20684 (volume_chain_int16):
20685 Modify debug output to be little more informative
20686 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
20687 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
20688 (gst_xvimagesink_xvimage_destroy):
20689 Add XSync calls after detaching from the shared memory segment to
20692 2004-09-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20694 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
20695 (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
20696 * ext/vorbis/vorbis.c: (plugin_init):
20697 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
20698 (gst_vorbisenc_chain):
20699 * ext/vorbis/vorbisenc.h:
20700 remove explicit newmedia support from oggmux and vorbisenc
20701 add debug category to vorbisenc
20702 * gst/multifilesink/gstmultifilesink.c:
20703 (gst_multifilesink_class_init), (gst_multifilesink_init),
20704 (gst_multifilesink_dispose), (gst_multifilesink_set_location),
20705 (gst_multifilesink_set_property), (gst_multifilesink_next_file),
20706 (gst_multifilesink_handle_event), (gst_multifilesink_chain),
20708 * gst/multifilesink/gstmultifilesink.h:
20709 add support for streamheader in multifilesink
20711 2004-09-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20713 * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
20714 (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
20715 (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
20716 Prevent infinite loops. More correct error reporting.
20717 * gst/auparse/gstauparse.c: (gst_auparse_chain):
20718 Error out if negotiation fails.
20719 * gst/playback/gstplaybasebin.c: (setup_source),
20720 (gst_play_base_bin_change_state), (gst_play_base_bin_error),
20721 (gst_play_base_bin_found_tag):
20722 Error/tag forwarding. Pre-roll fixes for source errors on state
20723 changes (e.g. "file does not exist") to prevent hangs.
20725 2004-09-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20727 * testsuite/multifilesink/Makefile.am:
20728 * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
20729 (gst_newmedia_class_init), (gst_newmedia_init),
20730 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
20731 (newfile_signal), (test_signal), (main):
20732 * testsuite/multifilesink/multifilesrc_test.c: (main):
20733 * testsuite/multifilesink/oggtheora_test.c:
20734 (gst_newmedia_base_init), (gst_newmedia_class_init),
20735 (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
20736 (test_format), (newfile_signal), (test_signal), (main):
20737 * testsuite/multifilesink/oggvorbis_test.c:
20738 (gst_newmedia_base_init), (gst_newmedia_class_init),
20739 (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
20740 (test_format), (newfile_signal), (test_signal), (main):
20741 * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
20742 (gst_newmedia_class_init), (gst_newmedia_init),
20743 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
20744 (newfile_signal), (test_signal), (main):
20747 2004-09-20 Christian Schaller <christian@fluendo.com>
20749 * Fix mikmod license to LGPL as they have relicensed
20750 * Move Dirac and Effectv into LGPL section of README_license
20752 2004-09-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20754 * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
20755 (gst_mad_change_state):
20756 Allow for mp3 rate/channels changes. However, only very
20757 conservatively. Reason that we *have* to enable this is smiply
20758 because the mad find_sync() function is not good enough, it will
20759 regularly sync on random data as valid frames and therefore make
20760 us provide random caps as *final* caps of the stream. The best fix
20761 I could think of is to simply require several of the same stream
20762 changes in a row before we change caps.
20763 The actual testcase that works now is #
20764 * ext/ogg/Makefile.am:
20765 * ext/ogg/gstogg.c: (plugin_init):
20766 * ext/ogg/gstogmparse.c:
20767 OGM support (video only for now; I need an audio sample file).
20768 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
20769 (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
20770 (gst_asf_demux_add_video_stream):
20772 * gst/playback/gstplaybasebin.c: (unknown_type):
20773 Don't error out on single unknown-types after all. It's wrong.
20774 If we found type of video and audio but not of a subtitle stream,
20775 it will still error out (which is unwanted). Will find a better fix
20777 * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
20778 (ogmaudio_type_find), (plugin_init):
20781 2004-09-20 Johan Dahlin <johan@gnome.org>
20783 * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
20784 after setting caps.
20786 2004-09-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20788 * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
20789 * gst/wavenc/gstwavenc.h:
20790 Added newmedia support to wavenc
20792 2004-09-17 Wim Taymans <wim@fluendo.com>
20794 * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
20795 (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
20796 (gst_fdset_fd_can_write), (gst_fdset_wait):
20797 * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
20798 (gst_multifdsink_init), (gst_multifdsink_add),
20799 (gst_multifdsink_remove), (gst_multifdsink_get_stats),
20800 (gst_multifdsink_remove_client_link),
20801 (gst_multifdsink_client_queue_buffer),
20802 (gst_multifdsink_handle_client_write),
20803 (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
20804 (gst_multifdsink_close), (gst_multifdsink_change_state):
20805 * gst/tcp/gstmultifdsink.h:
20806 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
20807 (gst_tcpserversink_removed):
20808 Small cleanups in fdset.c
20809 Use a hastable to map fd to the client structure for faster
20810 lookup in _remove and get_stats.
20811 Added virtual function to close the fds.
20812 Handle clients even when the select/poll call was unblocked because
20814 Implement syncing to keyframe in the recovery procedure.
20816 2004-09-16 Iain <iaingnome@gmail.com>
20818 * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
20821 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20823 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
20824 Caps are only set if the type of the stream is unknown, but this
20825 is initialized in ->init_stream(), so set to UNKNOWN after calling
20826 ->init_stream() so that capsnego starts.
20828 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20830 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
20831 (gst_avi_demux_stream_data):
20832 Just hardcode for raw audio then. AVI audio sucks.
20834 2004-09-15 Arwed v. Merkatz <v.merkatz@gmx.net>
20836 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
20837 * gst/matroska/matroska-mux.c: (audiosink_templ),
20838 (gst_matroska_mux_audio_pad_link):
20839 * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
20840 Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
20842 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20844 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
20845 (gst_avi_demux_stream_data):
20846 Try to fix a/v sync issues.
20848 2004-09-15 David Schleef <ds@schleef.org>
20850 * configure.ac: remove NASM check, since we don't use it. Update
20852 * ext/dirac/gstdiracdec.cc: update to current 0.4 API
20853 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
20854 Initialized variables.
20855 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
20856 (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
20857 (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
20860 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20862 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
20863 (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
20864 * gst/avi/gstavidemux.h:
20865 Fix for compressed audio (mp3) timestamp generation. How did this
20868 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20870 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
20871 Volume is a double not a float.
20873 2004-09-15 Wim Taymans <wim@fluendo.com>
20875 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
20876 (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
20877 Don't close the fd in multifdsink as we didn't open it in the
20878 first place. Some cleanups.
20880 2004-09-15 Wim Taymans <wim@fluendo.com>
20882 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
20883 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
20884 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
20885 Fix the case where the muxer would mark pages as delta
20886 frames when they are not (vorbis only ogg).
20888 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20890 * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
20891 (gst_play_base_bin_change_state):
20892 Handle the case where we failed to setup a clear pipeline. This
20893 will throw an error (or EOS, another nice case) and if you don't
20894 catch that, the app will wait for the signal forever (and thus
20897 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20899 * ext/gnomevfs/gstgnomevfssink.c:
20900 (gst_gnomevfssink_uri_get_protocols):
20901 * ext/gnomevfs/gstgnomevfssrc.c:
20902 (gst_gnomevfssrc_uri_get_protocols):
20903 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
20904 * ext/gnomevfs/gstgnomevfsuri.h:
20905 Use _uri_new() instead of _open(), so it doesn't take as long and
20906 Christophe's computer won't hang.
20907 * gst/playback/gstplaybasebin.c: (unknown_type):
20908 Throw error on unknown media type, so apps actually display it.
20910 2004-09-14 Brian Cameron <brian.cameron@sun.com
20912 * tools/gst-launch-ext-m.m: Changed ~ to $ENV{HOME} to allow
20913 this script to work on Solaris since bash shell handles echo
20914 differenly than bash.
20916 2004-09-17 Wim Taymans <wim@fluendo.com>
20918 * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
20919 (setup_source), (gst_play_base_bin_set_property),
20920 (gst_play_base_bin_add_element):
20921 * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
20922 Some more work on making sure seeking pauses the pipeline and
20923 that changing the uri actually does something.
20925 2004-09-17 Wim Taymans <wim@fluendo.com>
20927 * gst/tcp/gstfdset.c: (gst_fdset_wait):
20928 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
20929 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
20930 (gst_tcpserversink_close):
20931 Be a bit more paranoid when freeing memory.
20933 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20935 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
20936 (qtdemux_parse_trak):
20937 Don't crash by dividing by zero (see sample movie in #126922).
20939 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20941 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
20942 Don't touch non-existing data (fixes crash on file in #140147).
20944 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20946 * gst/playback/gstplaybasebin.c:
20947 (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
20948 Handle double disposals, and proper change of URIs.
20950 2004-09-13 Martin Eikermann <meiker@upb.de>
20952 * gst/mpegstream/gstmpegparse.c:
20953 fix synchronistation for streams recorded from digital PCR
20956 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20958 * ext/gnomevfs/Makefile.am:
20959 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
20960 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
20961 (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
20962 (gst_gnomevfssink_uri_get_type),
20963 (gst_gnomevfssink_uri_get_protocols),
20964 (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
20965 (gst_gnomevfssink_uri_handler_init),
20966 (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
20967 (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
20968 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
20969 (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
20970 (gst_gnomevfssrc_uri_get_type),
20971 (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
20972 (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
20973 (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
20974 (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
20975 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
20976 * ext/gnomevfs/gstgnomevfsuri.h:
20977 Add URI support to Gnome-VFS plugins. Tries to load a fixed list
20978 of fake URIs to see which this version of Gnome-VFS likes, and
20979 uses that for the Gst-URI interface. Makes playbin support http://
20980 streams. Also fix up some stupid behaviour in gnomevfssrc.
20982 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20984 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
20985 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
20986 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
20987 (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
20988 Update mixer (to sync with other sessions) if we try to obtain
20989 a new value. This makes alsamixer work accross applications.
20990 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
20991 Only call sync functions if we're running, else alsalib asserts.
20992 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
20993 Sometimes fails to compile. Possibly a gcc bug.
20994 * gst/playback/gstplaybin.c: (gen_video_element),
20995 (gen_audio_element):
20996 Add a reference to an application-provided object, because we lose
20997 this same reference if we add it to the bin. If we don't do this,
20998 we can only use this object once and thus crash if we go from
20999 ready to playing, back to ready and back to playing again.
21000 Also add an audioscale element because several cheap soundcards -
21001 like mine - don't support all samplerates.
21002 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
21003 (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
21004 Fix wrong order or PAR calls. Makes automatically obtained PAR
21005 from the X server atually being used.
21007 2004-09-12 David Schleef <ds@schleef.org>
21009 Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
21010 #151887, #152102, #152247.
21011 * examples/indexing/indexmpeg.c: 64-bit warning fixes.
21012 * examples/seeking/cdparanoia.c: same
21013 * examples/seeking/cdplayer.c: same
21014 * examples/seeking/seek.c: same
21015 * examples/seeking/spider_seek.c: same
21016 * examples/seeking/vorbisfile.c: same
21017 * examples/stats/mp2ogg.c: same
21018 * ext/esd/esdsink.c: (gst_esdsink_class_init),
21019 (gst_esdsink_dispose): Dispose of element properly.
21020 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
21022 * ext/nas/nassink.c: (gst_nassink_class_init),
21023 (gst_nassink_dispose): Dispose of element correctly.
21024 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
21025 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
21026 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
21027 Fix 64-bit warning.
21028 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
21029 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
21030 Fix 64-bit warning.
21032 2004-09-12 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21034 * configure.ac : change speex detection as 1.1.6 now uses
21035 .pc/pkg-config and they changed their headers location.
21037 2004-09-09 Arwed v. Merkatz <v.merkatz@gmx.net>
21039 * gst/matroska/matroska-mux.h:
21040 * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
21041 (gst_matroska_mux_start), (gst_matroska_mux_finish),
21042 (gst_matroska_mux_write_data):
21043 Write multiple blocks/frames per cluster.
21044 Write meta-seek information (seek heads).
21046 2004-09-09 Scott Wheeler <wheeler@kde.org>
21048 * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
21049 (gst_play_bin_set_property), (gst_play_bin_get_property),
21050 (gen_audio_element), (gen_audio_element):
21051 Add a volume element / property to the pipeline.
21053 2004-09-07 Wim Taymans <wim@fluendo.com>
21055 * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
21056 Copy timestamps from the master pad to the output buffers.
21058 2004-09-03 Thomas Vander Stichele <thomas at apestaart dot org>
21060 * ext/raw1394/gstdv1394src.c:
21061 throw errors when applicable
21063 2004-09-01 Arwed v. Merkatz <v.merkatz@gmx.net>
21065 * gst/matroska/ebml-ids.h:
21066 * gst/matroska/ebml-read.c: (gst_ebml_read_date):
21067 * gst/matroska/ebml-write.c: (gst_ebml_write_date):
21068 * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
21069 automatically convert unix time <-> ebml time when reading/writing
21070 a date, use gst_ebml_write_uint to write CUETIME,
21071 not gst_ebml_write_date.
21072 * gst/matroska/matroska-ids.h:
21073 * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
21074 (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
21075 (gst_matroska_mux_track_header), (gst_matroska_mux_start),
21076 (gst_matroska_mux_write_data):
21077 Write track and segment UIDs, write muxing date, write
21078 TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
21079 Create cues for audio only files.
21081 2004-08-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21083 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
21084 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
21085 Re-commit ALSA switches.
21086 * gst/adder/gstadder.c: (gst_adder_loop):
21087 64-bit fix (#151416).
21088 * gst/debug/progressreport.c: (gst_progressreport_report):
21089 64-bit fix (#151419).
21090 * gst/matroska/matroska-demux.c:
21091 (gst_matroska_demux_parse_contents):
21092 64-bit fix (#151420).
21093 * gst/playback/test3.c: (update_scale):
21094 64-bit fix (#151421).
21096 2004-08-31 Thomas Vander Stichele <thomas at apestaart dot org>
21101 === release 0.8.4 ===
21103 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
21105 * configure.ac: releasing 0.8.4, "Alias"
21107 2004-08-31 Thomas Vander Stichele <thomas at apestaart dot org>
21109 * ext/theora/Makefile.am:
21110 fix makefile. Fixes #151462.
21112 2004-08-30 Wim Taymans <wim@fluendo.com>
21114 * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
21115 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21116 (gst_multifdsink_remove_client_link),
21117 (gst_multifdsink_client_queue_buffer),
21118 (gst_multifdsink_handle_client_write):
21119 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
21120 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
21121 Fix some memory leaks.
21123 2004-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
21125 Patch by: David Schleef
21129 rename our detection macro for V4L2. Fixes #151236.
21131 2004-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
21133 Patch by: David Schleef
21136 check to define LAMEPRESET. Fixes #151232.
21138 2004-08-27 David Schleef <ds@schleef.org>
21140 * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
21141 (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
21142 (gst_glimagesink_fixate): Move local variable declarations to
21143 make gcc-2.95 happy.
21145 2004-08-27 Thomas Vander Stichele <thomas at apestaart dot org>
21148 bump nano for prerelease
21150 2004-08-27 David Schleef <ds@schleef.org>
21152 * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
21153 * sys/sunaudio/gstsunaudiosrc.c:
21154 * sys/sunaudio/gstsunaudiosrc.h:
21156 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
21158 * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
21159 handle EOS correctly
21160 * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
21161 * gst/matroska/matroska-mux.h:
21162 added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
21163 VFW compatibility mode
21165 2004-08-27 Thomas Vander Stichele <thomas at apestaart dot org>
21167 patch by: Zaheer Abbas Merali
21169 * ext/ogg/gstoggmux.c:
21170 * ext/vorbis/vorbisenc.c:
21171 * ext/vorbis/vorbisenc.h:
21174 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
21176 * gst/matroska/ebml-write.c: (gst_ebml_write_float),
21177 fix byte order reversion on little endian machines.
21178 * gst/matroska/matroska-mux.c: (audiosink_templ),
21179 (gst_matroska_mux_audio_pad_link):
21180 add TTA codec to the list of supported codecs.
21181 * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
21182 (gst_matroska_mux_start), (gst_matroska_mux_finish),
21183 (gst_matroska_mux_write_data):
21184 * gst/matroska/matroska-mux.h:
21185 write segment duration correctly, write muxing app string, fixes bugs
21186 #140897 and #140898.
21187 * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
21188 wait for all pads to be negotiated before starting to mux.
21190 2004-08-26 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21192 * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
21193 * ext/lame/gstlame.h:
21194 Added new media support to lame
21196 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
21198 * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
21199 send vorbis headers at the beginning of a stream, fixes bug #141554.
21200 Interpret BLOCKDURATION and set buffer duration accordingly, fixes
21202 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
21203 (gst_matroska_demux_plugin_init):
21204 * gst/matroska/matroska-ids.h:
21205 enable demuxing of TTA audio streams, fixes bug #148951.
21206 * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
21207 enable typefinding for TTA audio files, fixes bug #148711.
21208 * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
21209 set XVID_LOWDELAY flag for decoding so xvid always returns an image,
21210 fixes playback of packed bitstream and xvid with bframes, bug #135407.
21212 2004-08-24 Sebastien Cote <sc5@hermes.usherb.ca>
21214 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
21215 (gst_riff_read_element_data), (gst_riff_read_seek),
21216 (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
21217 #144616, patch reviewed by Ronald and committed by Christophe Fergeau
21220 2004-08-23 Iain <iaingnome@gmail.com>
21222 * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
21223 tags. They appear to be handled differently to normal.
21224 (tag_list_to_id3_tag_foreach): Ditto.
21226 2004-08-22 Wim Taymans <wim@fluendo.com>
21228 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21229 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21230 Make sure we never send -1 granulepos.
21232 2004-08-20 Wim Taymans <wim@fluendo.com>
21234 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21235 (gst_ogg_mux_loop):
21236 I will accept bitchslappings with non sharp objects.
21238 2004-08-20 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21241 Clean up the test for lame presets
21243 2004-08-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21246 * ext/lame/Makefile.am:
21247 * ext/lame/gstlame.c: (gst_lame_class_init),
21248 (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
21249 Only enable lame presets if version of lame has presets in API
21251 2004-08-19 Jan Schmidt <thaytan@mad.scientist.com>
21252 * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
21253 * gst/udp/gstudpsrc.h:
21254 Don't call gst_pad_push in a get function. Fixes #150449
21256 2004-08-18 Wim Taymans <wim@fluendo.com>
21258 * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
21259 (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
21260 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
21261 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21262 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21264 * gst/tcp/gstfdset.h:
21265 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21266 (gst_multifdsink_client_queue_buffer),
21267 (gst_multifdsink_handle_client_write):
21268 * gst/tcp/gstmultifdsink.h:
21269 Some extra checks in gstfdset.
21270 Only use send() when the fd is a socket. Don't try to
21271 read from write only fds.
21273 2004-08-18 Wim Taymans <wim@fluendo.com>
21275 * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
21276 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
21277 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21278 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21280 Add more locking and bounds checking.
21282 2004-08-18 Wim Taymans <wim@fluendo.com>
21284 * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
21285 Realloc test fdset in the lock and right before starting
21286 the poll call. Bump the limit to 4096.
21288 2004-08-17 David Schleef <ds@schleef.org>
21290 * sys/sunaudio/Makefile.am:
21291 * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
21292 of rates and channels. Make debugging less obnoxious.
21294 Patch from Balamurali Viswanathan implementing a mixer for
21295 Sun audio. (bug #144091):
21296 * sys/sunaudio/gstsunelement.c:
21297 * sys/sunaudio/gstsunelement.h:
21298 * sys/sunaudio/gstsunmixer.c:
21299 * sys/sunaudio/gstsunmixer.h:
21301 2004-08-17 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21303 * gst/audioscale/gstaudioscale.c:
21304 * gst/audioscale/gstaudioscale.h:
21305 made audioscale resample from any sample rate to any sample rate
21307 2004-08-17 Thomas Vander Stichele <thomas at apestaart dot org>
21309 * ext/libpng/gstpngdec.c:
21310 error out on unsupported types
21312 2004-08-17 Iain <iaingnome@gmail.com>
21314 * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
21315 mid_side and loose_mid_side properties if its a stereo stream.
21317 2004-08-17 Wim Taymans <wim@fluendo.com>
21319 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
21320 (theora_get_formats), (theora_dec_src_convert),
21321 (theora_dec_sink_convert), (theora_dec_src_query),
21322 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
21325 2004-08-17 Wim Taymans <wim@fluendo.com>
21327 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
21328 (gst_ogg_pad_push):
21329 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
21330 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
21331 (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
21332 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21333 Mark delta units in the muxer.
21334 Try to decode the packet after an out-of-sync error from
21337 2004-08-17 Wim Taymans <wim@fluendo.com>
21339 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
21340 (gst_multifdsink_init), (gst_multifdsink_add),
21341 (gst_multifdsink_client_queue_buffer),
21342 (gst_multifdsink_set_property), (gst_multifdsink_get_property):
21343 * gst/tcp/gstmultifdsink.h:
21344 Added option to send a keyframe to clients as the first buffer.
21345 Make timeout property writable.
21347 2004-08-17 Thomas Vander Stichele <thomas at apestaart dot org>
21349 patch by: Wim Taymans
21351 * gst/tcp/gstfdset.c:
21352 * gst/tcp/gstmultifdsink.c:
21353 fix index comparison, should include 0
21355 2004-08-16 Wim Taymans <wim@fluendo.com>
21357 * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
21358 (gst_fdset_add_fd), (gst_fdset_remove_fd),
21359 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21360 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21362 copy when reallocing for poll so the select arguments don't get
21363 changed during the call
21365 2004-08-16 Wim Taymans <wim@fluendo.com>
21367 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
21368 (gst_theora_enc_class_init), (theora_enc_sink_link),
21369 (theora_buffer_from_packet), (theora_enc_chain):
21370 Fix bug where buffers were not marked as keyframes
21373 2004-08-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21375 * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
21376 (gst_lame_preset_get_type), (gst_lame_class_init):
21377 describe the enum values for vbr mode and presets more verbosely
21379 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21381 * ext/lame/gstlame.c: (gst_lame_mode_get_type),
21382 (gst_lame_quality_get_type), (gst_lame_padding_get_type),
21383 (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
21384 (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
21385 * ext/lame/gstlame.h:
21386 add preset property to lame so it can use lame presets
21388 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21390 * ext/lame/gstlame.c: (gst_lame_get_property):
21391 whoops forgot break, thanks teuf
21393 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21395 * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
21396 (gst_lame_class_init), (gst_lame_src_getcaps),
21397 (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
21398 (gst_lame_get_property), (gst_lame_setup):
21399 * ext/lame/gstlame.h:
21400 fix lame's broken vbr stuff, allow it to resample if need be, and also
21401 make xing header optional
21403 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21405 * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
21406 added getcaps function so samplerate doesnt get fixated to silly values
21408 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21410 * ext/lame/gstlame.c: (gst_lame_src_link):
21411 revert previous fix
21413 2004-08-12 Johan Dahlin <johan@gnome.org>
21415 * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
21416 checks. Doesn't matter what state we are in. Interfaces are a
21417 compile time thing, not runtime. It also broke the python bindings.
21419 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21421 * ext/lame/gstlame.c: (gst_lame_src_link):
21422 made source pad link function check if sinkpad is ok..fixes the problem
21423 where core fixates the output rate of lame stupidly
21425 2004-08-12 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
21427 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
21428 * sys/v4l/v4l_calls.c:
21429 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
21430 fix fixate function to handle nonsimple caps.
21431 remove bogus check in _link
21434 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21436 * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
21437 set default compression ratio parameter to 0.0 so bitrate parameter
21440 2004-08-11 David Schleef <ds@schleef.org>
21442 * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
21444 2004-08-11 David Schleef <ds@schleef.org>
21446 * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
21449 2004-08-11 David Schleef <ds@schleef.org>
21451 * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
21453 2004-08-11 David Schleef <ds@schleef.org>
21455 * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
21457 * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
21458 * gst-libs/gst/video/gstvideosink.c: Change copyright block to
21460 * gst/auparse/gstauparse.c: Fix plugin license field.
21461 * gst/monoscope/gstmonoscope.c: Fix plugin license field.
21462 * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
21463 * gst/rtp/gstrtp.c: Fix plugin license field.
21465 2004-08-11 Wim Taymans <wim@fluendo.com>
21467 * gst/tcp/Makefile.am:
21468 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
21469 (ensure_size), (gst_fdset_new), (gst_fdset_free),
21470 (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
21471 (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
21472 (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
21473 (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
21474 (gst_fdset_fd_can_write), (gst_fdset_wait):
21475 * gst/tcp/gstfdset.h:
21476 * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
21477 (gst_multifdsink_class_init), (gst_multifdsink_init),
21478 (gst_multifdsink_add), (gst_multifdsink_remove),
21479 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
21480 (gst_multifdsink_remove_client_link),
21481 (gst_multifdsink_handle_client_read),
21482 (gst_multifdsink_client_queue_data),
21483 (gst_multifdsink_client_queue_caps),
21484 (gst_multifdsink_client_queue_buffer),
21485 (gst_multifdsink_handle_client_write),
21486 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
21487 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
21488 (gst_multifdsink_get_property), (gst_multifdsink_init_send),
21489 (gst_multifdsink_close):
21490 * gst/tcp/gstmultifdsink.h:
21491 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
21492 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
21493 (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
21494 (gst_tcpserversink_close):
21495 * gst/tcp/gsttcpserversink.h:
21496 Abstracted away the select call, implemented poll (yes we ran into
21497 the 1024 limit in production).
21499 2004-08-11 Thomas Vander Stichele <thomas at apestaart dot org>
21501 * gst/tcp/gsttcp.c:
21502 * gst/tcp/gsttcpplugin.c:
21503 improve debuggging, remove assert
21505 2004-08-10 Wim Taymans <wim@fluendo.com>
21507 * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
21508 (gst_client_status_get_type), (gst_multifdsink_class_init),
21509 (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
21510 (gst_multifdsink_handle_client_read),
21511 (gst_multifdsink_handle_client_write),
21512 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
21513 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
21514 (gst_multifdsink_get_property):
21515 * gst/tcp/gstmultifdsink.h:
21516 * gst/tcp/gsttcp-marshal.list:
21517 Starting to prepare for specifying buffer time in other units
21518 than buffers. Expose remove reason in signal.
21520 2004-08-10 Wim Taymans <wim@fluendo.com>
21522 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21523 (gst_multifdsink_remove), (gst_multifdsink_clear),
21524 (gst_multifdsink_remove_client_link),
21525 (gst_multifdsink_handle_client_read),
21526 (gst_multifdsink_client_queue_data),
21527 (gst_multifdsink_client_queue_buffer),
21528 (gst_multifdsink_handle_client_write),
21529 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
21530 (gst_multifdsink_chain), (gst_multifdsink_close):
21531 * gst/tcp/gstmultifdsink.h:
21532 Added more debugging info. Changed the way clients are
21533 removed from the lists. Fixed a bug where a bad file descriptor
21534 could cause many clients to be removed.
21536 2004-08-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
21538 * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
21539 allow all pixel-aspect-ratios, not just 1:1
21541 2004-08-09 David Schleef <ds@schleef.org>
21543 * sys/glsink/ARB_multitexture.h: Remove old files.
21544 * sys/glsink/EXT_paletted_texture.h:
21545 * sys/glsink/NV_register_combiners.h:
21546 * sys/glsink/gstgl_nvimage.c:
21547 * sys/glsink/gstgl_pdrimage.c:
21548 * sys/glsink/gstgl_rgbimage.c:
21549 * sys/glsink/gstglsink.c:
21550 * sys/glsink/gstglsink.h:
21551 * sys/glsink/gstglxwindow.c:
21552 * sys/glsink/regcomb_yuvrgb.c:
21554 2004-08-09 David Schleef <ds@schleef.org>
21556 Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
21557 GL sink plugin. (Bug #147302)
21559 * configure.ac: Test for OpenGL
21560 * sys/Makefile.am: Use test for OpenGL
21561 * sys/glsink/Makefile.am:
21562 * sys/glsink/glimagesink.c: rewrite
21563 * sys/glsink/glimagesink.h: rewrite
21565 2004-08-09 David Schleef <ds@schleef.org>
21567 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init): Only allow
21569 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
21570 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
21571 * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
21573 2004-08-09 Wim Taymans <wim@fluendo.com>
21575 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
21576 (gst_multifdsink_add), (gst_multifdsink_get_stats),
21577 (gst_multifdsink_client_remove),
21578 (gst_multifdsink_handle_client_read),
21579 (gst_multifdsink_handle_client_write),
21580 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
21581 Do a bit more logging, make the client_read code more robust.
21583 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
21585 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
21586 (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
21587 (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
21588 (gst_jpegdec_init), (gst_jpegdec_chain):
21589 * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
21590 (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
21591 cleanups, debugging fixes and memleak plugging
21593 2004-08-09 Wim Taymans <wim@fluendo.com>
21595 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
21596 (theora_get_formats), (theora_dec_src_convert),
21597 (theora_dec_sink_convert), (theora_dec_src_query),
21598 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
21599 (theora_dec_change_state):
21600 Don't crash on missing header packets.
21602 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
21606 Added Albanian translation (Laurent Dhima)
21610 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
21612 * ext/lame/gstlame.c:
21615 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
21617 * sys/ximage/ximagesink.c:
21618 * sys/xvimage/xvimagesink.c:
21619 assign all TOO_LAZY's to a real category. Thanks to Warthy Warthog.
21621 2004-08-06 Wim Taymans <wim@fluendo.com>
21623 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
21624 (gst_multifdsink_add), (gst_multifdsink_get_stats),
21625 (gst_multifdsink_client_remove),
21626 (gst_multifdsink_handle_client_read),
21627 (gst_multifdsink_handle_client_write),
21628 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
21629 Make sure we don't try to read more from a client that what
21630 ioctl says us or we deadlock.
21632 2004-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
21634 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
21635 (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
21636 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
21637 decouple running_time and n_frames so it can handle changing
21638 framerate while running
21640 2004-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
21644 updated translations
21646 2004-08-04 Benjamin Otte <otte@gnome.org>
21648 * gst/videotestsrc/gstvideotestsrc.c:
21649 (gst_videotestsrc_get_capslist), (generate_capslist),
21651 generate the list of supported caps at startup and reuse it instead
21652 of always generating it
21654 2004-07-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
21656 * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
21657 whoops, last checkin broke normal build
21659 2004-08-03 Benjamin Otte <otte@gnome.org>
21661 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
21662 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
21663 (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
21664 (gst_alsa_mixer_get_option):
21665 * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
21666 (dvdnavsrc_print_event):
21667 * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
21668 * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
21669 (gst_ogg_mux_pad_unlink):
21670 * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
21671 (gst_multipart_mux_pad_unlink):
21672 * gst/videofilter/gstvideobalance.c:
21673 (gst_videobalance_colorbalance_set_value):
21674 * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
21675 (gst_videomixer_pad_unlink):
21677 * sys/oss/gstossmixer.c:
21678 * sys/v4l/gstv4lcolorbalance.c:
21679 * sys/v4l/gstv4ltuner.c:
21680 * sys/v4l/v4lsrc_calls.c:
21681 * sys/v4l2/gstv4l2colorbalance.c:
21682 * sys/v4l2/gstv4l2tuner.c:
21683 compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
21685 2004-08-03 Benjamin Otte <otte@gnome.org>
21687 * examples/dynparams/filter.c: (ui_control_create):
21688 * examples/gstplay/player.c: (print_tag):
21689 * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
21690 * ext/gdk_pixbuf/gstgdkanimation.c:
21691 (gst_gdk_animation_iter_may_advance):
21692 * ext/jack/gstjack.c: (gst_jack_request_new_pad):
21693 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
21694 (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
21695 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
21696 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
21697 * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
21698 * gst-libs/gst/media-info/media-info-test.c: (print_tag):
21699 * gst/sine/demo-dparams.c: (main):
21700 * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
21701 * testsuite/alsa/formats.c: (create_pipeline):
21702 * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
21703 fixes for G_DISABLE_ASSERT and friends
21704 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
21705 (mp3_type_frame_length_from_header), (mp3_type_find),
21707 require mp3 typefinding to have at least MIN_HEADERS valid headers
21708 add typefinding for AAC adts files
21710 2004-08-04 Jan Schmidt <thaytan@mad.scientist.com>
21712 * sys/ximage/ximagesink.c:
21713 (gst_ximagesink_calculate_pixel_aspect_ratio):
21714 * sys/xvimage/xvimagesink.c:
21715 (gst_xvimagesink_calculate_pixel_aspect_ratio):
21716 Make sure we calculate pixel-aspect-ratio using floating point maths
21718 2004-08-03 Thomas Vander Stichele <thomas at apestaart dot org>
21721 updated translation
21723 2004-08-03 Thomas Vander Stichele <thomas at apestaart dot org>
21725 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
21726 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
21727 add debugging for display PAR calculation
21729 2004-08-02 David Schleef <ds@schleef.org>
21731 * configure.ac: Fix mikmod CFLAGS.
21733 2004-07-27 Benjamin Otte <otte@gnome.org>
21735 * gst/audioscale/gstaudioscale.c:
21736 - fix templates to only support S16, it's the only format that works
21737 - make caps nego code use try_set_caps_nonfixed and fixation instead
21738 of try_set_caps twice, which is not nice for autopluggers
21739 - change rank to secondary, so autopluggers can pick it up after
21742 2004-08-02 Iain <iain@prettypeople.org>
21744 * gst/interleave/interleave.c (interleave_init),
21745 (interleave_request_new_pad),
21746 (interleave_pad_removed),
21747 (interleave_buffered_loop): Use the real pad count, not the artificial
21750 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
21752 * configure.ac: bump nano back to development
21754 === release 0.8.3 ===
21756 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
21758 * configure.ac: releasing 0.8.3, "Water"
21760 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
21762 * sys/xvimage/xvimagesink.c:
21763 (gst_xvimagesink_calculate_pixel_aspect_ratio),
21764 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
21765 (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
21766 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
21767 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
21768 * sys/xvimage/xvimagesink.h:
21769 apply similar PAR fixes as to ximagesink
21771 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
21773 patch from: Benjamin Otte
21775 * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
21776 add link function to lame. Fixes #148986.
21778 2004-08-02 Johan Dahlin <johan@gnome.org>
21780 * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
21783 2004-07-30 David Schleef <ds@schleef.org>
21785 * gst/videomixer/Makefile.am: Fix things that should have been
21786 fixed in the last checkin.
21788 2004-07-30 David Schleef <ds@schleef.org>
21790 * gst/multipart/Makefile.am: Fix things that should have been
21791 fixed in the last checkin.
21793 2004-07-30 David Schleef <ds@schleef.org>
21795 * testsuite/multifilesink/Makefile.am: Fix unused variable.
21797 2004-07-30 Thomas Vander Stichele <thomas at apestaart dot org>
21800 bump nano for prerelease
21812 2004-07-30 Wim Taymans <wim@fluendo.com>
21814 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
21815 (gst_multifdsink_add), (gst_multifdsink_remove),
21816 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
21817 (gst_multifdsink_client_remove),
21818 (gst_multifdsink_handle_client_write),
21819 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
21820 * gst/tcp/gstmultifdsink.h:
21821 Recover from a select with a bad file descriptor by removing
21824 2004-07-30 Thomas Vander Stichele <thomas at apestaart dot org>
21827 fix requirement of core
21828 * gst-libs/gst/play/play.c: (gst_play_error_plugin),
21829 (gst_play_pipeline_setup):
21830 don't use colorspace element. do use hermescolorspace element.
21831 make macro to get a colorspace element.
21832 mark strings for translation.
21844 update translations
21846 2004-07-30 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21848 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
21849 fix default for newmedia flag
21851 2004-07-30 Wim Taymans <wim@fluendo.com>
21853 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
21854 (gst_theora_dec_init), (theora_get_formats),
21855 (theora_dec_src_convert), (theora_dec_sink_convert),
21856 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
21857 (theora_dec_chain), (theora_dec_set_property),
21858 (theora_dec_get_property):
21859 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
21860 (gst_theora_enc_class_init), (gst_theora_enc_init),
21861 (theora_enc_sink_link), (theora_enc_chain),
21862 (theora_enc_set_property), (theora_enc_get_property):
21863 Added cropping option to theora decoder.
21864 Added border option to theora encoder.
21866 2004-07-30 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21868 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
21869 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
21870 (gst_pngenc_set_property):
21871 * ext/libpng/gstpngenc.h:
21872 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
21874 2004-07-30 Wim Taymans <wim@fluendo.com>
21876 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
21877 (theora_enc_sink_link), (theora_enc_chain),
21878 (theora_enc_set_property), (theora_enc_get_property):
21879 Fix encoding of non-multiple-of-16 video.
21881 2004-07-29 David Schleef <ds@schleef.org>
21883 * configure.ac: make test for audiofile more strict
21885 2004-07-25 Benjamin Otte <in7y118@public.uni-hamburg.de>
21887 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
21888 give different names to typefind functions
21890 2004-07-28 Thomas Vander Stichele <thomas at apestaart dot org>
21892 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
21893 (gst_ximagesink_calculate_pixel_aspect_ratio),
21894 (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
21895 (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
21896 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
21897 (gst_ximagesink_get_property), (gst_ximagesink_init):
21898 * sys/ximage/ximagesink.h:
21899 allocate PAR's dynamically.
21900 use autodetected PAR if no object-set PAR is given.
21901 add workaround for directfb's X not setting physical size.
21902 fix to xvimagesink will follow tomorrow.
21904 2004-07-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21906 * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
21907 * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
21908 (gst_shout2send_get_type), (gst_shout2send_set_clock),
21909 (gst_shout2send_class_init), (gst_shout2send_init),
21910 (set_shout_metadata), (gst_shout2send_set_metadata),
21911 (gst_shout2send_chain), (gst_shout2send_set_property),
21912 (gst_shout2send_get_property), (gst_shout2send_connect),
21913 (gst_shout2send_change_state):
21914 * ext/shout2/gstshout2.h:
21915 - fix for sending mp3 audio to icecast2 server, if pad link function not
21916 called before PAUSED state
21917 - added option to use GStreamer clock sync (as opposed to libshout's own sync)
21918 - added tagging support for mp3 audio broadcasted
21919 * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
21922 2004-07-28 Wim Taymans <wim@fluendo.com>
21924 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
21925 (gst_ogg_demux_push):
21926 Return query failure when we don't know the length of
21927 an ogg stream insteda of returning TRUE with a bogus value.
21929 2004-07-28 Wim Taymans <wim@fluendo.com>
21931 * ext/theora/theoradec.c: (theora_get_formats),
21932 (theora_dec_src_convert), (theora_dec_sink_convert),
21933 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
21934 (theora_dec_chain):
21935 Don't screw up the 1 Chroma for 1 luma sample situation when we
21936 have an odd offset/width by adding a black border in those cases.
21938 2004-07-28 Wim Taymans <wim@fluendo.com>
21940 * ext/theora/theoradec.c: (theora_get_formats),
21941 (theora_dec_src_convert), (theora_dec_sink_convert),
21942 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
21943 (theora_dec_chain):
21944 * ext/theora/theoraenc.c: (theora_enc_sink_link):
21945 Added first attempt at cropping of the image as required by the
21946 theora spec. We need more properties in the caps (offset_x,
21947 offset_y,stride) to implement this correctly.
21949 2004-07-28 Jan Schmidt <thaytan@mad.scientist.com>
21951 * ext/dvdnav/README:
21952 Update the README to use dvddemux
21953 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
21954 Ensure getcaps returns a subset of the template caps
21955 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
21956 (gst_mpeg2subt_init):
21957 Ensure getcaps returns a subset of the template caps
21958 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
21959 (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
21960 (gst_dvd_demux_get_subpicture_stream),
21961 (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
21962 * gst/mpegstream/gstdvddemux.h:
21963 Set the explicit caps on the current_video pad before pushing
21965 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
21966 (gst_mpeg_demux_get_audio_stream):
21967 Free caps used to gst_pad_set_explicit_caps, which takes a const
21970 2004-07-28 Thomas Vander Stichele <thomas at apestaart dot org>
21972 * configure.ac: update GStreamer requirement to 0.8.4 because of
21975 2004-07-28 Wim Taymans <wim@fluendo.com>
21977 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
21978 (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
21979 Add the pad to the element after setting up the caps. This
21980 makes it a lot easier to autoplug.
21982 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
21984 * gst/median/gstmedian.c:
21985 * gst/mpeg2subt/gstmpeg2subt.c:
21986 * gst/mpegaudioparse/gstmpegaudioparse.c:
21987 * gst/mpegstream/gstdvddemux.c:
21988 * gst/mpegstream/gstmpegdemux.c:
21989 * gst/mpegstream/gstmpegpacketize.c:
21990 * gst/rtjpeg/gstrtjpeg.c:
21991 * gst/rtjpeg/gstrtjpegdec.c:
21992 * gst/rtjpeg/gstrtjpegenc.c:
21993 * gst/sine/gstsinesrc.c:
21994 * gst/smooth/gstsmooth.c:
21995 * gst/smpte/gstsmpte.c:
21996 * gst/smpte/gstsmpte.h:
21997 * gst/stereo/gststereo.c:
21998 * gst/videofilter/gstgamma.c:
21999 * gst/videofilter/gstvideobalance.c:
22000 * gst/videofilter/gstvideofilter.c:
22001 * gst/videofilter/gstvideoflip.c:
22002 * gst/videoscale/gstvideoscale.c:
22003 * gst/videoscale/videoscale.c:
22004 * gst/videotestsrc/gstvideotestsrc.c:
22005 * gst/videotestsrc/videotestsrc.c:
22006 * gst/wavenc/gstwavenc.c:
22007 * gst/wavparse/gstwavparse.c:
22008 fix local includes and 64 bits constants
22010 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
22013 * gst-libs/gst/*/*.vcproj:
22015 more working plugins
22017 2004-07-27 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22019 * testsuite/alsa/Makefile.am:
22020 * testsuite/alsa/srcstate.c:
22021 add test for alsasrc changing state
22023 2004-07-27 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22025 * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
22027 * gst/silence/gstsilence.h:
22028 fix silence generation for 16bit raw audio
22030 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22032 * gst/matroska/matroska-demux.c:
22033 (gst_matroska_demux_parse_metadata),
22034 (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
22035 * gst/mpegaudio/common.c:
22036 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
22037 (gst_videoscale_getcaps), (gst_videoscale_link),
22038 (gst_videoscale_src_fixate), (gst_videoscale_init),
22039 (gst_videoscale_finalize):
22040 * gst/videoscale/gstvideoscale.h:
22041 * gst/videotestsrc/gstvideotestsrc.c:
22042 (gst_videotestsrc_get_capslist):
22043 * gst/wavenc/gstwavenc.c:
22044 * sys/oss/gstossmixer.c: (fill_labels):
22045 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
22046 (gst_ximagesink_handle_xevents),
22047 (gst_ximagesink_calculate_pixel_aspect_ratio),
22048 (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
22049 (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
22050 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
22051 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
22052 (gst_ximagesink_init), (gst_ximagesink_class_init):
22053 * sys/ximage/ximagesink.h:
22054 * sys/xvimage/xvimagesink.c:
22055 (gst_xvimagesink_calculate_pixel_aspect_ratio),
22056 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
22057 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
22058 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
22059 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
22060 * sys/xvimage/xvimagesink.h:
22061 first batch of pixel aspect ratio commits.
22063 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22065 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22066 (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
22067 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
22068 handle stride, needs work if we want to move stride handling
22069 upstream, but works correctly for our purposes.
22071 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22073 * gst/videoscale/README:
22074 add testing examples
22075 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
22076 (gst_videoscale_chain):
22077 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22078 (gst_videoscale_get_size):
22079 add get_size function that handles stride like videotestsrc.
22080 fixes conversion for YUV formats for as much as I can test them.
22082 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22084 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22085 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
22086 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22087 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
22088 (gst_xvimagesink_xvimage_put):
22089 further cleanups, logging, error handling and synchronizing
22091 2004-07-27 Wim Taymans <wim@fluendo.com>
22093 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
22094 (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
22095 (gst_videomixer_pad_set_property),
22096 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
22097 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
22098 (gst_videomixer_class_init), (gst_videomixer_init),
22099 (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
22100 (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
22101 (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
22102 (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
22103 (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
22104 (gst_videomixer_loop), (plugin_init):
22105 Be a nicer negotiation citizen and provide a getcaps function on
22106 the srcpad. This also fixes a crash when resizing.
22108 2004-07-27 Julien MOUTTE <julien@moutte.net>
22110 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22111 (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
22113 2004-07-27 Wim Taymans <wim@fluendo.com>
22115 * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
22116 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
22117 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
22118 (gst_pngenc_set_property):
22119 * ext/libpng/gstpngenc.h:
22120 Added snapshot property to pngenc.
22121 removed g_print from pngdec
22123 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
22125 * gst/ac3parse/ac3parse.vcproj
22126 * gst/adder/adder.vcproj
22127 * gst/alpha/alpha.vcproj
22128 * gst/alpha/alphacolor.vcproj
22129 * gst/asfdemux/asf.vcproj
22130 * gst/audioconvert/audioconvert.vcproj
22131 * gst/audiorate/audiorate.vcproj
22132 * gst/audioscale/audioscale.vcproj
22133 * gst/auparse/auparse.vcproj
22134 * gst/avi/avi.vcproj
22135 * gst/cdxaparse/cdxaparse.vcproj
22136 * gst/chart/chart.vcproj
22137 * gst/colorspace/colorspace.vcproj
22138 * gst/cutter/cutter.vcproj
22139 * gst/debug/debug.vcproj
22140 * gst/debug/efence.vcproj
22141 * gst/debug/navigationtest.vcproj
22142 * gst/deinterlace/deinterlace.vcproj
22143 * gst/effectv/effectv.vcproj
22144 * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
22145 * gst/filter/filter.vcproj
22146 * gst/flx/flxdec.vcproj
22147 * gst/goom/goom.vcproj
22148 * gst/interleave/interleave.vcproj
22149 * gst/law/alaw.vcproj
22150 * gst/law/mulaw.vcproj
22151 * gst/matroska/matroska.vcproj
22152 * gst/median/median.vcproj
22153 * gst/mixmatrix/mixmatrix.vcproj
22154 * gst/mpeg1sys/mpeg1systemencode.vcproj
22155 * gst/mpeg1videoparse/mp1videoparse.vcproj
22156 * gst/mpeg2sub/mpeg2subt.vcproj
22157 * gst/mpegaudio/mpegaudio.vcproj
22158 * gst/mpegaudioparse/mpegaudioparse.vcproj
22159 * gst/mpegstream/mpegstream.vcproj
22160 * gst/multifilesink/multifilesink.vcproj
22161 * gst/multipart/multipart.vcproj
22162 * gst/oneton/oneton.vcproj
22163 * gst/overlay/overlay.vcproj
22164 * gst/passthrough/passthrough.vcproj
22165 * gst/qtdemux/qtdemux.vcproj
22166 * gst/realmedia/rmdemux.vcproj
22167 * gst/rtjpeg/rtjpeg.vcproj
22168 * gst/rtp/rtp.vcproj
22169 * gst/silence/silence.vcproj
22170 * gst/sine/sinesrc.vcproj
22171 * gst/smooth/smooth.vcproj
22172 * gst/smpte/smpte.vcproj
22173 * gst/spectrum/spectrum.vcproj
22174 * gst/speed/speed.vcproj
22175 * gst/stereo/stereo.vcproj
22176 * gst/switch/switch.vcproj
22177 * gst/tags/tagedit.vcproj
22178 * gst/tcp/tcp.vcproj
22179 * gst/typefind/typefindfunctions.vcproj
22180 * gst/udp/udp.vcproj
22181 * gst/videobox/videobox.vcproj
22182 * gst/videocrop/videocrop.vcproj
22183 * gst/videodrop/videodrop.vcproj
22184 * gst/videofilter/gamma.vcproj
22185 * gst/videofilter/videobalance.vcproj
22186 * gst/videofilter/videofilter.vcproj
22187 * gst/videofilter/videoflip.vcproj
22188 * gst/videoflip/videoflip.vcproj
22189 * gst/videomixer/videomixer.vcproj
22190 * gst/videorate/videorate.vcproj
22191 * gst/videoscale/videoscale.vcproj
22192 * gst/videotestsrc/videotestsrc.vcproj
22193 * gst/virtualdub/virtualdub.vcproj
22194 * gst/volenv/volenv.vcproj
22195 * gst/volume/volume.vcproj
22196 * gst/wavenc/wavenc.vcproj
22197 * gst/wavparse/wavparse.vcproj
22198 * gst/y4m/y4menc.vcproj
22199 * gst-libs/gst/audio/audio.vcproj
22200 * gst-libs/gst/audio/audiofilter.vcproj
22201 * gst-libs/gst/colorbalance/colorbalance.vcproj
22202 * gst-libs/gst/idct/idtc.vcproj
22203 * gst-libs/gst/media-info/media-info.vcproj
22204 * gst-libs/gst/mixer/mixer.vcproj
22205 * gst-libs/gst/navigation/navigation.vcproj
22206 * gst-libs/gst/play/play.vcproj
22207 * gst-libs/gst/propertyprobe/propertyprobe.vcproj
22208 * gst-libs/gst/resample/resample.vcproj
22209 * gst-libs/gst/riff/riff.vcproj
22210 * gst-libs/gst/tuner/tuner.vcproj
22211 * gst-libs/gst/video/video.vcproj
22212 * gst-libs/gst/xoverlay/xoverlay.vcproj
22213 avoid problems with math.h, fix release dependancy
22214 rename GStreamer-0.8.lib to libgstreamer.lib
22216 2004-07-27 Julien MOUTTE <julien@moutte.net>
22218 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
22219 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
22220 the atom is not available we have to unlock the mutex. Fixes #148023
22222 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22224 * gst-libs/gst/media-info/media-info.h:
22225 issue for a vararg macro with MSVC
22227 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22229 * gst/effectv/effectv.vcproj
22230 * gst-libs/gst/idct/idct.vcproj:
22231 * gst-libs/gst/media-info/media-info.vcproj:
22232 * gst-libs/gst/navigation/navigation.vcproj:
22233 * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
22234 * gst-libs/gst/video/video.vcproj:
22235 * gst-libs/gst/xoverlay/xoverlay.vcproj:
22236 fixes for build problems
22238 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22240 * gst-libs/gst/audio/audio.def:
22241 * gst-libs/gst/audio/riff.def:
22242 add some definitions needed by plugins
22244 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22246 * gst/asfdemux/gstasfmux.c
22247 Fix some 64 bits constants to be glib friendly
22249 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22251 * gst/ac3parse/gstac3parse.c
22252 * gst/audioscale/gstaudioscale.c
22253 * gst/auparse/gstauparse.c
22254 * gst/colorspace/gstcolorspace.c
22255 * gst/colorspace/yuv2rgb.h
22256 local include fixes
22258 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22261 add more plugins to the build
22263 2004-07-26 Julien MOUTTE <julien@moutte.net>
22265 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22266 (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
22268 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
22270 * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
22271 (gst_level_set_property), (gst_level_get_property),
22272 (gst_level_base_init), (gst_level_class_init):
22273 add debugging categories. cleanups.
22275 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
22277 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22278 (gst_videoscale_planar411), (gst_videoscale_planar400),
22279 (gst_videoscale_packed422), (gst_videoscale_packed422rev),
22280 (gst_videoscale_scale_nearest_str1),
22281 (gst_videoscale_scale_nearest_str2),
22282 (gst_videoscale_scale_nearest_str4),
22283 (gst_videoscale_scale_nearest_16bit),
22284 (gst_videoscale_scale_nearest_24bit):
22285 fixed stride issues
22286 tested with 320x240 -> 321, 322, 324 x240
22287 tested with YV12, I420, YUY2, UYVY
22288 fixed packed422rev (don't think it could have worked before)
22289 by testing with UYVY
22291 2004-07-26 Benjamin Otte <otte@gnome.org>
22293 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
22294 (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
22296 add debugging category, add error checks like checking return values
22297 of setup calls, make sure it still works after
22298 PLAYING=>NULL=>PLAYING, fix encoding of mono streams
22300 2004-07-26 Wim Taymans <wim@fluendo.com>
22302 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
22303 (gst_mpeg_demux_get_audio_stream),
22304 (gst_mpeg_demux_process_private):
22305 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
22306 Check for error codes from the negotiation functions. Make sure
22307 we really set the pad caps when a new pad is created.
22309 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
22311 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
22312 (gst_ffmpeg_caps_to_pix_fmt):
22313 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
22314 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22315 (gst_ffmpegcolorspace_pad_link):
22316 don't make function do two things at the same time without reason.
22318 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22320 * gst/ac3parse/ac3parse.vcproj
22321 * gst/adder/adder.vcproj
22322 * gst/alpha/alpha.vcproj
22323 * gst/alpha/alphacolor.vcproj
22324 * gst/asfdemux/asf.vcproj
22325 * gst/audioconvert/audioconvert.vcproj
22326 * gst/audiorate/audiorate.vcproj
22327 * gst/audioscale/audioscale.vcproj
22328 * gst/auparse/auparse.vcproj
22329 * gst/avi/avi.vcproj
22330 * gst/cdxaparse/cdxaparse.vcproj
22331 * gst/chart/chart.vcproj
22332 * gst/colorspace/colorspace.vcproj
22333 * gst/cutter/cutter.vcproj
22334 * gst/debug/debug.vcproj
22335 * gst/debug/efence.vcproj
22336 * gst/debug/navigationtest.vcproj
22337 * gst/deinterlace/deinterlace.vcproj
22338 * gst/effectv/effectv.vcproj
22339 * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
22340 * gst/filter/filter.vcproj
22341 * gst/flx/flxdec.vcproj
22342 * gst/goom/goom.vcproj
22343 * gst/interleave/interleave.vcproj
22344 * gst/law/alaw.vcproj
22345 * gst/law/mulaw.vcproj
22346 * gst/matroska/matroska.vcproj
22347 * gst/median/median.vcproj
22348 * gst/mixmatrix/mixmatrix.vcproj
22349 * gst/mpeg1sys/mpeg1systemencode.vcproj
22350 * gst/mpeg1videoparse/mp1videoparse.vcproj
22351 * gst/mpeg2sub/mpeg2subt.vcproj
22352 * gst/mpegaudio/mpegaudio.vcproj
22353 * gst/mpegaudioparse/mpegaudioparse.vcproj
22354 * gst/mpegstream/mpegstream.vcproj
22355 * gst/multifilesink/multifilesink.vcproj
22356 * gst/multipart/multipart.vcproj
22357 * gst/oneton/oneton.vcproj
22358 * gst/overlay/overlay.vcproj
22359 * gst/passthrough/passthrough.vcproj
22360 * gst/qtdemux/qtdemux.vcproj
22361 * gst/realmedia/rmdemux.vcproj
22362 * gst/rtjpeg/rtjpeg.vcproj
22363 * gst/rtp/rtp.vcproj
22364 * gst/silence/silence.vcproj
22365 * gst/sine/sinesrc.vcproj
22366 * gst/smooth/smooth.vcproj
22367 * gst/smpte/smpte.vcproj
22368 * gst/spectrum/spectrum.vcproj
22369 * gst/speed/speed.vcproj
22370 * gst/stereo/stereo.vcproj
22371 * gst/switch/switch.vcproj
22372 * gst/tags/tagedit.vcproj
22373 * gst/tcp/tcp.vcproj
22374 * gst/typefind/typefindfunctions.vcproj
22375 * gst/udp/udp.vcproj
22376 * gst/videobox/videobox.vcproj
22377 * gst/videocrop/videocrop.vcproj
22378 * gst/videodrop/videodrop.vcproj
22379 * gst/videofilter/gamma.vcproj
22380 * gst/videofilter/videobalance.vcproj
22381 * gst/videofilter/videofilter.vcproj
22382 * gst/videofilter/videoflip.vcproj
22383 * gst/videoflip/videoflip.vcproj
22384 * gst/videomixer/videomixer.vcproj
22385 * gst/videorate/videorate.vcproj
22386 * gst/videoscale/videoscale.vcproj
22387 * gst/videotestsrc/videotestsrc.vcproj
22388 * gst/virtualdub/virtualdub.vcproj
22389 * gst/volenv/volenv.vcproj
22390 * gst/volume/volume.vcproj
22391 * gst/wavenc/wavenc.vcproj
22392 * gst/wavparse/wavparse.vcproj
22393 * gst/y4m/y4menc.vcproj
22394 more plugins supported under windows
22396 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
22398 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
22399 (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
22400 (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
22401 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
22402 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
22403 Add debugging statements. Use the sizes as returned by the
22404 *CreateImage calls.
22406 2004-07-26 Johan Dahlin <johan@gnome.org>
22408 * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
22409 the pad is negotiated.
22411 * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
22413 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22415 * gst-libs/gst/colorbalance/colorbalance.vcproj:
22416 * gst-libs/gst/idct/idct.vcproj:
22417 * gst-libs/gst/media-info/media-info.vcproj:
22418 * gst-libs/gst/mixer/mixer.vcproj:
22419 * gst-libs/gst/navigation/navigation.vcproj:
22420 * gst-libs/gst/play/play.vcproj:
22421 * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
22422 * gst-libs/gst/resample/resample.vcproj:
22423 * gst-libs/gst/tuner/tuner.vcproj:
22424 * gst-libs/gst/video/video.vcproj:
22425 * gst-libs/gst/xoverlay/xoverlay.vcproj:
22426 more plugins supported under windows
22428 2004-07-25 Iain <iain@prettypeople.org>
22430 * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
22431 pad now rather than when the pad is created because state changes wipe
22432 explicit caps (fixes #148043).
22434 2004-07-25 Sebastien Cote <sc5@hermes.usherb.ca>
22436 reviewed by Benjamin Otte <otte@gnome.org>
22438 * ext/mad/gstmad.c:
22439 fix mad plugin crashing on Sun (fixes #148289)
22441 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
22444 * gst/avi/avi.vcproj:
22445 * gst/matroska/matroska.def:
22446 * gst/matroska/matroska.vcproj:
22447 remove unused .def files
22449 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
22451 * gst-libs/gst/audio/gstaudiofilter.c:
22452 Clean the local include
22454 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
22457 * gst-libs/gst/audio/audio.def:
22458 * gst-libs/gst/audio/audio.vcproj:
22459 * gst-libs/gst/audio/audiofilter.vcproj:
22460 * gst-libs/gst/audio/riff.def:
22461 * gst-libs/gst/audio/riff.vcproj:
22462 * gst-libs/gst/gst-libs.def:
22463 * gst-libs/gst/gst-libs.vcproj:
22464 * gst/avi/avi.vcproj:
22465 * gst/avi/avi.vcproj:
22466 Copy the files where needed after building, cleaner projects
22468 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
22470 * gst/matroska/ebml-write.c:
22471 Fix some 64 bits constants to be glib friendly
22473 2004-07-24 Steve Lhomme <steve.lhomme@free.fr>
22476 * gst-libs/gst/gst-libs.def:
22477 * gst-libs/gst/gst-libs.vcproj:
22478 * gst/matroska/matroska.def:
22479 * gst/matroska/matroska.vcproj:
22480 Add the preliminary canvas to build plugins on Win32
22482 2004-07-23 Benjamin Otte <otte@gnome.org>
22484 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
22485 don't enfore negotiation from source side, it breaks
22486 sinesrc ! audioconvert ! osssink
22488 2004-07-22 David Schleef <ds@schleef.org>
22490 * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
22491 for ELF files, since they can easily be recognized as audio/mpeg.
22494 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
22496 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22497 (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
22498 (gst_videoscale_scale_nearest_24bit),
22499 (gst_videoscale_scale_nearest_16bit):
22500 fix 16bit and 24bit for stride (24bit might need testing)
22501 don't pretend we do more than one algorithm
22503 2004-07-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22507 * gst/multifilesink/Makefile.am:
22508 * gst/multifilesink/gstmultifilesink.c:
22509 (gst_multifilesink_get_formats),
22510 (gst_multifilesink_get_query_types), (_do_init),
22511 (gst_multifilesink_base_init), (gst_multifilesink_class_init),
22512 (gst_multifilesink_init), (gst_multifilesink_dispose),
22513 (gst_multifilesink_set_location), (gst_multifilesink_set_property),
22514 (gst_multifilesink_get_property), (gst_multifilesink_open_file),
22515 (gst_multifilesink_close_file), (gst_multifilesink_next_file),
22516 (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
22517 (gst_multifilesink_chain), (gst_multifilesink_change_state),
22518 (gst_multifilesink_uri_get_type),
22519 (gst_multifilesink_uri_get_protocols),
22520 (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
22521 (gst_multifilesink_uri_handler_init), (plugin_init):
22522 * gst/multifilesink/gstmultifilesink.h:
22523 * testsuite/Makefile.am:
22524 * testsuite/multifilesink/Makefile.am:
22525 * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
22526 (gst_newmedia_class_init), (gst_newmedia_init),
22527 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
22528 (newfile_signal), (test_signal), (main):
22529 multifilesink plugin for creating new files every time a new media
22530 discontinuity event occurs
22532 2004-07-22 Wim Taymans <wim@fluendo.com>
22534 * gst/alpha/Makefile.am:
22535 * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
22536 (gst_alpha_color_base_init), (gst_alpha_color_class_init),
22537 (gst_alpha_color_init), (gst_alpha_color_set_property),
22538 (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
22539 (transform), (gst_alpha_color_chain),
22540 (gst_alpha_color_change_state), (plugin_init):
22541 Stupid plugin to to RGBA to AYUV conversion because none of
22542 the colorspace plugins can handle that yet.
22544 2004-07-22 Wim Taymans <wim@fluendo.com>
22546 * examples/seeking/seek.c: (update_scale), (main):
22547 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
22548 (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
22549 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
22550 (gst_decode_bin_init), (gst_decode_bin_dispose),
22551 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
22552 (no_more_pads), (close_link), (type_found),
22553 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
22555 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
22556 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
22557 (gst_play_base_bin_dispose), (queue_overrun),
22558 (gen_preroll_element), (remove_prerolls), (unknown_type),
22559 (no_more_pads), (new_stream), (setup_source),
22560 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
22561 (play_base_eos), (gst_play_base_bin_change_state),
22562 (gst_play_base_bin_add_element),
22563 (gst_play_base_bin_remove_element),
22564 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
22565 (gst_play_base_bin_unlink_stream),
22566 (gst_play_base_bin_get_streaminfo):
22567 * gst/playback/gstplaybin.c: (gen_video_element),
22568 (gen_audio_element):
22569 * gst/playback/gststreaminfo.h:
22570 More playback updates, attempt to fix things after the state change
22573 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
22575 * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
22576 (gst_videoscale_scale_nearest_16bit):
22579 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
22581 * gst/videotestsrc/gstvideotestsrc.c:
22582 (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
22583 (gst_videotestsrc_init), (gst_videotestsrc_get),
22584 (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
22585 (gst_videotestsrc_get_property):
22586 * gst/videotestsrc/gstvideotestsrc.h:
22587 * gst/videotestsrc/videotestsrc.c:
22588 * gst/videotestsrc/videotestsrc.h:
22589 cleanup and commenting
22591 2004-07-21 Wim Taymans <wim@fluendo.com>
22593 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
22594 (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
22595 (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
22596 (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
22597 (_find_chain_get_unknown_part), (_find_streams_check),
22598 (gst_ogg_demux_push), (gst_ogg_pad_push):
22599 * ext/theora/theoradec.c: (theora_get_formats),
22600 (theora_dec_src_convert), (theora_dec_sink_convert),
22601 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22602 (theora_dec_chain):
22603 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
22604 (vorbis_dec_convert), (vorbis_dec_src_query),
22605 (vorbis_dec_src_event), (vorbis_dec_event):
22606 More seeking fixes, oggdemux now supports seeking to time and
22607 uses the downstream element to convert granulepos to time.
22608 Seeking in theora-only ogg files now works.
22610 2004-07-21 Wim Taymans <wim@fluendo.com>
22612 * ext/theora/theoradec.c: (gst_theora_dec_init),
22613 (theora_get_formats), (theora_get_event_masks),
22614 (theora_get_query_types), (theora_dec_src_convert),
22615 (theora_dec_sink_convert), (theora_dec_src_query),
22616 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
22617 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
22618 (vorbis_get_event_masks), (vorbis_get_query_types),
22619 (gst_vorbis_dec_init), (vorbis_dec_convert),
22620 (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
22621 Added query/convert/formats functions to vorbis and theora decoders
22622 so that the outside world can use them too. Fixed seeking on an
22623 ogg/theora/vorbis file by disabling the seeking seeking on the
22626 2004-07-21 Julien MOUTTE <julien@moutte.net>
22628 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
22629 (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
22630 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
22631 images creation for both elements. We don't create the image on caps
22632 nego or renego, we just destroy the internal one if present if it does
22633 not match the needs. The chain function takes care of creating a new
22635 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
22636 (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
22637 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
22638 (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
22639 the image format information. The buffer pool checks for the context
22640 image format and discard images with different formats.
22641 * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
22643 2004-07-21 Thomas Vander Stichele <thomas at apestaart dot org>
22645 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22646 (gst_ffmpegcolorspace_chain):
22647 no point in doing any chaining if the pad we want to push from
22650 2004-07-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
22652 * gst-libs/gst/riff/riff-media.c:
22653 (gst_riff_create_audio_caps_with_data):
22654 Fix double end-to-native symbol conversion (#148021).
22656 2004-07-20 David Schleef <ds@schleef.org>
22658 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
22659 Don't use an Atom that doesn't exist.
22661 2004-07-20 Wim Taymans <wim@fluendo.com>
22663 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22664 (gst_multifdsink_add), (gst_multifdsink_get_stats),
22665 (gst_multifdsink_client_remove),
22666 (gst_multifdsink_handle_client_write),
22667 (gst_multifdsink_queue_buffer):
22668 * gst/tcp/gstmultifdsink.h:
22669 More multifdsink stats. Avoid deadlock by releasing locks
22670 before sending out a signal.
22672 2004-07-20 Thomas Vander Stichele <thomas at apestaart dot org>
22676 added Hungarian translation (Laszlo Dvornik)
22678 2004-07-20 Wim Taymans <wim@fluendo.com>
22680 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22681 (gst_multifdsink_add), (gst_multifdsink_client_remove),
22682 (gst_multifdsink_handle_client_write),
22683 (gst_multifdsink_queue_buffer):
22684 * gst/tcp/gsttcp-marshal.list:
22685 Fixed the stupid marshal definition.
22687 2004-07-20 Wim Taymans <wim@fluendo.com>
22689 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22690 (gst_multifdsink_init), (gst_multifdsink_add),
22691 (gst_multifdsink_client_remove),
22692 (gst_multifdsink_handle_client_write),
22693 (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
22694 (gst_multifdsink_set_property), (gst_multifdsink_get_property),
22695 (gst_multifdsink_init_send):
22696 * gst/tcp/gstmultifdsink.h:
22697 Added more stats, added timeout for a client, fixed some typos
22698 and added some comments.
22700 2004-07-20 Wim Taymans <wim@fluendo.com>
22702 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22703 (gst_multifdsink_add), (gst_multifdsink_get_stats),
22704 (gst_multifdsink_client_remove),
22705 (gst_multifdsink_handle_client_write):
22706 * gst/tcp/gstmultifdsink.h:
22707 * gst/tcp/gsttcp-marshal.list:
22708 Added get_stats method that returns a GValueArray of
22711 2004-07-19 Benjamin Otte <otte@gnome.org>
22713 * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
22714 make sure longname, description and author are valid UTF-8
22716 2004-07-19 Thomas Vander Stichele <thomas at apestaart dot org>
22718 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
22719 (gst_ximagesink_set_property):
22720 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
22721 (gst_xvimagesink_set_property):
22722 make sure SYNCHRONOUS is respected after getting the X context
22724 2004-07-18 Thomas Vander Stichele <thomas at apestaart dot org>
22726 * gst/matroska/matroska-demux.c:
22727 (gst_matroska_demux_handle_src_event),
22728 (gst_matroska_demux_parse_blockgroup):
22729 * gst/matroska/matroska-ids.h:
22730 add BlockReference tag and ignore it to clear out log.
22731 ignore NAVIGATION events to clear out log.
22733 2004-07-18 Thomas Vander Stichele <thomas at apestaart dot org>
22735 * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
22736 (gst_matroska_demux_add_stream):
22737 * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
22738 add debug categories
22740 2004-07-16 Wim Taymans <wim@fluendo.com>
22742 * ext/libpng/Makefile.am:
22743 * ext/libpng/gstpng.c: (plugin_init):
22744 * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
22745 (gst_pngdec_get_type), (gst_pngdec_base_init),
22746 (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
22747 (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
22748 * ext/libpng/gstpngdec.h:
22751 2004-07-16 Julien MOUTTE <julien@moutte.net>
22753 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
22754 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
22755 (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
22756 (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
22757 (gst_ximagesink_buffer_alloc):
22758 * sys/ximage/ximagesink.h:
22759 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22760 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
22761 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
22762 (gst_xvimagesink_buffer_alloc):
22763 * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
22764 again. Using internal data pointer of the x(v)image to store image's
22765 data to be coherent with the buffer alloc mechanism. Investigated the
22766 image destruction code to be sure that everything gets freed correctly.
22768 2004-07-16 Wim Taymans <wim@fluendo.com>
22770 * gst-libs/gst/riff/riff-read.c:
22771 (gst_riff_read_strf_vids_with_data),
22772 (gst_riff_read_strf_auds_with_data):
22773 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
22774 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
22775 Make sure we don't create 0 sized subbuffers in riff-read.
22776 Signal the no more pads signal after reading the avi header.
22778 2004-07-16 Wim Taymans <wim@fluendo.com>
22780 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
22781 (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
22782 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
22783 (gst_decode_bin_init), (gst_decode_bin_dispose),
22784 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
22785 (no_more_pads), (close_link), (type_found),
22786 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
22787 (gst_decode_bin_change_state), (plugin_init):
22788 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
22789 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
22790 (gst_play_base_bin_dispose), (queue_overrun),
22791 (gen_preroll_element), (remove_prerolls), (unknown_type),
22792 (no_more_pads), (new_stream), (setup_source),
22793 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
22794 (play_base_eos), (gst_play_base_bin_change_state),
22795 (gst_play_base_bin_add_element),
22796 (gst_play_base_bin_remove_element),
22797 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
22798 (gst_play_base_bin_unlink_stream),
22799 (gst_play_base_bin_get_streaminfo):
22800 * gst/playback/gstplaybasebin.h:
22801 Better error recovery. Added configurable preroll queue size. Faster
22802 detection of no-more-pads.
22804 2004-07-16 Wim Taymans <wim@fluendo.com>
22806 * gst-libs/gst/video/video.h:
22807 Added 32 bits RGBA. Not sure if we should use another mime-type
22808 for alpha rgb. Currently the presence of the alpha_mask property
22809 signals an alpha channel.
22811 2004-07-16 Wim Taymans <wim@fluendo.com>
22813 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
22814 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
22815 FPS seems to be 0.0 to MAX everywhere else.
22817 2004-07-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
22819 * gst-libs/gst/riff/riff-media.c:
22820 (gst_riff_create_video_caps_with_data):
22821 mp42/mp43 (no caps) exist too.
22822 * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
22823 Set pixel_width/height; we've got them in-caps.
22824 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
22825 * gst/wavparse/gstwavparse.c: (plugin_init):
22826 Both are valid primary.
22827 * sys/oss/gstossmixer.c:
22828 Remove i18n hack and enable translations.
22830 2004-07-15 Benjamin Otte <otte@gnome.org>
22832 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22833 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
22834 fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
22836 2004-07-15 Benjamin Otte <otte@gnome.org>
22838 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
22839 (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
22840 (gst_alsa_close_audio):
22841 disable some of the debugging code for now. Writing debugging to a
22842 buffer is broken in current alsalib releases.
22844 2004-07-12 Benjamin Otte <otte@gnome.org>
22846 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
22849 2004-07-14 Thomas Vander Stichele <thomas at apestaart dot org>
22851 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
22852 (theora_dec_src_query), (theora_dec_event):
22853 * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
22854 add debugging categories. Remove \n's.
22856 2004-07-13 Johan Dahlin <johan@gnome.org>
22858 * gst/playback/gstplaybin.c (gst_play_bin_set_property)
22859 (gst_play_bin_get_property): Impl.
22861 2004-07-13 Wim Taymans <wim@fluendo.com>
22863 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
22864 When trying to find the stream length, seek back N pages
22865 instead of just one, where N is the number of streams in
22868 2004-07-13 Wim Taymans <wim@fluendo.com>
22870 * gst-libs/gst/riff/riff-media.c:
22871 (gst_riff_create_audio_caps_with_data),
22872 (gst_riff_create_audio_caps),
22873 (gst_riff_create_audio_template_caps):
22874 * gst-libs/gst/riff/riff-media.h:
22875 * gst-libs/gst/riff/riff-read.c:
22876 (gst_riff_read_strf_vids_with_data),
22877 (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
22878 * gst-libs/gst/riff/riff-read.h:
22879 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
22880 (gst_avi_demux_add_stream):
22881 Set codec_data on caps for avidemuxer.
22883 2004-07-12 David Schleef <ds@schleef.org>
22885 * configure.ac: Fix test for Objective C
22887 2004-07-12 Jan Schmidt <thaytan@mad.scientist.com>
22888 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
22889 (gst_gdk_pixbuf_chain):
22890 Add svg and pcx to template caps, and ensure that getcaps returns a
22891 subset of the template caps.
22892 Copy each row manually for output, as gdkpixbuf may pad the
22893 rowstride to a 32-bit word boundary.
22895 2004-07-12 Wim Taymans <wim@fluendo.com>
22897 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
22898 (gst_riff_create_video_template_caps):
22899 Fix the template caps to include some more media types.
22901 2004-07-12 Wim Taymans <wim@fluendo.com>
22903 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
22904 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
22905 (compare_ranks), (print_feature), (gst_decode_bin_init),
22906 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
22907 (try_to_link_1), (new_pad), (close_link), (type_found),
22908 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
22909 (gst_decode_bin_change_state), (plugin_init):
22910 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
22911 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
22912 (gst_play_base_bin_dispose), (queue_overrun),
22913 (gen_preroll_element), (remove_prerolls), (no_more_pads),
22914 (new_stream), (setup_source), (gst_play_base_bin_set_property),
22915 (gst_play_base_bin_get_property), (play_base_eos),
22916 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
22917 (gst_play_base_bin_remove_element),
22918 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
22919 (gst_play_base_bin_unlink_stream),
22920 (gst_play_base_bin_get_streaminfo):
22921 * gst/playback/gstplaybasebin.h:
22922 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
22923 (gst_play_bin_class_init), (gst_play_bin_init),
22924 (gst_play_bin_dispose), (gst_play_bin_set_property),
22925 (gst_play_bin_get_property), (gen_video_element),
22926 (gen_audio_element), (remove_sinks), (setup_sinks),
22927 (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
22928 (gst_play_bin_send_event), (gst_play_bin_get_formats),
22929 (gst_play_bin_convert), (gst_play_bin_get_query_types),
22930 (gst_play_bin_query), (plugin_init):
22931 * gst/playback/test4.c: (main):
22932 More fixes on reusing of the element.
22934 2004-07-11 Benjamin Otte <otte@gnome.org>
22936 * ext/mad/gstmad.c: (normal_seek):
22937 allow seeking for other methods than just SET
22939 2004-07-11 Andy Wingo <wingo@pobox.com>
22941 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
22942 float, "any" caps -> buffer_frames=[0,MAX].
22944 * gst/interleave/interleave.c (interleave_getcaps): Seems the core
22945 doesn't intersect our caps with the template any more. Do it
22947 (interleave_buffered_loop): Use g_newa instead of malloc/free.
22949 2004-07-09 Wim Taymans <wim@fluendo.com>
22951 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
22952 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
22953 (compare_ranks), (print_feature), (gst_decode_bin_init),
22954 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
22955 (try_to_link_1), (new_pad), (close_link), (type_found),
22956 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
22957 (gst_decode_bin_change_state), (plugin_init):
22958 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
22959 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
22960 (gst_play_base_bin_dispose), (queue_overrun),
22961 (gen_preroll_element), (remove_prerolls), (no_more_pads),
22962 (new_stream), (setup_source), (gst_play_base_bin_set_property),
22963 (gst_play_base_bin_get_property), (play_base_eos),
22964 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
22965 (gst_play_base_bin_remove_element),
22966 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
22967 (gst_play_base_bin_unlink_stream),
22968 (gst_play_base_bin_get_streaminfo):
22969 * gst/playback/gstplaybasebin.h:
22970 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
22971 (gst_play_bin_class_init), (gst_play_bin_init),
22972 (gst_play_bin_dispose), (gst_play_bin_set_property),
22973 (gst_play_bin_get_property), (gen_video_element),
22974 (gen_audio_element), (remove_sinks), (setup_sinks),
22975 (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
22976 (gst_play_bin_send_event), (gst_play_bin_get_formats),
22977 (gst_play_bin_convert), (gst_play_bin_get_query_types),
22978 (gst_play_bin_query), (plugin_init):
22979 * gst/playback/test4.c: (main):
22980 Work on object reuse and seeking.
22982 2004-07-09 Wim Taymans <wim@fluendo.com>
22984 * examples/seeking/seek.c: (iterate):
22985 Don't consume all CPU in the idle loop.
22987 2004-07-09 Wim Taymans <wim@fluendo.com>
22989 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
22990 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
22991 Add pad to element *after* setting the pad functions so that
22992 the scheduler can use the correct ones.
22994 2004-07-09 Wim Taymans <wim@fluendo.com>
22996 * ext/theora/theoradec.c: (theora_dec_from_granulepos),
22997 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
22998 Sync to keyframe after seek
23000 2004-07-09 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23002 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
23003 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
23004 (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
23005 * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
23006 * ext/libvisual/visual.c: (gst_visual_change_state):
23007 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
23008 * ext/theora/theoradec.c: (theora_dec_change_state):
23009 * ext/theora/theoraenc.c: (theora_enc_change_state):
23010 * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
23011 * gst-libs/gst/navigation/navigation.c:
23012 * gst/adder/gstadder.c: (gst_adder_change_state):
23013 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
23014 (gst_audio_convert_get_buffer):
23015 * gst/multipart/multipartdemux.c:
23016 (gst_multipart_demux_change_state):
23017 * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
23018 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
23019 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
23020 * gst/videoscale/gstvideoscale.c:
23021 (gst_videoscale_handle_src_event):
23022 * gst/volume/gstvolume.c: (volume_chain_int16):
23023 don't assert in state change, this should be done by the base
23025 various debugging fixes.
23027 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23030 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
23031 (gst_play_dispose), (gst_play_set_location),
23032 (gst_play_set_data_src), (gst_play_set_video_sink),
23033 (gst_play_set_audio_sink), (gst_play_set_visualization),
23034 (gst_play_connect_visualization), (gst_play_get_sink_element),
23035 (gst_play_get_all_by_interface):
23036 * gst-libs/gst/play/play.h:
23037 add new method to get elements implementing an interface.
23038 add various error logging
23040 2004-07-08 Wim Taymans <wim@fluendo.com>
23042 * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
23043 (make_mpeg_pipeline), (make_mpegnt_pipeline),
23044 (make_playerbin_pipeline), (query_durations_elems),
23045 (query_durations_pads), (query_positions_elems),
23046 (query_positions_pads), (update_scale), (iterate), (stop_seek),
23048 Added playbin seeking example.
23050 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23052 * gst-libs/gst/play/play.c: (gst_play_set_location),
23053 (gst_play_set_data_src), (gst_play_set_video_sink),
23054 (gst_play_set_audio_sink), (gst_play_set_visualization),
23055 (gst_play_connect_visualization), (gst_play_get_framerate):
23056 use a macro to look up elements from hash table
23058 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23060 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
23061 (gst_play_get_length_callback), (gst_play_set_location),
23062 (gst_play_seek_to_time), (gst_play_set_data_src),
23063 (gst_play_set_video_sink), (gst_play_set_audio_sink),
23064 (gst_play_set_visualization), (gst_play_connect_visualization),
23065 (gst_play_get_sink_element):
23066 - add debugging info
23067 - fix looking up sink elements by iterating over complete caps
23068 - put everything except for source and autoplugger in a complete bin
23070 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23072 * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
23073 * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
23074 (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
23075 (gst_alsa_sink_write), (gst_alsa_sink_loop):
23076 * ext/alsa/gstalsasink.h:
23077 - add debugging info
23078 - clean up schizophrenia of data/buffer/event
23079 - fix double event unref error
23081 2004-07-08 Wim Taymans <wim@fluendo.com>
23083 * gst/playback/Makefile.am:
23084 Add headers to noinst
23086 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23088 * tools/gst-launch-ext-m.m:
23089 * tools/gst-launch-ext.1.in:
23090 convert to the third millenium
23092 2004-07-07 David Schleef <ds@schleef.org>
23094 * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
23096 2004-07-07 Wim Taymans <wim@fluendo.com>
23098 * gst/playback/Makefile.am:
23099 * gst/playback/README:
23100 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23101 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23102 (compare_ranks), (print_feature), (gst_decode_bin_init),
23103 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23104 (try_to_link_1), (new_pad), (close_link), (type_found),
23105 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23107 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23108 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23109 (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
23110 (gen_preroll_element), (no_more_pads), (new_stream),
23111 (setup_source), (gst_play_base_bin_set_property),
23112 (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
23113 (gst_play_base_bin_add_element),
23114 (gst_play_base_bin_remove_element),
23115 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23116 (gst_play_base_bin_unlink_stream),
23117 (gst_play_base_bin_get_streaminfo):
23118 * gst/playback/gstplaybasebin.h:
23119 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23120 (gst_play_bin_class_init), (gst_play_bin_init),
23121 (gst_play_bin_dispose), (gst_play_bin_set_property),
23122 (gst_play_bin_get_property), (gen_video_element),
23123 (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
23124 (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
23125 (gst_play_bin_get_formats), (gst_play_bin_convert),
23126 (gst_play_bin_get_query_types), (gst_play_bin_query),
23128 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
23129 (gst_stream_info_get_type), (gst_stream_info_class_init),
23130 (gst_stream_info_init), (gst_stream_info_new),
23131 (gst_stream_info_dispose), (gst_stream_info_set_property),
23132 (gst_stream_info_get_property):
23133 * gst/playback/gststreaminfo.h:
23134 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
23136 * gst/playback/test2.c: (main):
23137 * gst/playback/test3.c: (update_scale), (main):
23138 More playbin fixes. Added README. Do better element filtering.
23139 Added base class to preroll media. Added test apps.
23141 2004-07-07 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23143 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
23144 * ext/mpeg2dec/gstmpeg2dec.h:
23145 various debugging improvements. Reset stream to next picture
23146 instead of sequence header, otherwise seeks cannot work.
23148 2004-07-07 Wim Taymans <wim@fluendo.com>
23150 * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
23151 (gst_video_box_class_init), (gst_video_box_set_property),
23152 (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
23153 Use pad_alloc where possible.
23155 2004-07-07 Wim Taymans <wim@fluendo.com>
23157 * sys/oss/gstosselement.c: (gst_osselement_reset),
23158 (gst_osselement_parse_caps):
23159 * sys/oss/gstosselement.h:
23160 * sys/oss/gstosssrc.c: (gst_osssrc_get):
23161 Fix offset on osssrc.
23163 2004-07-07 Wim Taymans <wim@fluendo.com>
23165 * ext/theora/theora.c: (plugin_init):
23166 * ext/theora/theoradec.c: (theora_dec_from_granulepos),
23167 (theora_dec_src_query), (theora_dec_chain):
23168 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
23169 (theora_enc_sink_link), (theora_buffer_from_packet),
23170 (theora_push_packet), (theora_enc_chain):
23171 Fix theora granulepos calculation.
23172 Fix overflow in duration/position calculation.
23173 Bump rank to PRIMARY for theoradec.
23174 Use granulepos of last packet to calculate position.
23175 Set keyframe flag on buffers when needed.
23177 2004-07-06 David Schleef <ds@schleef.org>
23179 * gst/playback/Makefile.am: 'test' in bin_PROGRAMS? Are you
23180 serious? (Fixed, obviously.)
23182 2004-07-06 Thomas Vander Stichele <thomas at apestaart dot org>
23186 added Czech translation (Miloslav Trmac)
23188 2004-07-05 Wim Taymans <wim@fluendo.com>
23190 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23191 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23192 (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
23193 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23194 (close_link), (type_found), (gst_decode_bin_set_property),
23195 (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
23196 (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
23197 (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
23198 (gst_decode_bin_query), (plugin_init):
23199 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23200 (gst_play_bin_class_init), (gst_play_bin_init),
23201 (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
23202 (get_video_element), (new_pad), (setup_source),
23203 (gst_play_bin_set_property), (gst_play_bin_get_property),
23204 (gst_play_bin_change_state), (gst_play_bin_add_element),
23205 (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
23206 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23207 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23208 (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
23209 * gst/playback/test.c: (main):
23210 More fixes, cleaned up playbin, make it use decodebin. Added
23211 threaded property to playbin.
23213 2004-07-05 Wim Taymans <wim@fluendo.com>
23216 * gst/playback/Makefile.am:
23217 * gst/playback/decodetest.c: (main):
23218 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23219 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23220 (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
23221 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23222 (close_link), (type_found), (gst_decode_bin_set_property),
23223 (gst_decode_bin_get_property), (gst_decode_bin_change_state),
23224 (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
23225 (gst_decode_bin_get_formats), (gst_decode_bin_convert),
23226 (gst_decode_bin_get_query_types), (gst_decode_bin_query),
23228 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23229 (gst_play_bin_class_init), (gst_play_bin_init),
23230 (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
23231 (collect_sink_pads), (find_compatibles), (close_pad_link),
23232 (try_to_link_1), (new_pad), (close_link), (type_found),
23233 (setup_source), (gst_play_bin_set_property),
23234 (gst_play_bin_get_property), (gst_play_bin_factory_filter),
23235 (compare_ranks), (gst_play_bin_collect_factories),
23236 (gst_play_bin_change_state), (gst_play_bin_add_element),
23237 (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
23238 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23239 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23240 (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
23241 * gst/playback/test.c: (main):
23242 Added some playback helper elements and some test apps, very alpha
23245 2004-07-04 Benjamin Otte <otte@gnome.org>
23247 * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
23248 only restart audio when we indeed have an xrun to fix repeated
23249 xruns. Fix suggested by Giuliano Pochini.
23251 2004-07-03 David Schleef <ds@schleef.org>
23253 * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
23254 call to gst_debug_log() if debugging is disabled (bug #145118)
23256 2004-07-03 Benjamin Otte <otte@gnome.org>
23258 * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
23259 use our own functions for restarting the alsa device.
23260 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
23261 I should apply patches myself - use MIN for the third argument, not
23262 the second, this fixes seeking
23264 2004-07-02 David Schleef <ds@schleef.org>
23266 * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
23267 (gst_flacdec_write): Actually, GST_PAD_CAPS() has nothing to
23270 2004-07-02 David Schleef <ds@schleef.org>
23272 * ext/flac/gstflacdec.c: (gst_flacdec_write): Set duration on
23273 output buffers. Fix logic mistake. (bug #144866)
23275 2004-07-02 David Schleef <ds@schleef.org>
23277 * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
23278 on X. (bug #144753)
23280 2004-07-02 David Schleef <ds@schleef.org>
23282 * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
23283 (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
23285 * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
23286 (gst_osselement_rate_probe_check): Add another workaround for
23287 buggy drivers (bug #145336)
23289 2004-07-02 David Schleef <ds@schleef.org>
23291 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
23292 Most systems don't have MSG_NOSIGNAL.
23294 2004-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
23297 * gst-libs/gst/colorbalance/Makefile.am:
23298 * gst-libs/gst/mixer/Makefile.am:
23299 * gst-libs/gst/play/Makefile.am:
23300 * gst-libs/gst/tuner/Makefile.am:
23301 (hopefully) fix both install and dist and make error message useful.
23302 needs testing across automakes.
23304 2004-07-02 Benjamin Otte <otte@gnome.org>
23306 * ext/ogg/gstogg.c: (plugin_init):
23307 we require bytestream now
23308 * ext/ogg/gstoggdemux.c:
23309 huge diff to implement chain setup in a fast and generic way. This
23310 improves tag reading and startup of huge files (read: Theora videos)
23311 quite a bit. It probably contains bugs, too, so please test.
23312 Seeking is not improved to the fast method.
23314 2004-06-29 Wim Taymans <wim@fluendo.com>
23316 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
23317 * ext/ogg/gstoggmux.c:
23318 Fix memleak in oggdemux when running unconnected pads.
23319 doc update in mux, start working on keyframe mode.
23321 2004-06-29 Benjamin Otte <otte@gnome.org>
23323 * sys/oss/gstosssink.c:
23324 * sys/oss/gstosssrc.c:
23325 advertise correct template caps - we indeed do non-native endianness
23326 and 8bit audio has no endianness
23327 * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
23328 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
23329 avoid (wrong) duplications in getcaps function and return
23332 2004-06-29 Wim Taymans <wim@fluendo.com>
23334 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
23335 (gst_multifdsink_class_init), (gst_multifdsink_add),
23336 (gst_multifdsink_remove), (gst_multifdsink_clear),
23337 (gst_multifdsink_client_remove),
23338 (gst_multifdsink_handle_client_read),
23339 (gst_multifdsink_client_queue_data),
23340 (gst_multifdsink_client_queue_caps),
23341 (gst_multifdsink_client_queue_buffer),
23342 (gst_multifdsink_handle_client_write),
23343 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
23344 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
23345 (gst_multifdsink_init_send), (gst_multifdsink_close):
23346 Fix wrong GList iteration that could crash the server when
23347 more then 2 clients disconnect at the same time. Read all the
23348 pending commands in one batch to recover from command storms under
23351 2004-06-28 Wim Taymans <wim@fluendo.com>
23353 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
23354 (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
23355 (gst_videomixer_pad_set_property),
23356 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
23357 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
23358 (gst_videomixer_class_init), (gst_videomixer_init),
23359 (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
23360 (pad_zorder_compare), (gst_videomixer_sort_pads),
23361 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
23362 (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
23363 (gst_videomixer_update_queues), (gst_videomixer_loop),
23365 Avoid divide by zero, choose masterpad as the pad with the highest
23368 2004-06-27 Julien Moutte <julien@moutte.net>
23370 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
23371 (gst_ximagesink_xwindow_new):
23372 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
23373 (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
23374 function directly. We might want to call it from somewhere else one day.
23376 2004-06-27 Julien Moutte <julien@moutte.net>
23378 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
23379 (gst_ximagesink_xwindow_new):
23380 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
23381 (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
23382 window decorations.
23384 2004-06-27 Wim Taymans <wim@fluendo.com>
23386 * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
23387 (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
23388 (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
23389 (gst_dvdec_set_property), (gst_dvdec_get_property):
23390 * ext/dv/gstdvdec.h:
23391 Implement drop_factor property to lower the framerate with
23394 2004-06-27 Thomas Vander Stichele <thomas at apestaart dot org>
23396 * gst-libs/gst/colorbalance/Makefile.am:
23397 * gst-libs/gst/mixer/Makefile.am:
23398 * gst-libs/gst/play/Makefile.am:
23399 * gst-libs/gst/tuner/Makefile.am:
23400 unbreak Company's fix that didn't install the -enum.h files
23402 2004-06-27 Wim Taymans <wim@fluendo.com>
23404 * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
23405 (gst_dvdec_change_state):
23406 * ext/dv/gstdvdec.h:
23407 Fix timestamp, duration and offset of the buffers.
23409 2004-06-27 Wim Taymans <wim@fluendo.com>
23411 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
23412 (gst_multifdsink_class_init), (gst_multifdsink_add),
23413 (gst_multifdsink_remove), (gst_multifdsink_clear),
23414 (gst_multifdsink_client_remove),
23415 (gst_multifdsink_handle_client_read),
23416 (gst_multifdsink_client_queue_data),
23417 (gst_multifdsink_client_queue_caps),
23418 (gst_multifdsink_client_queue_buffer),
23419 (gst_multifdsink_handle_client_write),
23420 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
23421 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
23422 (gst_multifdsink_init_send), (gst_multifdsink_close):
23423 * gst/tcp/gstmultifdsink.h:
23424 * gst/tcp/gsttcpserversink.c:
23425 (gst_tcpserversink_handle_server_read),
23426 (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
23427 More multifdsink fixes, more recovery policy fixes.
23428 Removed stupid g_print
23430 2004-06-26 Wim Taymans <wim@fluendo.com>
23432 * gst/tcp/Makefile.am:
23433 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
23434 (gst_multifdsink_get_type), (gst_multifdsink_base_init),
23435 (gst_multifdsink_class_init), (gst_multifdsink_init),
23436 (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
23437 (gst_multifdsink_handle_client_read),
23438 (gst_multifdsink_client_queue_data),
23439 (gst_multifdsink_client_queue_caps),
23440 (gst_multifdsink_client_queue_buffer),
23441 (gst_multifdsink_handle_client_write),
23442 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
23443 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
23444 (gst_multifdsink_chain), (gst_multifdsink_set_property),
23445 (gst_multifdsink_get_property), (gst_multifdsink_init_send),
23446 (gst_multifdsink_close), (gst_multifdsink_change_state):
23447 * gst/tcp/gstmultifdsink.h:
23448 * gst/tcp/gsttcpplugin.c: (plugin_init):
23449 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
23450 (gst_tcpserversink_class_init), (gst_tcpserversink_init),
23451 (gst_tcpserversink_handle_server_read),
23452 (gst_tcpserversink_handle_select),
23453 (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
23454 (gst_tcpserversink_init_send), (gst_tcpserversink_close):
23455 * gst/tcp/gsttcpserversink.h:
23456 Added multifdsink, made tcpserversink a subclass of fdsink, removed
23457 one of the locks, added recovery policy to multifdsink.
23459 2004-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
23461 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
23462 fix decision for when getting frames with same timestamp
23463 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
23464 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
23465 (gst_v4lsrc_get_property):
23466 * sys/v4l/gstv4lsrc.h:
23467 add latency offset property
23469 2004-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
23471 * gst/videorate/gstvideorate.c: (gst_videorate_chain),
23473 fix debugging. add category.
23475 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
23477 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
23480 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
23482 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
23483 (gst_alsa_src_get_time), (gst_alsa_src_loop),
23484 (gst_alsa_src_change_state):
23485 return a time that is in sync with the element's processing
23487 2004-06-25 Wim Taymans <wim@fluendo.com>
23489 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
23490 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
23491 (gst_tcpserversink_client_remove),
23492 (gst_tcpserversink_handle_client_read),
23493 (gst_tcpserversink_client_queue_data),
23494 (gst_tcpserversink_client_queue_caps),
23495 (gst_tcpserversink_client_queue_buffer),
23496 (gst_tcpserversink_handle_client_write),
23497 (gst_tcpserversink_queue_buffer),
23498 (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
23499 (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
23500 (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
23501 (gst_tcpserversink_close):
23502 * gst/tcp/gsttcpserversink.h:
23503 Serversink rewrite. Really do non blocking writes to clients and
23504 maintain an internal queue to handle slower clients while not
23505 disturbing fast clients.
23507 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
23509 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
23510 better debug, don't override OFFSET and OFFSET_END
23512 2004-06-25 Iain <iain@prettypeople.org>
23514 * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
23515 name=source for the wavparse pipeline.
23517 2004-06-24 Johan Dahlin <johan@gnome.org>
23519 * ext/theora/theoraenc.c (theora_enc_chain): Call
23520 gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
23521 streamheader caps are set correctly.
23523 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
23525 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
23526 (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
23527 respect minimum bitrate; same could be done for max bitrate
23529 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
23531 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
23532 (gst_vorbisenc_setup):
23533 fix sample rate range
23535 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
23537 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
23538 (gst_oggvorbisenc_setup):
23539 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
23540 (gst_vorbisenc_setup):
23541 resolve ambiguities in code and description
23543 2004-06-24 Wim Taymans <wim@fluendo.com>
23545 * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
23546 * ext/alsa/gstalsa.h:
23547 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
23548 (gst_alsa_src_update_avail), (gst_alsa_src_loop):
23549 Use alsa trigger_tstamp to get the timestamp of the first
23550 sample in the buffer for more precise sync. Some cleanups.
23552 2004-06-24 Wim Taymans <wim@fluendo.com>
23554 * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
23555 (gst_audiorate_init), (gst_audiorate_chain),
23556 (gst_audiorate_set_property), (gst_audiorate_get_property):
23557 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
23558 (gst_videorate_chain):
23559 Added some logging, fixed an overflow bug in videorate.
23561 2004-06-24 Benjamin Otte <otte@gnome.org>
23563 * ext/kio/Makefile.am:
23564 fix for builddir != srcdir and distcheck
23566 2004-06-24 Benjamin Otte <otte@gnome.org>
23568 * gst-libs/gst/colorbalance/Makefile.am:
23569 * gst-libs/gst/mixer/Makefile.am:
23570 * gst-libs/gst/play/Makefile.am:
23571 * gst-libs/gst/tuner/Makefile.am:
23572 * gst/tcp/Makefile.am:
23573 * sys/dxr3/Makefile.am:
23574 don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
23576 Also add all *.list files that were missing.
23578 add a distcheck hook to ensure the above doesn't happen again.
23580 2004-06-23 David I. Lehn <dlehn@users.sourceforge.net>
23582 * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
23584 2004-06-23 Colin Walters <walters@redhat.com>
23586 * m4/Makefile.am: Distribute gst-fionread.m4.
23588 2004-06-23 Thomas Vander Stichele <thomas at apestaart dot org>
23590 * configure.ac: back to dev
23592 2004-06-23 Wim Taymans <wim@fluendo.com>
23594 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
23595 (gst_alsa_xrun_recovery):
23596 * ext/alsa/gstalsa.h:
23597 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
23598 (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
23599 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
23600 (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
23601 (gst_alsa_src_loop):
23602 Add clock to alsasrc. Take new capture timestamp when
23603 restarting after an overrun. Split up some functions between
23604 alsasrc and alsasink.
23606 === release 0.8.2 ===
23608 2004-06-23 Thomas Vander Stichele <thomas at apestaart dot org>
23610 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
23611 (gst_alsa_change_state), (gst_alsa_update_avail),
23612 (gst_alsa_xrun_recovery):
23613 * ext/alsa/gstalsa.h:
23614 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
23615 merge back changes from release
23617 2004-06-23 Wim Taymans <wim@fluendo.com>
23619 * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
23620 (gst_audiorate_init), (gst_audiorate_chain),
23621 (gst_audiorate_set_property), (gst_audiorate_get_property):
23622 Implement sample dropping and notify
23624 2004-06-22 Wim Taymans <wim@fluendo.com>
23626 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
23627 (theora_enc_sink_link), (theora_buffer_from_packet),
23628 (theora_push_packet), (theora_enc_chain):
23629 Some cleanups, make sure the timestamps are correct.
23631 2004-06-22 Wim Taymans <wim@fluendo.com>
23633 * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
23634 (gst_alsa_change_state), (gst_alsa_update_avail),
23635 (gst_alsa_xrun_recovery):
23636 * ext/alsa/gstalsa.h:
23637 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
23638 Cleanups, take queued samples into account when reporting
23641 2004-06-22 Wim Taymans <wim@fluendo.com>
23643 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
23644 (gst_videorate_init):
23645 Initialize the property as well.
23647 2004-06-22 Wim Taymans <wim@fluendo.com>
23649 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
23650 (gst_videorate_init), (gst_videorate_chain),
23651 (gst_videorate_set_property), (gst_videorate_get_property):
23652 Add property to make videorate silent.
23653 Add property to prefer new frames over old ones.
23655 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
23657 * sys/osxvideo/Makefile.am:
23658 Workaround so that the osxvideo .so file gets linked with the
23659 Cocoa, OpenGL and QuickTime frameworks
23661 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
23663 * sys/osxaudio/Makefile.am:
23664 Workaround so that the osxaudio .so file gets linked with the
23665 CoreAudio framework
23667 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
23670 Whoops, my fault...fixed build issues
23672 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
23675 Add objective-c support if running in Darwin/Mac OS X
23678 * sys/osxvideo/Makefile.am:
23679 * sys/osxvideo/osxvideosink.h:
23680 * sys/osxvideo/osxvideosink.m:
23681 * sys/osxvideo/cocoawindow.h:
23682 * sys/osxvideo/cocoawindow.m:
23683 Add osxvideosink, a cocoa-based osx video sink
23686 2004-06-19 Jan Schmidt <thaytan@mad.scientist.com>
23687 * ext/dvdnav/gst-dvd:
23688 Grab the gconf key from the right spot
23689 * gst/debug/gstnavseek.c: (gst_navseek_init),
23690 (gst_navseek_segseek), (gst_navseek_handle_src_event),
23691 (gst_navseek_chain):
23692 * gst/debug/gstnavseek.h:
23693 Add 's', 'e' and 'l' keypresses to navseek to define the start,end
23694 and loop parameters of a segment seek.
23695 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
23696 (gst_videotestsrc_get_event_masks),
23697 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
23698 * gst/videotestsrc/gstvideotestsrc.h:
23699 Add seeking support to videotestsrc
23700 Initialise the timestamp_offset variable.
23702 2004-06-18 Wim Taymans <wim@fluendo.com>
23704 * ext/sidplay/gstsiddec.cc:
23705 Fix negotiation and set correct end offset.
23707 2004-06-18 Thomas Vander Stichele <thomas at apestaart dot org>
23709 * configure.ac: branch and prerelease
23711 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
23713 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
23714 (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
23715 (gst_tcpclientsrc_init_receive):
23716 * gst/tcp/gsttcpclientsrc.h:
23717 read caps when connecting to server for GDP so we set them correctly
23719 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
23721 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
23722 notify drops and duplicates
23723 * gst/videoscale/videoscale.c: (videoscale_get_structure):
23724 no good reason to limit ourselves to 100x100
23726 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
23728 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
23729 (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
23730 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
23731 (gst_v4lsrc_get_property):
23732 * sys/v4l/gstv4lsrc.h:
23733 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
23734 (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
23735 (gst_v4l_set_audio):
23736 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
23737 (gst_v4lsrc_try_capture):
23738 * sys/v4l/v4lsrc_calls.h:
23739 change try_palette to more general try_capture
23740 add autoprobe option so we can turn off autoprobing
23743 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
23747 * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
23748 (gst_ximagesink_class_init):
23749 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
23750 (gst_xvimagesink_class_init):
23751 run them as finalize, not dispose, since dispose can be invoked
23754 2004-06-17 Wim Taymans <wim@fluendo.com>
23756 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
23757 (gst_alsa_get_time), (gst_alsa_xrun_recovery):
23758 * ext/alsa/gstalsa.h:
23759 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
23760 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
23761 (gst_alsa_src_change_state):
23762 * ext/alsa/gstalsasrc.h:
23763 Make the xrun code timestamp and offset the buffers correctly.
23764 moved the clock to the base class, use alsa methods to get time.
23765 Do correct timestamping on outgoing buffers.
23767 2004-06-17 Wim Taymans <wim@fluendo.com>
23769 * gst/audiorate/Makefile.am:
23770 * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
23771 (gst_audiorate_base_init), (gst_audiorate_class_init),
23772 (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
23773 (gst_audiorate_set_property), (gst_audiorate_get_property),
23774 (gst_audiorate_change_state), (plugin_init):
23775 Added an audiorate converter that fills in gaps.
23777 2004-06-17 Johan Dahlin <johan@gnome.org>
23779 * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
23781 2004-06-16 Wim Taymans <wim@fluendo.com>
23783 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
23784 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
23785 (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
23786 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
23787 (gst_v4lsrc_get_property):
23788 * sys/v4l/gstv4lsrc.h:
23789 Added a copy mode to v4lsrc where it will output a copied version
23790 of its internal hardware buffer.
23791 Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
23794 2004-06-16 Wim Taymans <wim@fluendo.com>
23796 * sys/oss/gstosssrc.c: (gst_osssrc_get):
23799 2004-06-16 Wim Taymans <wim@fluendo.com>
23801 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
23802 (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
23803 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
23804 (gst_v4lsrc_get_property):
23805 * sys/v4l/gstv4lsrc.h:
23806 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
23807 Added a sync mode enum property to control v4lsrc timestamp method
23808 Removed the use-fixed-fps property and moved functionality in
23810 Don't error on an error value from v4l-conf, it might not always
23813 2004-06-16 Wim Taymans <wim@fluendo.com>
23815 * gst/videorate/Makefile.am:
23816 * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
23817 (gst_videorate_base_init), (gst_videorate_class_init),
23818 (gst_videorate_getcaps), (gst_videorate_link),
23819 (gst_videorate_init), (gst_videorate_chain),
23820 (gst_videorate_set_property), (gst_videorate_get_property),
23821 (gst_videorate_change_state), (plugin_init):
23822 Added a video timestamp corrector.
23824 2004-06-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
23826 fixed a potential leak with previous commit
23828 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
23830 2004-06-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
23832 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
23833 Added missing refcount, fixes bug #144425
23834 Cheers Tim for finding the bug
23836 2004-06-15 Thomas Vander Stichele <thomas at apestaart dot org>
23838 * sys/v4l/gstv4l.c: (plugin_init):
23839 * sys/v4l/gstv4lcolorbalance.c:
23840 * sys/v4l/gstv4lcolorbalance.h:
23841 * sys/v4l/gstv4lelement.c:
23842 * sys/v4l/gstv4lelement.h:
23843 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
23844 * sys/v4l/gstv4lmjpegsink.h:
23845 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
23846 * sys/v4l/gstv4lmjpegsrc.h:
23847 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
23848 (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
23849 (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
23850 * sys/v4l/gstv4lsrc.h:
23851 * sys/v4l/gstv4ltuner.c:
23852 * sys/v4l/gstv4ltuner.h:
23853 * sys/v4l/gstv4lxoverlay.c:
23854 * sys/v4l/gstv4lxoverlay.h:
23855 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
23856 (gst_v4l_set_window), (gst_v4l_enable_overlay):
23857 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
23858 (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
23859 (gst_v4l_set_audio):
23860 * sys/v4l/v4l_calls.h:
23861 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
23862 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
23863 (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
23864 (gst_v4lmjpegsink_playback_init),
23865 (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
23866 (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
23867 (gst_v4lmjpegsink_playback_stop),
23868 (gst_v4lmjpegsink_playback_deinit):
23869 * sys/v4l/v4lmjpegsink_calls.h:
23870 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
23871 (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
23872 (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
23873 (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
23874 (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
23875 (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
23876 * sys/v4l/v4lmjpegsrc_calls.h:
23877 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
23878 (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
23879 (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
23880 (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
23881 (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
23882 (gst_v4lsrc_try_palette):
23883 * sys/v4l/v4lsrc_calls.h:
23884 bunch of paranoia cleanups
23886 2004-06-14 David Schleef <ds@schleef.org>
23888 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
23889 (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
23890 Send discont events and change timestamps appropriately when
23891 we get a seek event. (bug #144240)
23892 * ext/cdparanoia/gstcdparanoia.h:
23894 2004-06-14 Benjamin Otte <otte@gnome.org>
23896 * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
23897 snd_pcm_hw_params_set_rate since the latter fails for no good
23898 reason on some setups.
23900 2004-06-14 David Schleef <ds@schleef.org>
23902 * gst/volume/demo.c: (value_changed_callback): exp10() is not
23903 standard. Thank you for playing.
23905 2004-06-14 Wim Taymans <wim@fluendo.com>
23907 * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
23908 Patch 1.3 broke the ordering of the colorspace info and
23909 made the plugin basically work by coincidence, reordered
23912 2004-06-14 Thomas Vander Stichele <thomas at apestaart dot org>
23914 * ext/lame/gstlame.c:
23915 * ext/mad/gstmad.c:
23916 sync caps. Make sure mad can only output a list of rates, not
23917 a full range. In the future, have three caps lists for each of the
23918 mpeg versions. Change mpegversion to a double as well.
23920 2004-06-14 Thomas Vander Stichele <thomas at apestaart dot org>
23922 * gst/volume/.cvsignore:
23923 * gst/volume/Makefile.am:
23924 * gst/volume/demo.c: (value_changed_callback), (idler),
23925 (setup_gui), (main):
23926 added small demo app
23928 2004-06-13 Jan Schmidt <thaytan@mad.scientist.com>
23929 * ext/esd/esdsink.c: (gst_esdsink_change_state):
23930 * ext/esd/esdsink.h:
23931 Close the esd connection on pause, because esd will just wait -
23932 blocking all other esd clients indefinitely.
23934 2004-06-12 Christophe Fergeau <teuf@gnome.org>
23936 * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
23937 previous commit with GST_DEBUG
23939 2004-06-12 Thomas Vander Stichele <thomas at apestaart dot org>
23942 add a header check for a dvdread header in dvdnav. Fixes #133002
23944 2004-06-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
23946 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
23947 * gst/tcp/gsttcpclientsink.h:
23948 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
23949 * gst/tcp/gsttcpclientsrc.h:
23950 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
23951 (gst_tcpserversink_handle_server_read),
23952 (gst_tcpserversink_init_send):
23953 * gst/tcp/gsttcpserversink.h:
23954 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
23955 * gst/tcp/gsttcpserversrc.h:
23956 Modified the tcp plugins so they are portable (IPv4,IPv6, any future
23959 2004-06-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
23962 Added ogg library so that OSX detects libtheora properly
23964 2004-06-11 Wim Taymans <wim@fluendo.com>
23966 * ext/theora/theoradec.c: (theora_dec_chain),
23967 (theora_dec_change_state):
23968 Don't try to decode frames before we received a keyframe.
23970 2004-06-11 Wim Taymans <wim@fluendo.com>
23972 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
23973 (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
23974 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
23975 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
23976 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
23977 Added property to set the maximum delay of a page.
23979 2004-06-10 Wim Taymans <wim@fluendo.com>
23981 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
23982 (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
23983 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
23984 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
23985 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
23986 Added max-delay property to control the maximum amount
23987 of data to put in one page.
23989 2004-06-10 Wim Taymans <wim@fluendo.com>
23991 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
23992 (gst_theora_enc_init), (theora_enc_sink_link),
23993 (theora_buffer_from_packet), (theora_enc_set_property),
23994 (theora_enc_get_property):
23995 Set duration on encoded buffer, added some more properties
23997 2004-06-10 Wim Taymans <wim@fluendo.com>
23999 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
24000 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24001 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
24002 * ext/theora/theoraenc.c: (theora_enc_chain):
24003 Fix refcounting bugs
24005 2004-06-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
24007 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
24008 (gst_asf_demux_loop), (gst_asf_demux_process_file),
24009 (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
24010 (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
24011 (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
24012 (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
24013 (gst_asf_demux_change_state):
24014 * gst/asfdemux/gstasfdemux.h:
24015 You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
24016 feels like. I think we should set a new requirement for demuxers
24017 from now on to implement sane loop functions, data loops, query
24018 and seek functions before first commit into CVS. And this commit
24019 fixes all of the above.
24021 2004-06-10 Christophe Fergeau <teuf@gnome.org>
24023 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
24024 vorbis comments are properly encoded in UTF-8 before adding them
24027 2004-06-09 Benjamin Otte <otte@gnome.org>
24029 * ext/alsa/gstalsa.c: (add_channels):
24030 handle min <= max correctly
24031 * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
24032 (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
24033 add fixation functions so we fixate correctly. No preferring of alaw
24034 anymore because it's the first structure.
24035 * ext/alsa/gstalsa.h:
24036 * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
24037 (gst_alsa_hw_params_dump):
24038 add functions to ease debugging in alsalib
24039 * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
24040 (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
24041 (gst_alsa_start_audio):
24042 only specify hw params if we really setup a format (fixes #134007 -
24043 or at least works around it)
24045 2004-06-09 Wim Taymans <wim@fluendo.com>
24047 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
24048 (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
24049 (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
24050 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
24051 (gst_ogg_mux_loop):
24052 Use stream caps to setup the initial pages in the ogg stream.
24053 Correctly set the streamheader caps on the srcpad.
24055 2004-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
24057 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
24058 (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
24059 (gst_v4lsrc_getcaps):
24060 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24061 (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
24062 add querying of fps lists for webcams. Negotiating to a framerate
24065 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24067 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
24068 (theora_push_buffer), (theora_push_packet),
24069 (theora_set_header_on_caps), (theora_enc_chain):
24070 mark buffers and put on streamheader, raw theora streaming
24071 now works too, whee
24073 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24075 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
24076 (gst_tcp_gdp_read_caps):
24077 do a looping read for caps and GDP headers too
24079 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24081 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24082 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
24083 return EOS instead of NULL in _get
24085 2004-06-08 Wim Taymans <wim@fluendo.com>
24087 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
24088 (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
24089 (gst_tcp_gdp_write_caps):
24090 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24091 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
24092 (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
24095 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24097 * ext/vorbis/Makefile.am:
24098 * ext/vorbis/vorbis.c: (plugin_init):
24099 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
24100 (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
24101 (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
24102 (vorbis_parse_change_state):
24103 * ext/vorbis/vorbisparse.h:
24104 adding a vorbisparse element that marks the buffers, streaming
24105 raw vorbis using GDP now works, whee
24107 2004-06-08 Wim Taymans <wim@fluendo.com>
24109 * ext/jpeg/Makefile.am:
24111 * ext/jpeg/gstjpeg.c: (plugin_init):
24112 * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
24113 (gst_smokedec_base_init), (gst_smokedec_class_init),
24114 (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
24115 * ext/jpeg/gstsmokedec.h:
24116 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
24117 (gst_smokeenc_base_init), (gst_smokeenc_class_init),
24118 (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
24119 (gst_smokeenc_resync), (gst_smokeenc_chain),
24120 (gst_smokeenc_set_property), (gst_smokeenc_get_property):
24121 * ext/jpeg/gstsmokeenc.h:
24122 * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
24123 (smokecodec_flush_destination), (smokecodec_term_destination),
24124 (smokecodec_init_source), (smokecodec_fill_input_buffer),
24125 (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
24126 (smokecodec_term_source), (smokecodec_encode_new),
24127 (smokecodec_decode_new), (smokecodec_info_free),
24128 (smokecodec_set_quality), (smokecodec_get_quality),
24129 (smokecodec_set_threshold), (smokecodec_get_threshold),
24130 (smokecodec_set_bitrate), (smokecodec_get_bitrate),
24131 (find_best_size), (abs_diff), (put), (smokecodec_encode),
24132 (smokecodec_parse_header), (smokecodec_decode):
24133 * ext/jpeg/smokecodec.h:
24134 Added a new simple jpeg based codec
24136 2004-06-08 Wim Taymans <wim@fluendo.com>
24138 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24139 (gst_multipart_mux_loop):
24142 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24144 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24145 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
24146 (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
24147 (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
24148 (gst_tcpserversink_init_send), (gst_tcpserversink_close):
24149 * gst/tcp/gsttcpserversink.h:
24150 take streamheader into account
24152 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24154 * gst/level/Makefile.am:
24155 * gst/level/gstlevel.c: (gst_level_class_init):
24156 clean up marshal generation
24158 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24160 * gst/tcp/Makefile.am:
24161 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
24162 (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
24163 (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
24164 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
24165 (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
24166 (gst_tcpclientsrc_get_property):
24167 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
24168 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
24169 (gst_tcpserversink_handle_client_read),
24170 (gst_tcpserversink_handle_client_write),
24171 (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
24172 * gst/tcp/gsttcpserversink.h:
24173 add signals client-added and client-removed
24174 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
24175 (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
24176 (gst_tcpserversrc_get_property):
24177 uniformized, change default protocol to NONE
24178 * gst/tcp/gsttcp-marshal.list: added
24179 2004-06-07 Benjamin Otte <otte@gnome.org>
24181 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24182 handle discont events if they happen before caps nego
24184 2004-06-07 Wim Taymans <wim@fluendo.com>
24186 * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
24187 (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
24188 (gst_multipart_demux_plugin_init):
24189 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24190 (gst_multipart_mux_init), (gst_multipart_mux_loop),
24191 (gst_multipart_mux_change_state):
24192 Small updates, fix a memleak
24194 2004-06-07 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24196 * configure.ac: OSS portability
24197 * ext/arts/gst_arts.c: idem
24198 * sys/oss/gstosselement.c: idem
24199 * sys/oss/gstossmixer.c: idem
24200 * sys/oss/gstosssink.c: idem
24201 * sys/oss/gstosssrc.c: idem
24202 * sys/oss/oss_probe.c: idem
24203 - check for soundcard.h in different places for some BSD
24205 2004-06-07 Jan Schmidt <thaytan@mad.scientist.com>
24208 Add me to the authors file
24210 Increase the libdv requirement to >= version 0.100
24211 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
24212 (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
24213 (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
24214 * ext/dv/gstdvdec.h:
24215 Add support for the new_media flag when sending DISCONT events
24216 Make the querying work when video pad is not linked
24218 2004-06-07 Tim-Philipp Müller <t.i.m@zen.co.uk>
24220 reviewed by Benjamin Otte <otte@gnome.org>
24222 * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
24223 create a NULL-initialized array of pads, so we don't think they
24224 exist already. (fixes #143130)
24226 2004-06-07 Benjamin Otte <otte@gnome.org>
24228 * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
24229 (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
24230 (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
24231 don't use // coments
24233 2004-06-07 Benjamin Otte <otte@gnome.org>
24235 * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
24236 cast to GstClockTime to get higher granularity
24237 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24238 use gst_element_set_time_delay to get the exact time
24239 * ext/mad/gstmad.c: (gst_mad_chain):
24240 use the negotiated rate instead of the current frame's rate which
24241 might be wrong because of bit errors. This avoids emitting totally
24242 bogus timestamps and screwing sync.
24245 2004-06-07 Tim-Philipp Müller <t.i.m@zen.co.uk>
24247 reviewed by Benjamin Otte <otte@gnome.org>
24249 * gst/adder/gstadder.c: (gst_adder_loop):
24250 properly error out when no negotiation has happened yet. (fixes
24253 2004-06-06 Benjamin Otte <otte@gnome.org>
24255 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
24256 forward correctly transformed offset in discont events. Based on
24257 patch by Arwed v. Merkatz. (fixes #142851)
24259 2004-06-06 David Schleef <ds@schleef.org>
24261 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
24262 G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS. Should fix compile
24263 problems on several systems.
24265 2004-06-06 Benjamin Otte <otte@gnome.org>
24267 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
24268 use explicit caps on the srcpad
24269 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
24270 properly error out if caps couldn't be set (fixes #142764)
24272 2004-06-06 Benjamin Otte <otte@gnome.org>
24274 * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
24275 (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
24276 (gst_alsa_start_audio):
24277 - don't call set_periods_integer anymore, it breaks the
24278 configuration randomly
24279 - call snd_pcm_hw_params_set_access directly instead of using masks
24280 - don't fail if the sw_params can't be set, just use the default
24281 params and hope it works. Alsalib has weird issues when you touch
24282 sw_params and does no proper error reporting about what failed.
24283 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
24284 (gst_alsa_close_audio):
24285 make our alsa debugging go via gst debugging and not conditionally
24287 * ext/alsa/gstalsa.h:
24288 add ALSA_DEBUG_FLUSH macro
24289 * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
24291 wrap alsa errors to be printed via the gst debugging system and not
24294 2004-06-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
24296 * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
24297 (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
24298 (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
24299 (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
24300 (qtdemux_parse_trak):
24301 * gst/qtdemux/qtdemux.h:
24302 Bitch. Also known as seeking, querying & co.
24303 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
24304 (gst_osssink_change_state):
24305 * sys/oss/gstosssink.h:
24306 Resyncing is for weenies, this hack is no longer needed and was
24307 broken anyway (since it - unintendedly - always leaves resync to
24310 2004-06-05 Andrew Turner <zxombie@hotpop.com>
24312 * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
24313 * gst/tcp/gsttcpclientsrc.h: idem
24314 - define MSG_NOSIGNAL if not done
24315 - include unistd.h for off_t
24318 2004-06-05 Benjamin Otte <otte@gnome.org>
24321 * ext/kio/Makefile.am:
24322 check for qt's moc preprocessor explicitly and use it
24324 2004-06-03 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
24326 * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
24327 don't get a signal for EPIPE on socket writes
24328 (somebody check if this works on other platforms)
24330 2004-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
24332 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
24333 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
24334 check error condition on available samples correctly
24336 2004-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
24338 * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
24340 * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
24341 (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
24342 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
24343 (gst_tcpserversrc_gdp_read_header):
24344 use ssize_t over size_t since the former is signed and thus the
24345 check for error codes can work
24347 2004-06-02 Wim Taymans <wim@fluendo.com>
24351 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24352 (gst_multipart_mux_loop):
24355 2004-06-02 Wim Taymans <wim@fluendo.com>
24357 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24358 (gst_multipart_mux_init), (gst_multipart_mux_loop),
24359 (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
24360 (gst_multipart_mux_change_state):
24361 Added configurable boundary specifier, added the value as a
24362 caps field as well.
24364 2004-06-02 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24366 * gst/tcp/gsttcp.c:
24367 * gst/tcp/gsttcpclientsrc.c:
24368 * gst/tcp/gsttcpclientsrc.h:
24369 * gst/tcp/gsttcpserversrc.c:
24370 - portability fix, to compile on OSX
24373 * sys/osxaudio/gstosxaudioelement.c:
24374 * sys/osxaudio/gstosxaudiosink.c:
24375 * sys/osxaudio/gstosxaudiosrc.c:
24376 - compilation warnings on OSX
24379 2004-06-02 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24381 * ext/vorbis/vorbisdec.c : sign warning fixes
24383 * gst-libs/gst/mixer/mixertrack.c :
24384 do no use defines which are glib 2.4 specific
24386 2004-06-01 Christophe Fergeau <teuf@gnome.org>
24388 * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
24389 buffer since libflac doesn't expect it (reports a sync error when
24390 it encounters that)
24393 2004-06-01 Owen Fraser-Green <owen@discobabe.net>
24395 * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
24396 * gst-libs/gst/mixer/mixertrack.c:
24397 (gst_mixer_track_get_property), (get_mixer_track_init),
24398 (get_mixer_track_get_property): Added property accessors
24399 * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
24400 * gst-libs/gst/mixer/mixeroptions.c:
24401 (gst_mixer_options_get_values): Added
24402 * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
24403 * gst-libs/gst/mixer/mixer.c: Fixed comment
24406 2004-06-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
24408 * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
24409 improve error messages on open
24412 2004-06-01 Thomas Vander Stichele <thomas at apestaart dot org>
24414 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
24415 check if v4l-conf is in path
24417 2004-06-01 Thomas Vander Stichele <thomas at apestaart dot org>
24419 * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
24420 change assert to a more readable error message
24422 2004-05-31 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24424 * gst-libs/gst/tuner/tunerchannel.h:
24425 - add a freq_multiplicator field to make the conversion
24426 between internal frequency unit and Hz
24427 * sys/v4l/gstv4lelement.c:
24428 * sys/v4l2/gstv4l2element.c:
24429 - change default video device to /dev/video0
24430 * sys/v4l/v4l_calls.c:
24431 * sys/v4l2/v4l2_calls.c:
24432 - we only expose frequency to the user in Hz instead of
24433 bastard v4lX unit (either 62.5kHz or 62.5Hz)
24435 2004-05-31 Jan Schmidt <thaytan@mad.scientist.com>
24436 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
24437 Initialise b_o_s and e_o_s variables
24438 * gst-libs/gst/riff/riff-media.c:
24439 (gst_riff_create_video_caps_with_data):
24440 Add some unusual fourcc's from mplayer avi's
24441 * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
24442 Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
24445 2004-05-28 Wim Taymans <wim@fluendo.com>
24448 * gst/alpha/Makefile.am:
24449 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
24450 (gst_alpha_get_type), (gst_alpha_base_init),
24451 (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
24452 (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
24453 (gst_alpha_chroma_key), (gst_alpha_chain),
24454 (gst_alpha_change_state), (plugin_init):
24455 A plugin to add an alpha channel to I420 video. Can optionally do
24457 * gst/multipart/Makefile.am:
24458 * gst/multipart/multipart.c: (plugin_init):
24459 * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
24460 (gst_multipart_demux_class_init), (gst_multipart_demux_init),
24461 (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
24462 (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
24463 (gst_multipart_demux_change_state),
24464 (gst_multipart_demux_plugin_init):
24465 * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
24466 (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
24467 (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
24468 (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
24469 (gst_multipart_mux_pad_unlink),
24470 (gst_multipart_mux_request_new_pad),
24471 (gst_multipart_mux_handle_src_event),
24472 (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
24473 (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
24474 (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
24475 (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
24476 A Multipart demuxer/muxer. Not sure if it violates specs. Used to
24477 send multipart jpeg images to a browser.
24478 * gst/videobox/Makefile.am:
24479 * gst/videobox/README:
24480 * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
24481 (gst_video_box_get_type), (gst_video_box_base_init),
24482 (gst_video_box_class_init), (gst_video_box_init),
24483 (gst_video_box_set_property), (gst_video_box_get_property),
24484 (gst_video_box_sink_link), (gst_video_box_i420),
24485 (gst_video_box_ayuv), (gst_video_box_chain),
24486 (gst_video_box_change_state), (plugin_init):
24487 Crops or adds borders around an image. can do alpha channel
24489 * gst/videomixer/Makefile.am:
24490 * gst/videomixer/README:
24491 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
24492 (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
24493 (gst_videomixer_pad_get_sink_event_masks),
24494 (gst_videomixer_pad_get_property),
24495 (gst_videomixer_pad_set_property),
24496 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
24497 (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
24498 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
24499 (gst_videomixer_base_init), (gst_videomixer_class_init),
24500 (gst_videomixer_init), (gst_videomixer_request_new_pad),
24501 (gst_videomixer_handle_src_event),
24502 (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
24503 (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
24504 (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
24505 (gst_videomixer_loop), (gst_videomixer_get_property),
24506 (gst_videomixer_set_property), (gst_videomixer_change_state),
24508 Generic video mixer plugin, can handle multiple inputs all with
24509 different framerates and video sizes. Is fully alpha channel
24512 2004-05-27 Ronald Bultje <rbultje@ronald.bitfreak.net>
24514 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
24515 Select first track as master track. Not sure how else to handle
24517 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
24518 Discard discont events. Should fix #142962.
24520 2004-05-26 Ronald Bultje <rbultje@ronald.bitfreak.net>
24522 * ext/alsa/Makefile.am:
24523 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
24524 (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
24525 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
24526 (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
24527 (gst_alsa_mixer_get_option):
24528 * ext/alsa/gstalsamixer.h:
24529 * ext/alsa/gstalsamixeroptions.c:
24530 (gst_alsa_mixer_options_get_type),
24531 (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
24532 (gst_alsa_mixer_options_new):
24533 * ext/alsa/gstalsamixeroptions.h:
24534 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
24535 * ext/alsa/gstalsamixertrack.h:
24536 Add enumerations (as GstMixerOptions). Make correct distinction
24537 between input/output tracks. Add capture/playback private flag.
24538 Use flag to decide on whether to set capture or playback volumes
24539 or switches. Use playback and record switches.
24540 * gst-libs/gst/mixer/Makefile.am:
24541 * gst-libs/gst/mixer/mixer-marshal.list:
24542 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
24543 (gst_mixer_set_option), (gst_mixer_get_option),
24544 (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
24545 (gst_mixer_volume_changed), (gst_mixer_option_changed):
24546 * gst-libs/gst/mixer/mixer.h:
24547 * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
24548 (gst_mixer_options_class_init), (gst_mixer_options_init),
24549 (gst_mixer_options_dispose):
24550 * gst-libs/gst/mixer/mixeroptions.h:
24551 Add GstMixerOptions.
24552 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
24553 Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
24554 broken device detection on computers with multiple OSS sound
24557 2004-05-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
24559 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
24560 fixate nicely even when the peer is not negotiating
24562 2004-05-25 Benjamin Otte <in7y118@public.uni-hamburg.de>
24564 * gst/audioconvert/gstaudioconvert.c:
24565 (gst_audio_convert_parse_caps):
24566 make sure we don't allow depth > width
24567 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
24568 fixate endianness to G_BYTE_ORDER as default
24569 * gst/audioscale/gstaudioscale.c:
24570 we don't handle another endianness as host-endianness
24572 2004-05-25 David Schleef <ds@schleef.org>
24574 * gst/ffmpegcolorspace/mem.c: malloc() is in stdlib.h, not malloc.h
24576 2004-05-24 Benjamin Otte <otte@gnome.org>
24578 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
24579 (gst_oggvorbisenc_setup):
24580 properly fail when we can't setup the vorbis encoder due to
24581 unsupported settings
24582 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
24583 (gst_vorbisenc_setup):
24585 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
24586 fix case where warnings occured when one pad was unlinked while the
24587 other's link function was called
24589 2004-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
24591 * gst/tcp/Makefile.am:
24594 2004-05-24 Benjamin Otte <in7y118@public.uni-hamburg.de>
24596 * gst-libs/gst/resample/private.h:
24597 don't use optimizations that are #if 0'ed
24599 2004-05-24 Wim Taymans <wim@fluendo.com>
24601 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
24602 Fix potential division by zero error and hopefully get
24603 the position query right to get correct timestamps on avi
24606 2004-05-24 Wim Taymans <wim@fluendo.com>
24608 * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
24609 (gst_videoscale_scale_nearest_str2),
24610 (gst_videoscale_scale_nearest_str4),
24611 (gst_videoscale_scale_nearest_32bit),
24612 (gst_videoscale_scale_nearest_24bit),
24613 (gst_videoscale_scale_nearest_16bit):
24614 Fix the scaling algorithm and avoid a buffer overflow.
24615 removed the while loop in the scaling function as it
24616 was used for point sampling only.
24618 2004-05-24 Benjamin Otte <in7y118@public.uni-hamburg.de>
24620 * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
24621 (gst_id3_tag_class_init), (gst_id3_tag_init),
24622 (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
24623 (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
24624 (gst_id3_tag_send_tag_event):
24625 lots of fixes to make id3mux work and id3demux work correctly
24627 2004-05-24 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24630 add rules to build shout2send (was removed by accident
24631 when this module was no more marked experimental/broken)
24633 2004-05-24 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24635 * ext/shout2/gstshout2.c:
24636 * ext/shout2/gstshout2.h:
24637 adding a "connection problem" signal to shout2send
24640 2004-05-21 Thomas Vander Stichele <thomas at apestaart dot org>
24642 * ext/kio/kioreceiver.cpp:
24643 * ext/kio/kioreceiver.h:
24644 fix sign comparison issues
24646 2004-05-21 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24648 * gst/cdxaparse/gstcdxaparse.c:
24649 * gst/cdxaparse/gstcdxaparse.h:
24651 add some checks/sanity
24652 prepare for seek addition
24654 * sys/sunaudio/gstsunaudio.c:
24655 remove exported dupe init function
24657 2004-05-21 Jan Schmidt <thaytan@mad.scientist.com>
24659 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
24660 (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
24661 Fix format conversion and position querying.
24662 * gst/debug/progressreport.c: (gst_progressreport_report):
24663 Don't output a bogus total value that we didn't query.
24664 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
24665 Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
24666 only a blank window after xine has been used.
24668 2004-05-21 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
24671 sync with upstream version to fix test on FC2
24672 readd with -ko to preserve Id header
24674 2004-05-20 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24677 test for FIONREAD ioctl in sys/filio.h for Solaris compat.
24678 * gst/tcp/gsttcpclientsrc.c: idem
24679 * gst/tcp/gsttcpserversink.c: idem
24680 * gst/tcp/gsttcpserversrc.c: idem
24681 * m4/gst-fionread.m4: idem
24683 * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
24685 * configure.ac: enable speex plugin for speex 1.1.5+
24686 * ext/speex/gstspeexenc.c: fix cast warning
24688 * ext/esd/README: fix typo
24690 2004-05-20 David Schleef <ds@schleef.org>
24692 * configure.ac: Minor cosmetic change to convince the buildbot to
24694 * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
24695 (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
24696 (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
24697 (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
24698 (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
24699 (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
24700 More hacking. Plays audio now.
24702 2004-05-20 David Schleef <ds@schleef.org>
24707 2004-05-20 David Schleef <ds@schleef.org>
24709 * sys/osxaudio/Makefile.am: New OS X audio plugin by Zaheer Abbas Merali
24710 * sys/osxaudio/gstosxaudio.c:
24711 * sys/osxaudio/gstosxaudioelement.c:
24712 * sys/osxaudio/gstosxaudioelement.h:
24713 * sys/osxaudio/gstosxaudiosink.c:
24714 * sys/osxaudio/gstosxaudiosink.h:
24715 * sys/osxaudio/gstosxaudiosrc.c:
24716 * sys/osxaudio/gstosxaudiosrc.h:
24718 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
24720 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
24721 (gst_vorbisenc_chain):
24722 put the codec headers on the caps as streamheader as well as
24725 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
24727 * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
24728 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
24729 (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
24730 split up push_packet into two functions
24732 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
24734 * gst/tcp/.cvsignore:
24736 * gst/tcp/Makefile.am:
24738 * gst/tcp/gsttcp.c:
24739 * gst/tcp/gsttcp.h:
24740 * gst/tcp/gsttcpclientsink.c:
24741 * gst/tcp/gsttcpclientsink.h:
24742 * gst/tcp/gsttcpclientsrc.c:
24743 * gst/tcp/gsttcpclientsrc.h:
24744 * gst/tcp/gsttcpplugin.c:
24745 * gst/tcp/gsttcpserversink.c:
24746 * gst/tcp/gsttcpserversink.h:
24747 * gst/tcp/gsttcpserversrc.c:
24748 * gst/tcp/gsttcpserversrc.h:
24749 add new tcp elements
24751 2004-05-19 Wim Taymans <wim@fluendo.com>
24753 * gst/law/mulaw-conversion.c: (mulaw_encode):
24754 Fix overflow bug in ulaw encoding.
24756 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
24758 * ext/mad/gstmad.c: (gst_mad_handle_event):
24759 don't unref the event twice
24761 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
24764 remove -Wno-sign-compare
24766 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
24769 remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
24770 if you want to work against glib 2.2 and 2.4
24772 2004-05-19 Thomas Vander Stichele <thomas at apestaart dot org>
24774 * gst/tcp/Makefile.am:
24775 * gst/tcp/gsttcp.c:
24776 * gst/tcp/gsttcp.h:
24777 * gst/tcp/gsttcpsink.h:
24778 * gst/tcp/gsttcpsrc.h:
24779 gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
24781 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
24783 * gst/debug/tests.c: (md5_get_value):
24784 fix segfault on gst-inspect
24786 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
24788 * gst/debug/testplugin.c:
24789 * gst/debug/tests.c:
24790 * gst/debug/tests.h:
24791 add new extensible and configurable testing element. Current tests
24792 include buffer count, stream length, timestamp/duration matching and
24794 * gst/debug/Makefile.am:
24795 * gst/debug/gstdebug.c: (plugin_init):
24796 add infrastructure for new element
24798 2004-05-19 Johan Dahlin <johan@gnome.org>
24800 * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
24801 ending of the array. Fixes gst-inspect segfault on ppc.
24803 2004-05-19 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24805 * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
24807 * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
24809 2004-05-18 David Schleef <ds@schleef.org>
24811 * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
24812 warnings (bugs, actually) noticed by gcc but not forte.
24814 2004-05-18 David Schleef <ds@schleef.org>
24816 * sys/sunaudio/Makefile.am:
24817 * sys/sunaudio/gstsunaudio.c: New sunaudiosink
24819 2004-05-18 David Schleef <ds@schleef.org>
24821 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
24822 (gst_qtdemux_loop_header): Patch from dcm@acm.org (David Moore)
24823 to allow qtdemux to use non-seekable streams. (bug #142272)
24825 2004-05-18 David Schleef <ds@schleef.org>
24827 * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
24828 (gst_resample_sinc_ft_float): Remove use of static temporary
24829 buffer. This code was obviously not supposed to last long, but
24830 it's stuck in our ABI, so it required a little hack to make it
24831 ABI-compatible. Fixes #142585.
24832 * gst-libs/gst/resample/resample.h: same.
24834 2004-05-18 David Schleef <ds@schleef.org>
24836 * configure.ac: Add sunaudio
24837 * examples/Makefile.am: make gstplay depend on gconf
24838 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
24839 * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
24840 (convert_table_lookup), (img_convert): remove c99-isms
24841 * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
24842 unsigned, to fix a warning on Solaris
24843 * gst/mpeg1sys/systems.c: bcopy->memcpy
24844 * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
24845 * sys/Makefile.am: Add sunaudio
24847 2004-05-18 Wim Taymans <wim@fluendo.com>
24849 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
24850 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
24851 (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
24852 (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
24853 (gst_ogg_mux_loop):
24854 Fix an ugly memleak where the muxer didn't flush enough ogg
24855 pages. This also resulted in badly muxed ogg files.
24857 2004-05-18 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24859 * gst/asfdemux/asfheaders.c :
24860 * gst/asfdemux/asfheaders.h :
24861 * gst/asfdemux/gstasfdemux.c :
24862 - fix ASF_OBJ_PADDING guid
24863 - add 3 new object guids (language list, metadata,
24864 extended stream properties)
24865 - add a function to parse extended header objects
24867 2004-05-18 Benjamin Otte <in7y118@public.uni-hamburg.de>
24869 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
24870 remove leftover debugging g_print
24872 2004-05-17 Ronald Bultje <rbultje@ronald.bitfreak.net>
24874 * ext/mad/gstmad.c: (gst_mad_handle_event):
24875 Fix for when the first format in a discont event is not a
24876 byte-based one. Should fix #137710.
24878 2004-05-18 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24880 * m4/a52.m4 : fix compilation with -Wall -Werror
24881 * m4/libfame.m4 : idem
24882 * m4/libmikmod.m4 : idem
24884 2004-05-17 Benjamin Otte <otte@gnome.org>
24886 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
24887 signal the new tags before giving up the reference
24889 2004-05-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
24891 * ext/shout2/gstshout2.c:
24892 use application/ogg instead of application/x-ogg (patch by Patrick
24893 Guimond, fixes #142432)
24894 * sys/oss/gstosselement.c: (gst_osselement_reset),
24895 (gst_osselement_sync_parms):
24896 don't set fragment size unless specified (fixes #142493)
24898 2004-05-17 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24900 * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
24903 2004-05-17 Benjamin Otte <otte@gnome.org>
24905 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
24906 compute offsets correctly for internal buffers so timestamps are set
24907 correctly when we can't seek. Also handle cases where there are no
24908 offsets. (based on a patch by David Moore, fixes #142507)
24910 2004-05-17 Benjamin Otte <otte@gnome.org>
24912 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
24913 use correct variable when determining amount of data to skip so we
24914 don't skip into the void and segfault
24916 2004-05-16 Benjamin Otte <otte@gnome.org>
24918 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
24921 2004-05-16 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24923 * gst/asfdemux/gstasfdemux.c:
24924 - fix a mem leak and always propagate tags
24925 - add WMV3 to known video codecs (but no decoder yet)
24926 - replace "surplus data" at end of audio header for what
24927 it is : codec specific data
24930 2004-05-16 Arwed v. Merkatz <v.merkatz@gmx.net>
24932 reviewed by: Ronald Bultje <rbultje@ronald.bitfreak.net>
24934 * gst-libs/gst/audio/audioclock.c:
24935 Fix wrong return type (#142205).
24937 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
24939 * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
24940 Ignore CRCs by default (fixes #142566).
24942 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
24944 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
24945 (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
24946 (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
24947 (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
24948 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
24949 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
24950 Fix for cases where we fail to attach to a mixer.
24952 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
24954 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
24955 Don't touch events after not owning them anymore.
24956 * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
24957 (gst_wavparse_fmt), (gst_wavparse_other),
24958 (gst_wavparse_handle_seek), (gst_wavparse_loop),
24959 (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
24960 (gst_wavparse_srcpad_event):
24961 * gst/wavparse/gstwavparse.h:
24962 Add seeking, fix querying.
24964 2004-05-16 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24966 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
24967 - process comments even if they don't end with \0\0
24968 g_convert would ignore them if present and works well without them
24970 2004-05-16 Benjamin Otte <otte@gnome.org>
24972 * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
24975 2004-05-16 Benjamin Otte <otte@gnome.org>
24977 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
24978 don't write to memory we might not write to - g_convert does that
24979 for us anyway (fixes #142613)
24980 (gst_asf_demux_audio_caps):
24981 comment out gst_util_dump_mem
24983 2004-05-16 Benjamin Otte <otte@gnome.org>
24985 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
24986 compute correct expected timestamps after seek (broken since
24988 * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
24989 rename element and debugging category to gdkpixbufscale
24991 2004-05-16 Benjamin Otte <otte@gnome.org>
24993 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
24994 add error checking to snd_pcm_delay and remove duplicate call to
24995 snd_pcm_delay that caused issues (see inline code comments)
24996 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
24997 make more readable and fix return value when snd_pcm_delay fails
25000 2004-05-15 Jan Schmidt <thaytan@mad.scientisti.com>
25001 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
25002 (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
25003 (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
25004 (gst_pixbufscale_link), (gst_pixbufscale_init),
25005 (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
25006 (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
25007 (gst_pixbufscale_get_property), (pixbufscale_init):
25008 * ext/gdk_pixbuf/pixbufscale.h:
25009 Add these files I forgot earlier
25011 2004-05-15 Jan Schmidt <thaytan@mad.scientist.com>
25012 * ext/gdk_pixbuf/Makefile.am:
25013 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
25014 * ext/gdk_pixbuf/gstgdkpixbuf.h:
25015 Add new pixbufscale element to scale RGB video
25016 using gdk_pixbuf, because gdk_pixbuf does BILINEAR
25017 and HYPER interpolation correctly.
25018 * ext/theora/theoraenc.c: (theora_enc_chain),
25019 Discard buffer and return if explicit caps could not be set
25020 (theora_enc_get_property):
25021 Make _get return kbps for the bitrate consistent with
25025 2004-05-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
25027 * ext/libvisual/visual.c: (gst_visual_chain):
25028 add missing visual_audio_analyze
25030 2004-05-14 David Schleef <ds@schleef.org>
25032 * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
25033 is killed while we're playing.
25034 * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
25035 gst_element_no_more_pads().
25037 2004-05-14 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25039 * gst-libs/gst/riff/riff-read.c :
25040 - fix INFO tag extraction in RIFF/AVI files
25041 because gst_event_unref (event) also freed taglist
25044 2004-05-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25046 * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
25047 * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
25049 * gst/auparse/gstauparse.c :
25050 - add code (commented for now) to support audio/x-adpcm on src pad
25051 (we have no decoder for those layout yet)
25053 * gst/cdxaparse/gstcdxaparse.c :
25054 * gst/cdxaparse/gstcdxaparse.h :
25055 - partial rewrite using RiffRead (ripped iain's wavparse code)
25057 * gst/rtp/gstrtpL16enc.c : typo
25058 * gst/rtp/gstrtpgsmenc.c : typo
25060 2004-05-13 Benjamin Otte <otte@gnome.org>
25063 check for exact version of libvisual, it's not supposed to be
25066 2004-05-13 Benjamin Otte <in7y118@public.uni-hamburg.de>
25068 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
25069 signal no-more-pads
25071 2004-05-13 Jan Schmidt <thaytan@mad.scientist.com>
25073 * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
25074 Report which format was used for GST_FORMAT_DEFAULT
25075 * gst/debug/Makefile.am:
25076 * gst/debug/gstdebug.c: (plugin_init):
25077 * gst/debug/progressreport.c: (gst_progressreport_base_init),
25078 (gst_progressreport_class_init), (gst_progressreport_init),
25079 (gst_progressreport_report), (gst_progressreport_set_property),
25080 (gst_progressreport_get_property), (gst_progressreport_chain),
25081 (gst_progressreport_plugin_init):
25082 Add progressreport element for testing.
25084 2004-05-13 Thomas Vander Stichele <thomas at apestaart dot org>
25086 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
25087 * sys/v4l/gstv4lsrc.h:
25088 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
25089 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
25090 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
25091 (gst_v4lsrc_grab_frame):
25093 send a discont at start
25095 2004-05-12 Colin Walters <walters@redhat.com>
25097 * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
25098 inflooping if we can't find a chunk. Or in other words, don't blow
25099 chunks if we don't have a chunk to blow.
25101 2004-05-13 Jan Schmidt <thaytan@mad.scientist.com>
25102 * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
25103 Remove old debug output
25104 * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
25105 (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
25106 (gst_dvdec_set_property), (gst_dvdec_get_property):
25107 Change the quality setting to an enum, so it works from gst-launch
25108 Don't renegotiate a non-linked pad. Allows audio only decoding.
25109 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
25110 (gst_deinterlace_link), (gst_deinterlace_init):
25111 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
25112 (gst_videodrop_link):
25113 Some caps negotiation fixes
25115 2004-05-12 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25117 * ext/tarkin/gsttarkin.c :
25118 - Change RANK from NONE to PRIMARY
25119 * ext/gdk_pixbuf/gstgdkpixbuf.c :
25120 - Change RANK from NONE to MARGINAL
25121 * ext/divx/gstdivxenc.c :
25122 - Change RANK from PRIMARY to NONE (encoder/spider issue)
25124 2004-05-12 Thomas Vander Stichele <thomas at apestaart dot org>
25126 * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
25127 (gst_vorbisenc_push_packet):
25128 copy a function that was added between 1.0 and 1.0.1 until we
25129 depend on worthwhile features of post-1.0
25131 2004-05-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
25134 enable shout2 by default
25135 * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
25136 (gst_shout2send_base_init), (gst_shout2send_init),
25137 (gst_shout2send_connect), (gst_shout2send_change_state):
25138 * ext/shout2/gstshout2.h:
25139 make this work again. Based on a patch by Zaheer Abbas Merali (fixes
25141 * ext/theora/theora.c: (plugin_init):
25142 don't set rank on encoders
25144 2004-05-11 Jeremy Simon <jesimon@libertysurf.fr>
25146 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
25147 Use codec_data property instead of flag1 and flag2 for wma
25149 2004-05-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25151 * gst/cdxaparse/gstcdxaparse.c :
25152 - Add mpegversion to CAPS to make it link
25153 - Rank is as GST_RANK_SECONDARY instead of NONE
25154 * gst/auparse/gstauparse.c :
25155 - Document all audio encoding we can encounter from Solaris 9
25156 headers and libsndfile information.
25157 - Increase max. rate from 48000 to 192000 (to match other elements)
25158 - Don't try to play junk data between header and samples
25160 2004-05-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
25162 * ext/libvisual/visual.c: (gst_visual_getcaps):
25163 use the right caps depending on endianness (I hope)
25164 * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
25165 use GST_RANK_NONE for all non-decoding elements or spider gets
25168 2004-05-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
25170 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25171 Fix some odd cases and fix BE metadata parsing of unicode16 text.
25173 2004-05-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
25175 * gst/switch/gstswitch.c: (gst_switch_release_pad),
25176 (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
25177 (gst_switch_loop), (gst_switch_get_type):
25178 whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
25179 HEADERS. Had to be said.
25181 2004-05-10 David Schleef <ds@schleef.org>
25183 * configure.ac: Add prototype Dirac support.
25185 * ext/dirac/Makefile.am:
25186 * ext/dirac/gstdirac.cc:
25187 * ext/dirac/gstdiracdec.cc:
25189 2004-05-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
25191 * gst/auparse/gstauparse.c: (gst_auparse_class_init),
25192 (gst_auparse_init), (gst_auparse_chain),
25193 (gst_auparse_change_state):
25194 Hack around spider. Remove me some day please.
25196 2004-05-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
25198 * gst/auparse/gstauparse.c: (gst_auparse_chain):
25199 Fix for some uninitialized variables in previous patch, also
25200 makes it work. Fixes #142286 while we're at it.
25202 2004-05-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25204 * gst/auparse/gstauparse.c:
25205 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
25206 only unsupported formats are ADPCM/CCITT G.72x
25208 * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
25210 2004-05-10 Wim Taymans <wim@fluendo.com>
25212 * ext/vorbis/Makefile.am:
25213 * ext/vorbis/README:
25214 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
25215 (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
25216 (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
25217 (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
25218 (gst_oggvorbisenc_convert_sink),
25219 (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
25220 (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
25221 (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
25222 (get_constraints_string), (update_start_message),
25223 (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
25224 (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
25225 (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
25226 * ext/vorbis/oggvorbisenc.h:
25227 * ext/vorbis/vorbis.c: (plugin_init):
25228 * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
25229 (raw_caps_factory), (gst_vorbisenc_class_init),
25230 (gst_vorbisenc_init), (gst_vorbisenc_setup),
25231 (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
25232 (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
25233 * ext/vorbis/vorbisenc.h:
25234 Added a raw vorbis encoder to be used with the oggmuxer.
25235 We still need the old encoder for some gnome applications,
25236 read the README to find out how that works.
25237 The raw encoder is called "rawvorbisenc" until 0.9.
25239 2004-05-10 Wim Taymans <wim@fluendo.com>
25241 * ext/ogg/gstogg.c: (plugin_init):
25242 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
25244 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
25245 (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
25246 (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
25247 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
25248 (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
25249 (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
25250 (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
25251 (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
25252 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
25253 (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
25254 Added an ogg muxer.
25255 Small typo fixes in the demuxer.
25257 2004-05-10 Wim Taymans <wim@fluendo.com>
25259 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
25260 (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
25261 (theora_enc_change_state), (theora_enc_set_property),
25262 (theora_enc_get_property):
25263 Mark the last packet with an EOS flag which is not really needed
25265 Do some better video framerate initialisation.
25266 Update the buffer timestamp.
25268 2004-05-10 Jan Schmidt <thaytan@mad.scientist.com>
25270 * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
25271 Return the result of the parent state change call
25273 2004-05-10 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25275 * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
25276 * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
25277 * gst/law/alaw-encode.c : (idem)
25278 * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
25279 * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
25280 * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
25282 2004-05-09 Benjamin Otte <otte@gnome.org>
25284 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
25285 don't use a fixed buffer size when writing variable length data to
25286 it. Fixes memory corruption and makes alsasrc work
25288 2004-05-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
25290 * ext/gnomevfs/gstgnomevfssink.c:
25291 (_gst_boolean_allow_overwrite_accumulator),
25292 (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
25293 Run glib's default signal handler (??) in RUN_CLEANUP rather than
25294 RUN_LAST, and don't use that to set the accumulator value because
25295 then it's always FALSE.
25297 2004-05-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
25299 * gst-libs/gst/riff/riff-media.c:
25300 (gst_riff_create_video_caps_with_data),
25301 (gst_riff_create_audio_caps),
25302 (gst_riff_create_audio_template_caps):
25303 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
25304 Fix for unaligned RIFF files (i.e. where all the chunks together
25305 in a LIST chunk are not of the same size as the size given in
25306 the LIST chunk header). Fixes several odd WAVE files. Also fix
25307 ADPCM (block_align property) in audio, so that wavparse based
25308 on this works now as it used to stand-alone.
25310 2004-05-09 Edward Hervey <bilboed@bilboed.com>
25312 reviewed by Benjamin Otte <otte@gnome.org>
25314 * ext/a52dec/gsta52dec.c:
25315 * ext/divx/gstdivxdec.c:
25316 * ext/divx/gstdivxenc.c:
25317 * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
25318 * ext/faac/gstfaac.c: (gst_faac_base_init):
25319 * ext/faad/gstfaad.c: (gst_faad_base_init):
25320 * ext/ivorbis/vorbisfile.c:
25321 * ext/lame/gstlame.c:
25322 * ext/libfame/gstlibfame.c:
25323 * ext/mpeg2enc/gstmpeg2enc.cc:
25324 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
25325 * ext/sidplay/gstsiddec.cc:
25326 * ext/speex/gstspeexdec.c:
25327 * ext/speex/gstspeexenc.c:
25328 * ext/xvid/gstxviddec.c:
25329 * ext/xvid/gstxvidenc.c:
25330 correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
25333 2004-05-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
25335 * ext/alsa/gstalsa.c: (device_list),
25336 (gst_alsa_class_probe_devices):
25337 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
25338 Fix alsa oddness in mixer after the combination of using mixer
25339 in source/sink elements and using hw:x,y instead of just hw:x.
25341 2004-05-09 Benjamin Otte <otte@gnome.org>
25343 * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
25344 (gst_wavparse_create_sourcepad):
25345 make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
25348 2004-05-09 Benjamin Otte <otte@gnome.org>
25350 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
25351 allow discont events before caps nego
25353 2004-05-08 Benjamin Otte <otte@gnome.org>
25355 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
25358 2004-05-08 Benjamin Otte <otte@gnome.org>
25360 * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
25361 (gst_level_change_state), (gst_level_init):
25362 * gst/level/gstlevel.h:
25363 figure out if we're initialized directly instead of keeping a
25364 variable that's wrong in 90% of cases
25365 don't initialize pads and then leak them and use a new unitialized
25366 pad. (fixes #142084)
25367 these were bugs so n00bish I didn't find them for an hour :/
25369 2004-05-08 Iain <iain@prettypeople.org>
25371 * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
25372 * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
25373 (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
25374 return the length that was read.
25375 (gst_riff_read_strf_auds): Allow fmt tags as well.
25377 2004-05-07 David Schleef <ds@schleef.org>
25379 * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
25380 signed char assumption in faad.h.
25382 2004-05-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
25384 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
25385 Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
25387 2004-05-07 Colin Walters <walters@redhat.com>
25389 * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
25390 * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
25392 * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
25393 Add dispose function.
25395 2004-05-08 Jan Schmidt <thaytan@mad.scientist.com>
25396 * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
25397 Fix caps nego and pad templates. RGB mode caps should
25399 * ext/dvdnav/gst-dvd:
25400 Move mpeg2dec inside the thread because otherwise the
25401 queue rejects cap changes mid-stream
25402 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
25403 (gst_mpeg2dec_flush_decoder):
25404 For mpeg2dec > 0.4.0, call the flush function instead of
25405 manually extracting all in-flight frames.
25406 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
25407 (gst_dv1394src_init), (gst_dv1394src_iso_receive):
25408 Change mime type video/dv go video/x-dv to match the
25409 rest of gst-plugins
25411 2004-05-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
25413 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
25414 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
25415 (gst_alsa_sink_class_init):
25416 * ext/alsa/gstalsasink.h:
25417 * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
25418 (gst_alsa_src_class_init):
25419 * ext/alsa/gstalsasrc.h:
25420 Make alsasink/src a subclass of alsamixer so that mixer stuff
25421 shows up in gst-rec. Needs some finetuning.
25423 2004-05-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
25425 * ext/lame/gstlame.c: (gst_lame_chain):
25427 * ext/mad/gstmad.c: (gst_mad_handle_event):
25429 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
25430 be able to detect mp3 files < 4096 bytes
25432 2004-05-06 Wim Taymans <wim@fluendo.com>
25434 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
25435 (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
25436 (theora_enc_set_property), (theora_enc_get_property):
25437 Also encode the first frame, cleanup some code.
25439 2004-05-06 Wim Taymans <wim@fluendo.com>
25441 * ext/mpeg2enc/gstmpeg2enc.cc:
25442 Forward events first before deciding that negotiation was
25445 2004-05-06 Wim Taymans <wim@fluendo.com>
25447 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
25448 First process the events before deciding that negotiation
25451 2004-05-06 Wim Taymans <wim@fluendo.com>
25453 * ext/theora/Makefile.am:
25454 * ext/theora/theora.c: (plugin_init):
25455 * ext/theora/theoradec.c: (theora_dec_change_state):
25456 * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
25457 (gst_theora_enc_class_init), (gst_theora_enc_init),
25458 (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
25459 (theora_enc_chain), (theora_enc_change_state),
25460 (theora_enc_set_property), (theora_enc_get_property):
25461 Added a theora encoder, grouped the encoder and decoder into the
25464 2004-05-05 Thomas Vander Stichele <thomas at apestaart dot org>
25466 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
25467 (gst_jpegenc_chain):
25468 fix DURATION on outgoing buffers
25469 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
25470 debug using time formats
25471 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
25472 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
25473 (gst_xvimagesink_sink_link):
25474 windows with width/height 0 generate X errors, so don't allow them
25476 2004-05-05 Wim Taymans <wim@fluendo.com>
25478 * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
25479 (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
25480 (gst_mpeg2dec_negotiate_format):
25481 * ext/mpeg2dec/gstmpeg2dec.h:
25482 removed the static pad template so that we can add the
25483 more accurate framerate value to the caps.
25486 2004-05-04 Benjamin Otte <otte@gnome.org>
25489 check for kdemacros.h, too (should fix #141821)
25490 * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
25491 don't crash if no header was sent, but nicely error out (fixes part
25494 2004-05-04 Wim Taymans <wim@fluendo.com>
25496 * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
25497 parent dispose function to avoid segfault on destroy.
25499 2004-05-04 Thomas Vander Stichele <thomas at apestaart dot org>
25501 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
25503 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
25504 (gst_xvimagesink_sink_link):
25505 clean up debugging caps
25506 also recreate xvimage when format has changed
25508 2004-05-04 Benjamin Otte <otte@gnome.org>
25510 * ext/libvisual/Makefile.am:
25511 * ext/libvisual/visual.c: (gst_visual_class_init),
25512 (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
25513 (gst_visual_srclink), (gst_visual_chain),
25514 (gst_visual_change_state), (plugin_init):
25515 use a GstAdapter to correctly adapt buffer sizes - allows using a
25518 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
25520 * sys/v4l/gstv4lelement.h:
25521 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
25522 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
25523 (gst_v4lsrc_buffer_free):
25524 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
25525 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
25526 (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
25527 (gst_v4lsrc_requeue_frame):
25528 move some debugging categories around
25529 query for fps index and set accordingly if found
25531 2004-05-03 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25533 * ext/lame/gstlame.c:
25534 correct defaults that lame_init puts out of range
25536 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
25538 * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
25539 (gst_divxenc_class_init):
25540 fix range since -1 is the default
25541 * gst/mpeg1sys/gstmpeg1systemencode.c:
25542 (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
25543 * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
25544 (gst_rtjpegdec_chain):
25545 * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
25546 (gst_rtjpegenc_chain):
25547 * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
25548 (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
25549 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
25550 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
25551 * sys/v4l/gstv4lsrc.c:
25552 * sys/v4l/v4l_calls.c: (gst_v4l_open):
25553 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
25554 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
25555 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
25556 * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
25557 remove gst_info calls
25559 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
25568 Updated translations
25570 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
25572 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
25573 refactor/comment code
25575 2004-05-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
25577 * gst/asfdemux/Makefile.am:
25578 * gst/asfdemux/asfheaders.c:
25579 * gst/asfdemux/asfheaders.h:
25580 * gst/asfdemux/gstasf.c: (plugin_init):
25581 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
25582 (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
25583 (gst_asf_demux_setup_pad):
25584 * gst/asfdemux/gstasfdemux.h:
25585 * gst/asfdemux/gstasfmux.c:
25586 * gst/asfdemux/gstasfmux.h:
25587 Add tagging support to demuxer, split out registration in its own
25588 file instead of in demux (hacky), and prevent having some tables
25589 in our memory multiple times (in asfheaders.h).
25591 2004-05-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
25593 * gst/matroska/matroska-demux.c:
25594 (gst_matroska_demux_parse_metadata):
25595 * gst/matroska/matroska-ids.h:
25596 Basic tag reading support.
25598 2004-04-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
25600 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
25601 Really detect ac-3 audio.
25602 * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
25603 really detect matroska files (off-by-1).
25605 2004-04-30 David Schleef <ds@schleef.org>
25607 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
25608 (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
25609 (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
25610 (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
25611 (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
25612 hackage -- parse a lot more atoms, extract a few tags. One might even
25613 mistake this for tag support. Maybe it is.
25614 * gst/qtdemux/qtdemux.h:
25616 2004-04-30 Colin Walters <walters@verbum.org>
25618 * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
25620 2004-04-30 Thomas Vander Stichele <thomas at apestaart dot org>
25622 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
25623 (gst_ffmpegcolorspace_getcaps):
25624 remove broken nego fix
25626 2004-04-30 Benjamin Otte <otte@gnome.org>
25630 * ext/libvisual/Makefile.am:
25631 * ext/libvisual/visual.c:
25632 add initial support for libvisual (http://libvisual.sourceforge.net)
25633 libvisual is still quite alpha, so expect crashes in there :)
25635 2004-04-29 David Schleef <ds@schleef.org>
25637 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
25638 (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
25639 up qtdemux to make it spit out codec_data. Do _not_ look at this
25640 code; you will no longer respect me.
25642 2004-04-29 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25644 * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
25645 * ext/alsa/gstalsa.h :
25646 change alsa pcm device discovery to find more than 1 device
25647 per card. code review by Ronald.
25649 2004-04-29 David Schleef <ds@schleef.org>
25651 * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
25652 Add a check for a driver bug on FreeBSD. (bug #140565)
25654 2004-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
25656 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
25657 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
25658 (gst_jpegenc_getcaps):
25659 move format setting to inner loop
25660 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
25661 (gst_ffmpegcolorspace_getcaps):
25662 use GST_PAD_CAPS if available so that we use already negotiated
25664 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
25665 (qtdemux_parse_moov), (qtdemux_parse):
25667 * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
25668 * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
25669 move hardcoded path to DEFINE
25671 2004-04-28 David Schleef <ds@schleef.org>
25673 * gst/speed/gstspeed.c: (speed_parse_caps): Fix caps parsing.
25676 2004-04-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
25678 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
25679 Don't probe for playback device if we're a source element. Fixes
25682 2004-04-29 Benjamin Otte <otte@gnome.org>
25684 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
25685 (gst_id3_tag_chain):
25686 rewrite buffer offset
25688 2004-04-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
25692 * ext/dts/Makefile.am:
25693 * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
25694 (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
25695 (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
25696 (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
25697 (gst_dtsdec_loop), (gst_dtsdec_change_state),
25698 (gst_dtsdec_set_property), (gst_dtsdec_get_property),
25700 * ext/dts/gstdtsdec.h:
25702 * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
25703 (gst_faad_srcconnect):
25704 Add ESDS atom handling (.m4a).
25706 2004-04-27 Ronald Bultje <rbultje@ronald.bitfreak.net>
25708 * ext/divx/gstdivxdec.c: (plugin_init):
25709 Remove comment that makes no sense.
25710 * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
25711 Fix for obvious typo that resulted in warnings during gst-register.
25712 * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
25713 (gst_xviddec_sink_link):
25714 Fix caps negotiation a bit better.
25715 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
25716 We call this 'codec_data', not 'esds'.
25718 2004-04-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
25720 * gst/monoscope/gstmonoscope.c:
25721 make sure we only provide 256x128
25722 * gst/monoscope/monoscope.c: (monoscope_init):
25723 assert size of 256x128
25725 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
25728 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
25729 (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
25730 fixate to max width and height of device
25732 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
25735 * sys/v4l/gstv4l.c:
25736 * sys/v4l/gstv4lsrc.c:
25737 * sys/v4l/v4l_calls.c:
25738 * sys/v4l/v4lsrc_calls.c:
25739 fix for qc-usb driver which fakes having more than one buffer
25740 by handing the same buffer twice, which confused GStreamer's/v4lsrc
25741 buffer_free override
25744 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
25747 * gst/videotestsrc/gstvideotestsrc.c:
25748 (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
25749 (gst_videotestsrc_init), (gst_videotestsrc_get),
25750 (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
25751 * gst/videotestsrc/gstvideotestsrc.h:
25752 add num-buffers property
25754 2004-04-26 Benjamin Otte <otte@gnome.org>
25756 * ext/mad/gstid3tag.c: (plugin_init):
25757 set id3mux rank to NONE so it doesn't confuse spider
25758 require audio/mpeg,mpegversion=1 in id3mux
25760 2004-04-26 Benjamin Otte <otte@gnome.org>
25763 detect faad correctly as non-working if it's indeed non-working
25765 2004-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
25768 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
25769 (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
25770 fix _getcaps so it only negotiates to its supported format
25772 2004-04-25 Benjamin Otte <otte@gnome.org>
25774 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
25777 2004-04-23 Benjamin Otte <otte@gnome.org>
25779 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
25780 audio/x-raw-int with height rules! not. Now it's depth.
25782 2004-04-22 Ronald Bultje <rbultje@ronald.bitfreak.net>
25784 * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
25785 (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
25786 (gst_wavparse_loop):
25787 Missing variable initialization. Add handling of DVI ADPCM. Fix
25788 mis-parsing of LIST chunks. This works around a bug where we mis-
25789 parse non-aligning LIST chunks (so LIST chunks where the contents
25790 don't align with the actual LIST size). The correct fix is to use
25791 rifflib, I'm not going to fix wavparse - too much work. All this
25794 2004-04-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
25796 reviewed by Benjamin Otte <otte@gnome.org>
25798 * ext/shout/gstshout.c: (gst_icecastsend_change_state):
25799 fix shoutcast not working (fixes #140844)
25801 2004-04-22 Benjamin Otte <otte@gnome.org>
25803 * ext/hermes/gsthermescolorspace.c:
25804 (gst_hermes_colorspace_caps_remove_format_info):
25805 * gst/colorspace/gstcolorspace.c:
25806 (gst_colorspace_caps_remove_format_info):
25807 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
25808 (gst_ffmpegcolorspace_caps_remove_format_info):
25809 s/gst_caps_simplify/gst_caps_do_simplify/
25811 2004-04-22 Benjamin Otte <otte@gnome.org>
25813 * gst-libs/gst/riff/riff-media.c:
25814 (gst_riff_create_video_caps_with_data):
25815 mpegversion is an int
25816 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
25817 don't try to create pad templates with NULL caps, use any caps
25820 2004-04-20 David Schleef <ds@schleef.org>
25822 * ext/sdl/Makefile.am: Link against libgstinterfaces, not
25823 libgstxoverlay. jmmv@menta.net (Julio M. Merino Vidal)
25826 2004-04-20 Daniel Gazard <daniel.gazard@epita.fr>
25828 reviewed by David Schleef
25830 * ext/mad/gstid3tag.c: Add stdlib.h
25831 * gst/rtp/gstrtpgsmenc.c: same
25832 * gst/tags/gstid3tag.c: same
25833 * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
25834 * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
25835 GST_DISABLE_LOADSAVE use.
25836 * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
25837 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
25838 * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
25840 * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
25841 * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
25843 * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
25844 * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
25846 * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
25849 2004-04-20 David Schleef <ds@schleef.org>
25851 * gst/realmedia/rmdemux.c: This was supposed to part of the
25852 last checkin. Same idea.
25854 2004-04-20 Daniel Gazard <daniel.gazard@epita.fr>
25856 reviewed by David Schleef
25858 * configure.ac: bump required gstreamer version to 0.8.1.1
25859 because of following changes [--ds]
25861 * gst-libs/gst/riff/riff-read.c: Include gst/gstutils.h.
25862 (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
25863 (gst_riff_read_header): Use GST_READ_UINT*
25864 macros to access possibly unaligned memory.
25866 * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
25867 (mp3_type_find): Use GST_READ_UINT*
25868 macros to access possibly unaligned memory.
25869 (mp3_type_find, mpeg1_parse_header, qt_type_find)
25870 (speex_type_find): Likewise
25872 * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
25874 * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
25875 (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
25876 (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
25877 (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
25878 (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
25879 (qtdemux_tree_get_sibling_by_type): Use GST_READ_UINT*
25880 macros to access possibly unaligned memory.
25882 * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
25885 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
25886 (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
25888 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
25891 * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
25892 (gst_mpeg2subt_chain_subtitle): Likewise.
25894 * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
25895 (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
25898 * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
25901 * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
25904 * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
25907 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
25910 update required version of GStreamer because of GST_TIME_FORMAT
25912 2004-04-20 Benjamin Otte <in7y118@public.uni-hamburg.de>
25914 * ext/mad/gstid3tag.c: (gst_id3_tag_init):
25915 remove leftover g_print
25916 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
25917 don't try setting only a subset of the caps. We don't want to kill
25918 autoplugging on purpose
25920 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
25922 * sys/ximage/ximagesink.c: (plugin_init):
25923 * sys/xvimage/xvimagesink.c: (plugin_init):
25924 add debugging categories
25926 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
25930 Adding en_GB translation (Gareth Owen)
25932 2004-04-20 David Schleef <ds@schleef.org>
25934 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
25935 (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
25936 (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
25937 (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
25938 A number of new features and hacks to extract the esds atom and
25939 put it into the caps. (bug #137724)
25941 2004-04-19 David Schleef <ds@schleef.org>
25943 * gconf/Makefile.am: Fix for non-GNU make
25944 * gst-libs/gst/Makefile.am: Change directory order to handle
25945 GstPlay linking with gstinterfaces
25946 * gst-libs/gst/audio/make_filter: make use of tr portable
25947 * gst-libs/gst/play/Makefile.am: Add intended \
25948 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
25949 (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
25950 function prototype instead of void *.
25951 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
25953 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
25954 (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
25955 * gst/videofilter/make_filter: make use of tr portable
25956 * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
25958 2004-04-19 Thomas Vander Stichele <thomas at apestaart dot org>
25962 Added Ukrainian translation (Maxim V. Dziumanenko)
25964 2004-04-18 Ronald Bultje <rbultje@ronald.bitfreak.net>
25966 * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
25967 (gst_gsmdec_link), (gst_gsmdec_chain):
25968 Fix capsnego, simplify chain function slightly.
25969 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
25972 2004-04-18 Ronald Bultje <rbultje@ronald.bitfreak.net>
25974 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
25975 (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
25976 (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
25977 Hack to make wavparse work with spider (always -> sometimes pad).
25978 Fixes #135862 && #140411.
25980 2004-04-18 Benjamin Otte <otte@gnome.org>
25982 * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
25983 (gst_osselement_rate_probe_check),
25984 (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
25985 get rid of \n in debug output
25987 2004-04-17 Iain <iain@prettypeople.org>
25989 * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
25992 2004-04-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
25994 * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
25995 (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
25996 (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
25997 (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
25998 (gst_id3_tag_src_link), (gst_id3_tag_chain),
25999 (gst_id3_tag_change_state), (plugin_init):
26000 deprecate id3tag element and replace with id3demux/id3mux.
26001 great side effect: this ugly file is now even uglier, yay!
26002 * ext/mad/gstmad.h:
26003 remove non-available function
26004 update for new get_type
26006 2004-04-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
26009 require mpeg2dec >= 0.4.0
26011 2004-04-17 Benjamin Otte <otte@gnome.org>
26013 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
26014 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
26015 (gst_xvimagesink_set_xwindow_id):
26016 call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
26017 assorted cleanup fixes.
26019 2004-04-16 David Schleef <ds@schleef.org>
26021 * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
26022 * sys/xvimage/xvimagesink.h: same
26024 2004-04-16 Thomas Vander Stichele <thomas at apestaart dot org>
26026 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
26027 Fix GST_ELEMENT_ERROR with (NULL)
26029 2004-04-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
26031 * gst-libs/gst/riff/riff-media.c:
26032 (gst_riff_create_video_caps_with_data):
26033 Add div[3456] as fourccs for DivX 3 (fixes #140137).
26035 2004-04-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
26037 * gst-libs/gst/riff/riff-media.c:
26038 (gst_riff_create_video_caps_with_data),
26039 (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
26040 (gst_riff_create_video_template_caps),
26041 (gst_riff_create_audio_template_caps):
26042 * gst-libs/gst/riff/riff-media.h:
26043 * gst-libs/gst/riff/riff-read.c:
26044 (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
26045 * gst-libs/gst/riff/riff-read.h:
26046 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
26047 Add MS RLE support. I added some functions to read out strf chunks
26048 into strf chunks and the data behind it. This is usually color
26049 palettes (as in RLE, but also in 8-bit RGB). Also use those during
26050 caps creation. Lastly, add ADPCM (similar to wavparse - which
26051 should eventually be rifflib based).
26052 * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
26053 (gst_matroska_demux_init), (gst_matroska_demux_reset):
26054 * gst/matroska/matroska-demux.h:
26055 Remove placeholders for some prehistoric tagging system. Didn't add
26056 support for any tag system really anyway.
26057 * gst/qtdemux/qtdemux.c:
26058 Add support for audio/x-m4a (MPEG-4) through spider.
26059 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
26060 (gst_wavparse_loop):
26061 ADPCM support (#135862). Increase max. buffer size because we
26062 cannot split buffers for ADPCM (screws references) and I've seen
26063 files with 2048 byte chunks. 4096 seems safe for now.
26065 2004-04-15 Thomas Vander Stichele <thomas at apestaart dot org>
26067 * configure.ac: bump nano to 1
26069 === release 0.8.1 ===
26071 2004-04-15 Thomas Vander Stichele <thomas at apestaart dot org>
26073 * configure.ac: releasing 0.8.1, "Comforting Sounds"
26075 2004-04-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
26077 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26078 Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
26081 2004-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
26083 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
26084 lower rank of dvddemux so that it's not used for mpeg playback.
26086 2004-04-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
26089 save libs correctly when checking mad
26091 2004-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
26093 * ext/mad/gstid3tag.c: (plugin_init):
26094 lower rank of id3tag as proposed by Benjamin. Fixes #139926.
26096 2004-04-13 David Schleef <ds@schleef.org>
26098 * common/m4/gst-feature.m4: Call -config scripts with
26099 --plugin-libs if it is supported.
26100 * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
26101 JPEG images are image/jpeg.
26102 * gst/debug/Makefile.am:
26103 * gst/debug/negotiation.c: (gst_negotiation_class_init),
26104 (gst_negotiation_getcaps), (gst_negotiation_pad_link),
26105 (gst_negotiation_update_caps), (gst_negotiation_get_property),
26106 (gst_negotiation_plugin_init): Add a property that acts like
26108 * testsuite/gst-lint: Move license checking to be a standard
26111 2004-04-13 David Schleef <ds@schleef.org>
26113 * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
26114 patch from Sebastien Cote (bug #139958)
26116 2004-04-13 Thomas Vander Stichele <thomas at apestaart dot org>
26118 * examples/gstplay/Makefile.am:
26119 * examples/gstplay/player.c: (main):
26120 make the commandline player example use gconf settings
26122 2004-04-13 Thomas Vander Stichele <thomas at apestaart dot org>
26124 * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
26125 (gst_cacasink_sinkconnect), (gst_cacasink_init),
26126 (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
26127 init/end library during state transition, not object
26128 creation/disposal. get rid of custom dispose handler.
26131 2004-04-12 Christian Schaller <Uraeus@gnome.org>
26133 * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
26136 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26138 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
26139 Handle JUNK chunks inside data section. Prevents warnings.
26141 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26143 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
26144 (gst_riff_create_video_template_caps):
26146 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
26147 (gst_avi_demux_stream_data):
26148 Add support for "rec-list" chunks.
26150 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26152 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
26153 Fix another codecname mismatch.
26155 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26157 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26158 Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
26159 so that MJPEG plays back.
26161 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26163 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
26164 (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
26165 * gst/mpeg1videoparse/gstmp1videoparse.h:
26166 Fix for some slight mis-cuts in buffer parsing, and for some
26167 potential overflows or faults-causers. Adds disconts. Also fixes
26168 #139105 while we're at it.
26170 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26173 * sys/v4l2/gstv4l2element.h:
26174 Workaround for missing struct v4l2_buffer declaration in Suse 9
26175 and Mandrake 10 linux/videodev2.h header file (#135919).
26177 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26179 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
26180 Bail out if no filename was given.
26182 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26184 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
26185 (gst_v4l2_fourcc_from_structure):
26186 Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
26189 2004-04-09 Benjamin Otte <otte@gnome.org>
26191 * ext/gnomevfs/gstgnomevfssink.c:
26192 (_gst_boolean_allow_overwrite_accumulator),
26193 (gst_gnomevfssink_class_init):
26194 fix erase signal - if any handler returns false the file will not be
26195 overwritten. If no handler is connected, the file will not be
26196 overwritten either.
26197 renamed signal to "allow-overwrite"
26198 * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
26199 free string when adding it to ID3 failed
26200 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
26201 unref event when done
26202 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26204 * gst/typefind/gsttypefindfunctions.c:
26205 (mpeg_video_stream_type_find):
26208 2004-04-08 David Schleef <ds@schleef.org>
26210 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26211 (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
26213 2004-04-08 David Schleef <ds@schleef.org>
26215 * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
26216 we don't support (bug #139532)
26218 2004-04-07 Thomas Vander Stichele <thomas at apestaart dot org>
26220 * ext/mad/gstmad.c: (gst_mad_handle_event),
26221 (gst_mad_check_caps_reset), (gst_mad_chain),
26222 (gst_mad_change_state):
26223 only set explicit caps if they haven't been set before for
26224 this stream. MPEG-audio sample rate/channels aren't allowed
26225 to change in-stream.
26228 2004-04-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
26230 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
26231 (_gst_boolean_did_something_accumulator),
26232 (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
26233 (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
26234 (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
26235 (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
26236 (gst_gnomevfssink_change_state):
26237 Fix erase signal. Don't erase by default. Remove handoff signal.
26238 Remove erase property. Don't segfault. General cleanup.
26240 2004-04-07 Benjamin Otte <otte@gnome.org>
26242 * gst-libs/gst/gconf/test-gconf.c: (main):
26243 add missing gst_init
26245 2004-04-07 Benjamin Otte <otte@gnome.org>
26247 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
26248 free the mutexes, too
26250 2004-04-07 Benjamin Otte <otte@gnome.org>
26252 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
26253 actually free the URI string
26254 * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
26255 compute offset correctly when passing discont events
26256 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
26257 don't leak discont events
26258 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
26259 add some missing breaks so caps aren't copied randomly
26260 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
26261 if we realloc memory, we better use it
26263 2004-04-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
26265 * ext/mad/gstmad.c: (normal_seek):
26266 fix GST_FORMAT_TIME usage
26268 2004-04-05 David Schleef <ds@schleef.org>
26270 * ext/kio/kiosrc.cpp: Undefine KDE_DEPRECATED so we can use
26271 a deprecated function (hack!)
26273 2004-04-05 Benjamin Otte <otte@gnome.org>
26275 * ext/esd/esdmon.c: (gst_esdmon_get):
26276 fix nonterminated vararg and memleak
26278 2004-04-05 Benjamin Otte <otte@gnome.org>
26280 * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
26281 (gst_ladspa_init), (gst_ladspa_force_src_caps),
26282 (gst_ladspa_set_property), (gst_ladspa_get_property),
26283 (gst_ladspa_instantiate), (gst_ladspa_activate),
26284 (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
26287 2004-04-05 Stefan Kost <kost@imn.htwk-leipzig.de>
26289 reviewed by Benjamin Otte <otte@gnome.org>
26291 * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
26292 check for broken LADSPA parameters (fixes #138635)
26294 2004-04-05 Benjamin Otte <otte@gnome.org>
26296 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
26297 advertise buffer-frames correctly on sinkpads
26299 2004-04-05 Thomas Vander Stichele <thomas at apestaart dot org>
26301 * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
26302 (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
26303 (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
26304 (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
26305 (gst_mad_check_caps_reset), (gst_mad_chain):
26306 add more debugging, only reset caps when we're not in error state
26308 2004-04-05 Thomas Vander Stichele <thomas at apestaart dot org>
26310 * ext/mad/gstmad.c: add debugging category, comment + cleanups
26312 2004-04-05 Julio M. Merino Vidal <jmmv@menta.net>
26314 reviewed by Benjamin Otte <otte@gnome.org>
26317 fix == in test(1) operator
26319 2004-04-05 Julio M. Merino Vidal <jmmv@menta.net>
26321 reviewed by Benjamin Otte <otte@gnome.org>
26324 fix --export-symblos-regex to a working regex.
26326 2004-04-04 Benjamin Otte <otte@gnome.org>
26328 * sys/oss/.cvsignore:
26331 2004-04-03 Tim-Phillip Müller <t.i.m@zen.co.uk>
26333 reviewed by Benjamin Otte <otte@gnome.org>
26335 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
26336 add missing 'new_media' argument (fixes #138168)
26337 * gst/matroska/matroska-demux.c:
26338 (gst_matroska_demux_handle_seek_event):
26339 add vararg terminator (fixes #138169)
26341 2004-04-02 David Schleef <ds@schleef.org>
26343 * ext/gdk_pixbuf/Makefile.am: Make sure gstgdkanimation.h is
26344 disted (bug #138914)
26346 2004-04-01 Benjamin Otte <otte@gnome.org>
26348 * ext/alsa/gstalsa.c: (gst_alsa_change_state),
26349 (gst_alsa_close_audio):
26350 handle case better where a soundcard can't pause
26351 * ext/ogg/gstoggdemux.c:
26352 don't crash when we get events but don't have pads yet
26354 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
26356 * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
26357 throw an error if we couldn't probe any caps.
26359 2004-04-01 Jan Schmidt <thaytan@mad.scientist.com>
26361 * ext/dvdnav/gst-dvd:
26362 Add a really simple sample DVD player
26364 2004-04-01 Jan Schmidt <thaytan@mad.scientist.com>
26366 * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
26367 (gst_a52dec_push), (gst_a52dec_handle_event),
26368 (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
26369 (gst_a52dec_change_state):
26370 * ext/a52dec/gsta52dec.h:
26371 Use a debug category, Output timestamps correctly
26372 Emit tag info, Handle events, tell liba52dec about cpu
26373 capabilities so it can use MMX etc.
26374 * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
26375 Fix a crasher accessing invalid memory
26376 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
26377 (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
26378 (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
26379 (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
26381 Some support for byte-format seeking.
26382 Small fixes for still frames and menu button overlays
26383 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
26384 (gst_mpeg2dec_alloc_buffer):
26385 Use a debug category. Adjust the report level of several items to
26386 LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
26387 so it doesn't lose the GstBuffer pointer
26388 * gst/debug/Makefile.am:
26389 * gst/debug/gstdebug.c: (plugin_init):
26390 * gst/debug/gstnavseek.c: (gst_navseek_get_type),
26391 (gst_navseek_base_init), (gst_navseek_class_init),
26392 (gst_navseek_init), (gst_navseek_seek),
26393 (gst_navseek_handle_src_event), (gst_navseek_set_property),
26394 (gst_navseek_get_property), (gst_navseek_chain),
26395 (gst_navseek_plugin_init):
26396 * gst/debug/gstnavseek.h:
26397 Add the navseek debug element for seeking back and forth in a
26398 video stream using arrow keys.
26399 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
26400 (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
26401 (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
26402 (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
26403 (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
26404 (gst_mpeg2subt_parse_header), (gst_get_nibble),
26405 (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
26406 (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
26407 (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
26408 (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
26409 * gst/mpeg2sub/gstmpeg2subt.h:
26410 Pretty much a complete rewrite. Now a loopbased element. May still
26411 require work to properly synchronise subtitle buffers.
26412 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
26413 (gst_dvd_demux_send_subbuffer):
26414 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
26415 Don't attempt to create subbuffers of size 0
26416 Reduce a couple of error outputs to warnings.
26417 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
26418 (gst_y4mencode_chain):
26419 Output the y4m frame header correctly.
26421 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
26423 * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
26424 throw errors instead of allowing SIGFPE
26426 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
26428 * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
26429 (gst_gconf_render_bin_from_key):
26430 leak plugging and style fixing
26432 2004-03-31 David Schleef <ds@schleef.org>
26434 * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
26435 (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
26437 * gst/debug/Makefile.am:
26438 * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
26439 * gst/debug/gstdebug.c: (plugin_init): Merge elements into one
26441 * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
26442 (gst_negotiation_base_init), (gst_negotiation_class_init),
26443 (gst_negotiation_init), (gst_negotiation_getcaps),
26444 (gst_negotiation_pad_link), (gst_negotiation_chain),
26445 (gst_negotiation_set_property), (gst_negotiation_get_property),
26446 (gst_negotiation_plugin_init): New element to talk about random
26447 negotiation things happening in a pipeline.
26449 2004-03-31 Thomas Vander Stichele <thomas at apestaart dot org>
26451 * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
26452 fix integer addition with help of Stefan Kost
26454 2004-03-31 Thomas Vander Stichele <thomas at apestaart dot org>
26456 * po/nl.po: updated Dutch translation (Elros Cyriatan)
26458 2004-03-30 David Schleef <ds@schleef.org>
26460 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
26461 (gst_mpeg2dec_negotiate_format): Handle Y42B-format MPEG
26462 video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
26464 * ext/mpeg2dec/gstmpeg2dec.h:
26466 2004-03-30 David Schleef <ds@schleef.org>
26468 * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
26470 2004-03-30 David Schleef <ds@schleef.org>
26472 * tools/gst-launch-ext-m.m: Applied patch from gnome@flyn.org (W.
26473 Michael Petullo) to handle .mov
26475 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
26477 * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
26478 (gst_osselement_rate_check_rate):
26479 probe caps correctly for sound cards that only support one format
26481 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
26483 * ext/kio/kiosrc.cpp: (process_events):
26484 update handling event processing if inside KDE - untested
26486 2004-03-29 David Schleef <ds@schleef.org>
26488 * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
26489 by 2 to not interfere with other colorspaces.
26490 * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
26491 * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
26492 one to not interfere with ffmpeg_colorspace.
26494 2004-03-29 David Schleef <ds@schleef.org>
26496 * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
26497 aren't in the caps.
26498 * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
26499 * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
26501 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
26503 * gst-libs/gst/riff/riff-media.c:
26504 fail on error, don't try to set stuff on NULL caps
26506 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
26510 * ext/kio/Makefile.am:
26511 * ext/kio/kioreceiver.cpp:
26512 * ext/kio/kioreceiver.h:
26513 * ext/kio/kiosrc.cpp:
26514 * ext/kio/kiosrc.h:
26515 add experimental kiosrc plugin
26516 * ext/alsa/gstalsaplugin.c: (plugin_init):
26517 initialize debugging category only when we're sure registering the
26520 2004-03-29 Thomas Vander Stichele <thomas at apestaart dot org>
26522 * examples/gstplay/player.c: (main):
26523 * gst-libs/gst/play/play.c: (gst_play_class_init),
26524 (gst_play_set_location), (gst_play_set_data_src),
26525 (gst_play_set_video_sink), (gst_play_set_audio_sink),
26526 (gst_play_set_visualization), (gst_play_connect_visualization):
26527 check return values of element_set_state and return FALSE where
26530 2004-03-29 Benjamin Otte <otte@gnome.org>
26532 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
26533 try harder to check if an event is really a discont
26535 2004-03-29 Thomas Vander Stichele <thomas at apestaart dot org>
26537 * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
26540 2004-03-28 Benjamin Otte <otte@gnome.org>
26542 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
26543 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
26544 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
26545 get rid of non-standard "..." ranges in case statements.
26547 2004-03-27 Martin Soto <martinsoto@users.sourceforge.net>
26549 * gst/mpegstream/gstmpegdemux.c:
26550 * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
26551 specific functionality split to the new dvddemux element.
26552 * gst/mpegstream/gstdvddemux.c:
26553 * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
26554 streams, derived from mpegdemux.
26555 * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
26556 up. SCR based timestamp rewriting can be turned off (will probably
26557 completely disappear soon).
26558 * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
26559 hacking. General cleanup. All printf statements replaced by
26560 debugging messages. Almost complete libdvdnav support.
26561 (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
26562 by events. New properties for audio and subpicture languages.
26563 (dvdnavsrc_update_highlight): Now uses events.
26564 (dvdnavsrc_user_op): Cleaned up.
26565 (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
26566 based). Lots of cleanup, and propper support for most libdvdnav
26568 (dvdnavsrc_make_dvd_event): New function.
26569 (dvdnavsrc_make_dvd_nav_packet_event): New function.
26570 (dvdnavsrc_make_clut_change_event): New function.
26572 2004-03-26 Benjamin Otte <otte@gnome.org>
26574 * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
26575 fix bug where typefinding would claim it's theora whenever less then
26576 7 bytes of data were available
26578 2004-03-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
26580 * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
26581 (gst_alawdec_base_init), (gst_alawdec_class_init),
26582 (gst_alawdec_init), (gst_alawdec_chain):
26583 * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
26584 (gst_alawenc_base_init), (gst_alawenc_class_init),
26585 (gst_alawenc_init), (gst_alawenc_chain):
26586 * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
26587 (gst_mulawdec_base_init), (gst_mulawdec_class_init),
26588 (gst_mulawdec_init), (gst_mulawdec_chain):
26589 * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
26590 (gst_mulawenc_base_init), (gst_mulawenc_class_init),
26591 (gst_mulawenc_init), (gst_mulawenc_chain):
26592 Fix capsnego in all four, remove the unused property functions and
26593 simplify the chain functions slightly. I guess we could use macros
26594 or something similar for those, since the code is so similar, but
26595 I'm currently too lazy...
26597 2004-03-24 David Schleef <ds@schleef.org>
26599 * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
26600 (gst_osselement_close_audio), (gst_osselement_probe_caps),
26601 (gst_osselement_get_format_structure),
26602 (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
26603 (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
26604 (gst_osselement_rate_int_compare): Add code to handle rate probing
26606 * sys/oss/gstosselement.h: same
26607 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
26608 Use rate probing provided by osselement.
26609 * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
26611 2004-03-24 Ronald Bultje <rbultje@ronald.bitfreak.net>
26613 * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
26614 (gst_xvidenc_get_property):
26617 2004-03-24 David Schleef <ds@schleef.org>
26619 * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
26620 (gst_speexdec_init):
26621 * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
26622 (gst_speexenc_init): Create the pad template correctly (from
26623 the static pad template, not a NULL pointer.)
26625 2004-03-25 Benjamin Otte <otte@gnome.org>
26627 * gst/debug/Makefile.am:
26628 * gst/debug/breakmydata.c:
26629 add element that quasi-randomly changes bytes in the stream.
26630 Intended use is robustness checking of demuxers and decoders in
26633 2004-03-24 Benjamin Otte <otte@gnome.org>
26635 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
26636 (gst_alsa_probe_hw_params):
26637 * ext/alsa/gstalsa.h:
26638 debugging output fixes
26640 2004-03-24 Benjamin Otte <otte@gnome.org>
26642 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
26643 don't g_return_if_fail if element is PLAYING, fail silently as every
26645 * gst/effectv/gstquark.c: (gst_quarktv_chain):
26646 only fix needed for cast lvalue issues in gst-plugins
26647 * gst/volenv/gstvolenv.c: (gst_volenv_init):
26650 2004-03-24 Benjamin Otte <otte@gnome.org>
26652 * gst/level/gstlevel.c: (gst_level_init):
26653 add proxying getcaps function, so level doesn't advertise impossible
26656 2004-03-24 David Schleef <ds@schleef.org>
26658 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
26659 (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
26660 (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
26661 (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
26662 (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
26663 (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
26664 (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
26665 (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
26666 (qtdemux_parse_tree), (qtdemux_parse_trak): Fix debugging
26667 messages. Divide the chunk size by the compression ratio
26668 (needed for MACE audio)
26670 2004-03-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
26672 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
26673 Fix buffer overflow read error.
26675 2004-03-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
26677 * ext/alsa/gstalsa.h:
26678 Remove unused entry.
26679 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26681 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
26682 (gst_videodrop_link), (gst_videodrop_chain):
26683 Fix, sort of. Was horribly broken with new capsnego. Bah...
26685 2004-03-23 Jeremy Simon <jesimon@libertysurf.fr>
26687 * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
26689 Add a monkeysaudio typefind function
26691 2004-03-23 Johan Dahlin <johan@gnome.org>
26693 * gst-libs/gst/play/play.c (gst_play_audio_fixate)
26694 (gst_play_video_fixate): Check so the structure has the field
26695 before trying to fixate them, this makes it possible to have
26696 fakesinks for video and audio output without printing errors on
26697 the output console.
26699 2004-03-22 David Schleef <ds@schleef.org>
26701 * sys/oss/Makefile.am:
26702 * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
26703 (check_rate), (add_rate): Rate probing test app.
26705 2004-03-21 Benjamin Otte <otte@gnome.org>
26707 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
26708 (_fixate_caps_to_int), (gst_audio_convert_fixate):
26709 add a fixation function that pretty much does the right thing (fixes
26712 2004-03-20 David I. Lehn <dlehn@users.sourceforge.net>
26714 * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
26716 2004-03-20 Tim-Phillip Müller <t.i.m@zen.co.uk>
26718 reviewed by: Benjamin Otte <otte@gnome.org>
26720 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
26721 terminate gst_event_new_discontinuous correctly (fixes parts of
26724 2004-03-19 David Schleef <ds@schleef.org>
26726 * gst-libs/gst/Makefile.am: Enable xoverlay unconditionally,
26727 since it doesn't depend on X, and it's part of our ABI.
26729 2004-03-19 Iain <iain@prettypeople.org>
26731 * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
26732 is_int in the structure, not the local variable.
26734 2004-03-19 David Schleef <ds@schleef.org>
26736 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
26737 (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
26738 (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
26739 Improvements in caps negotiation.
26741 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
26745 adding Afrikaans (Petri Jooste)
26747 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
26749 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26750 (gst_ffmpegcolorspace_chain):
26751 throw error instead of g_critical (#137588)
26753 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
26757 dist common and m4 correctly
26760 2004-03-17 David Schleef <ds@schleef.org>
26762 * pkgconfig/gstreamer-media-info.pc.in: Add Version.
26765 2004-03-17 Thomas Vander Stichele <thomas at apestaart dot org>
26769 adding Swedish translation (Christian Rose)
26771 2004-03-17 Thomas Vander Stichele <thomas at apestaart dot org>
26773 * Makefile.am: use release.mak
26775 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
26777 * common/ChangeLog:
26778 * common/gst-autogen.sh:
26779 add some explanation about the version detection
26783 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
26785 * configure.ac: bump nano to 1
26787 === release 0.8.0 ===
26789 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
26791 * configure.ac: release 0.8.0, "Pharmaceutical Itch"
26793 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
26796 update libtool version
26797 * gst-libs/gst/media-info/Makefile.am:
26798 actually use libtool version
26800 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
26802 * configure.ac: fix speex detection to work with 1.0 but not 1.1
26804 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
26807 * gst-plugins.spec.in:
26808 * pkgconfig/Makefile.am:
26809 * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
26810 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
26811 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
26812 * pkgconfig/gstreamer-libs.pc.in:
26813 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
26814 * pkgconfig/gstreamer-play-uninstalled.pc.in:
26815 * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
26816 * pkgconfig/gstreamer-plugins.pc.in:
26817 remove @VERSION@ from some of the pc files since core and plugins
26819 created gstreamer-plugins.pc as it's a better name, but keeping
26820 -libs around for now to get fixes upstream done first.
26822 2004-03-15 Julien MOUTTE <julien@moutte.net>
26824 * gst-libs/gst/play/play.c: (gst_play_get_framerate),
26825 (gst_play_get_sink_element): First draft of gst_play_get_framerate.
26826 * gst-libs/gst/play/play.h:
26828 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
26830 * *.c, *.cc: don't mix tabs and spaces
26832 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
26834 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
26835 use the new ffmpegcolorspace
26836 * gst-plugins.spec.in:
26837 package new colorspace and media-info
26839 * pkgconfig/Makefile.am:
26840 fix some more disting issues
26841 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
26842 * pkgconfig/gstreamer-media-info.pc.in:
26843 generate media-info pc files
26845 2004-03-15 Johan Dahlin <johan@gnome.org>
26847 * *.h: Revert indenting
26849 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
26852 adding ffmpegcolorspace element
26853 * gst/ffmpegcolorspace/Makefile.am:
26854 * gst/ffmpegcolorspace/avcodec.h:
26855 * gst/ffmpegcolorspace/common.h:
26856 * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
26857 * gst/ffmpegcolorspace/dsputil.h:
26858 * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
26859 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
26860 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
26861 (gst_ffmpeg_caps_to_pix_fmt):
26862 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
26863 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26864 (gst_ffmpegcolorspace_caps_remove_format_info),
26865 (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
26866 (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
26867 (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
26868 (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
26869 (gst_ffmpegcolorspace_set_property),
26870 (gst_ffmpegcolorspace_get_property),
26871 (gst_ffmpegcolorspace_register):
26872 * gst/ffmpegcolorspace/imgconvert.c:
26873 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
26874 (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
26875 (avpicture_get_size), (avcodec_get_pix_fmt_loss),
26876 (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
26877 (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
26878 (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
26879 (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
26880 (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
26881 (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
26882 (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
26883 (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
26884 (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
26885 (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
26886 (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
26887 (img_get_alpha_info), (deinterlace_line),
26888 (deinterlace_line_inplace), (deinterlace_bottom_field),
26889 (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
26890 * gst/ffmpegcolorspace/imgconvert_template.h:
26891 * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
26892 * gst/ffmpegcolorspace/mmx.h:
26893 * gst/ffmpegcolorspace/utils.c: (avcodec_init):
26894 adding ffmpegcolorspace element supplied by Ronald after cleaning
26895 up and pulling in the right bits of upstream source.
26896 I'm sure a better C/compiler wizard could do some cleaning up (for
26897 example use GLIB's malloc stuff), but as a first pass this
26900 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
26902 * ext/alsa/gstalsa.h:
26903 I assume Ronald forgot to commit the change to have cardname
26904 as a struct member. Expect some public spanking at the next
26907 2004-03-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
26909 * ext/alsa/gstalsa.c: (gst_alsa_get_property),
26910 (gst_alsa_open_audio), (gst_alsa_close_audio):
26911 * ext/alsa/gstalsa.c:
26912 Don't open the device if we're a mixer (= padless).
26913 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
26914 (gst_alsa_mixer_init), (gst_alsa_mixer_open),
26915 (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
26916 Open mixer during state change rather than during object
26917 initialization. Also, get a device name. Currently in a somewhat
26918 hackish fashion, but I didn't really find something better.
26920 2004-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
26922 * *.c, *.h: run gst-indent
26924 2004-03-14 Benjamin Otte <otte@gnome.org>
26926 * gst/modplug/gstmodplug.cc:
26927 * gst/modplug/gstmodplug.h:
26928 set correct timestamps on outgoing buffers
26930 2004-03-14 Benjamin Otte <otte@gnome.org>
26932 * gst/modplug/gstmodplug.cc:
26933 handle events - don't do crap when a discont arrives that's not
26935 This allows correct loading and playback of mods in Rhythmbox
26937 2004-03-14 Benjamin Otte <otte@gnome.org>
26940 * gst-libs/gst/gconf/Makefile.am:
26941 * pkgconfig/Makefile.am:
26942 move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
26943 they get rebuilt properly
26945 when checking for vorbis, try pkgconfig first.
26946 * gst/modplug/gstmodplug.cc:
26947 add fixate function
26949 2004-03-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
26951 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
26952 Fix for obvious mistake, where we first shift the offset and then
26953 read a samplesize element assuming the old offset. Note that this
26954 part still has something weird, i.e. my movies containing those
26955 don't actually play well, but at least there's something that looks
26958 2004-03-14 Jan Schmidt <thaytan@mad.scientist.com>
26959 * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
26961 Add a typefind function for speex format
26963 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
26965 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
26966 (gst_asf_demux_setup_pad):
26967 Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
26968 instead of 0. Reason is simple: some elements have a fps range
26969 of 1-max instead of 0-max. So now ASF video actually works.
26971 2004-03-13 Thomas Vander Stichele <thomas at apestaart dot org>
26975 adding serbian as a language
26977 2004-03-13 Benjamin Otte <otte@gnome.org>
26979 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
26980 return taglist correctly from _get function, don't gst_pad_push it.
26983 2004-03-13 Jan Schmidt <thaytan@mad.scientist.com>
26984 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
26986 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
26988 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
26989 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
26990 (gst_alsa_mixer_track_new):
26991 * ext/alsa/gstalsamixertrack.h:
26992 Fix ancient leftovers... MixerTrack is a GObject.
26994 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
26996 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
26997 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
26998 Don't block during probing...
27000 2004-03-12 Ronald Bultje <rbultje@ronald.bitfreak.net>
27002 * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
27003 (gst_alsa_get_property), (gst_alsa_probe_get_properties),
27004 (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
27005 (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
27006 (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
27007 (gst_alsa_open_audio), (gst_alsa_close_audio):
27008 * ext/alsa/gstalsa.h:
27009 Add propertyprobe interface implementation, add some device-name
27010 property, all this so that it looks good in gnome-volume-control.
27012 2004-03-12 David Schleef <ds@schleef.org>
27014 * configure.ac: the Hermes library controls hermescolorspace, not
27016 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
27017 (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
27019 * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
27020 * ext/sdl/sdlvideosink.h: ditto.
27021 * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
27023 2004-03-12 Benjamin Otte <otte@gnome.org>
27025 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
27026 (gst_x_overlay_got_xwindow_id):
27027 * gst-libs/gst/xoverlay/xoverlay.h:
27028 replace XID with unsigned long to get rid of the xlibs dependency in
27029 XOverlay (fixes #137004)
27031 2004-03-13 Jan Schmidt <thaytan@mad.scientist.com>
27032 * gst/effectv/gstaging.c: (gst_agingtv_base_init),
27033 (gst_agingtv_setup):
27034 * gst/effectv/gstdice.c: (gst_dicetv_get_type),
27035 (gst_dicetv_base_init), (gst_dicetv_class_init),
27036 (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
27037 * gst/effectv/gstedge.c: (gst_edgetv_get_type),
27038 (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
27039 (gst_edgetv_setup), (gst_edgetv_rgb32):
27040 * gst/effectv/gsteffectv.c:
27041 * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
27042 (gst_quarktv_set_property):
27043 * gst/effectv/gstrev.c: (gst_revtv_get_type),
27044 (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
27045 (gst_revtv_setup), (gst_revtv_rgb32):
27046 * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
27047 (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
27048 (gst_shagadelictv_init), (gst_shagadelictv_setup),
27049 (gst_shagadelictv_rgb32):
27050 * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
27051 (gst_vertigotv_base_init), (gst_vertigotv_class_init),
27052 (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
27053 * gst/effectv/gstwarp.c:
27054 Port everything that can be ported to videofilter and fix up the caps.
27055 Can someone with a big-endian machine please check these?
27057 2004-03-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
27059 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
27060 (gst_osssink_chain), (gst_osssink_change_state):
27061 Latest fixes for A/V sync, audio playback and such. This is about
27062 all... MPEG playback issues are mostly related to the async build-
27063 up of MPEG files, I cannot fix that. Use basicgthread to solve it.
27065 2004-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
27067 patch from: Stephane Loeuillet
27070 use pkg-config for some libraries, falling back to the old .m4 way
27075 2004-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
27078 * tools/Makefile.am:
27079 * tools/Makefile.in:
27080 * tools/gst-launch-ext-m.m:
27081 * tools/gst-launch-ext.1.in:
27082 * tools/gst-visualise-m.m:
27083 * tools/gst-visualise.1:
27084 * tools/gst-visualise.1.in:
27085 reorganizing generation of script tools
27087 2004-03-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
27089 * ext/divx/gstdivxdec.c:
27090 Downgrade priority. We prefer ffdec_mpeg4.
27091 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
27092 (gst_faad_chain), (gst_faad_change_state):
27093 Fix capsnego. Doesn't work for some sounds because we don't have
27094 a 5:1 to stereo element.
27095 * ext/xvid/gstxvid.c: (plugin_init):
27097 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
27098 (gst_osssink_change_state):
27099 Add discont handling.
27101 2004-03-09 Colin Walters <walters@verbum.org>
27103 * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
27106 2004-03-09 Benjamin Otte <otte@gnome.org>
27108 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
27109 the signals take 2 arguments
27111 2004-03-09 David Schleef <ds@schleef.org>
27113 * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
27114 (gst_alsa_fixate): Add fixate function. (bug #136686)
27115 * ext/alsa/gstalsa.h:
27116 * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
27118 2004-03-09 Benjamin Otte <otte@gnome.org>
27120 * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
27121 (gst_mikmod_change_state):
27122 * ext/mikmod/gstmikmod.h:
27123 make mikmod's loop function not loop infinitely and call
27124 gst_element_yield anymore
27125 * gst/modplug/gstmodplug.cc:
27126 fix pad negotiation (fixes #136590)
27128 2004-03-09 David Schleef <ds@schleef.org>
27130 * ext/lcs/Makefile.am: Fix so that the lcs colorspace plugin
27131 doesn't conflict with the internal colorspace plugin.
27132 * gst-libs/gst/audio/make_filter: Use `` instead of $() to
27133 satisfy the crappy-ass shell shipped by a certain vendor.
27134 * gst/videofilter/make_filter: same (bug #135299)
27136 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27138 * configure.ac: bump nano to 1
27140 === release 0.7.6 ===
27142 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27144 * configure.in: releasing 0.7.6, "There"
27146 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27148 * pkgconfig/gstreamer-play-uninstalled.pc.in:
27149 * pkgconfig/gstreamer-play.pc.in:
27150 synchronize the two
27152 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27154 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
27155 (cdparanoia_open), (cdparanoia_event):
27156 fix/add error handling
27158 add cdparanoia source
27159 * tools/Makefile.am:
27160 make scripts executable
27162 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27165 * ext/vorbis/Makefile.am:
27167 remove id3types, vorbisfile and xvideosink from the build (#133783)
27169 2004-03-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
27171 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
27172 Fix metadata read crash (#136537).
27174 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
27176 * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
27177 * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
27178 adding mime types, fixing the one-stop function
27180 2004-03-08 Christian Schaller <Uraeus@gnome.org>
27182 * ext/nas/nassink.c and /ext/nas/nassink.h:
27183 More NAS love from Arwed von Merkatz
27184 So lets all sing 'Can you feel the NAS tonight'
27186 2004-03-08 Christian Schaller <Uraeus@gnome.org>
27188 * tools/gst-launch-ext.in:
27189 Replace vorbisfile with oggdemux/vorbisdec/audioconvert
27191 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
27193 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
27194 (gst_mpeg2dec_init):
27195 remove the user_data pad for now, because it is being used in
27196 fixating causing MPEG playback to fixate on 1000 Hz for playback.
27197 If someone knows how to fix this properly, please do.
27199 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
27201 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27202 (gst_osssink_get_time):
27203 add a warning, IMO this won't get triggered anymore, remove later
27205 2004-03-07 David Schleef <ds@schleef.org>
27207 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps): Added Cinepak
27208 format (bug #136470)
27210 2004-03-07 Thomas Vander Stichele <thomas at apestaart dot org>
27212 * gst-libs/Makefile.am:
27213 * gst-libs/gst/media-info/Makefile.am:
27214 * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
27215 (error_callback), (gst_media_info_error_create),
27216 (gst_media_info_error_element), (gmip_init), (gmip_reset),
27217 (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
27218 * gst-libs/gst/media-info/media-info-priv.h:
27219 * gst-libs/gst/media-info/media-info-test.c: (main):
27220 * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
27221 (gst_media_info_class_init), (gst_media_info_instance_init),
27222 (gst_media_info_set_source), (gst_media_info_read_with_idler),
27223 (gst_media_info_read_idler), (gst_media_info_read):
27224 * gst-libs/gst/media-info/media-info.h:
27225 fixed, should work now
27227 2004-03-07 Christian Schaller <Uraeus@gnome.org>
27229 * ext/nas/nassink.c:
27230 A bunch of NAS fixes from Arwed von Merkatz
27232 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
27234 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
27235 (qtdemux_parse_trak):
27236 Fix crash (j might be greater than n_samples, in which case we're
27237 writing outside the allocated space for the array) and memleak.
27239 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
27241 * sys/oss/gstosssink.c: (gst_osssink_chain):
27242 And another caller that couldn't handle delay < 0 (unsigned
27243 integer overflow). Video now continues playing on an audio
27244 buffer underrun, and the clock continues working. Audio still
27247 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
27249 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27250 (gst_osssink_get_time):
27251 get_delay() may return values lower than 0. In those cases, we
27252 should not actually cast to *unsigned* int64, that will break
27253 stuff horribly. In my case, it screwed up A/V sync in movies
27254 in totem rather badly.
27256 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27258 * ext/faac/gstfaac.c: (gst_faac_chain):
27259 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
27260 * ext/libpng/gstpngenc.c: (user_write_data):
27261 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
27262 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
27263 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
27264 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
27265 Fix several misuse of gst_buffer_merge (it doesn't take ownership
27266 of any buffer), should fix some leaks. I hope I didn't unref buffers
27267 that shouldn't be...
27269 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27271 * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
27272 (deep_notify_callback), (tag_flag_score), (found_tag_callback),
27273 (error_callback), (gmi_reset), (gmi_seek_to_track),
27274 (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
27275 (gmip_find_type_post), (gmip_find_stream_post),
27276 (gmip_find_track_streaminfo_post):
27277 * gst-libs/gst/media-info/media-info-priv.h:
27278 * gst-libs/gst/media-info/media-info-test.c: (print_tag),
27279 (info_print), (main):
27280 * gst-libs/gst/media-info/media-info.c:
27281 (gst_media_info_error_create), (gst_media_info_error_element),
27282 (gst_media_info_instance_init), (gst_media_info_get_property),
27283 (gst_media_info_new), (gst_media_info_set_source),
27284 (gst_media_info_read_idler), (gst_media_info_read):
27285 * gst-libs/gst/media-info/media-info.h:
27286 first pass at making this work again. This seems to work on
27287 tagged ogg/vorbis and mp3 files.
27289 2004-03-06 Benjamin Otte <otte@gnome.org>
27291 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
27292 fix huge leak: gst_buffer_merge doesn't unref the first argument
27295 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27297 * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
27298 report layer/mode/emphasis
27300 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27302 * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
27304 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27306 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
27309 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27311 * ext/vorbis/vorbis.c: (plugin_init):
27312 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
27313 (gst_vorbis_dec_init), (vorbis_dec_event):
27315 make vorbisdec handle _BYTE and _TIME queries
27317 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27319 * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
27320 from the xing header
27322 2004-03-06 Benjamin Otte <otte@gnome.org>
27324 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
27325 (gst_audio_convert_link), (gst_audio_convert_change_state),
27326 (gst_audio_convert_buffer_from_default_format):
27327 do conversions from/to float correctly, fix some caps nego errors,
27328 export correct supported caps in template and getcaps, use correct
27329 caps in try_set_caps functions
27331 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27333 For some reason, I only committed a ChangeLog entry yesterday and
27334 not the corresponding code...
27335 * ext/mad/gstmad.c: Fix detection of Xing headers
27336 * gst/tags/gstid3tag.c: Changes to support TLEN tags
27338 2004-03-06 Benjamin Otte <otte@gnome.org>
27340 * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
27341 (gst_ogg_demux_src_query):
27342 make sure to handle the case where there's no current chain
27345 2004-03-05 David Schleef <ds@schleef.org>
27347 * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
27348 Add fixate function. (bug #131128)
27349 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
27350 (gst_sdlvideosink_fixate): Add fixate function.
27351 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
27352 Fix attempt to print a non-pointer using GST_PTR_FORMAT.
27353 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
27354 Fix missing break that was causing ulaw to be interpreted as
27357 2004-03-05 David Schleef <ds@schleef.org>
27359 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
27360 Fix code that ignores return value of gst_buffer_merge().
27362 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
27363 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
27364 * testsuite/gst-lint: Check for above.
27366 2004-03-05 David Schleef <ds@schleef.org>
27368 * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Check for unfixed
27369 caps and throw an element error. (bug #136334)
27371 2004-03-05 David Schleef <ds@schleef.org>
27373 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
27374 (gst_faad_chain): Fix negotiation.
27375 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
27376 key and button events.
27377 * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
27379 * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
27381 * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
27382 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
27383 (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
27384 function to encourage better negotiation, particularly between
27385 audioconvert and osssink.
27386 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
27387 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak): Make some debugging
27389 * gst/typefind/gsttypefindfunctions.c: Fix mistake in flash
27391 * gst/vbidec/vbiscreen.c: Add glib header
27392 * pkgconfig/gstreamer-play.pc.in: Depends on gst-interfaces.
27394 2004-03-06 Christophe Fergeau <teuf@users.sourceforge.net>
27396 * ext/mad/gstmad.c: Fix detection of Xing headers
27397 * gst/tags/gstid3tag.c: Changes to support TLEN tags
27399 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27401 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
27402 (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
27405 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27407 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
27408 * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
27409 (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
27410 files, and report the parsed length as a GST_TAG_DURATION tag.
27411 * gst/tags/gstid3tag.c: support TLEN (duration) tag
27413 2004-03-05 Benjamin Otte <otte@gnome.org>
27415 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
27416 convert channels correctly. convert correctly to unsigned.
27418 2004-03-05 Julien MOUTTE <julien@moutte.net>
27420 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
27421 we have a window before clearing it.
27423 2004-03-05 Julien MOUTTE <julien@moutte.net>
27425 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
27426 have a window before clearing it.
27428 2004-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
27430 * gconf/gstreamer.schemas.in:
27431 * gst-libs/gst/gconf/Makefile.am:
27432 version installation path the same way as for 0.6
27433 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
27434 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
27435 * pkgconfig/gstreamer-play-uninstalled.pc.in:
27436 remove comment that was fixed
27438 2004-03-05 David Schleef <ds@schleef.org>
27440 * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
27441 (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
27442 (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
27443 (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
27444 Add prototype code for handling seeking and querying.
27446 2004-03-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
27448 * examples/gstplay/player.c: (main):
27449 Initialize variables to NULL. Prevents a segfault because the
27450 (uninitialized) variable is not NULL, resulting in a crash on
27451 trying to reach error->message.
27453 2004-03-05 Benjamin Otte <otte@gnome.org>
27455 * gst/audioconvert/gstaudioconvert.c:
27456 (gst_audio_convert_buffer_to_default_format):
27457 make float=>int conversion work correctly even in cornercases.
27459 2004-03-04 David I. Lehn <dlehn@users.sourceforge.net>
27461 * debian/README.Debian:
27462 * debian/build-deps:
27463 * debian/changelog:
27465 * debian/control.in:
27466 * debian/copyright:
27467 * debian/gstreamer-a52dec.files:
27468 * debian/gstreamer-aa.files:
27469 * debian/gstreamer-alsa.files:
27470 * debian/gstreamer-alsa.manpages:
27471 * debian/gstreamer-arts.files:
27472 * debian/gstreamer-artsd.files:
27473 * debian/gstreamer-audiofile.files:
27474 * debian/gstreamer-avifile.files:
27475 * debian/gstreamer-cdparanoia.files:
27476 * debian/gstreamer-colorspace.files:
27477 * debian/gstreamer-doc.files:
27478 * debian/gstreamer-dv.files:
27479 * debian/gstreamer-dvd.files:
27480 * debian/gstreamer-esd.files:
27481 * debian/gstreamer-festival.files:
27482 * debian/gstreamer-flac.files:
27483 * debian/gstreamer-gconf.conffiles:
27484 * debian/gstreamer-gconf.files:
27485 * debian/gstreamer-gconf.postinst:
27486 * debian/gstreamer-gnomevfs.files:
27487 * debian/gstreamer-gsm.files:
27488 * debian/gstreamer-http.files:
27489 * debian/gstreamer-jack.files:
27490 * debian/gstreamer-jpeg.files:
27491 * debian/gstreamer-mad.files:
27492 * debian/gstreamer-mikmod.files:
27493 * debian/gstreamer-misc.files:
27494 * debian/gstreamer-mpeg2dec.files:
27495 * debian/gstreamer-oss.files:
27496 * debian/gstreamer-plugin-apps.files:
27497 * debian/gstreamer-plugin-apps.manpages:
27498 * debian/gstreamer-plugin-libs-dev.files:
27499 * debian/gstreamer-plugin-libs.files:
27500 * debian/gstreamer-plugin-template.postinst:
27501 * debian/gstreamer-plugin-template.postrm:
27502 * debian/gstreamer-sdl.files:
27503 * debian/gstreamer-sid.files:
27504 * debian/gstreamer-vorbis.files:
27505 * debian/gstreamer-x.files:
27506 * debian/mk.control:
27508 Debian package info not maintained here.
27510 2004-03-04 Thomas Vander Stichele <thomas at apestaart dot org>
27512 * ext/aalib/gstaasink.c: (gst_aasink_class_init):
27513 * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
27514 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
27515 * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
27516 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
27517 * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
27518 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
27519 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
27520 * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
27521 * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
27522 * gst-libs/gst/colorbalance/colorbalance.c:
27523 (gst_color_balance_class_init):
27524 * gst-libs/gst/colorbalance/colorbalancechannel.c:
27525 (gst_color_balance_channel_class_init):
27526 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
27527 * gst-libs/gst/play/play.c: (gst_play_class_init):
27528 * gst-libs/gst/propertyprobe/propertyprobe.c:
27529 (gst_property_probe_iface_init):
27530 * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
27531 * gst-libs/gst/tuner/tunerchannel.c:
27532 (gst_tuner_channel_class_init):
27533 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
27534 * gst/cutter/gstcutter.c: (gst_cutter_class_init):
27535 * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
27536 * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
27537 * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
27538 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
27539 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
27540 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
27541 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
27542 fix signals to use - instead of _
27543 * ext/libcaca/gstcacasink.h:
27544 * ext/sdl/sdlvideosink.h:
27547 2004-03-04 David Schleef <ds@schleef.org>
27549 * testsuite/gst-lint: Add a check for bad signal names.
27551 2004-03-04 Stefan Kost <kost@imn.htwk-leipzig.de>
27553 reviewed by David Schleef
27555 * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
27556 modified the alpha channel and caused a warning. (bug #136192)
27558 2004-04-03 Christian Schaller <Uraeus@gnome.org>
27560 * gst-plugins.spec.in:
27561 Change names of plugins to actually be correct. Try to keep things
27562 alphabetical to avoid getting beat up by Thomas
27564 2004-03-03 Julien MOUTTE <julien@moutte.net>
27566 * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
27567 Using ximagesink as a default if no gconf key found. We should
27568 probably consider using alsasink instead of osssink for the audio
27571 2004-03-02 Thomas Vander Stichele <thomas at apestaart dot org>
27574 fix --with-plugins, don't think it ever worked before
27575 * gst-plugins.spec.in:
27578 2004-03-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
27580 * ext/sdl/sdlvideosink.h:
27581 * sys/ximage/ximagesink.h:
27582 * sys/xvideo/xvideosink.h:
27583 * sys/xvimage/xvimagesink.h:
27584 Fix for move of gstvideosink.h -> videosink.h.
27586 2004-03-02 Thomas Vander Stichele <thomas at apestaart dot org>
27588 * gst-libs/gst/xwindowlistener/Makefile.am:
27589 this is a plugin library, not a library
27591 2004-03-01 David Schleef <ds@schleef.org>
27593 * AUTHORS: Added some names. Add yourself if you're still
27596 2004-03-01 David Schleef <ds@schleef.org>
27600 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
27602 * gst-plugins.spec.in: clean up spec file
27604 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
27606 * gst-libs/gst/video/Makefile.am:
27607 * gst-libs/gst/video/gstvideosink.c:
27608 * gst-libs/gst/video/gstvideosink.h:
27609 rename gstvideosink.h to videosink.h to match other headers
27610 * gst/mixmatrix/Makefile.am:
27611 fix plugin filename
27612 * gst/tags/Makefile.am: fix plugin filename
27614 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
27616 * gst/tags/Makefile.am: fix plugin filename
27618 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
27620 * examples/gstplay/player.c: (got_time_tick), (main):
27622 display time_tick more readably
27623 * gst/mixmatrix/Makefile.am:
27624 fix plugin file name
27626 2004-02-29 Christophe Fergeau <teuf@gnome.org>
27628 * sys/oss/gstosselement.c: (gst_osselement_probe),
27629 (device_combination_append), (gst_osselement_class_probe_devices):
27630 * sys/oss/gstosselement.h:
27631 Reworked enumeration of oss dsps and mixers so that gst-mixer works
27632 on my system using alsa oss emulation, fixes bug #135597
27634 2004-02-29 Ronald Bultje <rbultje@ronald.bitfreak.net>
27636 * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
27637 (gst_videodrop_chain), (gst_videodrop_change_state):
27638 * gst/videodrop/gstvideodrop.h:
27639 Work based on timestamp of input data, not based on the expected
27640 framerate from the input. The consequence is that this element now
27641 not only scales framerates, but also functions as a framerate
27642 corrector or framerate stabilizer/constantizer.
27644 2004-02-27 David Schleef <ds@schleef.org>
27646 patches from jmmv@menta.net (Julio M. Merino Vidal)
27648 * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
27649 GST_ELEMENT_ERROR call (bug #135634)
27650 * gst/interleave/interleave.c: (interleave_buffered_loop),
27651 (interleave_bytestream_loop): Don't use alloca() (bug #135640)
27652 * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
27653 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27654 (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
27655 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
27656 (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
27657 (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
27658 Fix GST_ELEMENT_ERROR call.
27659 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
27660 GST_ELEMENT_ERROR call.
27662 2004-02-27 Benjamin Otte <otte@gnome.org>
27664 * gst-libs/gst/audio/audio.h:
27665 add macro to make sure header isn't included twice
27666 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
27667 don't use gst_buffer_free
27668 * gst/playondemand/filter.func:
27669 don't use gst_data_free. Free data only once.
27671 2004-02-26 David Schleef <ds@schleef.org>
27673 * gst-libs/gst/colorbalance/Makefile.am:
27674 * gst-libs/gst/mixer/Makefile.am:
27675 * gst-libs/gst/tuner/Makefile.am:
27676 * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
27677 should not be disted, -marshal.h files should not be installed,
27678 and -enum.h files _should_ be installed. Fix to make this the
27681 === release 0.7.5 ===
27683 2004-02-26 Thomas Vander Stichele <thomas at apestaart dot org>
27685 * configure.ac: release 0.7.5, "Under The Sea"
27687 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
27689 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
27690 (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
27691 * gst/videoscale/gstvideoscale.c:
27692 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
27693 assorted debug/warning fixes
27695 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
27697 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
27698 (gst_videoscale_init), (gst_videoscale_chain),
27699 (gst_videoscale_set_property), (plugin_init):
27700 * gst/videoscale/gstvideoscale.h:
27701 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
27702 (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
27703 (gst_videoscale_planar400), (gst_videoscale_packed422),
27704 (gst_videoscale_packed422rev), (gst_videoscale_32bit),
27705 (gst_videoscale_24bit), (gst_videoscale_16bit),
27706 (gst_videoscale_bilinear), (gst_videoscale_bicubic),
27707 (gst_videoscale_scale_plane_slow),
27708 (gst_videoscale_scale_point_sample),
27709 (gst_videoscale_scale_nearest),
27710 (gst_videoscale_scale_nearest_str2),
27711 (gst_videoscale_scale_nearest_str4),
27712 (gst_videoscale_scale_nearest_32bit),
27713 (gst_videoscale_scale_nearest_24bit),
27714 (gst_videoscale_scale_nearest_16bit):
27715 add debugging category and use it properly
27716 fix use of GST_PTR_FORMAT
27718 2004-02-25 Andy Wingo <wingo@pobox.com>
27720 * gst/interleave/interleave.c (interleave_buffered_loop): Always
27721 push only when channel->buffer is NULL. Prevents segfaults doing
27722 the state change after a nonlocal exit, like a scheme exception.
27724 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
27725 Handle the case where the intersected caps is empty.
27727 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
27729 * gst/law/mulaw-decode.c: (mulawdec_link):
27730 * gst/law/mulaw.c: (plugin_init):
27731 fix mulawdec so it actually works again
27733 2004-02-24 Arwed v. Merkatz <v.merkatz@gmx.net>
27735 reviewed by: David Schleef <ds@schleef.org>
27737 * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
27738 (gst_gamma_init), (gst_gamma_set_property),
27739 (gst_gamma_get_property), (gst_gamma_calculate_tables),
27740 (gst_gamma_rgb24), (gst_gamma_rgb32): Adds gamma correction
27741 for RGB, with separate r g and b correction factors. (#131167)
27743 2004-02-24 Thomas Vander Stichele <thomas at apestaart dot org>
27745 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
27746 only signal tags for bitrate if they're > 0 (#134894)
27748 2004-02-24 David Schleef <ds@schleef.org>
27750 * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
27751 (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
27752 (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
27753 (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
27754 (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
27755 (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
27756 (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
27757 (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
27758 Cleanups. Convert g_prints to GST_LOGs. Add qtdemux debug
27759 category. Attempt to fix timestamp calculation.
27761 2004-02-24 Johan Dahlin <johan@gnome.org>
27763 * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
27765 2004-02-23 Thomas Vander Stichele <thomas at apestaart dot org>
27768 * gconf/Makefile.am:
27769 * gconf/gstreamer.schemas:
27770 * gst-libs/gst/gconf/Makefile.am:
27771 * gst-libs/gst/gconf/gconf.c:
27772 version gconf schemas and install locations
27774 2004-02-23 Benjamin Otte <otte@gnome.org>
27776 * ext/xine/xineinput.c: (gst_xine_input_dispose):
27777 (gst_xine_input_subclass_init):
27778 call parent dispose.
27779 change pad template for CD reader correctly
27780 * ext/xine/Makefile.am:
27781 * ext/xine/gstxine.h:
27782 * ext/xine/xine.c: (plugin_init):
27783 * ext/xine/xineaudiosink.c:
27784 wrap audio sinks, too
27785 * gst-libs/gst/resample/private.h:
27786 * gst-libs/gst/resample/resample.c: (gst_resample_init),
27787 (gst_resample_reinit), (gst_resample_scale),
27788 (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
27789 (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
27790 (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
27791 (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
27792 (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
27793 * gst-libs/gst/resample/resample.h:
27794 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
27795 (gst_audioscale_class_init), (gst_audioscale_link),
27796 (gst_audioscale_get_buffer), (gst_audioscale_init),
27797 (gst_audioscale_chain), (gst_audioscale_set_property),
27798 (gst_audioscale_get_property):
27799 * gst/audioscale/gstaudioscale.h:
27800 s/resample_*/gst_resample_*/i to not clobber namespaces
27802 2004-02-23 Julien MOUTTE <julien@moutte.net>
27804 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
27805 (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
27806 (gst_riff_create_video_template_caps),
27807 (gst_riff_create_audio_template_caps),
27808 (gst_riff_create_iavs_template_caps):
27809 * gst-libs/gst/riff/riff-media.h:
27810 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
27811 (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
27812 (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
27813 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
27814 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
27815 (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
27816 (gst_matroska_demux_plugin_init): First batch implementing audio and
27817 video codec tags in demuxers.
27819 2004-02-22 Benjamin Otte <otte@gnome.org>
27821 * ext/xine/Makefile.am:
27822 * ext/xine/gstxine.h:
27823 * ext/xine/xine.c: (plugin_init):
27824 * ext/xine/xineinput.c:
27825 add input plugin wrapper. Playback from files, http, mms and cdda
27827 * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
27828 remove leftover G_GNUC_UNUSED
27829 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
27830 (gst_asf_demux_identify_guid):
27831 improve debugging output
27833 2004-02-22 Benjamin Otte <otte@gnome.org>
27835 reported by: Padraig O'Briain <padraig.obriain@sun.com>
27838 replace test -e with test -x for mkinstalldirs to be more portable.
27841 2004-02-22 Benjamin Otte <otte@gnome.org>
27843 reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
27845 * gst/audioconvert/gstaudioconvert.c: (plugin_init):
27846 set rank to PRIMARY
27847 * gst/volume/gstvolume.c: (plugin_init):
27851 2004-02-22 Julio M. Merino Vidal <jmmv@menta.net>
27853 reviewed by Benjamin Otte <otte@gnome.org>
27855 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
27856 escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
27858 2004-02-22 Benjamin Otte <otte@gnome.org>
27861 export [_]*{gst,Gst,GST}.* symbols from plugins
27863 2004-02-22 Christophe Fergeau <teuf@gnome.org>
27865 reviewed by: Benjamin Otte <otte@gnome.org>
27867 * ext/lame/gstlame.c: (add_one_tag):
27868 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
27869 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
27870 (gst_vorbisenc_metadata_set1):
27871 * gst/tags/gstid3tag.c:
27872 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
27873 apply fixes from bugs #135042 (lame can't write tags) and #133817
27874 (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
27876 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
27878 * configure.ac: Export only gst_plugin_desc from plugins.
27879 Note that this change only makes any effect with Linux using libtool
27880 1.5.2 or higher. Otherwise it is silently ignored, but it would build
27881 fine. And don't try to have several versions of libtool in different
27884 2004-02-20 Andy Wingo <wingo@pobox.com>
27886 * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
27887 interleave respectively.
27889 * gst/interleave/deinterleave.c: New plugin: deinterleave
27890 (replaces on oneton).
27891 * gst/interleave/interleave.c: New plugin: interleave.
27892 * gst/interleave/plugin.h: Support file.
27893 * gst/interleave/plugin.c: Support file.
27895 * configure.ac: Remove intfloat and oneton, add interleave.
27897 * ext/sndfile/gstsf.c: Handle events better.
27899 * gst/audioconvert/gstaudioconvert.c: Change to support int2float
27900 and float2int operation. int2float has scheduling problems as
27901 noted in in2float_chain.
27903 2004-02-20 Benjamin Otte <otte@gnome.org>
27905 * ext/xine/Makefile.am:
27906 * ext/xine/gstxine.h:
27908 * ext/xine/xineaudiodec.c:
27909 * ext/xine/xinecaps.c:
27910 add first version of xine plugin wrapper. Currently only wraps the
27911 QDM2 win32 DLL, and even that only in proof-of-concept quality.
27914 add xine plugin wrapper, disabled by default. Use --enable-xine to
27915 build. Note that it'll segfault on gst-register if you don't remove
27916 the goom and tvtime post plugins from xine.
27917 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
27918 (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
27919 add extradata parsing for QDM2.
27920 change around debugging prints.
27922 2004-02-19 Benjamin Otte <otte@gnome.org>
27924 * ext/lame/gstlame.c: (gst_lame_chain):
27925 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
27926 use gst_tag_list_insert when you want to insert tags
27928 2004-02-18 David Schleef <ds@schleef.org>
27930 * configure.ac: Move massink to gst-rotten
27932 * ext/mas/Makefile.am:
27933 * ext/mas/massink.c:
27934 * ext/mas/massink.h:
27936 2004-02-18 David Schleef <ds@schleef.org>
27938 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
27939 typefinding, since it seems to be worse than nothing.
27940 * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Add ftyp
27941 atom to recognize .mp4 and .m4a files as video/quicktime.
27943 2004-02-18 David Schleef <ds@schleef.org>
27945 * gst/sine/demo-dparams.c: (quit_live),
27946 (dynparm_log_value_changed), (dynparm_value_changed), (main):
27947 Use double dparams, not float.
27948 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
27949 (gst_sinesrc_init): Change sync default to FALSE, since multiple
27950 sync'd elements don't really work correctly.
27951 * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
27952 (volume_update_volume), (volume_get_property): Change dparam
27955 2004-02-18 Julien MOUTTE <julien@moutte.net>
27957 * sys/ximage/ximagesink.c:
27958 (gst_ximagesink_xwindow_update_geometry),
27959 (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
27960 (gst_ximagesink_change_state), (gst_ximagesink_expose),
27961 (gst_ximagesink_init): Rework the way software video scaling works. So
27962 now we check on each chain call if the video frames are feeling the
27963 window. If not we try to renegotiate caps. On failure we memorize that
27964 and we won't try again for that PLAYING sessions.
27965 * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
27967 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
27970 2004-02-18 Thomas Vander Stichele <thomas at apestaart dot org>
27972 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
27973 break up _link so we can give a better debug message for errors
27975 2004-02-18 Thomas Vander Stichele <thomas at apestaart dot org>
27977 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
27978 set up debug category
27980 2004-02-18 Julien MOUTTE <julien@moutte.net>
27982 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
27983 (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
27984 the way renegotiation work. The event handling function is not taking
27985 care of external windows and renegotiate method check for pad flags
27986 NEGOTIATING. Should fix : #133209
27988 2004-02-17 Julien MOUTTE <julien@moutte.net>
27990 * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
27991 pad is negotiating before trying renegotiation.
27993 2004-02-17 Thomas Vander Stichele <thomas at apestaart dot org>
27995 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
27996 pass on all possible mime types as typefind hints
27998 2004-02-17 Julien MOUTTE <julien@moutte.net>
28000 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
28001 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
28002 possible SHM leak if we crash. All other apps using XShm are doing
28005 2004-02-17 Julien MOUTTE <julien@moutte.net>
28007 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28008 (gst_ximagesink_expose): Renegotiate size on expose.
28009 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
28012 2004-02-16 Benjamin Otte <in7y118@public.uni-hamburg.de>
28014 * testsuite/alsa/sinesrc.c:
28015 cosmetic fix to fix compile issue with gcc 2.95.4
28017 2004-02-16 Julien MOUTTE <julien@moutte.net>
28019 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
28020 (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
28021 failed opening the audio device.
28022 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
28023 (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
28024 (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
28025 (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
28026 (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
28027 (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
28028 (gst_ximagesink_change_state), (gst_ximagesink_chain),
28029 (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
28030 Removing some useless g_return_if_fail like wingo suggested.
28031 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
28032 (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
28033 (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
28034 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
28035 (gst_xvimagesink_update_colorbalance),
28036 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
28037 (gst_xvimagesink_xcontext_clear),
28038 (gst_xvimagesink_get_fourcc_from_caps),
28039 (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
28040 (gst_xvimagesink_set_xwindow_id),
28041 (gst_xvimagesink_colorbalance_list_channels),
28042 (gst_xvimagesink_colorbalance_set_value),
28043 (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
28044 PAUSED. Removing some useless g_return_if_fail like wingo suggested.
28046 2004-02-16 Thomas Vander Stichele <thomas at apestaart dot org>
28048 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
28049 throw error when not negotiated instead of asserting
28051 2004-02-15 Julien MOUTTE <julien@moutte.net>
28053 * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
28054 correct data refcounting.
28056 2004-02-15 Julien MOUTTE <julien@moutte.net>
28058 * gst/switch/gstswitch.c: (gst_switch_change_state),
28059 (gst_switch_class_init): Cleaning the sinkpads correctly on state
28060 change, mostly the EOS flag.
28062 2004-02-15 Julien MOUTTE <julien@moutte.net>
28064 * examples/gstplay/player.c: (got_eos), (main): Adding some
28065 output for debugging.
28066 * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
28067 timeouts if we go to any state different from PLAYING.
28068 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
28069 more EOS bugs in riff lib.
28071 2004-02-14 Julien MOUTTE <julien@moutte.net>
28073 * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
28074 visualization until i find a way to fix switch correctly.
28075 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
28077 * gst/switch/gstswitch.c: (gst_switch_release_pad),
28078 (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
28079 (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
28080 Reworked switch to get a more correct behaviour with events and refing
28081 of data stored in sinkpads.
28082 * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
28083 we don't pull from a pad in EOS.
28085 2004-02-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
28087 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
28088 remove v1 tag even if we can't read it (makes sure we don't detect
28091 2004-02-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
28093 * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
28094 (gst_alsa_xrun_recovery):
28095 * ext/alsa/gstalsa.h:
28096 try xrun recovery when wait failed. Make xrun recovery function
28097 return TRUE/FALSE to indicate success. (might fix #134354)
28099 2004-02-13 David Schleef <ds@schleef.org>
28101 * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
28102 (dynparm_value_changed), (main): Convert from float to double.
28103 * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
28105 2004-02-13 David Schleef <ds@schleef.org>
28107 * gst/silence/gstsilence.c: (gst_silence_class_init),
28108 (gst_silence_set_clock), (gst_silence_get),
28109 (gst_silence_set_property), (gst_silence_get_property):
28110 * gst/silence/gstsilence.h: Add sync property.
28111 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28112 (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
28113 (gst_sinesrc_set_property), (gst_sinesrc_get_property):
28114 * gst/sine/gstsinesrc.h: Add sync property.
28116 2004-02-13 David Schleef <ds@schleef.org>
28118 * gst/intfloat/gstint2float.c: (conv_f32_s16),
28119 (gst_int2float_chain_gint16): Change stdint usage to glib types.
28121 2004-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
28125 * gst-libs/ext/Makefile.am:
28126 move ffmpeg plugin to gst-ffmpeg module
28128 2004-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
28130 * configure.ac: use GST_ARCH to detect architecture
28132 2004-02-12 Julien MOUTTE <julien@moutte.net>
28134 * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
28136 2004-02-12 Thomas Vander Stichele <thomas at apestaart dot org>
28138 * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
28139 classify LADSPA plugins based on number of src/sink pads
28140 (#133663, Stefan Kost)
28141 * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
28142 fix dparams registration
28143 (#133528, Stefan Kost)
28144 * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
28145 fix use of isprint and use g_ascii_isprint instead
28146 (#133316, Stefan Kost)
28148 2004-02-11 David Schleef <ds@schleef.org>
28150 Convert a few inner loops to use liboil. This is currently
28151 optional, and is only enabled if liboil is present (duh!).
28152 * configure.ac: Check for liboil-0.1
28153 * gst/intfloat/Makefile.am:
28154 * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
28155 (gst_int2float_chain_gint16):
28156 * gst/videofilter/Makefile.am:
28157 * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
28158 (tablelookup_u8), (gst_videobalance_planar411):
28159 * gst/videotestsrc/Makefile.am:
28160 * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
28161 * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
28162 (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
28163 (paint_hline_RGB565), (paint_hline_xRGB1555):
28165 2004-02-11 David Schleef <ds@schleef.org>
28167 * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
28168 (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
28169 (gst_colorspace_getcaps), (gst_colorspace_link),
28170 (gst_colorspace_base_init), (gst_colorspace_init),
28171 (gst_colorspace_chain), (gst_colorspace_change_state),
28172 (plugin_init): Merge Ronald's patch (bug #117897) and update
28173 for new caps and negotiation. Seems to work, although it
28174 shows off bugs in lcs.
28176 2004-02-11 David Schleef <ds@schleef.org>
28178 * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
28179 (bug #133886) Noticed by bugs@leroutier.net (Stephane LOEUILLET)
28181 2004-02-11 David Schleef <ds@schleef.org>
28183 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
28184 (gst_rfbsrc_change_state), (gst_rfbsrc_init),
28185 (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
28186 Add server and port properties
28188 2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
28193 * m4/as-liblame.m4:
28194 * m4/as-slurp-ffmpeg.m4:
28195 * m4/check-libheader.m4:
28202 * m4/gst-ivorbis.m4:
28203 * m4/gst-matroska.m4:
28205 * m4/gst-shout2.m4:
28213 fix underquotedness of macros (#133800)
28214 * m4/as-avifile.m4:
28216 removed because no longer used
28218 2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
28221 require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
28222 by autopoint (fixes #132996)
28224 2004-02-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
28226 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
28227 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
28228 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
28229 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
28232 2004-02-11 David Schleef <ds@schleef.org>
28234 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
28235 (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
28236 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
28237 (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
28238 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
28239 (gst_jpegenc_class_init), (gst_jpegenc_init),
28240 (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
28241 (gst_jpegenc_chain), (gst_jpegenc_set_property),
28242 (gst_jpegenc_get_property): Fix negotiation. Add some properties.
28243 * ext/jpeg/gstjpegenc.h: Fix negotiation.
28245 2004-02-10 Benjamin Otte <in7y118@public.uni-hamburg.de>
28247 * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
28248 (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
28249 * ext/mikmod/gstmikmod.h:
28250 fix caps negotiation in mikmod
28251 * ext/ogg/gstoggdemux.c: (gst_ogg_print):
28252 output debug information
28254 2004-02-08 Benjamin Otte <in7y118@public.uni-hamburg.de>
28256 * gst-libs/gst/colorbalance/Makefile.am:
28257 * gst-libs/gst/navigation/Makefile.am:
28258 * gst-libs/gst/xoverlay/Makefile.am:
28259 remove unused GST_OPT_CFLAGS from Makefiles
28260 include X_CFLAGS and X_LIBS in xoverlay. (#131948)
28262 2004-02-07 David Schleef <ds@schleef.org>
28264 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
28265 push events to pads that haven't been created (#133508)
28267 2004-02-07 Jan Schmidt <thaytan@mad.scientist.com>
28269 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
28270 (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
28271 (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
28272 (gst_dvdec_loop), (gst_dvdec_change_state):
28273 Second attempt at committing a working dvdec element.
28275 2004-02-06 David Schleef <ds@schleef.org>
28277 Build fixes for OS X: (see #129600)
28278 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
28279 (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
28280 (gst_riff_read_strf_iavs):
28281 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
28282 (gst_avi_demux_stream_odml):
28283 * gst/playondemand/Makefile.am:
28284 * gst/rtp/rtp-packet.c:
28286 2004-02-05 David Schleef <ds@schleef.org>
28288 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
28289 last change, because it Just Doesn't Compile.
28291 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
28293 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
28294 skip undecodable id3v2 tag instead of keeping it
28296 2004-02-05 David Schleef <ds@schleef.org>
28298 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
28299 Unref leaked buffer. (Noticed by Ronald)
28301 2004-02-05 David I. Lehn <dlehn@users.sourceforge.net>
28303 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28304 Sync requires with other checks. >= vs =.
28306 2004-02-06 Jan Schmidt <thaytan@mad.scientist.com>
28308 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
28309 (gst_dvdec_video_link), (gst_dvdec_loop):
28310 * ext/dv/gstdvdec.h:
28311 rework the caps negotiation so that dvdec works again instead
28312 of just segfaulting.
28314 === release 0.7.4 ===
28316 2004-02-06 Thomas Vander Stichele <thomas at apestaart dot org>
28318 * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
28319 * configure.ac: changed for release
28321 2004-02-05 Thomas Vander Stichele <thomas at apestaart dot org>
28323 * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
28324 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
28325 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28326 * pkgconfig/gstreamer-play-uninstalled.pc.in:
28327 reworked patch by David Lehn to fix libdir and includedir for
28328 uninstalled libraries
28329 removed play and gconf from gstreamer-libs since they have their
28330 own pkgconfig files
28332 2004-02-04 David Schleef <ds@schleef.org>
28334 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
28337 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
28339 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
28340 use correct GST_TAG_ENCODER tag
28342 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
28344 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
28345 be sure to stop the clock when going to paused
28346 * sys/oss/gstosssink.c: (gst_osssink_change_state):
28347 reset number of transmitted when going to ready.
28350 2004-02-05 Charles Schmidt <cschmidt2@emich.edu>
28352 reviewed by Benjamin Otte
28354 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
28355 extract track count (fixes #133410)
28357 2004-02-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
28359 * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
28360 that should be !=, not == (fixes #132519)
28362 2004-02-04 David Schleef <ds@schleef.org>
28364 Make sure set_explicit_caps() is called before adding pad.
28365 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
28366 * gst/id3/gstid3types.c: (gst_id3types_loop):
28367 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
28368 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
28370 2004-02-04 Thomas Vander Stichele <thomas at apestaart dot org>
28373 bump nano to 2, first prerelease
28374 put back AM_PROG_LIBTOOL
28376 2004-02-04 Thomas Vander Stichele <thomas at apestaart dot org>
28378 * testsuite/alsa/Makefile.am:
28379 these are user test apps, not automatic testsuite tests
28381 2004-02-04 David Schleef <ds@schleef.org>
28383 Convert GST_DEBUG_CAPS() to GST_DEBUG():
28384 * gst/mpeg1videoparse/gstmp1videoparse.c:
28385 (mp1videoparse_parse_seq):
28386 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
28387 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
28388 * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
28389 * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
28390 (gst_xvideosink_getcaps):
28391 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
28392 * testsuite/gst-lint: more tests
28394 2004-02-04 David Schleef <ds@schleef.org>
28396 Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
28397 with the code that they would expand to.
28398 * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
28399 (gst_flacdec_get_src_query_types),
28400 (gst_flacdec_get_src_event_masks):
28401 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
28402 (gst_gnomevfssrc_get_query_types),
28403 (gst_gnomevfssrc_get_event_mask):
28405 2004-02-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
28407 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28408 (gst_sinesrc_dispose):
28409 fix memleak by properly disposing sinesrc
28411 2004-02-04 Julien MOUTTE <julien@moutte.net>
28413 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
28414 * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
28415 an overlay to redraw the image because it has been exposed.
28416 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
28417 (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
28418 (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
28419 * sys/ximage/ximagesink.h: Implement expose method from XOverlay
28421 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
28422 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
28423 (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
28424 * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
28427 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
28429 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
28430 more memleak fixage
28432 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
28434 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
28435 * gst/typefind/gsttypefindfunctions.c:
28436 fix memleaks shown by gst-typefind
28438 2004-02-03 Thomas Vander Stichele <thomas at apestaart dot org>
28440 * common/glib-gen.mak:
28441 add hack rule to touch .Plo files
28442 * gst-libs/gst/colorbalance/Makefile.am:
28443 * gst-libs/gst/mixer/Makefile.am:
28444 * gst-libs/gst/play/Makefile.am:
28445 * gst-libs/gst/tuner/Makefile.am:
28446 remove glib_root variable
28448 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
28450 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
28451 set explicit caps before adding the element, so the autopluggers can
28453 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
28454 (mpeg2_sys_type_find), (mpeg1_sys_type_find),
28455 (mpeg_video_type_find), (mpeg_video_stream_type_find),
28457 fix memleaks in typefind functions. gst_type_find_suggest takes a const
28460 2004-02-03 Thomas Vander Stichele <thomas at apestaart dot org>
28462 * gst-libs/gst/colorbalance/Makefile.am:
28463 * gst-libs/gst/colorbalance/colorbalance-marshal.list:
28464 * gst-libs/gst/colorbalance/colorbalance.c:
28465 * gst-libs/gst/colorbalance/colorbalance.h:
28466 * gst-libs/gst/colorbalance/colorbalancemarshal.list:
28467 * gst-libs/gst/mixer/Makefile.am:
28468 * gst-libs/gst/mixer/mixer-marshal.list:
28469 * gst-libs/gst/mixer/mixer.c:
28470 * gst-libs/gst/mixer/mixer.h:
28471 * gst-libs/gst/mixer/mixermarshal.list:
28472 * gst-libs/gst/play/Makefile.am:
28473 * gst-libs/gst/play/play.h:
28474 * gst-libs/gst/tuner/Makefile.am:
28475 * gst-libs/gst/tuner/tuner-marshal.list:
28476 * gst-libs/gst/tuner/tuner.c:
28477 * gst-libs/gst/tuner/tuner.h:
28478 * gst-libs/gst/tuner/tunermarshal.list:
28479 use new glib-gen.mak snippet to clean up Makefile.am
28480 fix various bugs in Makefile.am's
28482 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
28484 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
28485 handle chain parsing correctly in the multichain case
28486 * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
28487 (theora_dec_from_granulepos), (theora_dec_to_granulepos),
28488 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
28489 (theora_dec_chain):
28490 handle events and queries correctly
28492 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
28495 Ignore generated file _stdint.h.
28497 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
28499 * gst-libs/gst/colorbalance/Makefile.am:
28500 * gst-libs/gst/colorbalance/colorbalance.h:
28501 * gst-libs/gst/mixer/Makefile.am:
28502 * gst-libs/gst/mixer/mixer.h:
28503 * gst-libs/gst/play/Makefile.am:
28504 * gst-libs/gst/play/play.h:
28505 * gst-libs/gst/tuner/Makefile.am:
28506 * gst-libs/gst/tuner/tuner.h:
28507 Generate enum type code with glib-mkenums.
28508 * gst-libs/gst/colorbalance/.cvsignore:
28509 * gst-libs/gst/mixer/.cvsignore:
28510 * gst-libs/gst/play/.cvsignore:
28511 * gst-libs/gst/tuner/.cvsignore:
28512 Ignore generated files.
28514 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
28516 * gst-libs/gst/audio/.cvsignore:
28517 Ignore generated file.
28518 * gst-libs/gst/audio/Makefile.am:
28519 Do not install example filter.
28521 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
28523 * examples/switch/.cvsignore:
28524 Ignore generated file.
28526 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
28528 * common/m4/ax_create_stdint_h.m4:
28530 add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
28533 remove generated _stdint.h in DISTCLEANFILES
28534 * ext/a52dec/gsta52dec.c:
28535 include _stdint.h for a52dec. (should fix #133064)
28537 2004-02-02 Jeremy Simon <jesimon@libertysurf.fr>
28539 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
28540 (gst_tag_to_vorbis_comments):
28541 Add replaygain support to vorbistag
28543 2004-02-02 Jeremy Simon <jesimon@libertysurf.fr>
28544 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
28545 (gst_ffmpeg_caps_to_extradata):
28546 Fix SVQ3 caps flag properties
28547 Use glib macro for bytes swap
28549 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
28551 * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
28552 * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
28553 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
28554 * ext/sndfile/gstsf.c: (plugin_init):
28555 * gst/avi/gstavi.c: (plugin_init):
28556 * sys/dxr3/dxr3init.c: (plugin_init):
28557 * sys/oss/gstossaudio.c: (plugin_init):
28558 * sys/v4l/gstv4l.c: (plugin_init):
28559 * sys/v4l2/gstv4l2.c: (plugin_init):
28560 remove textdomain calls
28562 update Dutch translation
28564 2004-02-02 Julien MOUTTE <julien@moutte.net>
28566 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
28567 (gst_play_set_audio_sink): Moving volume in the audio thread for
28568 instantaneous volume change. Maybe i will add another volume in front
28569 of visualization later, not sure yet though.
28571 2004-02-02 Julien MOUTTE <julien@moutte.net>
28573 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28574 (gst_ximagesink_handle_xevents): Better X events handling, only take
28575 the latest events for configure and motion.
28576 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
28578 2004-02-02 Jon Trowbridge <trow@gnu.org>
28580 reviewed by: David Schleef <ds@schleef.org>
28583 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
28584 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
28586 2004-02-02 David Schleef <ds@schleef.org>
28588 code cleanup. Change bzero() to memset(). Remove duplicate ; at ends
28590 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
28591 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
28592 * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
28593 * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
28594 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
28595 * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
28596 * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
28597 * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
28598 (gst_float2_2_int_link):
28599 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
28600 * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
28601 * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
28602 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
28603 * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
28604 * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
28605 * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
28606 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
28607 * testsuite/gst-lint: Add tests for bzero and ;;
28609 2004-02-02 David Schleef <ds@schleef.org>
28611 * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
28613 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
28615 * ext/aalib/gstaasink.c: (gst_aasink_open):
28616 * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
28617 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
28618 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
28619 * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
28620 (gst_afsink_close_file):
28621 * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
28622 (gst_afsrc_close_file):
28623 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
28624 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
28625 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
28626 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
28627 * ext/esd/esdmon.c: (gst_esdmon_get):
28628 * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
28629 * ext/faac/gstfaac.c: (gst_faac_chain):
28630 * ext/faad/gstfaad.c: (gst_faad_chain):
28631 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
28632 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
28633 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
28634 * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
28635 (gst_flacdec_loop):
28636 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
28637 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
28638 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
28639 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
28640 (gst_gnomevfssink_close_file):
28641 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
28642 (gst_gnomevfssrc_open_file):
28643 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
28644 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
28645 * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
28646 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
28647 (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
28648 * ext/mad/gstmad.c: (gst_mad_chain):
28649 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
28650 * ext/mpeg2dec/gstmpeg2dec.c:
28651 * ext/mpeg2enc/gstmpeg2enc.cc:
28652 * ext/mplex/gstmplex.cc:
28653 * ext/mplex/gstmplexibitstream.cc:
28654 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
28655 (gst_ogg_demux_push):
28656 * ext/raw1394/gstdv1394src.c:
28657 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
28658 (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
28659 * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
28661 * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
28662 * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
28663 * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
28664 * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
28665 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
28666 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
28667 * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
28668 * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
28669 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
28670 (gst_riff_read_element_data), (gst_riff_read_seek),
28671 (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
28672 * gst/adder/gstadder.c: (gst_adder_loop):
28673 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
28674 (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
28675 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
28676 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
28677 * gst/avi/gstavimux.c: (gst_avimux_stop_file):
28678 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
28679 * gst/goom/gstgoom.c: (gst_goom_chain):
28680 * gst/id3/gstid3types.c: (gst_id3types_loop):
28681 * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
28682 * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
28683 * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
28684 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
28685 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
28686 (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
28687 (gst_ebml_read_float), (gst_ebml_read_header):
28688 * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
28689 (gst_matroska_demux_parse_blockgroup):
28690 * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
28691 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
28692 * gst/oneton/gstoneton.c: (gst_oneton_chain):
28693 * gst/silence/gstsilence.c: (gst_silence_get):
28694 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
28695 * gst/smpte/gstsmpte.c: (gst_smpte_loop):
28696 * gst/speed/gstspeed.c: (speed_loop):
28697 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
28698 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
28699 * gst/volenv/gstvolenv.c: (gst_volenv_chain):
28700 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
28701 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
28702 (gst_wavparse_loop):
28703 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
28704 (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
28705 (dxr3audiosink_close):
28706 * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
28707 * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
28708 (dxr3videosink_close), (dxr3videosink_write_data):
28709 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
28710 * sys/oss/gstosssink.c: (gst_osssink_chain):
28711 * sys/oss/gstosssrc.c: (gst_osssrc_get):
28712 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
28713 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
28714 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
28715 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
28716 (gst_v4l_set_window), (gst_v4l_enable_overlay):
28717 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
28718 (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
28719 (gst_v4l_get_frequency), (gst_v4l_set_frequency),
28720 (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
28721 (gst_v4l_set_audio):
28722 * sys/v4l/v4l_calls.h:
28723 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
28724 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
28725 (gst_v4lmjpegsink_playback_init),
28726 (gst_v4lmjpegsink_playback_start):
28727 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
28728 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
28729 (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
28730 (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
28731 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
28732 * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
28733 (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
28734 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
28735 (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
28736 (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
28737 (gst_v4l2_get_output), (gst_v4l2_set_output),
28738 (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
28739 (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
28740 (gst_v4l2_set_attribute):
28741 * sys/v4l2/v4l2_calls.h:
28742 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
28743 (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
28744 (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
28745 (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
28746 (gst_v4l2src_capture_stop):
28747 * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
28748 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
28749 (gst_ximagesink_chain):
28750 * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
28751 (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
28752 (gst_xvideosink_xwindow_new):
28753 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
28754 (gst_xvimagesink_chain):
28756 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
28758 * gst/volume/gstvolume.c: (gst_volume_set_volume),
28759 (gst_volume_get_volume), (volume_class_init), (volume_init),
28760 (volume_chain_int16), (volume_update_volume):
28761 * gst/volume/gstvolume.h:
28762 make code more readable by removing magic numbers
28763 make mixer interface export 0-100 range
28764 make it internally map to 0.0-1.0 range so users don't distort
28765 output by putting the sliders at full volume
28767 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
28769 * gst-libs/gst/play/play.c: (gst_play_tick_callback),
28770 (gst_play_state_change), (gst_play_seek_to_time):
28771 block the tick callback for 0.5 secs after doing a seek
28773 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
28775 * gst-libs/gst/play/play.c: (gst_play_new):
28778 2004-02-01 Julien MOUTTE <julien@moutte.net>
28780 * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
28781 (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
28782 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
28783 (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
28784 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
28785 (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
28787 2004-02-01 Thomas Vander Stichele <thomas at apestaart dot org>
28790 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
28791 check for a function added in vorbis 1.1
28793 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
28795 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
28796 (gst_alsa_drain_audio), (gst_alsa_stop_audio):
28797 really start/stop clock only on PLAYING <=> PAUSED
28798 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
28799 remove \n from debugging lines
28800 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
28801 make it work when seeking does not
28802 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
28805 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
28807 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
28808 start clock on PAUSED=>PLAYING, not later
28809 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
28810 extract correct time for different discont formats
28811 (gst_alsa_sink_get_time):
28812 don't segfault when no format is negotiated yet, just return 0
28813 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
28814 (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
28815 (gst_ogg_pad_push):
28816 handle flush and discont events correctly
28817 * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
28818 handle discont events correctly
28820 2004-01-31 Thomas Vander Stichele <thomas at apestaart dot org>
28822 * gst-libs/gst/play/play.c: (gst_play_error_quark),
28823 (gst_play_error_create), (gst_play_error_plugin),
28824 (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
28825 * gst-libs/gst/play/play.h:
28826 add error handling during creation
28827 * examples/gstplay/player.c: (main):
28828 use new gst_play_new
28831 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
28833 * ext/theora/theoradec.c: (theora_dec_chain):
28835 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
28836 (vorbis_dec_src_event), (vorbis_dec_chain):
28837 add encoder tag, fix tag reading to be more error tolerant, change
28838 BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
28839 gst_pad_event_default.
28840 * gst/tags/gstvorbistag.c:
28841 (gst_tag_list_from_vorbiscomment_buffer):
28842 undefine function specific define at end of function
28844 2004-01-31 Jeremy Simon <jesimon@libertysurf.fr>
28846 * ext/flac/gstflac.c: (plugin_init):
28847 * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
28848 * ext/flac/gstflacdec.h:
28849 * ext/flac/gstflacenc.h:
28852 2004-01-30 David I. Lehn <dlehn@users.sourceforge.net>
28854 * examples/gstplay/player.c: s/gstplay.h/play.h/
28856 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
28858 * gst-libs/gst/play/Makefile.am:
28859 * gst-libs/gst/play/gstplay.c:
28860 * gst-libs/gst/play/gstplay.h:
28861 * gst-libs/gst/play/play.c:
28862 more surgery, operation complete
28864 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
28866 * gst-libs/gst/play/play.old.c:
28867 * gst-libs/gst/play/play.old.h:
28868 after CVS surgery by moving, remove
28869 * gst-libs/gst/play/playpipelines.c:
28872 * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
28873 add negotiation error
28875 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
28877 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
28878 (gst_ogg_demux_push):
28879 add some seeking debug info
28880 send a flush when seeking
28882 2004-01-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
28888 * ext/theora/Makefile.am:
28889 * ext/theora/theoradec.c:
28890 add theora video decoder. Does just do simple decoding for now and
28891 has been tested against Theora cvs only. It only works when theora
28892 is compiled with --enable-static.
28893 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
28894 always reset packetno on DISCONT
28896 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
28898 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
28901 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
28903 * gst/mpegaudioparse/gstmpegaudioparse.c:
28904 (mp3_type_frame_length_from_header):
28905 Fix header parsing - stolen from ffmpeg (thank you! :) ).
28907 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
28909 * ext/esd/esdsink.c: (gst_esdsink_init):
28910 Since we have static pad template caps, we don't need to negotiate;
28911 either the core errors out or we know the format.
28913 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
28915 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
28916 (gst_riff_read_seek):
28917 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
28918 (gst_ebml_read_seek):
28919 Fix event handling.
28921 2004-01-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
28923 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
28924 removee video/x-theora from vp3 decoder, it doesn't handle raw
28926 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
28927 fix bug with finalizing element that never went to PAUSED
28928 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
28929 length and position queries were swapped
28930 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
28931 (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
28932 (vorbis_dec_src_event):
28933 implement querying time and bytes
28935 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
28937 * just about every source file:
28938 gst_element_error -> GST_ELEMENT_ERROR
28940 2004-01-29 Julien MOUTTE <julien@moutte.net>
28942 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
28943 emiting FLUSH and even before DISCONT.
28944 * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
28945 get the best instant seeking as possible yay!
28947 2004-01-29 Ronald Bultje <rbultje@ronald.bitfreak.net>
28949 * gst/mpeg1videoparse/gstmp1videoparse.c:
28950 (gst_mp1videoparse_real_chain):
28951 Committed wrong version last week... Grr... Didn't notice until now.
28953 2004-01-29 Julien MOUTTE <julien@moutte.net>
28955 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
28956 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
28957 have_xwindow_id signal in xwindow_create.
28959 2004-01-29 Benjamin Otte <in7y118@public.uni-hamburg.de>
28961 * ext/ogg/gstoggdemux.c:
28962 lots of changes - mainly support for chained bitstreams, seeking,
28963 querying and bugfixes of course
28964 * ext/vorbis/Makefile.am:
28965 * ext/vorbis/vorbisdec.c:
28966 * ext/vorbis/vorbisdec.h:
28967 add vorbisdec raw vorbis decoder
28968 * ext/vorbis/vorbis.c: (plugin_init):
28969 register vorbisdec as PRIMARY, vorbisfile as SECONDARY
28970 * gst/intfloat/Makefile.am:
28971 * gst/intfloat/float22int.c:
28972 * gst/intfloat/float22int.h:
28973 * gst/intfloat/gstintfloatconvert.c: (plugin_init):
28974 add float2intnew plugin. It converts multichannel interleaved float to
28975 multichannel interleaved int. The name should probably be changed.
28976 * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
28978 add typefinding for raw theora video so oggdemux can detect it.
28980 2004-01-28 Julien MOUTTE <julien@moutte.net>
28982 * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
28983 sink element first.
28984 * gst/videoscale/gstvideoscale.c:
28985 (gst_videoscale_handle_src_event): Fixing src event handler.
28987 2004-01-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
28989 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
28990 (gst_v4lsrc_open), (gst_v4lsrc_close),
28991 (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
28992 (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
28993 * sys/v4l/gstv4lsrc.h:
28994 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
28995 (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
28996 Implement resizing... Hack. But that's why v4l is b0rked...
28998 2004-01-28 Julien MOUTTE <julien@moutte.net>
29000 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
29001 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
29002 (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
29003 (gst_ximagesink_xwindow_destroy):
29004 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
29005 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
29006 (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
29007 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
29008 (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
29009 correctly cleaning the image created to check xshm calls on succes,
29010 added a lot of XSync calls in X11 functions, and fixed a segfault when
29011 no image format was defined before negotiation happened.
29013 2004-01-28 Benjamin Otte <in7y118@public.uni-hamburg.de>
29015 * ext/alsa/gstalsa.c: (gst_alsa_query_func):
29016 use gst_element_get_time to get correct time
29018 2004-01-28 Julien MOUTTE <julien@moutte.net>
29020 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
29021 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
29022 (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
29023 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
29024 (gst_xvimagesink_check_xshm_calls),
29025 (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
29026 X plugins are now able to detect that XShm calls will fail even if the
29027 server claims that it has XShm support (remote displays most of the
29028 time). We then log the error as a GST_DEBUG and set use_shm to FALSE
29029 so that we use non XShm functions. This feature is almost useless for
29030 xvimagesink as Xv is not supported on remote displays anyway, but
29031 it might happen than even on the local display XShm calls fail.
29033 2004-01-27 David Schleef <ds@schleef.org>
29035 * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
29036 (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
29037 (gst_esdsink_change_state): Fix sync issues in esdsink. Also
29038 changed esdsink to only use 44100,16,2, since esd sucks at rate
29039 conversion and esdsink has had difficulty negotiating.
29041 2004-01-27 Julien MOUTTE <julien@moutte.net>
29043 * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
29044 (gst_play_seek_to_time): Fixing the way to get current position.
29046 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
29048 * sys/oss/gstosssink.c: (gst_osssink_sink_query):
29049 use gst_element_get_time to get correct time
29051 2004-01-27 Julien MOUTTE <julien@moutte.net>
29053 * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
29054 fix ever... Inverting 2 lines of code make spider autoplug correctly
29057 2004-01-27 David Schleef <ds@schleef.org>
29059 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
29060 Use gst_pad_try_set_caps_nonfixed().
29062 2004-01-27 David Schleef <ds@schleef.org>
29064 * gst/ac3parse/gstac3parse.c: update to checklist 5
29065 * gst/adder/gstadder.c: rewrite negotiation. update to checklist 5
29066 * gst/audioconvert/gstaudioconvert.c: update to checklist 5
29067 * gst/audioscale/gstaudioscale.c: same
29068 * gst/auparse/gstauparse.c: same
29069 * gst/avi/gstavidemux.c: same
29071 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
29073 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
29074 stop processing after EOS
29076 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
29078 * gst/asfdemux/asfheaders.h:
29079 * gst/asfdemux/gstasfdemux.c:
29080 * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
29081 (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
29082 (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
29083 lot's of fixes to make data extraction simpler and get the code
29084 architecture and compiler independant. Add debugging category
29085 * gst/goom/gstgoom.c: (gst_goom_change_state):
29086 reset channel count on PAUSED=>READY, not READY=>PAUSED
29088 2004-01-26 Colin Walters <walters@verbum.org>
29090 * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
29091 code to pull a bigger buffer in iradio mode. This as a side effect
29092 makes typefinding work.
29094 2004-01-26 Jeremy Simon <jesimon@libertysurf.fr>
29096 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
29097 Fix SVQ3 decoding on PPC
29099 2004-01-26 Julien MOUTTE <julien@moutte.net>
29101 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
29102 that one managed to stay there... Fixed.
29104 2004-01-26 Jeremy Simon <jesimon@libertysurf.fr>
29106 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
29107 (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
29108 * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
29109 (qtdemux_video_caps):
29110 * gst/qtdemux/qtdemux.h:
29111 Add SVQ3 specific flags to qtdemux and ffmpeg
29113 2004-01-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
29115 * gst-libs/gst/audio/audio.h:
29116 remove buffer-frames from audio caps
29117 * gst/audioconvert/gstaudioconvert.c:
29118 fix plugin to really work.
29120 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29122 * gst-libs/gst/mixer/mixer.c:
29123 * gst-libs/gst/propertyprobe/propertyprobe.c:
29124 * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
29125 (gst_tuner_find_channel_by_name):
29126 * gst-libs/gst/tuner/tuner.h:
29127 Add gtk-doc style comments. Also fix a function name.
29129 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29131 * ext/divx/gstdivxdec.c: (gst_divxdec_init),
29132 (gst_divxdec_negotiate):
29133 Fix for new capsnego - also fixes gst-player with divxdec.
29135 2004-01-25 Julien MOUTTE <julien@moutte.net>
29137 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
29138 (gst_play_identity_handoff), (gst_play_set_location),
29139 (gst_play_set_visualization), (gst_play_connect_visualization): Another
29140 try in visualization implementation. Still have an issue with switch
29141 blocking when pulling from video_queue and only audio comes out of
29143 * gst/switch/gstswitch.c: (gst_switch_release_pad),
29144 (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
29145 release method. And check if the pad is usable before pulling.
29147 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29149 * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
29150 (gst_videobalance_init),
29151 (gst_videobalance_colorbalance_list_channels),
29152 (gst_videobalance_colorbalance_set_value),
29153 (gst_videobalance_colorbalance_get_value),
29154 (gst_videobalance_update_properties),
29155 (gst_videobalance_update_tables_planar411),
29156 (gst_videobalance_planar411):
29157 * gst/videofilter/gstvideobalance.h:
29158 Implement lookup-tables. +/- 10x faster.
29160 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29162 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
29163 (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
29164 The index reading was broken. The rest worked fine, but the whole
29165 goal of my rewrite was to make avidemux readable, and this was
29166 not at all readable. Please use typed variables.
29168 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29170 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29171 Additional pad usability check.
29172 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
29173 (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
29174 (gst_mp1videoparse_real_chain):
29175 Fix MPEG video stream parsing. The original plugin had several
29176 issues, including not timestamping streams where the source was
29177 not timestamped (this happens with PTS values in mpeg system
29178 streams, but MPEG video is also a valid stream on its own so
29179 that needs timestamps too). We use the display time code for that
29180 for now. Also, if one incoming buffer contains multiple valid
29181 frames, we push them all on correctly now, including proper EOS
29182 handling. Lastly, several potential segfaults were fixed, and we
29183 properly sync on new sequence/gop headers to include them in next,
29184 not previous frames (since they're header for the next frame, not
29185 the previous). Also see #119206.
29186 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
29188 Move caps setting so we only do it after finding several valid
29189 MPEG-1 fraes sequentially, not right after the first one (which
29190 might be coincidental).
29191 * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
29192 (mpeg_video_type_find), (mpeg_video_stream_type_find),
29194 Add unsynced MPEG video stream typefinding, and change some
29195 probability values so we detect streams rightly. The idea is as
29196 follows: I can have an unsynced system stream which contains
29197 video. In the current code, I would randomly get a type for either
29198 system or video stream type found, because the probabilities are
29199 being calculated rather randomly. I now use fixed values, so we
29200 always prefer system stream if that was found (and that is how it
29201 should be). If no system stream was found, we can still identity the stream as video-only.
29203 2004-01-23 Benjamin Otte <in7y118@public.uni-hamburg.de>
29205 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
29206 (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
29207 don't write to buffer. Extract data without the need of
29208 __attribute__ ((packed))
29210 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29212 * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
29213 (mpeg1_sys_type_find):
29214 Fix MPEG-1 stream typefinding.
29216 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29218 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
29219 Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
29221 2004-01-23 Thomas Vander Stichele <thomas at apestaart dot org>
29223 * ext/esd/esdsink.c: (gst_esdsink_open_audio):
29224 * ext/esd/gstesd.c: (plugin_init):
29225 private debugging, better error reporting
29227 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29229 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
29230 (gst_riff_read_init), (gst_riff_read_change_state):
29231 * gst-libs/gst/riff/riff-read.h:
29232 Remove stuff fromold metadata system.
29234 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29236 * ext/ogg/gstoggdemux.c:
29237 Fix wrong file comment.
29238 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29239 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
29240 Add metadata reading properly.
29242 2004-01-23 Thomas Vander Stichele <thomas at apestaart dot org>
29245 Fix nas DIST_SUBDIRS
29247 Fix bug where make distcheck doesn't get run on adding stuff to
29250 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29252 * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
29253 * ext/divx/gstdivxdec.h:
29254 Fix divx3 ("msmpeg4") playback using divxdec.
29256 2004-01-23 Benjamin Otte <in7y118@public.uni-hamburg.de>
29258 * gst/typefind/gsttypefindfunctions.c:
29259 (mp3_type_frame_length_from_header): fix bug in length computation
29260 (mp3_type_find): improve debugging output
29262 2004-01-23 Julien MOUTTE <julien@moutte.net>
29264 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
29265 (gst_play_set_location), (gst_play_seek_to_time),
29266 (gst_play_set_audio_sink), (gst_play_set_visualization),
29267 (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
29268 the pipeline from scratch. Visualization is back and switch went out as
29269 i realized it was not possible to use the way i wanted.
29270 * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
29271 (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
29272 clearing in state change from READY to NULL. So that one can clean the
29273 X ressources keeping the element.
29274 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29275 (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
29276 (gst_xvimagesink_colorbalance_set_value),
29277 (gst_xvimagesink_colorbalance_get_value),
29278 (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
29279 (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
29280 change from READY to NULL and fixed some stupid bugs in colorbalance
29281 get/set values. Also added the following feature : when nobody tries to
29282 set some values to the colorbalance levels before the xcontext is
29283 grabbed, then when creating channels list from Xv attributes we set the
29284 internal values to the Xv defaults. This way we handle buggy Xv drivers
29285 that set default hue values far from the middle of the range (Thanks
29286 to Jon Trowbridge for pointing that issue).
29287 * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
29288 colorbalance levels have been set before xcontext is grabbed.
29290 2004-01-22 Ronald Bultje <rbultje@ronald.bitfreak.net>
29292 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
29293 Fix the ossmixer case where we shouldn't open /dev/dsp* because
29294 it might block operations (which is bad for a mixer).
29296 2004-01-22 Thomas Vander Stichele <thomas at apestaart dot org>
29298 * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
29299 (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
29300 (gmip_find_type_pre):
29301 * gst-libs/gst/media-info/media-info-priv.h:
29302 * gst-libs/gst/media-info/media-info.c:
29303 (gst_media_info_instance_init), (gst_media_info_read_idler):
29304 add fakesink to get caps on decoder src pad again
29305 fix callback prototype to match new have_type signal signature
29307 2004-01-22 Thomas Vander Stichele <thomas at apestaart dot org>
29309 * gst/adder/gstadder.c: (gst_adder_link):
29310 fix non-compile and cut-n-paste code
29312 2004-01-21 David Schleef <ds@schleef.org>
29314 * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
29315 (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
29316 (gst_swfdec_init), (gst_swfdec_change_state):
29317 * ext/swfdec/gstswfdec.h:
29319 * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
29320 (gst_adder_request_new_pad): Fix negotiation.
29321 * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
29322 Add a fixate function.
29323 * gst/intfloat/gstfloat2int.c:
29324 * gst/intfloat/gstfloat2int.h:
29325 * gst/intfloat/gstint2float.c:
29326 * gst/intfloat/gstint2float.h:
29327 Completely rewrite the negotiation. Doesn't quite work yet,
29328 due to some buffer-frames problem.
29330 2004-01-21 Thomas Vander Stichele <thomas at apestaart dot org>
29332 * ext/gnomevfs/gstgnomevfssrc.c:
29333 * sys/v4l2/v4l2_calls.h:
29334 fix includes for distcheck
29336 2004-01-21 Christian Schaller <uraeus@gnome.org>
29339 Add libnas (network audio system) plugin, patch from Arwed von Merkatz
29340 based on earlier patch from Laurent Vivier
29342 2004-01-20 Jeremy Simon <jesimon@libertysurf.fr>
29344 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
29345 Fix wma caps property
29346 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
29347 Fix typo (flags1 and flags2)
29349 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
29351 * gst-libs/gst/media-info/media-info-priv.c:
29352 (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
29353 (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
29354 (gmip_find_stream), (gmip_find_track_metadata),
29355 (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
29356 (gmip_find_track_format):
29357 * gst-libs/gst/media-info/media-info-priv.h:
29358 * gst-libs/gst/media-info/media-info-test.c: (main):
29359 * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
29360 (gst_media_info_read_idler), (gst_media_info_read):
29361 * gst-libs/gst/media-info/media-info.h:
29362 register debugging category and use it for debugging
29364 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
29366 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
29367 (gst_vorbisfile_new_link):
29368 signal streaminfo through tags
29370 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
29372 * ext/mplex/gstmplex.cc:
29373 * ext/mplex/gstmplexibitstream.cc:
29374 g++ doesn't like NULL in our i18n/error macros, should be
29375 either (NULL) or ("").
29377 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
29379 * sys/dxr3/dxr3audiosink.c:
29380 * sys/dxr3/dxr3init.c:
29381 * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
29382 * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
29383 Fix more error error error errors (missing includes here).
29385 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
29387 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
29388 fix thomas' error errors.
29390 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
29392 * ext/mpeg2enc/gstmpeg2enc.cc:
29395 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
29397 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
29398 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
29399 Fix for new error system.
29401 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
29403 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
29404 fix for new error reporting
29406 2004-01-20 David Schleef <ds@schleef.org>
29408 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
29409 (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
29410 (gst_ximagesink_set_xwindow_id): Change to using a framerate
29411 of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
29412 and neither is 100+, most likely.
29413 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
29414 (gst_xvimagesink_getcaps): same
29416 2004-01-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
29419 Up version requirement to 2.0.3 (not yet released) to avoid symbol
29420 clashes with ffmpeg.
29422 2004-01-20 Julien MOUTTE <julien@moutte.net>
29424 * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
29425 (gst_switch_init): Fixed switch element : proxying link and setting
29426 caps from src to sink on request.
29428 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
29430 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
29431 * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
29432 (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
29435 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
29437 * sys/v4l/v4l_calls.h:
29438 * sys/v4l2/v4l2_calls.h:
29439 element_error fixes
29441 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
29443 * gst-libs/gst/gst-i18n-plugin.h:
29445 remove config.h inclusion
29447 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
29450 adding autopoint invocation
29453 * gst-libs/gst/gettext.h:
29454 adding gettext bits
29455 * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
29456 * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
29457 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
29458 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
29459 (gst_gnomevfssink_close_file):
29460 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
29461 * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
29462 * gst-libs/gst/gst-i18n-plugin.h:
29463 * gst/avi/gstavi.c: (plugin_init):
29464 * sys/dxr3/dxr3init.c: (plugin_init):
29465 * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
29466 * sys/oss/gstossaudio.c: (plugin_init):
29467 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
29468 * sys/v4l/gstv4l.c: (plugin_init):
29469 * sys/v4l/v4l_calls.c: (gst_v4l_open):
29470 * sys/v4l2/gstv4l2.c: (plugin_init):
29471 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
29472 (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
29473 (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
29474 (gst_v4l2_set_output), (gst_v4l2_get_frequency),
29475 (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
29476 (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
29477 make sure locale and translation domain are set
29478 fix translated strings
29484 put translation files into place
29485 * sys/xvideo/imagetest.c: (main):
29486 * ext/dv/demo-play.c: (main):
29487 fix unnecessary translations
29489 2004-01-19 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
29491 * ext/sndfile/gstsf.c:
29492 * gst/avi/gstavimux.c:
29493 * ext/audiofile/gstafsink.c:
29494 * ext/audiofile/gstafsrc.c:
29495 * ext/gnomevfs/gstgnomevfssink.c:
29496 * ext/gnomevfs/gstgnomevfssrc.c:
29497 * sys/oss/gstosselement.c:
29498 * sys/v4l/v4l_calls.h:
29501 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
29503 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
29504 (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
29505 (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
29506 (gst_v4l2_get_output), (gst_v4l2_set_output),
29507 (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
29508 (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
29509 (gst_v4l2_set_attribute):
29510 update to new error handling
29512 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
29514 * ext/sidplay/gstsiddec.cc:
29515 * gst/modplug/gstmodplug.cc:
29516 parenthese NULL because C++ seems angry about it
29518 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
29520 * gst-libs/gst/gst-i18n-plugin.h:
29521 add skeleton i18n stuff, but needs to be further implemented
29523 2004-01-18 Thomas Vander Stichele <thomas at apestaart dot org>
29525 * examples/gstplay/player.c: (main):
29526 * ext/aalib/gstaasink.c: (gst_aasink_open):
29527 * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
29528 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29529 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
29530 * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
29531 (gst_afsink_close_file):
29532 * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
29533 (gst_afsrc_close_file):
29534 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
29535 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
29536 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
29537 * ext/esd/esdmon.c: (gst_esdmon_get):
29538 * ext/esd/esdsink.c: (gst_esdsink_chain):
29539 * ext/faac/gstfaac.c: (gst_faac_chain):
29540 * ext/faad/gstfaad.c: (gst_faad_chain):
29541 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
29542 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
29543 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
29544 * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
29545 (gst_flacdec_loop):
29546 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
29547 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
29548 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
29549 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
29550 (gst_gnomevfssink_close_file):
29551 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
29552 (gst_gnomevfssrc_open_file):
29553 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
29554 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
29555 * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
29556 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
29557 (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
29558 * ext/mad/gstmad.c: (gst_mad_chain):
29559 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
29560 * ext/mpeg2dec/gstmpeg2dec.c:
29561 * ext/mpeg2enc/gstmpeg2enc.cc:
29562 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
29563 * ext/mplex/gstmplex.cc:
29564 * ext/mplex/gstmplexibitstream.cc:
29565 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
29566 (gst_ogg_demux_push), (gst_ogg_pad_push):
29567 * ext/raw1394/gstdv1394src.c:
29568 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
29569 (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
29570 * ext/sidplay/gstsiddec.cc:
29571 * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
29573 * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
29574 * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
29575 * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
29576 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
29577 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
29578 * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
29579 * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
29580 * gst-libs/gst/Makefile.am:
29581 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
29582 (gst_riff_read_element_data), (gst_riff_read_seek),
29583 (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
29584 * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
29585 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
29586 (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
29587 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
29588 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
29589 * gst/avi/gstavimux.c: (gst_avimux_stop_file):
29590 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
29591 * gst/goom/gstgoom.c: (gst_goom_chain):
29592 * gst/id3/gstid3types.c: (gst_id3types_loop):
29593 * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
29594 * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
29595 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
29596 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
29597 (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
29598 (gst_ebml_read_float), (gst_ebml_read_header):
29599 * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
29600 (gst_matroska_demux_parse_blockgroup):
29601 * gst/modplug/gstmodplug.cc:
29602 * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
29603 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
29604 * gst/oneton/gstoneton.c: (gst_oneton_chain):
29605 * gst/silence/gstsilence.c: (gst_silence_get):
29606 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
29607 * gst/smpte/gstsmpte.c: (gst_smpte_loop):
29608 * gst/speed/gstspeed.c: (speed_loop):
29609 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
29610 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
29611 * gst/volenv/gstvolenv.c: (gst_volenv_chain):
29612 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
29613 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
29614 (gst_wavparse_loop):
29615 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
29616 (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
29617 (dxr3audiosink_close):
29618 * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
29619 * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
29620 (dxr3videosink_close), (dxr3videosink_write_data):
29621 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
29622 * sys/oss/gstosselement.h:
29623 * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
29624 (gst_osssink_chain):
29625 * sys/oss/gstosssrc.c: (gst_osssrc_get):
29626 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
29627 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
29628 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
29629 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
29630 (gst_v4l_enable_overlay):
29631 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
29632 (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
29633 (gst_v4l_get_frequency), (gst_v4l_set_frequency),
29634 (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
29635 (gst_v4l_set_audio):
29636 * sys/v4l/v4l_calls.h:
29637 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
29638 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
29639 (gst_v4lmjpegsink_playback_init),
29640 (gst_v4lmjpegsink_playback_start):
29641 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
29642 (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
29643 (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
29644 (gst_v4lmjpegsrc_requeue_frame):
29645 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
29646 (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
29647 (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
29648 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
29649 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
29650 (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
29651 (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
29652 (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
29653 (gst_v4l2src_capture_stop):
29654 * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
29655 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
29656 (gst_ximagesink_chain):
29657 * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
29658 (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
29659 (gst_xvideosink_xwindow_new):
29660 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29661 (gst_xvimagesink_chain):
29662 use new error signal, function and categories
29664 2004-01-18 Jeremy Simon <jesimon@libertysurf.fr>
29668 * ext/musicbrainz/gsttrm.c:
29669 * ext/musicbrainz/gsttrm.h:
29670 * ext/musicbrainz/Makefile.am:
29673 2004-01-18 Julien MOUTTE <julien@moutte.net>
29675 * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
29676 (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
29677 synchronous property for debugging.
29678 * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
29679 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29680 (gst_xvimagesink_set_property): Moving a pointer declaration to a
29681 smaller block, fixing indent.
29683 2004-01-16 David Schleef <ds@schleef.org>
29685 * gst/videofilter/gstvideobalance.c: Fix regression; changing a
29686 property affects the video stream.
29687 * sys/xvimage/xvimagesink.c:
29688 * sys/xvimage/xvimagesink.h:
29689 Add synchronous property for debugging. Should probably be
29690 disabled in non-CVS builds. Make sure that the Xv attribute
29691 exists before we set it (crash!). Fix a silly float bug that
29692 caused colorbalance to just not work.
29694 2004-01-17 Christian Schaller <Uraeus@gnome.org>
29696 * tools/gst-launch-ext.in - update for new plugins
29698 2004-01-16 David Schleef <ds@schleef.org>
29700 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
29701 already-freed caps.
29703 2994-01-16 Christian Schaller <Uraeus@gnome.org>
29705 * Update spec for new colorspace plugin and libcaca plugin
29706 * Fix compilation of libcaca plugin (clock -> id)
29708 2004-01-16 Julien MOUTTE <julien@moutte.net>
29710 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
29711 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
29712 (gst_xvimagesink_set_xwindow_id),
29713 (gst_xvimagesink_colorbalance_set_value),
29714 (gst_xvimagesink_colorbalance_get_value),
29715 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
29716 (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
29717 correct colorbalance properties. They can now be set when the element
29718 is still in NULL state. The values will be committed to the Xv Port
29719 when xcontext is initialized.
29720 * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
29721 brightness int values in the GstXvImagesink structure.
29723 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
29725 * gst-libs/gst/Makefile.am:
29726 restructure so having local patches works easier.
29728 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
29730 * ext/mpeg2enc/Makefile.am:
29731 * ext/mpeg2enc/gstmpeg2enc.cc:
29732 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
29733 Bugfix with respect to EOS handling.
29735 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
29737 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
29738 Link with right caps (else, it segfaults).
29739 * ext/mplex/gstmplexjob.cc:
29740 Fix for slight API change in 1.6.1.93 release of mjpegtools.
29742 2004-01-15 David Schleef <ds@schleef.org>
29744 * gst-libs/gst/audio/Makefile.am:
29745 Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
29747 * gst-libs/gst/audio/gstaudiofilter.c:
29748 * gst-libs/gst/audio/gstaudiofilter.h:
29749 Add bytes_per_sample and size and n_samples calculation.
29750 * gst-libs/gst/audio/gstaudiofilterexample.c:
29751 Remove, now autogenerated.
29752 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
29753 Moved from gstaudiofilterexample, object name changed, code added
29754 so that it actually works.
29755 * gst-libs/gst/audio/make_filter:
29756 Script to build an audiofilter subclass from the template.
29757 * gst/colorspace/Makefile.am:
29758 * gst/colorspace/yuv2yuv.c:
29759 Remove file, since it's GPL, and we don't use it.
29761 2004-01-15 Julien MOUTTE <julien@moutte.net>
29763 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
29764 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
29765 them use the buffer free function to test how the buffer was allocated.
29767 2004-01-15 David Schleef <ds@schleef.org>
29769 * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
29770 that handles osssink fallback.
29771 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
29772 (gst_audio_convert_getcaps):
29773 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
29774 Add audio/x-qdm2 for QDM2 audio.
29775 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
29776 * gst/sine/gstsinesrc.h: Add example of how to implement tags.
29777 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
29778 Decrease minimum size to 16x16.
29779 * gst/wavparse/gstwavparse.c:
29780 Convert disabled pad template caps to new caps.
29781 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
29782 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29783 (gst_xvimagesink_chain): Throw element error when display cannot
29784 be opened. Increase minimum framerate to 1.0. Check the data
29785 free function on a buffer to make sure it is the type we expect
29786 before manipulating it.
29788 2004-01-15 Julien MOUTTE <julien@moutte.net>
29790 * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
29791 (gst_videobalance_colorbalance_set_value): Implement passthru if
29792 settings are in the middle.
29793 * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
29795 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
29797 * gst/videofilter/Makefile.am:
29798 * gst/volume/Makefile.am:
29799 Since we use videofilter symbols, link to it.
29801 2004-01-15 Julien MOUTTE <julien@moutte.net>
29803 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
29804 mixer interface type to HARDWARE.
29805 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
29807 * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
29808 * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
29809 * gst/volume/gstvolume.c: (gst_volume_interface_supported),
29810 (gst_volume_interface_init), (gst_volume_list_tracks),
29811 (gst_volume_set_volume), (gst_volume_get_volume),
29812 (gst_volume_set_mute), (gst_volume_mixer_init),
29813 (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
29814 (volume_init): Implementing mixer interface.
29815 * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
29816 * sys/oss/gstosselement.c: (gst_osselement_get_type),
29817 (gst_osselement_change_state): Removing some trailing commas in
29819 * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
29820 interface type to HARDWARE.
29821 * sys/v4l/gstv4lcolorbalance.c:
29822 (gst_v4l_color_balance_interface_init): Setting colorbalance interface
29824 * sys/v4l2/gstv4l2colorbalance.c:
29825 (gst_v4l2_color_balance_interface_init): Setting colorbalance
29826 interface type to HARDWARE.
29827 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
29828 same code than ximagesink for event handling.
29830 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
29832 * ext/snapshot/Makefile.am:
29833 * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
29834 (gst_snapshot_chain):
29835 * ext/snapshot/gstsnapshot.h:
29836 This has to be a joke... Snapshot should be connected to a tee,
29837 colorspace element before it and EOS after that, where the other
29838 src of the tee receives normal data.
29839 The current way is *wrong*.
29841 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
29843 * ext/hermes/gsthermescolorspace.c:
29844 Fix another compile error. Same as below.
29846 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
29848 * gst/colorspace/gstcolorspace.c:
29849 * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
29850 (gst_colorspace_i420_to_yv12):
29851 Fix compiling... Didn't test if it actually works.
29853 2004-01-15 David Schleef <ds@schleef.org>
29856 * gst/colorspace/Makefile.am:
29857 * gst/colorspace/gstcolorspace.c:
29858 * gst/colorspace/gstcolorspace.h:
29859 * gst/colorspace/yuv2rgb.c:
29860 * gst/colorspace/yuv2rgb.h:
29861 Duplicate the ext/hermes colorspace plugin, and remove Hermes
29862 code and GPL code. Fix for new caps negotiation. Rewrite
29863 much of the format handling code, and some of the conversion
29864 code. Basically, rewrote almost everything. This element
29865 handles I420, YV12 to RGB conversions.
29866 * ext/hermes/Makefile.am:
29867 * ext/hermes/gsthermescolorspace.c:
29868 Rename colorspace to hermescolorspace. Fix negotiation issues.
29869 Remove non-Hermes related code. This element handles lots of
29870 RGB to RGB conversions, but no YUV.
29871 * ext/hermes/gstcolorspace.c:
29872 * ext/hermes/gstcolorspace.h:
29873 * ext/hermes/rgb2yuv.c:
29874 * ext/hermes/yuv2rgb.c:
29875 * ext/hermes/yuv2rgb.h:
29876 * ext/hermes/yuv2rgb_mmx16.s:
29877 * ext/hermes/yuv2yuv.c:
29878 * ext/hermes/yuv2yuv.h:
29881 2004-01-14 Colin Walters <walters@verbum.org>
29883 * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
29884 they've already been.
29886 2004-01-15 Benjamin Otte <in7y118@public.uni-hamburg.de>
29888 * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
29889 assume tag mode when pad is not connected
29891 2004-01-15 Benjamin Otte <in7y118@public.uni-hamburg.de>
29893 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
29894 Don't update the time of the clock
29895 (gst_alsa_sink_loop):
29896 sync to the clock given to alsasink, not the own clock
29897 * sys/oss/gstosssink.c: (gst_osssink_chain):
29899 (gst_osssink_change_state):
29901 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
29902 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
29903 remove bogus code that made DISCONT events unhandled
29904 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
29905 explicitly case to double in _set_simple. (fixes 2nd warning in bug
29907 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
29908 (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
29909 (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
29910 convert g_warning because of wrong asf data to GST_WARNINGs (fixes
29911 2nd warning in bug #131502)
29913 2004-01-14 Julien MOUTTE <julien@moutte.net>
29915 * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
29916 (gst_videobalance_colorbalance_set_value),
29917 (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
29918 for colorbalance interface implementation.
29919 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
29920 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
29921 (gst_ximagesink_dispose), (gst_ximagesink_init),
29922 (gst_ximagesink_class_init): Adding DISPLAY property.
29923 * sys/ximage/ximagesink.h: Adding display_name to store display.
29924 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29925 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
29926 (gst_xvimagesink_dispose), (gst_xvimagesink_init),
29927 (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
29928 properties (they still need polishing though for gst-launch use : no
29929 xcontext yet, i ll do that tomorrow).
29930 * sys/xvimage/xvimagesink.h: Adding display_name to store display.
29932 2004-01-14 Julien MOUTTE <julien@moutte.net>
29934 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
29935 (gst_play_set_location), (gst_play_set_visualization): Preparing
29936 switch integration, adding videobalance in the pipeline.
29938 2004-01-14 Julien MOUTTE <julien@moutte.net>
29940 * gst-libs/gst/colorbalance/colorbalance.c:
29941 (gst_color_balance_class_init): Adding a default type.
29942 * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
29944 * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
29945 (gst_videobalance_dispose), (gst_videobalance_class_init),
29946 (gst_videobalance_init), (gst_videobalance_interface_supported),
29947 (gst_videobalance_interface_init),
29948 (gst_videobalance_colorbalance_list_channels),
29949 (gst_videobalance_colorbalance_set_value),
29950 (gst_videobalance_colorbalance_get_value),
29951 (gst_videobalance_colorbalance_init): Implementing colorbalance
29953 * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
29955 * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
29956 bug which was triggering a BadAccess X error when setting an overlay
29957 before pad was really negotiated.
29958 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
29959 Using the colorbalance type macro.
29961 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
29963 * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
29964 (gst_flacenc_chain):
29965 handle tags correctly
29966 * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
29967 extract ID3v1 tags correctly
29969 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
29971 * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
29973 Improve matroska typefinding for odd-typed headers...
29975 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
29977 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
29978 Fix for using incremental number on padnames.
29980 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
29982 * ext/divx/gstdivxdec.c:
29983 * ext/divx/gstdivxenc.c:
29984 Set category to divx4linux instead of divx (too generic).
29985 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
29986 (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
29987 (gst_wavparse_loop), (gst_wavparse_change_state):
29988 * gst/wavparse/gstwavparse.h:
29989 fix parsing of WAV files with non-standard fmt-tag size and fix
29990 skipping of unrecognized chunks... Someone please fix this thing
29991 to use rifflib so all this is automated.
29992 * sys/v4l/Makefile.am:
29993 * sys/v4l2/Makefile.am:
29994 Add X_CFLAGS because we depend on X (for overlay).
29996 2004-01-14 Jan Schmidt <thaytan@mad.scientist.com>
29998 * ext/mpeg2dec/gstmpeg2dec.c:
29999 Don't issue a timestamp unless we tagged the frame
30002 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30004 * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
30005 Query the audio element to get the time, not the clock. We're
30006 interested in the element's time here.
30008 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30010 * ext/aalib/gstaasink.c: (gst_aasink_chain):
30011 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
30012 * ext/esd/esdsink.c: (gst_esdsink_chain):
30013 * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
30014 * ext/mas/massink.c: (gst_massink_chain):
30015 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
30016 * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
30017 (gst_matroska_demux_parse_metadata):
30018 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
30019 (gst_mpeg_parse_release_locks):
30020 * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
30021 * gst/udp/gstudpsink.c: (gst_udpsink_chain):
30022 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30023 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
30024 (gst_osssink_change_state):
30025 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
30026 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30027 * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
30028 (gst_xvideosink_release_locks):
30029 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
30031 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
30032 (gst_alsa_clock_stop):
30033 * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
30034 (gst_audio_clock_get_internal_time):
30035 simplify for use with new clocking code.
30036 * testsuite/alsa/Makefile.am:
30037 * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
30038 fix testsuite for new caps system
30040 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30042 * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
30043 * ext/flac/gstflacenc.c: (add_one_tag):
30044 length is already host endian, no need to convert. Fixes playback of
30045 tagged files on PPC. (bug #128384)
30047 2004-01-13 Julien MOUTTE <julien@moutte.net>
30049 * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
30050 colorbalance interface stating if it is hardware based or software
30052 * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
30053 Removing a trailing comma.
30054 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30055 (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
30056 Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
30057 the documentation seems to be wrong on the -1000 to 1000 interval.
30059 2004-01-12 David Schleef <ds@schleef.org>
30061 * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
30062 (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
30063 (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
30064 Fix negotiation. Add a bufferalloc function for the sink pad,
30065 and generally clean up some of the code.
30067 2004-01-12 Julien MOUTTE <julien@moutte.net>
30069 * gst-libs/gst/colorbalance/colorbalancechannel.c:
30070 (gst_color_balance_channel_dispose): Adding safety check in dispose
30072 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30073 (gst_xvimagesink_xcontext_clear),
30074 (gst_xvimagesink_interface_supported),
30075 (gst_xvimagesink_colorbalance_list_channels),
30076 (gst_xvimagesink_colorbalance_set_value),
30077 (gst_xvimagesink_colorbalance_get_value),
30078 (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
30079 Adding colorbalance interface support to set XV parameters such as
30080 HUE, BRIGHTNESS, CONTRAST, SATURATION.
30081 * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
30084 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
30086 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
30087 (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
30088 (gst_audio_convert_init), (gst_audio_convert_set_property),
30089 (gst_audio_convert_get_property), (gst_audio_convert_chain),
30090 (gst_audio_convert_link),
30091 (gst_audio_convert_buffer_to_default_format),
30092 (gst_audio_convert_buffer_from_default_format), (plugin_init):
30093 - implement _getcaps and use it
30095 - remove float caps since no float conversion is actually done
30096 - remove properties and arguments that were to be used for rate
30099 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
30101 * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
30102 (gst_audio_structure_set_int):
30103 * gst-libs/gst/audio/audio.h:
30104 add helper functions for _getcaps matching the standard audio
30107 2004-01-12 David Schleef <ds@schleef.org>
30109 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
30110 Test that pad is negotiated before getting its caps.
30112 2004-01-12 Julien MOUTTE <julien@moutte.net>
30114 * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
30115 analyzing the pads of an element the bin is mostly in READY state so
30116 no caps were negotiated. This helper function needs to work with
30117 _get_caps directly then. I was not freeing them though, added that to
30120 2004-01-12 Julien MOUTTE <julien@moutte.net>
30122 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30123 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
30124 direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
30125 than the free_func.
30127 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
30129 * sys/oss/gstossaudio.c: (plugin_init):
30130 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
30131 * sys/oss/gstosselement.h:
30132 make an oss debugging category
30133 make failure more descriptive
30135 2004-01-11 David Schleef <ds@schleef.org>
30137 * ext/ffmpeg/gstffmpeg.c:
30138 * ext/ffmpeg/gstffmpegcodecmap.c:
30139 * ext/ffmpeg/gstffmpegdec.c:
30140 * ext/ffmpeg/gstffmpegenc.c:
30141 * ext/ffmpeg/gstffmpegprotocol.c:
30142 * ext/gdk_pixbuf/gstgdkanimation.c:
30143 * ext/jpeg/gstjpeg.c:
30144 * ext/libpng/gstpng.c:
30145 * ext/mpeg2dec/perftest.c:
30146 * ext/speex/gstspeex.c:
30147 * gst-libs/gst/resample/dtos.c:
30148 * gst/intfloat/gstintfloatconvert.c:
30149 * gst/oneton/gstoneton.c:
30150 * gst/rtjpeg/RTjpeg.c:
30151 * gst/rtp/gstrtp.c:
30152 * sys/dxr3/dxr3init.c:
30153 * sys/glsink/gstgl_nvimage.c:
30154 * sys/glsink/gstgl_pdrimage.c:
30155 * sys/glsink/gstglsink.c:
30156 * testsuite/gst-lint:
30157 Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
30159 2004-01-11 David Schleef <ds@schleef.org>
30161 * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
30162 * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
30163 * ext/gdk_pixbuf/gstgdkanimation.c:
30164 (gst_gdk_animation_iter_create_pixbuf):
30165 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
30166 (gst_gdk_pixbuf_chain):
30167 * ext/gdk_pixbuf/gstgdkpixbuf.h:
30168 * ext/jack/gstjack.c: (gst_jack_change_state):
30169 * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
30170 * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
30171 * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
30172 * gst/videofilter/gstvideofilter.c:
30173 (gst_videofilter_set_output_size):
30174 Remove all usage of gst_pad_get_caps(), and replace it with
30175 gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
30177 2004-01-11 David Schleef <ds@schleef.org>
30180 * ext/Makefile.am: Fixes to make ext/libcaca compile.
30181 * ext/divx/gstdivxdec.c:
30182 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
30183 (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
30184 handle images that span multiple buffers. Now work with both
30185 filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
30186 * ext/gdk_pixbuf/gstgdkpixbuf.h:
30187 * ext/libcaca/gstcacasink.h: Fixes needed due to recent
30188 video/video.h changes
30189 * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
30190 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30191 (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
30192 of GstData free function.
30193 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
30196 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
30198 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
30199 (gst_v4l2element_dispose), (gst_v4l2element_set_property),
30200 (gst_v4l2element_get_property):
30201 * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
30202 add norm, channel and frequency properties.
30203 * sys/v4l2/gstv4l2tuner.c:
30204 fixes for tuner interface changes
30205 * sys/v4l2/gstv4l2element.h:
30206 * sys/v4l2/gstv4l2src.c:
30207 * sys/v4l2/gstv4l2src.h:
30208 * sys/v4l2/v4l2src_calls.c:
30209 * sys/v4l2/v4l2src_calls.h:
30210 rework v4l2src to work with saa1734 cards and allow mmaped buffers.
30212 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
30214 * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
30215 (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
30216 (gst_tuner_channel_changed), (gst_tuner_norm_changed),
30217 (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
30218 * gst-libs/gst/tuner/tuner.h:
30219 GObjects aren't const.
30220 Add find_by_name functions.
30221 Add checks to _changed functions.
30222 * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
30223 (gst_v4l_tuner_get_norm):
30226 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
30228 * gst-libs/gst/video/video.h:
30229 Fix caps template names to be understandable.
30230 Prefix everything with GST_VIDEO.
30231 * ext/aalib/gstaasink.c:
30232 * ext/divx/gstdivxdec.c:
30233 * ext/divx/gstdivxenc.c:
30234 * ext/gdk_pixbuf/gstgdkpixbuf.c:
30235 * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
30236 * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
30237 * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
30238 * ext/libcaca/gstcacasink.c:
30239 * ext/libpng/gstpngenc.c: (raw_caps_factory):
30240 * ext/snapshot/gstsnapshot.c:
30241 * ext/swfdec/gstswfdec.c:
30242 * ext/xvid/gstxviddec.c:
30243 * ext/xvid/gstxvidenc.c:
30244 * gst/chart/gstchart.c:
30245 * gst/deinterlace/gstdeinterlace.c:
30246 * gst/effectv/gsteffectv.c:
30247 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
30248 * gst/goom/gstgoom.c:
30249 * gst/median/gstmedian.c:
30250 * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
30251 (gst_monoscope_srcconnect), (gst_monoscope_chain):
30252 * gst/overlay/gstoverlay.c:
30253 * gst/smooth/gstsmooth.c:
30254 * gst/smpte/gstsmpte.c:
30255 * gst/synaesthesia/gstsynaesthesia.c:
30256 * gst/videocrop/gstvideocrop.c:
30257 * gst/videodrop/gstvideodrop.c:
30258 * gst/y4m/gsty4mencode.c:
30259 * sys/qcam/gstqcamsrc.c:
30260 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
30261 Make them work with new video.h file.
30262 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30263 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
30264 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30265 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
30266 Make it work with new buffer allocation system.
30268 2004-01-11 Julien MOUTTE <julien@moutte.net>
30270 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
30271 pad_alloc_buffer implementation to use ->srcpad
30272 * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
30273 pad_alloc_buffer implementation to use ->srcpad
30274 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Fixing the
30275 pad_alloc_buffer implementation to use ->srcpad
30276 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
30277 (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
30278 (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
30279 a reference to everything we need.
30280 * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
30281 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
30282 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
30283 (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
30284 a reference to everything we need.
30285 * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
30287 2004-01-11 David Schleef <ds@schleef.org>
30289 * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
30290 * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
30291 (gst_fenced_buffer_default_copy): Fix for rename of buffer private
30293 * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
30294 value during a resize/renegotiation.
30295 * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
30296 gst_pad_alloc_buffer();
30297 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30298 (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
30300 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
30301 Fix for rename of buffer private structure members.
30302 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30303 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
30304 Fix for rename of buffer private structure members.
30305 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30306 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
30307 Fix for rename of buffer private structure members.
30309 2004-01-11 Arwed v. Merkatz <v.merkatz@gmx.net>
30311 reviewed by: David Schleef <ds@schleef.org>
30313 * gst/videofilter/Makefile.am:
30314 * gst/videofilter/gstgamma.c: Gamma correction filter. Modified
30315 from the patch by ds to fit in with recent make_filter changes.
30317 2004-01-11 Julien MOUTTE <julien@moutte.net>
30319 * configure.ac: Adding examples/switch/Makefile
30320 * examples/Makefile.am: Adding examples/switch
30321 * examples/switch/Makefile.am: Adding switcher example.
30322 * examples/switch/switcher.c: (got_eos), (idle_iterate),
30323 (switch_timer), (main): Adding an example demonstrating switch usage
30324 with 2 videotestsrc showing different patterns.
30325 * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
30326 (gst_switch_init): Fixing switch with the new caps system.
30328 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
30330 * gst-libs/gst/video/video.h:
30331 Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
30332 They should probably be like
30333 GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
30335 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
30337 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
30338 (qtdemux_parse_trak):
30339 fix audio chunk size/timestamp calculation
30341 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
30343 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
30346 2004-01-11 Steve Baker <steve@stevebaker.org>
30348 * gst/effectv/gstaging.c: (gst_agingtv_get_type),
30349 (gst_agingtv_base_init), (gst_agingtv_class_init),
30350 (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
30351 (gst_agingtv_set_property), (gst_agingtv_get_property):
30352 Port agingTV to videofilter
30354 2004-01-09 Julien MOUTTE <julien@moutte.net>
30356 * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
30357 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30359 2004-01-09 Julien MOUTTE <julien@moutte.net>
30361 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
30362 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30363 * gst-libs/gst/xoverlay/xoverlay.c:
30364 (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
30365 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
30366 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30367 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30368 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30369 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30370 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
30371 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
30372 the bufferalloc_function to replace bufferpools, fixing the XOverlay
30373 interface implementation to handle xid being 0 and fix some bugs
30374 triggered by Benjamin's testcase.
30375 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30376 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
30377 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
30378 the bufferalloc_function to replace bufferpools, fixing the XOverlay
30379 interface implementation to handle xid being 0 and fix some bugs
30380 triggered by Benjamin's testcase.
30382 2004-01-09 David Schleef <ds@schleef.org>
30384 * ext/librfb/gstrfbsrc.c: Hacking. Added actual decoding and
30385 mouse pointer events. It works.
30387 2004-01-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
30389 * ext/divx/gstdivxenc.c: (gst_divxenc_init):
30390 Use explicit caps - fix capsnego.
30391 * ext/xvid/gstxviddec.c:
30392 * ext/xvid/gstxvidenc.c:
30393 Remove macro-inside-macro which caused compile errors.
30394 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
30395 Error out if it's not a RIFF file. Else we error out without
30396 gst_element_error() which is not good...
30398 2004-01-08 David Schleef <ds@schleef.org>
30400 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
30401 Fix pad_link function to handle formats that ffmpeg returns
30402 as multiple caps structures.
30403 * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
30404 Only complain if source buffer is _smaller_ than expected.
30405 * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
30406 (gst_videoscale_handle_src_event): Resize navigation events
30407 when passing them upstream.
30408 * gst/videotestsrc/gstvideotestsrc.c:
30409 * gst/videotestsrc/gstvideotestsrc.h:
30410 * gst/videotestsrc/videotestsrc.c:
30411 * gst/videotestsrc/videotestsrc.h:
30412 Rewrite many of the buffer painting functions to handle odd
30413 sizes (for many formats, size%4!=0 or size%8!=0). Most have
30414 been verified to work with my video card.
30415 * testsuite/gst-lint: Add check for elements calling
30416 gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
30418 2004-01-08 David Schleef <ds@schleef.org>
30420 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
30421 (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
30423 2004-01-08 Julien MOUTTE <julien@moutte.net>
30425 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
30426 configure event is not emiting the desired size signal. That fixes
30427 aspect ratio issues with gst-player.
30429 2004-01-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
30431 * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
30434 2004-01-08 Julien MOUTTE <julien@moutte.net>
30436 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
30437 public method to fire size signal.
30439 2004-01-07 Julien MOUTTE <julien@moutte.net>
30441 * examples/gstplay/Makefile.am: Adding the interface library.
30442 * gst-libs/gst/play/Makefile.am: Adding the interface library.
30443 * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to the XOverlay size signal instead of GstVideoSink.
30444 * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
30445 GST_IS_X_OVERLAY before signal connect.
30446 * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
30447 Removing the have_video_size signal.
30448 * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
30449 and associated public method.
30450 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
30451 (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
30453 * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
30454 (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
30456 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
30457 Using XOverlay public method to fire size signal.
30459 2004-01-07 David Schleef <ds@schleef.org>
30461 * gst/videofilter/Makefile.am:
30462 * gst/videofilter/gstvideotemplate.c:
30463 * gst/videofilter/make_filter:
30464 Create gstvideoexample.c in a srcdir!=builddir friendly way.
30465 Convert make_filter to /bin/sh script.
30467 2004-01-07 Thomas Vander Stichele <thomas at apestaart dot org>
30469 * gst/modplug/gstmodplug.cc: fix element description
30471 2004-01-07 Julien MOUTTE <julien@moutte.net>
30473 * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
30474 (got_video_size): Adding some new lines in g_print calls.
30475 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
30476 (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
30477 (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
30478 (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
30479 (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
30480 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
30481 Complete code review, reverting some stuff i disagree with, adding
30482 some fixes : time synchronization on invalid timestamps, renegotiation
30484 * sys/ximage/ximagesink.h:
30485 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
30486 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
30487 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
30488 (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
30489 (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
30490 (gst_xvimagesink_buffer_new),
30491 (gst_xvimagesink_navigation_send_event),
30492 (gst_xvimagesink_set_xwindow_id),
30493 (gst_xvimagesink_get_desired_size),
30494 (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
30495 stuff i disagree with, adding some fixes : Renegotiation of private
30496 window, implementing get_desired_size.
30498 2004-01-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
30500 * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
30501 (gst_afsink_handle_event):
30502 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
30503 * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
30504 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
30505 * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
30506 * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
30507 Fix for instantiate-test (see core). Also remove dead code from
30508 jpegenc (which still needs fixing, but that's lower on my TODO
30510 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
30511 Never return NULL as caps.
30513 2004-01-07 David Schleef <ds@schleef.org>
30517 * ext/librfb/Makefile.am:
30518 * ext/librfb/gstrfbsrc.c:
30519 New source plugin based on librfb-0.1. RFB (remote framebuffer)
30520 is the protocol used by VNC.
30522 2004-01-07 David Schleef <ds@schleef.org>
30524 * gst/videofilter/gstvideotemplate.c:
30525 * gst/videofilter/gstvideotemplate.h:
30526 * gst/videofilter/make_filter:
30527 Merge videotemplate header into source file.
30528 * gst/effectv/Makefile.am:
30529 * gst/effectv/gsteffectv.c: (plugin_init):
30530 * gst/effectv/gstwarp.c:
30531 Make warpTV a subclass of videofilter.
30533 2004-01-07 Benjamin Otte <in7y118@public.uni-hamburg.de>
30535 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
30536 Add guard against invalid utf-8 conversions in mad. Just in case.
30538 2004-01-07 Benjamin Otte <in7y118@public.uni-hamburg.de>
30540 * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
30541 Fix for bug shown by poisoning
30543 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
30545 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30546 (gst_v4lmjpegsrc_buffer_free):
30547 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
30548 (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
30549 (gst_v4lsrc_buffer_free):
30550 Fix for removed bufferpools.
30552 2004-01-07 Jan Schmidt <thaytan@mad.scientist.com>
30554 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
30555 Fix caps negotiation.
30557 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
30558 (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
30559 (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
30561 * ext/mpeg2dec/gstmpeg2dec.c:
30562 * gst-libs/gst/navigation/navigation.c:
30563 (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
30564 * gst-libs/gst/navigation/navigation.h:
30565 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
30566 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
30567 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
30568 Super-simple first version of mouse and keyboard events. Clicking
30569 on a DVD menu now works, although it may not take you where you
30572 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
30573 * gst/videotestsrc/gstvideotestsrc.c:
30574 (gst_videotestsrc_src_fixate):
30575 These fixate functions were broken - they never actually
30578 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
30580 * ext/shout/gstshout.c: (gst_icecastsend_base_init),
30581 (gst_icecastsend_init):
30582 fix for new caps system.
30583 * gst-libs/gst/mixer/mixertrack.h:
30584 * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
30585 Add 'master track' flag (for tools like ACME that only want to
30586 change the main volume).
30588 2004-01-07 Jan Schmidt <thaytan@mad.scientist.com>
30590 * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
30591 (gst_xvid_csp_to_caps):
30592 * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
30593 * ext/xvid/gstxvidenc.c:
30594 ifdef out ARGB type when it isn't available
30595 in xvidcore 1.0.0beta2
30597 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
30599 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
30600 When we have received a new SCR right in the first buffer after
30601 a seek (so in the same cycle that handles the discont), we should
30602 handle the buffer instead of unreffing it, else we lose data.
30604 2004-01-06 Iain <iain@prettypeople.org>
30606 * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
30607 buffer-frames caps too.
30609 * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
30610 caps that we need, don't destroy them all and rebuild them. And when
30611 creating src pads, use the src pad template rather than the sink...
30613 2004-01-05 Ronald Bultje <rbultje@ronald.bitfreak.net>
30615 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
30616 Add pad to element *after* setting functions such as event handler.
30617 Without this, the scheduler (opt) will link pads, set the event
30618 handler from the default event function (dispatcher in gstpad.c)
30619 and *after* that, we will set our own event function, which will
30620 thus never be used (and thus mpegdemux doesn't handle events).
30622 2004-01-04 David Schleef <ds@schleef.org>
30624 Fix the fixate functions to handle new prototype:
30625 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
30626 * gst/videotestsrc/gstvideotestsrc.c:
30627 (gst_videotestsrc_src_fixate):
30628 * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
30629 * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
30630 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
30632 2004-01-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
30634 * sys/ximage/ximagesink.h:
30635 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
30636 (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
30637 (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
30638 (gst_ximagesink_xoverlay_init):
30639 assorted fixes to make (re)embedding work
30640 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
30641 (gst_ximagesink_get_desired_size):
30642 implement desired size additions to XOverlay
30644 2004-01-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
30646 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
30647 (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
30648 (gst_x_overlay_got_desired_size):
30649 * gst-libs/gst/xoverlay/xoverlay.h:
30650 Add optional "desired size" signal and querying.
30652 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
30654 * gst/matroska/matroska-demux.c:
30655 (gst_matroska_demux_parse_blockgroup):
30656 Fix EBML-laced block parsing. Diffs are relative to previous
30657 lace, not the first lace. Thanks to Mosu from the Matroska
30658 team for detecting this.
30659 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
30660 (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
30661 (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
30662 (gst_wavparse_change_state):
30663 * gst/wavparse/gstwavparse.h:
30664 Quickfix for capsnego.
30666 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
30668 * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
30669 Fix indenting, fix pad creation.
30671 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
30673 * ext/xvid/gstxviddec.c: (gst_xviddec_init),
30674 (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
30675 (gst_xviddec_sink_link):
30676 Implement src_getcaps() so proper size caps is negotiated.
30678 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
30680 * ext/flac/gstflacdec.c: (gst_flacdec_loop):
30681 Finish flac decoder on EOS. See #116178.
30683 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
30685 * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
30686 (gst_matroska_demux_add_stream):
30687 * gst/matroska/matroska-ids.h:
30688 Add getcaps() function to fix capsnego...
30690 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
30692 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
30693 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
30694 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
30695 Fix more integer overflows. Again, see #126967.
30697 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
30699 * ext/mpeg2dec/gstmpeg2dec.c:
30700 Add support for mpeg2dec-0.4.0 (released two weeks ago). See
30703 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
30706 * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
30707 (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
30708 * ext/xvid/gstxvid.h:
30709 * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
30710 (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
30711 (gst_xviddec_src_link), (gst_xviddec_sink_link),
30712 (gst_xviddec_change_state):
30713 * ext/xvid/gstxviddec.h:
30714 * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
30715 (gst_xvidenc_base_init), (gst_xvidenc_class_init),
30716 (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
30717 (gst_xvidenc_link), (gst_xvidenc_set_property),
30718 (gst_xvidenc_get_property), (gst_xvidenc_change_state):
30719 * ext/xvid/gstxvidenc.h:
30720 Update xvid plugin to latest xvid (1.0.0-beta3) API.
30722 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
30724 * gst/rtp/rtp-packet.c:
30725 Add sys/types.h include, since OS X doesn't define in_addr_t
30726 in netinet/in.h, like it does on Linux (see #129600).
30728 2004-01-03 Thomas Canty <tommydal@optushome.com.au>
30730 reviewed by: Ronald Bultje <rbultje@ronald.bitfreak.net>
30732 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
30733 Correct logic of dispose function (see #129306).
30735 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
30737 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
30738 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
30739 (gst_mpeg_parse_init):
30740 * gst/mpegstream/gstmpegparse.h:
30741 Remove clock (which was never provided, i.e. dead code), and
30742 also fix integer overflows at high PTS values (see #126967).
30744 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
30746 * ext/flac/gstflacdec.c:
30747 * ext/libpng/gstpngenc.h:
30748 * ext/mikmod/gstmikmod.h:
30749 OS X fixes (see #126628).
30751 2004-01-02 David Schleef <ds@schleef.org>
30753 * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
30754 (gst_alsa_src_base_init): Remove bogus "src" request pad.
30755 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
30756 (gst_mpeg_parse_class_init): Move pad template registration
30757 to class_init, since the derived class (mpegdemux) doesn't
30760 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
30762 * sys/ximage/Makefile.am:
30763 * sys/xvideo/Makefile.am:
30764 * sys/xvimage/Makefile.am:
30765 Move interface libs from LDFLAGS to LIBADD, fix relocation errors
30766 after installation (see #127664).
30768 2004-01-02 David Schleef <ds@schleef.org>
30770 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
30771 (gst_ffmpegenc_connect): Negotiation fixes.
30772 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
30773 Remove inappropriate gst_caps_free().
30774 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
30775 Reenable Ronald's internal resize code, since the core handles
30778 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
30780 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
30781 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
30782 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
30783 Fix pad template stuff.
30785 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
30787 * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
30788 * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
30789 fix signed integer reading/writing.
30791 2004-01-02 Benjamin Otte <in7y118@public.uni-hamburg.de>
30794 Remove outdated document
30796 2004-01-03 Jan Schmidt <thaytan@mad.scientist.com>
30798 * gst/cutter/gstcutter.c: (gst_cutter_init):
30799 src pad was being created twice - oops.
30801 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
30803 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
30804 Comment out internal resize. It doesn't handle the resulting
30805 XEvent internally, does another try_set_caps() which leads to
30806 a really nice loop.
30807 Real fix will come when Julien and Dave are awake. ;).
30809 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
30811 * ext/mpeg2enc/gstmpeg2enc.cc:
30812 fix const/nonconst compile issue.
30814 2004-01-02 David Schleef <ds@schleef.org>
30816 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
30817 (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
30818 Add fixate function and a check for bad formats.
30820 2004-01-01 David Schleef <ds@schleef.org>
30823 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
30824 (gst_audiofilter_init):
30825 * gst/debug/efence.c: (gst_efence_init):
30826 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
30827 (gst_deinterlace_init):
30828 * gst/volume/gstvolume.c: (volume_connect):
30830 2004-01-01 David Schleef <ds@schleef.org>
30832 Convert elements to use gst_pad_use_explicit_caps() where
30834 * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
30835 * ext/audiofile/gstafparse.c: (gst_afparse_init),
30836 (gst_afparse_open_file):
30837 * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
30838 (gst_afsrc_open_file):
30839 * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
30840 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
30841 (gst_ffmpegdec_chain):
30842 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
30843 * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
30844 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
30845 (gst_gdk_pixbuf_chain):
30846 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
30847 (gst_jpegdec_chain):
30848 * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
30849 * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
30850 (gst_mikmod_negotiate):
30851 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
30852 (gst_mpeg2dec_negotiate_format):
30853 * ext/mpeg2enc/gstmpeg2enc.cc:
30854 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
30855 * ext/speex/gstspeexdec.c: (gst_speexdec_init),
30856 (gst_speexdec_sinkconnect):
30857 * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
30858 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
30859 (gst_vorbisfile_new_link):
30860 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
30861 (gst_ac3parse_chain):
30862 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
30863 (gst_asf_demux_setup_pad):
30864 * gst/auparse/gstauparse.c: (gst_auparse_init),
30865 (gst_auparse_chain):
30866 * gst/id3/gstid3types.c: (gst_id3types_loop):
30867 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
30868 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
30869 (mp1videoparse_parse_seq):
30870 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
30872 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
30873 (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
30874 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
30875 (gst_mpeg_parse_send_data):
30876 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
30877 (gst_qtdemux_add_stream):
30878 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
30879 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
30880 (gst_wavparse_parse_fmt):
30882 2004-01-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
30885 Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
30886 1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
30887 it therefore uses the wrong include paths. Too bad... Note
30888 that 1.6.1.93 is not release yet. ;).
30889 Also add a check for mplex, which is now using the lib'ified
30890 mplex from mjpegtools, too.
30891 * ext/ffmpeg/gstffmpegcodecmap.c:
30892 Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
30893 issues. I don't think ffmpeg handles 3ivx correctly, so this
30894 probably won't work. But it won't hurt either.
30895 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
30896 (gst_ffmpegdec_chain):
30897 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
30898 (gst_ffmpegenc_chain_audio):
30899 Fix memleak in audio encoding. Close codec if open fails, this
30900 calls the cleanup routines so we can re-use the context.
30901 * ext/mpeg2enc/gstmpeg2enc.cc:
30902 Fix pad template names/types, fix memory issue with getcaps().
30903 * ext/mpeg2enc/gstmpeg2encoder.cc:
30904 * ext/mpeg2enc/gstmpeg2encoder.hh:
30905 Fix compile issue with new caps system (const thingy).
30906 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
30907 * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
30908 We read a first frame right on initing, so that we have a caps
30909 when we init the output. This caps is cached in padprivate and
30910 read as first frame.
30911 * ext/mplex/Makefile.am:
30912 * ext/mplex/gstmplex.cc:
30913 * ext/mplex/gstmplex.h:
30914 * ext/mplex/gstmplex.hh:
30915 * ext/mplex/gstmplexibitstream.cc:
30916 * ext/mplex/gstmplexibitstream.hh:
30917 * ext/mplex/gstmplexjob.cc:
30918 * ext/mplex/gstmplexjob.hh:
30919 * ext/mplex/gstmplexoutputstream.cc:
30920 * ext/mplex/gstmplexoutputstream.hh:
30921 We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
30922 had issues, didn't do capsnego, supported only a subset of the
30923 mplex features and required a mplex fork in our local CVS. Plus
30924 that it worked agaist a very old mplex version. Rewriting was
30925 faster than updating it.
30926 * gst-libs/ext/Makefile.am:
30927 * gst-libs/ext/mplex/INSTRUCT:
30928 * gst-libs/ext/mplex/Makefile.am:
30929 * gst-libs/ext/mplex/README:
30930 * gst-libs/ext/mplex/TODO:
30931 * gst-libs/ext/mplex/ac3strm_in.cc:
30932 * gst-libs/ext/mplex/audiostrm.hh:
30933 * gst-libs/ext/mplex/audiostrm_out.cc:
30934 * gst-libs/ext/mplex/aunit.hh:
30935 * gst-libs/ext/mplex/bits.cc:
30936 * gst-libs/ext/mplex/bits.hh:
30937 * gst-libs/ext/mplex/buffer.cc:
30938 * gst-libs/ext/mplex/buffer.hh:
30939 * gst-libs/ext/mplex/fastintfns.h:
30940 * gst-libs/ext/mplex/format_codes.h:
30941 * gst-libs/ext/mplex/inputstrm.cc:
30942 * gst-libs/ext/mplex/inputstrm.hh:
30943 * gst-libs/ext/mplex/lpcmstrm_in.cc:
30944 * gst-libs/ext/mplex/mjpeg_logging.cc:
30945 * gst-libs/ext/mplex/mjpeg_logging.h:
30946 * gst-libs/ext/mplex/mjpeg_types.h:
30947 * gst-libs/ext/mplex/mpastrm_in.cc:
30948 * gst-libs/ext/mplex/mpegconsts.cc:
30949 * gst-libs/ext/mplex/mpegconsts.h:
30950 * gst-libs/ext/mplex/mplexconsts.hh:
30951 * gst-libs/ext/mplex/multplex.cc:
30952 * gst-libs/ext/mplex/outputstream.hh:
30953 * gst-libs/ext/mplex/padstrm.cc:
30954 * gst-libs/ext/mplex/padstrm.hh:
30955 * gst-libs/ext/mplex/stillsstream.cc:
30956 * gst-libs/ext/mplex/stillsstream.hh:
30957 * gst-libs/ext/mplex/systems.cc:
30958 * gst-libs/ext/mplex/systems.hh:
30959 * gst-libs/ext/mplex/vector.cc:
30960 * gst-libs/ext/mplex/vector.hh:
30961 * gst-libs/ext/mplex/videostrm.hh:
30962 * gst-libs/ext/mplex/videostrm_in.cc:
30963 * gst-libs/ext/mplex/videostrm_out.cc:
30964 * gst-libs/ext/mplex/yuv4mpeg.cc:
30965 * gst-libs/ext/mplex/yuv4mpeg.h:
30966 * gst-libs/ext/mplex/yuv4mpeg_intern.h:
30967 * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
30968 We don't fork mjpegtools' mplex in our CVS anymore.
30969 * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
30970 (gst_avi_demux_add_stream):
30971 * gst/avi/gstavidemux.h:
30972 Add getcaps() function for proper caps nego. This makes some
30973 parts of AVI playback/reading work.
30974 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
30975 Resize window on new capsnego. This is probably wrong, but
30976 I'm still committing it because with current capsnego, the
30977 first successfull capsnego is auto-fixated, therefore rounded
30978 down to the lowest values in the caps. this results in a 16x16
30979 XWindow that is not reized when real capsnego finishes.
30980 Dave, I see more cases of this, do you know a proper solution?
30981 * tools/gst-launch-ext.in:
30982 Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
30984 2003-12-31 David Schleef <ds@schleef.org>
30986 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
30987 * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
30988 Change gst_pad_proxy_link() to gst_pad_try_set_caps()
30990 2003-12-30 David Schleef <ds@schleef.org>
30992 * ext/ffmpeg/gstffmpegcolorspace.c:
30993 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
30994 (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
30995 (gst_ffmpegcsp_chain): Negotiation fixes
30996 * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
30997 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
30998 (gst_audio_convert_link), (gst_audio_convert_channels):
30999 * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
31000 (gst_audioscale_link), (gst_audioscale_get_buffer),
31001 (gst_audioscale_chain): Negotiation fixes
31002 * gst/audioscale/gstaudioscale.h:
31003 * gst/videofilter/gstvideofilter.c:
31004 (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
31005 (gst_videofilter_link), (gst_videofilter_init),
31006 (gst_videofilter_set_output_size), (gst_videofilter_setup),
31007 (gst_videofilter_find_format_by_structure):
31008 * gst/videofilter/gstvideofilter.h: Negotiation fixes
31009 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
31010 (gst_videoscale_link):
31011 * gst/videoscale/videoscale.c: (videoscale_get_structure),
31012 (videoscale_find_by_structure), (gst_videoscale_setup):
31013 * gst/videoscale/videoscale.h: Negotiation fixes
31014 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
31015 (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
31016 function, restrict resizing to a multiple of 4 (hack until
31017 everyone supports odd sizes correctly).
31019 2003-12-29 Colin Walters <walters@verbum.org>
31021 * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
31024 2003-12-30 Jan Schmidt <thaytan@mad.scientist.com>
31026 * ext/sndfile/gstsf.c: (gst_sf_loop):
31027 Fix warning about discarding const qualifier
31029 2003-12-27 Jeremy Simon <jesimon@libertysurf.fr>
31031 * gst/cutter/gstcutter.c:
31032 * gst/videoscale/gstvideoscale.c:
31033 * gst/volenv/gstvolenv.c:
31034 * gst-libs/gst/audio/audio.c:
31035 * gst-libs/gst/video/video.c:
31038 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31040 * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
31041 Don't send ALSA debugging to stderr.
31042 * ext/alsa/gstalsa.h:
31043 Use GST_WARNING instead of g_warning when ALSA functions fail.
31045 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31047 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
31048 Free XVAdapterInfo correctly.
31050 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31052 * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
31053 (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
31054 Make id3tag use correct caps nego.
31056 2003-12-27 Amaury Jacquot <sxpert@esitcom.org>
31058 * ext/ivorbis/vorbis.c:
31059 * ext/ivorbis/vorbisenc.h:
31060 * ext/ivorbis/vorbisfile.c:
31061 Modify so that it uses the new caps things
31063 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31065 * testsuite/spider/spider1.c: (main):
31066 * testsuite/spider/spider2.c: (main):
31067 * testsuite/spider/spider3.c: (main):
31068 Make tests compile again. They probably don't work.
31070 2003-12-24 Colin Walters <walters@verbum.org>
31072 * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
31073 we can't fixate the caps anymore.
31075 2003-12-23 David Schleef <ds@schleef.org>
31077 * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
31078 * sys/oss/gstosssink.c: (gst_osssink_init),
31079 (gst_osssink_sink_fixate): Add fixate function.
31081 2003-12-24 Ronald Bultje <rbultje@ronald.bitfreak.net>
31083 * ext/ffmpeg/gstffmpegcodecmap.c:
31084 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
31085 (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
31086 (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
31087 (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
31088 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
31089 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
31090 (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
31091 fix typo in RGB masks, and move back to "old" colorspace
31092 capsnego code until whoever wrote this new crap has actually
31093 tested it so that it works.
31094 And yes, this works, keep it that way please.
31096 2003-12-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
31098 * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
31099 (gst_divxdec_init), (gst_divxdec_negotiate):
31100 * ext/divx/gstdivxdec.h:
31101 * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
31102 (gst_divxenc_init):
31103 * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
31104 (gst_faac_sinkconnect), (gst_faac_srcconnect):
31105 * ext/mpeg2enc/gstmpeg2enc.cc:
31106 * ext/mpeg2enc/gstmpeg2encoder.cc:
31107 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
31108 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
31109 (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
31110 * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
31111 (dxr3spusink_init):
31112 * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
31113 (dxr3videosink_init):
31114 Fix caps breakage after Dave's caps branch merge.
31116 2003-12-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
31118 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
31119 Fix for 24bpp display.
31121 2003-12-23 Colin Walters <walters@verbum.org>
31123 * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
31124 a GnomeVFSHandle directly.
31126 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31128 * gst/volume/Makefile.am:
31129 * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
31130 (volume_base_init), (volume_init):
31131 Reenable volume element and fix to work with new caps stuff.
31132 Rhythmbox needs this.
31134 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31136 * gst/qtdemux/qtdemux.c: (plugin_init):
31137 qtdemux requires bytestream
31139 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31141 * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
31142 Fix remaining caps handling errors due to CAPS merge.
31144 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31146 * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
31147 (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
31148 (gst_faad_srcconnect):
31149 Port to new caps system.
31151 2003-12-21 Julien MOUTTE <julien@moutte.net>
31153 * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
31154 (got_video_size), (main): using g_print instead of g_message.
31155 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
31156 signal which was not emitted because of "switch" element added to the
31157 bin but not connected. (Removing from the bin temporarily)
31159 2003-12-21 Julien MOUTTE <julien@moutte.net>
31161 * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
31162 find X development files. I don't understand the previous tests and
31163 they fail on my debian/ppc unstable. This one works.
31164 * examples/gstplay/player.c: (main): Set the pipeline to READY before
31166 * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
31167 (gst_play_set_video_sink), (gst_play_set_audio_sink),
31168 (gst_play_set_visualization): Add some safety checks in set_ methods
31169 and state_change. This was throwing some ugly CRITICAL messages when
31170 pipeline was getting disposed and casts were failing.
31172 2003-12-21 Ronald Bultje <rbultje@ronald.bitfreak.net>
31175 Improve mpeg2enc detection. This is for distributions that do
31176 ship mjpegtools, but without mpeg2enc. Also does object check
31177 for might there ever be ABI incompatibility.
31178 * ext/mpeg2enc/gstmpeg2enc.cc:
31179 Add Andrew as second maintainer (he's helping me), and also add
31180 an error if no caps was set. This happens if I pull before capsnego
31181 and that's something I should solve sometime else.
31182 * gst/matroska/matroska-demux.c:
31183 (gst_matroska_demux_parse_blockgroup):
31185 * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
31186 (gst_matroska_mux_track_header):
31187 Add caps to templates.
31188 * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
31189 Add mpegversion=1 to prevent confusion with MPEG/AAC.
31190 * gst/mpegstream/gstmpegdemux.c:
31191 Remove layer since it causes warnings about unfixed caps.
31192 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
31193 Fix obvious typo (we error out if caps were set, we should of
31194 course error out if *no* caps were set).
31195 * sys/oss/gstosselement.c: (gst_osselement_convert):
31196 Fix format conversion, we confused bits/bytes.
31197 * sys/oss/gstosselement.h:
31198 Improve documentation for 'bps'.
31200 Remove stuff about plugins that need removing - this was done
31202 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
31203 (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
31204 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
31205 (gst_v4lsrc_src_query):
31206 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
31207 (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
31208 Add get_query_types(), get_formats() and query() functions.
31210 2003-12-21 Thomas Vander Stichele <thomas at apestaart dot org>
31212 * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
31213 * moved CVS to freedesktop.org